-- MySQL dump 10.11
--
-- Host: localhost    Database: uspvinc_main2
-- ------------------------------------------------------
-- Server version	5.0.91-community

/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
/*!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 `access`
--

DROP TABLE IF EXISTS `access`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `access` (
  `aid` int(11) NOT NULL auto_increment,
  `mask` varchar(255) NOT NULL default '',
  `type` varchar(255) NOT NULL default '',
  `status` tinyint(4) NOT NULL default '0',
  PRIMARY KEY  (`aid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `access`
--

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

--
-- 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',
  `type` varchar(32) NOT NULL default '',
  `callback` varchar(255) NOT NULL default '',
  `parameters` longtext NOT NULL,
  `description` varchar(255) NOT NULL default '0',
  PRIMARY KEY  (`aid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!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_unpublish_action','comment','comment_unpublish_action','','Unpublish comment'),('node_publish_action','node','node_publish_action','','Publish post'),('node_unpublish_action','node','node_unpublish_action','','Unpublish post'),('node_make_sticky_action','node','node_make_sticky_action','','Make post sticky'),('node_make_unsticky_action','node','node_make_unsticky_action','','Make post unsticky'),('node_promote_action','node','node_promote_action','','Promote post to front page'),('node_unpromote_action','node','node_unpromote_action','','Remove post from front page'),('node_save_action','node','node_save_action','','Save post'),('user_block_user_action','user','user_block_user_action','','Block current user'),('user_block_ip_action','user','user_block_ip_action','','Ban IP address of current user'),('simplenews_cron_action','simplenews','simplenews_cron_action','','Send pending simplenews newsletters');
/*!40000 ALTER TABLE `actions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `actions_aid`
--

DROP TABLE IF EXISTS `actions_aid`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `actions_aid` (
  `aid` int(10) unsigned NOT NULL auto_increment,
  PRIMARY KEY  (`aid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `actions_aid`
--

LOCK TABLES `actions_aid` WRITE;
/*!40000 ALTER TABLE `actions_aid` DISABLE KEYS */;
/*!40000 ALTER TABLE `actions_aid` 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,
  `uid` int(11) NOT NULL default '0',
  `authname` varchar(128) NOT NULL default '',
  `module` varchar(128) NOT NULL default '',
  PRIMARY KEY  (`aid`),
  UNIQUE KEY `authname` (`authname`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

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

LOCK TABLES `authmap` WRITE;
/*!40000 ALTER TABLE `authmap` DISABLE KEYS */;
/*!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 auto_increment,
  `token` varchar(64) NOT NULL,
  `timestamp` int(11) NOT NULL,
  `batch` longtext,
  PRIMARY KEY  (`bid`),
  KEY `token` (`token`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
/*!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 `blocks`
--

DROP TABLE IF EXISTS `blocks`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `blocks` (
  `bid` int(11) NOT NULL auto_increment,
  `module` varchar(64) NOT NULL default '',
  `delta` varchar(32) NOT NULL default '0',
  `theme` varchar(64) NOT NULL default '',
  `status` tinyint(4) NOT NULL default '0',
  `weight` tinyint(4) NOT NULL default '0',
  `region` varchar(64) NOT NULL default '',
  `custom` tinyint(4) NOT NULL default '0',
  `throttle` tinyint(4) NOT NULL default '0',
  `visibility` tinyint(4) NOT NULL default '0',
  `pages` text NOT NULL,
  `title` varchar(64) NOT NULL default '',
  `cache` tinyint(4) NOT NULL default '1',
  PRIMARY KEY  (`bid`),
  UNIQUE KEY `tmd` (`theme`,`module`,`delta`),
  KEY `list` (`theme`,`status`,`region`,`weight`,`module`)
) ENGINE=MyISAM AUTO_INCREMENT=54 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `blocks`
--

LOCK TABLES `blocks` WRITE;
/*!40000 ALTER TABLE `blocks` DISABLE KEYS */;
INSERT INTO `blocks` VALUES (1,'user','0','garland',1,0,'left',0,0,0,'','',-1),(2,'user','1','garland',1,0,'left',0,0,0,'','',-1),(3,'system','0','garland',1,10,'footer',0,0,0,'','',-1),(4,'system','0','uspv',0,-14,'',0,0,0,'','',-1),(5,'user','0','uspv',0,-13,'',0,0,0,'','',-1),(6,'user','1','uspv',0,-15,'',0,0,0,'','',-1),(7,'comment','0','uspv',0,-11,'',0,0,0,'','',1),(8,'menu','primary-links','uspv',0,-12,'',0,0,0,'','',-1),(9,'menu','secondary-links','uspv',0,-9,'',0,0,0,'','',-1),(10,'node','0','uspv',0,-8,'',0,0,0,'','',-1),(11,'search','0','uspv',0,-10,'',0,0,0,'','',-1),(12,'user','2','uspv',0,-2,'',0,0,0,'','',1),(13,'user','3','uspv',0,-1,'',0,0,0,'','',-1),(14,'nice_menus','1','uspv',1,0,'header',0,0,0,'','<none>',-1),(15,'nice_menus','2','uspv',1,-18,'right2',0,0,0,'','<none>',-1),(16,'site_map','0','uspv',0,-3,'',0,0,0,'','',1),(24,'block','1','uspv',1,0,'footerleft',0,0,0,'','',-1),(17,'menu','menu-main-menu','uspv',0,-17,'',0,0,0,'','',-1),(18,'simplenews','1','uspv',1,-12,'right',0,0,0,'','Newsletter Sign-up',-1),(19,'image_attach','0','uspv',0,-7,'',0,0,1,'node/*','',1),(20,'image','0','uspv',0,-6,'',0,0,0,'','',1),(21,'image','1','uspv',0,-5,'',0,0,0,'','',1),(22,'views','banner-block_1','uspv',1,-14,'banner',0,0,1,'<front>','',-1),(23,'menu','menu-right-menu','uspv',0,-16,'',0,0,0,'','<none>',-1),(25,'block','1','garland',0,0,'',0,0,0,'','',-1),(26,'block','2','uspv',1,0,'footerright',0,0,0,'','',-1),(27,'block','2','garland',0,0,'',0,0,0,'','',-1),(28,'block','3','uspv',1,-13,'banner',0,0,0,'<front>\r\nnews','',-1),(29,'block','3','garland',0,0,'',0,0,0,'<front>\r\nnews','',-1),(31,'views','archive-block','uspv',0,-12,'',0,0,0,'','',-1),(32,'block','4','garland',0,0,'',0,0,1,'home\r\nabout-us\r\nnews\r\nresources\r\nsitemap\r\nfeedback','what we do',-1),(33,'block','4','uspv',1,-16,'right2',0,0,1,'home\r\nabout-us\r\nnews\r\nresources\r\nsitemap\r\nfeedback','what we do',-1),(34,'block','5','garland',0,0,'',0,0,1,'<front>','What We Do',-1),(35,'block','5','uspv',0,-4,'',0,0,1,'<front>','What We Do',-1),(36,'block','6','garland',0,0,'',0,0,1,'news','It\'s Not Just About the Technology--It\'s About the Financing Too',-1),(37,'block','6','uspv',1,0,'banner',0,0,1,'news','It\'s Not Just About the Technology--It\'s About the Financing Too',-1),(40,'block','8','garland',0,0,'',0,0,1,'understanding-renewable-energy-credits-and-certificates-maryland-pv-system-owners','',-1),(41,'block','8','uspv',1,-15,'right2',0,0,1,'understanding-renewable-energy-credits-and-certificates-maryland-pv-system-owners','',-1),(45,'block','10','uspv',1,-16,'content',0,0,1,'site-map\r\nfeedback','News',-1),(44,'block','10','garland',0,0,'',0,0,1,'site-map\r\nfeedback','News',-1),(42,'block','9','garland',0,0,'',0,0,1,'renewable-energy-credit-rec-management-program-pv-system-owners','Here’s what we do',-1),(43,'block','9','uspv',1,-14,'right2',0,0,1,'renewable-energy-credit-rec-management-program-pv-system-owners','Here’s what we do',-1),(52,'block','14','garland',0,0,'',0,0,0,'','',-1),(46,'block','11','garland',0,0,'',0,0,1,'site-map\r\nabout-us\r\nresources\r\nnews\r\nfeedback','Contact us',-1),(47,'block','11','uspv',1,-14,'content',0,0,1,'site-map\r\nabout-us\r\nresources\r\nnews\r\nfeedback','Contact us',-1),(48,'block','12','garland',0,0,'',0,0,1,'about-us\r\nresources','Industy Organizations',-1),(49,'block','12','uspv',1,-17,'content',0,0,1,'about-us\r\nresources','Industy Organizations',-1),(50,'block','13','garland',0,0,'',0,0,1,'news','Special Offer for PV System Owners',-1),(51,'block','13','uspv',1,-15,'content',0,0,1,'news','Special Offer for PV System Owners',-1),(53,'block','14','uspv',1,-17,'right2',0,0,0,'','',-1);
/*!40000 ALTER TABLE `blocks` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `blocks_roles`
--

DROP TABLE IF EXISTS `blocks_roles`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `blocks_roles` (
  `module` varchar(64) NOT NULL,
  `delta` varchar(32) NOT NULL,
  `rid` int(10) unsigned NOT NULL,
  PRIMARY KEY  (`module`,`delta`,`rid`),
  KEY `rid` (`rid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `blocks_roles`
--

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

--
-- Table structure for table `boxes`
--

DROP TABLE IF EXISTS `boxes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `boxes` (
  `bid` int(10) unsigned NOT NULL auto_increment,
  `body` longtext,
  `info` varchar(128) NOT NULL default '',
  `format` smallint(6) NOT NULL default '0',
  PRIMARY KEY  (`bid`),
  UNIQUE KEY `info` (`info`)
) ENGINE=MyISAM AUTO_INCREMENT=15 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `boxes`
--

LOCK TABLES `boxes` WRITE;
/*!40000 ALTER TABLE `boxes` DISABLE KEYS */;
INSERT INTO `boxes` VALUES (1,'<div>Copyright 2010 U.S. Photovoltaics, Inc. All rights reserved.</div>','footer block left',2),(2,'<div>4539 Metropolitan Court Frederick MD  21704 | Phone: 301-360-3531</div>\r\n<div>Email: Sales: <a href=\"mailto:sales@uspvinc.com\">sales@uspvinc.com</a> | Customer Service: <a href=\"mailto:support@uspvinc.com\">support@uspvinc.com</a> | Other Inquiries: <a href=\"mailto:info@uspvinc.com\">info@uspvinc.com</a></div>','footer block right',2),(3,'<div class=\"banner-about\">\r\n<div class=\"banner-content\">\r\n<div class=\"title-about\">Special Offer for PV System Owners</div>\r\n<div class=\"content\">Sign-up for USPV\'s REC Management Program today.  No up-front or out-of-pocket costs.  Don\'t miss out on this opportunity to participate in the Renewable Energy Credit markets and earn hundreds or even thousands of dollars! <a href=\"renewable-energy-credit-rec-management-program-pv-system-owners\">Learn more</a></div>\r\n</div>\r\n</div>\r\n\r\n','banner about us',2),(4,'<p align=\"justify\" style=\"line-height:20px;\">We provide agency services to certify residential and commercial systems as small as 1 kW as Renewable Energy Facilities.</p>\r\n\r\n<p align=\"justify\" style=\"line-height:20px;\">We create, manage, market, sell and fulfill Renewable Energy Credit Certificates on behalf of PV system owners.  We maintain records and fulfill reporting requirements as required under state laws and regulations.</p> \r\n\r\n<p align=\"justify\" style=\"line-height:20px;\">We provide financing assistance for PV systems, establish eligibility for federal and state incentives and monitor and report on new opportunities for system owners to maximize the financial return on their systems.</p>\r\n \r\n<p align=\"justify\" style=\"line-height:20px;\">We provide research data on the adoption and use of solar photovoltaics by small system owners.</p> \r\n\r\n<p align=\"justify\" style=\"line-height:20px;\">We advocate on behalf of small PV system owners for state, federal and local incentives to accelerate the adoption of distributed generation of solar electricity.</p>\r\n\r\n<p align=\"justify\" style=\"line-height:20px;\"><a href=\"renewable-energy-credit-rec-management-program-pv-system-owners\">Learn more</a></p>','sidebar: what-we-do',2),(5,'What We Do\r\n<ul>\r\n<li>\r\n    * We provide agency services to certify residential and commercial systems as small as 1 kW as Renewable Energy Facilities.\r\n</li>\r\n<li>\r\n\r\n    * We create, manage, market, sell and fulfill Renewable Energy Credit Certificates on behalf of PV system owners.  We maintain records and fulfill reporting requirements as required under state laws and regulations.\r\n</li>\r\n<li>\r\n * We provide financing assistance for PV systems, establish eligibility for federal and state incentives and monitor and report on new opportunities for system owners to maximize the financial return on their systems.\r\n/li>\r\n \r\n\r\n<li>    * We provide research data on the adoption and use of solar photovoltaics by small system owners.\r\n/li>\r\n \r\n<li>\r\n    * We advocate on behalf of small PV system owners for state, federal and local incentives to accelerate the adoption of distributed generation of solar electricity.</li></ul>',' Right sidebar what we do',1),(6,'<div class=\"banner-about\">\r\n<div class=\"banner-content\">\r\n<div class=\"title-about\">It\'s Not Just About the Technology--It\'s About the Financing Too</div>\r\n<div class=\"content\">\r\nSee below for new Programs and Incentives that can help pay for your new system\r\n</div>\r\n</div>\r\n</div>\r\n','News',2),(8,'<p align=\"center\" style=\"line-height:20px;\"><img src=\"./sites/default/files/images/SunHands_243_447.jpg\" alt=\"\" /></p>\r\n\r\n<p align=\"justify\" style=\"line-height:20px;\"><i><a href=\"renewable-energy-credit-rec-management-program-pv-system-owners\">U.S Photovoltaics, Inc. has developed a streamlined program to allow small solar PV systems to participate in the REC market with no up-front or out-of-pocket costs.</a></i></p>\r\n\r\n<p align=\"justify\" style=\"line-height:20px;\"><a href=\"renewable-energy-credit-rec-management-program-pv-system-owners\">Learn more</a></p>','sidebar: recs-page',2),(9,'<p align=\"justify\" > We’ll prepare and file the documents required to certify your PV system as a Renewable Energy Facility (REF) by the Public Service Commission.</p>       \r\n<p align=\"justify\" > We’ll act as your agent to establish an account at PJM-EIS GATS to enable your system to earn RECs. PJM-EIS is the state-designated entity that manages all Solar RECs in the program.</p>       \r\n<p align=\"justify\" >We’ll track your system’s energy production as required and create RECs for your account as they are earned.</p>       \r\n<p align=\"justify\" > We will negotiate with potential buyers of your RECs in accordance with state laws and GATS requirements to maximize the value of your certificates and complete the transactions.</p>       \r\n<p align=\"justify\" > We will remit the net earnings from sales of your RECs directly to you. Our commissions are only earned and paid out of the transactions we complete.</p>       \r\n<p align=\"justify\" > We’ll prepare and file all reports required by the state for the life of the RECs at no additional cost to you.</p>','Here’s what we do',2),(10,'<p align=\"justify\" style=\"line-height:20px;\">\r\nMaryland Renewable Portfolio Standard changes and new regulations make it possible for small PV system owners to particiapte in REC markets.\r\n</p>\r\n\r\n<p align=\"justify\" style=\"line-height:20px;\"><a href=\"understanding-renewable-energy-credits-and-certificates-maryland-pv-system-owners\">Learn more</a>\r\n</p>\r\n\r\n\r\n','content: news',2),(11,'<STRONG>Telephone</STRONG>: 240-344-2657\r\n \r\n<STRONG>Email</STRONG>: \r\n\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Sales: <A href=\"mailto:sales@uspvinc.com\" >sales@uspvinc.com</A>\r\n \r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Customer Service: <A href=\"mailto:support@uspvinc.com\" >support@uspvinc.com</A>\r\n \r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Other Inquiries:&nbsp; <A href=\"mailto:info@uspvinc.com\" >info@uspvinc.com</A> \r\n\r\n<STRONG>Postal Address</STRONG>: 4539 Metropolitan Court, Frederick MD&nbsp; 21704','content: contact-us',1),(12,'<A href=\"http://www.ases.org/\" >American Solar Energy Society&nbsp;</A>&nbsp;&nbsp;&nbsp;&nbsp; Professional Member\r\n\r\n<A href=\"http://www.ases.org/\" ><img src=\"./sites/default/files/images/ases-logo.jpg\" width=213 height=80 align=bottom border=0 ></A>\r\n\r\n<A href=\"http://www.mdv-seia.org\" >Maryland-DC-Virginia Solar Energy&nbsp;Industries Association</A>&nbsp;&nbsp; Professional Member&nbsp;&nbsp;\r\n\r\n<A href=\"http://www.mdv-seia.org\" ><img src=\"./sites/default/files/images/MDVSEIA.jpg\" width=810 height=94 style=\"WIDTH:388px;HEIGHT:94px;\" align=middle border=0 ></A>','content: industry-org',2),(13,'Sign-up for USPV\'s REC Management Program today.  No up-front or out-of-pocket costs.  Don\'t miss out on this opportunity to participate in the Renewable Energy Credit markets and earn hundreds or even thousands of dollars!\r\n\r\n<a href=\"renewable-energy-credit-rec-management-program-pv-system-owners\">Learn more</a>','content: special-offer',1),(14,'<p>&nbsp;</p>','sidebar: space',1);
/*!40000 ALTER TABLE `boxes` 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 '',
  `data` longblob,
  `expire` int(11) NOT NULL default '0',
  `created` int(11) NOT NULL default '0',
  `headers` text,
  `serialized` smallint(6) NOT NULL default '0',
  PRIMARY KEY  (`cid`),
  KEY `expire` (`expire`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!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 ('variables','a:140:{s:13:\"theme_default\";s:4:\"uspv\";s:13:\"filter_html_1\";i:1;s:18:\"node_options_forum\";a:1:{i:0;s:6:\"status\";}s:18:\"drupal_private_key\";s:64:\"b07eb505f32b4d54fa3299209193060c8cf243a0b7b89d8cc961d3897d9bc99e\";s:10:\"menu_masks\";a:25:{i:0;i:125;i:1;i:63;i:2;i:62;i:3;i:61;i:4;i:59;i:5;i:58;i:6;i:56;i:7;i:45;i:8;i:31;i:9;i:30;i:10;i:29;i:11;i:28;i:12;i:24;i:13;i:22;i:14;i:21;i:15;i:15;i:16;i:14;i:17;i:11;i:18;i:10;i:19;i:7;i:20;i:6;i:21;i:5;i:22;i:3;i:23;i:2;i:24;i:1;}s:12:\"install_task\";s:4:\"done\";s:13:\"menu_expanded\";a:0:{}s:9:\"site_name\";s:4:\"USPV\";s:9:\"site_mail\";s:26:\"alexoliver.Perez@gmail.com\";s:21:\"date_default_timezone\";s:5:\"28800\";s:23:\"user_email_verification\";b:1;s:12:\"install_time\";i:1265024116;s:17:\"node_options_page\";a:1:{i:0;s:6:\"status\";}s:12:\"comment_page\";i:0;s:14:\"theme_settings\";a:24:{s:11:\"toggle_logo\";i:1;s:11:\"toggle_name\";i:1;s:13:\"toggle_slogan\";i:0;s:14:\"toggle_mission\";i:1;s:24:\"toggle_node_user_picture\";i:0;s:27:\"toggle_comment_user_picture\";i:0;s:13:\"toggle_search\";i:1;s:14:\"toggle_favicon\";i:1;s:20:\"toggle_primary_links\";i:1;s:22:\"toggle_secondary_links\";i:1;s:22:\"toggle_node_info_image\";i:1;s:27:\"toggle_node_info_simplenews\";i:1;s:21:\"toggle_node_info_page\";i:0;s:22:\"toggle_node_info_panel\";i:1;s:22:\"toggle_node_info_story\";i:1;s:24:\"toggle_node_info_webform\";i:0;s:23:\"toggle_node_info_banner\";i:1;s:12:\"default_logo\";i:0;s:9:\"logo_path\";s:28:\"sites/default/files/logo.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:21:\"nice_menus_custom_css\";s:0:\"\";}s:17:\"update_last_check\";i:1286292247;s:19:\"css_js_query_string\";s:20:\"yOCQEcXFxnYB00000000\";s:15:\"install_profile\";s:7:\"default\";s:19:\"file_directory_temp\";s:15:\"c:\\windows\\temp\";s:25:\"drupal_http_request_fails\";b:0;s:22:\"content_schema_version\";i:6009;s:18:\"views_block_hashes\";a:0:{}s:17:\"javascript_parsed\";a:0:{}s:21:\"nice_menus_custom_css\";s:0:\"\";s:17:\"nice_menus_name_1\";s:23:\"Nice Menu 1 - main menu\";s:17:\"nice_menus_menu_1\";s:16:\"menu-main-menu:0\";s:17:\"nice_menus_type_1\";s:4:\"down\";s:24:\"simplenews_content_types\";a:1:{s:10:\"simplenews\";s:10:\"simplenews\";}s:25:\"fieldgroup_schema_version\";i:6000;s:18:\"node_options_image\";a:1:{i:0;s:6:\"status\";}s:28:\"image_gallery_nav_vocabulary\";s:1:\"2\";s:19:\"node_options_banner\";a:2:{i:0;s:6:\"status\";i:1;s:7:\"promote\";}s:20:\"form_build_id_banner\";s:37:\"form-d5f3e703a8f29275775804dd86b043d5\";s:19:\"image_attach_banner\";s:1:\"1\";s:27:\"image_attach_maximum_banner\";s:1:\"1\";s:31:\"image_attach_size_teaser_banner\";s:9:\"thumbnail\";s:29:\"image_attach_size_body_banner\";s:7:\"preview\";s:14:\"comment_banner\";s:1:\"2\";s:27:\"comment_default_mode_banner\";s:1:\"4\";s:28:\"comment_default_order_banner\";s:1:\"1\";s:31:\"comment_default_per_page_banner\";s:2:\"50\";s:23:\"comment_controls_banner\";s:1:\"3\";s:24:\"comment_anonymous_banner\";i:0;s:28:\"comment_subject_field_banner\";s:1:\"1\";s:22:\"comment_preview_banner\";s:1:\"1\";s:28:\"comment_form_location_banner\";s:1:\"0\";s:28:\"content_extra_weights_banner\";a:6:{s:5:\"title\";s:2:\"-5\";s:10:\"body_field\";s:2:\"-2\";s:20:\"revision_information\";s:2:\"-1\";s:16:\"comment_settings\";s:1:\"0\";s:4:\"menu\";s:2:\"-4\";s:12:\"image_attach\";s:2:\"-3\";}s:14:\"site_frontpage\";s:4:\"home\";s:17:\"nice_menus_name_2\";s:11:\"Nice Menu 2\";s:17:\"nice_menus_menu_2\";s:17:\"menu-right-menu:0\";s:17:\"nice_menus_type_2\";s:4:\"left\";s:19:\"pathauto_modulelist\";a:3:{i:0;s:4:\"node\";i:1;s:8:\"taxonomy\";i:2;s:4:\"user\";}s:31:\"pathauto_taxonomy_supportsfeeds\";s:6:\"0/feed\";s:25:\"pathauto_taxonomy_pattern\";s:34:\"category/[vocab-raw]/[catpath-raw]\";s:28:\"pathauto_taxonomy_bulkupdate\";i:0;s:30:\"pathauto_taxonomy_applytofeeds\";s:0:\"\";s:27:\"pathauto_taxonomy_2_pattern\";s:0:\"\";s:27:\"pathauto_taxonomy_1_pattern\";s:0:\"\";s:21:\"pathauto_ignore_words\";s:108:\"a,an,as,at,before,but,by,for,from,is,in,into,like,of,off,on,onto,per,since,than,the,this,that,to,up,via,with\";s:21:\"pathauto_indexaliases\";b:0;s:32:\"pathauto_indexaliases_bulkupdate\";b:0;s:29:\"pathauto_max_component_length\";s:3:\"100\";s:19:\"pathauto_max_length\";s:3:\"100\";s:24:\"pathauto_node_bulkupdate\";b:0;s:27:\"pathauto_node_forum_pattern\";s:0:\"\";s:27:\"pathauto_node_image_pattern\";s:17:\"image/[title-raw]\";s:26:\"pathauto_node_page_pattern\";s:11:\"[title-raw]\";s:21:\"pathauto_node_pattern\";s:19:\"content/[title-raw]\";s:27:\"pathauto_node_story_pattern\";s:17:\"story/[title-raw]\";s:27:\"pathauto_punctuation_quotes\";s:1:\"0\";s:18:\"pathauto_separator\";s:1:\"-\";s:22:\"pathauto_update_action\";s:1:\"2\";s:24:\"pathauto_user_bulkupdate\";i:0;s:21:\"pathauto_user_pattern\";s:16:\"users/[user-raw]\";s:27:\"pathauto_user_supportsfeeds\";N;s:16:\"pathauto_verbose\";i:0;s:26:\"pathauto_node_applytofeeds\";s:0:\"\";s:27:\"pathauto_punctuation_hyphen\";s:1:\"1\";s:22:\"pathauto_transliterate\";b:0;s:27:\"pathauto_node_supportsfeeds\";s:4:\"feed\";s:13:\"pathauto_case\";s:1:\"1\";s:24:\"pathauto_max_bulk_update\";s:2:\"50\";s:21:\"pathauto_reduce_ascii\";i:0;s:34:\"pathauto_punctuation_double_quotes\";s:1:\"0\";s:29:\"pathauto_punctuation_backtick\";s:1:\"0\";s:26:\"pathauto_punctuation_comma\";s:1:\"0\";s:27:\"pathauto_punctuation_period\";s:1:\"0\";s:31:\"pathauto_punctuation_underscore\";s:1:\"0\";s:26:\"pathauto_punctuation_colon\";s:1:\"0\";s:30:\"pathauto_punctuation_semicolon\";s:1:\"0\";s:25:\"pathauto_punctuation_pipe\";s:1:\"0\";s:31:\"pathauto_punctuation_left_curly\";s:1:\"0\";s:32:\"pathauto_punctuation_left_square\";s:1:\"0\";s:32:\"pathauto_punctuation_right_curly\";s:1:\"0\";s:33:\"pathauto_punctuation_right_square\";s:1:\"0\";s:25:\"pathauto_punctuation_plus\";s:1:\"0\";s:26:\"pathauto_punctuation_equal\";s:1:\"0\";s:29:\"pathauto_punctuation_asterisk\";s:1:\"0\";s:30:\"pathauto_punctuation_ampersand\";s:1:\"0\";s:28:\"pathauto_punctuation_percent\";s:1:\"0\";s:26:\"pathauto_punctuation_caret\";s:1:\"0\";s:27:\"pathauto_punctuation_dollar\";s:1:\"0\";s:25:\"pathauto_punctuation_hash\";s:1:\"0\";s:23:\"pathauto_punctuation_at\";s:1:\"0\";s:32:\"pathauto_punctuation_exclamation\";s:1:\"0\";s:26:\"pathauto_punctuation_tilde\";s:1:\"0\";s:37:\"pathauto_punctuation_left_parenthesis\";s:1:\"0\";s:38:\"pathauto_punctuation_right_parenthesis\";s:1:\"0\";s:34:\"pathauto_punctuation_question_mark\";s:1:\"0\";s:30:\"pathauto_punctuation_less_than\";s:1:\"0\";s:33:\"pathauto_punctuation_greater_than\";s:1:\"0\";s:31:\"pathauto_punctuation_back_slash\";s:1:\"0\";s:32:\"pathauto_node_simplenews_pattern\";s:22:\"newsletter/[title-raw]\";s:27:\"pathauto_node_panel_pattern\";s:11:\"[title-raw]\";s:28:\"pathauto_node_banner_pattern\";s:18:\"banner/[title-raw]\";s:18:\"mailchimp_username\";s:9:\"ragnababy\";s:18:\"mailchimp_password\";s:8:\"batolnet\";s:11:\"site_slogan\";s:0:\"\";s:14:\"simplenews_vid\";s:1:\"1\";s:22:\"simplenews_private_key\";s:32:\"6f0466ff1fead6ab2920538e4460dfea\";s:12:\"site_mission\";s:0:\"\";s:11:\"site_footer\";s:0:\"\";s:9:\"anonymous\";s:9:\"Anonymous\";s:20:\"simplenews_block_m_1\";s:33:\"Stay informed on our latest news!\";s:20:\"simplenews_block_f_1\";s:1:\"1\";s:20:\"simplenews_block_l_1\";i:0;s:27:\"simplenews_block_i_status_1\";i:0;s:20:\"simplenews_block_i_1\";s:1:\"5\";s:20:\"simplenews_block_r_1\";i:0;s:14:\"views_defaults\";a:3:{s:13:\"image_gallery\";b:1;s:19:\"image_gallery_terms\";b:1;s:7:\"archive\";b:0;}s:21:\"image_attach_existing\";s:1:\"1\";s:17:\"simplenews_format\";s:5:\"plain\";s:19:\"simplenews_priority\";s:1:\"0\";s:18:\"simplenews_receipt\";i:0;s:15:\"simplenews_send\";s:1:\"0\";s:23:\"simplenews_test_address\";s:15:\"TBD@uspvinc.com\";s:32:\"simplenews_test_address_override\";i:0;s:20:\"simplenews_from_name\";s:4:\"USPV\";s:23:\"simplenews_from_address\";s:15:\"TBD@uspvinc.com\";s:9:\"clean_url\";s:1:\"1\";}',0,1286319742,'',1),('theme_registry:uspv','a:337:{s:12:\"webform_view\";a:6:{s:9:\"arguments\";a:5:{s:4:\"node\";N;s:6:\"teaser\";N;s:4:\"page\";N;s:4:\"form\";N;s:7:\"enabled\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:25:\"sites/all/modules/webform\";s:8:\"function\";s:18:\"theme_webform_view\";s:11:\"theme paths\";a:1:{i:0;s:25:\"sites/all/modules/webform\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:21:\"webform_view_messages\";a:6:{s:9:\"arguments\";a:6:{s:4:\"node\";N;s:6:\"teaser\";N;s:4:\"page\";N;s:16:\"submission_count\";N;s:14:\"limit_exceeded\";N;s:13:\"allowed_roles\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:25:\"sites/all/modules/webform\";s:8:\"function\";s:27:\"theme_webform_view_messages\";s:11:\"theme paths\";a:1:{i:0;s:25:\"sites/all/modules/webform\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:12:\"webform_form\";a:7:{s:9:\"arguments\";a:1:{s:4:\"form\";N;}s:8:\"template\";s:48:\"sites/all/modules/webform/templates/webform-form\";s:7:\"pattern\";s:19:\"webform_form_[0-9]+\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:25:\"sites/all/modules/webform\";s:11:\"theme paths\";a:1:{i:0;s:25:\"sites/all/modules/webform\";}s:20:\"preprocess functions\";a:2:{i:0;s:19:\"template_preprocess\";i:1;s:32:\"template_preprocess_webform_form\";}}s:34:\"webform_advanced_submit_limit_form\";a:7:{s:9:\"arguments\";a:1:{s:4:\"form\";N;}s:4:\"file\";s:52:\"sites/all/modules/webform/includes/webform.pages.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:25:\"sites/all/modules/webform\";s:8:\"function\";s:40:\"theme_webform_advanced_submit_limit_form\";s:11:\"theme paths\";a:1:{i:0;s:25:\"sites/all/modules/webform\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:20:\"webform_confirmation\";a:7:{s:9:\"arguments\";a:2:{s:4:\"node\";N;s:3:\"sid\";N;}s:8:\"template\";s:56:\"sites/all/modules/webform/templates/webform-confirmation\";s:7:\"pattern\";s:27:\"webform_confirmation_[0-9]+\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:25:\"sites/all/modules/webform\";s:11:\"theme paths\";a:1:{i:0;s:25:\"sites/all/modules/webform\";}s:20:\"preprocess functions\";a:2:{i:0;s:19:\"template_preprocess\";i:1;s:40:\"template_preprocess_webform_confirmation\";}}s:15:\"webform_element\";a:6:{s:9:\"arguments\";a:2:{s:7:\"element\";N;s:5:\"value\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:25:\"sites/all/modules/webform\";s:8:\"function\";s:21:\"theme_webform_element\";s:11:\"theme paths\";a:1:{i:0;s:25:\"sites/all/modules/webform\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:20:\"webform_element_text\";a:6:{s:9:\"arguments\";a:2:{s:7:\"element\";N;s:5:\"value\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:25:\"sites/all/modules/webform\";s:8:\"function\";s:26:\"theme_webform_element_text\";s:11:\"theme paths\";a:1:{i:0;s:25:\"sites/all/modules/webform\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:20:\"webform_mail_message\";a:7:{s:9:\"arguments\";a:3:{s:4:\"node\";N;s:10:\"submission\";N;s:5:\"email\";N;}s:8:\"template\";s:48:\"sites/all/modules/webform/templates/webform-mail\";s:7:\"pattern\";s:22:\"webform_mail(_[0-9]+)?\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:25:\"sites/all/modules/webform\";s:11:\"theme paths\";a:1:{i:0;s:25:\"sites/all/modules/webform\";}s:20:\"preprocess functions\";a:2:{i:0;s:19:\"template_preprocess\";i:1;s:40:\"template_preprocess_webform_mail_message\";}}s:20:\"webform_mail_headers\";a:7:{s:9:\"arguments\";a:3:{s:4:\"node\";N;s:10:\"submission\";N;s:5:\"email\";N;}s:7:\"pattern\";s:27:\"webform_mail_headers_[0-9]+\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:25:\"sites/all/modules/webform\";s:8:\"function\";s:26:\"theme_webform_mail_headers\";s:11:\"theme paths\";a:1:{i:0;s:25:\"sites/all/modules/webform\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:18:\"webform_token_help\";a:6:{s:9:\"arguments\";a:0:{}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:25:\"sites/all/modules/webform\";s:8:\"function\";s:24:\"theme_webform_token_help\";s:11:\"theme paths\";a:1:{i:0;s:25:\"sites/all/modules/webform\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:22:\"webform_admin_settings\";a:7:{s:9:\"arguments\";a:1:{s:4:\"form\";N;}s:4:\"file\";s:52:\"sites/all/modules/webform/includes/webform.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:25:\"sites/all/modules/webform\";s:8:\"function\";s:28:\"theme_webform_admin_settings\";s:11:\"theme paths\";a:1:{i:0;s:25:\"sites/all/modules/webform\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:21:\"webform_admin_content\";a:7:{s:9:\"arguments\";a:1:{s:5:\"nodes\";N;}s:4:\"file\";s:52:\"sites/all/modules/webform/includes/webform.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:25:\"sites/all/modules/webform\";s:8:\"function\";s:27:\"theme_webform_admin_content\";s:11:\"theme paths\";a:1:{i:0;s:25:\"sites/all/modules/webform\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:19:\"webform_emails_form\";a:7:{s:9:\"arguments\";a:1:{s:4:\"form\";N;}s:4:\"file\";s:53:\"sites/all/modules/webform/includes/webform.emails.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:25:\"sites/all/modules/webform\";s:8:\"function\";s:25:\"theme_webform_emails_form\";s:11:\"theme paths\";a:1:{i:0;s:25:\"sites/all/modules/webform\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:22:\"webform_email_add_form\";a:7:{s:9:\"arguments\";a:1:{s:4:\"form\";N;}s:4:\"file\";s:53:\"sites/all/modules/webform/includes/webform.emails.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:25:\"sites/all/modules/webform\";s:8:\"function\";s:28:\"theme_webform_email_add_form\";s:11:\"theme paths\";a:1:{i:0;s:25:\"sites/all/modules/webform\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:23:\"webform_email_edit_form\";a:7:{s:9:\"arguments\";a:1:{s:4:\"form\";N;}s:4:\"file\";s:53:\"sites/all/modules/webform/includes/webform.emails.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:25:\"sites/all/modules/webform\";s:8:\"function\";s:29:\"theme_webform_email_edit_form\";s:11:\"theme paths\";a:1:{i:0;s:25:\"sites/all/modules/webform\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:23:\"webform_components_page\";a:7:{s:9:\"arguments\";a:2:{s:4:\"node\";N;s:4:\"form\";N;}s:4:\"file\";s:57:\"sites/all/modules/webform/includes/webform.components.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:25:\"sites/all/modules/webform\";s:8:\"function\";s:29:\"theme_webform_components_page\";s:11:\"theme paths\";a:1:{i:0;s:25:\"sites/all/modules/webform\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:23:\"webform_components_form\";a:7:{s:9:\"arguments\";a:1:{s:4:\"form\";N;}s:4:\"file\";s:57:\"sites/all/modules/webform/includes/webform.components.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:25:\"sites/all/modules/webform\";s:8:\"function\";s:29:\"theme_webform_components_form\";s:11:\"theme paths\";a:1:{i:0;s:25:\"sites/all/modules/webform\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:24:\"webform_component_select\";a:7:{s:9:\"arguments\";a:1:{s:7:\"element\";N;}s:4:\"file\";s:57:\"sites/all/modules/webform/includes/webform.components.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:25:\"sites/all/modules/webform\";s:8:\"function\";s:30:\"theme_webform_component_select\";s:11:\"theme paths\";a:1:{i:0;s:25:\"sites/all/modules/webform\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:24:\"webform_results_per_page\";a:7:{s:9:\"arguments\";a:2:{s:11:\"total_count\";N;s:11:\"pager_count\";N;}s:4:\"file\";s:53:\"sites/all/modules/webform/includes/webform.report.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:25:\"sites/all/modules/webform\";s:8:\"function\";s:30:\"theme_webform_results_per_page\";s:11:\"theme paths\";a:1:{i:0;s:25:\"sites/all/modules/webform\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:34:\"webform_results_submissions_header\";a:7:{s:9:\"arguments\";a:1:{s:4:\"node\";N;}s:4:\"file\";s:53:\"sites/all/modules/webform/includes/webform.report.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:25:\"sites/all/modules/webform\";s:8:\"function\";s:40:\"theme_webform_results_submissions_header\";s:11:\"theme paths\";a:1:{i:0;s:25:\"sites/all/modules/webform\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:27:\"webform_results_submissions\";a:7:{s:9:\"arguments\";a:4:{s:4:\"node\";N;s:11:\"submissions\";N;s:11:\"total_count\";i:0;s:11:\"pager_count\";i:0;}s:4:\"file\";s:53:\"sites/all/modules/webform/includes/webform.report.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:25:\"sites/all/modules/webform\";s:8:\"function\";s:33:\"theme_webform_results_submissions\";s:11:\"theme paths\";a:1:{i:0;s:25:\"sites/all/modules/webform\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:28:\"webform_results_table_header\";a:7:{s:9:\"arguments\";a:1:{s:4:\"node\";N;}s:4:\"file\";s:53:\"sites/all/modules/webform/includes/webform.report.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:25:\"sites/all/modules/webform\";s:8:\"function\";s:34:\"theme_webform_results_table_header\";s:11:\"theme paths\";a:1:{i:0;s:25:\"sites/all/modules/webform\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:21:\"webform_results_table\";a:7:{s:9:\"arguments\";a:5:{s:4:\"node\";N;s:10:\"components\";N;s:11:\"submissions\";N;s:11:\"total_count\";N;s:11:\"pager_count\";N;}s:4:\"file\";s:53:\"sites/all/modules/webform/includes/webform.report.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:25:\"sites/all/modules/webform\";s:8:\"function\";s:27:\"theme_webform_results_table\";s:11:\"theme paths\";a:1:{i:0;s:25:\"sites/all/modules/webform\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:29:\"webform_results_download_form\";a:7:{s:9:\"arguments\";a:1:{s:4:\"form\";N;}s:4:\"file\";s:53:\"sites/all/modules/webform/includes/webform.report.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:25:\"sites/all/modules/webform\";s:8:\"function\";s:35:\"theme_webform_results_download_form\";s:11:\"theme paths\";a:1:{i:0;s:25:\"sites/all/modules/webform\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:38:\"webform_results_download_select_format\";a:7:{s:9:\"arguments\";a:1:{s:7:\"element\";N;}s:4:\"file\";s:53:\"sites/all/modules/webform/includes/webform.report.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:25:\"sites/all/modules/webform\";s:8:\"function\";s:44:\"theme_webform_results_download_select_format\";s:11:\"theme paths\";a:1:{i:0;s:25:\"sites/all/modules/webform\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:24:\"webform_results_analysis\";a:7:{s:9:\"arguments\";a:4:{s:4:\"node\";N;s:4:\"data\";N;s:4:\"sids\";a:0:{}s:9:\"component\";N;}s:4:\"file\";s:53:\"sites/all/modules/webform/includes/webform.report.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:25:\"sites/all/modules/webform\";s:8:\"function\";s:30:\"theme_webform_results_analysis\";s:11:\"theme paths\";a:1:{i:0;s:25:\"sites/all/modules/webform\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:23:\"webform_submission_page\";a:7:{s:9:\"arguments\";a:5:{s:4:\"node\";N;s:10:\"submission\";N;s:18:\"submission_content\";N;s:21:\"submission_navigation\";N;s:22:\"submission_information\";N;}s:8:\"template\";s:59:\"sites/all/modules/webform/templates/webform-submission-page\";s:4:\"file\";s:58:\"sites/all/modules/webform/includes/webform.submissions.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:25:\"sites/all/modules/webform\";s:11:\"theme paths\";a:1:{i:0;s:25:\"sites/all/modules/webform\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:30:\"webform_submission_information\";a:7:{s:9:\"arguments\";a:2:{s:4:\"node\";N;s:10:\"submission\";N;}s:8:\"template\";s:66:\"sites/all/modules/webform/templates/webform-submission-information\";s:4:\"file\";s:58:\"sites/all/modules/webform/includes/webform.submissions.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:25:\"sites/all/modules/webform\";s:11:\"theme paths\";a:1:{i:0;s:25:\"sites/all/modules/webform\";}s:20:\"preprocess functions\";a:2:{i:0;s:19:\"template_preprocess\";i:1;s:50:\"template_preprocess_webform_submission_information\";}}s:29:\"webform_submission_navigation\";a:7:{s:9:\"arguments\";a:3:{s:4:\"node\";N;s:10:\"submission\";N;s:4:\"mode\";N;}s:8:\"template\";s:65:\"sites/all/modules/webform/templates/webform-submission-navigation\";s:4:\"file\";s:58:\"sites/all/modules/webform/includes/webform.submissions.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:25:\"sites/all/modules/webform\";s:11:\"theme paths\";a:1:{i:0;s:25:\"sites/all/modules/webform\";}s:20:\"preprocess functions\";a:2:{i:0;s:19:\"template_preprocess\";i:1;s:49:\"template_preprocess_webform_submission_navigation\";}}s:12:\"webform_date\";a:6:{s:9:\"arguments\";a:1:{s:7:\"element\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:25:\"sites/all/modules/webform\";s:8:\"function\";s:18:\"theme_webform_date\";s:11:\"theme paths\";a:1:{i:0;s:25:\"sites/all/modules/webform\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:20:\"webform_display_date\";a:6:{s:9:\"arguments\";a:1:{s:7:\"element\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:25:\"sites/all/modules/webform\";s:8:\"function\";s:26:\"theme_webform_display_date\";s:11:\"theme paths\";a:1:{i:0;s:25:\"sites/all/modules/webform\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:16:\"webform_calendar\";a:6:{s:9:\"arguments\";a:2:{s:9:\"component\";N;s:16:\"calendar_classes\";N;}s:8:\"template\";s:52:\"sites/all/modules/webform/templates/webform-calendar\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:25:\"sites/all/modules/webform\";s:11:\"theme paths\";a:1:{i:0;s:25:\"sites/all/modules/webform\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:21:\"webform_display_email\";a:6:{s:9:\"arguments\";a:3:{s:9:\"component\";N;s:5:\"value\";N;s:6:\"format\";s:5:\"plain\";}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:25:\"sites/all/modules/webform\";s:8:\"function\";s:27:\"theme_webform_display_email\";s:11:\"theme paths\";a:1:{i:0;s:25:\"sites/all/modules/webform\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:17:\"webform_edit_file\";a:6:{s:9:\"arguments\";a:1:{s:4:\"form\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:25:\"sites/all/modules/webform\";s:8:\"function\";s:23:\"theme_webform_edit_file\";s:11:\"theme paths\";a:1:{i:0;s:25:\"sites/all/modules/webform\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:19:\"webform_render_file\";a:6:{s:9:\"arguments\";a:1:{s:7:\"element\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:25:\"sites/all/modules/webform\";s:8:\"function\";s:25:\"theme_webform_render_file\";s:11:\"theme paths\";a:1:{i:0;s:25:\"sites/all/modules/webform\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:20:\"webform_display_file\";a:6:{s:9:\"arguments\";a:1:{s:7:\"element\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:25:\"sites/all/modules/webform\";s:8:\"function\";s:26:\"theme_webform_display_file\";s:11:\"theme paths\";a:1:{i:0;s:25:\"sites/all/modules/webform\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:12:\"webform_grid\";a:6:{s:9:\"arguments\";a:1:{s:12:\"grid_element\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:25:\"sites/all/modules/webform\";s:8:\"function\";s:18:\"theme_webform_grid\";s:11:\"theme paths\";a:1:{i:0;s:25:\"sites/all/modules/webform\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:20:\"webform_display_grid\";a:6:{s:9:\"arguments\";a:1:{s:7:\"element\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:25:\"sites/all/modules/webform\";s:8:\"function\";s:26:\"theme_webform_display_grid\";s:11:\"theme paths\";a:1:{i:0;s:25:\"sites/all/modules/webform\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:22:\"webform_display_hidden\";a:6:{s:9:\"arguments\";a:1:{s:7:\"element\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:25:\"sites/all/modules/webform\";s:8:\"function\";s:28:\"theme_webform_display_hidden\";s:11:\"theme paths\";a:1:{i:0;s:25:\"sites/all/modules/webform\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:25:\"webform_display_pagebreak\";a:6:{s:9:\"arguments\";a:1:{s:7:\"element\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:25:\"sites/all/modules/webform\";s:8:\"function\";s:31:\"theme_webform_display_pagebreak\";s:11:\"theme paths\";a:1:{i:0;s:25:\"sites/all/modules/webform\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:22:\"webform_display_select\";a:6:{s:9:\"arguments\";a:1:{s:7:\"element\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:25:\"sites/all/modules/webform\";s:8:\"function\";s:28:\"theme_webform_display_select\";s:11:\"theme paths\";a:1:{i:0;s:25:\"sites/all/modules/webform\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:24:\"webform_display_textarea\";a:6:{s:9:\"arguments\";a:1:{s:7:\"element\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:25:\"sites/all/modules/webform\";s:8:\"function\";s:30:\"theme_webform_display_textarea\";s:11:\"theme paths\";a:1:{i:0;s:25:\"sites/all/modules/webform\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:25:\"webform_display_textfield\";a:6:{s:9:\"arguments\";a:1:{s:7:\"element\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:25:\"sites/all/modules/webform\";s:8:\"function\";s:31:\"theme_webform_display_textfield\";s:11:\"theme paths\";a:1:{i:0;s:25:\"sites/all/modules/webform\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:12:\"webform_time\";a:6:{s:9:\"arguments\";a:1:{s:7:\"element\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:25:\"sites/all/modules/webform\";s:8:\"function\";s:18:\"theme_webform_time\";s:11:\"theme paths\";a:1:{i:0;s:25:\"sites/all/modules/webform\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:20:\"webform_display_time\";a:6:{s:9:\"arguments\";a:1:{s:7:\"element\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:25:\"sites/all/modules/webform\";s:8:\"function\";s:26:\"theme_webform_display_time\";s:11:\"theme paths\";a:1:{i:0;s:25:\"sites/all/modules/webform\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:24:\"block_admin_display_form\";a:7:{s:8:\"template\";s:38:\"modules/block/block-admin-display-form\";s:4:\"file\";s:29:\"modules/block/block.admin.inc\";s:9:\"arguments\";a:1:{s:4:\"form\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/block\";s:11:\"theme paths\";a:1:{i:0;s:13:\"modules/block\";}s:20:\"preprocess functions\";a:2:{i:0;s:19:\"template_preprocess\";i:1;s:44:\"template_preprocess_block_admin_display_form\";}}s:17:\"color_scheme_form\";a:6:{s:9:\"arguments\";a:1:{s:4:\"form\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/color\";s:8:\"function\";s:23:\"theme_color_scheme_form\";s:11:\"theme paths\";a:1:{i:0;s:13:\"modules/color\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:13:\"comment_block\";a:6:{s:9:\"arguments\";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:11:\"theme paths\";a:1:{i:0;s:15:\"modules/comment\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:22:\"comment_admin_overview\";a:6:{s:9:\"arguments\";a:1:{s:4:\"form\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:15:\"modules/comment\";s:8:\"function\";s:28:\"theme_comment_admin_overview\";s:11:\"theme paths\";a:1:{i:0;s:15:\"modules/comment\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:15:\"comment_preview\";a:6:{s:9:\"arguments\";a:4:{s:7:\"comment\";N;s:4:\"node\";N;s:5:\"links\";a:0:{}s:7:\"visible\";i:1;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:15:\"modules/comment\";s:8:\"function\";s:21:\"theme_comment_preview\";s:11:\"theme paths\";a:1:{i:0;s:15:\"modules/comment\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:12:\"comment_view\";a:6:{s:9:\"arguments\";a:4:{s:7:\"comment\";N;s:4:\"node\";N;s:5:\"links\";a:0:{}s:7:\"visible\";i:1;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:15:\"modules/comment\";s:8:\"function\";s:18:\"theme_comment_view\";s:11:\"theme paths\";a:1:{i:0;s:15:\"modules/comment\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:16:\"comment_controls\";a:6:{s:9:\"arguments\";a:1:{s:4:\"form\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:15:\"modules/comment\";s:8:\"function\";s:22:\"theme_comment_controls\";s:11:\"theme paths\";a:1:{i:0;s:15:\"modules/comment\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:7:\"comment\";a:7:{s:8:\"template\";s:7:\"comment\";s:4:\"path\";s:21:\"sites/all/themes/uspv\";s:4:\"type\";s:12:\"theme_engine\";s:10:\"theme path\";s:21:\"sites/all/themes/uspv\";s:9:\"arguments\";a:3:{s:7:\"comment\";N;s:4:\"node\";N;s:5:\"links\";a:0:{}}s:11:\"theme paths\";a:2:{i:0;s:15:\"modules/comment\";i:1;s:21:\"sites/all/themes/uspv\";}s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:27:\"template_preprocess_comment\";i:2;s:24:\"views_preprocess_comment\";}}s:14:\"comment_folded\";a:6:{s:8:\"template\";s:30:\"modules/comment/comment-folded\";s:9:\"arguments\";a:1:{s:7:\"comment\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:15:\"modules/comment\";s:11:\"theme paths\";a:1:{i:0;s:15:\"modules/comment\";}s:20:\"preprocess functions\";a:2:{i:0;s:19:\"template_preprocess\";i:1;s:34:\"template_preprocess_comment_folded\";}}s:22:\"comment_flat_collapsed\";a:6:{s:9:\"arguments\";a:2:{s:7:\"comment\";N;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_flat_collapsed\";s:11:\"theme paths\";a:1:{i:0;s:15:\"modules/comment\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:21:\"comment_flat_expanded\";a:6:{s:9:\"arguments\";a:2:{s:7:\"comment\";N;s:4:\"node\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:15:\"modules/comment\";s:8:\"function\";s:27:\"theme_comment_flat_expanded\";s:11:\"theme paths\";a:1:{i:0;s:15:\"modules/comment\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:24:\"comment_thread_collapsed\";a:6:{s:9:\"arguments\";a:2:{s:7:\"comment\";N;s:4:\"node\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:15:\"modules/comment\";s:8:\"function\";s:30:\"theme_comment_thread_collapsed\";s:11:\"theme paths\";a:1:{i:0;s:15:\"modules/comment\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:23:\"comment_thread_expanded\";a:6:{s:9:\"arguments\";a:2:{s:7:\"comment\";N;s:4:\"node\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:15:\"modules/comment\";s:8:\"function\";s:29:\"theme_comment_thread_expanded\";s:11:\"theme paths\";a:1:{i:0;s:15:\"modules/comment\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:22:\"comment_post_forbidden\";a:6:{s:9:\"arguments\";a:1:{s:3:\"nid\";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:11:\"theme paths\";a:1:{i:0;s:15:\"modules/comment\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:15:\"comment_wrapper\";a:6:{s:8:\"template\";s:31:\"modules/comment/comment-wrapper\";s:9:\"arguments\";a:2:{s:7:\"content\";N;s:4:\"node\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:15:\"modules/comment\";s:11:\"theme paths\";a:1:{i:0;s:15:\"modules/comment\";}s:20:\"preprocess functions\";a:2:{i:0;s:19:\"template_preprocess\";i:1;s:35:\"template_preprocess_comment_wrapper\";}}s:17:\"comment_submitted\";a:6:{s:9:\"arguments\";a:1:{s:7:\"comment\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:15:\"modules/comment\";s:8:\"function\";s:23:\"theme_comment_submitted\";s:11:\"theme paths\";a:1:{i:0;s:15:\"modules/comment\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:13:\"dblog_filters\";a:6:{s:9:\"arguments\";a:1:{s:4:\"form\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/dblog\";s:8:\"function\";s:19:\"theme_dblog_filters\";s:11:\"theme paths\";a:1:{i:0;s:13:\"modules/dblog\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:21:\"filter_admin_overview\";a:7:{s:9:\"arguments\";a:1:{s:4:\"form\";N;}s:4:\"file\";s:31:\"modules/filter/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:11:\"theme paths\";a:1:{i:0;s:14:\"modules/filter\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:18:\"filter_admin_order\";a:7:{s:9:\"arguments\";a:1:{s:4:\"form\";N;}s:4:\"file\";s:31:\"modules/filter/filter.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/filter\";s:8:\"function\";s:24:\"theme_filter_admin_order\";s:11:\"theme paths\";a:1:{i:0;s:14:\"modules/filter\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:11:\"filter_tips\";a:7:{s:9:\"arguments\";a:3:{s:4:\"tips\";N;s:4:\"long\";b:0;s:5:\"extra\";s:0:\"\";}s:4:\"file\";s:31:\"modules/filter/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:11:\"theme paths\";a:1:{i:0;s:14:\"modules/filter\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:21:\"filter_tips_more_info\";a:6:{s:9:\"arguments\";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:11:\"theme paths\";a:1:{i:0;s:14:\"modules/filter\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:18:\"menu_overview_form\";a:7:{s:4:\"file\";s:27:\"modules/menu/menu.admin.inc\";s:9:\"arguments\";a:1:{s:4:\"form\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/menu\";s:8:\"function\";s:24:\"theme_menu_overview_form\";s:11:\"theme paths\";a:1:{i:0;s:12:\"modules/menu\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:4:\"node\";a:7:{s:8:\"template\";s:4:\"node\";s:4:\"path\";s:21:\"sites/all/themes/uspv\";s:4:\"type\";s:12:\"theme_engine\";s:10:\"theme path\";s:21:\"sites/all/themes/uspv\";s:9:\"arguments\";a:3:{s:4:\"node\";N;s:6:\"teaser\";b:0;s:4:\"page\";b:0;}s:11:\"theme paths\";a:2:{i:0;s:12:\"modules/node\";i:1;s:21:\"sites/all/themes/uspv\";}s:20:\"preprocess functions\";a:7:{i:0;s:19:\"template_preprocess\";i:1;s:24:\"template_preprocess_node\";i:2;s:23:\"content_preprocess_node\";i:3;s:29:\"nodereference_preprocess_node\";i:4;s:22:\"ctools_preprocess_node\";i:5;s:26:\"fieldgroup_preprocess_node\";i:6;s:21:\"views_preprocess_node\";}}s:9:\"node_list\";a:6:{s:9:\"arguments\";a:2:{s:5:\"items\";N;s:5:\"title\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/node\";s:8:\"function\";s:15:\"theme_node_list\";s:11:\"theme paths\";a:1:{i:0;s:12:\"modules/node\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:17:\"node_search_admin\";a:6:{s:9:\"arguments\";a:1:{s:4:\"form\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/node\";s:8:\"function\";s:23:\"theme_node_search_admin\";s:11:\"theme paths\";a:1:{i:0;s:12:\"modules/node\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:16:\"node_filter_form\";a:7:{s:9:\"arguments\";a:1:{s:4:\"form\";N;}s:4:\"file\";s:27:\"modules/node/node.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/node\";s:8:\"function\";s:22:\"theme_node_filter_form\";s:11:\"theme paths\";a:1:{i:0;s:12:\"modules/node\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:12:\"node_filters\";a:7:{s:9:\"arguments\";a:1:{s:4:\"form\";N;}s:4:\"file\";s:27:\"modules/node/node.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/node\";s:8:\"function\";s:18:\"theme_node_filters\";s:11:\"theme paths\";a:1:{i:0;s:12:\"modules/node\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:16:\"node_admin_nodes\";a:7:{s:9:\"arguments\";a:1:{s:4:\"form\";N;}s:4:\"file\";s:27:\"modules/node/node.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/node\";s:8:\"function\";s:22:\"theme_node_admin_nodes\";s:11:\"theme paths\";a:1:{i:0;s:12:\"modules/node\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:13:\"node_add_list\";a:7:{s:9:\"arguments\";a:1:{s:7:\"content\";N;}s:4:\"file\";s:27:\"modules/node/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:11:\"theme paths\";a:1:{i:0;s:12:\"modules/node\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:9:\"node_form\";a:7:{s:9:\"arguments\";a:1:{s:4:\"form\";N;}s:4:\"file\";s:27:\"modules/node/node.pages.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/node\";s:8:\"function\";s:15:\"theme_node_form\";s:11:\"theme paths\";a:1:{i:0;s:12:\"modules/node\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:12:\"node_preview\";a:7:{s:9:\"arguments\";a:1:{s:4:\"node\";N;}s:4:\"file\";s:27:\"modules/node/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:11:\"theme paths\";a:1:{i:0;s:12:\"modules/node\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:16:\"node_log_message\";a:6:{s:9:\"arguments\";a:1:{s:3:\"log\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/node\";s:8:\"function\";s:22:\"theme_node_log_message\";s:11:\"theme paths\";a:1:{i:0;s:12:\"modules/node\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:14:\"node_submitted\";a:6:{s:9:\"arguments\";a:1:{s:4:\"node\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/node\";s:8:\"function\";s:20:\"theme_node_submitted\";s:11:\"theme paths\";a:1:{i:0;s:12:\"modules/node\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:17:\"search_theme_form\";a:7:{s:8:\"template\";s:17:\"search-theme-form\";s:4:\"path\";s:21:\"sites/all/themes/uspv\";s:4:\"type\";s:12:\"theme_engine\";s:10:\"theme path\";s:21:\"sites/all/themes/uspv\";s:9:\"arguments\";a:1:{s:4:\"form\";N;}s:11:\"theme paths\";a:2:{i:0;s:14:\"modules/search\";i:1;s:21:\"sites/all/themes/uspv\";}s:20:\"preprocess functions\";a:2:{i:0;s:19:\"template_preprocess\";i:1;s:37:\"template_preprocess_search_theme_form\";}}s:17:\"search_block_form\";a:6:{s:9:\"arguments\";a:1:{s:4:\"form\";N;}s:8:\"template\";s:32:\"modules/search/search-block-form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/search\";s:11:\"theme paths\";a:1:{i:0;s:14:\"modules/search\";}s:20:\"preprocess functions\";a:2:{i:0;s:19:\"template_preprocess\";i:1;s:37:\"template_preprocess_search_block_form\";}}s:13:\"search_result\";a:7:{s:9:\"arguments\";a:2:{s:6:\"result\";N;s:4:\"type\";N;}s:4:\"file\";s:31:\"modules/search/search.pages.inc\";s:8:\"template\";s:28:\"modules/search/search-result\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/search\";s:11:\"theme paths\";a:1:{i:0;s:14:\"modules/search\";}s:20:\"preprocess functions\";a:2:{i:0;s:19:\"template_preprocess\";i:1;s:33:\"template_preprocess_search_result\";}}s:14:\"search_results\";a:7:{s:9:\"arguments\";a:2:{s:7:\"results\";N;s:4:\"type\";N;}s:4:\"file\";s:31:\"modules/search/search.pages.inc\";s:8:\"template\";s:29:\"modules/search/search-results\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/search\";s:11:\"theme paths\";a:1:{i:0;s:14:\"modules/search\";}s:20:\"preprocess functions\";a:2:{i:0;s:19:\"template_preprocess\";i:1;s:34:\"template_preprocess_search_results\";}}s:11:\"placeholder\";a:6:{s:9:\"arguments\";a:1:{s:4:\"text\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:17:\"theme_placeholder\";s:11:\"theme paths\";a:1:{i:0;s:14:\"modules/system\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:4:\"page\";a:7:{s:8:\"template\";s:4:\"page\";s:4:\"path\";s:21:\"sites/all/themes/uspv\";s:4:\"type\";s:12:\"theme_engine\";s:10:\"theme path\";s:21:\"sites/all/themes/uspv\";s:9:\"arguments\";a:3:{s:7:\"content\";N;s:11:\"show_blocks\";b:1;s:13:\"show_messages\";b:1;}s:11:\"theme paths\";a:2:{i:0;s:14:\"modules/system\";i:1;s:21:\"sites/all/themes/uspv\";}s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:24:\"template_preprocess_page\";i:2;s:22:\"ctools_preprocess_page\";}}s:16:\"maintenance_page\";a:6:{s:9:\"arguments\";a:3:{s:7:\"content\";N;s:11:\"show_blocks\";b:1;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:11:\"theme paths\";a:1:{i:0;s:14:\"modules/system\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:11:\"update_page\";a:6:{s:9:\"arguments\";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:11:\"theme paths\";a:1:{i:0;s:14:\"modules/system\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:12:\"install_page\";a:6:{s:9:\"arguments\";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:11:\"theme paths\";a:1:{i:0;s:14:\"modules/system\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:9:\"task_list\";a:6:{s:9:\"arguments\";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:11:\"theme paths\";a:1:{i:0;s:14:\"modules/system\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:15:\"status_messages\";a:6:{s:9:\"arguments\";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:11:\"theme paths\";a:1:{i:0;s:14:\"modules/system\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:5:\"links\";a:6:{s:9:\"arguments\";a:2:{s:5:\"links\";N;s:10:\"attributes\";a:1:{s:5:\"class\";s:5:\"links\";}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:11:\"theme_links\";s:11:\"theme paths\";a:1:{i:0;s:14:\"modules/system\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:5:\"image\";a:6:{s:9:\"arguments\";a:5:{s:4:\"path\";N;s:3:\"alt\";s:0:\"\";s:5:\"title\";s:0:\"\";s:10:\"attributes\";N;s:7:\"getsize\";b:1;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:11:\"theme_image\";s:11:\"theme paths\";a:1:{i:0;s:14:\"modules/system\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:10:\"breadcrumb\";a:6:{s:9:\"arguments\";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:11:\"theme paths\";a:1:{i:0;s:14:\"modules/system\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:4:\"help\";a:8:{s:8:\"function\";s:16:\"ctools_menu_help\";s:4:\"path\";s:33:\"sites/all/modules/ctools/includes\";s:4:\"file\";s:8:\"menu.inc\";s:9:\"arguments\";a:0:{}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:11:\"theme paths\";a:1:{i:0;s:14:\"modules/system\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:7:\"submenu\";a:6:{s:9:\"arguments\";a:1:{s:5:\"links\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:13:\"theme_submenu\";s:11:\"theme paths\";a:1:{i:0;s:14:\"modules/system\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:5:\"table\";a:6:{s:9:\"arguments\";a:4:{s:6:\"header\";N;s:4:\"rows\";N;s:10:\"attributes\";a:0:{}s:7:\"caption\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:11:\"theme_table\";s:11:\"theme paths\";a:1:{i:0;s:14:\"modules/system\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:24:\"table_select_header_cell\";a:6:{s:9:\"arguments\";a:0:{}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:30:\"theme_table_select_header_cell\";s:11:\"theme paths\";a:1:{i:0;s:14:\"modules/system\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:19:\"tablesort_indicator\";a:6:{s:9:\"arguments\";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:11:\"theme paths\";a:1:{i:0;s:14:\"modules/system\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:3:\"box\";a:7:{s:8:\"template\";s:3:\"box\";s:4:\"path\";s:21:\"sites/all/themes/uspv\";s:4:\"type\";s:12:\"theme_engine\";s:10:\"theme path\";s:21:\"sites/all/themes/uspv\";s:9:\"arguments\";a:3:{s:5:\"title\";N;s:7:\"content\";N;s:6:\"region\";s:4:\"main\";}s:11:\"theme paths\";a:2:{i:0;s:14:\"modules/system\";i:1;s:21:\"sites/all/themes/uspv\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:5:\"block\";a:7:{s:8:\"template\";s:5:\"block\";s:4:\"path\";s:21:\"sites/all/themes/uspv\";s:4:\"type\";s:12:\"theme_engine\";s:10:\"theme path\";s:21:\"sites/all/themes/uspv\";s:9:\"arguments\";a:1:{s:5:\"block\";N;}s:11:\"theme paths\";a:2:{i:0;s:14:\"modules/system\";i:1;s:21:\"sites/all/themes/uspv\";}s:20:\"preprocess functions\";a:2:{i:0;s:19:\"template_preprocess\";i:1;s:25:\"template_preprocess_block\";}}s:4:\"mark\";a:6:{s:9:\"arguments\";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:11:\"theme paths\";a:1:{i:0;s:14:\"modules/system\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:9:\"item_list\";a:6:{s:9:\"arguments\";a:4:{s:5:\"items\";a:0:{}s:5:\"title\";N;s:4:\"type\";s:2:\"ul\";s:10:\"attributes\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:15:\"theme_item_list\";s:11:\"theme paths\";a:1:{i:0;s:14:\"modules/system\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:14:\"more_help_link\";a:6:{s:9:\"arguments\";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:11:\"theme paths\";a:1:{i:0;s:14:\"modules/system\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:8:\"xml_icon\";a:6:{s:9:\"arguments\";a:1:{s:3:\"url\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:14:\"theme_xml_icon\";s:11:\"theme paths\";a:1:{i:0;s:14:\"modules/system\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:9:\"feed_icon\";a:6:{s:9:\"arguments\";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:11:\"theme paths\";a:1:{i:0;s:14:\"modules/system\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:9:\"more_link\";a:6:{s:9:\"arguments\";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:11:\"theme paths\";a:1:{i:0;s:14:\"modules/system\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:7:\"closure\";a:6:{s:9:\"arguments\";a:1:{s:4:\"main\";i:0;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:13:\"theme_closure\";s:11:\"theme paths\";a:1:{i:0;s:14:\"modules/system\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:6:\"blocks\";a:6:{s:9:\"arguments\";a:1:{s:6:\"region\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:12:\"theme_blocks\";s:11:\"theme paths\";a:1:{i:0;s:14:\"modules/system\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:8:\"username\";a:6:{s:9:\"arguments\";a:1:{s:6:\"object\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:14:\"theme_username\";s:11:\"theme paths\";a:1:{i:0;s:14:\"modules/system\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:12:\"progress_bar\";a:6:{s:9:\"arguments\";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:\"theme paths\";a:1:{i:0;s:14:\"modules/system\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:11:\"indentation\";a:6:{s:9:\"arguments\";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:11:\"theme paths\";a:1:{i:0;s:14:\"modules/system\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:5:\"pager\";a:6:{s:9:\"arguments\";a:4:{s:4:\"tags\";a:0:{}s:5:\"limit\";i:10;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:11:\"theme_pager\";s:11:\"theme paths\";a:1:{i:0;s:14:\"modules/system\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:11:\"pager_first\";a:6:{s:9:\"arguments\";a:4:{s:4:\"text\";N;s:5:\"limit\";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:11:\"theme paths\";a:1:{i:0;s:14:\"modules/system\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:14:\"pager_previous\";a:6:{s:9:\"arguments\";a:5:{s:4:\"text\";N;s:5:\"limit\";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:11:\"theme paths\";a:1:{i:0;s:14:\"modules/system\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:10:\"pager_next\";a:6:{s:9:\"arguments\";a:5:{s:4:\"text\";N;s:5:\"limit\";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:11:\"theme paths\";a:1:{i:0;s:14:\"modules/system\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:10:\"pager_last\";a:6:{s:9:\"arguments\";a:4:{s:4:\"text\";N;s:5:\"limit\";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:11:\"theme paths\";a:1:{i:0;s:14:\"modules/system\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:10:\"pager_link\";a:6:{s:9:\"arguments\";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:11:\"theme paths\";a:1:{i:0;s:14:\"modules/system\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:26:\"locale_admin_manage_screen\";a:6:{s:9:\"arguments\";a:1:{s:4:\"form\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:32:\"theme_locale_admin_manage_screen\";s:11:\"theme paths\";a:1:{i:0;s:14:\"modules/system\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:14:\"menu_item_link\";a:6:{s:9:\"arguments\";a:1:{s:4:\"item\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:20:\"theme_menu_item_link\";s:11:\"theme paths\";a:1:{i:0;s:14:\"modules/system\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:9:\"menu_tree\";a:6:{s:9:\"arguments\";a:1:{s:4:\"tree\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:15:\"theme_menu_tree\";s:11:\"theme paths\";a:1:{i:0;s:14:\"modules/system\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:9:\"menu_item\";a:6:{s:9:\"arguments\";a:3:{s:4:\"link\";N;s:12:\"has_children\";N;s:4:\"menu\";s:0:\"\";}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:15:\"theme_menu_item\";s:11:\"theme paths\";a:1:{i:0;s:14:\"modules/system\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:15:\"menu_local_task\";a:6:{s:9:\"arguments\";a:2:{s:4:\"link\";N;s:6:\"active\";b:0;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:21:\"theme_menu_local_task\";s:11:\"theme paths\";a:1:{i:0;s:14:\"modules/system\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:16:\"menu_local_tasks\";a:8:{s:8:\"function\";s:29:\"ctools_theme_menu_local_tasks\";s:4:\"path\";s:33:\"sites/all/modules/ctools/includes\";s:4:\"file\";s:8:\"menu.inc\";s:9:\"arguments\";a:0:{}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:11:\"theme paths\";a:1:{i:0;s:14:\"modules/system\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:6:\"select\";a:6:{s:9:\"arguments\";a:1:{s:7:\"element\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:12:\"theme_select\";s:11:\"theme paths\";a:1:{i:0;s:14:\"modules/system\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:8:\"fieldset\";a:6:{s:9:\"arguments\";a:1:{s:7:\"element\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:14:\"theme_fieldset\";s:11:\"theme paths\";a:1:{i:0;s:14:\"modules/system\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:5:\"radio\";a:6:{s:9:\"arguments\";a:1:{s:7:\"element\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:11:\"theme_radio\";s:11:\"theme paths\";a:1:{i:0;s:14:\"modules/system\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:6:\"radios\";a:6:{s:9:\"arguments\";a:1:{s:7:\"element\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:12:\"theme_radios\";s:11:\"theme paths\";a:1:{i:0;s:14:\"modules/system\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:16:\"password_confirm\";a:6:{s:9:\"arguments\";a:1:{s:7:\"element\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:22:\"theme_password_confirm\";s:11:\"theme paths\";a:1:{i:0;s:14:\"modules/system\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:4:\"date\";a:6:{s:9:\"arguments\";a:1:{s:7:\"element\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:10:\"theme_date\";s:11:\"theme paths\";a:1:{i:0;s:14:\"modules/system\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:4:\"item\";a:6:{s:9:\"arguments\";a:1:{s:7:\"element\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:10:\"theme_item\";s:11:\"theme paths\";a:1:{i:0;s:14:\"modules/system\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:8:\"checkbox\";a:6:{s:9:\"arguments\";a:1:{s:7:\"element\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:14:\"theme_checkbox\";s:11:\"theme paths\";a:1:{i:0;s:14:\"modules/system\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:10:\"checkboxes\";a:6:{s:9:\"arguments\";a:1:{s:7:\"element\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:16:\"theme_checkboxes\";s:11:\"theme paths\";a:1:{i:0;s:14:\"modules/system\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:6:\"submit\";a:6:{s:9:\"arguments\";a:1:{s:7:\"element\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:12:\"theme_submit\";s:11:\"theme paths\";a:1:{i:0;s:14:\"modules/system\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:6:\"button\";a:6:{s:9:\"arguments\";a:1:{s:7:\"element\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:12:\"theme_button\";s:11:\"theme paths\";a:1:{i:0;s:14:\"modules/system\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:12:\"image_button\";a:6:{s:9:\"arguments\";a:1:{s:7:\"element\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:18:\"theme_image_button\";s:11:\"theme paths\";a:1:{i:0;s:14:\"modules/system\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:6:\"hidden\";a:6:{s:9:\"arguments\";a:1:{s:7:\"element\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:12:\"theme_hidden\";s:11:\"theme paths\";a:1:{i:0;s:14:\"modules/system\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:5:\"token\";a:6:{s:9:\"arguments\";a:1:{s:7:\"element\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:11:\"theme_token\";s:11:\"theme paths\";a:1:{i:0;s:14:\"modules/system\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:9:\"textfield\";a:6:{s:9:\"arguments\";a:1:{s:7:\"element\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:15:\"theme_textfield\";s:11:\"theme paths\";a:1:{i:0;s:14:\"modules/system\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:4:\"form\";a:6:{s:9:\"arguments\";a:1:{s:7:\"element\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:10:\"theme_form\";s:11:\"theme paths\";a:1:{i:0;s:14:\"modules/system\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:8:\"textarea\";a:6:{s:9:\"arguments\";a:1:{s:7:\"element\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:14:\"theme_textarea\";s:11:\"theme paths\";a:1:{i:0;s:14:\"modules/system\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:6:\"markup\";a:6:{s:9:\"arguments\";a:1:{s:7:\"element\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:12:\"theme_markup\";s:11:\"theme paths\";a:1:{i:0;s:14:\"modules/system\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:8:\"password\";a:6:{s:9:\"arguments\";a:1:{s:7:\"element\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:14:\"theme_password\";s:11:\"theme paths\";a:1:{i:0;s:14:\"modules/system\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:4:\"file\";a:6:{s:9:\"arguments\";a:1:{s:7:\"element\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:10:\"theme_file\";s:11:\"theme paths\";a:1:{i:0;s:14:\"modules/system\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:12:\"form_element\";a:6:{s:9:\"arguments\";a:2:{s:7:\"element\";N;s:5:\"value\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:18:\"theme_form_element\";s:11:\"theme paths\";a:1:{i:0;s:14:\"modules/system\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:24:\"system_theme_select_form\";a:7:{s:9:\"arguments\";a:1:{s:4:\"form\";N;}s:4:\"file\";s:31:\"modules/system/system.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:30:\"theme_system_theme_select_form\";s:11:\"theme paths\";a:1:{i:0;s:14:\"modules/system\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:18:\"system_themes_form\";a:7:{s:9:\"arguments\";a:1:{s:4:\"form\";N;}s:4:\"file\";s:31:\"modules/system/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_form\";s:11:\"theme paths\";a:1:{i:0;s:14:\"modules/system\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:14:\"system_modules\";a:7:{s:9:\"arguments\";a:1:{s:4:\"form\";N;}s:4:\"file\";s:31:\"modules/system/system.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:20:\"theme_system_modules\";s:11:\"theme paths\";a:1:{i:0;s:14:\"modules/system\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:24:\"system_modules_uninstall\";a:7:{s:9:\"arguments\";a:1:{s:4:\"form\";N;}s:4:\"file\";s:31:\"modules/system/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:11:\"theme paths\";a:1:{i:0;s:14:\"modules/system\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:13:\"status_report\";a:7:{s:9:\"arguments\";a:1:{s:12:\"requirements\";N;}s:4:\"file\";s:31:\"modules/system/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:11:\"theme paths\";a:1:{i:0;s:14:\"modules/system\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:10:\"admin_page\";a:7:{s:9:\"arguments\";a:1:{s:6:\"blocks\";N;}s:4:\"file\";s:31:\"modules/system/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:11:\"theme paths\";a:1:{i:0;s:14:\"modules/system\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:11:\"admin_block\";a:7:{s:9:\"arguments\";a:1:{s:5:\"block\";N;}s:4:\"file\";s:31:\"modules/system/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:11:\"theme paths\";a:1:{i:0;s:14:\"modules/system\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:19:\"admin_block_content\";a:7:{s:9:\"arguments\";a:1:{s:7:\"content\";N;}s:4:\"file\";s:31:\"modules/system/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:11:\"theme paths\";a:1:{i:0;s:14:\"modules/system\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:22:\"system_admin_by_module\";a:7:{s:9:\"arguments\";a:1:{s:10:\"menu_items\";N;}s:4:\"file\";s:31:\"modules/system/system.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:28:\"theme_system_admin_by_module\";s:11:\"theme paths\";a:1:{i:0;s:14:\"modules/system\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:17:\"system_powered_by\";a:6:{s:9:\"arguments\";a:1:{s:10:\"image_path\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:23:\"theme_system_powered_by\";s:11:\"theme paths\";a:1:{i:0;s:14:\"modules/system\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:20:\"taxonomy_term_select\";a:6:{s:9:\"arguments\";a:1:{s:7:\"element\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:16:\"modules/taxonomy\";s:8:\"function\";s:26:\"theme_taxonomy_term_select\";s:11:\"theme paths\";a:1:{i:0;s:16:\"modules/taxonomy\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:18:\"taxonomy_term_page\";a:6:{s:9:\"arguments\";a:2:{s:4:\"tids\";a:0:{}s:6:\"result\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:16:\"modules/taxonomy\";s:8:\"function\";s:24:\"theme_taxonomy_term_page\";s:11:\"theme paths\";a:1:{i:0;s:16:\"modules/taxonomy\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:30:\"taxonomy_overview_vocabularies\";a:6:{s:9:\"arguments\";a:1:{s:4:\"form\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:16:\"modules/taxonomy\";s:8:\"function\";s:36:\"theme_taxonomy_overview_vocabularies\";s:11:\"theme paths\";a:1:{i:0;s:16:\"modules/taxonomy\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:23:\"taxonomy_overview_terms\";a:6:{s:9:\"arguments\";a:1:{s:4:\"form\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:16:\"modules/taxonomy\";s:8:\"function\";s:29:\"theme_taxonomy_overview_terms\";s:11:\"theme paths\";a:1:{i:0;s:16:\"modules/taxonomy\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:15:\"trigger_display\";a:7:{s:9:\"arguments\";a:1:{i:0;s:7:\"element\";}s:4:\"file\";s:33:\"modules/trigger/trigger.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:15:\"modules/trigger\";s:8:\"function\";s:21:\"theme_trigger_display\";s:11:\"theme paths\";a:1:{i:0;s:15:\"modules/trigger\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:15:\"update_settings\";a:6:{s:9:\"arguments\";a:1:{s:4:\"form\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/update\";s:8:\"function\";s:21:\"theme_update_settings\";s:11:\"theme paths\";a:1:{i:0;s:14:\"modules/update\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:13:\"update_report\";a:6:{s:9:\"arguments\";a:1:{s:4:\"data\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/update\";s:8:\"function\";s:19:\"theme_update_report\";s:11:\"theme paths\";a:1:{i:0;s:14:\"modules/update\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:14:\"update_version\";a:6:{s:9:\"arguments\";a:3:{s:7:\"version\";N;s:3:\"tag\";N;s:5:\"class\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/update\";s:8:\"function\";s:20:\"theme_update_version\";s:11:\"theme paths\";a:1:{i:0;s:14:\"modules/update\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:12:\"user_picture\";a:6:{s:9:\"arguments\";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:11:\"theme paths\";a:1:{i:0;s:12:\"modules/user\";}s:20:\"preprocess functions\";a:2:{i:0;s:19:\"template_preprocess\";i:1;s:32:\"template_preprocess_user_picture\";}}s:12:\"user_profile\";a:7:{s:9:\"arguments\";a:1:{s:7:\"account\";N;}s:8:\"template\";s:25:\"modules/user/user-profile\";s:4:\"file\";s:27:\"modules/user/user.pages.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/user\";s:11:\"theme paths\";a:1:{i:0;s:12:\"modules/user\";}s:20:\"preprocess functions\";a:2:{i:0;s:19:\"template_preprocess\";i:1;s:32:\"template_preprocess_user_profile\";}}s:21:\"user_profile_category\";a:7:{s:9:\"arguments\";a:1:{s:7:\"element\";N;}s:8:\"template\";s:34:\"modules/user/user-profile-category\";s:4:\"file\";s:27:\"modules/user/user.pages.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/user\";s:11:\"theme paths\";a:1:{i:0;s:12:\"modules/user\";}s:20:\"preprocess functions\";a:2:{i:0;s:19:\"template_preprocess\";i:1;s:41:\"template_preprocess_user_profile_category\";}}s:17:\"user_profile_item\";a:7:{s:9:\"arguments\";a:1:{s:7:\"element\";N;}s:8:\"template\";s:30:\"modules/user/user-profile-item\";s:4:\"file\";s:27:\"modules/user/user.pages.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/user\";s:11:\"theme paths\";a:1:{i:0;s:12:\"modules/user\";}s:20:\"preprocess functions\";a:2:{i:0;s:19:\"template_preprocess\";i:1;s:37:\"template_preprocess_user_profile_item\";}}s:9:\"user_list\";a:6:{s:9:\"arguments\";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:11:\"theme paths\";a:1:{i:0;s:12:\"modules/user\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:15:\"user_admin_perm\";a:7:{s:9:\"arguments\";a:1:{s:4:\"form\";N;}s:4:\"file\";s:27:\"modules/user/user.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/user\";s:8:\"function\";s:21:\"theme_user_admin_perm\";s:11:\"theme paths\";a:1:{i:0;s:12:\"modules/user\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:19:\"user_admin_new_role\";a:7:{s:9:\"arguments\";a:1:{s:4:\"form\";N;}s:4:\"file\";s:27:\"modules/user/user.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/user\";s:8:\"function\";s:25:\"theme_user_admin_new_role\";s:11:\"theme paths\";a:1:{i:0;s:12:\"modules/user\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:18:\"user_admin_account\";a:7:{s:9:\"arguments\";a:1:{s:4:\"form\";N;}s:4:\"file\";s:27:\"modules/user/user.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/user\";s:8:\"function\";s:24:\"theme_user_admin_account\";s:11:\"theme paths\";a:1:{i:0;s:12:\"modules/user\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:16:\"user_filter_form\";a:7:{s:9:\"arguments\";a:1:{s:4:\"form\";N;}s:4:\"file\";s:27:\"modules/user/user.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/user\";s:8:\"function\";s:22:\"theme_user_filter_form\";s:11:\"theme paths\";a:1:{i:0;s:12:\"modules/user\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:12:\"user_filters\";a:7:{s:9:\"arguments\";a:1:{s:4:\"form\";N;}s:4:\"file\";s:27:\"modules/user/user.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/user\";s:8:\"function\";s:18:\"theme_user_filters\";s:11:\"theme paths\";a:1:{i:0;s:12:\"modules/user\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:14:\"user_signature\";a:6:{s:9:\"arguments\";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:11:\"theme paths\";a:1:{i:0;s:12:\"modules/user\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:15:\"admin_menu_icon\";a:6:{s:9:\"arguments\";a:0:{}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:28:\"sites/all/modules/admin_menu\";s:8:\"function\";s:21:\"theme_admin_menu_icon\";s:11:\"theme paths\";a:1:{i:0;s:28:\"sites/all/modules/admin_menu\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:13:\"content_field\";a:7:{s:8:\"template\";s:13:\"content-field\";s:9:\"arguments\";a:1:{s:7:\"element\";N;}s:4:\"path\";s:27:\"sites/all/modules/cck/theme\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:21:\"sites/all/modules/cck\";s:11:\"theme paths\";a:1:{i:0;s:27:\"sites/all/modules/cck/theme\";}s:20:\"preprocess functions\";a:2:{i:0;s:19:\"template_preprocess\";i:1;s:32:\"content_preprocess_content_field\";}}s:22:\"content_overview_links\";a:6:{s:9:\"arguments\";a:0:{}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:21:\"sites/all/modules/cck\";s:8:\"function\";s:28:\"theme_content_overview_links\";s:11:\"theme paths\";a:1:{i:0;s:21:\"sites/all/modules/cck\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:27:\"content_field_overview_form\";a:8:{s:8:\"template\";s:33:\"content-admin-field-overview-form\";s:4:\"file\";s:9:\"theme.inc\";s:4:\"path\";s:27:\"sites/all/modules/cck/theme\";s:9:\"arguments\";a:1:{s:4:\"form\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:21:\"sites/all/modules/cck\";s:11:\"theme paths\";a:1:{i:0;s:27:\"sites/all/modules/cck/theme\";}s:20:\"preprocess functions\";a:2:{i:0;s:19:\"template_preprocess\";i:1;s:47:\"template_preprocess_content_field_overview_form\";}}s:29:\"content_display_overview_form\";a:8:{s:8:\"template\";s:35:\"content-admin-display-overview-form\";s:4:\"file\";s:9:\"theme.inc\";s:4:\"path\";s:27:\"sites/all/modules/cck/theme\";s:9:\"arguments\";a:1:{s:4:\"form\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:21:\"sites/all/modules/cck\";s:11:\"theme paths\";a:1:{i:0;s:27:\"sites/all/modules/cck/theme\";}s:20:\"preprocess functions\";a:2:{i:0;s:19:\"template_preprocess\";i:1;s:49:\"template_preprocess_content_display_overview_form\";}}s:15:\"content_exclude\";a:6:{s:9:\"arguments\";a:3:{s:7:\"content\";N;s:6:\"object\";a:0:{}s:7:\"context\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:21:\"sites/all/modules/cck\";s:8:\"function\";s:21:\"theme_content_exclude\";s:11:\"theme paths\";a:1:{i:0;s:21:\"sites/all/modules/cck\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:27:\"content_view_multiple_field\";a:6:{s:9:\"arguments\";a:3:{s:5:\"items\";N;s:5:\"field\";N;s:4:\"data\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:21:\"sites/all/modules/cck\";s:8:\"function\";s:33:\"theme_content_view_multiple_field\";s:11:\"theme paths\";a:1:{i:0;s:21:\"sites/all/modules/cck\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:23:\"content_multiple_values\";a:6:{s:9:\"arguments\";a:1:{s:7:\"element\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:21:\"sites/all/modules/cck\";s:8:\"function\";s:29:\"theme_content_multiple_values\";s:11:\"theme paths\";a:1:{i:0;s:21:\"sites/all/modules/cck\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:20:\"nodereference_select\";a:6:{s:9:\"arguments\";a:1:{s:7:\"element\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:43:\"sites/all/modules/cck/modules/nodereference\";s:8:\"function\";s:26:\"theme_nodereference_select\";s:11:\"theme paths\";a:1:{i:0;s:43:\"sites/all/modules/cck/modules/nodereference\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:21:\"nodereference_buttons\";a:6:{s:9:\"arguments\";a:1:{s:7:\"element\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:43:\"sites/all/modules/cck/modules/nodereference\";s:8:\"function\";s:27:\"theme_nodereference_buttons\";s:11:\"theme paths\";a:1:{i:0;s:43:\"sites/all/modules/cck/modules/nodereference\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:26:\"nodereference_autocomplete\";a:6:{s:9:\"arguments\";a:1:{s:7:\"element\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:43:\"sites/all/modules/cck/modules/nodereference\";s:8:\"function\";s:32:\"theme_nodereference_autocomplete\";s:11:\"theme paths\";a:1:{i:0;s:43:\"sites/all/modules/cck/modules/nodereference\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:31:\"nodereference_formatter_default\";a:6:{s:9:\"arguments\";a:1:{i:0;s:7:\"element\";}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:43:\"sites/all/modules/cck/modules/nodereference\";s:8:\"function\";s:37:\"theme_nodereference_formatter_default\";s:11:\"theme paths\";a:1:{i:0;s:43:\"sites/all/modules/cck/modules/nodereference\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:29:\"nodereference_formatter_plain\";a:6:{s:9:\"arguments\";a:1:{i:0;s:7:\"element\";}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:43:\"sites/all/modules/cck/modules/nodereference\";s:8:\"function\";s:35:\"theme_nodereference_formatter_plain\";s:11:\"theme paths\";a:1:{i:0;s:43:\"sites/all/modules/cck/modules/nodereference\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:28:\"nodereference_formatter_full\";a:6:{s:9:\"arguments\";a:1:{i:0;s:7:\"element\";}s:8:\"function\";s:41:\"theme_nodereference_formatter_full_teaser\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:43:\"sites/all/modules/cck/modules/nodereference\";s:11:\"theme paths\";a:1:{i:0;s:43:\"sites/all/modules/cck/modules/nodereference\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:30:\"nodereference_formatter_teaser\";a:6:{s:9:\"arguments\";a:1:{i:0;s:7:\"element\";}s:8:\"function\";s:41:\"theme_nodereference_formatter_full_teaser\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:43:\"sites/all/modules/cck/modules/nodereference\";s:11:\"theme paths\";a:1:{i:0;s:43:\"sites/all/modules/cck/modules/nodereference\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:6:\"number\";a:6:{s:9:\"arguments\";a:1:{s:7:\"element\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:36:\"sites/all/modules/cck/modules/number\";s:8:\"function\";s:12:\"theme_number\";s:11:\"theme paths\";a:1:{i:0;s:36:\"sites/all/modules/cck/modules/number\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:24:\"number_formatter_default\";a:6:{s:9:\"arguments\";a:1:{s:7:\"element\";N;}s:8:\"function\";s:30:\"theme_number_formatter_generic\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:36:\"sites/all/modules/cck/modules/number\";s:11:\"theme paths\";a:1:{i:0;s:36:\"sites/all/modules/cck/modules/number\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:21:\"number_formatter_us_0\";a:6:{s:9:\"arguments\";a:1:{s:7:\"element\";N;}s:8:\"function\";s:30:\"theme_number_formatter_generic\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:36:\"sites/all/modules/cck/modules/number\";s:11:\"theme paths\";a:1:{i:0;s:36:\"sites/all/modules/cck/modules/number\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:21:\"number_formatter_us_1\";a:6:{s:9:\"arguments\";a:1:{s:7:\"element\";N;}s:8:\"function\";s:30:\"theme_number_formatter_generic\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:36:\"sites/all/modules/cck/modules/number\";s:11:\"theme paths\";a:1:{i:0;s:36:\"sites/all/modules/cck/modules/number\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:21:\"number_formatter_us_2\";a:6:{s:9:\"arguments\";a:1:{s:7:\"element\";N;}s:8:\"function\";s:30:\"theme_number_formatter_generic\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:36:\"sites/all/modules/cck/modules/number\";s:11:\"theme paths\";a:1:{i:0;s:36:\"sites/all/modules/cck/modules/number\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:21:\"number_formatter_be_0\";a:6:{s:9:\"arguments\";a:1:{s:7:\"element\";N;}s:8:\"function\";s:30:\"theme_number_formatter_generic\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:36:\"sites/all/modules/cck/modules/number\";s:11:\"theme paths\";a:1:{i:0;s:36:\"sites/all/modules/cck/modules/number\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:21:\"number_formatter_be_1\";a:6:{s:9:\"arguments\";a:1:{s:7:\"element\";N;}s:8:\"function\";s:30:\"theme_number_formatter_generic\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:36:\"sites/all/modules/cck/modules/number\";s:11:\"theme paths\";a:1:{i:0;s:36:\"sites/all/modules/cck/modules/number\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:21:\"number_formatter_be_2\";a:6:{s:9:\"arguments\";a:1:{s:7:\"element\";N;}s:8:\"function\";s:30:\"theme_number_formatter_generic\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:36:\"sites/all/modules/cck/modules/number\";s:11:\"theme paths\";a:1:{i:0;s:36:\"sites/all/modules/cck/modules/number\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:21:\"number_formatter_fr_0\";a:6:{s:9:\"arguments\";a:1:{s:7:\"element\";N;}s:8:\"function\";s:30:\"theme_number_formatter_generic\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:36:\"sites/all/modules/cck/modules/number\";s:11:\"theme paths\";a:1:{i:0;s:36:\"sites/all/modules/cck/modules/number\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:21:\"number_formatter_fr_1\";a:6:{s:9:\"arguments\";a:1:{s:7:\"element\";N;}s:8:\"function\";s:30:\"theme_number_formatter_generic\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:36:\"sites/all/modules/cck/modules/number\";s:11:\"theme paths\";a:1:{i:0;s:36:\"sites/all/modules/cck/modules/number\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:21:\"number_formatter_fr_2\";a:6:{s:9:\"arguments\";a:1:{s:7:\"element\";N;}s:8:\"function\";s:30:\"theme_number_formatter_generic\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:36:\"sites/all/modules/cck/modules/number\";s:11:\"theme paths\";a:1:{i:0;s:36:\"sites/all/modules/cck/modules/number\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:28:\"number_formatter_unformatted\";a:6:{s:9:\"arguments\";a:1:{s:7:\"element\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:36:\"sites/all/modules/cck/modules/number\";s:8:\"function\";s:34:\"theme_number_formatter_unformatted\";s:11:\"theme paths\";a:1:{i:0;s:36:\"sites/all/modules/cck/modules/number\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:20:\"optionwidgets_select\";a:6:{s:9:\"arguments\";a:1:{s:7:\"element\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:43:\"sites/all/modules/cck/modules/optionwidgets\";s:8:\"function\";s:26:\"theme_optionwidgets_select\";s:11:\"theme paths\";a:1:{i:0;s:43:\"sites/all/modules/cck/modules/optionwidgets\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:21:\"optionwidgets_buttons\";a:6:{s:9:\"arguments\";a:1:{s:7:\"element\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:43:\"sites/all/modules/cck/modules/optionwidgets\";s:8:\"function\";s:27:\"theme_optionwidgets_buttons\";s:11:\"theme paths\";a:1:{i:0;s:43:\"sites/all/modules/cck/modules/optionwidgets\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:19:\"optionwidgets_onoff\";a:6:{s:9:\"arguments\";a:1:{s:7:\"element\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:43:\"sites/all/modules/cck/modules/optionwidgets\";s:8:\"function\";s:25:\"theme_optionwidgets_onoff\";s:11:\"theme paths\";a:1:{i:0;s:43:\"sites/all/modules/cck/modules/optionwidgets\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:18:\"optionwidgets_none\";a:6:{s:9:\"arguments\";a:3:{s:11:\"widget_type\";N;s:10:\"field_name\";N;s:9:\"node_type\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:43:\"sites/all/modules/cck/modules/optionwidgets\";s:8:\"function\";s:24:\"theme_optionwidgets_none\";s:11:\"theme paths\";a:1:{i:0;s:43:\"sites/all/modules/cck/modules/optionwidgets\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:13:\"text_textarea\";a:6:{s:9:\"arguments\";a:1:{s:7:\"element\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:34:\"sites/all/modules/cck/modules/text\";s:8:\"function\";s:19:\"theme_text_textarea\";s:11:\"theme paths\";a:1:{i:0;s:34:\"sites/all/modules/cck/modules/text\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:14:\"text_textfield\";a:6:{s:9:\"arguments\";a:1:{s:7:\"element\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:34:\"sites/all/modules/cck/modules/text\";s:8:\"function\";s:20:\"theme_text_textfield\";s:11:\"theme paths\";a:1:{i:0;s:34:\"sites/all/modules/cck/modules/text\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:22:\"text_formatter_default\";a:6:{s:9:\"arguments\";a:1:{s:7:\"element\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:34:\"sites/all/modules/cck/modules/text\";s:8:\"function\";s:28:\"theme_text_formatter_default\";s:11:\"theme paths\";a:1:{i:0;s:34:\"sites/all/modules/cck/modules/text\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:20:\"text_formatter_plain\";a:6:{s:9:\"arguments\";a:1:{s:7:\"element\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:34:\"sites/all/modules/cck/modules/text\";s:8:\"function\";s:26:\"theme_text_formatter_plain\";s:11:\"theme paths\";a:1:{i:0;s:34:\"sites/all/modules/cck/modules/text\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:22:\"text_formatter_trimmed\";a:6:{s:9:\"arguments\";a:1:{s:7:\"element\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:34:\"sites/all/modules/cck/modules/text\";s:8:\"function\";s:28:\"theme_text_formatter_trimmed\";s:11:\"theme paths\";a:1:{i:0;s:34:\"sites/all/modules/cck/modules/text\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:18:\"text_formatter_foo\";a:6:{s:9:\"arguments\";a:1:{s:7:\"element\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:34:\"sites/all/modules/cck/modules/text\";s:8:\"function\";s:24:\"theme_text_formatter_foo\";s:11:\"theme paths\";a:1:{i:0;s:34:\"sites/all/modules/cck/modules/text\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:20:\"userreference_select\";a:6:{s:9:\"arguments\";a:1:{s:7:\"element\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:43:\"sites/all/modules/cck/modules/userreference\";s:8:\"function\";s:26:\"theme_userreference_select\";s:11:\"theme paths\";a:1:{i:0;s:43:\"sites/all/modules/cck/modules/userreference\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:21:\"userreference_buttons\";a:6:{s:9:\"arguments\";a:1:{s:7:\"element\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:43:\"sites/all/modules/cck/modules/userreference\";s:8:\"function\";s:27:\"theme_userreference_buttons\";s:11:\"theme paths\";a:1:{i:0;s:43:\"sites/all/modules/cck/modules/userreference\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:26:\"userreference_autocomplete\";a:6:{s:9:\"arguments\";a:1:{s:7:\"element\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:43:\"sites/all/modules/cck/modules/userreference\";s:8:\"function\";s:32:\"theme_userreference_autocomplete\";s:11:\"theme paths\";a:1:{i:0;s:43:\"sites/all/modules/cck/modules/userreference\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:31:\"userreference_formatter_default\";a:6:{s:9:\"arguments\";a:1:{i:0;s:7:\"element\";}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:43:\"sites/all/modules/cck/modules/userreference\";s:8:\"function\";s:37:\"theme_userreference_formatter_default\";s:11:\"theme paths\";a:1:{i:0;s:43:\"sites/all/modules/cck/modules/userreference\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:29:\"userreference_formatter_plain\";a:6:{s:9:\"arguments\";a:1:{i:0;s:7:\"element\";}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:43:\"sites/all/modules/cck/modules/userreference\";s:8:\"function\";s:35:\"theme_userreference_formatter_plain\";s:11:\"theme paths\";a:1:{i:0;s:43:\"sites/all/modules/cck/modules/userreference\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:23:\"bulk_export_export_form\";a:6:{s:9:\"arguments\";a:1:{s:4:\"form\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:36:\"sites/all/modules/ctools/bulk_export\";s:8:\"function\";s:29:\"theme_bulk_export_export_form\";s:11:\"theme paths\";a:1:{i:0;s:36:\"sites/all/modules/ctools/bulk_export\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:15:\"ctools_dropdown\";a:7:{s:9:\"arguments\";a:4:{s:5:\"title\";N;s:5:\"links\";N;s:5:\"image\";b:0;s:5:\"class\";s:0:\"\";}s:4:\"file\";s:52:\"sites/all/modules/ctools/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:11:\"theme paths\";a:1:{i:0;s:24:\"sites/all/modules/ctools\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:18:\"ctools_collapsible\";a:7:{s:9:\"arguments\";a:3:{s:6:\"handle\";N;s:7:\"content\";N;s:9:\"collapsed\";b:0;}s:4:\"file\";s:55:\"sites/all/modules/ctools/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:11:\"theme paths\";a:1:{i:0;s:24:\"sites/all/modules/ctools\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:29:\"ctools_collapsible_remembered\";a:7:{s:9:\"arguments\";a:4:{s:2:\"id\";N;s:6:\"handle\";N;s:7:\"content\";N;s:9:\"collapsed\";b:0;}s:4:\"file\";s:55:\"sites/all/modules/ctools/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:11:\"theme paths\";a:1:{i:0;s:24:\"sites/all/modules/ctools\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:19:\"ctools_wizard_trail\";a:7:{s:9:\"arguments\";a:1:{i:0;s:5:\"trail\";}s:4:\"file\";s:50:\"sites/all/modules/ctools/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:11:\"theme paths\";a:1:{i:0;s:24:\"sites/all/modules/ctools\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:19:\"ctools_context_list\";a:7:{s:9:\"arguments\";a:1:{i:0;s:6:\"object\";}s:4:\"file\";s:51:\"sites/all/modules/ctools/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:11:\"theme paths\";a:1:{i:0;s:24:\"sites/all/modules/ctools\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:28:\"ctools_context_list_no_table\";a:7:{s:9:\"arguments\";a:1:{i:0;s:6:\"object\";}s:4:\"file\";s:51:\"sites/all/modules/ctools/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:11:\"theme paths\";a:1:{i:0;s:24:\"sites/all/modules/ctools\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:24:\"ctools_context_item_form\";a:7:{s:9:\"arguments\";a:1:{i:0;s:4:\"form\";}s:4:\"file\";s:51:\"sites/all/modules/ctools/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:11:\"theme paths\";a:1:{i:0;s:24:\"sites/all/modules/ctools\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:23:\"ctools_context_item_row\";a:7:{s:9:\"arguments\";a:5:{i:0;s:4:\"type\";i:1;s:4:\"form\";i:2;s:8:\"position\";i:3;s:5:\"count\";s:7:\"with_tr\";b:1;}s:4:\"file\";s:51:\"sites/all/modules/ctools/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:11:\"theme paths\";a:1:{i:0;s:24:\"sites/all/modules/ctools\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:23:\"ctools_access_admin_add\";a:7:{s:9:\"arguments\";a:1:{i:0;s:4:\"form\";}s:4:\"file\";s:51:\"sites/all/modules/ctools/includes/context-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:11:\"theme paths\";a:1:{i:0;s:24:\"sites/all/modules/ctools\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:19:\"image_attach_teaser\";a:6:{s:9:\"arguments\";a:1:{s:4:\"node\";O:8:\"stdClass\":0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:44:\"sites/all/modules/image/contrib/image_attach\";s:8:\"function\";s:25:\"theme_image_attach_teaser\";s:11:\"theme paths\";a:1:{i:0;s:44:\"sites/all/modules/image/contrib/image_attach\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:17:\"image_attach_body\";a:6:{s:9:\"arguments\";a:1:{s:4:\"node\";O:8:\"stdClass\":0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:44:\"sites/all/modules/image/contrib/image_attach\";s:8:\"function\";s:23:\"theme_image_attach_body\";s:11:\"theme paths\";a:1:{i:0;s:44:\"sites/all/modules/image/contrib/image_attach\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:27:\"image_attach_block_attached\";a:6:{s:9:\"arguments\";a:2:{s:3:\"nid\";i:0;s:11:\"image_nodes\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:44:\"sites/all/modules/image/contrib/image_attach\";s:8:\"function\";s:33:\"theme_image_attach_block_attached\";s:11:\"theme paths\";a:1:{i:0;s:44:\"sites/all/modules/image/contrib/image_attach\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:13:\"image_gallery\";a:6:{s:9:\"arguments\";a:2:{s:9:\"galleries\";N;s:6:\"images\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:45:\"sites/all/modules/image/contrib/image_gallery\";s:8:\"function\";s:19:\"theme_image_gallery\";s:11:\"theme paths\";a:1:{i:0;s:45:\"sites/all/modules/image/contrib/image_gallery\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:19:\"image_gallery_count\";a:6:{s:9:\"arguments\";a:1:{s:5:\"count\";i:0;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:45:\"sites/all/modules/image/contrib/image_gallery\";s:8:\"function\";s:25:\"theme_image_gallery_count\";s:11:\"theme paths\";a:1:{i:0;s:45:\"sites/all/modules/image/contrib/image_gallery\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:21:\"image_gallery_updated\";a:6:{s:9:\"arguments\";a:1:{s:9:\"timestamp\";i:0;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:45:\"sites/all/modules/image/contrib/image_gallery\";s:8:\"function\";s:27:\"theme_image_gallery_updated\";s:11:\"theme paths\";a:1:{i:0;s:45:\"sites/all/modules/image/contrib/image_gallery\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:17:\"image_gallery_img\";a:6:{s:9:\"arguments\";a:2:{s:5:\"image\";N;s:4:\"size\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:45:\"sites/all/modules/image/contrib/image_gallery\";s:8:\"function\";s:23:\"theme_image_gallery_img\";s:11:\"theme paths\";a:1:{i:0;s:45:\"sites/all/modules/image/contrib/image_gallery\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:17:\"image_import_form\";a:7:{s:9:\"arguments\";a:1:{i:0;s:4:\"form\";}s:4:\"file\";s:67:\"sites/all/modules/image/contrib/image_import/image_import.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:44:\"sites/all/modules/image/contrib/image_import\";s:8:\"function\";s:23:\"theme_image_import_form\";s:11:\"theme paths\";a:1:{i:0;s:44:\"sites/all/modules/image/contrib/image_import\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:25:\"image_settings_sizes_form\";a:6:{s:9:\"arguments\";a:1:{s:4:\"form\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:23:\"sites/all/modules/image\";s:8:\"function\";s:31:\"theme_image_settings_sizes_form\";s:11:\"theme paths\";a:1:{i:0;s:23:\"sites/all/modules/image\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:12:\"image_teaser\";a:6:{s:9:\"arguments\";a:2:{s:4:\"node\";N;s:4:\"size\";s:9:\"thumbnail\";}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:23:\"sites/all/modules/image\";s:8:\"function\";s:18:\"theme_image_teaser\";s:11:\"theme paths\";a:1:{i:0;s:23:\"sites/all/modules/image\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:10:\"image_body\";a:6:{s:9:\"arguments\";a:2:{s:4:\"node\";N;s:4:\"size\";s:7:\"preview\";}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:23:\"sites/all/modules/image\";s:8:\"function\";s:16:\"theme_image_body\";s:11:\"theme paths\";a:1:{i:0;s:23:\"sites/all/modules/image\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:18:\"image_block_random\";a:6:{s:9:\"arguments\";a:2:{s:6:\"images\";N;s:4:\"size\";s:9:\"thumbnail\";}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:23:\"sites/all/modules/image\";s:8:\"function\";s:24:\"theme_image_block_random\";s:11:\"theme paths\";a:1:{i:0;s:23:\"sites/all/modules/image\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:18:\"image_block_latest\";a:6:{s:9:\"arguments\";a:2:{s:6:\"images\";N;s:4:\"size\";s:9:\"thumbnail\";}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:23:\"sites/all/modules/image\";s:8:\"function\";s:24:\"theme_image_block_latest\";s:11:\"theme paths\";a:1:{i:0;s:23:\"sites/all/modules/image\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:13:\"image_display\";a:6:{s:9:\"arguments\";a:4:{s:4:\"node\";N;s:5:\"label\";N;s:3:\"url\";N;s:10:\"attributes\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:23:\"sites/all/modules/image\";s:8:\"function\";s:19:\"theme_image_display\";s:11:\"theme paths\";a:1:{i:0;s:23:\"sites/all/modules/image\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:14:\"nice_menu_tree\";a:6:{s:9:\"arguments\";a:3:{s:9:\"menu_name\";N;s:4:\"mlid\";N;s:4:\"menu\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:28:\"sites/all/modules/nice_menus\";s:8:\"function\";s:20:\"theme_nice_menu_tree\";s:11:\"theme paths\";a:1:{i:0;s:28:\"sites/all/modules/nice_menus\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:15:\"nice_menu_build\";a:6:{s:9:\"arguments\";a:1:{s:4:\"menu\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:28:\"sites/all/modules/nice_menus\";s:8:\"function\";s:21:\"theme_nice_menu_build\";s:11:\"theme paths\";a:1:{i:0;s:28:\"sites/all/modules/nice_menus\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:9:\"nice_menu\";a:6:{s:9:\"arguments\";a:4:{s:2:\"id\";N;s:3:\"pid\";N;s:9:\"direction\";s:5:\"right\";s:4:\"menu\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:28:\"sites/all/modules/nice_menus\";s:8:\"function\";s:15:\"theme_nice_menu\";s:11:\"theme paths\";a:1:{i:0;s:28:\"sites/all/modules/nice_menus\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:23:\"nice_menu_primary_links\";a:6:{s:9:\"arguments\";a:2:{s:9:\"direction\";s:4:\"down\";s:4:\"menu\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:28:\"sites/all/modules/nice_menus\";s:8:\"function\";s:29:\"theme_nice_menu_primary_links\";s:11:\"theme paths\";a:1:{i:0;s:28:\"sites/all/modules/nice_menus\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:18:\"panels_layout_link\";a:6:{s:9:\"arguments\";a:4:{i:0;s:5:\"title\";i:1;s:2:\"id\";i:2;s:5:\"image\";i:3;s:4:\"link\";}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:24:\"sites/all/modules/panels\";s:8:\"function\";s:24:\"theme_panels_layout_link\";s:11:\"theme paths\";a:1:{i:0;s:24:\"sites/all/modules/panels\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:18:\"panels_layout_icon\";a:6:{s:9:\"arguments\";a:3:{i:0;s:2:\"id\";i:1;s:5:\"image\";s:5:\"title\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:24:\"sites/all/modules/panels\";s:8:\"function\";s:24:\"theme_panels_layout_icon\";s:11:\"theme paths\";a:1:{i:0;s:24:\"sites/all/modules/panels\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:24:\"panels_edit_display_form\";a:7:{s:9:\"arguments\";a:1:{i:0;s:4:\"form\";}s:4:\"file\";s:50:\"sites/all/modules/panels/includes/display-edit.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:24:\"sites/all/modules/panels\";s:8:\"function\";s:30:\"theme_panels_edit_display_form\";s:11:\"theme paths\";a:1:{i:0;s:24:\"sites/all/modules/panels\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:30:\"panels_edit_layout_form_choose\";a:7:{s:9:\"arguments\";a:1:{i:0;s:4:\"form\";}s:4:\"file\";s:50:\"sites/all/modules/panels/includes/display-edit.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:24:\"sites/all/modules/panels\";s:8:\"function\";s:36:\"theme_panels_edit_layout_form_choose\";s:11:\"theme paths\";a:1:{i:0;s:24:\"sites/all/modules/panels\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:11:\"panels_pane\";a:7:{s:9:\"arguments\";a:3:{s:6:\"output\";a:0:{}s:4:\"pane\";a:0:{}s:7:\"display\";a:0:{}}s:4:\"path\";s:34:\"sites/all/modules/panels/templates\";s:8:\"template\";s:11:\"panels-pane\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:24:\"sites/all/modules/panels\";s:11:\"theme paths\";a:1:{i:0;s:34:\"sites/all/modules/panels/templates\";}s:20:\"preprocess functions\";a:2:{i:0;s:19:\"template_preprocess\";i:1;s:31:\"template_preprocess_panels_pane\";}}s:26:\"panels_common_content_list\";a:7:{s:9:\"arguments\";a:1:{i:0;s:7:\"display\";}s:4:\"file\";s:44:\"sites/all/modules/panels/includes/common.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:24:\"sites/all/modules/panels\";s:8:\"function\";s:32:\"theme_panels_common_content_list\";s:11:\"theme paths\";a:1:{i:0;s:24:\"sites/all/modules/panels\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:26:\"panels_render_display_form\";a:6:{s:9:\"arguments\";a:1:{s:4:\"form\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:24:\"sites/all/modules/panels\";s:8:\"function\";s:32:\"theme_panels_render_display_form\";s:11:\"theme paths\";a:1:{i:0;s:24:\"sites/all/modules/panels\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:16:\"panels_dashboard\";a:8:{s:9:\"arguments\";a:0:{}s:4:\"path\";s:34:\"sites/all/modules/panels/templates\";s:4:\"file\";s:25:\"../includes/callbacks.inc\";s:8:\"template\";s:16:\"panels-dashboard\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:24:\"sites/all/modules/panels\";s:11:\"theme paths\";a:1:{i:0;s:34:\"sites/all/modules/panels/templates\";}s:20:\"preprocess functions\";a:2:{i:0;s:19:\"template_preprocess\";i:1;s:36:\"template_preprocess_panels_dashboard\";}}s:24:\"panels_threecol_25_50_25\";a:8:{s:9:\"arguments\";a:4:{s:6:\"css_id\";N;s:7:\"content\";N;s:8:\"settings\";N;s:7:\"display\";N;}s:4:\"path\";s:58:\"sites/all/modules/panels/plugins/layouts/threecol_25_50_25\";s:8:\"template\";s:24:\"panels-threecol-25-50-25\";s:4:\"file\";s:21:\"threecol_25_50_25.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:24:\"sites/all/modules/panels\";s:11:\"theme paths\";a:1:{i:0;s:58:\"sites/all/modules/panels/plugins/layouts/threecol_25_50_25\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:15:\"panels_flexible\";a:7:{s:9:\"arguments\";a:4:{s:6:\"css_id\";N;s:7:\"content\";N;s:8:\"settings\";N;s:7:\"display\";N;}s:4:\"path\";s:49:\"sites/all/modules/panels/plugins/layouts/flexible\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:24:\"sites/all/modules/panels\";s:8:\"function\";s:21:\"theme_panels_flexible\";s:11:\"theme paths\";a:1:{i:0;s:49:\"sites/all/modules/panels/plugins/layouts/flexible\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:21:\"panels_flexible_admin\";a:7:{s:9:\"arguments\";a:4:{s:6:\"css_id\";N;s:7:\"content\";N;s:8:\"settings\";N;s:7:\"display\";N;}s:4:\"path\";s:49:\"sites/all/modules/panels/plugins/layouts/flexible\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:24:\"sites/all/modules/panels\";s:8:\"function\";s:27:\"theme_panels_flexible_admin\";s:11:\"theme paths\";a:1:{i:0;s:49:\"sites/all/modules/panels/plugins/layouts/flexible\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:20:\"panels_twocol_bricks\";a:8:{s:9:\"arguments\";a:4:{s:6:\"css_id\";N;s:7:\"content\";N;s:8:\"settings\";N;s:7:\"display\";N;}s:4:\"path\";s:54:\"sites/all/modules/panels/plugins/layouts/twocol_bricks\";s:8:\"template\";s:20:\"panels-twocol-bricks\";s:4:\"file\";s:17:\"twocol_bricks.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:24:\"sites/all/modules/panels\";s:11:\"theme paths\";a:1:{i:0;s:54:\"sites/all/modules/panels/plugins/layouts/twocol_bricks\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:21:\"panels_twocol_stacked\";a:8:{s:9:\"arguments\";a:4:{s:6:\"css_id\";N;s:7:\"content\";N;s:8:\"settings\";N;s:7:\"display\";N;}s:4:\"path\";s:55:\"sites/all/modules/panels/plugins/layouts/twocol_stacked\";s:8:\"template\";s:21:\"panels-twocol-stacked\";s:4:\"file\";s:18:\"twocol_stacked.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:24:\"sites/all/modules/panels\";s:11:\"theme paths\";a:1:{i:0;s:55:\"sites/all/modules/panels/plugins/layouts/twocol_stacked\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:13:\"panels_twocol\";a:8:{s:9:\"arguments\";a:4:{s:6:\"css_id\";N;s:7:\"content\";N;s:8:\"settings\";N;s:7:\"display\";N;}s:4:\"path\";s:47:\"sites/all/modules/panels/plugins/layouts/twocol\";s:8:\"template\";s:13:\"panels-twocol\";s:4:\"file\";s:10:\"twocol.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:24:\"sites/all/modules/panels\";s:11:\"theme paths\";a:1:{i:0;s:47:\"sites/all/modules/panels/plugins/layouts/twocol\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:32:\"panels_threecol_25_50_25_stacked\";a:8:{s:9:\"arguments\";a:4:{s:6:\"css_id\";N;s:7:\"content\";N;s:8:\"settings\";N;s:7:\"display\";N;}s:4:\"path\";s:66:\"sites/all/modules/panels/plugins/layouts/threecol_25_50_25_stacked\";s:8:\"template\";s:32:\"panels-threecol-25-50-25-stacked\";s:4:\"file\";s:29:\"threecol_25_50_25_stacked.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:24:\"sites/all/modules/panels\";s:11:\"theme paths\";a:1:{i:0;s:66:\"sites/all/modules/panels/plugins/layouts/threecol_25_50_25_stacked\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:13:\"panels_onecol\";a:8:{s:9:\"arguments\";a:4:{s:6:\"css_id\";N;s:7:\"content\";N;s:8:\"settings\";N;s:7:\"display\";N;}s:4:\"path\";s:47:\"sites/all/modules/panels/plugins/layouts/onecol\";s:8:\"template\";s:13:\"panels-onecol\";s:4:\"file\";s:10:\"onecol.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:24:\"sites/all/modules/panels\";s:11:\"theme paths\";a:1:{i:0;s:47:\"sites/all/modules/panels/plugins/layouts/onecol\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:24:\"panels_threecol_33_34_33\";a:8:{s:9:\"arguments\";a:4:{s:6:\"css_id\";N;s:7:\"content\";N;s:8:\"settings\";N;s:7:\"display\";N;}s:4:\"path\";s:58:\"sites/all/modules/panels/plugins/layouts/threecol_33_34_33\";s:8:\"template\";s:24:\"panels-threecol-33-34-33\";s:4:\"file\";s:21:\"threecol_33_34_33.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:24:\"sites/all/modules/panels\";s:11:\"theme paths\";a:1:{i:0;s:58:\"sites/all/modules/panels/plugins/layouts/threecol_33_34_33\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:32:\"panels_threecol_33_34_33_stacked\";a:8:{s:9:\"arguments\";a:4:{s:6:\"css_id\";N;s:7:\"content\";N;s:8:\"settings\";N;s:7:\"display\";N;}s:4:\"path\";s:66:\"sites/all/modules/panels/plugins/layouts/threecol_33_34_33_stacked\";s:8:\"template\";s:32:\"panels-threecol-33-34-33-stacked\";s:4:\"file\";s:29:\"threecol_33_34_33_stacked.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:24:\"sites/all/modules/panels\";s:11:\"theme paths\";a:1:{i:0;s:66:\"sites/all/modules/panels/plugins/layouts/threecol_33_34_33_stacked\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:40:\"panels_rounded_corners_style_render_pane\";a:6:{s:9:\"arguments\";a:3:{s:6:\"output\";N;s:4:\"pane\";N;s:7:\"display\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:24:\"sites/all/modules/panels\";s:8:\"function\";s:46:\"theme_panels_rounded_corners_style_render_pane\";s:11:\"theme paths\";a:1:{i:0;s:24:\"sites/all/modules/panels\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:41:\"panels_rounded_corners_style_render_panel\";a:6:{s:9:\"arguments\";a:4:{s:7:\"display\";N;s:8:\"panel_id\";N;s:5:\"panes\";N;s:8:\"settings\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:24:\"sites/all/modules/panels\";s:8:\"function\";s:47:\"theme_panels_rounded_corners_style_render_panel\";s:11:\"theme paths\";a:1:{i:0;s:24:\"sites/all/modules/panels\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:26:\"panels_rounded_corners_box\";a:7:{s:9:\"arguments\";a:1:{s:7:\"content\";N;}s:4:\"path\";s:47:\"sites/all/modules/panels/plugins/styles/corners\";s:8:\"template\";s:26:\"panels-rounded-corners-box\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:24:\"sites/all/modules/panels\";s:11:\"theme paths\";a:1:{i:0;s:47:\"sites/all/modules/panels/plugins/styles/corners\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:30:\"panels_block_style_render_pane\";a:6:{s:9:\"arguments\";a:3:{s:6:\"output\";N;s:4:\"pane\";N;s:7:\"display\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:24:\"sites/all/modules/panels\";s:8:\"function\";s:36:\"theme_panels_block_style_render_pane\";s:11:\"theme paths\";a:1:{i:0;s:24:\"sites/all/modules/panels\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:33:\"panels_default_style_render_panel\";a:6:{s:9:\"arguments\";a:4:{s:7:\"display\";N;s:8:\"panel_id\";N;s:5:\"panes\";N;s:8:\"settings\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:24:\"sites/all/modules/panels\";s:8:\"function\";s:39:\"theme_panels_default_style_render_panel\";s:11:\"theme paths\";a:1:{i:0;s:24:\"sites/all/modules/panels\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:30:\"panels_list_style_render_panel\";a:6:{s:9:\"arguments\";a:4:{s:7:\"display\";N;s:8:\"panel_id\";N;s:5:\"panes\";N;s:8:\"settings\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:24:\"sites/all/modules/panels\";s:8:\"function\";s:36:\"theme_panels_list_style_render_panel\";s:11:\"theme paths\";a:1:{i:0;s:24:\"sites/all/modules/panels\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:30:\"panels_naked_style_render_pane\";a:6:{s:9:\"arguments\";a:3:{s:6:\"output\";N;s:4:\"pane\";N;s:7:\"display\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:24:\"sites/all/modules/panels\";s:8:\"function\";s:36:\"theme_panels_naked_style_render_pane\";s:11:\"theme paths\";a:1:{i:0;s:24:\"sites/all/modules/panels\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:16:\"simplenews_block\";a:7:{s:8:\"template\";s:45:\"sites/all/modules/simplenews/simplenews-block\";s:9:\"arguments\";a:1:{s:3:\"tid\";N;}s:7:\"pattern\";s:18:\"simplenews_block__\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:28:\"sites/all/modules/simplenews\";s:11:\"theme paths\";a:1:{i:0;s:28:\"sites/all/modules/simplenews\";}s:20:\"preprocess functions\";a:2:{i:0;s:19:\"template_preprocess\";i:1;s:36:\"template_preprocess_simplenews_block\";}}s:17:\"simplenews_status\";a:7:{s:8:\"template\";s:46:\"sites/all/modules/simplenews/simplenews-status\";s:4:\"file\";s:49:\"sites/all/modules/simplenews/simplenews.admin.inc\";s:9:\"arguments\";a:2:{s:6:\"status\";N;s:6:\"source\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:28:\"sites/all/modules/simplenews\";s:11:\"theme paths\";a:1:{i:0;s:28:\"sites/all/modules/simplenews\";}s:20:\"preprocess functions\";a:2:{i:0;s:19:\"template_preprocess\";i:1;s:37:\"template_preprocess_simplenews_status\";}}s:29:\"simplenews_newsletter_subject\";a:6:{s:9:\"arguments\";a:3:{s:4:\"name\";N;s:5:\"title\";N;s:8:\"language\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:28:\"sites/all/modules/simplenews\";s:8:\"function\";s:35:\"theme_simplenews_newsletter_subject\";s:11:\"theme paths\";a:1:{i:0;s:28:\"sites/all/modules/simplenews\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:26:\"simplenews_newsletter_body\";a:7:{s:8:\"template\";s:55:\"sites/all/modules/simplenews/simplenews-newsletter-body\";s:9:\"arguments\";a:2:{s:4:\"node\";N;s:8:\"language\";N;}s:7:\"pattern\";s:28:\"simplenews_newsletter_body__\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:28:\"sites/all/modules/simplenews\";s:11:\"theme paths\";a:1:{i:0;s:28:\"sites/all/modules/simplenews\";}s:20:\"preprocess functions\";a:2:{i:0;s:19:\"template_preprocess\";i:1;s:46:\"template_preprocess_simplenews_newsletter_body\";}}s:28:\"simplenews_newsletter_footer\";a:7:{s:8:\"template\";s:57:\"sites/all/modules/simplenews/simplenews-newsletter-footer\";s:9:\"arguments\";a:3:{s:4:\"node\";N;s:3:\"key\";N;s:8:\"language\";N;}s:7:\"pattern\";s:30:\"simplenews_newsletter_footer__\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:28:\"sites/all/modules/simplenews\";s:11:\"theme paths\";a:1:{i:0;s:28:\"sites/all/modules/simplenews\";}s:20:\"preprocess functions\";a:2:{i:0;s:19:\"template_preprocess\";i:1;s:48:\"template_preprocess_simplenews_newsletter_footer\";}}s:28:\"simplenews_subscription_list\";a:7:{s:4:\"file\";s:49:\"sites/all/modules/simplenews/simplenews.admin.inc\";s:9:\"arguments\";a:1:{s:4:\"form\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:28:\"sites/all/modules/simplenews\";s:8:\"function\";s:34:\"theme_simplenews_subscription_list\";s:11:\"theme paths\";a:1:{i:0;s:28:\"sites/all/modules/simplenews\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:16:\"site_map_display\";a:6:{s:9:\"arguments\";a:0:{}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:26:\"sites/all/modules/site_map\";s:8:\"function\";s:22:\"theme_site_map_display\";s:11:\"theme paths\";a:1:{i:0;s:26:\"sites/all/modules/site_map\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:12:\"site_map_box\";a:6:{s:9:\"arguments\";a:3:{s:5:\"title\";N;s:7:\"content\";N;s:5:\"class\";s:0:\"\";}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:26:\"sites/all/modules/site_map\";s:8:\"function\";s:18:\"theme_site_map_box\";s:11:\"theme paths\";a:1:{i:0;s:26:\"sites/all/modules/site_map\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:18:\"site_map_feed_icon\";a:6:{s:9:\"arguments\";a:2:{s:3:\"url\";N;s:4:\"type\";s:4:\"node\";}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:26:\"sites/all/modules/site_map\";s:8:\"function\";s:24:\"theme_site_map_feed_icon\";s:11:\"theme paths\";a:1:{i:0;s:26:\"sites/all/modules/site_map\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:24:\"views_export_export_form\";a:6:{s:4:\"args\";a:1:{s:4:\"form\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:36:\"sites/all/modules/views/views_export\";s:8:\"function\";s:30:\"theme_views_export_export_form\";s:11:\"theme paths\";a:1:{i:0;s:36:\"sites/all/modules/views/views_export\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:18:\"views_ui_edit_view\";a:7:{s:9:\"arguments\";a:1:{s:4:\"view\";N;}s:8:\"template\";s:18:\"views-ui-edit-view\";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:11:\"theme paths\";a:1:{i:0;s:29:\"sites/all/modules/views/theme\";}s:20:\"preprocess functions\";a:2:{i:0;s:19:\"template_preprocess\";i:1;s:38:\"template_preprocess_views_ui_edit_view\";}}s:17:\"views_ui_edit_tab\";a:7:{s:9:\"arguments\";a:2:{s:4:\"view\";N;s:7:\"display\";N;}s:8:\"template\";s:17:\"views-ui-edit-tab\";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:11:\"theme paths\";a:1:{i:0;s:29:\"sites/all/modules/views/theme\";}s:20:\"preprocess functions\";a:2:{i:0;s:19:\"template_preprocess\";i:1;s:37:\"template_preprocess_views_ui_edit_tab\";}}s:18:\"views_ui_edit_item\";a:7:{s:9:\"arguments\";a:4:{s:4:\"type\";N;s:4:\"view\";N;s:7:\"display\";N;s:9:\"no_fields\";b:0;}s:8:\"template\";s:18:\"views-ui-edit-item\";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:11:\"theme paths\";a:1:{i:0;s:29:\"sites/all/modules/views/theme\";}s:20:\"preprocess functions\";a:2:{i:0;s:19:\"template_preprocess\";i:1;s:38:\"template_preprocess_views_ui_edit_item\";}}s:23:\"views_ui_rearrange_form\";a:7:{s:9:\"arguments\";a:1:{s:4:\"form\";N;}s:4:\"file\";s:42:\"sites/all/modules/views/includes/admin.inc\";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:11:\"theme paths\";a:1:{i:0;s:23:\"sites/all/modules/views\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:19:\"views_ui_list_views\";a:6:{s:8:\"template\";s:19:\"views-ui-list-views\";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:11:\"theme paths\";a:1:{i:0;s:29:\"sites/all/modules/views/theme\";}s:20:\"preprocess functions\";a:2:{i:0;s:19:\"template_preprocess\";i:1;s:39:\"template_preprocess_views_ui_list_views\";}}s:24:\"views_ui_list_views_form\";a:7:{s:4:\"file\";s:42:\"sites/all/modules/views/includes/admin.inc\";s:9:\"arguments\";a:1:{s:4:\"form\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:23:\"sites/all/modules/views\";s:8:\"function\";s:30:\"theme_views_ui_list_views_form\";s:11:\"theme paths\";a:1:{i:0;s:23:\"sites/all/modules/views\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:12:\"views_tabset\";a:7:{s:9:\"arguments\";a:1:{s:4:\"tabs\";N;}s:4:\"file\";s:41:\"sites/all/modules/views/includes/tabs.inc\";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:11:\"theme paths\";a:1:{i:0;s:23:\"sites/all/modules/views\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:9:\"views_tab\";a:7:{s:9:\"arguments\";a:1:{s:4:\"body\";N;}s:4:\"file\";s:41:\"sites/all/modules/views/includes/tabs.inc\";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:11:\"theme paths\";a:1:{i:0;s:23:\"sites/all/modules/views\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:27:\"views_ui_style_plugin_table\";a:7:{s:9:\"arguments\";a:1:{s:4:\"form\";N;}s:4:\"file\";s:42:\"sites/all/modules/views/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_style_plugin_table\";s:11:\"theme paths\";a:1:{i:0;s:23:\"sites/all/modules/views\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:27:\"views_slideshow_singleframe\";a:7:{s:9:\"arguments\";a:4:{s:4:\"view\";N;s:7:\"options\";a:0:{}s:4:\"rows\";a:0:{}s:5:\"title\";s:0:\"\";}s:8:\"template\";s:97:\"sites/all/modules/views_slideshow/contrib/views_slideshow_singleframe/views-slideshow-singleframe\";s:4:\"file\";s:107:\"sites/all/modules/views_slideshow/contrib/views_slideshow_singleframe/views_slideshow_singleframe.theme.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:69:\"sites/all/modules/views_slideshow/contrib/views_slideshow_singleframe\";s:11:\"theme paths\";a:1:{i:0;s:69:\"sites/all/modules/views_slideshow/contrib/views_slideshow_singleframe\";}s:20:\"preprocess functions\";a:2:{i:0;s:19:\"template_preprocess\";i:1;s:47:\"template_preprocess_views_slideshow_singleframe\";}}s:36:\"views_slideshow_singleframe_controls\";a:7:{s:9:\"arguments\";a:3:{s:2:\"id\";s:0:\"\";s:4:\"view\";N;s:7:\"options\";a:0:{}}s:4:\"file\";s:107:\"sites/all/modules/views_slideshow/contrib/views_slideshow_singleframe/views_slideshow_singleframe.theme.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:69:\"sites/all/modules/views_slideshow/contrib/views_slideshow_singleframe\";s:8:\"function\";s:42:\"theme_views_slideshow_singleframe_controls\";s:11:\"theme paths\";a:1:{i:0;s:69:\"sites/all/modules/views_slideshow/contrib/views_slideshow_singleframe\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:44:\"views_slideshow_singleframe_control_previous\";a:7:{s:9:\"arguments\";a:3:{s:2:\"id\";s:0:\"\";s:4:\"view\";N;s:7:\"options\";a:0:{}}s:4:\"file\";s:107:\"sites/all/modules/views_slideshow/contrib/views_slideshow_singleframe/views_slideshow_singleframe.theme.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:69:\"sites/all/modules/views_slideshow/contrib/views_slideshow_singleframe\";s:8:\"function\";s:50:\"theme_views_slideshow_singleframe_control_previous\";s:11:\"theme paths\";a:1:{i:0;s:69:\"sites/all/modules/views_slideshow/contrib/views_slideshow_singleframe\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:41:\"views_slideshow_singleframe_control_pause\";a:7:{s:9:\"arguments\";a:3:{s:2:\"id\";s:0:\"\";s:4:\"view\";N;s:7:\"options\";a:0:{}}s:4:\"file\";s:107:\"sites/all/modules/views_slideshow/contrib/views_slideshow_singleframe/views_slideshow_singleframe.theme.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:69:\"sites/all/modules/views_slideshow/contrib/views_slideshow_singleframe\";s:8:\"function\";s:47:\"theme_views_slideshow_singleframe_control_pause\";s:11:\"theme paths\";a:1:{i:0;s:69:\"sites/all/modules/views_slideshow/contrib/views_slideshow_singleframe\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:40:\"views_slideshow_singleframe_control_next\";a:7:{s:9:\"arguments\";a:3:{s:2:\"id\";s:0:\"\";s:4:\"view\";N;s:7:\"options\";a:0:{}}s:4:\"file\";s:107:\"sites/all/modules/views_slideshow/contrib/views_slideshow_singleframe/views_slideshow_singleframe.theme.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:69:\"sites/all/modules/views_slideshow/contrib/views_slideshow_singleframe\";s:8:\"function\";s:46:\"theme_views_slideshow_singleframe_control_next\";s:11:\"theme paths\";a:1:{i:0;s:69:\"sites/all/modules/views_slideshow/contrib/views_slideshow_singleframe\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:33:\"views_slideshow_singleframe_pager\";a:7:{s:9:\"arguments\";a:3:{s:2:\"id\";s:0:\"\";s:4:\"view\";N;s:7:\"options\";a:0:{}}s:4:\"file\";s:107:\"sites/all/modules/views_slideshow/contrib/views_slideshow_singleframe/views_slideshow_singleframe.theme.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:69:\"sites/all/modules/views_slideshow/contrib/views_slideshow_singleframe\";s:8:\"function\";s:39:\"theme_views_slideshow_singleframe_pager\";s:11:\"theme paths\";a:1:{i:0;s:69:\"sites/all/modules/views_slideshow/contrib/views_slideshow_singleframe\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:39:\"views_slideshow_singleframe_image_count\";a:7:{s:9:\"arguments\";a:3:{s:2:\"id\";s:0:\"\";s:4:\"view\";N;s:7:\"options\";a:0:{}}s:4:\"file\";s:107:\"sites/all/modules/views_slideshow/contrib/views_slideshow_singleframe/views_slideshow_singleframe.theme.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:69:\"sites/all/modules/views_slideshow/contrib/views_slideshow_singleframe\";s:8:\"function\";s:45:\"theme_views_slideshow_singleframe_image_count\";s:11:\"theme paths\";a:1:{i:0;s:69:\"sites/all/modules/views_slideshow/contrib/views_slideshow_singleframe\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:46:\"views_slideshow_singleframe_no_display_section\";a:7:{s:9:\"arguments\";a:5:{s:4:\"view\";N;s:4:\"rows\";N;s:2:\"id\";N;s:4:\"mode\";N;s:6:\"teaser\";b:1;}s:4:\"file\";s:107:\"sites/all/modules/views_slideshow/contrib/views_slideshow_singleframe/views_slideshow_singleframe.theme.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:69:\"sites/all/modules/views_slideshow/contrib/views_slideshow_singleframe\";s:8:\"function\";s:52:\"theme_views_slideshow_singleframe_no_display_section\";s:11:\"theme paths\";a:1:{i:0;s:69:\"sites/all/modules/views_slideshow/contrib/views_slideshow_singleframe\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:45:\"views_slideshow_singleframe_no_display_teaser\";a:7:{s:9:\"arguments\";a:3:{s:4:\"item\";N;s:2:\"id\";N;s:5:\"count\";N;}s:4:\"file\";s:107:\"sites/all/modules/views_slideshow/contrib/views_slideshow_singleframe/views_slideshow_singleframe.theme.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:69:\"sites/all/modules/views_slideshow/contrib/views_slideshow_singleframe\";s:8:\"function\";s:51:\"theme_views_slideshow_singleframe_no_display_teaser\";s:11:\"theme paths\";a:1:{i:0;s:69:\"sites/all/modules/views_slideshow/contrib/views_slideshow_singleframe\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:30:\"views_slideshow_thumbnailhover\";a:7:{s:9:\"arguments\";a:4:{s:4:\"view\";N;s:7:\"options\";a:0:{}s:4:\"rows\";a:0:{}s:5:\"title\";s:0:\"\";}s:8:\"template\";s:103:\"sites/all/modules/views_slideshow/contrib/views_slideshow_thumbnailhover/views-slideshow-thumbnailhover\";s:4:\"file\";s:113:\"sites/all/modules/views_slideshow/contrib/views_slideshow_thumbnailhover/views_slideshow_thumbnailhover.theme.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:72:\"sites/all/modules/views_slideshow/contrib/views_slideshow_thumbnailhover\";s:11:\"theme paths\";a:1:{i:0;s:72:\"sites/all/modules/views_slideshow/contrib/views_slideshow_thumbnailhover\";}s:20:\"preprocess functions\";a:2:{i:0;s:19:\"template_preprocess\";i:1;s:50:\"template_preprocess_views_slideshow_thumbnailhover\";}}s:39:\"views_slideshow_thumbnailhover_controls\";a:7:{s:9:\"arguments\";a:3:{s:2:\"id\";s:0:\"\";s:4:\"view\";N;s:7:\"options\";a:0:{}}s:4:\"file\";s:113:\"sites/all/modules/views_slideshow/contrib/views_slideshow_thumbnailhover/views_slideshow_thumbnailhover.theme.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:72:\"sites/all/modules/views_slideshow/contrib/views_slideshow_thumbnailhover\";s:8:\"function\";s:45:\"theme_views_slideshow_thumbnailhover_controls\";s:11:\"theme paths\";a:1:{i:0;s:72:\"sites/all/modules/views_slideshow/contrib/views_slideshow_thumbnailhover\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:47:\"views_slideshow_thumbnailhover_control_previous\";a:7:{s:9:\"arguments\";a:3:{s:2:\"id\";s:0:\"\";s:4:\"view\";N;s:7:\"options\";a:0:{}}s:4:\"file\";s:113:\"sites/all/modules/views_slideshow/contrib/views_slideshow_thumbnailhover/views_slideshow_thumbnailhover.theme.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:72:\"sites/all/modules/views_slideshow/contrib/views_slideshow_thumbnailhover\";s:8:\"function\";s:53:\"theme_views_slideshow_thumbnailhover_control_previous\";s:11:\"theme paths\";a:1:{i:0;s:72:\"sites/all/modules/views_slideshow/contrib/views_slideshow_thumbnailhover\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:44:\"views_slideshow_thumbnailhover_control_pause\";a:7:{s:9:\"arguments\";a:3:{s:2:\"id\";s:0:\"\";s:4:\"view\";N;s:7:\"options\";a:0:{}}s:4:\"file\";s:113:\"sites/all/modules/views_slideshow/contrib/views_slideshow_thumbnailhover/views_slideshow_thumbnailhover.theme.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:72:\"sites/all/modules/views_slideshow/contrib/views_slideshow_thumbnailhover\";s:8:\"function\";s:50:\"theme_views_slideshow_thumbnailhover_control_pause\";s:11:\"theme paths\";a:1:{i:0;s:72:\"sites/all/modules/views_slideshow/contrib/views_slideshow_thumbnailhover\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:43:\"views_slideshow_thumbnailhover_control_next\";a:7:{s:9:\"arguments\";a:3:{s:2:\"id\";s:0:\"\";s:4:\"view\";N;s:7:\"options\";a:0:{}}s:4:\"file\";s:113:\"sites/all/modules/views_slideshow/contrib/views_slideshow_thumbnailhover/views_slideshow_thumbnailhover.theme.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:72:\"sites/all/modules/views_slideshow/contrib/views_slideshow_thumbnailhover\";s:8:\"function\";s:49:\"theme_views_slideshow_thumbnailhover_control_next\";s:11:\"theme paths\";a:1:{i:0;s:72:\"sites/all/modules/views_slideshow/contrib/views_slideshow_thumbnailhover\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:42:\"views_slideshow_thumbnailhover_image_count\";a:7:{s:9:\"arguments\";a:3:{s:2:\"id\";s:0:\"\";s:4:\"view\";N;s:7:\"options\";a:0:{}}s:4:\"file\";s:113:\"sites/all/modules/views_slideshow/contrib/views_slideshow_thumbnailhover/views_slideshow_thumbnailhover.theme.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:72:\"sites/all/modules/views_slideshow/contrib/views_slideshow_thumbnailhover\";s:8:\"function\";s:48:\"theme_views_slideshow_thumbnailhover_image_count\";s:11:\"theme paths\";a:1:{i:0;s:72:\"sites/all/modules/views_slideshow/contrib/views_slideshow_thumbnailhover\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:46:\"views_slideshow_thumbnailhover_breakout_teaser\";a:7:{s:9:\"arguments\";a:3:{s:4:\"item\";N;s:2:\"id\";N;s:5:\"count\";N;}s:4:\"file\";s:113:\"sites/all/modules/views_slideshow/contrib/views_slideshow_thumbnailhover/views_slideshow_thumbnailhover.theme.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:72:\"sites/all/modules/views_slideshow/contrib/views_slideshow_thumbnailhover\";s:8:\"function\";s:52:\"theme_views_slideshow_thumbnailhover_breakout_teaser\";s:11:\"theme paths\";a:1:{i:0;s:72:\"sites/all/modules/views_slideshow/contrib/views_slideshow_thumbnailhover\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:49:\"views_slideshow_thumbnailhover_no_display_section\";a:7:{s:9:\"arguments\";a:5:{s:4:\"view\";N;s:4:\"rows\";N;s:2:\"id\";N;s:4:\"mode\";N;s:6:\"teaser\";b:1;}s:4:\"file\";s:113:\"sites/all/modules/views_slideshow/contrib/views_slideshow_thumbnailhover/views_slideshow_thumbnailhover.theme.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:72:\"sites/all/modules/views_slideshow/contrib/views_slideshow_thumbnailhover\";s:8:\"function\";s:55:\"theme_views_slideshow_thumbnailhover_no_display_section\";s:11:\"theme paths\";a:1:{i:0;s:72:\"sites/all/modules/views_slideshow/contrib/views_slideshow_thumbnailhover\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:48:\"views_slideshow_thumbnailhover_no_display_teaser\";a:7:{s:9:\"arguments\";a:3:{s:4:\"item\";N;s:2:\"id\";N;s:5:\"count\";N;}s:4:\"file\";s:113:\"sites/all/modules/views_slideshow/contrib/views_slideshow_thumbnailhover/views_slideshow_thumbnailhover.theme.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:72:\"sites/all/modules/views_slideshow/contrib/views_slideshow_thumbnailhover\";s:8:\"function\";s:54:\"theme_views_slideshow_thumbnailhover_no_display_teaser\";s:11:\"theme paths\";a:1:{i:0;s:72:\"sites/all/modules/views_slideshow/contrib/views_slideshow_thumbnailhover\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:47:\"views_slideshow_thumbnailhover_breakout_teasers\";a:7:{s:9:\"arguments\";a:2:{s:5:\"items\";N;s:2:\"id\";N;}s:4:\"file\";s:113:\"sites/all/modules/views_slideshow/contrib/views_slideshow_thumbnailhover/views_slideshow_thumbnailhover.theme.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:72:\"sites/all/modules/views_slideshow/contrib/views_slideshow_thumbnailhover\";s:8:\"function\";s:53:\"theme_views_slideshow_thumbnailhover_breakout_teasers\";s:11:\"theme paths\";a:1:{i:0;s:72:\"sites/all/modules/views_slideshow/contrib/views_slideshow_thumbnailhover\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:28:\"views_slideshow_main_section\";a:7:{s:9:\"arguments\";a:3:{s:2:\"id\";N;s:15:\"hidden_elements\";N;s:6:\"plugin\";N;}s:4:\"file\";s:59:\"sites/all/modules/views_slideshow/views_slideshow.theme.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:33:\"sites/all/modules/views_slideshow\";s:8:\"function\";s:34:\"theme_views_slideshow_main_section\";s:11:\"theme paths\";a:1:{i:0;s:33:\"sites/all/modules/views_slideshow\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:17:\"fieldgroup_simple\";a:6:{s:8:\"template\";s:58:\"sites/all/modules/cck/modules/fieldgroup/fieldgroup-simple\";s:9:\"arguments\";a:1:{s:7:\"element\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:40:\"sites/all/modules/cck/modules/fieldgroup\";s:11:\"theme paths\";a:1:{i:0;s:40:\"sites/all/modules/cck/modules/fieldgroup\";}s:20:\"preprocess functions\";a:2:{i:0;s:19:\"template_preprocess\";i:1;s:39:\"fieldgroup_preprocess_fieldgroup_simple\";}}s:19:\"fieldgroup_fieldset\";a:6:{s:9:\"arguments\";a:1:{s:7:\"element\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:40:\"sites/all/modules/cck/modules/fieldgroup\";s:8:\"function\";s:25:\"theme_fieldgroup_fieldset\";s:11:\"theme paths\";a:1:{i:0;s:40:\"sites/all/modules/cck/modules/fieldgroup\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:32:\"fieldgroup_display_overview_form\";a:6:{s:9:\"arguments\";a:1:{s:4:\"form\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:40:\"sites/all/modules/cck/modules/fieldgroup\";s:8:\"function\";s:38:\"theme_fieldgroup_display_overview_form\";s:11:\"theme paths\";a:1:{i:0;s:40:\"sites/all/modules/cck/modules/fieldgroup\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:10:\"token_help\";a:6:{s:9:\"arguments\";a:3:{s:4:\"type\";s:3:\"all\";s:6:\"prefix\";s:1:\"[\";s:6:\"suffix\";s:1:\"]\";}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:23:\"sites/all/modules/token\";s:8:\"function\";s:16:\"theme_token_help\";s:11:\"theme paths\";a:1:{i:0;s:23:\"sites/all/modules/token\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:16:\"views_mini_pager\";a:9:{s:4:\"file\";s:9:\"theme.inc\";s:4:\"path\";s:29:\"sites/all/modules/views/theme\";s:9:\"arguments\";a:4:{s:4:\"tags\";a:0:{}s:5:\"limit\";i:10;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:11:\"theme paths\";a:1:{i:0;s:29:\"sites/all/modules/views/theme\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}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:\"arguments\";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:11:\"theme paths\";a:1:{i:0;s:29:\"sites/all/modules/views/theme\";}s:20:\"preprocess functions\";a:2:{i:0;s:19:\"template_preprocess\";i:1;s:36:\"template_preprocess_views_view_field\";}}s:10:\"views_view\";a:9:{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:\"arguments\";a:1:{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:11:\"theme paths\";a:1:{i:0;s:29:\"sites/all/modules/views/theme\";}s:20:\"preprocess functions\";a:2:{i:0;s:19:\"template_preprocess\";i:1;s:30:\"template_preprocess_views_view\";}}s:38:\"image_gallery_view_image_gallery_terms\";a:9:{s:7:\"pattern\";s:40:\"image_gallery_view_image_gallery_terms__\";s:4:\"file\";s:9:\"theme.inc\";s:4:\"path\";s:57:\"sites/all/modules/image/contrib/image_gallery/views/theme\";s:9:\"arguments\";a:4:{s:4:\"view\";N;s:7:\"options\";N;s:4:\"rows\";N;s:5:\"title\";N;}s:8:\"template\";s:38:\"image-gallery-view-image-gallery-terms\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:23:\"sites/all/modules/views\";s:11:\"theme paths\";a:1:{i:0;s:57:\"sites/all/modules/image/contrib/image_gallery/views/theme\";}s:20:\"preprocess functions\";a:2:{i:0;s:19:\"template_preprocess\";i:1;s:58:\"template_preprocess_image_gallery_view_image_gallery_terms\";}}s:24:\"image_view_image_gallery\";a:9:{s:7:\"pattern\";s:26:\"image_view_image_gallery__\";s:4:\"file\";s:9:\"theme.inc\";s:4:\"path\";s:35:\"sites/all/modules/image/views/theme\";s:9:\"arguments\";a:4:{s:4:\"view\";N;s:7:\"options\";N;s:4:\"rows\";N;s:5:\"title\";N;}s:8:\"template\";s:24:\"image-view-image-gallery\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:23:\"sites/all/modules/views\";s:11:\"theme paths\";a:1:{i:0;s:35:\"sites/all/modules/image/views/theme\";}s:20:\"preprocess functions\";a:2:{i:0;s:19:\"template_preprocess\";i:1;s:44:\"template_preprocess_image_view_image_gallery\";}}s:15:\"views_slideshow\";a:9:{s:7:\"pattern\";s:17:\"views_slideshow__\";s:4:\"file\";s:25:\"views_slideshow.views.inc\";s:4:\"path\";s:33:\"sites/all/modules/views_slideshow\";s:9:\"arguments\";a:4:{s:4:\"view\";N;s:7:\"options\";N;s:4:\"rows\";N;s:5:\"title\";N;}s:8:\"template\";s:15:\"views-slideshow\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:23:\"sites/all/modules/views\";s:11:\"theme paths\";a:1:{i:0;s:33:\"sites/all/modules/views_slideshow\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:22:\"views_view_unformatted\";a:9:{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:\"arguments\";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:11:\"theme paths\";a:1:{i:0;s:29:\"sites/all/modules/views/theme\";}s:20:\"preprocess functions\";a:2:{i:0;s:19:\"template_preprocess\";i:1;s:42:\"template_preprocess_views_view_unformatted\";}}s:15:\"views_view_list\";a:9:{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:\"arguments\";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:11:\"theme paths\";a:1:{i:0;s:29:\"sites/all/modules/views/theme\";}s:20:\"preprocess functions\";a:2:{i:0;s:19:\"template_preprocess\";i:1;s:35:\"template_preprocess_views_view_list\";}}s:15:\"views_view_grid\";a:9:{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:\"arguments\";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:11:\"theme paths\";a:1:{i:0;s:29:\"sites/all/modules/views/theme\";}s:20:\"preprocess functions\";a:2:{i:0;s:19:\"template_preprocess\";i:1;s:35:\"template_preprocess_views_view_grid\";}}s:16:\"views_view_table\";a:9:{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:\"arguments\";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:11:\"theme paths\";a:1:{i:0;s:29:\"sites/all/modules/views/theme\";}s:20:\"preprocess functions\";a:2:{i:0;s:19:\"template_preprocess\";i:1;s:36:\"template_preprocess_views_view_table\";}}s:18:\"views_view_summary\";a:9:{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:\"arguments\";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:11:\"theme paths\";a:1:{i:0;s:29:\"sites/all/modules/views/theme\";}s:20:\"preprocess functions\";a:2:{i:0;s:19:\"template_preprocess\";i:1;s:38:\"template_preprocess_views_view_summary\";}}s:30:\"views_view_summary_unformatted\";a:9:{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:\"arguments\";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:11:\"theme paths\";a:1:{i:0;s:29:\"sites/all/modules/views/theme\";}s:20:\"preprocess functions\";a:2:{i:0;s:19:\"template_preprocess\";i:1;s:50:\"template_preprocess_views_view_summary_unformatted\";}}s:14:\"views_view_rss\";a:9:{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:\"arguments\";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:11:\"theme paths\";a:1:{i:0;s:29:\"sites/all/modules/views/theme\";}s:20:\"preprocess functions\";a:2:{i:0;s:19:\"template_preprocess\";i:1;s:34:\"template_preprocess_views_view_rss\";}}s:22:\"views_view_row_comment\";a:9:{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:\"arguments\";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:11:\"theme paths\";a:1:{i:0;s:29:\"sites/all/modules/views/theme\";}s:20:\"preprocess functions\";a:2:{i:0;s:19:\"template_preprocess\";i:1;s:42:\"template_preprocess_views_view_row_comment\";}}s:18:\"views_view_row_rss\";a:9:{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:\"arguments\";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:11:\"theme paths\";a:1:{i:0;s:29:\"sites/all/modules/views/theme\";}s:20:\"preprocess functions\";a:2:{i:0;s:19:\"template_preprocess\";i:1;s:38:\"template_preprocess_views_view_row_rss\";}}s:19:\"views_view_row_node\";a:9:{s:7:\"pattern\";s:21:\"views_view_row_node__\";s:4:\"file\";s:9:\"theme.inc\";s:4:\"path\";s:29:\"sites/all/modules/views/theme\";s:9:\"arguments\";a:4:{s:4:\"view\";N;s:7:\"options\";N;s:3:\"row\";N;s:11:\"field_alias\";N;}s:8:\"template\";s:19:\"views-view-row-node\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:23:\"sites/all/modules/views\";s:11:\"theme paths\";a:1:{i:0;s:29:\"sites/all/modules/views/theme\";}s:20:\"preprocess functions\";a:2:{i:0;s:19:\"template_preprocess\";i:1;s:39:\"template_preprocess_views_view_row_node\";}}s:17:\"views_view_fields\";a:9:{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:\"arguments\";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:11:\"theme paths\";a:1:{i:0;s:29:\"sites/all/modules/views/theme\";}s:20:\"preprocess functions\";a:2:{i:0;s:19:\"template_preprocess\";i:1;s:37:\"template_preprocess_views_view_fields\";}}s:18:\"views_exposed_form\";a:9:{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:9:\"arguments\";a:1:{s:4:\"form\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:23:\"sites/all/modules/views\";s:11:\"theme paths\";a:1:{i:0;s:29:\"sites/all/modules/views/theme\";}s:20:\"preprocess functions\";a:2:{i:0;s:19:\"template_preprocess\";i:1;s:38:\"template_preprocess_views_exposed_form\";}}s:10:\"views_more\";a:9:{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:\"arguments\";a:2:{s:8:\"more_url\";N;s:9:\"link_text\";s:4:\"more\";}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:23:\"sites/all/modules/views\";s:11:\"theme paths\";a:1:{i:0;s:29:\"sites/all/modules/views/theme\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:28:\"page_manager_list_pages_form\";a:8:{s:9:\"arguments\";a:1:{s:4:\"form\";N;}s:4:\"path\";s:43:\"sites/all/modules/ctools/page_manager/theme\";s:4:\"file\";s:22:\"page_manager.theme.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:37:\"sites/all/modules/ctools/page_manager\";s:8:\"function\";s:34:\"theme_page_manager_list_pages_form\";s:11:\"theme paths\";a:1:{i:0;s:43:\"sites/all/modules/ctools/page_manager/theme\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:30:\"page_manager_handler_rearrange\";a:8:{s:9:\"arguments\";a:1:{s:4:\"form\";N;}s:4:\"path\";s:43:\"sites/all/modules/ctools/page_manager/theme\";s:4:\"file\";s:22:\"page_manager.theme.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:37:\"sites/all/modules/ctools/page_manager\";s:8:\"function\";s:36:\"theme_page_manager_handler_rearrange\";s:11:\"theme paths\";a:1:{i:0;s:43:\"sites/all/modules/ctools/page_manager/theme\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:22:\"page_manager_edit_page\";a:8:{s:8:\"template\";s:22:\"page-manager-edit-page\";s:9:\"arguments\";a:4:{s:4:\"page\";N;s:4:\"save\";N;s:10:\"operations\";a:0:{}s:7:\"content\";a:0:{}}s:4:\"path\";s:43:\"sites/all/modules/ctools/page_manager/theme\";s:4:\"file\";s:22:\"page_manager.theme.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:37:\"sites/all/modules/ctools/page_manager\";s:11:\"theme paths\";a:1:{i:0;s:43:\"sites/all/modules/ctools/page_manager/theme\";}s:20:\"preprocess functions\";a:2:{i:0;s:19:\"template_preprocess\";i:1;s:42:\"template_preprocess_page_manager_edit_page\";}}s:17:\"page_manager_lock\";a:8:{s:9:\"arguments\";a:1:{s:4:\"page\";a:0:{}}s:4:\"path\";s:43:\"sites/all/modules/ctools/page_manager/theme\";s:4:\"file\";s:22:\"page_manager.theme.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:37:\"sites/all/modules/ctools/page_manager\";s:8:\"function\";s:23:\"theme_page_manager_lock\";s:11:\"theme paths\";a:1:{i:0;s:43:\"sites/all/modules/ctools/page_manager/theme\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:20:\"page_manager_changed\";a:8:{s:9:\"arguments\";a:2:{s:4:\"text\";N;s:11:\"description\";N;}s:4:\"path\";s:43:\"sites/all/modules/ctools/page_manager/theme\";s:4:\"file\";s:22:\"page_manager.theme.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:37:\"sites/all/modules/ctools/page_manager\";s:8:\"function\";s:26:\"theme_page_manager_changed\";s:11:\"theme paths\";a:1:{i:0;s:43:\"sites/all/modules/ctools/page_manager/theme\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:37:\"page_manager_page_form_argument_table\";a:8:{s:4:\"file\";s:14:\"page.admin.inc\";s:4:\"path\";s:51:\"sites/all/modules/ctools/page_manager/plugins/tasks\";s:9:\"arguments\";a:1:{s:4:\"form\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:37:\"sites/all/modules/ctools/page_manager\";s:8:\"function\";s:43:\"theme_page_manager_page_form_argument_table\";s:11:\"theme paths\";a:1:{i:0;s:51:\"sites/all/modules/ctools/page_manager/plugins/tasks\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:22:\"page_manager_page_lock\";a:8:{s:4:\"file\";s:14:\"page.admin.inc\";s:4:\"path\";s:51:\"sites/all/modules/ctools/page_manager/plugins/tasks\";s:9:\"arguments\";a:2:{s:4:\"lock\";a:0:{}s:9:\"task_name\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:37:\"sites/all/modules/ctools/page_manager\";s:8:\"function\";s:28:\"theme_page_manager_page_lock\";s:11:\"theme paths\";a:1:{i:0;s:51:\"sites/all/modules/ctools/page_manager/plugins/tasks\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}s:25:\"page_manager_page_changed\";a:8:{s:4:\"file\";s:14:\"page.admin.inc\";s:4:\"path\";s:51:\"sites/all/modules/ctools/page_manager/plugins/tasks\";s:9:\"arguments\";a:0:{}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:37:\"sites/all/modules/ctools/page_manager\";s:8:\"function\";s:31:\"theme_page_manager_page_changed\";s:11:\"theme paths\";a:1:{i:0;s:51:\"sites/all/modules/ctools/page_manager/plugins/tasks\";}s:20:\"preprocess functions\";a:1:{i:0;s:19:\"template_preprocess\";}}}',0,1286319193,'',1),('schema','a:82:{s:7:\"webform\";a:5:{s:11:\"description\";s:58:\"Table for storing additional properties for webform nodes.\";s:6:\"fields\";a:10:{s:3:\"nid\";a:4:{s:11:\"description\";s:33:\"The node identifier of a webform.\";s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:12:\"confirmation\";a:3:{s:11:\"description\";s:78:\"The confirmation message or URL displayed to the user after submitting a form.\";s:4:\"type\";s:4:\"text\";s:8:\"not null\";b:1;}s:19:\"confirmation_format\";a:5:{s:11:\"description\";s:50:\"The input format used by the confirmation message.\";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:\"redirect_url\";a:3:{s:11:\"description\";s:56:\"The URL a user is redirected to after submitting a form.\";s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;}s:6:\"teaser\";a:5:{s:11:\"description\";s:76:\"Boolean value for whether the entire form should be displayed on the teaser.\";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:\"allow_draft\";a:5:{s:11:\"description\";s:71:\"Boolean value for whether submissions to this form be saved as a draft.\";s:4:\"type\";s:3:\"int\";s:4:\"size\";s:4:\"tiny\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:13:\"submit_notice\";a:5:{s:11:\"description\";s:80:\"Boolean value for whether to show or hide the previous submissions notification.\";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:\"submit_text\";a:3:{s:11:\"description\";s:43:\"The title of the submit button on the form.\";s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;}s:12:\"submit_limit\";a:5:{s:11:\"description\";s:97:\"The number of submissions a single user is allowed to submit within an interval. -1 is unlimited.\";s:4:\"type\";s:3:\"int\";s:4:\"size\";s:4:\"tiny\";s:8:\"not null\";b:1;s:7:\"default\";i:-1;}s:15:\"submit_interval\";a:4:{s:11:\"description\";s:110:\"The amount of time in seconds that must pass before a user can submit another submission within the set limit.\";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:3:\"nid\";}s:6:\"module\";s:7:\"webform\";s:4:\"name\";s:7:\"webform\";}s:17:\"webform_component\";a:5:{s:11:\"description\";s:54:\"Stores information about components for webform nodes.\";s:6:\"fields\";a:10:{s:3:\"nid\";a:5:{s:11:\"description\";s:33:\"The node identifier of a webform.\";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:6:{s:11:\"description\";s:78:\"The identifier for this component within this node, starts at 0 for each node.\";s:4:\"type\";s:3:\"int\";s:4:\"size\";s:5:\"small\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:3:\"pid\";a:6:{s:11:\"description\";s:67:\"If this component has a parent fieldset, the cid of that component.\";s:4:\"type\";s:3:\"int\";s:4:\"size\";s:5:\"small\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:8:\"form_key\";a:3:{s:11:\"description\";s:88:\"When the form is displayed and processed, this key can be used to reference the results.\";s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;}s:4:\"name\";a:3:{s:11:\"description\";s:29:\"The label for this component.\";s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;}s:4:\"type\";a:3:{s:11:\"description\";s:67:\"The field type of this component (textfield, select, hidden, etc.).\";s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:16;}s:5:\"value\";a:3:{s:11:\"description\";s:66:\"The default value of the component when displayed to the end-user.\";s:4:\"type\";s:4:\"text\";s:8:\"not null\";b:1;}s:5:\"extra\";a:3:{s:11:\"description\";s:77:\"Additional information unique to the display or processing of this component.\";s:4:\"type\";s:4:\"text\";s:8:\"not null\";b:1;}s:9:\"mandatory\";a:5:{s:11:\"description\";s:47:\"Boolean flag for if this component is required.\";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:\"weight\";a:5:{s:11:\"description\";s:54:\"Determines the position of this component in the form.\";s:4:\"type\";s:3:\"int\";s:4:\"size\";s:5:\"small\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}}s:11:\"primary key\";a:2:{i:0;s:3:\"nid\";i:1;s:3:\"cid\";}s:6:\"module\";s:7:\"webform\";s:4:\"name\";s:17:\"webform_component\";}s:14:\"webform_emails\";a:5:{s:11:\"description\";s:81:\"Holds information regarding e-mails that should be sent upon submitting a webform\";s:6:\"fields\";a:8:{s:3:\"nid\";a:5:{s:11:\"description\";s:33:\"The node identifier of a webform.\";s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:3:\"eid\";a:6:{s:11:\"description\";s:46:\"The e-mail identifier for this row\'s settings.\";s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:4:\"size\";s:5:\"small\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:5:\"email\";a:3:{s:11:\"description\";s:221:\"The e-mail address that will be sent to upon submission. This may be an e-mail address, the special key \"default\" or a numeric value. If a numeric value is used, the value of a component will be substituted on submission.\";s:4:\"type\";s:4:\"text\";s:8:\"not null\";b:0;}s:7:\"subject\";a:4:{s:11:\"description\";s:193:\"The e-mail subject that will be used. This may be a string, the special key \"default\" or a numeric value. If a numeric value is used, the value of a component will be substituted on submission.\";s:4:\"type\";s:7:\"varchar\";s:6:\"length\";s:3:\"255\";s:8:\"not null\";b:0;}s:9:\"from_name\";a:4:{s:11:\"description\";s:197:\"The e-mail \"from\" name that will be used. This may be a string, the special key \"default\" or a numeric value. If a numeric value is used, the value of a component will be substituted on submission.\";s:4:\"type\";s:7:\"varchar\";s:6:\"length\";s:3:\"255\";s:8:\"not null\";b:0;}s:12:\"from_address\";a:4:{s:11:\"description\";s:207:\"The e-mail \"from\" e-mail address that will be used. This may be a string, the special key \"default\" or a numeric value. If a numeric value is used, the value of a component will be substituted on submission.\";s:4:\"type\";s:7:\"varchar\";s:6:\"length\";s:3:\"255\";s:8:\"not null\";b:0;}s:8:\"template\";a:3:{s:11:\"description\";s:159:\"A template that will be used for the sent e-mail. This may be a string or the special key \"default\", which will use the template provided by the theming layer.\";s:4:\"type\";s:4:\"text\";s:8:\"not null\";b:0;}s:19:\"excluded_components\";a:4:{s:11:\"description\";s:110:\"A list of components that will not be included in the %email_values token. A list of CIDs separated by commas.\";s:4:\"type\";s:4:\"text\";s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}}s:11:\"primary key\";a:2:{i:0;s:3:\"nid\";i:1;s:3:\"eid\";}s:6:\"module\";s:7:\"webform\";s:4:\"name\";s:14:\"webform_emails\";}s:13:\"webform_roles\";a:5:{s:11:\"description\";s:189:\"Holds access information regarding which roles are allowed to submit which webform nodes. Does not prevent access to the webform node entirely, use the {node_access} table for that purpose.\";s:6:\"fields\";a:2:{s:3:\"nid\";a:5:{s:11:\"description\";s:33:\"The node identifier of a webform.\";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:5:{s:11:\"description\";s:20:\"The role identifier.\";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:\"nid\";i:1;s:3:\"rid\";}s:6:\"module\";s:7:\"webform\";s:4:\"name\";s:13:\"webform_roles\";}s:19:\"webform_submissions\";a:6:{s:11:\"description\";s:68:\"Holds general information about submissions outside of field values.\";s:6:\"fields\";a:6:{s:3:\"sid\";a:4:{s:11:\"description\";s:42:\"The unique identifier for this submission.\";s:4:\"type\";s:6:\"serial\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:3:\"nid\";a:5:{s:11:\"description\";s:33:\"The node identifier of a webform.\";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:5:{s:11:\"description\";s:50:\"The id of the user that completed this submission.\";s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:8:\"is_draft\";a:5:{s:11:\"description\";s:34:\"Is this a draft of the submission?\";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:\"submitted\";a:4:{s:11:\"description\";s:41:\"Timestamp of when the form was submitted.\";s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:11:\"remote_addr\";a:3:{s:11:\"description\";s:51:\"The IP address of the user that submitted the form.\";s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;}}s:11:\"unique keys\";a:1:{s:7:\"sid_nid\";a:2:{i:0;s:3:\"sid\";i:1;s:3:\"nid\";}}s:11:\"primary key\";a:1:{i:0;s:3:\"sid\";}s:6:\"module\";s:7:\"webform\";s:4:\"name\";s:19:\"webform_submissions\";}s:22:\"webform_submitted_data\";a:6:{s:11:\"description\";s:56:\"Stores all submitted field data for webform submissions.\";s:6:\"fields\";a:5:{s:3:\"nid\";a:5:{s:11:\"description\";s:33:\"The node identifier of a webform.\";s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:3:\"sid\";a:5:{s:11:\"description\";s:42:\"The unique identifier for this submission.\";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:6:{s:11:\"description\";s:78:\"The identifier for this component within this node, starts at 0 for each node.\";s:4:\"type\";s:3:\"int\";s:4:\"size\";s:5:\"small\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:2:\"no\";a:5:{s:11:\"description\";s:131:\"Usually this value is 0, but if a field has multiple values (such as a time or date), it may require multiple rows in the database.\";s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;s:7:\"default\";s:1:\"0\";}s:4:\"data\";a:4:{s:11:\"description\";s:73:\"The submitted value of this field, may be serialized for some components.\";s:4:\"type\";s:4:\"text\";s:4:\"size\";s:6:\"medium\";s:8:\"not null\";b:1;}}s:7:\"indexes\";a:2:{s:3:\"nid\";a:1:{i:0;s:3:\"nid\";}s:7:\"sid_nid\";a:2:{i:0;s:3:\"sid\";i:1;s:3:\"nid\";}}s:11:\"primary key\";a:4:{i:0;s:3:\"nid\";i:1;s:3:\"sid\";i:2;s:3:\"cid\";i:3;s:2:\"no\";}s:6:\"module\";s:7:\"webform\";s:4:\"name\";s:22:\"webform_submitted_data\";}s:6:\"blocks\";a:7:{s:11:\"description\";s:62:\"Stores block settings, such as region and visibility settings.\";s:6:\"fields\";a:13:{s:3:\"bid\";a:3:{s:4:\"type\";s:6:\"serial\";s:8:\"not null\";b:1;s:11:\"description\";s:29:\"Primary Key: Unique block ID.\";}s:6:\"module\";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:11:\"description\";s:126:\"The module from which the block originates; for example, \'user\' for the Who\'s Online block, and \'block\' for any custom blocks.\";}s:5:\"delta\";a:5:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:32;s:8:\"not null\";b:1;s:7:\"default\";s:1:\"0\";s:11:\"description\";s:36:\"Unique ID for block within a module.\";}s:5:\"theme\";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:11:\"description\";s:47:\"The theme under which the block settings apply.\";}s:6:\"status\";a:5:{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:\"description\";s:49:\"Block enabled status. (1 = enabled, 0 = disabled)\";}s:6:\"weight\";a:5:{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:\"description\";s:27:\"Block weight within region.\";}s:6:\"region\";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:11:\"description\";s:43:\"Theme region within which the block is set.\";}s:6:\"custom\";a:5:{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:\"description\";s:169:\"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)\";}s:8:\"throttle\";a:5:{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:\"description\";s:113:\"Flag to indicate whether or not to remove block when website traffic is high. (1 = throttle, 0 = do not throttle)\";}s:10:\"visibility\";a:5:{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:\"description\";s:169:\"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)\";}s:5:\"pages\";a:3:{s:4:\"type\";s:4:\"text\";s:8:\"not null\";b:1;s:11:\"description\";s:148:\"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.\";}s:5:\"title\";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:11:\"description\";s:154:\"Custom title for the block. (Empty string will use block default title, &lt;none&gt; will remove the title, text will cause block to use specified title.)\";}s:5:\"cache\";a:5:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:1;s:4:\"size\";s:4:\"tiny\";s:11:\"description\";s:215:\"Binary flag to indicate block cache mode. (-1: Do not cache, 1: Cache per role, 2: Cache per user, 4: Cache per page, 8: Block cache global) See BLOCK_CACHE_* constants in block.module for more detailed information.\";}}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:6:\"blocks\";}s:12:\"blocks_roles\";a:6:{s:11:\"description\";s:57:\"Sets up access permissions for blocks based on user roles\";s:6:\"fields\";a:3:{s:6:\"module\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:64;s:8:\"not null\";b:1;s:11:\"description\";s:48:\"The block\'s origin module, from {blocks}.module.\";}s:5:\"delta\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:32;s:8:\"not null\";b:1;s:11:\"description\";s:60:\"The block\'s unique delta within module, from {blocks}.delta.\";}s:3:\"rid\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:11:\"description\";s:42:\"The user\'s role ID from {users_roles}.rid.\";}}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:12:\"blocks_roles\";}s:5:\"boxes\";a:6:{s:11:\"description\";s:38:\"Stores contents of custom-made blocks.\";s:6:\"fields\";a:4:{s:3:\"bid\";a:4:{s:4:\"type\";s:6:\"serial\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:11:\"description\";s:25:\"The block\'s {blocks}.bid.\";}s:4:\"body\";a:4:{s:4:\"type\";s:4:\"text\";s:8:\"not null\";b:0;s:4:\"size\";s:3:\"big\";s:11:\"description\";s:15:\"Block contents.\";}s:4:\"info\";a:5:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";s:11:\"description\";s:18:\"Block description.\";}s:6:\"format\";a:5:{s:4:\"type\";s:3:\"int\";s:4:\"size\";s:5:\"small\";s:8:\"not null\";b:1;s:7:\"default\";i:0;s:11:\"description\";s:69:\"Block body\'s {filter_formats}.format; for example, 1 = Filtered HTML.\";}}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:5:\"boxes\";}s:11:\"cache_block\";a:6:{s:11:\"description\";s:204:\"Cache table for the Block module to store already built blocks, identified by module, delta, and various contexts which may change the block, such as theme, locale, and caching mode defined for the block.\";s:6:\"fields\";a:6:{s:3:\"cid\";a:5:{s:11:\"description\";s:29:\"Primary Key: Unique cache ID.\";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:11:\"description\";s:30:\"A collection of data to cache.\";s:4:\"type\";s:4:\"blob\";s:8:\"not null\";b:0;s:4:\"size\";s:3:\"big\";}s:6:\"expire\";a:4:{s:11:\"description\";s:79:\"A Unix timestamp indicating when the cache entry should expire, or 0 for never.\";s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:7:\"created\";a:4:{s:11:\"description\";s:61:\"A Unix timestamp indicating when the cache entry was created.\";s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:7:\"headers\";a:3:{s:11:\"description\";s:51:\"Any custom HTTP headers to be added to cached data.\";s:4:\"type\";s:4:\"text\";s:8:\"not null\";b:0;}s:10:\"serialized\";a:5:{s:11:\"description\";s:64:\"A flag to indicate whether content is serialized (1) or not (0).\";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:8:\"comments\";a:6:{s:11:\"description\";s:36:\"Stores comments and associated data.\";s:6:\"fields\";a:14:{s:3:\"cid\";a:3:{s:4:\"type\";s:6:\"serial\";s:8:\"not null\";b:1;s:11:\"description\";s:31:\"Primary Key: Unique comment ID.\";}s:3:\"pid\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;s:11:\"description\";s:117:\"The {comments}.cid to which this comment is a reply. If set to 0, this comment is not a reply to an existing comment.\";}s:3:\"nid\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;s:11:\"description\";s:48:\"The {node}.nid to which this comment is a reply.\";}s:3:\"uid\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;s:11:\"description\";s:101:\"The {users}.uid who authored the comment. If set to 0, this comment was created by an anonymous user.\";}s:7:\"subject\";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:11:\"description\";s:18:\"The comment title.\";}s:7:\"comment\";a:4:{s:4:\"type\";s:4:\"text\";s:8:\"not null\";b:1;s:4:\"size\";s:3:\"big\";s:11:\"description\";s:17:\"The comment body.\";}s:8:\"hostname\";a:5:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";s:11:\"description\";s:23:\"The author\'s host name.\";}s:9:\"timestamp\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;s:11:\"description\";s:89:\"The time that the comment was created, or last edited by its author, as a Unix timestamp.\";}s:6:\"status\";a:6:{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:\"description\";s:69:\"The published status of a comment. (0 = Published, 1 = Not Published)\";}s:6:\"format\";a:5:{s:4:\"type\";s:3:\"int\";s:4:\"size\";s:5:\"small\";s:8:\"not null\";b:1;s:7:\"default\";i:0;s:11:\"description\";s:48:\"The {filter_formats}.format of the comment body.\";}s:6:\"thread\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:11:\"description\";s:62:\"The vancode representation of the comment\'s place in a thread.\";}s:4:\"name\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:60;s:8:\"not null\";b:0;s:11:\"description\";s:124:\"The comment author\'s name. Uses {users}.name if the user is logged in, otherwise uses the value typed into the comment form.\";}s:4:\"mail\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:64;s:8:\"not null\";b:0;s:11:\"description\";s:169:\"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.\";}s:8:\"homepage\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:0;s:11:\"description\";s:172:\"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.\";}}s:7:\"indexes\";a:3:{s:3:\"pid\";a:1:{i:0;s:3:\"pid\";}s:3:\"nid\";a:1:{i:0;s:3:\"nid\";}s:6:\"status\";a:1:{i:0;s:6:\"status\";}}s:11:\"primary key\";a:1:{i:0;s:3:\"cid\";}s:6:\"module\";s:7:\"comment\";s:4:\"name\";s:8:\"comments\";}s:23:\"node_comment_statistics\";a:6:{s:11:\"description\";s:82:\"Maintains statistics of node and comments posts to show \"new\" and \"updated\" flags.\";s:6:\"fields\";a:5:{s:3:\"nid\";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:11:\"description\";s:53:\"The {node}.nid for which the statistics are compiled.\";}s:22:\"last_comment_timestamp\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;s:11:\"description\";s:99:\"The Unix timestamp of the last comment that was posted within this node, from {comments}.timestamp.\";}s:17:\"last_comment_name\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:60;s:8:\"not null\";b:0;s:11:\"description\";s:83:\"The name of the latest author to post a comment on this node, from {comments}.name.\";}s:16:\"last_comment_uid\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;s:11:\"description\";s:85:\"The user ID of the latest author to post a comment on this node, from {comments}.uid.\";}s:13:\"comment_count\";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:11:\"description\";s:42:\"The total number of comments on this node.\";}}s:11:\"primary key\";a:1:{i:0;s:3:\"nid\";}s:7:\"indexes\";a:1:{s:22:\"node_comment_timestamp\";a:1:{i:0;s:22:\"last_comment_timestamp\";}}s:6:\"module\";s:7:\"comment\";s:4:\"name\";s:23:\"node_comment_statistics\";}s:8:\"watchdog\";a:6:{s:11:\"description\";s:46:\"Table that contains logs of all system events.\";s:6:\"fields\";a:11:{s:3:\"wid\";a:3:{s:4:\"type\";s:6:\"serial\";s:8:\"not null\";b:1;s:11:\"description\";s:38:\"Primary Key: Unique watchdog event ID.\";}s:3:\"uid\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;s:11:\"description\";s:52:\"The {users}.uid of the user who triggered the event.\";}s:4:\"type\";a:5:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:16;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";s:11:\"description\";s:60:\"Type of log message, for example \"user\" or \"page not found.\"\";}s:7:\"message\";a:4:{s:4:\"type\";s:4:\"text\";s:8:\"not null\";b:1;s:4:\"size\";s:3:\"big\";s:11:\"description\";s:55:\"Text of log message to be passed into the t() function.\";}s:9:\"variables\";a:4:{s:4:\"type\";s:4:\"text\";s:8:\"not null\";b:1;s:4:\"size\";s:3:\"big\";s:11:\"description\";s:101:\"Serialized array of variables that match the message string and that is passed into the t() function.\";}s:8:\"severity\";a:6:{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:\"description\";s:71:\"The severity level of the event; ranges from 0 (Emergency) to 7 (Debug)\";}s:4:\"link\";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:11:\"description\";s:37:\"Link to view the result of the event.\";}s:8:\"location\";a:3:{s:4:\"type\";s:4:\"text\";s:8:\"not null\";b:1;s:11:\"description\";s:31:\"URL of the origin of the event.\";}s:7:\"referer\";a:3:{s:4:\"type\";s:4:\"text\";s:8:\"not null\";b:0;s:11:\"description\";s:22:\"URL of referring page.\";}s:8:\"hostname\";a:5:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";s:11:\"description\";s:45:\"Hostname of the user who triggered the event.\";}s:9:\"timestamp\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;s:11:\"description\";s:38:\"Unix timestamp of when event occurred.\";}}s:11:\"primary key\";a:1:{i:0;s:3:\"wid\";}s:7:\"indexes\";a:1:{s:4:\"type\";a:1:{i:0;s:4:\"type\";}}s:6:\"module\";s:5:\"dblog\";s:4:\"name\";s:8:\"watchdog\";}s:7:\"filters\";a:7:{s:11:\"description\";s:74:\"Table that maps filters (HTML corrector) to input formats (Filtered HTML).\";s:6:\"fields\";a:5:{s:3:\"fid\";a:3:{s:4:\"type\";s:6:\"serial\";s:8:\"not null\";b:1;s:11:\"description\";s:41:\"Primary Key: Auto-incrementing filter ID.\";}s:6:\"format\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;s:11:\"description\";s:74:\"Foreign key: The {filter_formats}.format to which this filter is assigned.\";}s:6:\"module\";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:11:\"description\";s:32:\"The origin module of the filter.\";}s:5:\"delta\";a:5:{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:\"description\";s:62:\"ID to identify which filter within module is being referenced.\";}s:6:\"weight\";a:5:{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:\"description\";s:31:\"Weight of filter within format.\";}}s:11:\"primary key\";a:1:{i:0;s:3:\"fid\";}s:11:\"unique keys\";a:1:{s:3:\"fmd\";a:3:{i:0;s:6:\"format\";i:1;s:6:\"module\";i:2;s:5:\"delta\";}}s:7:\"indexes\";a:1:{s:4:\"list\";a:4:{i:0;s:6:\"format\";i:1;s:6:\"weight\";i:2;s:6:\"module\";i:3;s:5:\"delta\";}}s:6:\"module\";s:6:\"filter\";s:4:\"name\";s:7:\"filters\";}s:14:\"filter_formats\";a:6:{s:11:\"description\";s:73:\"Stores input formats: custom groupings of filters, such as Filtered HTML.\";s:6:\"fields\";a:4:{s:6:\"format\";a:3:{s:4:\"type\";s:6:\"serial\";s:8:\"not null\";b:1;s:11:\"description\";s:34:\"Primary Key: Unique ID for format.\";}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:11:\"description\";s:41:\"Name of the input format (Filtered HTML).\";}s:5:\"roles\";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:11:\"description\";s:57:\"A comma-separated string of roles; references {role}.rid.\";}s:5:\"cache\";a:5:{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:\"description\";s:77:\"Flag to indicate whether format is cachable. (1 = cachable, 0 = not cachable)\";}}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:6:\"module\";s:6:\"filter\";s:4:\"name\";s:14:\"filter_formats\";}s:12:\"cache_filter\";a:6:{s:11:\"description\";s:128:\"Cache table for the Filter module to store already filtered pieces of text, identified by input format and md5 hash of the text.\";s:6:\"fields\";a:6:{s:3:\"cid\";a:5:{s:11:\"description\";s:29:\"Primary Key: Unique cache ID.\";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:11:\"description\";s:30:\"A collection of data to cache.\";s:4:\"type\";s:4:\"blob\";s:8:\"not null\";b:0;s:4:\"size\";s:3:\"big\";}s:6:\"expire\";a:4:{s:11:\"description\";s:79:\"A Unix timestamp indicating when the cache entry should expire, or 0 for never.\";s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:7:\"created\";a:4:{s:11:\"description\";s:61:\"A Unix timestamp indicating when the cache entry was created.\";s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:7:\"headers\";a:3:{s:11:\"description\";s:51:\"Any custom HTTP headers to be added to cached data.\";s:4:\"type\";s:4:\"text\";s:8:\"not null\";b:0;}s:10:\"serialized\";a:5:{s:11:\"description\";s:64:\"A flag to indicate whether content is serialized (1) or not (0).\";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:11:\"menu_custom\";a:5:{s:11:\"description\";s:74:\"Holds definitions for top-level custom menus (for example, Primary Links).\";s:6:\"fields\";a:3:{s:9:\"menu_name\";a:5:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:32;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";s:11:\"description\";s:80:\"Primary Key: Unique key for menu. This is used as a block delta so length is 32.\";}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:11:\"description\";s:38:\"Menu title; displayed at top of block.\";}s:11:\"description\";a:3:{s:4:\"type\";s:4:\"text\";s:8:\"not null\";b:0;s:11:\"description\";s:17:\"Menu description.\";}}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:11:\"description\";s:25:\"The base table for nodes.\";s:6:\"fields\";a:15:{s:3:\"nid\";a:4:{s:11:\"description\";s:34:\"The primary identifier for a node.\";s:4:\"type\";s:6:\"serial\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:3:\"vid\";a:5:{s:11:\"description\";s:52:\"The current {node_revisions}.vid version identifier.\";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:5:{s:11:\"description\";s:34:\"The {node_type}.type of this node.\";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:5:{s:11:\"description\";s:38:\"The {languages}.language of this node.\";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:5:{s:11:\"description\";s:64:\"The title of this node, always treated as non-markup plain text.\";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:4:{s:11:\"description\";s:81:\"The {users}.uid that owns this node; initially, this is the user that created it.\";s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:6:\"status\";a:4:{s:11:\"description\";s:81:\"Boolean indicating whether the node is published (visible to non-administrators).\";s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:1;}s:7:\"created\";a:4:{s:11:\"description\";s:45:\"The Unix timestamp when the node was created.\";s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:7:\"changed\";a:4:{s:11:\"description\";s:57:\"The Unix timestamp when the node was most recently saved.\";s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:7:\"comment\";a:4:{s:11:\"description\";s:81:\"Whether comments are allowed on this node: 0 = no, 1 = read only, 2 = read/write.\";s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:7:\"promote\";a:4:{s:11:\"description\";s:74:\"Boolean indicating whether the node should be displayed on the front page.\";s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:8:\"moderate\";a:4:{s:11:\"description\";s:93:\"Previously, a boolean indicating whether the node was \"in moderation\"; mostly no longer used.\";s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:6:\"sticky\";a:4:{s:11:\"description\";s:96:\"Boolean indicating whether the node should be displayed at the top of lists in which it appears.\";s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:4:\"tnid\";a:5:{s:11:\"description\";s:94:\"The translation set id for this node, which equals the node id of the source post in each set.\";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:4:{s:11:\"description\";s:71:\"A boolean indicating whether this translation page needs to be updated.\";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:13:\"node_moderate\";a:1:{i:0;s:8:\"moderate\";}s:19:\"node_promote_status\";a:2:{i:0;s:7:\"promote\";i:1;s:6:\"status\";}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:11:\"unique keys\";a:1:{s:3:\"vid\";a:1:{i:0;s:3:\"vid\";}}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:11:\"description\";s:106:\"Identifies which realm/grant pairs a user must possess in order to view, update, or delete specific nodes.\";s:6:\"fields\";a:6:{s:3:\"nid\";a:5:{s:11:\"description\";s:35:\"The {node}.nid this record affects.\";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:5:{s:11:\"description\";s:98:\"The grant ID a user must possess in the specified realm to gain this row\'s privileges on the node.\";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:5:{s:11:\"description\";s:107:\"The realm in which the user must possess the grant ID. Each node access node can define one or more realms.\";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:6:{s:11:\"description\";s:79:\"Boolean indicating whether a user with the realm/grant pair can view this node.\";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:6:{s:11:\"description\";s:79:\"Boolean indicating whether a user with the realm/grant pair can edit this node.\";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:6:{s:11:\"description\";s:81:\"Boolean indicating whether a user with the realm/grant pair can delete this node.\";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:6:\"module\";s:4:\"node\";s:4:\"name\";s:11:\"node_access\";}s:12:\"node_counter\";a:5:{s:11:\"description\";s:30:\"Access statistics for {node}s.\";s:6:\"fields\";a:4:{s:3:\"nid\";a:4:{s:11:\"description\";s:36:\"The {node}.nid for these statistics.\";s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:10:\"totalcount\";a:6:{s:11:\"description\";s:53:\"The total number of times the {node} has been viewed.\";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:3:\"big\";}s:8:\"daycount\";a:6:{s:11:\"description\";s:59:\"The total number of times the {node} has been viewed today.\";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:6:\"medium\";}s:9:\"timestamp\";a:5:{s:11:\"description\";s:48:\"The most recent time the {node} has been viewed.\";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:6:\"module\";s:4:\"node\";s:4:\"name\";s:12:\"node_counter\";}s:14:\"node_revisions\";a:6:{s:11:\"description\";s:56:\"Stores information about each saved version of a {node}.\";s:6:\"fields\";a:9:{s:3:\"nid\";a:5:{s:11:\"description\";s:35:\"The {node} this version belongs to.\";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:11:\"description\";s:40:\"The primary identifier for this version.\";s:4:\"type\";s:6:\"serial\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:3:\"uid\";a:4:{s:11:\"description\";s:42:\"The {users}.uid that created this version.\";s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:5:\"title\";a:5:{s:11:\"description\";s:26:\"The title of this version.\";s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:4:\"body\";a:4:{s:11:\"description\";s:25:\"The body of this version.\";s:4:\"type\";s:4:\"text\";s:8:\"not null\";b:1;s:4:\"size\";s:3:\"big\";}s:6:\"teaser\";a:4:{s:11:\"description\";s:27:\"The teaser of this version.\";s:4:\"type\";s:4:\"text\";s:8:\"not null\";b:1;s:4:\"size\";s:3:\"big\";}s:3:\"log\";a:4:{s:11:\"description\";s:53:\"The log entry explaining the changes in this version.\";s:4:\"type\";s:4:\"text\";s:8:\"not null\";b:1;s:4:\"size\";s:3:\"big\";}s:9:\"timestamp\";a:4:{s:11:\"description\";s:58:\"A Unix timestamp indicating when this version was created.\";s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:6:\"format\";a:4:{s:11:\"description\";s:45:\"The input format used by this version\'s body.\";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:6:\"module\";s:4:\"node\";s:4:\"name\";s:14:\"node_revisions\";}s:9:\"node_type\";a:5:{s:11:\"description\";s:50:\"Stores information about all defined {node} types.\";s:6:\"fields\";a:14:{s:4:\"type\";a:4:{s:11:\"description\";s:39:\"The machine-readable name of this type.\";s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:32;s:8:\"not null\";b:1;}s:4:\"name\";a:5:{s:11:\"description\";s:37:\"The human-readable name of this type.\";s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:6:\"module\";a:4:{s:11:\"description\";s:76:\"The base string used to construct callbacks corresponding to this node type.\";s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;}s:11:\"description\";a:4:{s:11:\"description\";s:33:\"A brief description of this type.\";s:4:\"type\";s:4:\"text\";s:8:\"not null\";b:1;s:4:\"size\";s:6:\"medium\";}s:4:\"help\";a:4:{s:11:\"description\";s:71:\"Help information shown to the user when creating a {node} of this type.\";s:4:\"type\";s:4:\"text\";s:8:\"not null\";b:1;s:4:\"size\";s:6:\"medium\";}s:9:\"has_title\";a:5:{s:11:\"description\";s:65:\"Boolean indicating whether this type uses the {node}.title field.\";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:11:\"description\";s:57:\"The label displayed for the title field on the edit form.\";s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:8:\"has_body\";a:5:{s:11:\"description\";s:74:\"Boolean indicating whether this type uses the {node_revisions}.body field.\";s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:4:\"size\";s:4:\"tiny\";}s:10:\"body_label\";a:5:{s:11:\"description\";s:56:\"The label displayed for the body field on the edit form.\";s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:14:\"min_word_count\";a:5:{s:11:\"description\";s:50:\"The minimum number of words the body must contain.\";s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:4:\"size\";s:5:\"small\";}s:6:\"custom\";a:5:{s:11:\"description\";s:137:\"A boolean indicating whether this type is defined by a module (FALSE) or by a user via a module like the Content Construction Kit (TRUE).\";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:5:{s:11:\"description\";s:108:\"A boolean indicating whether this type has been modified by an administrator; currently not used in any way.\";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:5:{s:11:\"description\";s:88:\"A boolean indicating whether the administrator can change the machine name of this type.\";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:5:{s:11:\"description\";s:128:\"The original machine-readable name of this node type. This may be different from the current type name if the locked field is 0.\";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:14:\"search_dataset\";a:5:{s:11:\"description\";s:35:\"Stores items that will be searched.\";s:6:\"fields\";a:4:{s:3:\"sid\";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:11:\"description\";s:39:\"Search item ID, e.g. node ID for nodes.\";}s:4:\"type\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:16;s:8:\"not null\";b:0;s:11:\"description\";s:24:\"Type of item, e.g. node.\";}s:4:\"data\";a:4:{s:4:\"type\";s:4:\"text\";s:8:\"not null\";b:1;s:4:\"size\";s:3:\"big\";s:11:\"description\";s:44:\"List of space-separated words from the item.\";}s:7:\"reindex\";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:11:\"description\";s:29:\"Set to force node reindexing.\";}}s:11:\"unique keys\";a:1:{s:8:\"sid_type\";a:2:{i:0;s:3:\"sid\";i:1;s:4:\"type\";}}s:6:\"module\";s:6:\"search\";s:4:\"name\";s:14:\"search_dataset\";}s:12:\"search_index\";a:6:{s:11:\"description\";s:61:\"Stores the search index, associating words, items and scores.\";s:6:\"fields\";a:4:{s:4:\"word\";a:5:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:50;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";s:11:\"description\";s:64:\"The {search_total}.word that is associated with the search item.\";}s:3:\"sid\";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:11:\"description\";s:74:\"The {search_dataset}.sid of the searchable item to which the word belongs.\";}s:4:\"type\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:16;s:8:\"not null\";b:0;s:11:\"description\";s:75:\"The {search_dataset}.type of the searchable item to which the word belongs.\";}s:5:\"score\";a:3:{s:4:\"type\";s:5:\"float\";s:8:\"not null\";b:0;s:11:\"description\";s:59:\"The numeric score of the word, higher being more important.\";}}s:7:\"indexes\";a:2:{s:8:\"sid_type\";a:2:{i:0;s:3:\"sid\";i:1;s:4:\"type\";}s:4:\"word\";a:1:{i:0;s:4:\"word\";}}s:11:\"unique keys\";a:1:{s:13:\"word_sid_type\";a:3:{i:0;s:4:\"word\";i:1;s:3:\"sid\";i:2;s:4:\"type\";}}s:6:\"module\";s:6:\"search\";s:4:\"name\";s:12:\"search_index\";}s:12:\"search_total\";a:5:{s:11:\"description\";s:31:\"Stores search totals for words.\";s:6:\"fields\";a:2:{s:4:\"word\";a:5:{s:11:\"description\";s:45:\"Primary Key: Unique word in the search index.\";s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:50;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:5:\"count\";a:3:{s:11:\"description\";s:93:\"The count of the word in the index using Zipf\'s law to equalize the probability distribution.\";s:4:\"type\";s:5:\"float\";s:8:\"not null\";b:0;}}s:11:\"primary key\";a:1:{i:0;s:4:\"word\";}s:6:\"module\";s:6:\"search\";s:4:\"name\";s:12:\"search_total\";}s:17:\"search_node_links\";a:6:{s:11:\"description\";s:122:\"Stores items (like nodes) that link to other nodes, used to improve search scores for nodes that are frequently linked to.\";s:6:\"fields\";a:4:{s:3:\"sid\";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:11:\"description\";s:80:\"The {search_dataset}.sid of the searchable item containing the link to the node.\";}s:4:\"type\";a:5:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:16;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";s:11:\"description\";s:81:\"The {search_dataset}.type of the searchable item containing the link to the node.\";}s:3:\"nid\";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:11:\"description\";s:39:\"The {node}.nid that this item links to.\";}s:7:\"caption\";a:4:{s:4:\"type\";s:4:\"text\";s:4:\"size\";s:3:\"big\";s:8:\"not null\";b:0;s:11:\"description\";s:40:\"The text used to link to the {node}.nid.\";}}s:11:\"primary key\";a:3:{i:0;s:3:\"sid\";i:1;s:4:\"type\";i:2;s:3:\"nid\";}s:7:\"indexes\";a:1:{s:3:\"nid\";a:1:{i:0;s:3:\"nid\";}}s:6:\"module\";s:6:\"search\";s:4:\"name\";s:17:\"search_node_links\";}s:8:\"variable\";a:5:{s:11:\"description\";s:215:\"Named variable/value pairs created by Drupal core or any other module or theme. All variables are cached in memory at the start of every Drupal request so developers should not be careless about what is stored here.\";s:6:\"fields\";a:2:{s:4:\"name\";a:5:{s:11:\"description\";s:25:\"The name of the variable.\";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:11:\"description\";s:26:\"The value of the variable.\";s:4:\"type\";s:4:\"text\";s:8:\"not null\";b:1;s:4:\"size\";s:3:\"big\";}}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:5:{s:11:\"description\";s:26:\"Stores action information.\";s:6:\"fields\";a:5:{s:3:\"aid\";a:5:{s:11:\"description\";s:31:\"Primary Key: Unique actions ID.\";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:5:{s:11:\"description\";s:82:\"The object that that action acts on (node, user, comment, system or custom types.)\";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:5:{s:11:\"description\";s:57:\"The callback function that executes when the action runs.\";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:4:{s:11:\"description\";s:49:\"Parameters to be passed to the callback function.\";s:4:\"type\";s:4:\"text\";s:8:\"not null\";b:1;s:4:\"size\";s:3:\"big\";}s:11:\"description\";a:5:{s:11:\"description\";s:26:\"Description of the action.\";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:11:\"actions_aid\";a:5:{s:11:\"description\";s:42:\"Stores action IDs for non-default actions.\";s:6:\"fields\";a:1:{s:3:\"aid\";a:4:{s:11:\"description\";s:31:\"Primary Key: Unique actions ID.\";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:3:\"aid\";}s:6:\"module\";s:6:\"system\";s:4:\"name\";s:11:\"actions_aid\";}s:5:\"batch\";a:6:{s:11:\"description\";s:76:\"Stores details about batches (processes that run in multiple HTTP requests).\";s:6:\"fields\";a:4:{s:3:\"bid\";a:4:{s:11:\"description\";s:29:\"Primary Key: Unique batch ID.\";s:4:\"type\";s:6:\"serial\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:5:\"token\";a:4:{s:11:\"description\";s:165:\"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.\";s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:64;s:8:\"not null\";b:1;}s:9:\"timestamp\";a:3:{s:11:\"description\";s:112:\"A Unix timestamp indicating when this batch was submitted for processing. Stale batches are purged at cron time.\";s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;}s:5:\"batch\";a:4:{s:11:\"description\";s:64:\"A serialized array containing the processing data for the batch.\";s:4:\"type\";s:4:\"text\";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:5:\"cache\";a:6:{s:11:\"description\";s:140:\"Generic cache table for caching things not separated out into their own tables. Contributed modules may also use this to store cached items.\";s:6:\"fields\";a:6:{s:3:\"cid\";a:5:{s:11:\"description\";s:29:\"Primary Key: Unique cache ID.\";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:11:\"description\";s:30:\"A collection of data to cache.\";s:4:\"type\";s:4:\"blob\";s:8:\"not null\";b:0;s:4:\"size\";s:3:\"big\";}s:6:\"expire\";a:4:{s:11:\"description\";s:79:\"A Unix timestamp indicating when the cache entry should expire, or 0 for never.\";s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:7:\"created\";a:4:{s:11:\"description\";s:61:\"A Unix timestamp indicating when the cache entry was created.\";s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:7:\"headers\";a:3:{s:11:\"description\";s:51:\"Any custom HTTP headers to be added to cached data.\";s:4:\"type\";s:4:\"text\";s:8:\"not null\";b:0;}s:10:\"serialized\";a:5:{s:11:\"description\";s:64:\"A flag to indicate whether content is serialized (1) or not (0).\";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:10:\"cache_form\";a:6:{s:11:\"description\";s:125:\"Cache table for the form system to store recently built forms and their storage data, to be used in subsequent page requests.\";s:6:\"fields\";a:6:{s:3:\"cid\";a:5:{s:11:\"description\";s:29:\"Primary Key: Unique cache ID.\";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:11:\"description\";s:30:\"A collection of data to cache.\";s:4:\"type\";s:4:\"blob\";s:8:\"not null\";b:0;s:4:\"size\";s:3:\"big\";}s:6:\"expire\";a:4:{s:11:\"description\";s:79:\"A Unix timestamp indicating when the cache entry should expire, or 0 for never.\";s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:7:\"created\";a:4:{s:11:\"description\";s:61:\"A Unix timestamp indicating when the cache entry was created.\";s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:7:\"headers\";a:3:{s:11:\"description\";s:51:\"Any custom HTTP headers to be added to cached data.\";s:4:\"type\";s:4:\"text\";s:8:\"not null\";b:0;}s:10:\"serialized\";a:5:{s:11:\"description\";s:64:\"A flag to indicate whether content is serialized (1) or not (0).\";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:6:{s:11:\"description\";s:91:\"Cache table used to store compressed pages for anonymous users, if page caching is enabled.\";s:6:\"fields\";a:6:{s:3:\"cid\";a:5:{s:11:\"description\";s:29:\"Primary Key: Unique cache ID.\";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:11:\"description\";s:30:\"A collection of data to cache.\";s:4:\"type\";s:4:\"blob\";s:8:\"not null\";b:0;s:4:\"size\";s:3:\"big\";}s:6:\"expire\";a:4:{s:11:\"description\";s:79:\"A Unix timestamp indicating when the cache entry should expire, or 0 for never.\";s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:7:\"created\";a:4:{s:11:\"description\";s:61:\"A Unix timestamp indicating when the cache entry was created.\";s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:7:\"headers\";a:3:{s:11:\"description\";s:51:\"Any custom HTTP headers to be added to cached data.\";s:4:\"type\";s:4:\"text\";s:8:\"not null\";b:0;}s:10:\"serialized\";a:5:{s:11:\"description\";s:64:\"A flag to indicate whether content is serialized (1) or not (0).\";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:6:{s:11:\"description\";s:132:\"Cache table for the menu system to store router information as well as generated link trees for various menu/page/user combinations.\";s:6:\"fields\";a:6:{s:3:\"cid\";a:5:{s:11:\"description\";s:29:\"Primary Key: Unique cache ID.\";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:11:\"description\";s:30:\"A collection of data to cache.\";s:4:\"type\";s:4:\"blob\";s:8:\"not null\";b:0;s:4:\"size\";s:3:\"big\";}s:6:\"expire\";a:4:{s:11:\"description\";s:79:\"A Unix timestamp indicating when the cache entry should expire, or 0 for never.\";s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:7:\"created\";a:4:{s:11:\"description\";s:61:\"A Unix timestamp indicating when the cache entry was created.\";s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:7:\"headers\";a:3:{s:11:\"description\";s:51:\"Any custom HTTP headers to be added to cached data.\";s:4:\"type\";s:4:\"text\";s:8:\"not null\";b:0;}s:10:\"serialized\";a:5:{s:11:\"description\";s:64:\"A flag to indicate whether content is serialized (1) or not (0).\";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:5:\"files\";a:6:{s:11:\"description\";s:38:\"Stores information for uploaded files.\";s:6:\"fields\";a:8:{s:3:\"fid\";a:4:{s:11:\"description\";s:29:\"Primary Key: Unique files ID.\";s:4:\"type\";s:6:\"serial\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:3:\"uid\";a:5:{s:11:\"description\";s:60:\"The {users}.uid of the user who is associated with the file.\";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:5:{s:11:\"description\";s:17:\"Name of the file.\";s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:8:\"filepath\";a:5:{s:11:\"description\";s:41:\"Path of the file relative to Drupal root.\";s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:8:\"filemime\";a:5:{s:11:\"description\";s:19:\"The file MIME type.\";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:11:\"description\";s:30:\"The size of the file in bytes.\";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:4:{s:11:\"description\";s:65:\"A flag indicating whether file is temporary (1) or permanent (0).\";s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:9:\"timestamp\";a:5:{s:11:\"description\";s:43:\"UNIX timestamp for when the file was added.\";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:\"primary key\";a:1:{i:0;s:3:\"fid\";}s:6:\"module\";s:6:\"system\";s:4:\"name\";s:5:\"files\";}s:5:\"flood\";a:6:{s:11:\"description\";s:79:\"Flood controls the threshold of events, such as the number of contact attempts.\";s:6:\"fields\";a:4:{s:3:\"fid\";a:3:{s:11:\"description\";s:22:\"Unique flood event ID.\";s:4:\"type\";s:6:\"serial\";s:8:\"not null\";b:1;}s:5:\"event\";a:5:{s:11:\"description\";s:29:\"Name of event (e.g. contact).\";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:5:{s:11:\"description\";s:24:\"Hostname of the visitor.\";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:4:{s:11:\"description\";s:23:\"Timestamp of the event.\";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:1:{s:5:\"allow\";a:3:{i:0;s:5:\"event\";i:1;s:8:\"hostname\";i:2;s:9:\"timestamp\";}}s:6:\"module\";s:6:\"system\";s:4:\"name\";s:5:\"flood\";}s:7:\"history\";a:6:{s:11:\"description\";s:50:\"A record of which {users} have read which {node}s.\";s:6:\"fields\";a:3:{s:3:\"uid\";a:4:{s:11:\"description\";s:41:\"The {users}.uid that read the {node} nid.\";s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:3:\"nid\";a:4:{s:11:\"description\";s:29:\"The {node}.nid that was read.\";s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:9:\"timestamp\";a:4:{s:11:\"description\";s:46:\"The Unix timestamp at which the read occurred.\";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:6:\"system\";s:4:\"name\";s:7:\"history\";}s:11:\"menu_router\";a:6:{s:11:\"description\";s:56:\"Maps paths to various callbacks (access, page and title)\";s:6:\"fields\";a:20:{s:4:\"path\";a:5:{s:11:\"description\";s:49:\"Primary Key: the Drupal path this entry describes\";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:3:{s:11:\"description\";s:129:\"A serialized array of function names (like node_load) to be called to load an object corresponding to a part of the current path.\";s:4:\"type\";s:4:\"text\";s:8:\"not null\";b:1;}s:16:\"to_arg_functions\";a:3:{s:11:\"description\";s:139:\"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.\";s:4:\"type\";s:4:\"text\";s:8:\"not null\";b:1;}s:15:\"access_callback\";a:5:{s:11:\"description\";s:86:\"The callback which determines the access to this router path. Defaults to user_access.\";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:3:{s:11:\"description\";s:56:\"A serialized array of arguments for the access callback.\";s:4:\"type\";s:4:\"text\";s:8:\"not null\";b:0;}s:13:\"page_callback\";a:5:{s:11:\"description\";s:47:\"The name of the function that renders the page.\";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:3:{s:11:\"description\";s:54:\"A serialized array of arguments for the page callback.\";s:4:\"type\";s:4:\"text\";s:8:\"not null\";b:0;}s:3:\"fit\";a:4:{s:11:\"description\";s:53:\"A numeric representation of how specific the path is.\";s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:12:\"number_parts\";a:5:{s:11:\"description\";s:36:\"Number of parts in this router path.\";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:\"tab_parent\";a:5:{s:11:\"description\";s:98:\"Only for local tasks (tabs) - the router path of the parent page (which may also be a local task).\";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:5:{s:11:\"description\";s:118:\"Router path of the closest non-tab parent page. For pages that are not local tasks, this will be the same as the path.\";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:5:{s:11:\"description\";s:81:\"The title for the current page, or the title for the tab if this is a local task.\";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:5:{s:11:\"description\";s:54:\"A function which will alter the title. Defaults to t()\";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:5:{s:11:\"description\";s:133:\"A serialized array of arguments for the title callback. If empty, the title will be used as the sole argument for the title callback.\";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:11:\"description\";s:74:\"Numeric representation of the type of the menu item, like MENU_LOCAL_TASK.\";s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:14:\"block_callback\";a:5:{s:11:\"description\";s:92:\"Name of a function used to render the block on the system administration page for this item.\";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:3:{s:11:\"description\";s:27:\"A description of this item.\";s:4:\"type\";s:4:\"text\";s:8:\"not null\";b:1;}s:8:\"position\";a:5:{s:11:\"description\";s:90:\"The position of the block (left or right) on the system administration page for this item.\";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:4:{s:11:\"description\";s:78:\"Weight of the element. Lighter weights are higher up, heavier weights go down.\";s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:4:\"file\";a:3:{s:11:\"description\";s:92:\"The file to include for this element, usually the page callback function lives in this file.\";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:1:{i:0;s:10:\"tab_parent\";}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:6:{s:11:\"description\";s:44:\"Contains the individual links within a menu.\";s:6:\"fields\";a:25:{s:9:\"menu_name\";a:5:{s:11:\"description\";s:98:\"The menu name. All links with the same menu name (such as \'navigation\') are part of the same menu.\";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:4:{s:11:\"description\";s:51:\"The menu link ID (mlid) is the integer primary key.\";s:4:\"type\";s:6:\"serial\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:4:\"plid\";a:5:{s:11:\"description\";s:126:\"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.\";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:5:{s:11:\"description\";s:53:\"The Drupal path or external path this link points to.\";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:5:{s:11:\"description\";s:114:\"For links corresponding to a Drupal path (external = 0), this connects the link to a {menu_router}.path for joins.\";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:11:\"description\";s:99:\"The text displayed for the link, which may be modified by a title callback stored in {menu_router}.\";s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:7:\"options\";a:3:{s:11:\"description\";s:115:\"A serialized array of options to be passed to the url() or l() function, such as a query string or HTML attributes.\";s:4:\"type\";s:4:\"text\";s:8:\"not null\";b:0;}s:6:\"module\";a:5:{s:11:\"description\";s:48:\"The name of the module that generated this link.\";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:5:{s:11:\"description\";s:168:\"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)\";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:5:{s:11:\"description\";s:120:\"A flag to indicate if the link points to a full URL starting with a protocol, like http:// (1 = external, 0 = internal).\";s: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:5:{s:11:\"description\";s:99:\"Flag indicating whether any links have this link as a parent (1 = children exist, 0 = no children).\";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:5:{s:11:\"description\";s:210:\"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)\";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:4:{s:11:\"description\";s:59:\"Link weight among links in the same menu at the same depth.\";s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:5:\"depth\";a:5:{s:11:\"description\";s:80:\"The depth relative to the top level. A link with plid == 0 will have depth == 1.\";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:5:{s:11:\"description\";s:110:\"A flag to indicate that the user has manually created or edited the link (1 = customized, 0 = not customized).\";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:5:{s:11:\"description\";s:219:\"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.\";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:5:{s:11:\"description\";s:49:\"The second mlid in the materialized path. See p1.\";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:5:{s:11:\"description\";s:48:\"The third mlid in the materialized path. See p1.\";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:5:{s:11:\"description\";s:49:\"The fourth mlid in the materialized path. See p1.\";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:5:{s:11:\"description\";s:48:\"The fifth mlid in the materialized path. See p1.\";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:5:{s:11:\"description\";s:48:\"The sixth mlid in the materialized path. See p1.\";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:5:{s:11:\"description\";s:50:\"The seventh mlid in the materialized path. See p1.\";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:5:{s:11:\"description\";s:49:\"The eighth mlid in the materialized path. See p1.\";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:5:{s:11:\"description\";s:48:\"The ninth mlid in the materialized path. See p1.\";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:5:{s:11:\"description\";s:81:\"Flag that indicates that this link was generated during the update from Drupal 5.\";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:\"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:8:\"sessions\";a:6:{s:11:\"description\";s:139:\"Drupal\'s session handlers read and write into the sessions table. Each record represents a user session, either anonymous or authenticated.\";s:6:\"fields\";a:6:{s:3:\"uid\";a:4:{s:11:\"description\";s:68:\"The {users}.uid corresponding to a session, or 0 for anonymous user.\";s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:3:\"sid\";a:5:{s:11:\"description\";s:71:\"Primary key: A session ID. The value is generated by PHP\'s Session API.\";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:5:{s:11:\"description\";s:52:\"The IP address that last used this session ID (sid).\";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:4:{s:11:\"description\";s:104:\"The Unix timestamp when this session last requested a page. Old records are purged by PHP automatically.\";s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:5:\"cache\";a:4:{s:11:\"description\";s:118:\"The time of this user\'s last post. This is used when the site has specified a minimum_cache_lifetime. See cache_get().\";s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:7:\"session\";a:4:{s:11:\"description\";s:208:\"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.\";s:4:\"type\";s:4:\"text\";s:8:\"not null\";b:0;s:4:\"size\";s:3:\"big\";}}s:11:\"primary key\";a:1:{i:0;s:3:\"sid\";}s:7:\"indexes\";a:2:{s:9:\"timestamp\";a:1:{i:0;s:9:\"timestamp\";}s:3:\"uid\";a:1:{i:0;s:3:\"uid\";}}s:6:\"module\";s:6:\"system\";s:4:\"name\";s:8:\"sessions\";}s:6:\"system\";a:6:{s:11:\"description\";s:105:\"A list of all modules, themes, and theme engines that are or have been installed in Drupal\'s file system.\";s:6:\"fields\";a:10:{s:8:\"filename\";a:5:{s:11:\"description\";s:103:\"The path of the primary file for this item, relative to the Drupal root; e.g. modules/node/node.module.\";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:5:{s:11:\"description\";s:32:\"The name of the item; e.g. node.\";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:5:{s:11:\"description\";s:60:\"The type of the item, either module, theme, or theme_engine.\";s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:5:\"owner\";a:5:{s:11:\"description\";s:55:\"A theme\'s \'parent\'. Can be either a theme or an engine.\";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:4:{s:11:\"description\";s:55:\"Boolean indicating whether or not this item is enabled.\";s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:8:\"throttle\";a:5:{s:11:\"description\";s:102:\"Boolean indicating whether this item is disabled when the throttle.module disables throttleable items.\";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:\"bootstrap\";a:4:{s:11:\"description\";s:138:\"Boolean indicating whether this module is loaded during Drupal\'s early bootstrapping phase (e.g. even before the page cache is consulted).\";s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:14:\"schema_version\";a:5:{s:11:\"description\";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: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:4:{s:11:\"description\";s:127:\"The order in which this module\'s hooks should be invoked relative to other modules. Equal-weighted modules are ordered by name.\";s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:4:\"info\";a:3:{s:11:\"description\";s:166:\"A serialized array containing information from the module\'s .info file; keys can include name, description, package, version, core, dependencies, dependents, and php.\";s:4:\"type\";s:4:\"text\";s:8:\"not null\";b:0;}}s:11:\"primary key\";a:1:{i:0;s:8:\"filename\";}s:7:\"indexes\";a:3:{s:7:\"modules\";a:4:{i:0;a:2:{i:0;s:4:\"type\";i:1;i:12;}i:1;s:6:\"status\";i:2;s:6:\"weight\";i:3;s:8:\"filename\";}s:9:\"bootstrap\";a:5:{i:0;a:2:{i:0;s:4:\"type\";i:1;i:12;}i:1;s:6:\"status\";i:2;s:9:\"bootstrap\";i:3;s:6:\"weight\";i:4;s:8:\"filename\";}s:9:\"type_name\";a:2:{i:0;a:2:{i:0;s:4:\"type\";i:1;i:12;}i:1;s:4:\"name\";}}s:6:\"module\";s:6:\"system\";s:4:\"name\";s:6:\"system\";}s:9:\"url_alias\";a:7:{s:11:\"description\";s:95:\"A list of URL aliases for Drupal paths; a user may visit either the source or destination path.\";s:6:\"fields\";a:4:{s:3:\"pid\";a:4:{s:11:\"description\";s:31:\"A unique path alias identifier.\";s:4:\"type\";s:6:\"serial\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:3:\"src\";a:5:{s:11:\"description\";s:48:\"The Drupal path this alias is for; e.g. node/12.\";s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:3:\"dst\";a:5:{s:11:\"description\";s:49:\"The alias for this path; e.g. title-of-the-story.\";s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:8:\"language\";a:5:{s:11:\"description\";s:151:\"The language this alias is for; if blank, the alias will be used for unknown languages. Each Drupal path can have an alias for each supported language.\";s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:12;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}}s:11:\"unique keys\";a:1:{s:12:\"dst_language\";a:2:{i:0;s:3:\"dst\";i:1;s:8:\"language\";}}s:11:\"primary key\";a:1:{i:0;s:3:\"pid\";}s:7:\"indexes\";a:1:{s:12:\"src_language\";a:2:{i:0;s:3:\"src\";i:1;s:8:\"language\";}}s:6:\"module\";s:6:\"system\";s:4:\"name\";s:9:\"url_alias\";}s:9:\"term_data\";a:6:{s:11:\"description\";s:24:\"Stores term information.\";s:6:\"fields\";a:5:{s:3:\"tid\";a:4:{s:4:\"type\";s:6:\"serial\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:11:\"description\";s:28:\"Primary Key: Unique term ID.\";}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:11:\"description\";s:69:\"The {vocabulary}.vid of the vocabulary to which the term is assigned.\";}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:11:\"description\";s:14:\"The term name.\";}s:11:\"description\";a:4:{s:4:\"type\";s:4:\"text\";s:8:\"not null\";b:0;s:4:\"size\";s:3:\"big\";s:11:\"description\";s:26:\"A description of the term.\";}s:6:\"weight\";a:5:{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:\"description\";s:51:\"The weight of this term in relation to other terms.\";}}s:11:\"primary key\";a:1:{i:0;s:3:\"tid\";}s:7:\"indexes\";a:2:{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:6:\"module\";s:8:\"taxonomy\";s:4:\"name\";s:9:\"term_data\";}s:14:\"term_hierarchy\";a:6:{s:11:\"description\";s:51:\"Stores the hierarchical relationship between terms.\";s:6:\"fields\";a:2:{s:3:\"tid\";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:11:\"description\";s:45:\"Primary Key: The {term_data}.tid of the term.\";}s:6:\"parent\";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:11:\"description\";s:77:\"Primary Key: The {term_data}.tid of the term\'s parent. 0 indicates no parent.\";}}s:7:\"indexes\";a:1:{s:6:\"parent\";a:1:{i:0;s:6:\"parent\";}}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:14:\"term_hierarchy\";}s:9:\"term_node\";a:6:{s:11:\"description\";s:42:\"Stores the relationship of terms to nodes.\";s:6:\"fields\";a:3:{s:3:\"nid\";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:11:\"description\";s:40:\"Primary Key: The {node}.nid of the node.\";}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:11:\"description\";s:40:\"Primary Key: The {node}.vid of the node.\";}s:3:\"tid\";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:11:\"description\";s:64:\"Primary Key: The {term_data}.tid of a term assigned to the node.\";}}s:7:\"indexes\";a:2:{s:3:\"vid\";a:1:{i:0;s:3:\"vid\";}s:3:\"nid\";a:1:{i:0;s:3:\"nid\";}}s:11:\"primary key\";a:2:{i:0;s:3:\"tid\";i:1;s:3:\"vid\";}s:6:\"module\";s:8:\"taxonomy\";s:4:\"name\";s:9:\"term_node\";}s:13:\"term_relation\";a:7:{s:11:\"description\";s:52:\"Stores non-hierarchical relationships between terms.\";s:6:\"fields\";a:3:{s:4:\"trid\";a:3:{s:4:\"type\";s:6:\"serial\";s:8:\"not null\";b:1;s:11:\"description\";s:37:\"Primary Key: Unique term relation ID.\";}s:4:\"tid1\";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:11:\"description\";s:56:\"The {term_data}.tid of the first term in a relationship.\";}s:4:\"tid2\";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:11:\"description\";s:57:\"The {term_data}.tid of the second term in a relationship.\";}}s:11:\"unique keys\";a:1:{s:9:\"tid1_tid2\";a:2:{i:0;s:4:\"tid1\";i:1;s:4:\"tid2\";}}s:7:\"indexes\";a:1:{s:4:\"tid2\";a:1:{i:0;s:4:\"tid2\";}}s:11:\"primary key\";a:1:{i:0;s:4:\"trid\";}s:6:\"module\";s:8:\"taxonomy\";s:4:\"name\";s:13:\"term_relation\";}s:12:\"term_synonym\";a:6:{s:11:\"description\";s:21:\"Stores term synonyms.\";s:6:\"fields\";a:3:{s:4:\"tsid\";a:3:{s:4:\"type\";s:6:\"serial\";s:8:\"not null\";b:1;s:11:\"description\";s:36:\"Primary Key: Unique term synonym ID.\";}s:3:\"tid\";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:11:\"description\";s:32:\"The {term_data}.tid of the term.\";}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:11:\"description\";s:24:\"The name of the synonym.\";}}s:7:\"indexes\";a:2:{s:3:\"tid\";a:1:{i:0;s:3:\"tid\";}s:8:\"name_tid\";a:2:{i:0;s:4:\"name\";i:1;s:3:\"tid\";}}s:11:\"primary key\";a:1:{i:0;s:4:\"tsid\";}s:6:\"module\";s:8:\"taxonomy\";s:4:\"name\";s:12:\"term_synonym\";}s:10:\"vocabulary\";a:6:{s:11:\"description\";s:30:\"Stores vocabulary information.\";s:6:\"fields\";a:11:{s:3:\"vid\";a:4:{s:4:\"type\";s:6:\"serial\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:11:\"description\";s:34:\"Primary Key: Unique vocabulary ID.\";}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:11:\"description\";s:23:\"Name of the vocabulary.\";}s:11:\"description\";a:4:{s:4:\"type\";s:4:\"text\";s:8:\"not null\";b:0;s:4:\"size\";s:3:\"big\";s:11:\"description\";s:30:\"Description of the vocabulary.\";}s:4:\"help\";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:11:\"description\";s:40:\"Help text to display for the vocabulary.\";}s:9:\"relations\";a:6:{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:\"description\";s:91:\"Whether or not related terms are enabled within the vocabulary. (0 = disabled, 1 = enabled)\";}s:9:\"hierarchy\";a:6:{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:\"description\";s:93:\"The type of hierarchy allowed within the vocabulary. (0 = disabled, 1 = single, 2 = multiple)\";}s:8:\"multiple\";a:6:{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:\"description\";s:105:\"Whether or not multiple terms from this vocabulary may be assigned to a node. (0 = disabled, 1 = enabled)\";}s:8:\"required\";a:6:{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:\"description\";s:94:\"Whether or not terms are required for nodes using this vocabulary. (0 = disabled, 1 = enabled)\";}s:4:\"tags\";a:6:{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:\"description\";s:86:\"Whether or not free tagging is enabled for the vocabulary. (0 = disabled, 1 = enabled)\";}s:6:\"module\";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:11:\"description\";s:40:\"The module which created the vocabulary.\";}s:6:\"weight\";a:5:{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:\"description\";s:63:\"The weight of the vocabulary in relation to other vocabularies.\";}}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:6:\"module\";s:8:\"taxonomy\";s:4:\"name\";s:10:\"vocabulary\";}s:21:\"vocabulary_node_types\";a:6:{s:11:\"description\";s:54:\"Stores which node types vocabularies may be used with.\";s:6:\"fields\";a:2:{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:11:\"description\";s:52:\"Primary Key: the {vocabulary}.vid of the vocabulary.\";}s:4:\"type\";a:5:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:32;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";s:11:\"description\";s:70:\"The {node}.type of the node type for which the vocabulary may be used.\";}}s:11:\"primary key\";a:2:{i:0;s:4:\"type\";i:1;s:3:\"vid\";}s:7:\"indexes\";a:1:{s:3:\"vid\";a:1:{i:0;s:3:\"vid\";}}s:6:\"module\";s:8:\"taxonomy\";s:4:\"name\";s:21:\"vocabulary_node_types\";}s:19:\"trigger_assignments\";a:5:{s:11:\"description\";s:67:\"Maps trigger to hook and operation assignments from trigger.module.\";s:6:\"fields\";a:4:{s:4:\"hook\";a:5:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:32;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";s:11:\"description\";s:103:\"Primary Key: The name of the internal Drupal hook upon which an action is firing; for example, nodeapi.\";}s:2:\"op\";a:5:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:32;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";s:11:\"description\";s:101:\"Primary Key: The specific operation of the hook upon which an action is firing: for example, presave.\";}s:3:\"aid\";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:11:\"description\";s:36:\"Primary Key: Action\'s {actions}.aid.\";}s:6:\"weight\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;s:11:\"description\";s:67:\"The weight of the trigger assignment in relation to other triggers.\";}}s:11:\"primary key\";a:3:{i:0;s:4:\"hook\";i:1;s:2:\"op\";i:2;s:3:\"aid\";}s:6:\"module\";s:7:\"trigger\";s:4:\"name\";s:19:\"trigger_assignments\";}s:12:\"cache_update\";a:6:{s:11:\"description\";s:109:\"Cache table for the Update module to store information about available releases, fetched from central server.\";s:6:\"fields\";a:6:{s:3:\"cid\";a:5:{s:11:\"description\";s:29:\"Primary Key: Unique cache ID.\";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:11:\"description\";s:30:\"A collection of data to cache.\";s:4:\"type\";s:4:\"blob\";s:8:\"not null\";b:0;s:4:\"size\";s:3:\"big\";}s:6:\"expire\";a:4:{s:11:\"description\";s:79:\"A Unix timestamp indicating when the cache entry should expire, or 0 for never.\";s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:7:\"created\";a:4:{s:11:\"description\";s:61:\"A Unix timestamp indicating when the cache entry was created.\";s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:7:\"headers\";a:3:{s:11:\"description\";s:51:\"Any custom HTTP headers to be added to cached data.\";s:4:\"type\";s:4:\"text\";s:8:\"not null\";b:0;}s:10:\"serialized\";a:5:{s:11:\"description\";s:64:\"A flag to indicate whether content is serialized (1) or not (0).\";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:6:\"access\";a:5:{s:11:\"description\";s:25:\"Stores site access rules.\";s:6:\"fields\";a:4:{s:3:\"aid\";a:3:{s:4:\"type\";s:6:\"serial\";s:8:\"not null\";b:1;s:11:\"description\";s:30:\"Primary Key: Unique access ID.\";}s:4:\"mask\";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:11:\"description\";s:36:\"Text mask used for filtering access.\";}s:4:\"type\";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:11:\"description\";s:40:\"Type of access rule: name, mail or host.\";}s:6:\"status\";a:5:{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:\"description\";s:46:\"Whether rule is to allow(1) or deny(0) access.\";}}s:11:\"primary key\";a:1:{i:0;s:3:\"aid\";}s:6:\"module\";s:4:\"user\";s:4:\"name\";s:6:\"access\";}s:7:\"authmap\";a:6:{s:11:\"description\";s:42:\"Stores distributed authentication mapping.\";s:6:\"fields\";a:4:{s:3:\"aid\";a:4:{s:11:\"description\";s:31:\"Primary Key: Unique authmap ID.\";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:\"not null\";b:1;s:7:\"default\";i:0;s:11:\"description\";s:19:\"User\'s {users}.uid.\";}s:8:\"authname\";a:5:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";s:11:\"description\";s:27:\"Unique authentication name.\";}s:6:\"module\";a:5:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";s:11:\"description\";s:47:\"Module which is controlling the authentication.\";}}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:6:\"module\";s:4:\"user\";s:4:\"name\";s:7:\"authmap\";}s:10:\"permission\";a:6:{s:11:\"description\";s:29:\"Stores permissions for users.\";s:6:\"fields\";a:4:{s:3:\"pid\";a:3:{s:4:\"type\";s:6:\"serial\";s:8:\"not null\";b:1;s:11:\"description\";s:34:\"Primary Key: Unique permission ID.\";}s:3:\"rid\";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:11:\"description\";s:53:\"The {role}.rid to which the permissions are assigned.\";}s:4:\"perm\";a:4:{s:4:\"type\";s:4:\"text\";s:8:\"not null\";b:0;s:4:\"size\";s:3:\"big\";s:11:\"description\";s:35:\"List of permissions being assigned.\";}s:3:\"tid\";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:11:\"description\";s:67:\"Originally intended for taxonomy-based permissions, but never used.\";}}s:11:\"primary key\";a:1:{i:0;s:3:\"pid\";}s:7:\"indexes\";a:1:{s:3:\"rid\";a:1:{i:0;s:3:\"rid\";}}s:6:\"module\";s:4:\"user\";s:4:\"name\";s:10:\"permission\";}s:4:\"role\";a:6:{s:11:\"description\";s:18:\"Stores user roles.\";s:6:\"fields\";a:2:{s:3:\"rid\";a:4:{s:4:\"type\";s:6:\"serial\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:11:\"description\";s:28:\"Primary Key: Unique role id.\";}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:11:\"description\";s:17:\"Unique role name.\";}}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:6:\"module\";s:4:\"user\";s:4:\"name\";s:4:\"role\";}s:5:\"users\";a:7:{s:11:\"description\";s:17:\"Stores user data.\";s:6:\"fields\";a:19:{s:3:\"uid\";a:4:{s:4:\"type\";s:6:\"serial\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:11:\"description\";s:28:\"Primary Key: Unique user ID.\";}s:4:\"name\";a:5:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:60;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";s:11:\"description\";s:17:\"Unique user name.\";}s:4:\"pass\";a:5:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:32;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";s:11:\"description\";s:27:\"User\'s password (md5 hash).\";}s:4:\"mail\";a:5:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:64;s:8:\"not null\";b:0;s:7:\"default\";s:0:\"\";s:11:\"description\";s:21:\"User\'s email address.\";}s:4:\"mode\";a:5:{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:\"description\";s:80:\"Per-user comment display mode (threaded vs. flat), used by the {comment} module.\";}s:4:\"sort\";a:5:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:0;s:7:\"default\";i:0;s:4:\"size\";s:4:\"tiny\";s:11:\"description\";s:84:\"Per-user comment sort order (newest vs. oldest first), used by the {comment} module.\";}s:9:\"threshold\";a:5:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:0;s:7:\"default\";i:0;s:4:\"size\";s:4:\"tiny\";s:11:\"description\";s:81:\"Previously used by the {comment} module for per-user preferences; no longer used.\";}s:5:\"theme\";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:11:\"description\";s:21:\"User\'s default theme.\";}s:9:\"signature\";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:11:\"description\";s:17:\"User\'s signature.\";}s:16:\"signature_format\";a:5:{s:4:\"type\";s:3:\"int\";s:4:\"size\";s:5:\"small\";s:8:\"not null\";b:1;s:7:\"default\";i:0;s:11:\"description\";s:45:\"The {filter_formats}.format of the signature.\";}s:7:\"created\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;s:11:\"description\";s:36:\"Timestamp for when user was created.\";}s:6:\"access\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;s:11:\"description\";s:51:\"Timestamp for previous time user accessed the site.\";}s:5:\"login\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;s:11:\"description\";s:32:\"Timestamp for user\'s last login.\";}s:6:\"status\";a:5:{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:\"description\";s:44:\"Whether the user is active(1) or blocked(0).\";}s:8:\"timezone\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:8;s:8:\"not null\";b:0;s:11:\"description\";s:16:\"User\'s timezone.\";}s:8:\"language\";a:5:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:12;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";s:11:\"description\";s:24:\"User\'s default language.\";}s:7:\"picture\";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:11:\"description\";s:36:\"Path to the user\'s uploaded picture.\";}s:4:\"init\";a:5:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:64;s:8:\"not null\";b:0;s:7:\"default\";s:0:\"\";s:11:\"description\";s:48:\"Email address used for initial account creation.\";}s:4:\"data\";a:4:{s:4:\"type\";s:4:\"text\";s:8:\"not null\";b:0;s:4:\"size\";s:3:\"big\";s:11:\"description\";s:269:\"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 version of Drupal.\";}}s:7:\"indexes\";a:3:{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: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:6:\"module\";s:4:\"user\";s:4:\"name\";s:5:\"users\";}s:11:\"users_roles\";a:6:{s:11:\"description\";s:20:\"Maps users to roles.\";s:6:\"fields\";a:2:{s:3:\"uid\";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:11:\"description\";s:34:\"Primary Key: {users}.uid for user.\";}s:3:\"rid\";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:11:\"description\";s:33:\"Primary Key: {role}.rid for role.\";}}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:6:\"module\";s:4:\"user\";s:4:\"name\";s:11:\"users_roles\";}s:18:\"content_node_field\";a:4:{s:6:\"fields\";a:10:{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:4:\"type\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:127;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:15:\"global_settings\";a:4:{s:4:\"type\";s:4:\"text\";s:4:\"size\";s:6:\"medium\";s:8:\"not null\";b:1;s:9:\"serialize\";b:1;}s:8:\"required\";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:8:\"multiple\";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:10:\"db_storage\";a:4:{s:4:\"type\";s:3:\"int\";s:4:\"size\";s:4:\"tiny\";s:8:\"not null\";b:1;s:7:\"default\";i:1;}s:6:\"module\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:127;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:10:\"db_columns\";a:4:{s:4:\"type\";s:4:\"text\";s:4:\"size\";s:6:\"medium\";s:8:\"not null\";b:1;s:9:\"serialize\";b:1;}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: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:11:\"primary key\";a:1:{i:0;s:10:\"field_name\";}s:6:\"module\";s:7:\"content\";s:4:\"name\";s:18:\"content_node_field\";}s:27:\"content_node_field_instance\";a:4:{s:6:\"fields\";a:10:{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:9:\"type_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: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:\"widget_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:15:\"widget_settings\";a:4:{s:4:\"type\";s:4:\"text\";s:4:\"size\";s:6:\"medium\";s:8:\"not null\";b:1;s:9:\"serialize\";b:1;}s:16:\"display_settings\";a:4:{s:4:\"type\";s:4:\"text\";s:4:\"size\";s:6:\"medium\";s:8:\"not null\";b:1;s:9:\"serialize\";b:1;}s:11:\"description\";a:3:{s:4:\"type\";s:4:\"text\";s:4:\"size\";s:6:\"medium\";s:8:\"not null\";b:1;}s:13:\"widget_module\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:127;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:13:\"widget_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:11:\"primary key\";a:2:{i:0;s:10:\"field_name\";i:1;s:9:\"type_name\";}s:6:\"module\";s:7:\"content\";s:4:\"name\";s:27:\"content_node_field_instance\";}s:13:\"cache_content\";a:6:{s:11:\"description\";s:140:\"Generic cache table for caching things not separated out into their own tables. Contributed modules may also use this to store cached items.\";s:6:\"fields\";a:6:{s:3:\"cid\";a:5:{s:11:\"description\";s:29:\"Primary Key: Unique cache ID.\";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:11:\"description\";s:30:\"A collection of data to cache.\";s:4:\"type\";s:4:\"blob\";s:8:\"not null\";b:0;s:4:\"size\";s:3:\"big\";}s:6:\"expire\";a:4:{s:11:\"description\";s:79:\"A Unix timestamp indicating when the cache entry should expire, or 0 for never.\";s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:7:\"created\";a:4:{s:11:\"description\";s:61:\"A Unix timestamp indicating when the cache entry was created.\";s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:7:\"headers\";a:3:{s:11:\"description\";s:51:\"Any custom HTTP headers to be added to cached data.\";s:4:\"type\";s:4:\"text\";s:8:\"not null\";b:0;}s:10:\"serialized\";a:5:{s:11:\"description\";s:64:\"A flag to indicate whether content is serialized (1) or not (0).\";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:7:\"content\";s:4:\"name\";s:13:\"cache_content\";}s:19:\"ctools_object_cache\";a:6:{s:11:\"description\";s:124:\"A special cache used to store objects that are being edited; it serves to save state in an ordinarily stateless environment.\";s:6:\"fields\";a:5:{s:3:\"sid\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";s:2:\"64\";s:8:\"not null\";b:1;s:11:\"description\";s:44:\"The session ID this cache object belongs to.\";}s:4:\"name\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;s:11:\"description\";s:49:\"The name of the object this cache is attached to.\";}s:3:\"obj\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";s:2:\"32\";s:8:\"not null\";b:1;s:11:\"description\";s:135:\"The type of the object this cache is attached to; this essentially represents the owner so that several sub-systems can use this cache.\";}s:7:\"updated\";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:11:\"description\";s:43:\"The time this cache was created or updated.\";}s:4:\"data\";a:4:{s:4:\"type\";s:4:\"text\";s:4:\"size\";s:3:\"big\";s:11:\"description\";s:29:\"Serialized data being stored.\";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:5:{s:11:\"description\";s:60:\"A special cache used to store CSS that must be non-volatile.\";s:6:\"fields\";a:4:{s:3:\"cid\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";s:3:\"128\";s:11:\"description\";s:40:\"The CSS ID this cache object belongs to.\";s:8:\"not null\";b:1;}s:8:\"filename\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";s:3:\"255\";s:11:\"description\";s:35:\"The filename this CSS is stored in.\";}s:3:\"css\";a:4:{s:4:\"type\";s:4:\"text\";s:4:\"size\";s:3:\"big\";s:11:\"description\";s:17:\"CSS being stored.\";s:9:\"serialize\";b:1;}s:6:\"filter\";a:3:{s:4:\"type\";s:3:\"int\";s:4:\"size\";s:4:\"tiny\";s:11:\"description\";s:45:\"Whether or not this CSS needs to be filtered.\";}}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:12:\"image_attach\";a:6:{s:11:\"description\";s:35:\"Stores the image/node relationship.\";s:6:\"fields\";a:3:{s:3:\"nid\";a:5:{s:11:\"description\";s:27:\"The {node}.nid of the node.\";s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:3:\"iid\";a:5:{s:11:\"description\";s:34:\"The {image}.nid of the image file.\";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:11:\"description\";s:37:\"The display order of attached images.\";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:\"nid\";i:1;s:3:\"iid\";}s:7:\"indexes\";a:1:{s:3:\"iid\";a:1:{i:0;s:3:\"iid\";}}s:6:\"module\";s:12:\"image_attach\";s:4:\"name\";s:12:\"image_attach\";}s:5:\"image\";a:6:{s:11:\"description\";s:31:\"Stores image files information.\";s:6:\"fields\";a:3:{s:3:\"nid\";a:5:{s:11:\"description\";s:46:\"Primary Key: The {node}.nid of the image node.\";s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:3:\"fid\";a:5:{s:11:\"description\";s:41:\"Index: The {files}.fid of the image file.\";s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:10:\"image_size\";a:5:{s:11:\"description\";s:99:\"Primary Key: The {files}.filename of the image file. For image module this indicates the file size.\";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:2:{i:0;s:3:\"nid\";i:1;s:10:\"image_size\";}s:7:\"indexes\";a:1:{s:3:\"fid\";a:1:{i:0;s:3:\"fid\";}}s:6:\"module\";s:5:\"image\";s:4:\"name\";s:5:\"image\";}s:14:\"panels_display\";a:5:{s:6:\"export\";a:4:{s:6:\"object\";s:14:\"panels_display\";s:11:\"bulk export\";b:0;s:11:\"can disable\";b:0;s:10:\"identifier\";s:7:\"display\";}s:6:\"fields\";a:8:{s:3:\"did\";a:3:{s:4:\"type\";s:6:\"serial\";s:8:\"not null\";b:1;s:9:\"no export\";b:1;}s:6:\"layout\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";s:2:\"32\";s:7:\"default\";s:0:\"\";}s:15:\"layout_settings\";a:5:{s:4:\"type\";s:4:\"text\";s:4:\"size\";s:3:\"big\";s:9:\"serialize\";b:1;s:14:\"object default\";a:0:{}s:8:\"initial \";a:0:{}}s:14:\"panel_settings\";a:5:{s:4:\"type\";s:4:\"text\";s:4:\"size\";s:3:\"big\";s:9:\"serialize\";b:1;s:14:\"object default\";a:0:{}s:8:\"initial \";a:0:{}}s:5:\"cache\";a:4:{s:4:\"type\";s:4:\"text\";s:9:\"serialize\";b:1;s:14:\"object default\";a:0:{}s:8:\"initial \";a:0:{}}s:5:\"title\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";s:3:\"255\";s:7:\"default\";s:0:\"\";}s:10:\"hide_title\";a:3:{s:4:\"type\";s:3:\"int\";s:4:\"size\";s:4:\"tiny\";s:7:\"default\";i:0;}s:10:\"title_pane\";a:2:{s:4:\"type\";s:3:\"int\";s:7:\"default\";i:0;}}s:11:\"primary key\";a:1:{i:0;s:3:\"did\";}s:6:\"module\";s:6:\"panels\";s:4:\"name\";s:14:\"panels_display\";}s:11:\"panels_pane\";a:6:{s:6:\"export\";a:3:{s:11:\"can disable\";b:0;s:10:\"identifier\";s:4:\"pane\";s:11:\"bulk export\";b:0;}s:6:\"fields\";a:13:{s:3:\"pid\";a:2:{s:4:\"type\";s:6:\"serial\";s:8:\"not null\";b:1;}s:3:\"did\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;s:9:\"no export\";b:1;}s:5:\"panel\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";s:2:\"32\";s:7:\"default\";s:0:\"\";}s:4:\"type\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";s:2:\"32\";s:7:\"default\";s:0:\"\";}s:7:\"subtype\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";s:2:\"64\";s:7:\"default\";s:0:\"\";}s:5:\"shown\";a:3:{s:4:\"type\";s:3:\"int\";s:4:\"size\";s:4:\"tiny\";s:7:\"default\";i:1;}s:6:\"access\";a:5:{s:4:\"type\";s:4:\"text\";s:4:\"size\";s:3:\"big\";s:9:\"serialize\";b:1;s:14:\"object default\";a:0:{}s:8:\"initial \";a:0:{}}s:13:\"configuration\";a:5:{s:4:\"type\";s:4:\"text\";s:4:\"size\";s:3:\"big\";s:9:\"serialize\";b:1;s:14:\"object default\";a:0:{}s:8:\"initial \";a:0:{}}s:5:\"cache\";a:5:{s:4:\"type\";s:4:\"text\";s:4:\"size\";s:3:\"big\";s:9:\"serialize\";b:1;s:14:\"object default\";a:0:{}s:8:\"initial \";a:0:{}}s:5:\"style\";a:5:{s:4:\"type\";s:4:\"text\";s:4:\"size\";s:3:\"big\";s:9:\"serialize\";b:1;s:14:\"object default\";a:0:{}s:8:\"initial \";a:0:{}}s:3:\"css\";a:5:{s:4:\"type\";s:4:\"text\";s:4:\"size\";s:3:\"big\";s:9:\"serialize\";b:1;s:14:\"object default\";a:0:{}s:8:\"initial \";a:0:{}}s:6:\"extras\";a:5:{s:4:\"type\";s:4:\"text\";s:4:\"size\";s:3:\"big\";s:9:\"serialize\";b:1;s:14:\"object default\";a:0:{}s:8:\"initial \";a:0:{}}s:8:\"position\";a:3:{s:4:\"type\";s:3:\"int\";s:4:\"size\";s:5:\"small\";s:7:\"default\";i:0;}}s:11:\"primary key\";a:1:{i:0;s:3:\"pid\";}s:7:\"indexes\";a:1:{s:7:\"did_idx\";a:1:{i:0;s:3:\"did\";}}s:6:\"module\";s:6:\"panels\";s:4:\"name\";s:11:\"panels_pane\";}s:11:\"panels_mini\";a:6:{s:6:\"export\";a:3:{s:10:\"identifier\";s:4:\"mini\";s:15:\"export callback\";s:18:\"panels_mini_export\";s:3:\"api\";a:4:{s:5:\"owner\";s:11:\"panels_mini\";s:3:\"api\";s:14:\"panels_default\";s:15:\"minimum_version\";i:1;s:15:\"current_version\";i:1;}}s:6:\"fields\";a:8:{s:3:\"pid\";a:3:{s:4:\"type\";s:6:\"serial\";s:8:\"not null\";b:1;s:9:\"no export\";b:1;}s:4:\"name\";a:2:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";s:3:\"255\";}s:8:\"category\";a:2:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";s:2:\"64\";}s:3:\"did\";a:2:{s:4:\"type\";s:3:\"int\";s:9:\"no export\";b:1;}s:5:\"title\";a:2:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";s:3:\"128\";}s:16:\"requiredcontexts\";a:4:{s:4:\"type\";s:4:\"text\";s:4:\"size\";s:3:\"big\";s:9:\"serialize\";b:1;s:14:\"object default\";a:0:{}}s:8:\"contexts\";a:4:{s:4:\"type\";s:4:\"text\";s:4:\"size\";s:3:\"big\";s:9:\"serialize\";b:1;s:14:\"object default\";a:0:{}}s:13:\"relationships\";a:4:{s:4:\"type\";s:4:\"text\";s:4:\"size\";s:3:\"big\";s:9:\"serialize\";b:1;s:14:\"object default\";a:0:{}}}s:11:\"primary key\";a:1:{i:0;s:3:\"pid\";}s:11:\"unique keys\";a:1:{s:4:\"name\";a:1:{i:0;s:4:\"name\";}}s:6:\"module\";s:11:\"panels_mini\";s:4:\"name\";s:11:\"panels_mini\";}s:24:\"simplenews_subscriptions\";a:6:{s:11:\"description\";s:40:\"Subscribers to {simplenews_newsletters}.\";s:6:\"fields\";a:7:{s:4:\"snid\";a:3:{s:11:\"description\";s:36:\"Primary key: Unique subscription ID.\";s:4:\"type\";s:6:\"serial\";s:8:\"not null\";b:1;}s:9:\"activated\";a:5:{s:11:\"description\";s:50:\"Boolean indicating the status of the subscription.\";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:\"mail\";a:5:{s:11:\"description\";s:31:\"The subscription email address.\";s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:64;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:5:\"fname\";a:5:{s:11:\"description\";s:11:\"First name.\";s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:64;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:5:\"lname\";a:5:{s:11:\"description\";s:10:\"Last name.\";s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:64;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:3:\"uid\";a:4:{s:11:\"description\";s:48:\"The {users}.uid that has the same email address.\";s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:8:\"language\";a:5:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:12;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";s:11:\"description\";s:71:\"Anonymous subscriber preferred language. Empty for authenticated users.\";}}s:7:\"indexes\";a:2:{s:4:\"mail\";a:1:{i:0;s:4:\"mail\";}s:3:\"uid\";a:1:{i:0;s:3:\"uid\";}}s:11:\"primary key\";a:1:{i:0;s:4:\"snid\";}s:6:\"module\";s:10:\"simplenews\";s:4:\"name\";s:24:\"simplenews_subscriptions\";}s:22:\"simplenews_newsletters\";a:5:{s:11:\"description\";s:27:\"Simplenews newsletter data.\";s:6:\"fields\";a:7:{s:3:\"nid\";a:4:{s:11:\"description\";s:34:\"{node} that is used as newsletter.\";s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:3:\"vid\";a:4:{s:11:\"description\";s:62:\"The {node}.vid that identifies the version used as newsletter.\";s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:3:\"tid\";a:4:{s:11:\"description\";s:64:\"The {term_data}.tid (= newsletter series) this issue belongs to.\";s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:8:\"s_status\";a:5:{s:11:\"description\";s:75:\"Send status of the newsletter issue (0 = not send; 1 = pending; 2 = send). \";s:4:\"type\";s:3:\"int\";s:4:\"size\";s:4:\"tiny\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:8:\"s_format\";a:5:{s:11:\"description\";s:41:\"Format of the newsletter (plain or html).\";s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:8;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:8:\"priority\";a:5:{s:11:\"description\";s:117:\"Email priority according to RFC 2156 and RFC 5231 (0 = none; 1 = highest; 2 = high; 3 = normal; 4 = low; 5 = lowest).\";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:\"receipt\";a:5:{s:11:\"description\";s:80:\"Boolean indicating request for email receipt confirmation according to RFC 2822.\";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:3:\"nid\";}s:6:\"module\";s:10:\"simplenews\";s:4:\"name\";s:22:\"simplenews_newsletters\";}s:19:\"simplenews_snid_tid\";a:5:{s:11:\"description\";s:36:\"Newsletter series subscription data.\";s:6:\"fields\";a:2:{s:4:\"snid\";a:4:{s:11:\"description\";s:54:\"The {simplenews_subscriptions}.snid who is subscribed.\";s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:3:\"tid\";a:4:{s:11:\"description\";s:72:\"The newsletter series ({term_data}.tid) the subscriber is subscribed to.\";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:\"snid\";i:1;s:3:\"tid\";}s:6:\"module\";s:10:\"simplenews\";s:4:\"name\";s:19:\"simplenews_snid_tid\";}s:21:\"simplenews_mail_spool\";a:6:{s:11:\"description\";s:49:\"Spool for temporary storage of newsletter emails.\";s:6:\"fields\";a:7:{s:4:\"msid\";a:4:{s:11:\"description\";s:47:\"The primary identifier for a mail spool record.\";s:4:\"type\";s:6:\"serial\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:4:\"mail\";a:5:{s:11:\"description\";s:55:\"The formatted email address of mail message receipient.\";s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:3:\"nid\";a:4:{s:11:\"description\";s:34:\"The {node}.nid of this newsletter.\";s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:3:\"vid\";a:4:{s:11:\"description\";s:34:\"The {node}.vid of this newsletter.\";s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:3:\"tid\";a:4:{s:11:\"description\";s:53:\"The {term_data}.tid this newsletter issue belongs to.\";s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:6:\"status\";a:6:{s:11:\"description\";s:63:\"The send status of the email (0 = hold, 1 = pending, 2 = send).\";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:9:\"timestamp\";a:5:{s:11:\"description\";s:35:\"The time status was set or changed.\";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:4:\"msid\";}s:7:\"indexes\";a:2:{s:3:\"tid\";a:1:{i:0;s:3:\"tid\";}s:6:\"status\";a:1:{i:0;s:6:\"status\";}}s:6:\"module\";s:10:\"simplenews\";s:4:\"name\";s:21:\"simplenews_mail_spool\";}s:13:\"content_group\";a:4:{s:6:\"fields\";a:6:{s:10:\"group_type\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:32;s:8:\"not null\";b:1;s:7:\"default\";s:8:\"standard\";}s:9:\"type_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:10:\"group_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:\"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:8:\"settings\";a:3:{s:4:\"type\";s:4:\"text\";s:4:\"size\";s:6:\"medium\";s:8:\"not null\";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:\"primary key\";a:2:{i:0;s:9:\"type_name\";i:1;s:10:\"group_name\";}s:6:\"module\";s:10:\"fieldgroup\";s:4:\"name\";s:13:\"content_group\";}s:20:\"content_group_fields\";a:4:{s:6:\"fields\";a:3:{s:9:\"type_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:10:\"group_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: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:\"primary key\";a:3:{i:0;s:9:\"type_name\";i:1;s:10:\"group_name\";i:2;s:10:\"field_name\";}s:6:\"module\";s:10:\"fieldgroup\";s:4:\"name\";s:20:\"content_group_fields\";}s:10:\"views_view\";a:6:{s:11:\"description\";s:35:\"Stores the general data for a view.\";s:6:\"fields\";a:7:{s:3:\"vid\";a:5:{s:4:\"type\";s:6:\"serial\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:11:\"description\";s:50:\"The view ID of the field, defined by the database.\";s:9:\"no export\";b:1;}s:4:\"name\";a:5:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";s:2:\"32\";s:7:\"default\";s:0:\"\";s:8:\"not null\";b:1;s:11:\"description\";s:210:\"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.\";}s:11:\"description\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";s:3:\"255\";s:7:\"default\";s:0:\"\";s:11:\"description\";s:50:\"A description of the view for the admin interface.\";}s:3:\"tag\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";s:3:\"255\";s:7:\"default\";s:0:\"\";s:11:\"description\";s:53:\"A tag used to group/sort views in the admin interface\";}s:8:\"view_php\";a:2:{s:4:\"type\";s:4:\"blob\";s:11:\"description\";s:92:\"A chunk of PHP code that can be used to provide modifications to the view prior to building.\";}s:10:\"base_table\";a:5:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";s:2:\"64\";s:7:\"default\";s:0:\"\";s:8:\"not null\";b:1;s:11:\"description\";s:71:\"What table this view is based on, such as node, user, comment, or term.\";}s:12:\"is_cacheable\";a:4:{s:4:\"type\";s:3:\"int\";s:7:\"default\";i:0;s:4:\"size\";s:4:\"tiny\";s:11:\"description\";s:73:\"A boolean to indicate whether or not this view may have its query cached.\";}}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:11:\"description\";s:57:\"Stores information about each display attached to a view.\";s:6:\"fields\";a:6:{s:3:\"vid\";a:6:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;s:11:\"description\";s:37:\"The view this display is attached to.\";s:9:\"no export\";b:1;}s:2:\"id\";a:5:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";s:2:\"64\";s:7:\"default\";s:0:\"\";s:8:\"not null\";b:1;s:11:\"description\";s:134:\"An identifier for this display; usually generated from the display_plugin, so should be something like page or page_1 or block_2, etc.\";}s:13:\"display_title\";a:5:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";s:2:\"64\";s:7:\"default\";s:0:\"\";s:8:\"not null\";b:1;s:11:\"description\";s:56:\"The title of the display, viewable by the administrator.\";}s:14:\"display_plugin\";a:5:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";s:2:\"64\";s:7:\"default\";s:0:\"\";s:8:\"not null\";b:1;s:11:\"description\";s:95:\"The type of the display. Usually page, block or embed, but is pluggable so may be other things.\";}s:8:\"position\";a:3:{s:4:\"type\";s:3:\"int\";s:7:\"default\";i:0;s:11:\"description\";s:42:\"The order in which this display is loaded.\";}s:15:\"display_options\";a:4:{s:4:\"type\";s:4:\"blob\";s:11:\"description\";s:130:\"A serialized array of options for this display; it contains options that are generally only pertinent to that display plugin type.\";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:6:\"module\";s:5:\"views\";s:4:\"name\";s:13:\"views_display\";}s:11:\"cache_views\";a:6:{s:11:\"description\";s:140:\"Generic cache table for caching things not separated out into their own tables. Contributed modules may also use this to store cached items.\";s:6:\"fields\";a:6:{s:3:\"cid\";a:5:{s:11:\"description\";s:29:\"Primary Key: Unique cache ID.\";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:11:\"description\";s:30:\"A collection of data to cache.\";s:4:\"type\";s:4:\"blob\";s:8:\"not null\";b:0;s:4:\"size\";s:3:\"big\";}s:6:\"expire\";a:4:{s:11:\"description\";s:79:\"A Unix timestamp indicating when the cache entry should expire, or 0 for never.\";s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:7:\"created\";a:4:{s:11:\"description\";s:61:\"A Unix timestamp indicating when the cache entry was created.\";s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:7:\"headers\";a:3:{s:11:\"description\";s:51:\"Any custom HTTP headers to be added to cached data.\";s:4:\"type\";s:4:\"text\";s:8:\"not null\";b:0;}s:10:\"serialized\";a:5:{s:11:\"description\";s:64:\"A flag to indicate whether content is serialized (1) or not (0).\";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:6:{s:11:\"description\";s:81:\"Cache table for views to store pre-rendered queries, results, and display output.\";s:6:\"fields\";a:6:{s:3:\"cid\";a:5:{s:11:\"description\";s:29:\"Primary Key: Unique cache ID.\";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:11:\"description\";s:30:\"A collection of data to cache.\";s:4:\"type\";s:4:\"blob\";s:8:\"not null\";b:0;s:4:\"size\";s:3:\"big\";}s:6:\"expire\";a:4:{s:11:\"description\";s:79:\"A Unix timestamp indicating when the cache entry should expire, or 0 for never.\";s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:7:\"created\";a:4:{s:11:\"description\";s:61:\"A Unix timestamp indicating when the cache entry was created.\";s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:7:\"headers\";a:3:{s:11:\"description\";s:51:\"Any custom HTTP headers to be added to cached data.\";s:4:\"type\";s:4:\"text\";s:8:\"not null\";b:0;}s:10:\"serialized\";a:5:{s:11:\"description\";s:64:\"A flag to indicate whether content is serialized (1) or not (0).\";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:\"views_object_cache\";a:5:{s:11:\"description\";s:124:\"A special cache used to store objects that are being edited; it serves to save state in an ordinarily stateless environment.\";s:6:\"fields\";a:5:{s:3:\"sid\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";s:2:\"64\";s:11:\"description\";s:44:\"The session ID this cache object belongs to.\";}s:4:\"name\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";s:2:\"32\";s:11:\"description\";s:47:\"The name of the view this cache is attached to.\";}s:3:\"obj\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";s:2:\"32\";s:11:\"description\";s:135:\"The name of the object this cache is attached to; this essentially represents the owner so that several sub-systems can use this cache.\";}s:7:\"updated\";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:11:\"description\";s:43:\"The time this cache was created or updated.\";}s:4:\"data\";a:4:{s:4:\"type\";s:4:\"text\";s:4:\"size\";s:3:\"big\";s:11:\"description\";s:29:\"Serialized data being stored.\";s:9:\"serialize\";b:1;}}s:7:\"indexes\";a:2:{s:12:\"sid_obj_name\";a:3:{i:0;s:3:\"sid\";i:1;s:3:\"obj\";i:2;s:4:\"name\";}s:7:\"updated\";a:1:{i:0;s:7:\"updated\";}}s:6:\"module\";s:5:\"views\";s:4:\"name\";s:18:\"views_object_cache\";}s:11:\"panels_node\";a:4:{s:6:\"fields\";a:3:{s:3:\"nid\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:6:\"css_id\";a:2:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";s:3:\"255\";}s:3:\"did\";a:2:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;}}s:11:\"primary key\";a:1:{i:0;s:3:\"did\";}s:6:\"module\";s:11:\"panels_node\";s:4:\"name\";s:11:\"panels_node\";}s:21:\"page_manager_handlers\";a:7:{s:6:\"export\";a:4:{s:10:\"identifier\";s:7:\"handler\";s:11:\"bulk export\";b:1;s:15:\"export callback\";s:32:\"page_manager_export_task_handler\";s:3:\"api\";a:4:{s:5:\"owner\";s:12:\"page_manager\";s:3:\"api\";s:13:\"pages_default\";s:15:\"minimum_version\";i:1;s:15:\"current_version\";i:1;}}s:6:\"fields\";a:7:{s:3:\"did\";a:4:{s:4:\"type\";s:6:\"serial\";s:8:\"not null\";b:1;s:11:\"description\";s:78:\"Primary ID field for the table. Not used for anything except internal lookups.\";s:9:\"no export\";b:1;}s:4:\"name\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";s:3:\"255\";s:11:\"description\";s:70:\"Unique ID for this task handler. Used to identify it programmatically.\";}s:4:\"task\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";s:2:\"64\";s:11:\"description\";s:35:\"ID of the task this handler is for.\";}s:7:\"subtask\";a:5:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";s:2:\"64\";s:11:\"description\";s:38:\"ID of the subtask this handler is for.\";s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:7:\"handler\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";s:2:\"64\";s:11:\"description\";s:34:\"ID of the task handler being used.\";}s:6:\"weight\";a:2:{s:4:\"type\";s:3:\"int\";s:11:\"description\";s:64:\"The order in which this handler appears. Lower numbers go first.\";}s:4:\"conf\";a:6:{s:4:\"type\";s:4:\"text\";s:4:\"size\";s:3:\"big\";s:11:\"description\";s:51:\"Serialized configuration of the handler, if needed.\";s:8:\"not null\";b:1;s:9:\"serialize\";b:1;s:14:\"object default\";a:0:{}}}s:11:\"primary key\";a:1:{i:0;s:3:\"did\";}s:11:\"unique keys\";a:1:{s:4:\"name\";a:1:{i:0;s:4:\"name\";}}s:7:\"indexes\";a:1:{s:8:\"fulltask\";a:3:{i:0;s:4:\"task\";i:1;s:7:\"subtask\";i:2;s:6:\"weight\";}}s:6:\"module\";s:12:\"page_manager\";s:4:\"name\";s:21:\"page_manager_handlers\";}s:20:\"page_manager_weights\";a:6:{s:11:\"description\";s:69:\"Contains override weights for page_manager handlers that are in code.\";s:6:\"fields\";a:2:{s:4:\"name\";a:5:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";s:3:\"255\";s:11:\"description\";s:70:\"Unique ID for this task handler. Used to identify it programmatically.\";s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:6:\"weight\";a:2:{s:4:\"type\";s:3:\"int\";s:11:\"description\";s:64:\"The order in which this handler appears. Lower numbers go first.\";}}s:11:\"primary key\";a:1:{i:0;s:4:\"name\";}s:7:\"indexes\";a:1:{s:7:\"weights\";a:2:{i:0;s:4:\"name\";i:1;s:6:\"weight\";}}s:6:\"module\";s:12:\"page_manager\";s:4:\"name\";s:20:\"page_manager_weights\";}s:18:\"page_manager_pages\";a:8:{s:11:\"description\";s:67:\"Contains page subtasks for implementing pages with arbitrary tasks.\";s:6:\"export\";a:4:{s:10:\"identifier\";s:4:\"page\";s:11:\"bulk export\";b:1;s:15:\"export callback\";s:24:\"page_manager_page_export\";s:3:\"api\";a:4:{s:5:\"owner\";s:12:\"page_manager\";s:3:\"api\";s:13:\"pages_default\";s:15:\"minimum_version\";i:1;s:15:\"current_version\";i:1;}}s:6:\"fields\";a:10:{s:3:\"pid\";a:4:{s:4:\"type\";s:6:\"serial\";s:8:\"not null\";b:1;s:11:\"description\";s:78:\"Primary ID field for the table. Not used for anything except internal lookups.\";s:9:\"no export\";b:1;}s:4:\"name\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";s:3:\"255\";s:11:\"description\";s:65:\"Unique ID for this subtask. Used to identify it programmatically.\";}s:4:\"task\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";s:2:\"64\";s:11:\"description\";s:109:\"What type of page this is, so that we can use the same mechanism for creating tighter UIs for targeted pages.\";s:7:\"default\";s:4:\"page\";}s:11:\"admin_title\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";s:3:\"255\";s:11:\"description\";s:43:\"Human readable title for this page subtask.\";}s:17:\"admin_description\";a:4:{s:4:\"type\";s:4:\"text\";s:4:\"size\";s:3:\"big\";s:11:\"description\";s:40:\"Administrative description of this item.\";s:14:\"object default\";s:0:\"\";}s:4:\"path\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";s:3:\"255\";s:11:\"description\";s:41:\"The menu path that will invoke this task.\";}s:6:\"access\";a:6:{s:4:\"type\";s:4:\"text\";s:4:\"size\";s:3:\"big\";s:11:\"description\";s:35:\"Access configuration for this path.\";s:8:\"not null\";b:1;s:9:\"serialize\";b:1;s:14:\"object default\";a:0:{}}s:4:\"menu\";a:6:{s:4:\"type\";s:4:\"text\";s:4:\"size\";s:3:\"big\";s:11:\"description\";s:74:\"Serialized configuration of Drupal menu visibility settings for this item.\";s:8:\"not null\";b:1;s:9:\"serialize\";b:1;s:14:\"object default\";a:0:{}}s:9:\"arguments\";a:6:{s:4:\"type\";s:4:\"text\";s:4:\"size\";s:3:\"big\";s:11:\"description\";s:46:\"Configuration of arguments for this menu item.\";s:8:\"not null\";b:1;s:9:\"serialize\";b:1;s:14:\"object default\";a:0:{}}s:4:\"conf\";a:6:{s:4:\"type\";s:4:\"text\";s:4:\"size\";s:3:\"big\";s:11:\"description\";s:48:\"Serialized configuration of the page, if needed.\";s:8:\"not null\";b:1;s:9:\"serialize\";b:1;s:14:\"object default\";a:0:{}}}s:11:\"primary key\";a:1:{i:0;s:3:\"pid\";}s:11:\"unique keys\";a:1:{s:4:\"name\";a:1:{i:0;s:4:\"name\";}}s:7:\"indexes\";a:1:{s:4:\"task\";a:1:{i:0;s:4:\"task\";}}s:6:\"module\";s:12:\"page_manager\";s:4:\"name\";s:18:\"page_manager_pages\";}}',0,1286318788,'',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 '',
  `data` longblob,
  `expire` int(11) NOT NULL default '0',
  `created` int(11) NOT NULL default '0',
  `headers` text,
  `serialized` smallint(6) NOT NULL default '0',
  PRIMARY KEY  (`cid`),
  KEY `expire` (`expire`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!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_content`
--

DROP TABLE IF EXISTS `cache_content`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `cache_content` (
  `cid` varchar(255) NOT NULL default '',
  `data` longblob,
  `expire` int(11) NOT NULL default '0',
  `created` int(11) NOT NULL default '0',
  `headers` text,
  `serialized` smallint(6) NOT NULL default '0',
  PRIMARY KEY  (`cid`),
  KEY `expire` (`expire`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cache_content`
--

LOCK TABLES `cache_content` WRITE;
/*!40000 ALTER TABLE `cache_content` DISABLE KEYS */;
INSERT INTO `cache_content` VALUES ('content_type_info:en','a:4:{s:11:\"field types\";a:6:{s:13:\"nodereference\";a:4:{s:5:\"label\";s:14:\"Node reference\";s:11:\"description\";s:51:\"Store the ID of a related node as an integer value.\";s:6:\"module\";s:13:\"nodereference\";s:10:\"formatters\";a:4:{s:7:\"default\";a:4:{s:5:\"label\";s:12:\"Title (link)\";s:11:\"field types\";a:1:{i:0;s:13:\"nodereference\";}s:15:\"multiple values\";i:1;s:6:\"module\";s:13:\"nodereference\";}s:5:\"plain\";a:4:{s:5:\"label\";s:15:\"Title (no link)\";s:11:\"field types\";a:1:{i:0;s:13:\"nodereference\";}s:15:\"multiple values\";i:1;s:6:\"module\";s:13:\"nodereference\";}s:4:\"full\";a:4:{s:5:\"label\";s:9:\"Full node\";s:11:\"field types\";a:1:{i:0;s:13:\"nodereference\";}s:15:\"multiple values\";i:1;s:6:\"module\";s:13:\"nodereference\";}s:6:\"teaser\";a:4:{s:5:\"label\";s:6:\"Teaser\";s:11:\"field types\";a:1:{i:0;s:13:\"nodereference\";}s:15:\"multiple values\";i:1;s:6:\"module\";s:13:\"nodereference\";}}}s:14:\"number_integer\";a:4:{s:5:\"label\";s:7:\"Integer\";s:11:\"description\";s:45:\"Store a number in the database as an integer.\";s:6:\"module\";s:6:\"number\";s:10:\"formatters\";a:5:{s:7:\"default\";a:4:{s:5:\"label\";s:4:\"9999\";s:15:\"multiple values\";i:1;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:6:\"module\";s:6:\"number\";}s:4:\"us_0\";a:4:{s:5:\"label\";s:5:\"9,999\";s:15:\"multiple values\";i:1;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:6:\"module\";s:6:\"number\";}s:4:\"be_0\";a:4:{s:5:\"label\";s:5:\"9.999\";s:15:\"multiple values\";i:1;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:6:\"module\";s:6:\"number\";}s:4:\"fr_0\";a:4:{s:5:\"label\";s:5:\"9 999\";s:15:\"multiple values\";i:1;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:6:\"module\";s:6:\"number\";}s:11:\"unformatted\";a:4:{s:5:\"label\";s:11:\"unformatted\";s:15:\"multiple values\";i:1;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:6:\"module\";s:6:\"number\";}}}s:14:\"number_decimal\";a:4:{s:5:\"label\";s:7:\"Decimal\";s:11:\"description\";s:57:\"Store a number in the database in a fixed decimal format.\";s:6:\"module\";s:6:\"number\";s:10:\"formatters\";a:11:{s:7:\"default\";a:4:{s:5:\"label\";s:4:\"9999\";s:15:\"multiple values\";i:1;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:6:\"module\";s:6:\"number\";}s:4:\"us_0\";a:4:{s:5:\"label\";s:5:\"9,999\";s:15:\"multiple values\";i:1;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:6:\"module\";s:6:\"number\";}s:4:\"us_1\";a:4:{s:5:\"label\";s:7:\"9,999.9\";s:15:\"multiple values\";i:1;s:11:\"field types\";a:2:{i:0;s:14:\"number_decimal\";i:1;s:12:\"number_float\";}s:6:\"module\";s:6:\"number\";}s:4:\"us_2\";a:4:{s:5:\"label\";s:8:\"9,999.99\";s:15:\"multiple values\";i:1;s:11:\"field types\";a:2:{i:0;s:14:\"number_decimal\";i:1;s:12:\"number_float\";}s:6:\"module\";s:6:\"number\";}s:4:\"be_0\";a:4:{s:5:\"label\";s:5:\"9.999\";s:15:\"multiple values\";i:1;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:6:\"module\";s:6:\"number\";}s:4:\"be_1\";a:4:{s:5:\"label\";s:7:\"9.999,9\";s:15:\"multiple values\";i:1;s:11:\"field types\";a:2:{i:0;s:14:\"number_decimal\";i:1;s:12:\"number_float\";}s:6:\"module\";s:6:\"number\";}s:4:\"be_2\";a:4:{s:5:\"label\";s:8:\"9.999,99\";s:15:\"multiple values\";i:1;s:11:\"field types\";a:2:{i:0;s:14:\"number_decimal\";i:1;s:12:\"number_float\";}s:6:\"module\";s:6:\"number\";}s:4:\"fr_0\";a:4:{s:5:\"label\";s:5:\"9 999\";s:15:\"multiple values\";i:1;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:6:\"module\";s:6:\"number\";}s:4:\"fr_1\";a:4:{s:5:\"label\";s:8:\"9 999, 9\";s:15:\"multiple values\";i:1;s:11:\"field types\";a:2:{i:0;s:14:\"number_decimal\";i:1;s:12:\"number_float\";}s:6:\"module\";s:6:\"number\";}s:4:\"fr_2\";a:4:{s:5:\"label\";s:9:\"9 999, 99\";s:15:\"multiple values\";i:1;s:11:\"field types\";a:2:{i:0;s:14:\"number_decimal\";i:1;s:12:\"number_float\";}s:6:\"module\";s:6:\"number\";}s:11:\"unformatted\";a:4:{s:5:\"label\";s:11:\"unformatted\";s:15:\"multiple values\";i:1;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:6:\"module\";s:6:\"number\";}}}s:12:\"number_float\";a:4:{s:5:\"label\";s:5:\"Float\";s:11:\"description\";s:58:\"Store a number in the database in a floating point format.\";s:6:\"module\";s:6:\"number\";s:10:\"formatters\";a:11:{s:7:\"default\";a:4:{s:5:\"label\";s:4:\"9999\";s:15:\"multiple values\";i:1;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:6:\"module\";s:6:\"number\";}s:4:\"us_0\";a:4:{s:5:\"label\";s:5:\"9,999\";s:15:\"multiple values\";i:1;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:6:\"module\";s:6:\"number\";}s:4:\"us_1\";a:4:{s:5:\"label\";s:7:\"9,999.9\";s:15:\"multiple values\";i:1;s:11:\"field types\";a:2:{i:0;s:14:\"number_decimal\";i:1;s:12:\"number_float\";}s:6:\"module\";s:6:\"number\";}s:4:\"us_2\";a:4:{s:5:\"label\";s:8:\"9,999.99\";s:15:\"multiple values\";i:1;s:11:\"field types\";a:2:{i:0;s:14:\"number_decimal\";i:1;s:12:\"number_float\";}s:6:\"module\";s:6:\"number\";}s:4:\"be_0\";a:4:{s:5:\"label\";s:5:\"9.999\";s:15:\"multiple values\";i:1;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:6:\"module\";s:6:\"number\";}s:4:\"be_1\";a:4:{s:5:\"label\";s:7:\"9.999,9\";s:15:\"multiple values\";i:1;s:11:\"field types\";a:2:{i:0;s:14:\"number_decimal\";i:1;s:12:\"number_float\";}s:6:\"module\";s:6:\"number\";}s:4:\"be_2\";a:4:{s:5:\"label\";s:8:\"9.999,99\";s:15:\"multiple values\";i:1;s:11:\"field types\";a:2:{i:0;s:14:\"number_decimal\";i:1;s:12:\"number_float\";}s:6:\"module\";s:6:\"number\";}s:4:\"fr_0\";a:4:{s:5:\"label\";s:5:\"9 999\";s:15:\"multiple values\";i:1;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:6:\"module\";s:6:\"number\";}s:4:\"fr_1\";a:4:{s:5:\"label\";s:8:\"9 999, 9\";s:15:\"multiple values\";i:1;s:11:\"field types\";a:2:{i:0;s:14:\"number_decimal\";i:1;s:12:\"number_float\";}s:6:\"module\";s:6:\"number\";}s:4:\"fr_2\";a:4:{s:5:\"label\";s:9:\"9 999, 99\";s:15:\"multiple values\";i:1;s:11:\"field types\";a:2:{i:0;s:14:\"number_decimal\";i:1;s:12:\"number_float\";}s:6:\"module\";s:6:\"number\";}s:11:\"unformatted\";a:4:{s:5:\"label\";s:11:\"unformatted\";s:15:\"multiple values\";i:1;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:6:\"module\";s:6:\"number\";}}}s:4:\"text\";a:4:{s:5:\"label\";s:4:\"Text\";s:11:\"description\";s:27:\"Store text in the database.\";s:6:\"module\";s:4:\"text\";s:10:\"formatters\";a:3:{s:7:\"default\";a:4:{s:5:\"label\";s:7:\"Default\";s:11:\"field types\";a:1:{i:0;s:4:\"text\";}s:15:\"multiple values\";i:1;s:6:\"module\";s:4:\"text\";}s:5:\"plain\";a:4:{s:5:\"label\";s:10:\"Plain text\";s:11:\"field types\";a:1:{i:0;s:4:\"text\";}s:15:\"multiple values\";i:1;s:6:\"module\";s:4:\"text\";}s:7:\"trimmed\";a:4:{s:5:\"label\";s:7:\"Trimmed\";s:11:\"field types\";a:1:{i:0;s:4:\"text\";}s:15:\"multiple values\";i:1;s:6:\"module\";s:4:\"text\";}}}s:13:\"userreference\";a:4:{s:5:\"label\";s:14:\"User reference\";s:11:\"description\";s:51:\"Store the ID of a related user as an integer value.\";s:6:\"module\";s:13:\"userreference\";s:10:\"formatters\";a:2:{s:7:\"default\";a:4:{s:5:\"label\";s:7:\"Default\";s:11:\"field types\";a:1:{i:0;s:13:\"userreference\";}s:15:\"multiple values\";i:1;s:6:\"module\";s:13:\"userreference\";}s:5:\"plain\";a:4:{s:5:\"label\";s:10:\"Plain text\";s:11:\"field types\";a:1:{i:0;s:13:\"userreference\";}s:15:\"multiple values\";i:1;s:6:\"module\";s:13:\"userreference\";}}}}s:12:\"widget types\";a:12:{s:20:\"nodereference_select\";a:5:{s:5:\"label\";s:11:\"Select list\";s:11:\"field types\";a:1:{i:0;s:13:\"nodereference\";}s:15:\"multiple values\";i:2;s:9:\"callbacks\";a:1:{s:13:\"default value\";i:2;}s:6:\"module\";s:13:\"nodereference\";}s:21:\"nodereference_buttons\";a:5:{s:5:\"label\";s:25:\"Check boxes/radio buttons\";s:11:\"field types\";a:1:{i:0;s:13:\"nodereference\";}s:15:\"multiple values\";i:2;s:9:\"callbacks\";a:1:{s:13:\"default value\";i:2;}s:6:\"module\";s:13:\"nodereference\";}s:26:\"nodereference_autocomplete\";a:5:{s:5:\"label\";s:23:\"Autocomplete text field\";s:11:\"field types\";a:1:{i:0;s:13:\"nodereference\";}s:15:\"multiple values\";i:1;s:9:\"callbacks\";a:1:{s:13:\"default value\";i:2;}s:6:\"module\";s:13:\"nodereference\";}s:6:\"number\";a:5:{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:15:\"multiple values\";i:1;s:9:\"callbacks\";a:1:{s:13:\"default value\";i:2;}s:6:\"module\";s:6:\"number\";}s:20:\"optionwidgets_select\";a:5:{s:5:\"label\";s:11:\"Select list\";s:11:\"field types\";a:4:{i:0;s:4:\"text\";i:1;s:14:\"number_integer\";i:2;s:14:\"number_decimal\";i:3;s:12:\"number_float\";}s:15:\"multiple values\";i:2;s:9:\"callbacks\";a:1:{s:13:\"default value\";i:2;}s:6:\"module\";s:13:\"optionwidgets\";}s:21:\"optionwidgets_buttons\";a:5:{s:5:\"label\";s:25:\"Check boxes/radio buttons\";s:11:\"field types\";a:4:{i:0;s:4:\"text\";i:1;s:14:\"number_integer\";i:2;s:14:\"number_decimal\";i:3;s:12:\"number_float\";}s:15:\"multiple values\";i:2;s:9:\"callbacks\";a:1:{s:13:\"default value\";i:2;}s:6:\"module\";s:13:\"optionwidgets\";}s:19:\"optionwidgets_onoff\";a:5:{s:5:\"label\";s:22:\"Single on/off checkbox\";s:11:\"field types\";a:4:{i:0;s:4:\"text\";i:1;s:14:\"number_integer\";i:2;s:14:\"number_decimal\";i:3;s:12:\"number_float\";}s:15:\"multiple values\";i:2;s:9:\"callbacks\";a:1:{s:13:\"default value\";i:2;}s:6:\"module\";s:13:\"optionwidgets\";}s:14:\"text_textfield\";a:5:{s:5:\"label\";s:10:\"Text field\";s:11:\"field types\";a:1:{i:0;s:4:\"text\";}s:15:\"multiple values\";i:1;s:9:\"callbacks\";a:1:{s:13:\"default value\";i:2;}s:6:\"module\";s:4:\"text\";}s:13:\"text_textarea\";a:5:{s:5:\"label\";s:25:\"Text area (multiple rows)\";s:11:\"field types\";a:1:{i:0;s:4:\"text\";}s:15:\"multiple values\";i:1;s:9:\"callbacks\";a:1:{s:13:\"default value\";i:2;}s:6:\"module\";s:4:\"text\";}s:20:\"userreference_select\";a:5:{s:5:\"label\";s:11:\"Select list\";s:11:\"field types\";a:1:{i:0;s:13:\"userreference\";}s:15:\"multiple values\";i:2;s:9:\"callbacks\";a:1:{s:13:\"default value\";i:2;}s:6:\"module\";s:13:\"userreference\";}s:21:\"userreference_buttons\";a:5:{s:5:\"label\";s:25:\"Check boxes/radio buttons\";s:11:\"field types\";a:1:{i:0;s:13:\"userreference\";}s:15:\"multiple values\";i:2;s:9:\"callbacks\";a:1:{s:13:\"default value\";i:2;}s:6:\"module\";s:13:\"userreference\";}s:26:\"userreference_autocomplete\";a:5:{s:5:\"label\";s:23:\"Autocomplete text field\";s:11:\"field types\";a:1:{i:0;s:13:\"userreference\";}s:15:\"multiple values\";i:1;s:9:\"callbacks\";a:1:{s:13:\"default value\";i:2;}s:6:\"module\";s:13:\"userreference\";}}s:6:\"fields\";a:0:{}s:13:\"content types\";a:7:{s:5:\"image\";a:19:{s:4:\"name\";s:5:\"Image\";s:6:\"module\";s:5:\"image\";s:11:\"description\";s:83:\"An image (with thumbnail). This is ideal for publishing photographs or screenshots.\";s:4:\"type\";s:5:\"image\";s:9:\"has_title\";b:1;s:11:\"title_label\";s:5:\"Title\";s:8:\"has_body\";b:1;s:10:\"body_label\";s:4:\"Body\";s:4:\"help\";s:0:\"\";s:14:\"min_word_count\";i:0;s:6:\"custom\";b:0;s:8:\"modified\";b:0;s:6:\"locked\";b:1;s:9:\"orig_type\";s:5:\"image\";s:6:\"is_new\";b:1;s:7:\"url_str\";s:5:\"image\";s:6:\"fields\";a:0:{}s:6:\"tables\";a:0:{}s:5:\"extra\";a:8:{s:5:\"title\";a:3:{s:5:\"label\";s:5:\"Title\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:-5;}s:10:\"body_field\";a:4:{s:5:\"label\";s:4:\"Body\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:0;s:4:\"view\";s:4:\"body\";}s:20:\"revision_information\";a:3:{s:5:\"label\";s:20:\"Revision information\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:20;}s:16:\"comment_settings\";a:3:{s:5:\"label\";s:16:\"Comment settings\";s:11:\"description\";s:20:\"Comment module form.\";s:6:\"weight\";i:30;}s:4:\"menu\";a:3:{s:5:\"label\";s:13:\"Menu settings\";s:11:\"description\";s:17:\"Menu module form.\";s:6:\"weight\";i:-2;}s:8:\"taxonomy\";a:3:{s:5:\"label\";s:8:\"Taxonomy\";s:11:\"description\";s:21:\"Taxonomy module form.\";s:6:\"weight\";i:-3;}s:4:\"path\";a:3:{s:5:\"label\";s:13:\"Path settings\";s:11:\"description\";s:17:\"Path module form.\";s:6:\"weight\";i:30;}s:5:\"image\";a:3:{s:5:\"label\";s:5:\"Image\";s:11:\"description\";s:14:\"Image display.\";s:6:\"weight\";i:0;}}}s:5:\"panel\";a:19:{s:4:\"name\";s:5:\"Panel\";s:6:\"module\";s:11:\"panels_node\";s:10:\"body_label\";s:6:\"Teaser\";s:11:\"description\";s:47:\"A panel layout broken up into rows and columns.\";s:4:\"type\";s:5:\"panel\";s:9:\"has_title\";b:1;s:11:\"title_label\";s:5:\"Title\";s:8:\"has_body\";b:1;s:4:\"help\";s:0:\"\";s:14:\"min_word_count\";i:0;s:6:\"custom\";b:0;s:8:\"modified\";b:0;s:6:\"locked\";b:1;s:9:\"orig_type\";s:5:\"panel\";s:6:\"is_new\";b:1;s:7:\"url_str\";s:5:\"panel\";s:6:\"fields\";a:0:{}s:6:\"tables\";a:0:{}s:5:\"extra\";a:6:{s:5:\"title\";a:3:{s:5:\"label\";s:5:\"Title\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:-5;}s:10:\"body_field\";a:4:{s:5:\"label\";s:6:\"Teaser\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:0;s:4:\"view\";s:4:\"body\";}s:20:\"revision_information\";a:3:{s:5:\"label\";s:20:\"Revision information\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:20;}s:16:\"comment_settings\";a:3:{s:5:\"label\";s:16:\"Comment settings\";s:11:\"description\";s:20:\"Comment module form.\";s:6:\"weight\";i:30;}s:4:\"menu\";a:3:{s:5:\"label\";s:13:\"Menu settings\";s:11:\"description\";s:17:\"Menu module form.\";s:6:\"weight\";i:-2;}s:4:\"path\";a:3:{s:5:\"label\";s:13:\"Path settings\";s:11:\"description\";s:17:\"Path module form.\";s:6:\"weight\";i:30;}}}s:6:\"banner\";a:18:{s:4:\"type\";s:6:\"banner\";s:4:\"name\";s:6:\"banner\";s:6:\"module\";s:4:\"node\";s:11:\"description\";s:22:\"node banner image only\";s:4:\"help\";s:0:\"\";s:9:\"has_title\";s:1:\"1\";s:11:\"title_label\";s:5:\"Title\";s:8:\"has_body\";s:1:\"1\";s:10:\"body_label\";s:4:\"Body\";s:14:\"min_word_count\";s:1:\"0\";s:6:\"custom\";s:1:\"1\";s:8:\"modified\";s:1:\"1\";s:6:\"locked\";s:1:\"0\";s:9:\"orig_type\";s:0:\"\";s:7:\"url_str\";s:6:\"banner\";s:6:\"fields\";a:0:{}s:6:\"tables\";a:0:{}s:5:\"extra\";a:7:{s:5:\"title\";a:3:{s:5:\"label\";s:5:\"Title\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";s:2:\"-5\";}s:10:\"body_field\";a:4:{s:5:\"label\";s:4:\"Body\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";s:2:\"-2\";s:4:\"view\";s:4:\"body\";}s:20:\"revision_information\";a:3:{s:5:\"label\";s:20:\"Revision information\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";s:2:\"-1\";}s:16:\"comment_settings\";a:3:{s:5:\"label\";s:16:\"Comment settings\";s:11:\"description\";s:20:\"Comment module form.\";s:6:\"weight\";s:1:\"0\";}s:4:\"menu\";a:3:{s:5:\"label\";s:13:\"Menu settings\";s:11:\"description\";s:17:\"Menu module form.\";s:6:\"weight\";s:2:\"-4\";}s:4:\"path\";a:3:{s:5:\"label\";s:13:\"Path settings\";s:11:\"description\";s:17:\"Path module form.\";s:6:\"weight\";i:30;}s:12:\"image_attach\";a:3:{s:5:\"label\";s:15:\"Attached images\";s:11:\"description\";s:25:\"Image Attach module form.\";s:6:\"weight\";s:2:\"-3\";}}}s:4:\"page\";a:18:{s:4:\"type\";s:4:\"page\";s:4:\"name\";s:4:\"Page\";s:6:\"module\";s:4:\"node\";s:11:\"description\";s:296:\"A <em>page</em>, similar in form to a <em>story</em>, is a simple method for creating and displaying information that rarely changes, such as an \"About us\" section of a website. By default, a <em>page</em> entry does not allow visitor comments and is not featured on the site\'s initial home page.\";s:4:\"help\";s:0:\"\";s:9:\"has_title\";s:1:\"1\";s:11:\"title_label\";s:5:\"Title\";s:8:\"has_body\";s:1:\"1\";s:10:\"body_label\";s:4:\"Body\";s:14:\"min_word_count\";s:1:\"0\";s:6:\"custom\";s:1:\"1\";s:8:\"modified\";s:1:\"1\";s:6:\"locked\";s:1:\"0\";s:9:\"orig_type\";s:4:\"page\";s:7:\"url_str\";s:4:\"page\";s:6:\"fields\";a:0:{}s:6:\"tables\";a:0:{}s:5:\"extra\";a:6:{s:5:\"title\";a:3:{s:5:\"label\";s:5:\"Title\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:-5;}s:10:\"body_field\";a:4:{s:5:\"label\";s:4:\"Body\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:0;s:4:\"view\";s:4:\"body\";}s:20:\"revision_information\";a:3:{s:5:\"label\";s:20:\"Revision information\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:20;}s:16:\"comment_settings\";a:3:{s:5:\"label\";s:16:\"Comment settings\";s:11:\"description\";s:20:\"Comment module form.\";s:6:\"weight\";i:30;}s:4:\"menu\";a:3:{s:5:\"label\";s:13:\"Menu settings\";s:11:\"description\";s:17:\"Menu module form.\";s:6:\"weight\";i:-2;}s:4:\"path\";a:3:{s:5:\"label\";s:13:\"Path settings\";s:11:\"description\";s:17:\"Path module form.\";s:6:\"weight\";i:30;}}}s:10:\"simplenews\";a:18:{s:4:\"type\";s:10:\"simplenews\";s:4:\"name\";s:16:\"Newsletter issue\";s:6:\"module\";s:4:\"node\";s:11:\"description\";s:60:\"A newsletter issue to be sent to subscribed email addresses.\";s:4:\"help\";s:0:\"\";s:9:\"has_title\";s:1:\"1\";s:11:\"title_label\";s:5:\"Title\";s:8:\"has_body\";s:1:\"1\";s:10:\"body_label\";s:4:\"Body\";s:14:\"min_word_count\";s:1:\"0\";s:6:\"custom\";s:1:\"1\";s:8:\"modified\";s:1:\"0\";s:6:\"locked\";s:1:\"0\";s:9:\"orig_type\";s:10:\"simplenews\";s:7:\"url_str\";s:10:\"simplenews\";s:6:\"fields\";a:0:{}s:6:\"tables\";a:0:{}s:5:\"extra\";a:7:{s:5:\"title\";a:3:{s:5:\"label\";s:5:\"Title\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:-5;}s:10:\"body_field\";a:4:{s:5:\"label\";s:4:\"Body\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:0;s:4:\"view\";s:4:\"body\";}s:20:\"revision_information\";a:3:{s:5:\"label\";s:20:\"Revision information\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:20;}s:16:\"comment_settings\";a:3:{s:5:\"label\";s:16:\"Comment settings\";s:11:\"description\";s:20:\"Comment module form.\";s:6:\"weight\";i:30;}s:4:\"menu\";a:3:{s:5:\"label\";s:13:\"Menu settings\";s:11:\"description\";s:17:\"Menu module form.\";s:6:\"weight\";i:-2;}s:8:\"taxonomy\";a:3:{s:5:\"label\";s:8:\"Taxonomy\";s:11:\"description\";s:21:\"Taxonomy module form.\";s:6:\"weight\";i:-3;}s:4:\"path\";a:3:{s:5:\"label\";s:13:\"Path settings\";s:11:\"description\";s:17:\"Path module form.\";s:6:\"weight\";i:30;}}}s:5:\"story\";a:18:{s:4:\"type\";s:5:\"story\";s:4:\"name\";s:5:\"Story\";s:6:\"module\";s:4:\"node\";s:11:\"description\";s:392:\"A <em>story</em>, similar in form to a <em>page</em>, is ideal for creating and displaying content that informs or engages website visitors. Press releases, site announcements, and informal blog-like entries may all be created with a <em>story</em> entry. By default, a <em>story</em> entry is automatically featured on the site\'s initial home page, and provides the ability to post comments.\";s:4:\"help\";s:0:\"\";s:9:\"has_title\";s:1:\"1\";s:11:\"title_label\";s:5:\"Title\";s:8:\"has_body\";s:1:\"1\";s:10:\"body_label\";s:4:\"Body\";s:14:\"min_word_count\";s:1:\"0\";s:6:\"custom\";s:1:\"1\";s:8:\"modified\";s:1:\"1\";s:6:\"locked\";s:1:\"0\";s:9:\"orig_type\";s:5:\"story\";s:7:\"url_str\";s:5:\"story\";s:6:\"fields\";a:0:{}s:6:\"tables\";a:0:{}s:5:\"extra\";a:6:{s:5:\"title\";a:3:{s:5:\"label\";s:5:\"Title\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:-5;}s:10:\"body_field\";a:4:{s:5:\"label\";s:4:\"Body\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:0;s:4:\"view\";s:4:\"body\";}s:20:\"revision_information\";a:3:{s:5:\"label\";s:20:\"Revision information\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:20;}s:16:\"comment_settings\";a:3:{s:5:\"label\";s:16:\"Comment settings\";s:11:\"description\";s:20:\"Comment module form.\";s:6:\"weight\";i:30;}s:4:\"menu\";a:3:{s:5:\"label\";s:13:\"Menu settings\";s:11:\"description\";s:17:\"Menu module form.\";s:6:\"weight\";i:-2;}s:4:\"path\";a:3:{s:5:\"label\";s:13:\"Path settings\";s:11:\"description\";s:17:\"Path module form.\";s:6:\"weight\";i:30;}}}s:7:\"webform\";a:18:{s:4:\"type\";s:7:\"webform\";s:4:\"name\";s:7:\"Webform\";s:6:\"module\";s:4:\"node\";s:11:\"description\";s:138:\"Create a new form or questionnaire accessible to users. Submission results and statistics are recorded and accessible to privileged users.\";s:4:\"help\";s:0:\"\";s:9:\"has_title\";s:1:\"1\";s:11:\"title_label\";s:5:\"Title\";s:8:\"has_body\";s:1:\"1\";s:10:\"body_label\";s:4:\"Body\";s:14:\"min_word_count\";s:1:\"0\";s:6:\"custom\";s:1:\"1\";s:8:\"modified\";s:1:\"1\";s:6:\"locked\";s:1:\"0\";s:9:\"orig_type\";s:7:\"webform\";s:7:\"url_str\";s:7:\"webform\";s:6:\"fields\";a:0:{}s:6:\"tables\";a:0:{}s:5:\"extra\";a:7:{s:7:\"webform\";a:3:{s:5:\"label\";s:7:\"Webform\";s:11:\"description\";s:20:\"Webform client form.\";s:6:\"weight\";i:10;}s:5:\"title\";a:3:{s:5:\"label\";s:5:\"Title\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:-5;}s:10:\"body_field\";a:4:{s:5:\"label\";s:4:\"Body\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:0;s:4:\"view\";s:4:\"body\";}s:20:\"revision_information\";a:3:{s:5:\"label\";s:20:\"Revision information\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:20;}s:16:\"comment_settings\";a:3:{s:5:\"label\";s:16:\"Comment settings\";s:11:\"description\";s:20:\"Comment module form.\";s:6:\"weight\";i:30;}s:4:\"menu\";a:3:{s:5:\"label\";s:13:\"Menu settings\";s:11:\"description\";s:17:\"Menu module form.\";s:6:\"weight\";i:-2;}s:4:\"path\";a:3:{s:5:\"label\";s:13:\"Path settings\";s:11:\"description\";s:17:\"Path module form.\";s:6:\"weight\";i:30;}}}}}',0,1286318124,'',1),('fieldgroup_data:en','a:2:{s:6:\"groups\";a:0:{}s:13:\"groups_sorted\";a:0:{}}',0,1286318788,'',1);
/*!40000 ALTER TABLE `cache_content` 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 '',
  `data` longblob,
  `expire` int(11) NOT NULL default '0',
  `created` int(11) NOT NULL default '0',
  `headers` text,
  `serialized` smallint(6) NOT NULL default '0',
  PRIMARY KEY  (`cid`),
  KEY `expire` (`expire`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!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 ('1:1d3730ff350513f3bf8e1439fcc788ae','<p>&nbsp;</p>\n',1286404517,1286318117,'',0),('2:8e1eed6fe7134a8f3b7a07b073a29f73','<div class=\"banner-about\">\n<div class=\"banner-content\">\n<div class=\"title-about\">Special Offer for PV System Owners</div>\n<div class=\"content\">Sign-up for USPV\'s REC Management Program today.  No up-front or out-of-pocket costs.  Don\'t miss out on this opportunity to participate in the Renewable Energy Credit markets and earn hundreds or even thousands of dollars! <a href=\"./renewable-energy-credit-rec-management-program-pv-system-owners\">Learn more</a></div>\n</div>\n</div>\n',1286404517,1286318117,'',0),('2:1a2eeb68fab509defb24c50af1016843','<div>Copyright 2010 U.S. Photovoltaics, Inc. All rights reserved.</div>\n',1286404517,1286318117,'',0),('2:dc4259e5e25b6fdde0fb7117e861ff2a','<div>4539 Metropolitan Court Frederick MD  21704 | Phone: 301-360-3531</div>\n<div>Email: Sales: <a href=\"mailto:sales@uspvinc.com\">sales@uspvinc.com</a> | Customer Service: <a href=\"mailto:support@uspvinc.com\">support@uspvinc.com</a> | Other Inquiries: <a href=\"mailto:info@uspvinc.com\">info@uspvinc.com</a></div>\n',1286404517,1286318117,'',0),('1:d41d8cd98f00b204e9800998ecf8427e','',1286405188,1286318788,'',0),('2:d81a419504e29b4792f01b9a89fbb8bd','<p align=\"justify\" style=\"line-height:20px;\">We provide agency services to certify residential and commercial systems as small as 1 kW as Renewable Energy Facilities.</p>\n<p align=\"justify\" style=\"line-height:20px;\">We create, manage, market, sell and fulfill Renewable Energy Credit Certificates on behalf of PV system owners.  We maintain records and fulfill reporting requirements as required under state laws and regulations.</p>\n<p align=\"justify\" style=\"line-height:20px;\">We provide financing assistance for PV systems, establish eligibility for federal and state incentives and monitor and report on new opportunities for system owners to maximize the financial return on their systems.</p>\n<p align=\"justify\" style=\"line-height:20px;\">We provide research data on the adoption and use of solar photovoltaics by small system owners.</p>\n<p align=\"justify\" style=\"line-height:20px;\">We advocate on behalf of small PV system owners for state, federal and local incentives to accelerate the adoption of distributed generation of solar electricity.</p>\n<p align=\"justify\" style=\"line-height:20px;\"><a href=\"/~uspvinc/main2/renewable-energy-credit-rec-management-program-pv-system-owners\">Learn more</a></p>\n',1286405188,1286318788,'',0),('2:cda5332f66d28167e6f729986974209a','<p align=\"justify\" style=\"line-height:20px;\">\nMaryland Renewable Portfolio Standard changes and new regulations make it possible for small PV system owners to particiapte in REC markets.\n</p>\n<p align=\"justify\" style=\"line-height:20px;\"><a href=\"understanding-renewable-energy-credits-and-certificates-maryland-pv-system-owners\">Learn more</a>\n</p>\n',1286405188,1286318788,'',0),('1:f1f9fe30d2c9d64a497656ad8a3fa8f2','<p><STRONG>Telephone</strong>: 240-344-2657</p>\n<p><STRONG>Email</strong>: </p>\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Sales: <A href=\"mailto:sales@uspvinc.com\">sales@uspvinc.com</a></p>\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Customer Service: <A href=\"mailto:support@uspvinc.com\">support@uspvinc.com</a></p>\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Other Inquiries:&nbsp; <A href=\"mailto:info@uspvinc.com\">info@uspvinc.com</a> </p>\n<p><STRONG>Postal Address</strong>: 4539 Metropolitan Court, Frederick MD&nbsp; 21704</p>\n',1286405188,1286318788,'',0),('1:20b30d3e6aebc173bcedb65c9e155222','<p>Congratulations on your decision to install a new photovoltaic system on your property.  You already know that your system will lower your electric bill, reduce your carbon footprint and demonstrate your commitment to the environment. </p>\n<p>What you may not know is that there is now a new way to use the electricity your system generates to create and sell Renewable Energy Certificates (REC) that can earn you hundreds, perhaps thousands, of dollars.  Previously, only relatively large PV generators could afford the time and expense required to profitably create and trade RECs--but now you can too.</p>\n<p>At USPV, our mission is to Make Solar Simple.  We have developed a streamlined process to allow owners of PV systems as small as 1 kWp to participate and receive the benefits of this program.</p>\n<p>There are no up-front expenses or out-of-pocket costs and virtually no time commitment on the part of the system owner.</p>\n<p>We do all the work and our fees are strictly commission-based from the earnings on REC sales from your account.   </p>\n<p><a href=\"/~uspvinc/main2/understanding-renewable-energy-credits-and-certificates-maryland-pv-system-owners\">Learn More about Renewable Energy Credits</a></p>\n<p>To sign-up or learn more about this program, call Fred Ugast at 240-344-2657 or send an email to <a href=\"mailto:fred.ugast@uspvinc.com\">fred.ugast@uspvinc.com</a></p>\n<p><a href=\"/~uspvinc/main2/sites/default/files/pdf/md-agency.pdf\">Download a copy of our Renewable Energy Credit Agency Agreement</a></p>\n',1286405314,1286318914,'',0),('2:e59e9c1a731603b3c7e7aeb1e2d05c5d','<p align=\"justify\" > We’ll prepare and file the documents required to certify your PV system as a Renewable Energy Facility (REF) by the Public Service Commission.</p>\n<p align=\"justify\" > We’ll act as your agent to establish an account at PJM-EIS GATS to enable your system to earn RECs. PJM-EIS is the state-designated entity that manages all Solar RECs in the program.</p>\n<p align=\"justify\" >We’ll track your system’s energy production as required and create RECs for your account as they are earned.</p>\n<p align=\"justify\" > We will negotiate with potential buyers of your RECs in accordance with state laws and GATS requirements to maximize the value of your certificates and complete the transactions.</p>\n<p align=\"justify\" > We will remit the net earnings from sales of your RECs directly to you. Our commissions are only earned and paid out of the transactions we complete.</p>\n<p align=\"justify\" > We’ll prepare and file all reports required by the state for the life of the RECs at no additional cost to you.</p>\n',1286405314,1286318914,'',0),('1:d1c1b4cf8c2f13e559b674791119be3d','<p>Congratulations on your decision to install a new photovoltaic system on your property.  You already know that your system will lower your electric bill, reduce your carbon footprint and demonstrate your commitment to the environment. </p>\n<p>What you may not know is that there is now a new way to use the electricity your system generates to create and sell Renewable Energy Certificates (REC) that can earn you hundreds, perhaps thousands, of dollars.  Previously, only relatively large PV generators could afford the time and expense required to profitably create and trade RECs--but now you can too.</p>\n<p>At USPV, our mission is to Make Solar Simple.  We have developed a streamlined process to allow owners of PV systems as small as 1 kWp to participate and receive the benefits of this program.</p>\n<p>There are no up-front expenses or out-of-pocket costs and virtually no time commitment on the part of the system owner.</p>\n<p>We do all the work and our fees are strictly commission-based from the earnings on REC sales from your account.   </p>\n<p><a href=\"/~uspvinc/main/understanding-renewable-energy-credits-and-certificates-maryland-pv-system-owners\">Learn More about Renewable Energy Credits</a></p>\n<p>To sign-up or learn more about this program, call Fred Ugast at 240-344-2657 or send an email to <a href=\"mailto:fred.ugast@uspvinc.com\">fred.ugast@uspvinc.com</a></p>\n<p><a href=\"/~uspvinc/main/sites/default/files/pdf/md-agency.pdf\">Download a copy of our Renewable Energy Credit Agency Agreement</a></p>\n',1286405357,1286318957,'',0),('1:a813a5a83ae8a39ce1776e25953edc12','<p>Sign Up for our Free Quarterly Newsletter <STRONG><EM>USPV Reports</em></strong> for the latest information on Solar PV Financing, Incentives and RECs.<br />\nCheck out the latest Issue <A href=\"./sites/default/files/pdf/uspvnewsq408.pdf\" target=\"_blank\">here</a>.</p>\n',1286405382,1286318982,'',0),('2:3774d3fee7ef6be59184c44584e4862d','<p><A href=\"http://www.ases.org/\" >American Solar Energy Society&nbsp;</a>&nbsp;&nbsp;&nbsp;&nbsp; Professional Member</p>\n<p><A href=\"http://www.ases.org/\" ><img src=\"./sites/default/files/images/ases-logo.jpg\" width=213 height=80 align=bottom border=0 /></a></p>\n<p><A href=\"http://www.mdv-seia.org\" >Maryland-DC-Virginia Solar Energy&nbsp;Industries Association</a>&nbsp;&nbsp; Professional Member&nbsp;&nbsp;</p>\n<p><A href=\"http://www.mdv-seia.org\" ><img src=\"./sites/default/files/images/MDVSEIA.jpg\" width=810 height=94 style=\"WIDTH:388px;HEIGHT:94px;\" align=middle border=0 /></a></p>\n',1286405382,1286318982,'',0),('2:67802b47c37721cd0802206f8148ea5f','<p>At USPV, our mission is to Make Solar Simple. Expanding solar electricity generation isn\'t just about the technology--it\'s about the financing, too.  Our goal is to provide current and potential solar PV system owners with the help they need to make their investment as financially profitable as it is globally responsible.  </p>\n<p>The adoption of solar technology by homes and businesses is being driven by a recognition that the age of fossil fuels is approaching its end. The transition to the age of renewables will be as difficult as it is profound--but it will happen.</p>\n<p>The electric utility and transportation sectors account for nearly eighty percent of the carbon dioxide emissions that is the primary driver of global warming. By powering our homes, businesses and many of our cars with clean, renewable solar electricity, we\'ll be making a huge improvement in our environment and the lives of generations yet to come.</p>\n<p>Thanks for visiting our website. If you have an interest in joining the solar revolution but need help in figuring out how to pay for it, check out some of our links to other resources. Feel free to give us a call or send an email if you would like more information on any of our programs.<br />\nConsider this your invitation to join with us in <a href=\"#\">Leading the way to a Brighter Future</a>.</p>\n',1286405598,1286319198,'',0),('1:0894af160fa5f37e50d293ad754002e1','<p><a href=\"home\">Home</a></p>\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a href=\"news-2\">News</a></p>\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a href=\"recmp-md\">Services</a></p>\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a href=\"resources\">Resources</a></p>\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a href=\"about-us\">About us</a></p>\n<p><a href=\"feedback\">Feedback</a></p>\n<p><a href=\"site-map\">Site map</a></p>\n',1286405619,1286319219,'',0),('1:f1fa3f32d4d140bbd045e4bca3219ff6','<p>Twenty-eight states plus the District of Columbia have enacted Renewable Energy Portfolio Standards (RPS) legislation to accelerate the adoption of renewable energy sources for the production of electricity.  Maryland’s program requires electricity suppliers to derive a defined percentage of their total electrical production from renewable sources.  Companies that fail to meet the Standard must either purchase Renewable Energy Credits (RECs) from state-certified Renewable Energy Facilities (REFs) sufficient to meet the requirement or pay Compliance Fees to a State fund that will be used to encourage production of additional renewable electricity capacity.</p>\n<p>Unlike many state RPS programs, Maryland requires that solar electrical production be a part of each electrical supplier’s portfolio.  In 2008, the first year with a specific solar requirement, suppliers must produce .005% of their electricity from solar.  The percentage to be provided by solar sources increases steadily each year through 2022 when a full 2% of Maryland’s electricity needs are to be met by solar production.  The Compliance Fee for companies that do not meet the standard or purchase RECs equal to the Standard is $0.45 per kWh in 2008 (equivalent to $450 per mWh or REC energy equivalent).  The Compliance Fee declines on a per kWh basis every other year by $0.05 per kWh while the amount of the solar production requirement increases.  Thus, in 2010 the Compliance Fee is $0.40 per kWh, $0.35 in 2012 and by 2023 is reduced to $0.05 per kWh, where it remains.  </p>\n<p>Any Solar REF in Maryland that wishes to create RECs based on its production must first offer the RECs to an electricity supplier subject to the RPS.  Suppliers who purchase RECs from Maryland solar producers must do so under a contract that covers the expected production of the REF for a minimum of 15 years, although the price per REC may vary.  However, REFs smaller than 10 kW must be paid the full value of the 15-year contract in a single advance payment under any such agreement.</p>\n<p>While the value of Solar RECs produced by Maryland facilities is unclear at this time and the willingness of electricity suppliers to pre-pay small facilities may be limited, the opportunity for small producers to monetize part of their investment is significant. </p>\n<p>There is likely to be an advantage to producers who participate in the REC program earlier than others both because of the declining Compliance Fees contained in the legislation and the increased supply of available RECs from new facilities certain to come online in future months and years.</p>\n<p>To sign-up or learn more about this program, call Fred Ugast at 240-344-2657 or send an email to <a href=\"mailto:fred.ugast@uspvinc.com\">fred.ugast@uspvinc.com</a>.</p>\n',1286405623,1286319223,'',0),('2:f0cc7088456cce616f594733950517ca','<p align=\"center\" style=\"line-height:20px;\"><img src=\"./sites/default/files/images/SunHands_243_447.jpg\" alt=\"\" /></p>\n<p align=\"justify\" style=\"line-height:20px;\"><i><a href=\"/~uspvinc/main2/renewable-energy-credit-rec-management-program-pv-system-owners\">U.S Photovoltaics, Inc. has developed a streamlined program to allow small solar PV systems to participate in the REC market with no up-front or out-of-pocket costs.</a></i></p>\n',1286405623,1286319223,'',0),('1:14d20759a57aa58cd6913dd77a7da90c','<p><a href=\"/~uspvinc/main2/renewable-energy-credit-rec-management-program-pv-system-owners\">Learn more</a></p>\n',1286405623,1286319223,'',0),('2:db820ffb66988a5addf8d727971aba2e','<p>\n<h2 class=\"title\">Internet Resources</h2>\n</p><p>From the Database of State Incentives for Renewables and Efficiency (DSIRE.org):</p>\n<p><a href=\"http://www.dsireusa.org/library/includes/statesearch2.cfm?State=US&amp;back=fintab&amp;CurrentPageID=7&amp;Search=TableState&amp;EE=1&amp;RE=1\">Federal Incentives for Solar PV</a></p>\n<p><a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&amp;State=MD&amp;RE=1&amp;EE=1\">Maryland Incentives for Solar PV</a></p>\n<p><a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&amp;State=DC&amp;RE=1&amp;EE=1\">District of Columbia Incentives for Solar PV</a></p>\n',1286405649,1286319249,'',0),('2:e7eb2c1c38588f64b03c75166ab0dd66','<p><font color=\"red\" weight=\"bold\">New!</font><a href=\"./sites/default/files/pdf/uspvnewsq109.pdf\"><br />\nRead the Current Issue of USPV Reports, our Free Quarterly Newsletter to stay informed about changes in MD\'s SREC Programs.</a></p>\n<p><a href=\"?q=financial-incentives-summary-photovoltaic-system-owners-maryland-residential-installations\"><br />\nFederal Solar Investment Tax Credit extended and enhanced. Financial Incentives For Maryland Residential PV systems means a 5 kW System can pay for itself within 11 years.</a></p>\n<p><a href=\"?q=financial-incentives-summary-photovoltaic-system-owners-maryland-commercial-installations\"><br />\nFinancial Incentives For Maryland Commercial PV systems means 100% payback is possible in as little as five years.</a></p>\n<p><a href=\"?q=understanding-renewable-energy-credits-and-certificates\"><br />\nMaryland Renewable Portfolio Standards (RPS) changes and new regulations make it possible for small PV system owners to participate in REC markets.</a></p>\n',1286405681,1286319281,'',0),('1:f2e2858011ebf268298abbadff75a3cc','<p>Sign-up for USPV\'s REC Management Program today.  No up-front or out-of-pocket costs.  Don\'t miss out on this opportunity to participate in the Renewable Energy Credit markets and earn hundreds or even thousands of dollars!</p>\n<p><a href=\"/~uspvinc/main2/renewable-energy-credit-rec-management-program-pv-system-owners\">Learn more</a></p>\n',1286405682,1286319282,'',0),('2:04f1109eb286d82386bd8da3f9dfc9fa','<div class=\"banner-about\">\n<div class=\"banner-content\">\n<div class=\"title-about\">It\'s Not Just About the Technology--It\'s About the Financing Too</div>\n<div class=\"content\">\nSee below for new Programs and Incentives that can help pay for your new system\n</div>\n</div>\n</div>\n',1286405682,1286319282,'',0),('2:ca334138d49564047367f23c83e2e418','<p><font color=\"red\" weight=\"bold\">New!</font><a href=\"./sites/default/files/pdf/uspvnewsq109.pdf\"><br />\nRead the Current Issue of USPV Reports, our Free Quarterly Newsletter to stay informed about changes in MD\'s SREC Programs.</a></p>\n<p><a href=\"financial-incentives-summary-photovoltaic-system-owners-maryland-residential-installations\"><br />\nFederal Solar Investment Tax Credit extended and enhanced. Financial Incentives For Maryland Residential PV systems means a 5 kW System can pay for itself within 11 years.</a></p>\n<p><a href=\"financial-incentives-summary-photovoltaic-system-owners-maryland-commercial-installations\"><br />\nFinancial Incentives For Maryland Commercial PV systems means 100% payback is possible in as little as five years.</a></p>\n<p><a href=\"understanding-renewable-energy-credits-and-certificates\"><br />\nMaryland Renewable Portfolio Standards (RPS) changes and new regulations make it possible for small PV system owners to participate in REC markets.</a></p>\n',1286405723,1286319323,'',0),('2:f40106a14f869e2b79963af5d283ffaa','<p><a href=\"./financial-incentives-summary-photovoltaic-system-owners-maryland-commercial-installations\"><font><strong>Click here to learn more about incentives for commercial systems</strong></font></a></p>\n<p>·   <b>Maryland Energy Administration Solar Energy Grant Program</b></p>\n<p>Up to $10,000 paid directly to the system owner:</p>\n<p>1st 2,000 watts:  $$1.25/watt</p>\n<p>2,001-8,000 watts: $.75/watt</p>\n<p><font>8,001-20,000 watts: $0.25/watt</font>  </p>\n<p>·   <b>Federal Investment Tax Credit</b></p>\n<p>30% of the amount paid to purchase and install a PV system completed prior to December 31, 2016 can be deducted as a credit on your income tax and the credit is not reduced even if the taxpayer is subject to the Alternative Minimum Tax (AMT).</p>\n<p>·   <b>Sale of Renewable Energy Credit Certificates (RECs)</b></p>\n<p>Special state rules allow owners to participate in programs to sell RECs to utilities and other buyers of clean-energy certificates.</p>\n<p>·   <b>Electricity Savings on Your Utility Bill</b></p>\n<p>Grid connected systems can be net-metered to effectively pay you for the electricity you produce but do not use\n</p>\n<p>·   <b>Increased Resale Value of Your Property</b><b><o:p></o:p></b></p>\n<p>Studies show that PV Systems increase the value of a property as much as 20 times the annual electricity savings<o:p></o:p></p>\n<p><b>Pro-Forma For a 5 kW PV system on a residential property located in Maryland:</b></p>\n<table width=\"100%\">\n<tr>\n<td><span><strong><font size=\"2\">Installed Cost of System</font></strong></span></td>\n<td><font size=\"2\" color=\"#ff0000\">$37,500</font></td>\n</tr>\n<tr>\n<td>Maryland State Grant</td>\n<td>$ 4,750</td>\n</tr>\n<tr>\n<td>Federal ITC</td>\n<td>$ 11,250*</td>\n</tr>\n<tr>\n<td>1st Year Sale of Renewable Energy Credits (RECs)</td>\n<td>$1,800**</td>\n</tr>\n<tr>\n<td>Electricity Savings in 1<sup>st</sup> Year </td>\n<td>$  675</td>\n</tr>\n<tr>\n<td>Total Grants, Credits and Savings in 1<sup>st</sup> </td>\n<td>Year:$18,475</td>\n</tr>\n<tr>\n<td>Net Cost to System Owner at end of 1<sup>st</sup> Year:</td>\n<td><font color=\"#ff0000\">$19,025</font></td>\n</tr>\n<tr>\n<td>Increased Resale Value of Property:</td>\n<td>$ 13,500</td>\n</tr>\n<tr>\n<td>Net Investment by System Owner at end of 1st Year:</td>\n<td>$ 5,525</td>\n</tr>\n</table>\n<p><b><span style=\"font-family: Verdana; color: red; font-size: 10pt;\"><font color=\"#ff0000\"><span style=\"\"></span></font></span></b></p>\n<p align=\"center\"><strong><em><font size=\"2\"><font face=\"Arial\"><font color=\"#000000\"><font size=\"4\">5 kW Solar System Payback Summary</font><span style=\"\">&nbsp;</span></font></font></font></em></strong></p>\n<p><b><span style=\"font-family: Verdana; color: red; font-size: 10pt;\"><font color=\"#ff0000\"><span style=\"\"></span></font></span></b></p>\n<p><table width=\"776\" cellspacing=\"1\" cellpadding=\"1\" border=\"1\" style=\"height: 572px; width: 608px; border: medium none navajoWhite;\">\n<tbody>\n<tr height=\"45\" style=\"height: 33.75pt;\">\n<td width=\"64\" height=\"45\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent; width: 48pt; height: 33.75pt;\" class=\"xl66\"><font size=\"2\"><strong>Year</strong></font></td>\n<td width=\"128\" align=\"middle\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent; width: 96pt;\" class=\"xl69\" colspan=\"2\"><font size=\"2\"><strong>Cost</strong></font></td>\n<td width=\"64\" align=\"middle\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent; width: 48pt;\" class=\"xl69\"><strong><font size=\"2\">Federal Tax Credit</font><font size=\"1\" class=\"font5\"><sup>1</sup></font></strong></td>\n<td width=\"64\" align=\"middle\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent; width: 48pt;\" class=\"xl69\"><strong><font size=\"2\">State Grant</font></strong></td>\n<td width=\"73\" align=\"middle\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent; width: 55pt;\" class=\"xl69\"><strong><font size=\"2\">Electricity Savings<font class=\"font6\"><sup>2</sup></font></font></strong></td>\n<td width=\"64\" align=\"middle\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent; width: 48pt;\" class=\"xl69\"><strong><font size=\"2\">SREC Sale<font class=\"font6\"><sup>3</sup></font></font></strong></td>\n<td width=\"72\" align=\"middle\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent; width: 54pt;\" class=\"xl69\"><strong><font size=\"2\">Net Cost</font></strong></td>\n</tr>\n<tr height=\"16\" style=\"height: 12pt;\">\n<td height=\"16\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent; height: 12pt;\" class=\"xl67\"><font size=\"2\">1</font></td>\n<td align=\"right\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl68\"><font size=\"2\">$37,500</font></td>\n<td style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl68\"><font size=\"2\"></font></td>\n<td align=\"right\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl68\"><font size=\"2\">$11,250</font></td>\n<td align=\"right\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl68\"><font size=\"2\">$4,750</font></td>\n<td align=\"right\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl68\"><font size=\"2\">$675</font></td>\n<td align=\"right\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl68\"><font size=\"2\">$1,800</font></td>\n<td align=\"right\" style=\"border: medium none rgb(240, 240, 240); background-color: rgb(146, 208, 80);\" class=\"xl70\"><font size=\"2\">$19,025</font></td>\n</tr>\n<tr height=\"16\" style=\"height: 12pt;\">\n<td height=\"16\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent; height: 12pt;\" class=\"xl67\"><font size=\"2\">2</font></td>\n<td align=\"right\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl68\"><font size=\"2\">$19,025</font></td>\n<td style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl65\"><font size=\"2\"></font></td>\n<td style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl65\"><font size=\"2\"></font></td>\n<td style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl65\"><font size=\"2\"></font></td>\n<td align=\"right\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl68\"><font size=\"2\">$699</font></td>\n<td align=\"right\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl68\"><font size=\"2\">$1,575</font></td>\n<td align=\"right\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl68\"><font size=\"2\">$16,751</font></td>\n</tr>\n<tr height=\"16\" style=\"height: 12pt;\">\n<td height=\"16\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent; height: 12pt;\" class=\"xl67\"><font size=\"2\">3</font></td>\n<td align=\"right\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl68\"><font size=\"2\">$16,751</font></td>\n<td style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl65\"><font size=\"2\"></font></td>\n<td style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl65\"><font size=\"2\"></font></td>\n<td style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl65\"><font size=\"2\"></font></td>\n<td align=\"right\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl68\"><font size=\"2\">$724</font></td>\n<td align=\"right\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl68\"><font size=\"2\">$1,575</font></td>\n<td align=\"right\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl68\"><font size=\"2\">$14,452</font></td>\n</tr>\n<tr height=\"16\" style=\"height: 12pt;\">\n<td height=\"16\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent; height: 12pt;\" class=\"xl67\"><font size=\"2\">4</font></td>\n<td align=\"right\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl68\"><font size=\"2\">$14,452</font></td>\n<td style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl65\"><font size=\"2\"></font></td>\n<td style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl65\"><font size=\"2\"></font></td>\n<td style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl65\"><font size=\"2\"></font></td>\n<td align=\"right\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl68\"><font size=\"2\">$749</font></td>\n<td align=\"right\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl68\"><font size=\"2\">$1,350</font></td>\n<td align=\"right\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl68\"><font size=\"2\">$12,353</font></td>\n</tr>\n<tr height=\"16\" style=\"height: 12pt;\">\n<td height=\"16\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent; height: 12pt;\" class=\"xl67\"><font size=\"2\">5</font></td>\n<td align=\"right\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl68\"><font size=\"2\">$12,353</font></td>\n<td style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl65\"><font size=\"2\"></font></td>\n<td style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl65\"><font size=\"2\"></font></td>\n<td style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl65\"><font size=\"2\"></font></td>\n<td align=\"right\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl68\"><font size=\"2\">$775</font></td>\n<td align=\"right\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl68\"><font size=\"2\">$1,350</font></td>\n<td align=\"right\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl68\"><font size=\"2\">$10,228</font></td>\n</tr>\n<tr height=\"16\" style=\"height: 12pt;\">\n<td height=\"16\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent; height: 12pt;\" class=\"xl67\"><font size=\"2\">6</font></td>\n<td align=\"right\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl68\"><font size=\"2\">$10,228</font></td>\n<td style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl65\"><font size=\"2\"></font></td>\n<td style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl65\"><font size=\"2\"></font></td>\n<td style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl65\"><font size=\"2\"></font></td>\n<td align=\"right\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl68\"><font size=\"2\">$802</font></td>\n<td align=\"right\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl68\"><font size=\"2\">$1,125</font></td>\n<td align=\"right\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl68\"><font size=\"2\">$8,301</font></td>\n</tr>\n<tr height=\"16\" style=\"height: 12pt;\">\n<td height=\"16\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent; height: 12pt;\" class=\"xl67\"><font size=\"2\">7</font></td>\n<td align=\"right\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl68\"><font size=\"2\">$8,301</font></td>\n<td style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl65\"><font size=\"2\"></font></td>\n<td style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl65\"><font size=\"2\"></font></td>\n<td style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl65\"><font size=\"2\"></font></td>\n<td align=\"right\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl68\"><font size=\"2\">$830</font></td>\n<td align=\"right\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl68\"><font size=\"2\">$1,125</font></td>\n<td align=\"right\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl68\"><font size=\"2\">$6,346</font></td>\n</tr>\n<tr height=\"16\" style=\"height: 12pt;\">\n<td height=\"16\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent; height: 12pt;\" class=\"xl67\"><font size=\"2\">8</font></td>\n<td align=\"right\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl68\"><font size=\"2\">$6,346</font></td>\n<td style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl65\"><font size=\"2\"></font></td>\n<td style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl65\"><font size=\"2\"></font></td>\n<td style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl65\"><font size=\"2\"></font></td>\n<td align=\"right\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl68\"><font size=\"2\">$859</font></td>\n<td align=\"right\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl68\"><font size=\"2\">$1,050</font></td>\n<td align=\"right\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl68\"><font size=\"2\">$4,436</font></td>\n</tr>\n<tr height=\"16\" style=\"height: 12pt;\">\n<td height=\"16\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent; height: 12pt;\" class=\"xl67\"><font size=\"2\">9</font></td>\n<td align=\"right\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl68\"><font size=\"2\">$4,436</font></td>\n<td style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl65\"><font size=\"2\"></font></td>\n<td style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl65\"><font size=\"2\"></font></td>\n<td style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl65\"><font size=\"2\"></font></td>\n<td align=\"right\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl68\"><font size=\"2\">$889</font></td>\n<td align=\"right\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl68\"><font size=\"2\">$900</font></td>\n<td align=\"right\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl68\"><font size=\"2\">$2,647</font></td>\n</tr>\n<tr height=\"16\" style=\"height: 12pt;\">\n<td height=\"16\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent; height: 12pt;\" class=\"xl67\"><font size=\"2\">10</font></td>\n<td align=\"right\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl68\"><font size=\"2\">$2,647</font></td>\n<td style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl65\"><font size=\"2\"></font></td>\n<td style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl65\"><font size=\"2\"></font></td>\n<td style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl65\"><font size=\"2\"></font></td>\n<td align=\"right\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl68\"><font size=\"2\">$921</font></td>\n<td align=\"right\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl68\"><font size=\"2\">$675</font></td>\n<td align=\"right\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl68\"><font size=\"2\">$1,052</font></td>\n</tr>\n<tr height=\"16\" style=\"height: 12pt;\">\n<td height=\"16\" style=\"border: medium none rgb(240, 240, 240); background-color: yellow; height: 12pt;\" class=\"xl71\"><font size=\"2\">11</font></td>\n<td align=\"right\" style=\"border: medium none rgb(240, 240, 240); background-color: yellow;\" class=\"xl72\"><font size=\"2\">$1,052</font></td>\n<td style=\"border: medium none rgb(240, 240, 240); background-color: yellow;\" class=\"xl73\"><font size=\"2\">&nbsp;</font></td>\n<td style=\"border: medium none rgb(240, 240, 240); background-color: yellow;\" class=\"xl73\"><font size=\"2\">&nbsp;</font></td>\n<td style=\"border: medium none rgb(240, 240, 240); background-color: yellow;\" class=\"xl73\"><font size=\"2\">&nbsp;</font></td>\n<td align=\"right\" style=\"border: medium none rgb(240, 240, 240); background-color: yellow;\" class=\"xl72\"><font size=\"2\">$953</font></td>\n<td align=\"right\" style=\"border: medium none rgb(240, 240, 240); background-color: yellow;\" class=\"xl72\"><font size=\"2\">$675</font></td>\n<td align=\"right\" style=\"border: medium none rgb(240, 240, 240); background-color: yellow;\" class=\"xl72\"><font size=\"2\">-$576</font></td>\n</tr>\n<tr height=\"16\" style=\"height: 12pt;\">\n<td height=\"16\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent; height: 12pt;\" class=\"xl67\"><font size=\"2\">12</font></td>\n<td align=\"right\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl68\"><font size=\"2\">-$576</font></td>\n<td style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl65\"><font size=\"2\"></font></td>\n<td style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl65\"><font size=\"2\"></font></td>\n<td style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl65\"><font size=\"2\"></font></td>\n<td align=\"right\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl68\"><font size=\"2\">$986</font></td>\n<td align=\"right\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl68\"><font size=\"2\">$450</font></td>\n<td align=\"right\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl68\"><font size=\"2\">-$2,012</font></td>\n</tr>\n<tr height=\"16\" style=\"height: 12pt;\">\n<td height=\"16\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent; height: 12pt;\" class=\"xl67\"><font size=\"2\">13</font></td>\n<td align=\"right\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl68\"><font size=\"2\">-$2,012</font></td>\n<td style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl65\"><font size=\"2\"></font></td>\n<td style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl65\"><font size=\"2\"></font></td>\n<td style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl65\"><font size=\"2\"></font></td>\n<td align=\"right\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl68\"><font size=\"2\">$1,021</font></td>\n<td align=\"right\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl68\"><font size=\"2\">$450</font></td>\n<td align=\"right\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl68\"><font size=\"2\">-$3,483</font></td>\n</tr>\n<tr height=\"16\" style=\"height: 12pt;\">\n<td height=\"16\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent; height: 12pt;\" class=\"xl67\"><font size=\"2\">14</font></td>\n<td align=\"right\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl68\"><font size=\"2\">-$3,483</font></td>\n<td style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl65\"><font size=\"2\"></font></td>\n<td style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl65\"><font size=\"2\"></font></td>\n<td style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl65\"><font size=\"2\"></font></td>\n<td align=\"right\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl68\"><font size=\"2\">$1,056</font></td>\n<td align=\"right\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl68\"><font size=\"2\">$225</font></td>\n<td align=\"right\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl68\"><font size=\"2\">-$4,764</font></td>\n</tr>\n<tr height=\"16\" style=\"height: 12pt;\">\n<td height=\"16\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent; height: 12pt;\" class=\"xl67\"><font size=\"2\">15</font></td>\n<td align=\"right\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl68\"><font size=\"2\">-$4,764</font></td>\n<td style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl65\"><font size=\"2\"></font></td>\n<td style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl65\"><font size=\"2\"></font></td>\n<td style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl65\"><font size=\"2\"></font></td>\n<td align=\"right\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl68\"><font size=\"2\">$1,093</font></td>\n<td align=\"right\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl68\"><font size=\"2\">$263</font></td>\n<td align=\"right\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl68\"><font size=\"2\">-$6,120</font></td>\n</tr>\n<tr height=\"16\" style=\"height: 12pt;\">\n<td height=\"16\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent; height: 12pt;\" class=\"xl67\"><font size=\"2\">16</font></td>\n<td align=\"right\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl68\"><font size=\"2\">-$6,120</font></td>\n<td style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl65\"><font size=\"2\"></font></td>\n<td style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl65\"><font size=\"2\"></font></td>\n<td style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl65\"><font size=\"2\"></font></td>\n<td align=\"right\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl68\"><font size=\"2\">$1,132</font></td>\n<td align=\"right\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl68\"><font size=\"2\">$0</font></td>\n<td align=\"right\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl68\"><font size=\"2\">-$7,251</font></td>\n</tr>\n<tr height=\"16\" style=\"height: 12pt;\">\n<td height=\"16\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent; height: 12pt;\" class=\"xl67\"><font size=\"2\">17</font></td>\n<td align=\"right\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl68\"><font size=\"2\">-$7,251</font></td>\n<td style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl65\"><font size=\"2\"></font></td>\n<td style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl65\"><font size=\"2\"></font></td>\n<td style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl65\"><font size=\"2\"></font></td>\n<td align=\"right\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl68\"><font size=\"2\">$1,171</font></td>\n<td align=\"right\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl68\"><font size=\"2\">$0</font></td>\n<td align=\"right\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl68\"><font size=\"2\">-$8,422</font></td>\n</tr>\n<tr height=\"16\" style=\"height: 12pt;\">\n<td height=\"16\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent; height: 12pt;\" class=\"xl67\"><font size=\"2\">18</font></td>\n<td align=\"right\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl68\"><font size=\"2\">-$8,422</font></td>\n<td style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl65\"><font size=\"2\"></font></td>\n<td style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl65\"><font size=\"2\"></font></td>\n<td style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl65\"><font size=\"2\"></font></td>\n<td align=\"right\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl68\"><font size=\"2\">$1,212</font></td>\n<td style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl65\"><font size=\"2\"></font></td>\n<td align=\"right\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl68\"><font size=\"2\">-$9,635</font></td>\n</tr>\n<tr height=\"16\" style=\"height: 12pt;\">\n<td height=\"16\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent; height: 12pt;\" class=\"xl67\"><font size=\"2\">19</font></td>\n<td align=\"right\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl68\"><font size=\"2\">-$9,635</font></td>\n<td style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl65\"><font size=\"2\"></font></td>\n<td style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl65\"><font size=\"2\"></font></td>\n<td style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl65\"><font size=\"2\"></font></td>\n<td align=\"right\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl68\"><font size=\"2\">$1,255</font></td>\n<td style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl65\"><font size=\"2\"></font></td>\n<td align=\"right\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl68\"><font size=\"2\">-$10,889</font></td>\n</tr>\n<tr height=\"16\" style=\"height: 12pt;\">\n<td height=\"16\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent; height: 12pt;\" class=\"xl67\"><font size=\"2\">20</font></td>\n<td align=\"right\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl68\"><font size=\"2\">-$10,889</font></td>\n<td style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl65\"><font size=\"2\"></font></td>\n<td style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl65\"><font size=\"2\"></font></td>\n<td style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl65\"><font size=\"2\"></font></td>\n<td align=\"right\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl68\"><font size=\"2\">$1,298</font></td>\n<td style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl65\"><font size=\"2\"></font></td>\n<td align=\"right\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl68\"><font size=\"2\">-$12,188</font></td>\n</tr>\n<tr height=\"16\" style=\"height: 12pt;\">\n<td height=\"16\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent; height: 12pt;\" class=\"xl67\"><font size=\"2\">21</font></td>\n<td align=\"right\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl68\"><font size=\"2\">-$12,188</font></td>\n<td style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl65\"><font size=\"2\"></font></td>\n<td style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl65\"><font size=\"2\"></font></td>\n<td style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl65\"><font size=\"2\"></font></td>\n<td align=\"right\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl68\"><font size=\"2\">$1,344</font></td>\n<td style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl65\"><font size=\"2\"></font></td>\n<td align=\"right\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl68\"><font size=\"2\">-$13,532</font></td>\n</tr>\n<tr height=\"16\" style=\"height: 12pt;\">\n<td height=\"16\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent; height: 12pt;\" class=\"xl67\"><font size=\"2\">22</font></td>\n<td align=\"right\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl68\"><font size=\"2\">-$13,532</font></td>\n<td style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl65\"><font size=\"2\"></font></td>\n<td style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl65\"><font size=\"2\"></font></td>\n<td style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl65\"><font size=\"2\"></font></td>\n<td align=\"right\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl68\"><font size=\"2\">$1,391</font></td>\n<td style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl65\"><font size=\"2\"></font></td>\n<td align=\"right\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl68\"><font size=\"2\">-$14,922</font></td>\n</tr>\n<tr height=\"16\" style=\"height: 12pt;\">\n<td height=\"16\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent; height: 12pt;\" class=\"xl67\"><font size=\"2\">23</font></td>\n<td align=\"right\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl68\"><font size=\"2\">-$14,922</font></td>\n<td style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl65\"><font size=\"2\"></font></td>\n<td style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl65\"><font size=\"2\"></font></td>\n<td style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl65\"><font size=\"2\"></font></td>\n<td align=\"right\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl68\"><font size=\"2\">$1,440</font></td>\n<td style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl65\"><font size=\"2\"></font></td>\n<td align=\"right\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl68\"><font size=\"2\">-$16,362</font></td>\n</tr>\n<tr height=\"16\" style=\"height: 12pt;\">\n<td height=\"16\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent; height: 12pt;\" class=\"xl67\"><font size=\"2\">24</font></td>\n<td align=\"right\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl68\"><font size=\"2\">-$16,362</font></td>\n<td style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl65\"><font size=\"2\"></font></td>\n<td style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl65\"><font size=\"2\"></font></td>\n<td style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl65\"><font size=\"2\"></font></td>\n<td align=\"right\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl68\"><font size=\"2\">$1,490</font></td>\n<td style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl65\"><font size=\"2\"></font></td>\n<td align=\"right\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl68\"><font size=\"2\">-$17,852</font></td>\n</tr>\n<tr height=\"16\" style=\"height: 12pt;\">\n<td height=\"16\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent; height: 12pt;\" class=\"xl67\"><font size=\"2\">25</font></td>\n<td align=\"right\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl68\"><font size=\"2\">-$17,852</font></td>\n<td style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl65\"><font size=\"2\"></font></td>\n<td style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl65\"><font size=\"2\"></font></td>\n<td style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl65\"><font size=\"2\"></font></td>\n<td align=\"right\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl68\"><font size=\"2\">$1,542</font></td>\n<td style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl65\"><font size=\"2\"></font></td>\n<td align=\"right\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl68\"><font size=\"2\">-$19,394</font></td>\n</tr>\n<tr height=\"16\" style=\"height: 12pt;\">\n<td height=\"16\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent; height: 12pt;\" class=\"xl67\"><font size=\"2\">26</font></td>\n<td align=\"right\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl68\"><font size=\"2\">-$19,394</font></td>\n<td style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl65\"><font size=\"2\"></font></td>\n<td style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl65\"><font size=\"2\"></font></td>\n<td style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl65\"><font size=\"2\"></font></td>\n<td align=\"right\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl68\"><font size=\"2\">$1,596</font></td>\n<td style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl65\"><font size=\"2\"></font></td>\n<td align=\"right\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl68\"><font size=\"2\">-$20,990</font></td>\n</tr>\n<tr height=\"16\" style=\"height: 12pt;\">\n<td height=\"16\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent; height: 12pt;\" class=\"xl67\"><font size=\"2\">27</font></td>\n<td align=\"right\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl68\"><font size=\"2\">-$20,990</font></td>\n<td style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl65\"><font size=\"2\"></font></td>\n<td style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl65\"><font size=\"2\"></font></td>\n<td style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl65\"><font size=\"2\"></font></td>\n<td align=\"right\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl68\"><font size=\"2\">$1,652</font></td>\n<td style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl65\"><font size=\"2\"></font></td>\n<td align=\"right\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl68\"><font size=\"2\">-$22,642</font></td>\n</tr>\n<tr height=\"16\" style=\"height: 12pt;\">\n<td height=\"16\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent; height: 12pt;\" class=\"xl67\"><font size=\"2\">28</font></td>\n<td align=\"right\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl68\"><font size=\"2\">-$22,642</font></td>\n<td style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl65\"><font size=\"2\"></font></td>\n<td style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl65\"><font size=\"2\"></font></td>\n<td style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl65\"><font size=\"2\"></font></td>\n<td align=\"right\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl68\"><font size=\"2\">$1,710</font></td>\n<td style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl65\"><font size=\"2\"></font></td>\n<td align=\"right\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl68\"><font size=\"2\">-$24,352</font></td>\n</tr>\n<tr height=\"16\" style=\"height: 12pt;\">\n<td height=\"16\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent; height: 12pt;\" class=\"xl67\"><font size=\"2\">29</font></td>\n<td align=\"right\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl68\"><font size=\"2\">-$24,352</font></td>\n<td style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl65\"><font size=\"2\"></font></td>\n<td style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl65\"><font size=\"2\"></font></td>\n<td style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl65\"><font size=\"2\"></font></td>\n<td align=\"right\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl68\"><font size=\"2\">$1,770</font></td>\n<td style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl65\"><font size=\"2\"></font></td>\n<td align=\"right\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl68\"><font size=\"2\">-$26,122</font></td>\n</tr>\n<tr height=\"16\" style=\"height: 12pt;\">\n<td height=\"16\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent; height: 12pt;\" class=\"xl67\"><font size=\"2\">30</font></td>\n<td align=\"right\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl68\"><font size=\"2\">-$26,122</font></td>\n<td style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl65\"><font size=\"2\"></font></td>\n<td style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl65\"><font size=\"2\"></font></td>\n<td style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl65\"><font size=\"2\"></font></td>\n<td align=\"right\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl68\"><font size=\"2\">$1,832</font></td>\n<td style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl65\"><font size=\"2\"></font></td>\n<td align=\"right\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\" class=\"xl68\"><font size=\"2\">-$27,953</font></td>\n</tr>\n</tbody>\n</table>\n</p><p>Results are not guaranteed and are for illustrative purposes only.  Maintenance costs, inverter replacement and taxes on SREC income, are not included.  Other costs or lower SREC income are possible.</p>\n<p>The ongoing electricity savings and depreciation deductions means that a commercial solar PV system in Maryland can pay for itself within 5 years of installation.  Over the expected life of the system, a system owner can expect to save over $25,000 in electricity costs if utility rates increase by just 3.5% per year.</p>\n<p>The actual incentives available to a particular installation depend on many factors including the ability of the taxpayer to take advantage of the deductions and credits available as well as the funding of state programs and participation by utilities.  The figures above are for illustrative purposes only and are not a guarantee that any particular installation or system owner will qualify for any or all of these incentives.</p>\n<p>1. Federal Grant in lieu of Tax Credit available for systems starting construction in 2009 and 2010 and completed prior to 2016.</p>\n<p>2. Electricity saving assume initial rate of $0.11 per kWh increasing 3.5% annually.</p>\n<p>3.  SREC sale assumes annual sale at 75% of ACP.</p>\n<p>Depreciation assumes 28% Federal tax rate, 1/2 year convention, MACRS 5 year and 50% bonus. </p>\n<hr align=\"left\" noshade size=\"5\" width=\"100%\" />\nTo learn more about the financial potential of PV installations in Maryland, call Fred Ugast at 240-344-2657 or send an email to <a href=\"mailto:fred.ugast@uspvinc.com\">fred.ugast@uspvinc.com</a>.\n',1286405739,1286319339,'',0),('2:492b2200f581582628cd8509dee5c67f','<p><a href=\"./financial incentives\">Click here for information on incentives for residential installations</a></p>\n<h2>Maryland Energy Administration Solar Energy Grant Program</h2>\n<p align=\"left\">\nUp to $10,000 paid directly to the system owner:</p>\n<p>1st 2,000 watts:  $1.25/watt</p>\n<p>2,001-8,000 watts: $0.75/watt</p>\n<p>8,001-20,000 watts: $0.25/watt \n</p>\n<h2> Federal Investment Tax Credit</h2>\n<p>\n30% of the amount paid to purchase and install a PV system completed prior to December 31, 2016 can be deducted as a credit on your income tax in the current tax year.  For 2009 or 2010, a 30% federal grant is available in lieu of the tax credit.\n</p>\n<h2> Federal Tax Deduction for Accelerated Depreciation</h2>\n<p>\n50% of the taxable basis of a PV system placed in service prior to December 31, 2009 can be deducted in the first year on your income tax return. The remainder will be deducted over the next five years.  Beginning January 1, 2009, equipment placed in service may be depreciated using MACRS over a five year period.\n</p>\n<h2>Sale of Renewable Energy Credit Certificates (RECs)</h2>\n<p>\nSpecial state rules allow owners to participate in programs to sell RECs to utilities and other buyers of clean-energy certificates.\n</p>\n<h2> Electricity Savings on Your Utility Bill</h2>\n<p>\nGrid connected systems can be net-metered to effectively pay you for the electricity you produce but do not use\n</p>\n<h1>Pro-Forma For a 5 kW PV system on a commercial property located in Maryland:</h1>\n<table width=\"100%\">\n<tr>\n<td align=\"left\" width=\"90%\">Installed Cost of System </td>\n<td>$ 37,500</td>\n</tr>\n<tr>\n<td>Maryland State Grant</td>\n<td>$  4,750</td>\n</tr>\n<tr>\n<td>Federal ITC/Grant</td>\n<td>$ 11,250</td>\n</tr>\n<tr>\n<td>Depreciation Tax Savings in 1st Year</td>\n<td>$ 7,201</td>\n</tr>\n<tr>\n<td>Sale of Renewable Energy Credits (RECs) </td>\n<td>$ 1,800</td>\n</tr>\n<tr>\n<td>Electricity Savings in 1st Year</td>\n<td>$ 675</td>\n</tr>\n<tr>\n<td>Total Grants, Credits and Savings in 1st Year:</td>\n<td>$ 25,676</td>\n</tr>\n<tr>\n<td>Net Investment by System Owner at end of 1st Year:</td>\n<td>$ 11,824</td>\n</tr>\n</table>\n<h1>5 kW Commercial Solar System Payback Summary</h1>\n<p><br clear=\"all\" /></p>\n<table width=\"605\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width: 454pt; border-collapse: collapse;\">\n<colgroup>\n<col width=\"64\" span=\"5\" style=\"width: 48pt;\" /><br />\n<col width=\"73\" style=\"width: 55pt;\" /><br />\n<col width=\"76\" style=\"width: 57pt;\" /><br />\n<col width=\"64\" style=\"width: 48pt;\" /><br />\n<col width=\"72\" style=\"width: 54pt;\" /><br />\n</colgroup>\n<tbody>\n<tr height=\"45\" style=\"height: 33.75pt;\">\n<td width=\"64\" height=\"45\" class=\"xl66\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent; width: 48pt; height: 33.75pt;\"><font size=\"2\" face=\"Arial\"><strong>Year</strong></font></td>\n<td width=\"128\" align=\"middle\" colspan=\"2\" class=\"xl69\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent; width: 96pt;\"><font size=\"2\" face=\"Arial\"><strong>Cost</strong></font></td>\n<td width=\"64\" align=\"middle\" class=\"xl69\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent; width: 48pt;\"><strong><font face=\"Arial\"><font size=\"2\">Federal Tax Credit</font><font size=\"1\" class=\"font5\"><sup>1</sup></font></font></strong></td>\n<td width=\"64\" align=\"middle\" class=\"xl69\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent; width: 48pt;\"><strong><font size=\"2\" face=\"Arial\">State Grant</font></strong></td>\n<td width=\"73\" align=\"middle\" class=\"xl69\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent; width: 55pt;\"><strong><font size=\"2\"><font face=\"Arial\">Electricity Savings<font class=\"font6\"><sup>2</sup></font></font></font></strong></td>\n<td width=\"76\" align=\"middle\" class=\"xl69\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent; width: 57pt;\"><strong><font size=\"2\" face=\"Arial\">Depreciation</font></strong></td>\n<td width=\"64\" align=\"middle\" class=\"xl69\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent; width: 48pt;\"><strong><font size=\"2\"><font face=\"Arial\">SREC Sale<font class=\"font6\"><sup>3</sup></font></font></font></strong></td>\n<td width=\"72\" align=\"middle\" class=\"xl69\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent; width: 54pt;\"><strong><font size=\"2\" face=\"Arial\">Net Cost</font></strong></td>\n</tr>\n<tr height=\"13\" style=\"height: 9.95pt;\">\n<td height=\"13\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent; height: 9.95pt;\"><strong><font size=\"2\" face=\"Arial\"></font></strong></td>\n<td style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><strong><font size=\"2\" face=\"Arial\"></font></strong></td>\n<td style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><strong><font size=\"2\" face=\"Arial\"></font></strong></td>\n<td style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><strong><font size=\"2\" face=\"Arial\"></font></strong></td>\n<td style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><strong><font size=\"2\" face=\"Arial\"></font></strong></td>\n<td style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><strong><font size=\"2\" face=\"Arial\"></font></strong></td>\n<td style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><strong><font size=\"2\" face=\"Arial\"></font></strong></td>\n<td style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><strong><font size=\"2\" face=\"Arial\"></font></strong></td>\n<td style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><strong><font size=\"2\" face=\"Arial\"></font></strong></td>\n</tr>\n<tr height=\"16\" style=\"height: 12pt;\">\n<td height=\"16\" class=\"xl67\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent; height: 12pt;\"><font size=\"2\" face=\"Arial\">1</font></td>\n<td align=\"right\" class=\"xl68\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\">$37,500</font></td>\n<td class=\"xl68\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\"></font></td>\n<td align=\"right\" class=\"xl68\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\">$11,250</font></td>\n<td align=\"right\" class=\"xl68\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\">$4,750</font></td>\n<td align=\"right\" class=\"xl68\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\">$675</font></td>\n<td align=\"right\" class=\"xl68\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\">$7,201</font></td>\n<td align=\"right\" class=\"xl68\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\">$1,800</font></td>\n<td align=\"right\" class=\"xl70\" style=\"border: medium none rgb(240, 240, 240); background-color: rgb(146, 208, 80);\"><font size=\"2\" face=\"Arial\">$11,824</font></td>\n</tr>\n<tr height=\"16\" style=\"height: 12pt;\">\n<td height=\"16\" class=\"xl67\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent; height: 12pt;\"><font size=\"2\" face=\"Arial\">2</font></td>\n<td align=\"right\" class=\"xl68\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\">$11,824</font></td>\n<td class=\"xl65\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\"></font></td>\n<td class=\"xl65\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\"></font></td>\n<td class=\"xl65\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\"></font></td>\n<td align=\"right\" class=\"xl68\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\">$699</font></td>\n<td align=\"right\" class=\"xl68\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\">$1,582</font></td>\n<td align=\"right\" class=\"xl68\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\">$1,575</font></td>\n<td align=\"right\" class=\"xl68\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\">$7,968</font></td>\n</tr>\n<tr height=\"16\" style=\"height: 12pt;\">\n<td height=\"16\" class=\"xl67\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent; height: 12pt;\"><font size=\"2\" face=\"Arial\">3</font></td>\n<td align=\"right\" class=\"xl68\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\">$7,968</font></td>\n<td class=\"xl65\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\"></font></td>\n<td class=\"xl65\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\"></font></td>\n<td class=\"xl65\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\"></font></td>\n<td align=\"right\" class=\"xl68\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\">$724</font></td>\n<td align=\"right\" class=\"xl68\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\">$949</font></td>\n<td align=\"right\" class=\"xl68\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\">$1,575</font></td>\n<td align=\"right\" class=\"xl68\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\">$4,720</font></td>\n</tr>\n<tr height=\"16\" style=\"height: 12pt;\">\n<td height=\"16\" class=\"xl67\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent; height: 12pt;\"><font size=\"2\" face=\"Arial\">4</font></td>\n<td align=\"right\" class=\"xl68\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\">$4,720</font></td>\n<td class=\"xl65\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\"></font></td>\n<td class=\"xl65\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\"></font></td>\n<td class=\"xl65\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\"></font></td>\n<td align=\"right\" class=\"xl68\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\">$749</font></td>\n<td align=\"right\" class=\"xl68\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\">$570</font></td>\n<td align=\"right\" class=\"xl68\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\">$1,350</font></td>\n<td align=\"right\" class=\"xl68\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\">$2,051</font></td>\n</tr>\n<tr height=\"16\" style=\"height: 12pt;\">\n<td height=\"16\" class=\"xl71\" style=\"border: medium none rgb(240, 240, 240); background-color: yellow; height: 12pt;\"><font size=\"2\" face=\"Arial\">5</font></td>\n<td align=\"right\" class=\"xl72\" style=\"border: medium none rgb(240, 240, 240); background-color: yellow;\"><font size=\"2\" face=\"Arial\">$2,051</font></td>\n<td class=\"xl73\" style=\"border: medium none rgb(240, 240, 240); background-color: yellow;\"><font size=\"2\" face=\"Arial\">&nbsp;</font></td>\n<td class=\"xl73\" style=\"border: medium none rgb(240, 240, 240); background-color: yellow;\"><font size=\"2\" face=\"Arial\">&nbsp;</font></td>\n<td class=\"xl73\" style=\"border: medium none rgb(240, 240, 240); background-color: yellow;\"><font size=\"2\" face=\"Arial\">&nbsp;</font></td>\n<td align=\"right\" class=\"xl72\" style=\"border: medium none rgb(240, 240, 240); background-color: yellow;\"><font size=\"2\" face=\"Arial\">$775</font></td>\n<td align=\"right\" class=\"xl72\" style=\"border: medium none rgb(240, 240, 240); background-color: yellow;\"><font size=\"2\" face=\"Arial\">$570</font></td>\n<td align=\"right\" class=\"xl72\" style=\"border: medium none rgb(240, 240, 240); background-color: yellow;\"><font size=\"2\" face=\"Arial\">$1,350</font></td>\n<td align=\"right\" class=\"xl72\" style=\"border: medium none rgb(240, 240, 240); background-color: yellow;\"><font size=\"2\" face=\"Arial\">-$644</font></td>\n</tr>\n<tr height=\"16\" style=\"height: 12pt;\">\n<td height=\"16\" class=\"xl67\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent; height: 12pt;\"><font size=\"2\" face=\"Arial\">6</font></td>\n<td align=\"right\" class=\"xl68\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\">-$644</font></td>\n<td class=\"xl65\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\"></font></td>\n<td class=\"xl65\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\"></font></td>\n<td class=\"xl65\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\"></font></td>\n<td align=\"right\" class=\"xl68\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\">$802</font></td>\n<td align=\"right\" class=\"xl68\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\">$285</font></td>\n<td align=\"right\" class=\"xl68\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\">$1,125</font></td>\n<td align=\"right\" class=\"xl68\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\">-$2,856</font></td>\n</tr>\n<tr height=\"16\" style=\"height: 12pt;\">\n<td height=\"16\" class=\"xl67\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent; height: 12pt;\"><font size=\"2\" face=\"Arial\">7</font></td>\n<td align=\"right\" class=\"xl68\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\">-$2,856</font></td>\n<td class=\"xl65\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\"></font></td>\n<td class=\"xl65\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\"></font></td>\n<td class=\"xl65\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\"></font></td>\n<td align=\"right\" class=\"xl68\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\">$830</font></td>\n<td class=\"xl68\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\"></font></td>\n<td align=\"right\" class=\"xl68\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\">$1,125</font></td>\n<td align=\"right\" class=\"xl68\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\">-$4,811</font></td>\n</tr>\n<tr height=\"16\" style=\"height: 12pt;\">\n<td height=\"16\" class=\"xl67\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent; height: 12pt;\"><font size=\"2\" face=\"Arial\">8</font></td>\n<td align=\"right\" class=\"xl68\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\">-$4,811</font></td>\n<td class=\"xl65\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\"></font></td>\n<td class=\"xl65\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\"></font></td>\n<td class=\"xl65\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\"></font></td>\n<td align=\"right\" class=\"xl68\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\">$859</font></td>\n<td class=\"xl68\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\"></font></td>\n<td align=\"right\" class=\"xl68\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\">$1,050</font></td>\n<td align=\"right\" class=\"xl68\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\">-$6,721</font></td>\n</tr>\n<tr height=\"16\" style=\"height: 12pt;\">\n<td height=\"16\" class=\"xl67\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent; height: 12pt;\"><font size=\"2\" face=\"Arial\">9</font></td>\n<td align=\"right\" class=\"xl68\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\">-$6,721</font></td>\n<td class=\"xl65\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\"></font></td>\n<td class=\"xl65\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\"></font></td>\n<td class=\"xl65\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\"></font></td>\n<td align=\"right\" class=\"xl68\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\">$889</font></td>\n<td class=\"xl68\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\"></font></td>\n<td align=\"right\" class=\"xl68\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\">$900</font></td>\n<td align=\"right\" class=\"xl68\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\">-$8,510</font></td>\n</tr>\n<tr height=\"16\" style=\"height: 12pt;\">\n<td height=\"16\" class=\"xl67\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent; height: 12pt;\"><font size=\"2\" face=\"Arial\">10</font></td>\n<td align=\"right\" class=\"xl68\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\">-$8,510</font></td>\n<td class=\"xl65\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\"></font></td>\n<td class=\"xl65\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\"></font></td>\n<td class=\"xl65\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\"></font></td>\n<td align=\"right\" class=\"xl68\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\">$921</font></td>\n<td class=\"xl68\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\"></font></td>\n<td align=\"right\" class=\"xl68\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\">$675</font></td>\n<td align=\"right\" class=\"xl68\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\">-$10,105</font></td>\n</tr>\n<tr height=\"16\" style=\"height: 12pt;\">\n<td height=\"16\" class=\"xl67\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent; height: 12pt;\"><font size=\"2\" face=\"Arial\">11</font></td>\n<td align=\"right\" class=\"xl68\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\">-$10,105</font></td>\n<td class=\"xl65\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\"></font></td>\n<td class=\"xl65\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\"></font></td>\n<td class=\"xl65\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\"></font></td>\n<td align=\"right\" class=\"xl68\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\">$953</font></td>\n<td class=\"xl68\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\"></font></td>\n<td align=\"right\" class=\"xl68\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\">$675</font></td>\n<td align=\"right\" class=\"xl68\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\">-$11,733</font></td>\n</tr>\n<tr height=\"16\" style=\"height: 12pt;\">\n<td height=\"16\" class=\"xl67\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent; height: 12pt;\"><font size=\"2\" face=\"Arial\">12</font></td>\n<td align=\"right\" class=\"xl68\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\">-$11,733</font></td>\n<td class=\"xl65\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\"></font></td>\n<td class=\"xl65\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\"></font></td>\n<td class=\"xl65\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\"></font></td>\n<td align=\"right\" class=\"xl68\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\">$986</font></td>\n<td class=\"xl68\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\"></font></td>\n<td align=\"right\" class=\"xl68\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\">$450</font></td>\n<td align=\"right\" class=\"xl68\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\">-$13,169</font></td>\n</tr>\n<tr height=\"16\" style=\"height: 12pt;\">\n<td height=\"16\" class=\"xl67\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent; height: 12pt;\"><font size=\"2\" face=\"Arial\">13</font></td>\n<td align=\"right\" class=\"xl68\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\">-$13,169</font></td>\n<td class=\"xl65\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\"></font></td>\n<td class=\"xl65\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\"></font></td>\n<td class=\"xl65\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\"></font></td>\n<td align=\"right\" class=\"xl68\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\">$1,021</font></td>\n<td class=\"xl68\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\"></font></td>\n<td align=\"right\" class=\"xl68\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\">$450</font></td>\n<td align=\"right\" class=\"xl68\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\">-$14,640</font></td>\n</tr>\n<tr height=\"16\" style=\"height: 12pt;\">\n<td height=\"16\" class=\"xl67\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent; height: 12pt;\"><font size=\"2\" face=\"Arial\">14</font></td>\n<td align=\"right\" class=\"xl68\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\">-$14,640</font></td>\n<td class=\"xl65\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\"></font></td>\n<td class=\"xl65\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\"></font></td>\n<td class=\"xl65\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\"></font></td>\n<td align=\"right\" class=\"xl68\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\">$1,056</font></td>\n<td class=\"xl68\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\"></font></td>\n<td align=\"right\" class=\"xl68\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\">$225</font></td>\n<td align=\"right\" class=\"xl68\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\">-$15,921</font></td>\n</tr>\n<tr height=\"16\" style=\"height: 12pt;\">\n<td height=\"16\" class=\"xl67\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent; height: 12pt;\"><font size=\"2\" face=\"Arial\">15</font></td>\n<td align=\"right\" class=\"xl68\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\">-$15,921</font></td>\n<td class=\"xl65\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\"></font></td>\n<td class=\"xl65\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\"></font></td>\n<td class=\"xl65\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\"></font></td>\n<td align=\"right\" class=\"xl68\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\">$1,093</font></td>\n<td class=\"xl68\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\"></font></td>\n<td align=\"right\" class=\"xl68\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\">$263</font></td>\n<td align=\"right\" class=\"xl68\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\">-$17,277</font></td>\n</tr>\n<tr height=\"16\" style=\"height: 12pt;\">\n<td height=\"16\" class=\"xl67\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent; height: 12pt;\"><font size=\"2\" face=\"Arial\">16</font></td>\n<td align=\"right\" class=\"xl68\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\">-$17,277</font></td>\n<td class=\"xl65\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\"></font></td>\n<td class=\"xl65\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\"></font></td>\n<td class=\"xl65\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\"></font></td>\n<td align=\"right\" class=\"xl68\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\">$1,132</font></td>\n<td class=\"xl68\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\"></font></td>\n<td align=\"right\" class=\"xl68\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\">$0</font></td>\n<td align=\"right\" class=\"xl68\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\">-$18,408</font></td>\n</tr>\n<tr height=\"16\" style=\"height: 12pt;\">\n<td height=\"16\" class=\"xl67\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent; height: 12pt;\"><font size=\"2\" face=\"Arial\">17</font></td>\n<td align=\"right\" class=\"xl68\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\">-$18,408</font></td>\n<td class=\"xl65\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\"></font></td>\n<td class=\"xl65\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\"></font></td>\n<td class=\"xl65\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\"></font></td>\n<td align=\"right\" class=\"xl68\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\">$1,171</font></td>\n<td class=\"xl68\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\"></font></td>\n<td align=\"right\" class=\"xl68\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\">$0</font></td>\n<td align=\"right\" class=\"xl68\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\">-$19,579</font></td>\n</tr>\n<tr height=\"16\" style=\"height: 12pt;\">\n<td height=\"16\" class=\"xl67\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent; height: 12pt;\"><font size=\"2\" face=\"Arial\">18</font></td>\n<td align=\"right\" class=\"xl68\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\">-$19,579</font></td>\n<td class=\"xl65\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\"></font></td>\n<td class=\"xl65\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\"></font></td>\n<td class=\"xl65\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\"></font></td>\n<td align=\"right\" class=\"xl68\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\">$1,212</font></td>\n<td class=\"xl68\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\"></font></td>\n<td class=\"xl65\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\"></font></td>\n<td align=\"right\" class=\"xl68\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\">-$20,792</font></td>\n</tr>\n<tr height=\"16\" style=\"height: 12pt;\">\n<td height=\"16\" class=\"xl67\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent; height: 12pt;\"><font size=\"2\" face=\"Arial\">19</font></td>\n<td align=\"right\" class=\"xl68\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\">-$20,792</font></td>\n<td class=\"xl65\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\"></font></td>\n<td class=\"xl65\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\"></font></td>\n<td class=\"xl65\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\"></font></td>\n<td align=\"right\" class=\"xl68\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\">$1,255</font></td>\n<td class=\"xl68\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\"></font></td>\n<td class=\"xl65\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\"></font></td>\n<td align=\"right\" class=\"xl68\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\">-$22,046</font></td>\n</tr>\n<tr height=\"16\" style=\"height: 12pt;\">\n<td height=\"16\" class=\"xl67\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent; height: 12pt;\"><font size=\"2\" face=\"Arial\">20</font></td>\n<td align=\"right\" class=\"xl68\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\">-$22,046</font></td>\n<td class=\"xl65\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\"></font></td>\n<td class=\"xl65\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\"></font></td>\n<td class=\"xl65\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\"></font></td>\n<td align=\"right\" class=\"xl68\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\">$1,298</font></td>\n<td class=\"xl68\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\"></font></td>\n<td class=\"xl65\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\"></font></td>\n<td align=\"right\" class=\"xl68\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\">-$23,345</font></td>\n</tr>\n<tr height=\"16\" style=\"height: 12pt;\">\n<td height=\"16\" class=\"xl67\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent; height: 12pt;\"><font size=\"2\" face=\"Arial\">21</font></td>\n<td align=\"right\" class=\"xl68\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\">-$23,345</font></td>\n<td class=\"xl65\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\"></font></td>\n<td class=\"xl65\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\"></font></td>\n<td class=\"xl65\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\"></font></td>\n<td align=\"right\" class=\"xl68\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\">$1,344</font></td>\n<td class=\"xl68\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\"></font></td>\n<td class=\"xl65\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\"></font></td>\n<td align=\"right\" class=\"xl68\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\">-$24,689</font></td>\n</tr>\n<tr height=\"16\" style=\"height: 12pt;\">\n<td height=\"16\" class=\"xl67\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent; height: 12pt;\"><font size=\"2\" face=\"Arial\">22</font></td>\n<td align=\"right\" class=\"xl68\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\">-$24,689</font></td>\n<td class=\"xl65\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\"></font></td>\n<td class=\"xl65\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\"></font></td>\n<td class=\"xl65\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\"></font></td>\n<td align=\"right\" class=\"xl68\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\">$1,391</font></td>\n<td class=\"xl68\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\"></font></td>\n<td class=\"xl65\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\"></font></td>\n<td align=\"right\" class=\"xl68\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\">-$26,079</font></td>\n</tr>\n<tr height=\"16\" style=\"height: 12pt;\">\n<td height=\"16\" class=\"xl67\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent; height: 12pt;\"><font size=\"2\" face=\"Arial\">23</font></td>\n<td align=\"right\" class=\"xl68\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\">-$26,079</font></td>\n<td class=\"xl65\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\"></font></td>\n<td class=\"xl65\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\"></font></td>\n<td class=\"xl65\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\"></font></td>\n<td align=\"right\" class=\"xl68\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\">$1,440</font></td>\n<td class=\"xl68\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\"></font></td>\n<td class=\"xl65\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\"></font></td>\n<td align=\"right\" class=\"xl68\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\">-$27,519</font></td>\n</tr>\n<tr height=\"16\" style=\"height: 12pt;\">\n<td height=\"16\" class=\"xl67\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent; height: 12pt;\"><font size=\"2\" face=\"Arial\">24</font></td>\n<td align=\"right\" class=\"xl68\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\">-$27,519</font></td>\n<td class=\"xl65\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\"></font></td>\n<td class=\"xl65\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\"></font></td>\n<td class=\"xl65\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\"></font></td>\n<td align=\"right\" class=\"xl68\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\">$1,490</font></td>\n<td class=\"xl68\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\"></font></td>\n<td class=\"xl65\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\"></font></td>\n<td align=\"right\" class=\"xl68\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\">-$29,009</font></td>\n</tr>\n<tr height=\"16\" style=\"height: 12pt;\">\n<td height=\"16\" class=\"xl67\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent; height: 12pt;\"><font size=\"2\" face=\"Arial\">25</font></td>\n<td align=\"right\" class=\"xl68\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\">-$29,009</font></td>\n<td class=\"xl65\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\"></font></td>\n<td class=\"xl65\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\"></font></td>\n<td class=\"xl65\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\"></font></td>\n<td align=\"right\" class=\"xl68\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\">$1,542</font></td>\n<td class=\"xl68\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\"></font></td>\n<td class=\"xl65\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\"></font></td>\n<td align=\"right\" class=\"xl68\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\">-$30,551</font></td>\n</tr>\n<tr height=\"16\" style=\"height: 12pt;\">\n<td height=\"16\" class=\"xl67\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent; height: 12pt;\"><font size=\"2\" face=\"Arial\">26</font></td>\n<td align=\"right\" class=\"xl68\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\">-$30,551</font></td>\n<td class=\"xl65\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\"></font></td>\n<td class=\"xl65\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\"></font></td>\n<td class=\"xl65\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\"></font></td>\n<td align=\"right\" class=\"xl68\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\">$1,596</font></td>\n<td class=\"xl68\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\"></font></td>\n<td class=\"xl65\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\"></font></td>\n<td align=\"right\" class=\"xl68\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\">-$32,147</font></td>\n</tr>\n<tr height=\"16\" style=\"height: 12pt;\">\n<td height=\"16\" class=\"xl67\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent; height: 12pt;\"><font size=\"2\" face=\"Arial\">27</font></td>\n<td align=\"right\" class=\"xl68\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\">-$32,147</font></td>\n<td class=\"xl65\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\"></font></td>\n<td class=\"xl65\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\"></font></td>\n<td class=\"xl65\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\"></font></td>\n<td align=\"right\" class=\"xl68\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\">$1,652</font></td>\n<td class=\"xl68\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\"></font></td>\n<td class=\"xl65\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\"></font></td>\n<td align=\"right\" class=\"xl68\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\">-$33,799</font></td>\n</tr>\n<tr height=\"16\" style=\"height: 12pt;\">\n<td height=\"16\" class=\"xl67\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent; height: 12pt;\"><font size=\"2\" face=\"Arial\">28</font></td>\n<td align=\"right\" class=\"xl68\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\">-$33,799</font></td>\n<td class=\"xl65\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\"></font></td>\n<td class=\"xl65\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\"></font></td>\n<td class=\"xl65\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\"></font></td>\n<td align=\"right\" class=\"xl68\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\">$1,710</font></td>\n<td class=\"xl68\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\"></font></td>\n<td class=\"xl65\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\"></font></td>\n<td align=\"right\" class=\"xl68\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\">-$35,509</font></td>\n</tr>\n<tr height=\"16\" style=\"height: 12pt;\">\n<td height=\"16\" class=\"xl67\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent; height: 12pt;\"><font size=\"2\" face=\"Arial\">29</font></td>\n<td align=\"right\" class=\"xl68\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\">-$35,509</font></td>\n<td class=\"xl65\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\"></font></td>\n<td class=\"xl65\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\"></font></td>\n<td class=\"xl65\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\"></font></td>\n<td align=\"right\" class=\"xl68\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\">$1,770</font></td>\n<td class=\"xl68\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\"></font></td>\n<td class=\"xl65\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\"></font></td>\n<td align=\"right\" class=\"xl68\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\">-$37,279</font></td>\n</tr>\n<tr height=\"16\" style=\"height: 12pt;\">\n<td height=\"16\" class=\"xl67\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent; height: 12pt;\"><font size=\"2\" face=\"Arial\">30</font></td>\n<td align=\"right\" class=\"xl68\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\">-$37,279</font></td>\n<td class=\"xl65\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\"></font></td>\n<td class=\"xl65\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\"></font></td>\n<td class=\"xl65\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\"></font></td>\n<td align=\"right\" class=\"xl68\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\">$1,832</font></td>\n<td class=\"xl68\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\"></font></td>\n<td class=\"xl65\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\"></font></td>\n<td align=\"right\" class=\"xl68\" style=\"border: medium none rgb(240, 240, 240); background-color: transparent;\"><font size=\"2\" face=\"Arial\">-$39,110</font></td>\n</tr>\n</tbody>\n</table>\n',1286405747,1286319347,'',0),('2:d91ec01ab0c76c72cfdf7b5cfd7ae733','<p align=\"justify\" style=\"line-height:20px;\">We provide agency services to certify residential and commercial systems as small as 1 kW as Renewable Energy Facilities.</p>\n<p align=\"justify\" style=\"line-height:20px;\">We create, manage, market, sell and fulfill Renewable Energy Credit Certificates on behalf of PV system owners.  We maintain records and fulfill reporting requirements as required under state laws and regulations.</p>\n<p align=\"justify\" style=\"line-height:20px;\">We provide financing assistance for PV systems, establish eligibility for federal and state incentives and monitor and report on new opportunities for system owners to maximize the financial return on their systems.</p>\n<p align=\"justify\" style=\"line-height:20px;\">We provide research data on the adoption and use of solar photovoltaics by small system owners.</p>\n<p align=\"justify\" style=\"line-height:20px;\">We advocate on behalf of small PV system owners for state, federal and local incentives to accelerate the adoption of distributed generation of solar electricity.</p>\n<p align=\"justify\" style=\"line-height:20px;\"><a href=\"renewable-energy-credit-rec-management-program-pv-system-owners\">Learn more</a></p>\n',1286405847,1286319447,'',0),('2:ccdfbc2002f71b078d631f837224ee8f','<div class=\"banner-about\">\n<div class=\"banner-content\">\n<div class=\"title-about\">Special Offer for PV System Owners</div>\n<div class=\"content\">Sign-up for USPV\'s REC Management Program today.  No up-front or out-of-pocket costs.  Don\'t miss out on this opportunity to participate in the Renewable Energy Credit markets and earn hundreds or even thousands of dollars! <a href=\"renewable-energy-credit-rec-management-program-pv-system-owners\">Learn more</a></div>\n</div>\n</div>\n',1286405981,1286319581,'',0),('1:35fa196aa0f906b5d3e9cba2bf407f86','<p><a href=\"renewable-energy-credit-rec-management-program-pv-system-owners\">Learn more</a></p>\n',1286406021,1286319621,'',0),('2:068654534ce88d7cf0141cc5d6a0ace4','<p align=\"center\" style=\"line-height:20px;\"><img src=\"./sites/default/files/images/SunHands_243_447.jpg\" alt=\"\" /></p>\n<p align=\"justify\" style=\"line-height:20px;\"><i><a href=\"renewable-energy-credit-rec-management-program-pv-system-owners\">U.S Photovoltaics, Inc. has developed a streamlined program to allow small solar PV systems to participate in the REC market with no up-front or out-of-pocket costs.</a></i></p>\n<p align=\"justify\" style=\"line-height:20px;\"><a href=\"renewable-energy-credit-rec-management-program-pv-system-owners\">Learn more</a></p>\n',1286406200,1286319800,'',0),('1:ff410058c07c6ab03ad65bf33ef80396','<p>Sign-up for USPV\'s REC Management Program today.  No up-front or out-of-pocket costs.  Don\'t miss out on this opportunity to participate in the Renewable Energy Credit markets and earn hundreds or even thousands of dollars!</p>\n<p><a href=\"renewable-energy-credit-rec-management-program-pv-system-owners\">Learn more</a></p>\n',1286515979,1286429579,'',0),('1:924960af13ca20de64b27108e49073f1','<p>Twenty-eight states plus the District of Columbia have enacted Renewable Energy Portfolio Standards (RPS) legislation to accelerate the adoption of renewable energy sources for the production of electricity.  Maryland’s program requires electricity suppliers to derive a defined percentage of their total electrical production from renewable sources.  Companies that fail to meet the Standard must either purchase Renewable Energy Credits (RECs) from state-certified Renewable Energy Facilities (REFs) sufficient to meet the requirement or pay Compliance Fees to a State fund that will be used to encourage production of additional renewable electricity capacity.</p>\n<p>Unlike many state RPS programs, Maryland requires that solar electrical production be a part of each electrical supplier’s portfolio.  In 2008, the first year with a specific solar requirement, suppliers must produce .005% of their electricity from solar.  The percentage to be provided by solar sources increases steadily each year through 2022 when a full 2% of Maryland’s electricity needs are to be met by solar production.  The Compliance Fee for companies that do not meet the standard or purchase RECs equal to the Standard is $0.45 per kWh in 2008 (equivalent to $450 per mWh or REC energy equivalent).  The Compliance Fee declines on a per kWh basis every other year by $0.05 per kWh while the amount of the solar production requirement increases.  Thus, in 2010 the Compliance Fee is $0.40 per kWh, $0.35 in 2012 and by 2023 is reduced to $0.05 per kWh, where it remains.  </p>\n<p>Any Solar REF in Maryland that wishes to create RECs based on its production must first offer the RECs to an electricity supplier subject to the RPS.  Suppliers who purchase RECs from Maryland solar producers must do so under a contract that covers the expected production of the REF for a minimum of 15 years, although the price per REC may vary.  However, REFs smaller than 10 kW must be paid the full value of the 15-year contract in a single advance payment under any such agreement.</p>\n<p>While the value of Solar RECs produced by Maryland facilities is unclear at this time and the willingness of electricity suppliers to pre-pay small facilities may be limited, the opportunity for small producers to monetize part of their investment is significant. </p>\n<p>There is likely to be an advantage to producers who participate in the REC program earlier than others both because of the declining Compliance Fees contained in the legislation and the increased supply of available RECs from new facilities certain to come online in future months and years.</p>\n<p>To sign-up or learn more about this program, call Fred Ugast at 240-344-2657 or send an email to <a href=\"mailto:fred.ugast@uspvinc.com\">fred.ugast@uspvinc.com</a>.</p>\n',1286515988,1286429588,'',0),('2:c40137ce1f5efd1efe71d951e568aa92','<div class=\"left\">\n<p>\nIf you have or are thinking about installing a PV system, give us a call for a free, no-obligation consultation. We’ll provide you with the information you need to understand the financial opportunities and variables that you should consider as you plan your system.\n</p>\n<p>\nAt USPV, your project’s success is our business.\n</p>\n<p>\nLearn more about our<br />\n<a href=\"./renewable-energy-credit-rec-management-program-pv-system-owners\"><br />\nRenewable Energy Credit (REC) Management Program<br />\n</a>\n</p>\n<p>\nTo learn more call us at 240-344-2657 or send an email to <strong>sales@uspvinc.com</strong>.\n</p>\n</div>\n<div class=\"left\">\n<h2>Pre-Bid Owner Agency Services</h2>\n<ul>\n<li>\nWe conduct a needs analysis, site survey and feasibility study to help you identify the system most appropriate for your project.\n</li>\n<li>\nWe develop a bid package with specifications,  identify qualified bidders, issue Requests For Quotes, respond to bidder inquiries and manage the bidding process.\n</li>\n<li>\nWe prepare applications for State and Federal grants and meet with your accountant to ensure your ability to utilize the available tax credits and deductions that will be available.\n</li>\n<li>\nWe provide you with a bid summary of each proposal along with a detailed financial analysis to help you complete the contractor selection process.\n</li>\n<li>\nWe negotiate on your behalf to ensure the final contract will provide appropriate protections and guarantees.\n</li>\n<li>\nWe provide financing assistance, identify funding strategies and provide support as required to secure final project financing.\n</li>\n</ul>\n</div>\n<div class=\"left\">\n<h2>Pre-Bid Owner Agency Services</h2>\n<ul>\n<li>\nWe act as your representative during the installation process to ensure satisfactory completion of the project.\n</li>\n<li>\nWe complete a commissioning checklist process to ensure the installed system meets the specifications and performance standards in the contract.\n</li>\n<li>\nWe complete any state, federal or local certifications required to secure the financial incentives your project qualifies for.\n</li>\n<li>\nWe provide agency services to certify your system as a Renewable Energy Facilitiy.\n</li>\n<li>\nWe act as your agent to establish an account at PJM-EIS GATS to enable your system to earn RECs. PJM-EIS is the state-designated entity that manages all Solar RECs in the program.\n</li>\n<li>\nWe create, manage, market, sell and fulfill Renewable Energy Credit Certificates on your behalf. We maintain records and fulfill reporting requirements as required under state laws and regulations.\n</li>\n</ul>\n</div>\n',1286515996,1286429596,'',0),('2:8c09a037e7bbc0b212e6b05adf9e339b','<ul class=\"content-ul-li\">\n<li>We provide agency services to certify residential and commercial systems as small as 1 kW as Renewable Energy Facilities.</li>\n<li>We create, manage, market, sell and fulfill Renewable Energy Credit Certificates on behalf of PV system owners.  We maintain records and fulfill reporting requirements as required under state laws and regulations.</li>\n<li>We provide financing assistance for PV systems, establish eligibility for federal and state incentives and monitor and report on new opportunities for system owners to maximize the financial return on their systems.</li>\n<li>We provide research data on the adoption and use of solar photovoltaics by small system owners.</li>\n<li>We advocate on behalf of small PV system owners for state, federal and local incentives to accelerate the adoption of distributed generation of solar electricity.</li>\n</ul>\n',1286935842,1286849442,'',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 '',
  `data` longblob,
  `expire` int(11) NOT NULL default '0',
  `created` int(11) NOT NULL default '0',
  `headers` text,
  `serialized` smallint(6) NOT NULL default '0',
  PRIMARY KEY  (`cid`),
  KEY `expire` (`expire`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!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-5ad47b2d84c9efb849639b360ae75317','a:40:{s:3:\"#id\";s:9:\"node-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:1265112049;}s:4:\"type\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:6:\"banner\";}s:8:\"language\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:0:\"\";}s:7:\"changed\";a:2:{s:5:\"#type\";s:6:\"hidden\";s:14:\"#default_value\";N;}s:5:\"title\";a:6:{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:10:\"body_field\";a:7:{s:12:\"#after_build\";a:2:{i:0;s:14:\"node_teaser_js\";i:1;s:26:\"node_teaser_include_verify\";}s:7:\"#prefix\";s:32:\"<div class=\"body-field-wrapper\">\";s:7:\"#suffix\";s:6:\"</div>\";s:9:\"teaser_js\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:5:\"#rows\";i:10;s:7:\"#teaser\";s:9:\"edit-body\";s:16:\"#teaser_checkbox\";s:19:\"edit-teaser-include\";s:9:\"#disabled\";b:1;}s:14:\"teaser_include\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:25:\"Show summary in full view\";s:14:\"#default_value\";b:1;s:7:\"#prefix\";s:29:\"<div class=\"teaser-checkbox\">\";s:7:\"#suffix\";s:6:\"</div>\";}s:4:\"body\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:4:\"Body\";s:14:\"#default_value\";N;s:5:\"#rows\";i:20;s:9:\"#required\";b:0;}s:6:\"format\";a:9:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:12:\"Input format\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:7:\"#weight\";N;s:17:\"#element_validate\";a:1:{i:0;s:20:\"filter_form_validate\";}i:1;a:7:{s:5:\"#type\";s:5:\"radio\";s:6:\"#title\";s:13:\"Filtered HTML\";s:14:\"#default_value\";i:1;s:13:\"#return_value\";s:1:\"1\";s:8:\"#parents\";a:1:{i:0;s:6:\"format\";}s:12:\"#description\";s:306:\"<ul class=\"tips\"><li>Web page addresses and e-mail addresses turn into links automatically.</li><li>Allowed HTML tags: &lt;a&gt; &lt;em&gt; &lt;strong&gt; &lt;cite&gt; &lt;code&gt; &lt;ul&gt; &lt;ol&gt; &lt;li&gt; &lt;dl&gt; &lt;dt&gt; &lt;dd&gt;</li><li>Lines and paragraphs break automatically.</li></ul>\";s:3:\"#id\";s:13:\"edit-format-1\";}i:2;a:7:{s:5:\"#type\";s:5:\"radio\";s:6:\"#title\";s:9:\"Full HTML\";s:14:\"#default_value\";i:1;s:13:\"#return_value\";s:1:\"2\";s:8:\"#parents\";a:1:{i:0;s:6:\"format\";}s:12:\"#description\";s:151:\"<ul class=\"tips\"><li>Web page addresses and e-mail addresses turn into links automatically.</li><li>Lines and paragraphs break automatically.</li></ul>\";s:3:\"#id\";s:13:\"edit-format-2\";}i:3;a:1:{s:6:\"#value\";s:80:\"<p><a href=\"/uspv/filter/tips\">More information about formatting options</a></p>\";}}}s:5:\"#node\";O:8:\"stdClass\":14:{s:3:\"uid\";s:1:\"1\";s:4:\"name\";s:5:\"admin\";s:4:\"type\";s:6:\"banner\";s:8:\"language\";s:0:\"\";s:4:\"body\";N;s:5:\"title\";N;s:6:\"format\";N;s:6:\"status\";b:1;s:7:\"promote\";b:1;s:6:\"sticky\";b:0;s:7:\"created\";i:1265112049;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:13:\"primary-links\";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:20:\"revision_information\";a:7:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:20:\"Revision information\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:7:\"#weight\";i:20;s:8:\"revision\";a:4:{s:7:\"#access\";b:1;s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:19:\"Create new revision\";s:14:\"#default_value\";b:0;}s:3:\"log\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:11:\"Log message\";s:14:\"#default_value\";s:0:\"\";s:5:\"#rows\";i:2;s:12:\"#description\";s:104:\"An explanation of the additions or updates being made to help other authors understand your motivations.\";}}s:6:\"author\";a:8:{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:7:\"#weight\";i:20;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:35:\"Leave blank for <em>Anonymous</em>.\";}s:4:\"date\";a:4:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:11:\"Authored on\";s:10:\"#maxlength\";i:25;s:12:\"#description\";s:91:\"Format: <em>2010-02-02 20:00:49 +0800</em>. Leave blank to use the time of form submission.\";}}s:7:\"options\";a:9:{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:7:\"#weight\";i:25;s:6:\"status\";a:3:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:9:\"Published\";s:14:\"#default_value\";b: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\";b: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\";b:0;}}s:7:\"buttons\";a:2:{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:16:\"node_form_submit\";}}s:7:\"preview\";a:4:{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:2:{i:0;s:18:\"node_form_validate\";i:1;s:21:\"image_attach_validate\";}s:6:\"#theme\";a:2:{i:0;s:16:\"banner_node_form\";i:1;s:9:\"node_form\";}s:11:\"#parameters\";a:3:{i:0;s:16:\"banner_node_form\";i:1;a:3:{s:7:\"storage\";N;s:9:\"submitted\";b:0;s:4:\"post\";a:0:{}}i:2;a:4:{s:3:\"uid\";s:1:\"1\";s:4:\"name\";s:5:\"admin\";s:4:\"type\";s:6:\"banner\";s:8:\"language\";s:0:\"\";}}s:9:\"#build_id\";s:37:\"form-5ad47b2d84c9efb849639b360ae75317\";s:5:\"#type\";s:4:\"form\";s:11:\"#programmed\";b:0;s:13:\"form_build_id\";a:4:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:37:\"form-5ad47b2d84c9efb849639b360ae75317\";s:3:\"#id\";s:37:\"form-5ad47b2d84c9efb849639b360ae75317\";s:5:\"#name\";s:13:\"form_build_id\";}s:6:\"#token\";s:16:\"banner_node_form\";s:10:\"form_token\";a:3:{s:3:\"#id\";s:32:\"edit-banner-node-form-form-token\";s:5:\"#type\";s:5:\"token\";s:14:\"#default_value\";s:32:\"d67582aff48f0b49d1b1bd39fffa03fa\";}s:7:\"form_id\";a:3:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:16:\"banner_node_form\";s:3:\"#id\";s:21:\"edit-banner-node-form\";}s:12:\"#description\";N;s:11:\"#attributes\";a:1:{s:7:\"enctype\";s:19:\"multipart/form-data\";}s:9:\"#required\";b:0;s:5:\"#tree\";b:0;s:8:\"#parents\";a:0:{}s:7:\"#method\";s:4:\"post\";s:7:\"#action\";s:21:\"/uspv/node/add/banner\";s:16:\"comment_settings\";a:7:{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:7:\"#weight\";i:30;s:7:\"comment\";a:4:{s:5:\"#type\";s:6:\"radios\";s:8:\"#parents\";a:1:{i:0;s:7:\"comment\";}s:14:\"#default_value\";s:1:\"2\";s:8:\"#options\";a:3:{i:0;s:8:\"Disabled\";i:1;s:9:\"Read only\";i:2;s:10:\"Read/Write\";}}}s:6:\"#cache\";b:1;s:4:\"menu\";a:20:{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:5:\"#tree\";b:1;s:7:\"#weight\";i:-2;s:11:\"#attributes\";a:1:{s:5:\"class\";s:14:\"menu-item-form\";}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:0;}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:5:\"#item\";a:12:{s:10:\"link_title\";s:0:\"\";s:4:\"mlid\";i:0;s:4:\"plid\";i:0;s:9:\"menu_name\";s:13:\"primary-links\";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:10:\"link_title\";a:5:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:15:\"Menu link title\";s:14:\"#default_value\";s:0:\"\";s:12:\"#description\";s:133:\"The link text corresponding to this item that should appear in the menu. Leave blank if you do not wish to add this post to the menu.\";s:9:\"#required\";b:0;}s:6:\"parent\";a:6:{s:5:\"#type\";s:6:\"select\";s:6:\"#title\";s:11:\"Parent item\";s:14:\"#default_value\";s:15:\"primary-links:0\";s:8:\"#options\";a:88:{s:16:\"menu-main-menu:0\";s:11:\"<Main Menu>\";s:18:\"menu-main-menu:283\";s:8:\"-- about\";s:18:\"menu-main-menu:284\";s:12:\"-- resources\";s:18:\"menu-main-menu:285\";s:11:\"-- services\";s:18:\"menu-main-menu:286\";s:17:\"-- special offers\";s:12:\"navigation:0\";s:12:\"<Navigation>\";s:12:\"navigation:9\";s:26:\"-- Compose tips (disabled)\";s:13:\"navigation:21\";s:13:\"-- My account\";s:14:\"navigation:114\";s:20:\"-- Search (disabled)\";s:14:\"navigation:244\";s:22:\"-- Site map (disabled)\";s:13:\"navigation:11\";s:17:\"-- Create content\";s:14:\"navigation:476\";s:11:\"---- Banner\";s:14:\"navigation:441\";s:10:\"---- Image\";s:14:\"navigation:289\";s:21:\"---- Newsletter issue\";s:14:\"navigation:106\";s:9:\"---- Page\";s:14:\"navigation:388\";s:10:\"---- Panel\";s:14:\"navigation:107\";s:10:\"---- Story\";s:12:\"navigation:2\";s:13:\"-- Administer\";s:13:\"navigation:10\";s:23:\"---- Content management\";s:13:\"navigation:27\";s:15:\"------ Comments\";s:13:\"navigation:28\";s:14:\"------ Content\";s:13:\"navigation:29\";s:20:\"------ Content types\";s:14:\"navigation:462\";s:22:\"------ Image galleries\";s:14:\"navigation:463\";s:19:\"------ Image import\";s:14:\"navigation:290\";s:18:\"------ Newsletters\";s:14:\"navigation:299\";s:20:\"-------- Sent issues\";s:14:\"navigation:293\";s:21:\"-------- Draft issues\";s:14:\"navigation:297\";s:20:\"-------- Newsletters\";s:14:\"navigation:301\";s:22:\"-------- Subscriptions\";s:13:\"navigation:42\";s:20:\"------ Post settings\";s:13:\"navigation:43\";s:21:\"------ RSS publishing\";s:13:\"navigation:94\";s:15:\"------ Taxonomy\";s:13:\"navigation:17\";s:18:\"---- Site building\";s:13:\"navigation:25\";s:13:\"------ Blocks\";s:14:\"navigation:424\";s:20:\"------ Bulk Exporter\";s:13:\"navigation:38\";s:12:\"------ Menus\";s:14:\"navigation:282\";s:18:\"-------- Main Menu\";s:13:\"navigation:89\";s:19:\"-------- Navigation\";s:13:\"navigation:90\";s:22:\"-------- Primary links\";s:13:\"navigation:91\";s:24:\"-------- Secondary links\";s:14:\"navigation:387\";s:18:\"------ Mini panels\";s:13:\"navigation:39\";s:14:\"------ Modules\";s:14:\"navigation:412\";s:12:\"------ Pages\";s:14:\"navigation:360\";s:13:\"------ Panels\";s:13:\"navigation:49\";s:13:\"------ Themes\";s:14:\"navigation:335\";s:15:\"------ Triggers\";s:14:\"navigation:257\";s:12:\"------ Views\";s:13:\"navigation:18\";s:23:\"---- Site configuration\";s:13:\"navigation:23\";s:14:\"------ Actions\";s:14:\"navigation:119\";s:26:\"------ Administration menu\";s:13:\"navigation:24\";s:27:\"------ Administration theme\";s:13:\"navigation:26\";s:17:\"------ Clean URLs\";s:13:\"navigation:30\";s:20:\"------ Date and time\";s:13:\"navigation:33\";s:22:\"------ Error reporting\";s:13:\"navigation:34\";s:18:\"------ File system\";s:13:\"navigation:35\";s:20:\"------ Image toolkit\";s:14:\"navigation:442\";s:13:\"------ Images\";s:13:\"navigation:36\";s:20:\"------ Input formats\";s:13:\"navigation:37\";s:25:\"------ Logging and alerts\";s:14:\"navigation:100\";s:25:\"-------- Database logging\";s:14:\"navigation:245\";s:17:\"------ Nice Menus\";s:13:\"navigation:40\";s:18:\"------ Performance\";s:14:\"navigation:120\";s:22:\"------ Search settings\";s:14:\"navigation:291\";s:17:\"------ Simplenews\";s:14:\"navigation:294\";s:16:\"-------- General\";s:14:\"navigation:295\";s:19:\"-------- Newsletter\";s:14:\"navigation:300\";s:21:\"-------- Subscription\";s:14:\"navigation:298\";s:18:\"-------- Send mail\";s:13:\"navigation:46\";s:23:\"------ Site information\";s:13:\"navigation:47\";s:23:\"------ Site maintenance\";s:14:\"navigation:246\";s:15:\"------ Site map\";s:13:\"navigation:20\";s:20:\"---- User management\";s:13:\"navigation:22\";s:19:\"------ Access rules\";s:13:\"navigation:41\";s:18:\"------ Permissions\";s:13:\"navigation:45\";s:12:\"------ Roles\";s:13:\"navigation:50\";s:20:\"------ User settings\";s:13:\"navigation:51\";s:12:\"------ Users\";s:13:\"navigation:16\";s:12:\"---- Reports\";s:13:\"navigation:93\";s:25:\"------ Recent log entries\";s:13:\"navigation:96\";s:33:\"------ Top \'access denied\' errors\";s:13:\"navigation:97\";s:34:\"------ Top \'page not found\' errors\";s:14:\"navigation:121\";s:25:\"------ Top search phrases\";s:14:\"navigation:105\";s:24:\"------ Available updates\";s:13:\"navigation:48\";s:20:\"------ Status report\";s:13:\"navigation:15\";s:9:\"---- Help\";s:12:\"navigation:4\";s:10:\"-- Log out\";s:15:\"primary-links:0\";s:15:\"<Primary links>\";s:17:\"secondary-links:0\";s:17:\"<Secondary links>\";}s:12:\"#description\";s:156:\"The maximum depth for an item and all its children is fixed at 9. Some menu items may not be available as parents if selecting them would exceed this limit.\";s:11:\"#attributes\";a:1:{s:5:\"class\";s:17:\"menu-title-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:107:\"Optional. In the menu, the heavier items will sink and the lighter items will be positioned nearer the top.\";}}s:7:\"#submit\";a:2:{i:0;s:21:\"menu_node_form_submit\";i:1;s:29:\"image_attach_node_form_submit\";}s:11:\"#pre_render\";a:1:{i:0;s:27:\"content_alter_extra_weights\";}s:21:\"#content_extra_fields\";a:6:{s:5:\"title\";a:3:{s:5:\"label\";s:5:\"Title\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:-5;}s:10:\"body_field\";a:4:{s:5:\"label\";s:4:\"Body\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:0;s:4:\"view\";s:4:\"body\";}s:20:\"revision_information\";a:3:{s:5:\"label\";s:20:\"Revision information\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:20;}s:16:\"comment_settings\";a:3:{s:5:\"label\";s:16:\"Comment settings\";s:11:\"description\";s:20:\"Comment module form.\";s:6:\"weight\";i:30;}s:4:\"menu\";a:3:{s:5:\"label\";s:13:\"Menu settings\";s:11:\"description\";s:17:\"Menu module form.\";s:6:\"weight\";i:-2;}s:12:\"image_attach\";a:3:{s:5:\"label\";s:15:\"Attached images\";s:11:\"description\";s:25:\"Image Attach module form.\";s:6:\"weight\";i:0;}}s:12:\"image_attach\";a:9:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:15:\"Attached images\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:12:\"#description\";s:23:\"You may attach 1 image.\";s:4:\"iids\";a:7:{s:5:\"#type\";s:6:\"select\";s:14:\"#default_value\";N;s:9:\"#multiple\";b:1;s:5:\"#size\";i:6;s:6:\"#title\";s:15:\"Existing images\";s:8:\"#options\";a:1:{i:0;s:8:\"- None -\";}s:12:\"#description\";s:54:\"Choose existing images if you do not upload a new one.\";}s:5:\"image\";a:2:{s:5:\"#type\";s:4:\"file\";s:6:\"#title\";s:12:\"Upload image\";}s:11:\"image_title\";a:4:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:11:\"Image title\";s:14:\"#default_value\";s:0:\"\";s:12:\"#description\";s:72:\"The title the image will be shown with. Leave blank to use the filename.\";}s:21:\"image_attach_multiple\";a:4:{s:5:\"#type\";s:6:\"submit\";s:6:\"#value\";s:6:\"Attach\";s:9:\"#validate\";a:1:{i:0;s:21:\"image_attach_validate\";}s:7:\"#submit\";a:1:{i:0;s:29:\"image_attach_image_add_submit\";}}}s:12:\"#cache_token\";s:32:\"53cd848c8529e6d857bb7de8ab069c69\";}',1265133650,1265112050,'',1),('form_form-150bc82e0e196b8ae17c4eb181e19cb4','a:39:{s:3:\"#id\";s:9:\"node-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:\"1265202538\";}s:4:\"type\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:4:\"page\";}s:8:\"language\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:0:\"\";}s:7:\"changed\";a:2:{s:5:\"#type\";s:6:\"hidden\";s:14:\"#default_value\";s:10:\"1265202538\";}s:5:\"title\";a:6:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:5:\"Title\";s:9:\"#required\";b:1;s:14:\"#default_value\";s:9:\"resources\";s:10:\"#maxlength\";i:255;s:7:\"#weight\";i:-5;}s:10:\"body_field\";a:7:{s:12:\"#after_build\";a:2:{i:0;s:14:\"node_teaser_js\";i:1;s:26:\"node_teaser_include_verify\";}s:7:\"#prefix\";s:32:\"<div class=\"body-field-wrapper\">\";s:7:\"#suffix\";s:6:\"</div>\";s:9:\"teaser_js\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:5:\"#rows\";i:10;s:7:\"#teaser\";s:9:\"edit-body\";s:16:\"#teaser_checkbox\";s:19:\"edit-teaser-include\";s:9:\"#disabled\";b:1;}s:14:\"teaser_include\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:25:\"Show summary in full view\";s:14:\"#default_value\";b:1;s:7:\"#prefix\";s:29:\"<div class=\"teaser-checkbox\">\";s:7:\"#suffix\";s:6:\"</div>\";}s:4:\"body\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:4:\"Body\";s:14:\"#default_value\";s:17:\"resources content\";s:5:\"#rows\";i:20;s:9:\"#required\";b:0;}s:6:\"format\";a:9:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:12:\"Input format\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:7:\"#weight\";N;s:17:\"#element_validate\";a:1:{i:0;s:20:\"filter_form_validate\";}i:1;a:7:{s:5:\"#type\";s:5:\"radio\";s:6:\"#title\";s:13:\"Filtered HTML\";s:14:\"#default_value\";s:1:\"1\";s:13:\"#return_value\";s:1:\"1\";s:8:\"#parents\";a:1:{i:0;s:6:\"format\";}s:12:\"#description\";s:306:\"<ul class=\"tips\"><li>Web page addresses and e-mail addresses turn into links automatically.</li><li>Allowed HTML tags: &lt;a&gt; &lt;em&gt; &lt;strong&gt; &lt;cite&gt; &lt;code&gt; &lt;ul&gt; &lt;ol&gt; &lt;li&gt; &lt;dl&gt; &lt;dt&gt; &lt;dd&gt;</li><li>Lines and paragraphs break automatically.</li></ul>\";s:3:\"#id\";s:13:\"edit-format-1\";}i:2;a:7:{s:5:\"#type\";s:5:\"radio\";s:6:\"#title\";s:9:\"Full HTML\";s:14:\"#default_value\";s:1:\"1\";s:13:\"#return_value\";s:1:\"2\";s:8:\"#parents\";a:1:{i:0;s:6:\"format\";}s:12:\"#description\";s:151:\"<ul class=\"tips\"><li>Web page addresses and e-mail addresses turn into links automatically.</li><li>Lines and paragraphs break automatically.</li></ul>\";s:3:\"#id\";s:13:\"edit-format-2\";}i:3;a:1:{s:6:\"#value\";s:80:\"<p><a href=\"/uspv/filter/tips\">More information about formatting options</a></p>\";}}}s:5:\"#node\";O:8:\"stdClass\":31:{s:3:\"nid\";s:1:\"4\";s:4:\"type\";s:4:\"page\";s:8:\"language\";s:0:\"\";s:3:\"uid\";s:1:\"1\";s:6:\"status\";s:1:\"1\";s:7:\"created\";s:10:\"1265202538\";s:7:\"changed\";s:10:\"1265202538\";s:7:\"comment\";s:1:\"0\";s:7:\"promote\";s:1:\"0\";s:8:\"moderate\";s:1:\"0\";s:6:\"sticky\";s:1:\"0\";s:4:\"tnid\";s:1:\"0\";s:9:\"translate\";s:1:\"0\";s:3:\"vid\";s:1:\"4\";s:12:\"revision_uid\";s:1:\"1\";s:5:\"title\";s:9:\"resources\";s:4:\"body\";s:17:\"resources content\";s:6:\"teaser\";s:17:\"resources content\";s:3:\"log\";N;s:18:\"revision_timestamp\";s:10:\"1265202538\";s:6:\"format\";s:1:\"1\";s:4:\"name\";s:5:\"admin\";s:7:\"picture\";s:0:\"\";s:4:\"data\";s:6:\"a:0:{}\";s:22:\"last_comment_timestamp\";s:10:\"1265202538\";s:17:\"last_comment_name\";N;s:13:\"comment_count\";s:1:\"0\";s:8:\"taxonomy\";a:0:{}s:4:\"date\";s:25:\"2010-02-03 21:08:58 +0800\";s:8:\"revision\";b:0;s:4:\"menu\";a:48:{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:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:3:\"fit\";s:1:\"2\";s:12:\"number_parts\";s:1:\"2\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:9:\"resources\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:4:\"type\";s:1:\"4\";s:14:\"block_callback\";s:0:\"\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"0\";s:4:\"file\";s:0:\"\";s:9:\"menu_name\";s:14:\"menu-main-menu\";s:4:\"mlid\";s:3:\"284\";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:9:\"resources\";s:7:\"options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:9:\"resources\";}}s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"284\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:4:\"href\";s:6:\"node/4\";s:6:\"access\";b:1;s:17:\"localized_options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:9:\"resources\";}}s:18:\"parent_depth_limit\";i:8;}}s:20:\"revision_information\";a:7:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:20:\"Revision information\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:7:\"#weight\";i:20;s:8:\"revision\";a:4:{s:7:\"#access\";b:1;s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:19:\"Create new revision\";s:14:\"#default_value\";b:0;}s:3:\"log\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:11:\"Log message\";s:14:\"#default_value\";s:0:\"\";s:5:\"#rows\";i:2;s:12:\"#description\";s:104:\"An explanation of the additions or updates being made to help other authors understand your motivations.\";}}s:6:\"author\";a:8:{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:7:\"#weight\";i:20;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:35:\"Leave blank for <em>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:91:\"Format: <em>2010-02-03 21:08:58 +0800</em>. Leave blank to use the time of form submission.\";s:14:\"#default_value\";s:25:\"2010-02-03 21:08:58 +0800\";}}s:7:\"options\";a:9:{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:7:\"#weight\";i:25;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:\"buttons\";a:3:{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:16:\"node_form_submit\";}}s:7:\"preview\";a:4:{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:6:\"#theme\";a:2:{i:0;s:14:\"page_node_form\";i:1;s:9:\"node_form\";}s:11:\"#parameters\";a:3:{i:0;s:14:\"page_node_form\";i:1;a:3:{s:7:\"storage\";N;s:9:\"submitted\";b:0;s:4:\"post\";a:0:{}}i:2;r:83;}s:9:\"#build_id\";s:37:\"form-150bc82e0e196b8ae17c4eb181e19cb4\";s:5:\"#type\";s:4:\"form\";s:11:\"#programmed\";b:0;s:13:\"form_build_id\";a:4:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:37:\"form-150bc82e0e196b8ae17c4eb181e19cb4\";s:3:\"#id\";s:37:\"form-150bc82e0e196b8ae17c4eb181e19cb4\";s:5:\"#name\";s:13:\"form_build_id\";}s:6:\"#token\";s:14:\"page_node_form\";s:10:\"form_token\";a:3:{s:3:\"#id\";s:30:\"edit-page-node-form-form-token\";s:5:\"#type\";s:5:\"token\";s:14:\"#default_value\";s:32:\"6b40b29122896b9ac53559eadff0d5b6\";}s:7:\"form_id\";a:3:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:14:\"page_node_form\";s:3:\"#id\";s:19:\"edit-page-node-form\";}s:12:\"#description\";N;s:11:\"#attributes\";a:0:{}s:9:\"#required\";b:0;s:5:\"#tree\";b:0;s:8:\"#parents\";a:0:{}s:7:\"#method\";s:4:\"post\";s:7:\"#action\";s:17:\"/uspv/node/4/edit\";s:16:\"comment_settings\";a:7:{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:7:\"#weight\";i:30;s:7:\"comment\";a:4:{s:5:\"#type\";s:6:\"radios\";s:8:\"#parents\";a:1:{i:0;s:7:\"comment\";}s:14:\"#default_value\";s:1:\"0\";s:8:\"#options\";a:3:{i:0;s:8:\"Disabled\";i:1;s:9:\"Read only\";i:2;s:10:\"Read/Write\";}}}s:6:\"#cache\";b:1;s:4:\"menu\";a:21:{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:5:\"#tree\";b:1;s:7:\"#weight\";i:-2;s:11:\"#attributes\";a:1:{s:5:\"class\";s:14:\"menu-item-form\";}s:6:\"delete\";a:2:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:22:\"Delete this menu item.\";}s:4:\"mlid\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:3:\"284\";}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\";s:1:\"1\";}s:7:\"options\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:9:\"resources\";}}}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:5:\"#item\";a:48:{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:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:3:\"fit\";s:1:\"2\";s:12:\"number_parts\";s:1:\"2\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:9:\"resources\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:4:\"type\";s:1:\"4\";s:14:\"block_callback\";s:0:\"\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"0\";s:4:\"file\";s:0:\"\";s:9:\"menu_name\";s:14:\"menu-main-menu\";s:4:\"mlid\";s:3:\"284\";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:9:\"resources\";s:7:\"options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:9:\"resources\";}}s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"284\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:4:\"href\";s:6:\"node/4\";s:6:\"access\";b:1;s:17:\"localized_options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:9:\"resources\";}}s:18:\"parent_depth_limit\";i:8;}s:10:\"link_title\";a:5:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:15:\"Menu link title\";s:14:\"#default_value\";s:9:\"resources\";s:12:\"#description\";s:133:\"The link text corresponding to this item that should appear in the menu. Leave blank if you do not wish to add this post to the menu.\";s:9:\"#required\";b:0;}s:6:\"parent\";a:6:{s:5:\"#type\";s:6:\"select\";s:6:\"#title\";s:11:\"Parent item\";s:14:\"#default_value\";s:16:\"menu-main-menu:0\";s:8:\"#options\";a:93:{s:16:\"menu-main-menu:0\";s:11:\"<Main Menu>\";s:18:\"menu-main-menu:283\";s:8:\"-- about\";s:18:\"menu-main-menu:285\";s:11:\"-- services\";s:18:\"menu-main-menu:286\";s:17:\"-- special offers\";s:12:\"navigation:0\";s:12:\"<Navigation>\";s:12:\"navigation:9\";s:26:\"-- Compose tips (disabled)\";s:13:\"navigation:21\";s:13:\"-- My account\";s:14:\"navigation:114\";s:20:\"-- Search (disabled)\";s:14:\"navigation:244\";s:22:\"-- Site map (disabled)\";s:13:\"navigation:11\";s:17:\"-- Create content\";s:14:\"navigation:476\";s:11:\"---- Banner\";s:14:\"navigation:441\";s:10:\"---- Image\";s:14:\"navigation:289\";s:21:\"---- Newsletter issue\";s:14:\"navigation:106\";s:9:\"---- Page\";s:14:\"navigation:388\";s:10:\"---- Panel\";s:14:\"navigation:107\";s:10:\"---- Story\";s:12:\"navigation:2\";s:13:\"-- Administer\";s:13:\"navigation:10\";s:23:\"---- Content management\";s:13:\"navigation:27\";s:15:\"------ Comments\";s:13:\"navigation:28\";s:14:\"------ Content\";s:13:\"navigation:29\";s:20:\"------ Content types\";s:14:\"navigation:462\";s:22:\"------ Image galleries\";s:14:\"navigation:463\";s:19:\"------ Image import\";s:14:\"navigation:290\";s:18:\"------ Newsletters\";s:14:\"navigation:299\";s:20:\"-------- Sent issues\";s:14:\"navigation:293\";s:21:\"-------- Draft issues\";s:14:\"navigation:297\";s:20:\"-------- Newsletters\";s:14:\"navigation:301\";s:22:\"-------- Subscriptions\";s:13:\"navigation:42\";s:20:\"------ Post settings\";s:13:\"navigation:43\";s:21:\"------ RSS publishing\";s:13:\"navigation:94\";s:15:\"------ Taxonomy\";s:13:\"navigation:17\";s:18:\"---- Site building\";s:13:\"navigation:25\";s:13:\"------ Blocks\";s:14:\"navigation:424\";s:20:\"------ Bulk Exporter\";s:13:\"navigation:38\";s:12:\"------ Menus\";s:14:\"navigation:282\";s:18:\"-------- Main Menu\";s:13:\"navigation:89\";s:19:\"-------- Navigation\";s:13:\"navigation:90\";s:22:\"-------- Primary links\";s:14:\"navigation:495\";s:19:\"-------- Right Menu\";s:13:\"navigation:91\";s:24:\"-------- Secondary links\";s:14:\"navigation:387\";s:18:\"------ Mini panels\";s:13:\"navigation:39\";s:14:\"------ Modules\";s:14:\"navigation:412\";s:12:\"------ Pages\";s:14:\"navigation:360\";s:13:\"------ Panels\";s:13:\"navigation:49\";s:13:\"------ Themes\";s:14:\"navigation:335\";s:15:\"------ Triggers\";s:14:\"navigation:257\";s:12:\"------ Views\";s:13:\"navigation:18\";s:23:\"---- Site configuration\";s:13:\"navigation:23\";s:14:\"------ Actions\";s:14:\"navigation:119\";s:26:\"------ Administration menu\";s:13:\"navigation:24\";s:27:\"------ Administration theme\";s:13:\"navigation:26\";s:17:\"------ Clean URLs\";s:13:\"navigation:30\";s:20:\"------ Date and time\";s:13:\"navigation:33\";s:22:\"------ Error reporting\";s:13:\"navigation:34\";s:18:\"------ File system\";s:13:\"navigation:35\";s:20:\"------ Image toolkit\";s:14:\"navigation:442\";s:13:\"------ Images\";s:13:\"navigation:36\";s:20:\"------ Input formats\";s:13:\"navigation:37\";s:25:\"------ Logging and alerts\";s:14:\"navigation:100\";s:25:\"-------- Database logging\";s:14:\"navigation:245\";s:17:\"------ Nice Menus\";s:13:\"navigation:40\";s:18:\"------ Performance\";s:14:\"navigation:120\";s:22:\"------ Search settings\";s:14:\"navigation:291\";s:17:\"------ Simplenews\";s:14:\"navigation:294\";s:16:\"-------- General\";s:14:\"navigation:295\";s:19:\"-------- Newsletter\";s:14:\"navigation:300\";s:21:\"-------- Subscription\";s:14:\"navigation:298\";s:18:\"-------- Send mail\";s:13:\"navigation:46\";s:23:\"------ Site information\";s:13:\"navigation:47\";s:23:\"------ Site maintenance\";s:14:\"navigation:246\";s:15:\"------ Site map\";s:13:\"navigation:20\";s:20:\"---- User management\";s:13:\"navigation:22\";s:19:\"------ Access rules\";s:13:\"navigation:41\";s:18:\"------ Permissions\";s:13:\"navigation:45\";s:12:\"------ Roles\";s:13:\"navigation:50\";s:20:\"------ User settings\";s:13:\"navigation:51\";s:12:\"------ Users\";s:13:\"navigation:16\";s:12:\"---- Reports\";s:13:\"navigation:93\";s:25:\"------ Recent log entries\";s:13:\"navigation:96\";s:33:\"------ Top \'access denied\' errors\";s:13:\"navigation:97\";s:34:\"------ Top \'page not found\' errors\";s:14:\"navigation:121\";s:25:\"------ Top search phrases\";s:14:\"navigation:105\";s:24:\"------ Available updates\";s:13:\"navigation:48\";s:20:\"------ Status report\";s:13:\"navigation:15\";s:9:\"---- Help\";s:12:\"navigation:4\";s:10:\"-- Log out\";s:15:\"primary-links:0\";s:15:\"<Primary links>\";s:17:\"menu-right-menu:0\";s:12:\"<Right Menu>\";s:19:\"menu-right-menu:496\";s:28:\"-- Financial Calculator Tool\";s:19:\"menu-right-menu:497\";s:21:\"-- News Story Library\";s:19:\"menu-right-menu:498\";s:14:\"-- Latest News\";s:19:\"menu-right-menu:499\";s:25:\"-- SREC Management Portal\";s:17:\"secondary-links:0\";s:17:\"<Secondary links>\";}s:12:\"#description\";s:156:\"The maximum depth for an item and all its children is fixed at 9. Some menu items may not be available as parents if selecting them would exceed this limit.\";s:11:\"#attributes\";a:1:{s:5:\"class\";s:17:\"menu-title-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:1:\"0\";s:12:\"#description\";s:107:\"Optional. In the menu, the heavier items will sink and the lighter items will be positioned nearer the top.\";}}s:7:\"#submit\";a:1:{i:0;s:21:\"menu_node_form_submit\";}s:11:\"#pre_render\";a:1:{i:0;s:27:\"content_alter_extra_weights\";}s:21:\"#content_extra_fields\";a:5:{s:5:\"title\";a:3:{s:5:\"label\";s:5:\"Title\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:-5;}s:10:\"body_field\";a:4:{s:5:\"label\";s:4:\"Body\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:0;s:4:\"view\";s:4:\"body\";}s:20:\"revision_information\";a:3:{s:5:\"label\";s:20:\"Revision information\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:20;}s:16:\"comment_settings\";a:3:{s:5:\"label\";s:16:\"Comment settings\";s:11:\"description\";s:20:\"Comment module form.\";s:6:\"weight\";i:30;}s:4:\"menu\";a:3:{s:5:\"label\";s:13:\"Menu settings\";s:11:\"description\";s:17:\"Menu module form.\";s:6:\"weight\";i:-2;}}s:12:\"#cache_token\";s:32:\"f4fe61877727ef5971e8c6ceecfc845f\";}',1265224263,1265202663,'',1),('form_form-f2e0d3b54178b1886222052cc78de8b9','a:41:{s:3:\"#id\";s:9:\"node-form\";s:3:\"nid\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:1:\"8\";}s:3:\"vid\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:1:\"8\";}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:\"1265208624\";}s:4:\"type\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:6:\"banner\";}s:8:\"language\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:0:\"\";}s:7:\"changed\";a:2:{s:5:\"#type\";s:6:\"hidden\";s:14:\"#default_value\";s:10:\"1265208624\";}s:5:\"title\";a:6:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:5:\"Title\";s:9:\"#required\";b:1;s:14:\"#default_value\";s:15:\"banner 2 - USPV\";s:10:\"#maxlength\";i:255;s:7:\"#weight\";i:-5;}s:10:\"body_field\";a:7:{s:12:\"#after_build\";a:2:{i:0;s:14:\"node_teaser_js\";i:1;s:26:\"node_teaser_include_verify\";}s:7:\"#prefix\";s:32:\"<div class=\"body-field-wrapper\">\";s:7:\"#suffix\";s:6:\"</div>\";s:9:\"teaser_js\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:5:\"#rows\";i:10;s:7:\"#teaser\";s:9:\"edit-body\";s:16:\"#teaser_checkbox\";s:19:\"edit-teaser-include\";s:9:\"#disabled\";b:1;}s:14:\"teaser_include\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:25:\"Show summary in full view\";s:14:\"#default_value\";b:1;s:7:\"#prefix\";s:29:\"<div class=\"teaser-checkbox\">\";s:7:\"#suffix\";s:6:\"</div>\";}s:4:\"body\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:4:\"Body\";s:14:\"#default_value\";s:15:\"banner 2 - USPV\";s:5:\"#rows\";i:20;s:9:\"#required\";b:0;}s:6:\"format\";a:9:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:12:\"Input format\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:7:\"#weight\";N;s:17:\"#element_validate\";a:1:{i:0;s:20:\"filter_form_validate\";}i:1;a:7:{s:5:\"#type\";s:5:\"radio\";s:6:\"#title\";s:13:\"Filtered HTML\";s:14:\"#default_value\";s:1:\"1\";s:13:\"#return_value\";s:1:\"1\";s:8:\"#parents\";a:1:{i:0;s:6:\"format\";}s:12:\"#description\";s:306:\"<ul class=\"tips\"><li>Web page addresses and e-mail addresses turn into links automatically.</li><li>Allowed HTML tags: &lt;a&gt; &lt;em&gt; &lt;strong&gt; &lt;cite&gt; &lt;code&gt; &lt;ul&gt; &lt;ol&gt; &lt;li&gt; &lt;dl&gt; &lt;dt&gt; &lt;dd&gt;</li><li>Lines and paragraphs break automatically.</li></ul>\";s:3:\"#id\";s:13:\"edit-format-1\";}i:2;a:7:{s:5:\"#type\";s:5:\"radio\";s:6:\"#title\";s:9:\"Full HTML\";s:14:\"#default_value\";s:1:\"1\";s:13:\"#return_value\";s:1:\"2\";s:8:\"#parents\";a:1:{i:0;s:6:\"format\";}s:12:\"#description\";s:151:\"<ul class=\"tips\"><li>Web page addresses and e-mail addresses turn into links automatically.</li><li>Lines and paragraphs break automatically.</li></ul>\";s:3:\"#id\";s:13:\"edit-format-2\";}i:3;a:1:{s:6:\"#value\";s:89:\"<p><a href=\"/~uspvinc/main/filter/tips\">More information about formatting options</a></p>\";}}}s:5:\"#node\";O:8:\"stdClass\":34:{s:3:\"nid\";s:1:\"8\";s:4:\"type\";s:6:\"banner\";s:8:\"language\";s:0:\"\";s:3:\"uid\";s:1:\"1\";s:6:\"status\";s:1:\"1\";s:7:\"created\";s:10:\"1265208624\";s:7:\"changed\";s:10:\"1265208624\";s:7:\"comment\";s:1:\"2\";s:7:\"promote\";s:1:\"1\";s:8:\"moderate\";s:1:\"0\";s:6:\"sticky\";s:1:\"0\";s:4:\"tnid\";s:1:\"0\";s:9:\"translate\";s:1:\"0\";s:3:\"vid\";s:1:\"8\";s:12:\"revision_uid\";s:1:\"1\";s:5:\"title\";s:15:\"banner 2 - USPV\";s:4:\"body\";s:15:\"banner 2 - USPV\";s:6:\"teaser\";s:15:\"banner 2 - USPV\";s:3:\"log\";N;s:18:\"revision_timestamp\";s:10:\"1265208624\";s:6:\"format\";s:1:\"1\";s:4:\"name\";s:5:\"admin\";s:7:\"picture\";s:0:\"\";s:4:\"data\";s:6:\"a:0:{}\";s:4:\"path\";s:20:\"banner/banner-2-uspv\";s:22:\"last_comment_timestamp\";s:10:\"1265208624\";s:17:\"last_comment_name\";N;s:13:\"comment_count\";s:1:\"0\";s:8:\"taxonomy\";a:0:{}s:4:\"iids\";a:1:{i:0;s:1:\"7\";}s:4:\"date\";s:25:\"2010-02-03 22:50:24 +0800\";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:13:\"primary-links\";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:22:\"pathauto_perform_alias\";b:1;}s:20:\"revision_information\";a:7:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:20:\"Revision information\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:7:\"#weight\";i:20;s:8:\"revision\";a:4:{s:7:\"#access\";b:1;s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:19:\"Create new revision\";s:14:\"#default_value\";b:0;}s:3:\"log\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:11:\"Log message\";s:14:\"#default_value\";s:0:\"\";s:5:\"#rows\";i:2;s:12:\"#description\";s:104:\"An explanation of the additions or updates being made to help other authors understand your motivations.\";}}s:6:\"author\";a:8:{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:7:\"#weight\";i:20;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:35:\"Leave blank for <em>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:91:\"Format: <em>2010-02-03 22:50:24 +0800</em>. Leave blank to use the time of form submission.\";s:14:\"#default_value\";s:25:\"2010-02-03 22:50:24 +0800\";}}s:7:\"options\";a:9:{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:7:\"#weight\";i:25;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:\"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\";s:1:\"0\";}}s:7:\"buttons\";a:3:{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:16:\"node_form_submit\";}}s:7:\"preview\";a:4:{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:2:{i:0;s:18:\"node_form_validate\";i:1;s:21:\"image_attach_validate\";}s:6:\"#theme\";a:2:{i:0;s:16:\"banner_node_form\";i:1;s:9:\"node_form\";}s:11:\"#parameters\";a:3:{i:0;s:16:\"banner_node_form\";i:1;a:3:{s:7:\"storage\";N;s:9:\"submitted\";b:0;s:4:\"post\";a:0:{}}i:2;r:83;}s:9:\"#build_id\";s:37:\"form-f2e0d3b54178b1886222052cc78de8b9\";s:5:\"#type\";s:4:\"form\";s:11:\"#programmed\";b:0;s:13:\"form_build_id\";a:4:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:37:\"form-f2e0d3b54178b1886222052cc78de8b9\";s:3:\"#id\";s:37:\"form-f2e0d3b54178b1886222052cc78de8b9\";s:5:\"#name\";s:13:\"form_build_id\";}s:6:\"#token\";s:16:\"banner_node_form\";s:10:\"form_token\";a:3:{s:3:\"#id\";s:32:\"edit-banner-node-form-form-token\";s:5:\"#type\";s:5:\"token\";s:14:\"#default_value\";s:32:\"e93580c49f5fa6dc10730df07d8fcb39\";}s:7:\"form_id\";a:3:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:16:\"banner_node_form\";s:3:\"#id\";s:21:\"edit-banner-node-form\";}s:12:\"#description\";N;s:11:\"#attributes\";a:1:{s:7:\"enctype\";s:19:\"multipart/form-data\";}s:9:\"#required\";b:0;s:5:\"#tree\";b:0;s:8:\"#parents\";a:0:{}s:7:\"#method\";s:4:\"post\";s:7:\"#action\";s:72:\"/~uspvinc/main/node/8/edit?destination=admin%2Fcontent%2Fnode%2Foverview\";s:16:\"comment_settings\";a:7:{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:7:\"#weight\";i:30;s:7:\"comment\";a:4:{s:5:\"#type\";s:6:\"radios\";s:8:\"#parents\";a:1:{i:0;s:7:\"comment\";}s:14:\"#default_value\";s:1:\"2\";s:8:\"#options\";a:3:{i:0;s:8:\"Disabled\";i:1;s:9:\"Read only\";i:2;s:10:\"Read/Write\";}}}s:6:\"#cache\";b:1;s:4:\"menu\";a:20:{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:5:\"#tree\";b:1;s:7:\"#weight\";i:-2;s:11:\"#attributes\";a:1:{s:5:\"class\";s:14:\"menu-item-form\";}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:0;}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:5:\"#item\";a:12:{s:10:\"link_title\";s:0:\"\";s:4:\"mlid\";i:0;s:4:\"plid\";i:0;s:9:\"menu_name\";s:13:\"primary-links\";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:10:\"link_title\";a:5:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:15:\"Menu link title\";s:14:\"#default_value\";s:0:\"\";s:12:\"#description\";s:133:\"The link text corresponding to this item that should appear in the menu. Leave blank if you do not wish to add this post to the menu.\";s:9:\"#required\";b:0;}s:6:\"parent\";a:6:{s:5:\"#type\";s:6:\"select\";s:6:\"#title\";s:11:\"Parent item\";s:14:\"#default_value\";s:15:\"primary-links:0\";s:8:\"#options\";a:95:{s:16:\"menu-main-menu:0\";s:11:\"<Main Menu>\";s:18:\"menu-main-menu:283\";s:8:\"-- about\";s:18:\"menu-main-menu:284\";s:12:\"-- resources\";s:18:\"menu-main-menu:285\";s:11:\"-- services\";s:18:\"menu-main-menu:286\";s:17:\"-- special offers\";s:12:\"navigation:0\";s:12:\"<Navigation>\";s:12:\"navigation:9\";s:26:\"-- Compose tips (disabled)\";s:13:\"navigation:21\";s:13:\"-- My account\";s:14:\"navigation:114\";s:20:\"-- Search (disabled)\";s:14:\"navigation:244\";s:22:\"-- Site map (disabled)\";s:13:\"navigation:11\";s:17:\"-- Create content\";s:14:\"navigation:476\";s:11:\"---- Banner\";s:14:\"navigation:441\";s:10:\"---- Image\";s:14:\"navigation:289\";s:21:\"---- Newsletter issue\";s:14:\"navigation:106\";s:9:\"---- Page\";s:14:\"navigation:388\";s:10:\"---- Panel\";s:14:\"navigation:107\";s:10:\"---- Story\";s:12:\"navigation:2\";s:13:\"-- Administer\";s:13:\"navigation:10\";s:23:\"---- Content management\";s:13:\"navigation:27\";s:15:\"------ Comments\";s:13:\"navigation:28\";s:14:\"------ Content\";s:13:\"navigation:29\";s:20:\"------ Content types\";s:14:\"navigation:462\";s:22:\"------ Image galleries\";s:14:\"navigation:463\";s:19:\"------ Image import\";s:14:\"navigation:538\";s:18:\"------ Newsletters\";s:14:\"navigation:546\";s:20:\"-------- Sent issues\";s:14:\"navigation:541\";s:21:\"-------- Draft issues\";s:14:\"navigation:544\";s:20:\"-------- Newsletters\";s:14:\"navigation:548\";s:22:\"-------- Subscriptions\";s:13:\"navigation:42\";s:20:\"------ Post settings\";s:13:\"navigation:43\";s:21:\"------ RSS publishing\";s:13:\"navigation:94\";s:15:\"------ Taxonomy\";s:13:\"navigation:17\";s:18:\"---- Site building\";s:13:\"navigation:25\";s:13:\"------ Blocks\";s:14:\"navigation:424\";s:20:\"------ Bulk Exporter\";s:13:\"navigation:38\";s:12:\"------ Menus\";s:14:\"navigation:282\";s:18:\"-------- Main Menu\";s:13:\"navigation:89\";s:19:\"-------- Navigation\";s:13:\"navigation:90\";s:22:\"-------- Primary links\";s:14:\"navigation:495\";s:19:\"-------- Right Menu\";s:13:\"navigation:91\";s:24:\"-------- Secondary links\";s:14:\"navigation:387\";s:18:\"------ Mini panels\";s:13:\"navigation:39\";s:14:\"------ Modules\";s:14:\"navigation:412\";s:12:\"------ Pages\";s:14:\"navigation:360\";s:13:\"------ Panels\";s:13:\"navigation:49\";s:13:\"------ Themes\";s:14:\"navigation:335\";s:15:\"------ Triggers\";s:14:\"navigation:501\";s:18:\"------ URL aliases\";s:14:\"navigation:257\";s:12:\"------ Views\";s:13:\"navigation:18\";s:23:\"---- Site configuration\";s:13:\"navigation:23\";s:14:\"------ Actions\";s:14:\"navigation:119\";s:26:\"------ Administration menu\";s:13:\"navigation:24\";s:27:\"------ Administration theme\";s:13:\"navigation:26\";s:17:\"------ Clean URLs\";s:13:\"navigation:30\";s:20:\"------ Date and time\";s:13:\"navigation:33\";s:22:\"------ Error reporting\";s:13:\"navigation:34\";s:18:\"------ File system\";s:13:\"navigation:35\";s:20:\"------ Image toolkit\";s:14:\"navigation:442\";s:13:\"------ Images\";s:13:\"navigation:36\";s:20:\"------ Input formats\";s:13:\"navigation:37\";s:25:\"------ Logging and alerts\";s:14:\"navigation:100\";s:25:\"-------- Database logging\";s:14:\"navigation:245\";s:17:\"------ Nice Menus\";s:13:\"navigation:40\";s:18:\"------ Performance\";s:14:\"navigation:120\";s:22:\"------ Search settings\";s:14:\"navigation:539\";s:17:\"------ Simplenews\";s:14:\"navigation:542\";s:16:\"-------- General\";s:14:\"navigation:543\";s:19:\"-------- Newsletter\";s:14:\"navigation:547\";s:21:\"-------- Subscription\";s:14:\"navigation:545\";s:18:\"-------- Send mail\";s:13:\"navigation:46\";s:23:\"------ Site information\";s:13:\"navigation:47\";s:23:\"------ Site maintenance\";s:14:\"navigation:246\";s:15:\"------ Site map\";s:13:\"navigation:20\";s:20:\"---- User management\";s:13:\"navigation:22\";s:19:\"------ Access rules\";s:13:\"navigation:41\";s:18:\"------ Permissions\";s:13:\"navigation:45\";s:12:\"------ Roles\";s:13:\"navigation:50\";s:20:\"------ User settings\";s:13:\"navigation:51\";s:12:\"------ Users\";s:13:\"navigation:16\";s:12:\"---- Reports\";s:13:\"navigation:93\";s:25:\"------ Recent log entries\";s:13:\"navigation:96\";s:33:\"------ Top \'access denied\' errors\";s:13:\"navigation:97\";s:34:\"------ Top \'page not found\' errors\";s:14:\"navigation:121\";s:25:\"------ Top search phrases\";s:14:\"navigation:105\";s:24:\"------ Available updates\";s:13:\"navigation:48\";s:20:\"------ Status report\";s:13:\"navigation:15\";s:9:\"---- Help\";s:12:\"navigation:4\";s:10:\"-- Log out\";s:15:\"primary-links:0\";s:15:\"<Primary links>\";s:17:\"menu-right-menu:0\";s:12:\"<Right Menu>\";s:19:\"menu-right-menu:496\";s:28:\"-- Financial Calculator Tool\";s:19:\"menu-right-menu:497\";s:21:\"-- News Story Library\";s:19:\"menu-right-menu:498\";s:14:\"-- Latest News\";s:19:\"menu-right-menu:499\";s:25:\"-- SREC Management Portal\";s:17:\"secondary-links:0\";s:17:\"<Secondary links>\";}s:12:\"#description\";s:156:\"The maximum depth for an item and all its children is fixed at 9. Some menu items may not be available as parents if selecting them would exceed this limit.\";s:11:\"#attributes\";a:1:{s:5:\"class\";s:17:\"menu-title-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:107:\"Optional. In the menu, the heavier items will sink and the lighter items will be positioned nearer the top.\";}}s:7:\"#submit\";a:2:{i:0;s:21:\"menu_node_form_submit\";i:1;s:29:\"image_attach_node_form_submit\";}s:4:\"path\";a:10:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:17:\"URL path settings\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:0;s:7:\"#access\";b:1;s:7:\"#weight\";i:30;s:4:\"path\";a:6:{s:5:\"#type\";s:9:\"textfield\";s:14:\"#default_value\";s:20:\"banner/banner-2-uspv\";s:10:\"#maxlength\";i:128;s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:12:\"#description\";s:207:\"Optionally specify an alternative URL by which this node 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\";s:1:\"8\";}s:22:\"pathauto_perform_alias\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:15:\"Automatic alias\";s:14:\"#default_value\";b:1;s:12:\"#description\";s:237:\"An alias will be generated for you. If you wish to create your own alias below, uncheck this option. To control the format of the generated aliases, see the <a href=\"/~uspvinc/main/admin/build/path/pathauto\">automated alias settings</a>.\";s:7:\"#weight\";i:-1;}s:9:\"old_alias\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:20:\"banner/banner-2-uspv\";}}s:11:\"#pre_render\";a:1:{i:0;s:27:\"content_alter_extra_weights\";}s:21:\"#content_extra_fields\";a:7:{s:5:\"title\";a:3:{s:5:\"label\";s:5:\"Title\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";s:2:\"-5\";}s:10:\"body_field\";a:4:{s:5:\"label\";s:4:\"Body\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";s:2:\"-2\";s:4:\"view\";s:4:\"body\";}s:20:\"revision_information\";a:3:{s:5:\"label\";s:20:\"Revision information\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";s:2:\"-1\";}s:16:\"comment_settings\";a:3:{s:5:\"label\";s:16:\"Comment settings\";s:11:\"description\";s:20:\"Comment module form.\";s:6:\"weight\";s:1:\"0\";}s:4:\"menu\";a:3:{s:5:\"label\";s:13:\"Menu settings\";s:11:\"description\";s:17:\"Menu module form.\";s:6:\"weight\";s:2:\"-4\";}s:4:\"path\";a:3:{s:5:\"label\";s:13:\"Path settings\";s:11:\"description\";s:17:\"Path module form.\";s:6:\"weight\";i:30;}s:12:\"image_attach\";a:3:{s:5:\"label\";s:15:\"Attached images\";s:11:\"description\";s:25:\"Image Attach module form.\";s:6:\"weight\";s:2:\"-3\";}}s:12:\"image_attach\";a:10:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:15:\"Attached images\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:0;s:12:\"#description\";s:23:\"You may attach 1 image.\";s:15:\"image_thumbnail\";a:1:{i:7;a:3:{s:5:\"#type\";s:4:\"item\";s:6:\"#title\";s:9:\"Thumbnail\";s:6:\"#value\";s:205:\"<img src=\"http://powerstormtech.com/~uspvinc/main/sites/default/files/images/banner-2.thumbnail.png\" alt=\"banner 2 - USPV\" title=\"banner 2 - USPV\"  class=\"image image-thumbnail \" width=\"100\" height=\"36\" />\";}}s:4:\"iids\";a:7:{s:5:\"#type\";s:6:\"select\";s:14:\"#default_value\";a:1:{i:0;s:1:\"7\";}s:9:\"#multiple\";b:1;s:5:\"#size\";i:6;s:6:\"#title\";s:15:\"Existing images\";s:8:\"#options\";a:4:{i:0;s:8:\"- None -\";i:1;s:15:\"banner 1 - USPV\";i:7;s:15:\"banner 2 - USPV\";i:9;s:15:\"banner 3 - USPV\";}s:12:\"#description\";s:54:\"Choose existing images if you do not upload a new one.\";}s:5:\"image\";a:2:{s:5:\"#type\";s:4:\"file\";s:6:\"#title\";s:12:\"Upload image\";}s:11:\"image_title\";a:4:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:11:\"Image title\";s:14:\"#default_value\";s:0:\"\";s:12:\"#description\";s:72:\"The title the image will be shown with. Leave blank to use the filename.\";}s:21:\"image_attach_multiple\";a:4:{s:5:\"#type\";s:6:\"submit\";s:6:\"#value\";s:6:\"Attach\";s:9:\"#validate\";a:1:{i:0;s:21:\"image_attach_validate\";}s:7:\"#submit\";a:1:{i:0;s:29:\"image_attach_image_add_submit\";}}}s:12:\"#cache_token\";s:32:\"a285a6aaea57f260086c774368d3c784\";}',1270094659,1270073059,'',1),('form_form-9e923bd8318ebb3a2e3f539642b95ffa','a:44:{s:3:\"#id\";s:9:\"node-form\";s:3:\"nid\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:1:\"1\";}s:3:\"vid\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:1:\"1\";}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:\"1265112144\";}s:4:\"type\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:5:\"image\";}s:8:\"language\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:0:\"\";}s:7:\"changed\";a:2:{s:5:\"#type\";s:6:\"hidden\";s:14:\"#default_value\";s:10:\"1265112144\";}s:9:\"#validate\";a:2:{i:0;s:19:\"image_form_validate\";i:1;s:18:\"node_form_validate\";}s:7:\"#submit\";a:2:{i:0;s:17:\"image_form_submit\";i:1;s:21:\"menu_node_form_submit\";}s:5:\"title\";a:7:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:5:\"Title\";s:5:\"#size\";i:60;s:10:\"#maxlength\";i:128;s:9:\"#required\";b:1;s:14:\"#default_value\";s:15:\"banner 1 - USPV\";s:7:\"#weight\";i:-5;}s:6:\"images\";a:4:{s:5:\"#tree\";b:1;s:9:\"_original\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:39:\"sites/default/files/images/banner-1.png\";}s:9:\"thumbnail\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:49:\"sites/default/files/images/banner-1.thumbnail.png\";}s:7:\"preview\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:39:\"sites/default/files/images/banner-1.png\";}}s:8:\"new_file\";a:2:{s:5:\"#type\";s:5:\"value\";s:14:\"#default_value\";b:0;}s:11:\"#attributes\";a:1:{s:7:\"enctype\";s:19:\"multipart/form-data\";}s:5:\"image\";a:5:{s:7:\"#prefix\";s:33:\"<div class=\"image-field-wrapper\">\";s:7:\"#suffix\";s:6:\"</div>\";s:9:\"thumbnail\";a:2:{s:5:\"#type\";s:4:\"item\";s:12:\"#after_build\";a:1:{i:0;s:24:\"image_form_add_thumbnail\";}}s:5:\"image\";a:4:{s:5:\"#type\";s:4:\"file\";s:6:\"#title\";s:5:\"Image\";s:5:\"#size\";i:40;s:12:\"#description\";s:26:\"Select an image to upload.\";}s:14:\"rebuild_images\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:25:\"Rebuild derivative images\";s:14:\"#default_value\";b:0;s:12:\"#description\";s:58:\"Check this to rebuild the derivative images for this node.\";s:7:\"#access\";b:1;}}s:10:\"body_field\";a:7:{s:12:\"#after_build\";a:2:{i:0;s:14:\"node_teaser_js\";i:1;s:26:\"node_teaser_include_verify\";}s:7:\"#prefix\";s:32:\"<div class=\"body-field-wrapper\">\";s:7:\"#suffix\";s:6:\"</div>\";s:9:\"teaser_js\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:5:\"#rows\";i:10;s:7:\"#teaser\";s:9:\"edit-body\";s:16:\"#teaser_checkbox\";s:19:\"edit-teaser-include\";s:9:\"#disabled\";b:1;}s:14:\"teaser_include\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:25:\"Show summary in full view\";s:14:\"#default_value\";b:1;s:7:\"#prefix\";s:29:\"<div class=\"teaser-checkbox\">\";s:7:\"#suffix\";s:6:\"</div>\";}s:4:\"body\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:4:\"Body\";s:14:\"#default_value\";s:0:\"\";s:5:\"#rows\";i:20;s:9:\"#required\";b:0;}s:6:\"format\";a:9:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:12:\"Input format\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:7:\"#weight\";N;s:17:\"#element_validate\";a:1:{i:0;s:20:\"filter_form_validate\";}i:1;a:7:{s:5:\"#type\";s:5:\"radio\";s:6:\"#title\";s:13:\"Filtered HTML\";s:14:\"#default_value\";i:1;s:13:\"#return_value\";s:1:\"1\";s:8:\"#parents\";a:1:{i:0;s:6:\"format\";}s:12:\"#description\";s:306:\"<ul class=\"tips\"><li>Web page addresses and e-mail addresses turn into links automatically.</li><li>Allowed HTML tags: &lt;a&gt; &lt;em&gt; &lt;strong&gt; &lt;cite&gt; &lt;code&gt; &lt;ul&gt; &lt;ol&gt; &lt;li&gt; &lt;dl&gt; &lt;dt&gt; &lt;dd&gt;</li><li>Lines and paragraphs break automatically.</li></ul>\";s:3:\"#id\";s:13:\"edit-format-1\";}i:2;a:7:{s:5:\"#type\";s:5:\"radio\";s:6:\"#title\";s:9:\"Full HTML\";s:14:\"#default_value\";i:1;s:13:\"#return_value\";s:1:\"2\";s:8:\"#parents\";a:1:{i:0;s:6:\"format\";}s:12:\"#description\";s:151:\"<ul class=\"tips\"><li>Web page addresses and e-mail addresses turn into links automatically.</li><li>Lines and paragraphs break automatically.</li></ul>\";s:3:\"#id\";s:13:\"edit-format-2\";}i:3;a:1:{s:6:\"#value\";s:89:\"<p><a href=\"/~uspvinc/main/filter/tips\">More information about formatting options</a></p>\";}}}s:5:\"#node\";O:8:\"stdClass\":35:{s:3:\"nid\";s:1:\"1\";s:4:\"type\";s:5:\"image\";s:8:\"language\";s:0:\"\";s:3:\"uid\";s:1:\"1\";s:6:\"status\";s:1:\"1\";s:7:\"created\";s:10:\"1265112144\";s:7:\"changed\";s:10:\"1265112144\";s:7:\"comment\";s:1:\"2\";s:7:\"promote\";s:1:\"0\";s:8:\"moderate\";s:1:\"0\";s:6:\"sticky\";s:1:\"0\";s:4:\"tnid\";s:1:\"0\";s:9:\"translate\";s:1:\"0\";s:3:\"vid\";s:1:\"1\";s:12:\"revision_uid\";s:1:\"1\";s:5:\"title\";s:15:\"banner 1 - USPV\";s:4:\"body\";s:0:\"\";s:6:\"teaser\";s:0:\"\";s:3:\"log\";N;s:18:\"revision_timestamp\";s:10:\"1265112144\";s:6:\"format\";s:1:\"0\";s:4:\"name\";s:5:\"admin\";s:7:\"picture\";s:0:\"\";s:4:\"data\";s:6:\"a:0:{}\";s:6:\"images\";a:3:{s:9:\"thumbnail\";s:49:\"sites/default/files/images/banner-1.thumbnail.png\";s:9:\"_original\";s:39:\"sites/default/files/images/banner-1.png\";s:7:\"preview\";s:39:\"sites/default/files/images/banner-1.png\";}s:14:\"rebuild_images\";b:0;s:4:\"path\";s:19:\"image/banner-1-uspv\";s:22:\"last_comment_timestamp\";s:10:\"1265112144\";s:17:\"last_comment_name\";N;s:13:\"comment_count\";s:1:\"0\";s:8:\"taxonomy\";a:0:{}s:4:\"date\";s:25:\"2010-02-02 20:02:24 +0800\";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:13:\"primary-links\";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:22:\"pathauto_perform_alias\";b:1;}s:20:\"revision_information\";a:7:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:20:\"Revision information\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:7:\"#weight\";i:20;s:8:\"revision\";a:4:{s:7:\"#access\";b:1;s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:19:\"Create new revision\";s:14:\"#default_value\";b:0;}s:3:\"log\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:11:\"Log message\";s:14:\"#default_value\";s:0:\"\";s:5:\"#rows\";i:2;s:12:\"#description\";s:104:\"An explanation of the additions or updates being made to help other authors understand your motivations.\";}}s:6:\"author\";a:8:{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:7:\"#weight\";i:20;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:35:\"Leave blank for <em>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:91:\"Format: <em>2010-02-02 20:02:24 +0800</em>. Leave blank to use the time of form submission.\";s:14:\"#default_value\";s:25:\"2010-02-02 20:02:24 +0800\";}}s:7:\"options\";a:9:{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:7:\"#weight\";i:25;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:\"buttons\";a:3:{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:16:\"node_form_submit\";}}s:7:\"preview\";a:4:{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:6:\"#theme\";a:2:{i:0;s:15:\"image_node_form\";i:1;s:9:\"node_form\";}s:11:\"#parameters\";a:3:{i:0;s:15:\"image_node_form\";i:1;a:3:{s:7:\"storage\";N;s:9:\"submitted\";b:0;s:4:\"post\";a:0:{}}i:2;r:124;}s:9:\"#build_id\";s:37:\"form-9e923bd8318ebb3a2e3f539642b95ffa\";s:5:\"#type\";s:4:\"form\";s:11:\"#programmed\";b:0;s:13:\"form_build_id\";a:4:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:37:\"form-9e923bd8318ebb3a2e3f539642b95ffa\";s:3:\"#id\";s:37:\"form-9e923bd8318ebb3a2e3f539642b95ffa\";s:5:\"#name\";s:13:\"form_build_id\";}s:6:\"#token\";s:15:\"image_node_form\";s:10:\"form_token\";a:3:{s:3:\"#id\";s:31:\"edit-image-node-form-form-token\";s:5:\"#type\";s:5:\"token\";s:14:\"#default_value\";s:32:\"5e34c6b220b57149764792c324793275\";}s:7:\"form_id\";a:3:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:15:\"image_node_form\";s:3:\"#id\";s:20:\"edit-image-node-form\";}s:12:\"#description\";N;s:9:\"#required\";b:0;s:5:\"#tree\";b:0;s:8:\"#parents\";a:0:{}s:7:\"#method\";s:4:\"post\";s:7:\"#action\";s:26:\"/~uspvinc/main/node/1/edit\";s:16:\"comment_settings\";a:7:{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:7:\"#weight\";i:30;s:7:\"comment\";a:4:{s:5:\"#type\";s:6:\"radios\";s:8:\"#parents\";a:1:{i:0;s:7:\"comment\";}s:14:\"#default_value\";s:1:\"2\";s:8:\"#options\";a:3:{i:0;s:8:\"Disabled\";i:1;s:9:\"Read only\";i:2;s:10:\"Read/Write\";}}}s:6:\"#cache\";b:1;s:4:\"menu\";a:20:{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:5:\"#tree\";b:1;s:7:\"#weight\";i:-2;s:11:\"#attributes\";a:1:{s:5:\"class\";s:14:\"menu-item-form\";}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:0;}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:5:\"#item\";a:12:{s:10:\"link_title\";s:0:\"\";s:4:\"mlid\";i:0;s:4:\"plid\";i:0;s:9:\"menu_name\";s:13:\"primary-links\";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:10:\"link_title\";a:5:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:15:\"Menu link title\";s:14:\"#default_value\";s:0:\"\";s:12:\"#description\";s:133:\"The link text corresponding to this item that should appear in the menu. Leave blank if you do not wish to add this post to the menu.\";s:9:\"#required\";b:0;}s:6:\"parent\";a:6:{s:5:\"#type\";s:6:\"select\";s:6:\"#title\";s:11:\"Parent item\";s:14:\"#default_value\";s:15:\"primary-links:0\";s:8:\"#options\";a:95:{s:16:\"menu-main-menu:0\";s:11:\"<Main Menu>\";s:18:\"menu-main-menu:283\";s:8:\"-- about\";s:18:\"menu-main-menu:284\";s:12:\"-- resources\";s:18:\"menu-main-menu:285\";s:11:\"-- services\";s:18:\"menu-main-menu:286\";s:17:\"-- special offers\";s:12:\"navigation:0\";s:12:\"<Navigation>\";s:12:\"navigation:9\";s:26:\"-- Compose tips (disabled)\";s:13:\"navigation:21\";s:13:\"-- My account\";s:14:\"navigation:114\";s:20:\"-- Search (disabled)\";s:14:\"navigation:244\";s:22:\"-- Site map (disabled)\";s:13:\"navigation:11\";s:17:\"-- Create content\";s:14:\"navigation:476\";s:11:\"---- Banner\";s:14:\"navigation:441\";s:10:\"---- Image\";s:14:\"navigation:289\";s:21:\"---- Newsletter issue\";s:14:\"navigation:106\";s:9:\"---- Page\";s:14:\"navigation:388\";s:10:\"---- Panel\";s:14:\"navigation:107\";s:10:\"---- Story\";s:12:\"navigation:2\";s:13:\"-- Administer\";s:13:\"navigation:10\";s:23:\"---- Content management\";s:13:\"navigation:27\";s:15:\"------ Comments\";s:13:\"navigation:28\";s:14:\"------ Content\";s:13:\"navigation:29\";s:20:\"------ Content types\";s:14:\"navigation:462\";s:22:\"------ Image galleries\";s:14:\"navigation:463\";s:19:\"------ Image import\";s:14:\"navigation:538\";s:18:\"------ Newsletters\";s:14:\"navigation:546\";s:20:\"-------- Sent issues\";s:14:\"navigation:541\";s:21:\"-------- Draft issues\";s:14:\"navigation:544\";s:20:\"-------- Newsletters\";s:14:\"navigation:548\";s:22:\"-------- Subscriptions\";s:13:\"navigation:42\";s:20:\"------ Post settings\";s:13:\"navigation:43\";s:21:\"------ RSS publishing\";s:13:\"navigation:94\";s:15:\"------ Taxonomy\";s:13:\"navigation:17\";s:18:\"---- Site building\";s:13:\"navigation:25\";s:13:\"------ Blocks\";s:14:\"navigation:424\";s:20:\"------ Bulk Exporter\";s:13:\"navigation:38\";s:12:\"------ Menus\";s:14:\"navigation:282\";s:18:\"-------- Main Menu\";s:13:\"navigation:89\";s:19:\"-------- Navigation\";s:13:\"navigation:90\";s:22:\"-------- Primary links\";s:14:\"navigation:495\";s:19:\"-------- Right Menu\";s:13:\"navigation:91\";s:24:\"-------- Secondary links\";s:14:\"navigation:387\";s:18:\"------ Mini panels\";s:13:\"navigation:39\";s:14:\"------ Modules\";s:14:\"navigation:412\";s:12:\"------ Pages\";s:14:\"navigation:360\";s:13:\"------ Panels\";s:13:\"navigation:49\";s:13:\"------ Themes\";s:14:\"navigation:335\";s:15:\"------ Triggers\";s:14:\"navigation:501\";s:18:\"------ URL aliases\";s:14:\"navigation:257\";s:12:\"------ Views\";s:13:\"navigation:18\";s:23:\"---- Site configuration\";s:13:\"navigation:23\";s:14:\"------ Actions\";s:14:\"navigation:119\";s:26:\"------ Administration menu\";s:13:\"navigation:24\";s:27:\"------ Administration theme\";s:13:\"navigation:26\";s:17:\"------ Clean URLs\";s:13:\"navigation:30\";s:20:\"------ Date and time\";s:13:\"navigation:33\";s:22:\"------ Error reporting\";s:13:\"navigation:34\";s:18:\"------ File system\";s:13:\"navigation:35\";s:20:\"------ Image toolkit\";s:14:\"navigation:442\";s:13:\"------ Images\";s:13:\"navigation:36\";s:20:\"------ Input formats\";s:13:\"navigation:37\";s:25:\"------ Logging and alerts\";s:14:\"navigation:100\";s:25:\"-------- Database logging\";s:14:\"navigation:245\";s:17:\"------ Nice Menus\";s:13:\"navigation:40\";s:18:\"------ Performance\";s:14:\"navigation:120\";s:22:\"------ Search settings\";s:14:\"navigation:539\";s:17:\"------ Simplenews\";s:14:\"navigation:542\";s:16:\"-------- General\";s:14:\"navigation:543\";s:19:\"-------- Newsletter\";s:14:\"navigation:547\";s:21:\"-------- Subscription\";s:14:\"navigation:545\";s:18:\"-------- Send mail\";s:13:\"navigation:46\";s:23:\"------ Site information\";s:13:\"navigation:47\";s:23:\"------ Site maintenance\";s:14:\"navigation:246\";s:15:\"------ Site map\";s:13:\"navigation:20\";s:20:\"---- User management\";s:13:\"navigation:22\";s:19:\"------ Access rules\";s:13:\"navigation:41\";s:18:\"------ Permissions\";s:13:\"navigation:45\";s:12:\"------ Roles\";s:13:\"navigation:50\";s:20:\"------ User settings\";s:13:\"navigation:51\";s:12:\"------ Users\";s:13:\"navigation:16\";s:12:\"---- Reports\";s:13:\"navigation:93\";s:25:\"------ Recent log entries\";s:13:\"navigation:96\";s:33:\"------ Top \'access denied\' errors\";s:13:\"navigation:97\";s:34:\"------ Top \'page not found\' errors\";s:14:\"navigation:121\";s:25:\"------ Top search phrases\";s:14:\"navigation:105\";s:24:\"------ Available updates\";s:13:\"navigation:48\";s:20:\"------ Status report\";s:13:\"navigation:15\";s:9:\"---- Help\";s:12:\"navigation:4\";s:10:\"-- Log out\";s:15:\"primary-links:0\";s:15:\"<Primary links>\";s:17:\"menu-right-menu:0\";s:12:\"<Right Menu>\";s:19:\"menu-right-menu:496\";s:28:\"-- Financial Calculator Tool\";s:19:\"menu-right-menu:497\";s:21:\"-- News Story Library\";s:19:\"menu-right-menu:498\";s:14:\"-- Latest News\";s:19:\"menu-right-menu:499\";s:25:\"-- SREC Management Portal\";s:17:\"secondary-links:0\";s:17:\"<Secondary links>\";}s:12:\"#description\";s:156:\"The maximum depth for an item and all its children is fixed at 9. Some menu items may not be available as parents if selecting them would exceed this limit.\";s:11:\"#attributes\";a:1:{s:5:\"class\";s:17:\"menu-title-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:107:\"Optional. In the menu, the heavier items will sink and the lighter items will be positioned nearer the top.\";}}s:4:\"path\";a:10:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:17:\"URL path settings\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:0;s:7:\"#access\";b:1;s:7:\"#weight\";i:30;s:4:\"path\";a:6:{s:5:\"#type\";s:9:\"textfield\";s:14:\"#default_value\";s:19:\"image/banner-1-uspv\";s:10:\"#maxlength\";i:128;s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:12:\"#description\";s:207:\"Optionally specify an alternative URL by which this node 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\";s:1:\"1\";}s:22:\"pathauto_perform_alias\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:15:\"Automatic alias\";s:14:\"#default_value\";b:1;s:12:\"#description\";s:237:\"An alias will be generated for you. If you wish to create your own alias below, uncheck this option. To control the format of the generated aliases, see the <a href=\"/~uspvinc/main/admin/build/path/pathauto\">automated alias settings</a>.\";s:7:\"#weight\";i:-1;}s:9:\"old_alias\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:19:\"image/banner-1-uspv\";}}s:8:\"taxonomy\";a:3:{i:2;a:10:{s:5:\"#type\";s:6:\"select\";s:6:\"#title\";s:15:\"Image Galleries\";s:14:\"#default_value\";a:0:{}s:8:\"#options\";a:1:{s:0:\"\";s:17:\"- None selected -\";}s:12:\"#description\";s:0:\"\";s:9:\"#multiple\";i:0;s:5:\"#size\";i:0;s:7:\"#weight\";s:1:\"0\";s:6:\"#theme\";s:20:\"taxonomy_term_select\";s:9:\"#required\";s:1:\"0\";}s:7:\"#weight\";i:-3;s:5:\"#tree\";b:1;}s:11:\"#pre_render\";a:1:{i:0;s:27:\"content_alter_extra_weights\";}s:21:\"#content_extra_fields\";a:8:{s:5:\"title\";a:3:{s:5:\"label\";s:5:\"Title\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:-5;}s:10:\"body_field\";a:4:{s:5:\"label\";s:4:\"Body\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:0;s:4:\"view\";s:4:\"body\";}s:20:\"revision_information\";a:3:{s:5:\"label\";s:20:\"Revision information\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:20;}s:16:\"comment_settings\";a:3:{s:5:\"label\";s:16:\"Comment settings\";s:11:\"description\";s:20:\"Comment module form.\";s:6:\"weight\";i:30;}s:4:\"menu\";a:3:{s:5:\"label\";s:13:\"Menu settings\";s:11:\"description\";s:17:\"Menu module form.\";s:6:\"weight\";i:-2;}s:8:\"taxonomy\";a:3:{s:5:\"label\";s:8:\"Taxonomy\";s:11:\"description\";s:21:\"Taxonomy module form.\";s:6:\"weight\";i:-3;}s:4:\"path\";a:3:{s:5:\"label\";s:13:\"Path settings\";s:11:\"description\";s:17:\"Path module form.\";s:6:\"weight\";i:30;}s:5:\"image\";a:3:{s:5:\"label\";s:5:\"Image\";s:11:\"description\";s:14:\"Image display.\";s:6:\"weight\";i:0;}}s:12:\"#cache_token\";s:32:\"a285a6aaea57f260086c774368d3c784\";}',1270095698,1270074098,'',1),('form_form-1fbf229b66557fc248cf70a7e7e01660','a:41:{s:3:\"#id\";s:9:\"node-form\";s:3:\"nid\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:1:\"2\";}s:3:\"vid\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:1:\"2\";}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:\"1265112144\";}s:4:\"type\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:6:\"banner\";}s:8:\"language\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:0:\"\";}s:7:\"changed\";a:2:{s:5:\"#type\";s:6:\"hidden\";s:14:\"#default_value\";s:10:\"1265112144\";}s:5:\"title\";a:6:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:5:\"Title\";s:9:\"#required\";b:1;s:14:\"#default_value\";s:15:\"Banner 1 - USPV\";s:10:\"#maxlength\";i:255;s:7:\"#weight\";i:-5;}s:10:\"body_field\";a:7:{s:12:\"#after_build\";a:2:{i:0;s:14:\"node_teaser_js\";i:1;s:26:\"node_teaser_include_verify\";}s:7:\"#prefix\";s:32:\"<div class=\"body-field-wrapper\">\";s:7:\"#suffix\";s:6:\"</div>\";s:9:\"teaser_js\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:5:\"#rows\";i:10;s:7:\"#teaser\";s:9:\"edit-body\";s:16:\"#teaser_checkbox\";s:19:\"edit-teaser-include\";s:9:\"#disabled\";b:1;}s:14:\"teaser_include\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:25:\"Show summary in full view\";s:14:\"#default_value\";b:1;s:7:\"#prefix\";s:29:\"<div class=\"teaser-checkbox\">\";s:7:\"#suffix\";s:6:\"</div>\";}s:4:\"body\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:4:\"Body\";s:14:\"#default_value\";s:13:\"banner 1 USPV\";s:5:\"#rows\";i:20;s:9:\"#required\";b:0;}s:6:\"format\";a:9:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:12:\"Input format\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:7:\"#weight\";N;s:17:\"#element_validate\";a:1:{i:0;s:20:\"filter_form_validate\";}i:1;a:7:{s:5:\"#type\";s:5:\"radio\";s:6:\"#title\";s:13:\"Filtered HTML\";s:14:\"#default_value\";s:1:\"1\";s:13:\"#return_value\";s:1:\"1\";s:8:\"#parents\";a:1:{i:0;s:6:\"format\";}s:12:\"#description\";s:306:\"<ul class=\"tips\"><li>Web page addresses and e-mail addresses turn into links automatically.</li><li>Allowed HTML tags: &lt;a&gt; &lt;em&gt; &lt;strong&gt; &lt;cite&gt; &lt;code&gt; &lt;ul&gt; &lt;ol&gt; &lt;li&gt; &lt;dl&gt; &lt;dt&gt; &lt;dd&gt;</li><li>Lines and paragraphs break automatically.</li></ul>\";s:3:\"#id\";s:13:\"edit-format-1\";}i:2;a:7:{s:5:\"#type\";s:5:\"radio\";s:6:\"#title\";s:9:\"Full HTML\";s:14:\"#default_value\";s:1:\"1\";s:13:\"#return_value\";s:1:\"2\";s:8:\"#parents\";a:1:{i:0;s:6:\"format\";}s:12:\"#description\";s:151:\"<ul class=\"tips\"><li>Web page addresses and e-mail addresses turn into links automatically.</li><li>Lines and paragraphs break automatically.</li></ul>\";s:3:\"#id\";s:13:\"edit-format-2\";}i:3;a:1:{s:6:\"#value\";s:89:\"<p><a href=\"/~uspvinc/main/filter/tips\">More information about formatting options</a></p>\";}}}s:5:\"#node\";O:8:\"stdClass\":34:{s:3:\"nid\";s:1:\"2\";s:4:\"type\";s:6:\"banner\";s:8:\"language\";s:0:\"\";s:3:\"uid\";s:1:\"1\";s:6:\"status\";s:1:\"1\";s:7:\"created\";s:10:\"1265112144\";s:7:\"changed\";s:10:\"1265112144\";s:7:\"comment\";s:1:\"2\";s:7:\"promote\";s:1:\"1\";s:8:\"moderate\";s:1:\"0\";s:6:\"sticky\";s:1:\"0\";s:4:\"tnid\";s:1:\"0\";s:9:\"translate\";s:1:\"0\";s:3:\"vid\";s:1:\"2\";s:12:\"revision_uid\";s:1:\"1\";s:5:\"title\";s:15:\"Banner 1 - USPV\";s:4:\"body\";s:13:\"banner 1 USPV\";s:6:\"teaser\";s:13:\"banner 1 USPV\";s:3:\"log\";N;s:18:\"revision_timestamp\";s:10:\"1265112144\";s:6:\"format\";s:1:\"1\";s:4:\"name\";s:5:\"admin\";s:7:\"picture\";s:0:\"\";s:4:\"data\";s:6:\"a:0:{}\";s:4:\"path\";s:20:\"banner/banner-1-uspv\";s:22:\"last_comment_timestamp\";s:10:\"1265112144\";s:17:\"last_comment_name\";N;s:13:\"comment_count\";s:1:\"0\";s:8:\"taxonomy\";a:0:{}s:4:\"iids\";a:1:{i:0;s:1:\"1\";}s:4:\"date\";s:25:\"2010-02-02 20:02:24 +0800\";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:13:\"primary-links\";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:22:\"pathauto_perform_alias\";b:1;}s:20:\"revision_information\";a:7:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:20:\"Revision information\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:7:\"#weight\";i:20;s:8:\"revision\";a:4:{s:7:\"#access\";b:1;s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:19:\"Create new revision\";s:14:\"#default_value\";b:0;}s:3:\"log\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:11:\"Log message\";s:14:\"#default_value\";s:0:\"\";s:5:\"#rows\";i:2;s:12:\"#description\";s:104:\"An explanation of the additions or updates being made to help other authors understand your motivations.\";}}s:6:\"author\";a:8:{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:7:\"#weight\";i:20;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:35:\"Leave blank for <em>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:91:\"Format: <em>2010-02-02 20:02:24 +0800</em>. Leave blank to use the time of form submission.\";s:14:\"#default_value\";s:25:\"2010-02-02 20:02:24 +0800\";}}s:7:\"options\";a:9:{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:7:\"#weight\";i:25;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:\"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\";s:1:\"0\";}}s:7:\"buttons\";a:3:{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:16:\"node_form_submit\";}}s:7:\"preview\";a:4:{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:2:{i:0;s:18:\"node_form_validate\";i:1;s:21:\"image_attach_validate\";}s:6:\"#theme\";a:2:{i:0;s:16:\"banner_node_form\";i:1;s:9:\"node_form\";}s:11:\"#parameters\";a:3:{i:0;s:16:\"banner_node_form\";i:1;a:3:{s:7:\"storage\";N;s:9:\"submitted\";b:0;s:4:\"post\";a:0:{}}i:2;r:83;}s:9:\"#build_id\";s:37:\"form-1fbf229b66557fc248cf70a7e7e01660\";s:5:\"#type\";s:4:\"form\";s:11:\"#programmed\";b:0;s:13:\"form_build_id\";a:4:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:37:\"form-1fbf229b66557fc248cf70a7e7e01660\";s:3:\"#id\";s:37:\"form-1fbf229b66557fc248cf70a7e7e01660\";s:5:\"#name\";s:13:\"form_build_id\";}s:6:\"#token\";s:16:\"banner_node_form\";s:10:\"form_token\";a:3:{s:3:\"#id\";s:32:\"edit-banner-node-form-form-token\";s:5:\"#type\";s:5:\"token\";s:14:\"#default_value\";s:32:\"e93580c49f5fa6dc10730df07d8fcb39\";}s:7:\"form_id\";a:3:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:16:\"banner_node_form\";s:3:\"#id\";s:21:\"edit-banner-node-form\";}s:12:\"#description\";N;s:11:\"#attributes\";a:1:{s:7:\"enctype\";s:19:\"multipart/form-data\";}s:9:\"#required\";b:0;s:5:\"#tree\";b:0;s:8:\"#parents\";a:0:{}s:7:\"#method\";s:4:\"post\";s:7:\"#action\";s:26:\"/~uspvinc/main/node/2/edit\";s:16:\"comment_settings\";a:7:{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:7:\"#weight\";i:30;s:7:\"comment\";a:4:{s:5:\"#type\";s:6:\"radios\";s:8:\"#parents\";a:1:{i:0;s:7:\"comment\";}s:14:\"#default_value\";s:1:\"2\";s:8:\"#options\";a:3:{i:0;s:8:\"Disabled\";i:1;s:9:\"Read only\";i:2;s:10:\"Read/Write\";}}}s:6:\"#cache\";b:1;s:4:\"menu\";a:20:{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:5:\"#tree\";b:1;s:7:\"#weight\";i:-2;s:11:\"#attributes\";a:1:{s:5:\"class\";s:14:\"menu-item-form\";}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:0;}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:5:\"#item\";a:12:{s:10:\"link_title\";s:0:\"\";s:4:\"mlid\";i:0;s:4:\"plid\";i:0;s:9:\"menu_name\";s:13:\"primary-links\";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:10:\"link_title\";a:5:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:15:\"Menu link title\";s:14:\"#default_value\";s:0:\"\";s:12:\"#description\";s:133:\"The link text corresponding to this item that should appear in the menu. Leave blank if you do not wish to add this post to the menu.\";s:9:\"#required\";b:0;}s:6:\"parent\";a:6:{s:5:\"#type\";s:6:\"select\";s:6:\"#title\";s:11:\"Parent item\";s:14:\"#default_value\";s:15:\"primary-links:0\";s:8:\"#options\";a:95:{s:16:\"menu-main-menu:0\";s:11:\"<Main Menu>\";s:18:\"menu-main-menu:283\";s:8:\"-- about\";s:18:\"menu-main-menu:284\";s:12:\"-- resources\";s:18:\"menu-main-menu:285\";s:11:\"-- services\";s:18:\"menu-main-menu:286\";s:17:\"-- special offers\";s:12:\"navigation:0\";s:12:\"<Navigation>\";s:12:\"navigation:9\";s:26:\"-- Compose tips (disabled)\";s:13:\"navigation:21\";s:13:\"-- My account\";s:14:\"navigation:114\";s:20:\"-- Search (disabled)\";s:14:\"navigation:244\";s:22:\"-- Site map (disabled)\";s:13:\"navigation:11\";s:17:\"-- Create content\";s:14:\"navigation:476\";s:11:\"---- Banner\";s:14:\"navigation:441\";s:10:\"---- Image\";s:14:\"navigation:289\";s:21:\"---- Newsletter issue\";s:14:\"navigation:106\";s:9:\"---- Page\";s:14:\"navigation:388\";s:10:\"---- Panel\";s:14:\"navigation:107\";s:10:\"---- Story\";s:12:\"navigation:2\";s:13:\"-- Administer\";s:13:\"navigation:10\";s:23:\"---- Content management\";s:13:\"navigation:27\";s:15:\"------ Comments\";s:13:\"navigation:28\";s:14:\"------ Content\";s:13:\"navigation:29\";s:20:\"------ Content types\";s:14:\"navigation:462\";s:22:\"------ Image galleries\";s:14:\"navigation:463\";s:19:\"------ Image import\";s:14:\"navigation:538\";s:18:\"------ Newsletters\";s:14:\"navigation:546\";s:20:\"-------- Sent issues\";s:14:\"navigation:541\";s:21:\"-------- Draft issues\";s:14:\"navigation:544\";s:20:\"-------- Newsletters\";s:14:\"navigation:548\";s:22:\"-------- Subscriptions\";s:13:\"navigation:42\";s:20:\"------ Post settings\";s:13:\"navigation:43\";s:21:\"------ RSS publishing\";s:13:\"navigation:94\";s:15:\"------ Taxonomy\";s:13:\"navigation:17\";s:18:\"---- Site building\";s:13:\"navigation:25\";s:13:\"------ Blocks\";s:14:\"navigation:424\";s:20:\"------ Bulk Exporter\";s:13:\"navigation:38\";s:12:\"------ Menus\";s:14:\"navigation:282\";s:18:\"-------- Main Menu\";s:13:\"navigation:89\";s:19:\"-------- Navigation\";s:13:\"navigation:90\";s:22:\"-------- Primary links\";s:14:\"navigation:495\";s:19:\"-------- Right Menu\";s:13:\"navigation:91\";s:24:\"-------- Secondary links\";s:14:\"navigation:387\";s:18:\"------ Mini panels\";s:13:\"navigation:39\";s:14:\"------ Modules\";s:14:\"navigation:412\";s:12:\"------ Pages\";s:14:\"navigation:360\";s:13:\"------ Panels\";s:13:\"navigation:49\";s:13:\"------ Themes\";s:14:\"navigation:335\";s:15:\"------ Triggers\";s:14:\"navigation:501\";s:18:\"------ URL aliases\";s:14:\"navigation:257\";s:12:\"------ Views\";s:13:\"navigation:18\";s:23:\"---- Site configuration\";s:13:\"navigation:23\";s:14:\"------ Actions\";s:14:\"navigation:119\";s:26:\"------ Administration menu\";s:13:\"navigation:24\";s:27:\"------ Administration theme\";s:13:\"navigation:26\";s:17:\"------ Clean URLs\";s:13:\"navigation:30\";s:20:\"------ Date and time\";s:13:\"navigation:33\";s:22:\"------ Error reporting\";s:13:\"navigation:34\";s:18:\"------ File system\";s:13:\"navigation:35\";s:20:\"------ Image toolkit\";s:14:\"navigation:442\";s:13:\"------ Images\";s:13:\"navigation:36\";s:20:\"------ Input formats\";s:13:\"navigation:37\";s:25:\"------ Logging and alerts\";s:14:\"navigation:100\";s:25:\"-------- Database logging\";s:14:\"navigation:245\";s:17:\"------ Nice Menus\";s:13:\"navigation:40\";s:18:\"------ Performance\";s:14:\"navigation:120\";s:22:\"------ Search settings\";s:14:\"navigation:539\";s:17:\"------ Simplenews\";s:14:\"navigation:542\";s:16:\"-------- General\";s:14:\"navigation:543\";s:19:\"-------- Newsletter\";s:14:\"navigation:547\";s:21:\"-------- Subscription\";s:14:\"navigation:545\";s:18:\"-------- Send mail\";s:13:\"navigation:46\";s:23:\"------ Site information\";s:13:\"navigation:47\";s:23:\"------ Site maintenance\";s:14:\"navigation:246\";s:15:\"------ Site map\";s:13:\"navigation:20\";s:20:\"---- User management\";s:13:\"navigation:22\";s:19:\"------ Access rules\";s:13:\"navigation:41\";s:18:\"------ Permissions\";s:13:\"navigation:45\";s:12:\"------ Roles\";s:13:\"navigation:50\";s:20:\"------ User settings\";s:13:\"navigation:51\";s:12:\"------ Users\";s:13:\"navigation:16\";s:12:\"---- Reports\";s:13:\"navigation:93\";s:25:\"------ Recent log entries\";s:13:\"navigation:96\";s:33:\"------ Top \'access denied\' errors\";s:13:\"navigation:97\";s:34:\"------ Top \'page not found\' errors\";s:14:\"navigation:121\";s:25:\"------ Top search phrases\";s:14:\"navigation:105\";s:24:\"------ Available updates\";s:13:\"navigation:48\";s:20:\"------ Status report\";s:13:\"navigation:15\";s:9:\"---- Help\";s:12:\"navigation:4\";s:10:\"-- Log out\";s:15:\"primary-links:0\";s:15:\"<Primary links>\";s:17:\"menu-right-menu:0\";s:12:\"<Right Menu>\";s:19:\"menu-right-menu:496\";s:28:\"-- Financial Calculator Tool\";s:19:\"menu-right-menu:497\";s:21:\"-- News Story Library\";s:19:\"menu-right-menu:498\";s:14:\"-- Latest News\";s:19:\"menu-right-menu:499\";s:25:\"-- SREC Management Portal\";s:17:\"secondary-links:0\";s:17:\"<Secondary links>\";}s:12:\"#description\";s:156:\"The maximum depth for an item and all its children is fixed at 9. Some menu items may not be available as parents if selecting them would exceed this limit.\";s:11:\"#attributes\";a:1:{s:5:\"class\";s:17:\"menu-title-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:107:\"Optional. In the menu, the heavier items will sink and the lighter items will be positioned nearer the top.\";}}s:7:\"#submit\";a:2:{i:0;s:21:\"menu_node_form_submit\";i:1;s:29:\"image_attach_node_form_submit\";}s:4:\"path\";a:10:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:17:\"URL path settings\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:0;s:7:\"#access\";b:1;s:7:\"#weight\";i:30;s:4:\"path\";a:6:{s:5:\"#type\";s:9:\"textfield\";s:14:\"#default_value\";s:20:\"banner/banner-1-uspv\";s:10:\"#maxlength\";i:128;s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:12:\"#description\";s:207:\"Optionally specify an alternative URL by which this node 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\";s:1:\"2\";}s:22:\"pathauto_perform_alias\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:15:\"Automatic alias\";s:14:\"#default_value\";b:1;s:12:\"#description\";s:237:\"An alias will be generated for you. If you wish to create your own alias below, uncheck this option. To control the format of the generated aliases, see the <a href=\"/~uspvinc/main/admin/build/path/pathauto\">automated alias settings</a>.\";s:7:\"#weight\";i:-1;}s:9:\"old_alias\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:20:\"banner/banner-1-uspv\";}}s:11:\"#pre_render\";a:1:{i:0;s:27:\"content_alter_extra_weights\";}s:21:\"#content_extra_fields\";a:7:{s:5:\"title\";a:3:{s:5:\"label\";s:5:\"Title\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";s:2:\"-5\";}s:10:\"body_field\";a:4:{s:5:\"label\";s:4:\"Body\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";s:2:\"-2\";s:4:\"view\";s:4:\"body\";}s:20:\"revision_information\";a:3:{s:5:\"label\";s:20:\"Revision information\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";s:2:\"-1\";}s:16:\"comment_settings\";a:3:{s:5:\"label\";s:16:\"Comment settings\";s:11:\"description\";s:20:\"Comment module form.\";s:6:\"weight\";s:1:\"0\";}s:4:\"menu\";a:3:{s:5:\"label\";s:13:\"Menu settings\";s:11:\"description\";s:17:\"Menu module form.\";s:6:\"weight\";s:2:\"-4\";}s:4:\"path\";a:3:{s:5:\"label\";s:13:\"Path settings\";s:11:\"description\";s:17:\"Path module form.\";s:6:\"weight\";i:30;}s:12:\"image_attach\";a:3:{s:5:\"label\";s:15:\"Attached images\";s:11:\"description\";s:25:\"Image Attach module form.\";s:6:\"weight\";s:2:\"-3\";}}s:12:\"image_attach\";a:10:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:15:\"Attached images\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:0;s:12:\"#description\";s:23:\"You may attach 1 image.\";s:15:\"image_thumbnail\";a:1:{i:1;a:3:{s:5:\"#type\";s:4:\"item\";s:6:\"#title\";s:9:\"Thumbnail\";s:6:\"#value\";s:205:\"<img src=\"http://powerstormtech.com/~uspvinc/main/sites/default/files/images/banner-1.thumbnail.png\" alt=\"banner 1 - USPV\" title=\"banner 1 - USPV\"  class=\"image image-thumbnail \" width=\"100\" height=\"36\" />\";}}s:4:\"iids\";a:7:{s:5:\"#type\";s:6:\"select\";s:14:\"#default_value\";a:1:{i:0;s:1:\"1\";}s:9:\"#multiple\";b:1;s:5:\"#size\";i:6;s:6:\"#title\";s:15:\"Existing images\";s:8:\"#options\";a:4:{i:0;s:8:\"- None -\";i:1;s:15:\"banner 1 - USPV\";i:7;s:15:\"banner 2 - USPV\";i:9;s:15:\"banner 3 - USPV\";}s:12:\"#description\";s:54:\"Choose existing images if you do not upload a new one.\";}s:5:\"image\";a:2:{s:5:\"#type\";s:4:\"file\";s:6:\"#title\";s:12:\"Upload image\";}s:11:\"image_title\";a:4:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:11:\"Image title\";s:14:\"#default_value\";s:0:\"\";s:12:\"#description\";s:72:\"The title the image will be shown with. Leave blank to use the filename.\";}s:21:\"image_attach_multiple\";a:4:{s:5:\"#type\";s:6:\"submit\";s:6:\"#value\";s:6:\"Attach\";s:9:\"#validate\";a:1:{i:0;s:21:\"image_attach_validate\";}s:7:\"#submit\";a:1:{i:0;s:29:\"image_attach_image_add_submit\";}}}s:12:\"#cache_token\";s:32:\"a285a6aaea57f260086c774368d3c784\";}',1270095842,1270074242,'',1),('form_form-83654e82c988beb3336a0c8298102229','a:41:{s:7:\"#prefix\";s:4557:\"<div class=\"preview\"><h3>Preview trimmed version</h3>  <div class=\"node\">\n        <h2 class=\"title\"><a href=\"/~uspvinc/main2/resources\">resources</a></h2>    <div class=\"submitted\"></div>\n    <div class=\"taxonomy\"></div>\n    <div class=\"content\"><table class=\"contentbackground\" width=\"100%\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\">\n<tbody>\n<tr>\n<td>\n<h3><font face=\"Verdana\">Internet Resources</font></h3>\n<p><font face=\"Verdana\" size=\"5\"></font>&nbsp;</p>\n<h3><font face=\"Verdana\" size=\"1\">From the Database of State Incentives for Renewables and Efficiency (DSIRE.org):</font></h3>\n<p><font face=\"Verdana\" size=\"2\"><a href=\"http://www.dsireusa.org/library/includes/statesearch2.cfm?State=US&amp;back=fintab&amp;CurrentPageID=7&amp;Search=TableState&amp;EE=1&amp;RE=1\">Federal&nbsp;Incentives for Solar PV</a></font></p>\n</td></tr></tbody></table></div>\n      </div>\n<h3>Preview full version</h3>  <div class=\"node\">\n        <h2 class=\"title\"><a href=\"/~uspvinc/main2/resources\">resources</a></h2>    <div class=\"submitted\"></div>\n    <div class=\"taxonomy\"></div>\n    <div class=\"content\"><table class=\"contentbackground\" width=\"100%\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\">\n<tbody>\n<tr>\n<td>\n<h3><font face=\"Verdana\">Internet Resources</font></h3>\n<p><font face=\"Verdana\" size=\"5\"></font>&nbsp;</p>\n<h3><font face=\"Verdana\" size=\"1\">From the Database of State Incentives for Renewables and Efficiency (DSIRE.org):</font></h3>\n<p><font face=\"Verdana\" size=\"2\"><a href=\"http://www.dsireusa.org/library/includes/statesearch2.cfm?State=US&amp;back=fintab&amp;CurrentPageID=7&amp;Search=TableState&amp;EE=1&amp;RE=1\">Federal&nbsp;Incentives for Solar PV</a></font></p>\n<p><font face=\"Verdana\" size=\"2\"><a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&amp;State=MD&amp;RE=1&amp;EE=1\" target=\"_blank\">Maryland Incentives for Solar PV</a></font></p>\n<p align=\"left\"><font face=\"Verdana\" size=\"2\"><a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&amp;State=DC&amp;RE=1&amp;EE=1\">District of Columbia Incentives for Solar PV</a></font></p>\n<p><font face=\"Verdana\" size=\"1\"></font>&nbsp;</p>\n<p><font face=\"Verdana\" size=\"1\"></font>&nbsp;</p>\n</td>\n</tr>\n</tbody>\n</table>\n<table class=\"content3bk\" width=\"100%\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\">\n<tbody>\n<tr>\n<td>\n<h1><font face=\"Verdana\">Industry Organizations</font></h1>\n<p><font face=\"Verdana\" size=\"2\"><a href=\"http://www.ases.org/\">American Solar Energy Society&nbsp;</a>&nbsp;&nbsp;&nbsp;&nbsp; Professional Member</font></p>\n<p><font face=\"Verdana\" size=\"2\"><a href=\"http://www.ases.org/\"><img src=\"./user/cimage/ases-logo.jpg\" width=\"213\" align=\"bottom\" border=\"0\" height=\"80\" /></a></font></p>\n<p><font face=\"Verdana\" size=\"2\"><a href=\"http://www.mdv-seia.org\">Maryland-DC-Virginia Solar Energy&nbsp;Industries Association</a>&nbsp;&nbsp; Professional Member</font></p>\n<p><font face=\"Verdana\" size=\"2\">&nbsp;&nbsp;<a href=\"http://www.mdv-seia.org\"><img src=\"./user/cimage/MDVSEIA.jpg\" style=\"width: 388px; height: 94px;\" width=\"810\" align=\"middle\" border=\"0\" height=\"94\" /></a></font></p>\n</td>\n</tr>\n</tbody>\n</table>\n<table class=\"content4bk\" width=\"100%\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\">\n<tbody>\n<tr>\n<td>\n<h1><strong><font face=\"Verdana\" size=\"4\">Contact Us</font></strong></h1>\n<p><font size=\"2\"><font face=\"Verdana\"><strong>Telephone</strong>: 240-344-2657</font></font></p>\n<p><font size=\"2\"><font face=\"Verdana\"><strong>Email</strong>:</font></font></p>\n<p><font face=\"Verdana\" size=\"2\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Sales: </font><a href=\"mailto:sales@uspvinc.com\"><font face=\"Verdana\" size=\"2\">sales@uspvinc.com</font></a></p>\n<p><font face=\"Verdana\" size=\"2\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Customer Service: </font><a href=\"mailto:support@uspvinc.com\"><font face=\"Verdana\" size=\"2\">support@uspvinc.com</font></a></p>\n<p><font face=\"Verdana\" size=\"2\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Other Inquiries:&nbsp; </font><a href=\"mailto:info@uspvinc.com\"><font face=\"Verdana\" size=\"2\">info@uspvinc.com</font></a></p>\n<p><font size=\"2\"><font face=\"Verdana\"><strong>Postal Address</strong>: 4539 Metropolitan Court, Frederick MD&nbsp; 21704</font></font></p>\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </p>\n</td>\n</tr>\n</tbody>\n</table>\n</div>\n      </div>\n</div>\n\";s:3:\"#id\";s:9:\"node-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\";i:1265202538;}s:4:\"type\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:4:\"page\";}s:8:\"language\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:0:\"\";}s:7:\"changed\";a:2:{s:5:\"#type\";s:6:\"hidden\";s:14:\"#default_value\";s:10:\"1285364809\";}s:5:\"title\";a:6:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:5:\"Title\";s:9:\"#required\";b:1;s:14:\"#default_value\";s:9:\"resources\";s:10:\"#maxlength\";i:255;s:7:\"#weight\";i:-5;}s:10:\"body_field\";a:7:{s:12:\"#after_build\";a:2:{i:0;s:14:\"node_teaser_js\";i:1;s:26:\"node_teaser_include_verify\";}s:7:\"#prefix\";s:32:\"<div class=\"body-field-wrapper\">\";s:7:\"#suffix\";s:6:\"</div>\";s:9:\"teaser_js\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:5:\"#rows\";i:10;s:7:\"#teaser\";s:9:\"edit-body\";s:16:\"#teaser_checkbox\";s:19:\"edit-teaser-include\";s:9:\"#disabled\";b:1;}s:14:\"teaser_include\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:25:\"Show summary in full view\";s:14:\"#default_value\";b:1;s:7:\"#prefix\";s:29:\"<div class=\"teaser-checkbox\">\";s:7:\"#suffix\";s:6:\"</div>\";}s:4:\"body\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:4:\"Body\";s:14:\"#default_value\";s:3439:\"<table class=\"contentbackground\" width=\"100%\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\">\r\n<tbody><tr>\r\n<td><h3><font face=\"Verdana\">Internet Resources</font></h3>\r\n<p><font face=\"Verdana\" size=\"5\"></font>&nbsp;</p>\r\n<h3><font face=\"Verdana\" size=\"1\">From the Database of State Incentives for Renewables and Efficiency (DSIRE.org):</font></h3>\r\n<p><font face=\"Verdana\" size=\"2\"><a href=\"http://www.dsireusa.org/library/includes/statesearch2.cfm?State=US&amp;back=fintab&amp;CurrentPageID=7&amp;Search=TableState&amp;EE=1&amp;RE=1\">Federal&nbsp;Incentives for Solar PV</a></font></p>\r\n<p><font face=\"Verdana\" size=\"2\"><a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&amp;State=MD&amp;RE=1&amp;EE=1\" target=\"_blank\">Maryland Incentives for Solar PV</a></font></p>\r\n<p align=\"left\"><font face=\"Verdana\" size=\"2\"><a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&amp;State=DC&amp;RE=1&amp;EE=1\">District of Columbia Incentives for Solar PV</a></font></p>\r\n<p><font face=\"Verdana\" size=\"1\"></font>&nbsp;</p>\r\n<p><font face=\"Verdana\" size=\"1\"></font>&nbsp;</p></td></tr></tbody></table>\r\n<table class=\"content3bk\" width=\"100%\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\">\r\n<tbody><tr>\r\n<td><h1><font face=\"Verdana\">Industry Organizations</font></h1>\r\n<p><font face=\"Verdana\" size=\"2\"><a href=\"http://www.ases.org/\">American Solar Energy Society&nbsp;</a>&nbsp;&nbsp;&nbsp;&nbsp; Professional Member</font></p>\r\n<p><font face=\"Verdana\" size=\"2\"><a href=\"http://www.ases.org/\"><img src=\"./user/cimage/ases-logo.jpg\" width=\"213\" align=\"bottom\" border=\"0\" height=\"80\"></a></font></p>\r\n<p><font face=\"Verdana\" size=\"2\"><a href=\"http://www.mdv-seia.org\">Maryland-DC-Virginia Solar Energy&nbsp;Industries Association</a>&nbsp;&nbsp; Professional Member</font></p>\r\n<p><font face=\"Verdana\" size=\"2\">&nbsp;&nbsp;<a href=\"http://www.mdv-seia.org\"><img src=\"./user/cimage/MDVSEIA.jpg\" style=\"width: 388px; height: 94px;\" width=\"810\" align=\"middle\" border=\"0\" height=\"94\"></a></font></p></td></tr></tbody></table>\r\n<table class=\"content4bk\" width=\"100%\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\">\r\n<tbody><tr>\r\n<td><h1><strong><font face=\"Verdana\" size=\"4\">Contact Us</font></strong></h1>\r\n<p><font size=\"2\"><font face=\"Verdana\"><strong>Telephone</strong>: 240-344-2657</font></font></p>\r\n<p><font size=\"2\"><font face=\"Verdana\"><strong>Email</strong>:</font></font></p>\r\n<p><font face=\"Verdana\" size=\"2\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Sales: </font><a href=\"mailto:sales@uspvinc.com\"><font face=\"Verdana\" size=\"2\">sales@uspvinc.com</font></a></p>\r\n<p><font face=\"Verdana\" size=\"2\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Customer Service: </font><a href=\"mailto:support@uspvinc.com\"><font face=\"Verdana\" size=\"2\">support@uspvinc.com</font></a></p>\r\n<p><font face=\"Verdana\" size=\"2\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Other Inquiries:&nbsp; </font><a href=\"mailto:info@uspvinc.com\"><font face=\"Verdana\" size=\"2\">info@uspvinc.com</font></a></p>\r\n<p><font size=\"2\"><font face=\"Verdana\"><strong>Postal Address</strong>: 4539 Metropolitan Court, Frederick MD&nbsp; 21704</font></font></p>\r\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </p></td></tr></tbody></table>\";s:5:\"#rows\";i:20;s:9:\"#required\";b:0;}s:6:\"format\";a:9:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:12:\"Input format\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:7:\"#weight\";N;s:17:\"#element_validate\";a:1:{i:0;s:20:\"filter_form_validate\";}i:1;a:7:{s:5:\"#type\";s:5:\"radio\";s:6:\"#title\";s:13:\"Filtered HTML\";s:14:\"#default_value\";s:1:\"2\";s:13:\"#return_value\";s:1:\"1\";s:8:\"#parents\";a:1:{i:0;s:6:\"format\";}s:12:\"#description\";s:306:\"<ul class=\"tips\"><li>Web page addresses and e-mail addresses turn into links automatically.</li><li>Allowed HTML tags: &lt;a&gt; &lt;em&gt; &lt;strong&gt; &lt;cite&gt; &lt;code&gt; &lt;ul&gt; &lt;ol&gt; &lt;li&gt; &lt;dl&gt; &lt;dt&gt; &lt;dd&gt;</li><li>Lines and paragraphs break automatically.</li></ul>\";s:3:\"#id\";s:13:\"edit-format-1\";}i:2;a:7:{s:5:\"#type\";s:5:\"radio\";s:6:\"#title\";s:9:\"Full HTML\";s:14:\"#default_value\";s:1:\"2\";s:13:\"#return_value\";s:1:\"2\";s:8:\"#parents\";a:1:{i:0;s:6:\"format\";}s:12:\"#description\";s:151:\"<ul class=\"tips\"><li>Web page addresses and e-mail addresses turn into links automatically.</li><li>Lines and paragraphs break automatically.</li></ul>\";s:3:\"#id\";s:13:\"edit-format-2\";}i:3;a:1:{s:6:\"#value\";s:90:\"<p><a href=\"/~uspvinc/main2/filter/tips\">More information about formatting options</a></p>\";}}}s:5:\"#node\";O:8:\"stdClass\":46:{s:3:\"nid\";s:1:\"4\";s:3:\"vid\";s:1:\"4\";s:3:\"uid\";s:1:\"1\";s:7:\"created\";i:1265202538;s:4:\"type\";s:4:\"page\";s:8:\"language\";s:0:\"\";s:7:\"changed\";s:10:\"1285364809\";s:5:\"title\";s:9:\"resources\";s:9:\"teaser_js\";s:0:\"\";s:14:\"teaser_include\";i:1;s:4:\"body\";s:3439:\"<table class=\"contentbackground\" width=\"100%\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\">\r\n<tbody><tr>\r\n<td><h3><font face=\"Verdana\">Internet Resources</font></h3>\r\n<p><font face=\"Verdana\" size=\"5\"></font>&nbsp;</p>\r\n<h3><font face=\"Verdana\" size=\"1\">From the Database of State Incentives for Renewables and Efficiency (DSIRE.org):</font></h3>\r\n<p><font face=\"Verdana\" size=\"2\"><a href=\"http://www.dsireusa.org/library/includes/statesearch2.cfm?State=US&amp;back=fintab&amp;CurrentPageID=7&amp;Search=TableState&amp;EE=1&amp;RE=1\">Federal&nbsp;Incentives for Solar PV</a></font></p>\r\n<p><font face=\"Verdana\" size=\"2\"><a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&amp;State=MD&amp;RE=1&amp;EE=1\" target=\"_blank\">Maryland Incentives for Solar PV</a></font></p>\r\n<p align=\"left\"><font face=\"Verdana\" size=\"2\"><a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&amp;State=DC&amp;RE=1&amp;EE=1\">District of Columbia Incentives for Solar PV</a></font></p>\r\n<p><font face=\"Verdana\" size=\"1\"></font>&nbsp;</p>\r\n<p><font face=\"Verdana\" size=\"1\"></font>&nbsp;</p></td></tr></tbody></table>\r\n<table class=\"content3bk\" width=\"100%\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\">\r\n<tbody><tr>\r\n<td><h1><font face=\"Verdana\">Industry Organizations</font></h1>\r\n<p><font face=\"Verdana\" size=\"2\"><a href=\"http://www.ases.org/\">American Solar Energy Society&nbsp;</a>&nbsp;&nbsp;&nbsp;&nbsp; Professional Member</font></p>\r\n<p><font face=\"Verdana\" size=\"2\"><a href=\"http://www.ases.org/\"><img src=\"./user/cimage/ases-logo.jpg\" width=\"213\" align=\"bottom\" border=\"0\" height=\"80\"></a></font></p>\r\n<p><font face=\"Verdana\" size=\"2\"><a href=\"http://www.mdv-seia.org\">Maryland-DC-Virginia Solar Energy&nbsp;Industries Association</a>&nbsp;&nbsp; Professional Member</font></p>\r\n<p><font face=\"Verdana\" size=\"2\">&nbsp;&nbsp;<a href=\"http://www.mdv-seia.org\"><img src=\"./user/cimage/MDVSEIA.jpg\" style=\"width: 388px; height: 94px;\" width=\"810\" align=\"middle\" border=\"0\" height=\"94\"></a></font></p></td></tr></tbody></table>\r\n<table class=\"content4bk\" width=\"100%\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\">\r\n<tbody><tr>\r\n<td><h1><strong><font face=\"Verdana\" size=\"4\">Contact Us</font></strong></h1>\r\n<p><font size=\"2\"><font face=\"Verdana\"><strong>Telephone</strong>: 240-344-2657</font></font></p>\r\n<p><font size=\"2\"><font face=\"Verdana\"><strong>Email</strong>:</font></font></p>\r\n<p><font face=\"Verdana\" size=\"2\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Sales: </font><a href=\"mailto:sales@uspvinc.com\"><font face=\"Verdana\" size=\"2\">sales@uspvinc.com</font></a></p>\r\n<p><font face=\"Verdana\" size=\"2\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Customer Service: </font><a href=\"mailto:support@uspvinc.com\"><font face=\"Verdana\" size=\"2\">support@uspvinc.com</font></a></p>\r\n<p><font face=\"Verdana\" size=\"2\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Other Inquiries:&nbsp; </font><a href=\"mailto:info@uspvinc.com\"><font face=\"Verdana\" size=\"2\">info@uspvinc.com</font></a></p>\r\n<p><font size=\"2\"><font face=\"Verdana\"><strong>Postal Address</strong>: 4539 Metropolitan Court, Frederick MD&nbsp; 21704</font></font></p>\r\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </p></td></tr></tbody></table>\";s:6:\"format\";s:1:\"2\";s:8:\"revision\";i:0;s:3:\"log\";s:0:\"\";s:4:\"name\";s:5:\"admin\";s:4:\"date\";s:25:\"2010-02-03 21:08:58 +0800\";s:6:\"status\";i:1;s:7:\"promote\";i:0;s:6:\"sticky\";i:0;s:6:\"submit\";s:4:\"Save\";s:2:\"op\";s:7:\"Preview\";s:7:\"preview\";s:7:\"Preview\";s:6:\"delete\";s:6:\"Delete\";s:13:\"form_build_id\";s:37:\"form-6a2263dad615796df1aff4efb01e42ba\";s:10:\"form_token\";s:32:\"085f2577d2b77d19e6a9fc768f63abbb\";s:7:\"form_id\";s:14:\"page_node_form\";s:7:\"comment\";s:1:\"0\";s:4:\"menu\";a:14:{s:6:\"delete\";i:0;s:4:\"mlid\";s:3:\"284\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:10:\"customized\";s:1:\"1\";s:7:\"options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:9:\"resources\";}}s:8:\"expanded\";s:1:\"0\";s:18:\"parent_depth_limit\";i:8;s:10:\"link_title\";s:9:\"resources\";s:6:\"parent\";s:16:\"menu-main-menu:0\";s:6:\"weight\";s:1:\"0\";s:4:\"plid\";s:1:\"0\";s:9:\"menu_name\";s:14:\"menu-main-menu\";}s:4:\"path\";s:9:\"resources\";s:3:\"pid\";s:1:\"4\";s:22:\"pathauto_perform_alias\";i:1;s:9:\"old_alias\";s:9:\"resources\";s:6:\"teaser\";s:582:\"<table class=\"contentbackground\" width=\"100%\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\">\r\n<tbody><tr>\r\n<td><h3><font face=\"Verdana\">Internet Resources</font></h3>\r\n<p><font face=\"Verdana\" size=\"5\"></font>&nbsp;</p>\r\n<h3><font face=\"Verdana\" size=\"1\">From the Database of State Incentives for Renewables and Efficiency (DSIRE.org):</font></h3>\r\n<p><font face=\"Verdana\" size=\"2\"><a href=\"http://www.dsireusa.org/library/includes/statesearch2.cfm?State=US&amp;back=fintab&amp;CurrentPageID=7&amp;Search=TableState&amp;EE=1&amp;RE=1\">Federal&nbsp;Incentives for Solar PV</a></font></p>\";s:9:\"validated\";b:1;s:8:\"moderate\";s:1:\"0\";s:4:\"tnid\";s:1:\"0\";s:9:\"translate\";s:1:\"0\";s:12:\"revision_uid\";s:1:\"1\";s:18:\"revision_timestamp\";s:10:\"1285364809\";s:7:\"picture\";s:0:\"\";s:4:\"data\";s:6:\"a:0:{}\";s:22:\"last_comment_timestamp\";s:10:\"1265202538\";s:17:\"last_comment_name\";N;s:13:\"comment_count\";s:1:\"0\";s:8:\"taxonomy\";a:0:{}s:10:\"build_mode\";i:1;}s:20:\"revision_information\";a:7:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:20:\"Revision information\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:7:\"#weight\";i:20;s:8:\"revision\";a:4:{s:7:\"#access\";b:1;s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:19:\"Create new revision\";s:14:\"#default_value\";i:0;}s:3:\"log\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:11:\"Log message\";s:14:\"#default_value\";s:0:\"\";s:5:\"#rows\";i:2;s:12:\"#description\";s:104:\"An explanation of the additions or updates being made to help other authors understand your motivations.\";}}s:6:\"author\";a:8:{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:7:\"#weight\";i:20;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:35:\"Leave blank for <em>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:91:\"Format: <em>2010-02-03 21:08:58 +0800</em>. Leave blank to use the time of form submission.\";s:14:\"#default_value\";s:25:\"2010-02-03 21:08:58 +0800\";}}s:7:\"options\";a:9:{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:7:\"#weight\";i:25;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: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\";i:0;}}s:7:\"buttons\";a:3:{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:16:\"node_form_submit\";}}s:7:\"preview\";a:4:{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:6:\"#theme\";a:2:{i:0;s:14:\"page_node_form\";i:1;s:9:\"node_form\";}s:11:\"#parameters\";a:3:{i:0;s:14:\"page_node_form\";i:1;a:8:{s:7:\"storage\";N;s:9:\"submitted\";b:1;s:6:\"values\";a:32:{s:3:\"nid\";s:1:\"4\";s:3:\"vid\";s:1:\"4\";s:3:\"uid\";s:1:\"1\";s:7:\"created\";s:10:\"1265202538\";s:4:\"type\";s:4:\"page\";s:8:\"language\";s:0:\"\";s:7:\"changed\";s:10:\"1285364809\";s:5:\"title\";s:9:\"resources\";s:9:\"teaser_js\";s:0:\"\";s:14:\"teaser_include\";i:1;s:4:\"body\";s:3439:\"<table class=\"contentbackground\" width=\"100%\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\">\r\n<tbody><tr>\r\n<td><h3><font face=\"Verdana\">Internet Resources</font></h3>\r\n<p><font face=\"Verdana\" size=\"5\"></font>&nbsp;</p>\r\n<h3><font face=\"Verdana\" size=\"1\">From the Database of State Incentives for Renewables and Efficiency (DSIRE.org):</font></h3>\r\n<p><font face=\"Verdana\" size=\"2\"><a href=\"http://www.dsireusa.org/library/includes/statesearch2.cfm?State=US&amp;back=fintab&amp;CurrentPageID=7&amp;Search=TableState&amp;EE=1&amp;RE=1\">Federal&nbsp;Incentives for Solar PV</a></font></p>\r\n<p><font face=\"Verdana\" size=\"2\"><a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&amp;State=MD&amp;RE=1&amp;EE=1\" target=\"_blank\">Maryland Incentives for Solar PV</a></font></p>\r\n<p align=\"left\"><font face=\"Verdana\" size=\"2\"><a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&amp;State=DC&amp;RE=1&amp;EE=1\">District of Columbia Incentives for Solar PV</a></font></p>\r\n<p><font face=\"Verdana\" size=\"1\"></font>&nbsp;</p>\r\n<p><font face=\"Verdana\" size=\"1\"></font>&nbsp;</p></td></tr></tbody></table>\r\n<table class=\"content3bk\" width=\"100%\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\">\r\n<tbody><tr>\r\n<td><h1><font face=\"Verdana\">Industry Organizations</font></h1>\r\n<p><font face=\"Verdana\" size=\"2\"><a href=\"http://www.ases.org/\">American Solar Energy Society&nbsp;</a>&nbsp;&nbsp;&nbsp;&nbsp; Professional Member</font></p>\r\n<p><font face=\"Verdana\" size=\"2\"><a href=\"http://www.ases.org/\"><img src=\"./user/cimage/ases-logo.jpg\" width=\"213\" align=\"bottom\" border=\"0\" height=\"80\"></a></font></p>\r\n<p><font face=\"Verdana\" size=\"2\"><a href=\"http://www.mdv-seia.org\">Maryland-DC-Virginia Solar Energy&nbsp;Industries Association</a>&nbsp;&nbsp; Professional Member</font></p>\r\n<p><font face=\"Verdana\" size=\"2\">&nbsp;&nbsp;<a href=\"http://www.mdv-seia.org\"><img src=\"./user/cimage/MDVSEIA.jpg\" style=\"width: 388px; height: 94px;\" width=\"810\" align=\"middle\" border=\"0\" height=\"94\"></a></font></p></td></tr></tbody></table>\r\n<table class=\"content4bk\" width=\"100%\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\">\r\n<tbody><tr>\r\n<td><h1><strong><font face=\"Verdana\" size=\"4\">Contact Us</font></strong></h1>\r\n<p><font size=\"2\"><font face=\"Verdana\"><strong>Telephone</strong>: 240-344-2657</font></font></p>\r\n<p><font size=\"2\"><font face=\"Verdana\"><strong>Email</strong>:</font></font></p>\r\n<p><font face=\"Verdana\" size=\"2\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Sales: </font><a href=\"mailto:sales@uspvinc.com\"><font face=\"Verdana\" size=\"2\">sales@uspvinc.com</font></a></p>\r\n<p><font face=\"Verdana\" size=\"2\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Customer Service: </font><a href=\"mailto:support@uspvinc.com\"><font face=\"Verdana\" size=\"2\">support@uspvinc.com</font></a></p>\r\n<p><font face=\"Verdana\" size=\"2\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Other Inquiries:&nbsp; </font><a href=\"mailto:info@uspvinc.com\"><font face=\"Verdana\" size=\"2\">info@uspvinc.com</font></a></p>\r\n<p><font size=\"2\"><font face=\"Verdana\"><strong>Postal Address</strong>: 4539 Metropolitan Court, Frederick MD&nbsp; 21704</font></font></p>\r\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </p></td></tr></tbody></table>\";s:6:\"format\";s:1:\"2\";s:8:\"revision\";i:0;s:3:\"log\";s:0:\"\";s:4:\"name\";s:5:\"admin\";s:4:\"date\";s:25:\"2010-02-03 21:08:58 +0800\";s:6:\"status\";i:1;s:7:\"promote\";i:0;s:6:\"sticky\";i:0;s:6:\"submit\";s:4:\"Save\";s:2:\"op\";s:7:\"Preview\";s:7:\"preview\";s:7:\"Preview\";s:6:\"delete\";s:6:\"Delete\";s:13:\"form_build_id\";s:37:\"form-6a2263dad615796df1aff4efb01e42ba\";s:10:\"form_token\";s:32:\"085f2577d2b77d19e6a9fc768f63abbb\";s:7:\"form_id\";s:14:\"page_node_form\";s:7:\"comment\";s:1:\"0\";s:4:\"menu\";a:14:{s:6:\"delete\";i:0;s:4:\"mlid\";s:3:\"284\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:10:\"customized\";s:1:\"1\";s:7:\"options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:9:\"resources\";}}s:8:\"expanded\";s:1:\"0\";s:18:\"parent_depth_limit\";i:8;s:10:\"link_title\";s:9:\"resources\";s:6:\"parent\";s:16:\"menu-main-menu:0\";s:6:\"weight\";s:1:\"0\";s:4:\"plid\";s:1:\"0\";s:9:\"menu_name\";s:14:\"menu-main-menu\";}s:4:\"path\";s:0:\"\";s:3:\"pid\";s:1:\"4\";s:22:\"pathauto_perform_alias\";i:1;s:9:\"old_alias\";s:9:\"resources\";}s:14:\"clicked_button\";a:19:{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:5:\"#post\";a:16:{s:5:\"title\";s:9:\"resources\";s:4:\"menu\";a:3:{s:10:\"link_title\";s:9:\"resources\";s:6:\"parent\";s:16:\"menu-main-menu:0\";s:6:\"weight\";s:1:\"0\";}s:14:\"teaser_include\";s:1:\"1\";s:4:\"body\";s:3439:\"<table class=\"contentbackground\" width=\"100%\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\">\r\n<tbody><tr>\r\n<td><h3><font face=\"Verdana\">Internet Resources</font></h3>\r\n<p><font face=\"Verdana\" size=\"5\"></font>&nbsp;</p>\r\n<h3><font face=\"Verdana\" size=\"1\">From the Database of State Incentives for Renewables and Efficiency (DSIRE.org):</font></h3>\r\n<p><font face=\"Verdana\" size=\"2\"><a href=\"http://www.dsireusa.org/library/includes/statesearch2.cfm?State=US&amp;back=fintab&amp;CurrentPageID=7&amp;Search=TableState&amp;EE=1&amp;RE=1\">Federal&nbsp;Incentives for Solar PV</a></font></p>\r\n<p><font face=\"Verdana\" size=\"2\"><a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&amp;State=MD&amp;RE=1&amp;EE=1\" target=\"_blank\">Maryland Incentives for Solar PV</a></font></p>\r\n<p align=\"left\"><font face=\"Verdana\" size=\"2\"><a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&amp;State=DC&amp;RE=1&amp;EE=1\">District of Columbia Incentives for Solar PV</a></font></p>\r\n<p><font face=\"Verdana\" size=\"1\"></font>&nbsp;</p>\r\n<p><font face=\"Verdana\" size=\"1\"></font>&nbsp;</p></td></tr></tbody></table>\r\n<table class=\"content3bk\" width=\"100%\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\">\r\n<tbody><tr>\r\n<td><h1><font face=\"Verdana\">Industry Organizations</font></h1>\r\n<p><font face=\"Verdana\" size=\"2\"><a href=\"http://www.ases.org/\">American Solar Energy Society&nbsp;</a>&nbsp;&nbsp;&nbsp;&nbsp; Professional Member</font></p>\r\n<p><font face=\"Verdana\" size=\"2\"><a href=\"http://www.ases.org/\"><img src=\"./user/cimage/ases-logo.jpg\" width=\"213\" align=\"bottom\" border=\"0\" height=\"80\"></a></font></p>\r\n<p><font face=\"Verdana\" size=\"2\"><a href=\"http://www.mdv-seia.org\">Maryland-DC-Virginia Solar Energy&nbsp;Industries Association</a>&nbsp;&nbsp; Professional Member</font></p>\r\n<p><font face=\"Verdana\" size=\"2\">&nbsp;&nbsp;<a href=\"http://www.mdv-seia.org\"><img src=\"./user/cimage/MDVSEIA.jpg\" style=\"width: 388px; height: 94px;\" width=\"810\" align=\"middle\" border=\"0\" height=\"94\"></a></font></p></td></tr></tbody></table>\r\n<table class=\"content4bk\" width=\"100%\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\">\r\n<tbody><tr>\r\n<td><h1><strong><font face=\"Verdana\" size=\"4\">Contact Us</font></strong></h1>\r\n<p><font size=\"2\"><font face=\"Verdana\"><strong>Telephone</strong>: 240-344-2657</font></font></p>\r\n<p><font size=\"2\"><font face=\"Verdana\"><strong>Email</strong>:</font></font></p>\r\n<p><font face=\"Verdana\" size=\"2\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Sales: </font><a href=\"mailto:sales@uspvinc.com\"><font face=\"Verdana\" size=\"2\">sales@uspvinc.com</font></a></p>\r\n<p><font face=\"Verdana\" size=\"2\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Customer Service: </font><a href=\"mailto:support@uspvinc.com\"><font face=\"Verdana\" size=\"2\">support@uspvinc.com</font></a></p>\r\n<p><font face=\"Verdana\" size=\"2\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Other Inquiries:&nbsp; </font><a href=\"mailto:info@uspvinc.com\"><font face=\"Verdana\" size=\"2\">info@uspvinc.com</font></a></p>\r\n<p><font size=\"2\"><font face=\"Verdana\"><strong>Postal Address</strong>: 4539 Metropolitan Court, Frederick MD&nbsp; 21704</font></font></p>\r\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </p></td></tr></tbody></table>\";s:6:\"format\";s:1:\"2\";s:7:\"changed\";s:10:\"1285364809\";s:13:\"form_build_id\";s:37:\"form-6a2263dad615796df1aff4efb01e42ba\";s:10:\"form_token\";s:32:\"085f2577d2b77d19e6a9fc768f63abbb\";s:7:\"form_id\";s:14:\"page_node_form\";s:3:\"log\";s:0:\"\";s:7:\"comment\";s:1:\"0\";s:22:\"pathauto_perform_alias\";s:1:\"1\";s:4:\"name\";s:5:\"admin\";s:4:\"date\";s:25:\"2010-02-03 21:08:58 +0800\";s:6:\"status\";s:1:\"1\";s:2:\"op\";s:7:\"Preview\";}s:11:\"#programmed\";b:0;s:5:\"#tree\";b:0;s:8:\"#parents\";a:1:{i:0;s:7:\"preview\";}s:14:\"#array_parents\";a:2:{i:0;s:7:\"buttons\";i:1;s:7:\"preview\";}s:10:\"#processed\";b:0;s:12:\"#description\";N;s:11:\"#attributes\";a:0:{}s:9:\"#required\";b:0;s:6:\"#input\";b:1;s:5:\"#name\";s:2:\"op\";s:12:\"#button_type\";s:6:\"submit\";s:25:\"#executes_submit_callback\";b:1;s:8:\"#process\";a:1:{i:0;s:16:\"form_expand_ahah\";}s:3:\"#id\";s:12:\"edit-preview\";}s:8:\"redirect\";N;s:4:\"node\";a:34:{s:3:\"nid\";s:1:\"4\";s:3:\"vid\";s:1:\"4\";s:3:\"uid\";s:1:\"1\";s:7:\"created\";i:1265202538;s:4:\"type\";s:4:\"page\";s:8:\"language\";s:0:\"\";s:7:\"changed\";s:10:\"1285364809\";s:5:\"title\";s:9:\"resources\";s:9:\"teaser_js\";s:0:\"\";s:14:\"teaser_include\";i:1;s:4:\"body\";s:3439:\"<table class=\"contentbackground\" width=\"100%\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\">\r\n<tbody><tr>\r\n<td><h3><font face=\"Verdana\">Internet Resources</font></h3>\r\n<p><font face=\"Verdana\" size=\"5\"></font>&nbsp;</p>\r\n<h3><font face=\"Verdana\" size=\"1\">From the Database of State Incentives for Renewables and Efficiency (DSIRE.org):</font></h3>\r\n<p><font face=\"Verdana\" size=\"2\"><a href=\"http://www.dsireusa.org/library/includes/statesearch2.cfm?State=US&amp;back=fintab&amp;CurrentPageID=7&amp;Search=TableState&amp;EE=1&amp;RE=1\">Federal&nbsp;Incentives for Solar PV</a></font></p>\r\n<p><font face=\"Verdana\" size=\"2\"><a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&amp;State=MD&amp;RE=1&amp;EE=1\" target=\"_blank\">Maryland Incentives for Solar PV</a></font></p>\r\n<p align=\"left\"><font face=\"Verdana\" size=\"2\"><a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&amp;State=DC&amp;RE=1&amp;EE=1\">District of Columbia Incentives for Solar PV</a></font></p>\r\n<p><font face=\"Verdana\" size=\"1\"></font>&nbsp;</p>\r\n<p><font face=\"Verdana\" size=\"1\"></font>&nbsp;</p></td></tr></tbody></table>\r\n<table class=\"content3bk\" width=\"100%\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\">\r\n<tbody><tr>\r\n<td><h1><font face=\"Verdana\">Industry Organizations</font></h1>\r\n<p><font face=\"Verdana\" size=\"2\"><a href=\"http://www.ases.org/\">American Solar Energy Society&nbsp;</a>&nbsp;&nbsp;&nbsp;&nbsp; Professional Member</font></p>\r\n<p><font face=\"Verdana\" size=\"2\"><a href=\"http://www.ases.org/\"><img src=\"./user/cimage/ases-logo.jpg\" width=\"213\" align=\"bottom\" border=\"0\" height=\"80\"></a></font></p>\r\n<p><font face=\"Verdana\" size=\"2\"><a href=\"http://www.mdv-seia.org\">Maryland-DC-Virginia Solar Energy&nbsp;Industries Association</a>&nbsp;&nbsp; Professional Member</font></p>\r\n<p><font face=\"Verdana\" size=\"2\">&nbsp;&nbsp;<a href=\"http://www.mdv-seia.org\"><img src=\"./user/cimage/MDVSEIA.jpg\" style=\"width: 388px; height: 94px;\" width=\"810\" align=\"middle\" border=\"0\" height=\"94\"></a></font></p></td></tr></tbody></table>\r\n<table class=\"content4bk\" width=\"100%\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\">\r\n<tbody><tr>\r\n<td><h1><strong><font face=\"Verdana\" size=\"4\">Contact Us</font></strong></h1>\r\n<p><font size=\"2\"><font face=\"Verdana\"><strong>Telephone</strong>: 240-344-2657</font></font></p>\r\n<p><font size=\"2\"><font face=\"Verdana\"><strong>Email</strong>:</font></font></p>\r\n<p><font face=\"Verdana\" size=\"2\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Sales: </font><a href=\"mailto:sales@uspvinc.com\"><font face=\"Verdana\" size=\"2\">sales@uspvinc.com</font></a></p>\r\n<p><font face=\"Verdana\" size=\"2\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Customer Service: </font><a href=\"mailto:support@uspvinc.com\"><font face=\"Verdana\" size=\"2\">support@uspvinc.com</font></a></p>\r\n<p><font face=\"Verdana\" size=\"2\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Other Inquiries:&nbsp; </font><a href=\"mailto:info@uspvinc.com\"><font face=\"Verdana\" size=\"2\">info@uspvinc.com</font></a></p>\r\n<p><font size=\"2\"><font face=\"Verdana\"><strong>Postal Address</strong>: 4539 Metropolitan Court, Frederick MD&nbsp; 21704</font></font></p>\r\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </p></td></tr></tbody></table>\";s:6:\"format\";s:1:\"2\";s:8:\"revision\";i:0;s:3:\"log\";s:0:\"\";s:4:\"name\";s:5:\"admin\";s:4:\"date\";s:25:\"2010-02-03 21:08:58 +0800\";s:6:\"status\";i:1;s:7:\"promote\";i:0;s:6:\"sticky\";i:0;s:6:\"submit\";s:4:\"Save\";s:2:\"op\";s:7:\"Preview\";s:7:\"preview\";s:7:\"Preview\";s:6:\"delete\";s:6:\"Delete\";s:13:\"form_build_id\";s:37:\"form-6a2263dad615796df1aff4efb01e42ba\";s:10:\"form_token\";s:32:\"085f2577d2b77d19e6a9fc768f63abbb\";s:7:\"form_id\";s:14:\"page_node_form\";s:7:\"comment\";s:1:\"0\";s:4:\"menu\";a:14:{s:6:\"delete\";i:0;s:4:\"mlid\";s:3:\"284\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:10:\"customized\";s:1:\"1\";s:7:\"options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:9:\"resources\";}}s:8:\"expanded\";s:1:\"0\";s:18:\"parent_depth_limit\";i:8;s:10:\"link_title\";s:9:\"resources\";s:6:\"parent\";s:16:\"menu-main-menu:0\";s:6:\"weight\";s:1:\"0\";s:4:\"plid\";s:1:\"0\";s:9:\"menu_name\";s:14:\"menu-main-menu\";}s:4:\"path\";s:0:\"\";s:3:\"pid\";s:1:\"4\";s:22:\"pathauto_perform_alias\";i:1;s:9:\"old_alias\";s:9:\"resources\";s:6:\"teaser\";s:582:\"<table class=\"contentbackground\" width=\"100%\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\">\r\n<tbody><tr>\r\n<td><h3><font face=\"Verdana\">Internet Resources</font></h3>\r\n<p><font face=\"Verdana\" size=\"5\"></font>&nbsp;</p>\r\n<h3><font face=\"Verdana\" size=\"1\">From the Database of State Incentives for Renewables and Efficiency (DSIRE.org):</font></h3>\r\n<p><font face=\"Verdana\" size=\"2\"><a href=\"http://www.dsireusa.org/library/includes/statesearch2.cfm?State=US&amp;back=fintab&amp;CurrentPageID=7&amp;Search=TableState&amp;EE=1&amp;RE=1\">Federal&nbsp;Incentives for Solar PV</a></font></p>\";s:9:\"validated\";b:1;}s:7:\"rebuild\";b:1;s:12:\"node_preview\";s:4557:\"<div class=\"preview\"><h3>Preview trimmed version</h3>  <div class=\"node\">\n        <h2 class=\"title\"><a href=\"/~uspvinc/main2/resources\">resources</a></h2>    <div class=\"submitted\"></div>\n    <div class=\"taxonomy\"></div>\n    <div class=\"content\"><table class=\"contentbackground\" width=\"100%\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\">\n<tbody>\n<tr>\n<td>\n<h3><font face=\"Verdana\">Internet Resources</font></h3>\n<p><font face=\"Verdana\" size=\"5\"></font>&nbsp;</p>\n<h3><font face=\"Verdana\" size=\"1\">From the Database of State Incentives for Renewables and Efficiency (DSIRE.org):</font></h3>\n<p><font face=\"Verdana\" size=\"2\"><a href=\"http://www.dsireusa.org/library/includes/statesearch2.cfm?State=US&amp;back=fintab&amp;CurrentPageID=7&amp;Search=TableState&amp;EE=1&amp;RE=1\">Federal&nbsp;Incentives for Solar PV</a></font></p>\n</td></tr></tbody></table></div>\n      </div>\n<h3>Preview full version</h3>  <div class=\"node\">\n        <h2 class=\"title\"><a href=\"/~uspvinc/main2/resources\">resources</a></h2>    <div class=\"submitted\"></div>\n    <div class=\"taxonomy\"></div>\n    <div class=\"content\"><table class=\"contentbackground\" width=\"100%\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\">\n<tbody>\n<tr>\n<td>\n<h3><font face=\"Verdana\">Internet Resources</font></h3>\n<p><font face=\"Verdana\" size=\"5\"></font>&nbsp;</p>\n<h3><font face=\"Verdana\" size=\"1\">From the Database of State Incentives for Renewables and Efficiency (DSIRE.org):</font></h3>\n<p><font face=\"Verdana\" size=\"2\"><a href=\"http://www.dsireusa.org/library/includes/statesearch2.cfm?State=US&amp;back=fintab&amp;CurrentPageID=7&amp;Search=TableState&amp;EE=1&amp;RE=1\">Federal&nbsp;Incentives for Solar PV</a></font></p>\n<p><font face=\"Verdana\" size=\"2\"><a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&amp;State=MD&amp;RE=1&amp;EE=1\" target=\"_blank\">Maryland Incentives for Solar PV</a></font></p>\n<p align=\"left\"><font face=\"Verdana\" size=\"2\"><a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&amp;State=DC&amp;RE=1&amp;EE=1\">District of Columbia Incentives for Solar PV</a></font></p>\n<p><font face=\"Verdana\" size=\"1\"></font>&nbsp;</p>\n<p><font face=\"Verdana\" size=\"1\"></font>&nbsp;</p>\n</td>\n</tr>\n</tbody>\n</table>\n<table class=\"content3bk\" width=\"100%\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\">\n<tbody>\n<tr>\n<td>\n<h1><font face=\"Verdana\">Industry Organizations</font></h1>\n<p><font face=\"Verdana\" size=\"2\"><a href=\"http://www.ases.org/\">American Solar Energy Society&nbsp;</a>&nbsp;&nbsp;&nbsp;&nbsp; Professional Member</font></p>\n<p><font face=\"Verdana\" size=\"2\"><a href=\"http://www.ases.org/\"><img src=\"./user/cimage/ases-logo.jpg\" width=\"213\" align=\"bottom\" border=\"0\" height=\"80\" /></a></font></p>\n<p><font face=\"Verdana\" size=\"2\"><a href=\"http://www.mdv-seia.org\">Maryland-DC-Virginia Solar Energy&nbsp;Industries Association</a>&nbsp;&nbsp; Professional Member</font></p>\n<p><font face=\"Verdana\" size=\"2\">&nbsp;&nbsp;<a href=\"http://www.mdv-seia.org\"><img src=\"./user/cimage/MDVSEIA.jpg\" style=\"width: 388px; height: 94px;\" width=\"810\" align=\"middle\" border=\"0\" height=\"94\" /></a></font></p>\n</td>\n</tr>\n</tbody>\n</table>\n<table class=\"content4bk\" width=\"100%\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\">\n<tbody>\n<tr>\n<td>\n<h1><strong><font face=\"Verdana\" size=\"4\">Contact Us</font></strong></h1>\n<p><font size=\"2\"><font face=\"Verdana\"><strong>Telephone</strong>: 240-344-2657</font></font></p>\n<p><font size=\"2\"><font face=\"Verdana\"><strong>Email</strong>:</font></font></p>\n<p><font face=\"Verdana\" size=\"2\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Sales: </font><a href=\"mailto:sales@uspvinc.com\"><font face=\"Verdana\" size=\"2\">sales@uspvinc.com</font></a></p>\n<p><font face=\"Verdana\" size=\"2\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Customer Service: </font><a href=\"mailto:support@uspvinc.com\"><font face=\"Verdana\" size=\"2\">support@uspvinc.com</font></a></p>\n<p><font face=\"Verdana\" size=\"2\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Other Inquiries:&nbsp; </font><a href=\"mailto:info@uspvinc.com\"><font face=\"Verdana\" size=\"2\">info@uspvinc.com</font></a></p>\n<p><font size=\"2\"><font face=\"Verdana\"><strong>Postal Address</strong>: 4539 Metropolitan Court, Frederick MD&nbsp; 21704</font></font></p>\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </p>\n</td>\n</tr>\n</tbody>\n</table>\n</div>\n      </div>\n</div>\n\";}i:2;O:8:\"stdClass\":29:{s:3:\"nid\";s:1:\"4\";s:4:\"type\";s:4:\"page\";s:8:\"language\";s:0:\"\";s:3:\"uid\";s:1:\"1\";s:6:\"status\";s:1:\"1\";s:7:\"created\";s:10:\"1265202538\";s:7:\"changed\";s:10:\"1285364809\";s:7:\"comment\";s:1:\"0\";s:7:\"promote\";s:1:\"0\";s:8:\"moderate\";s:1:\"0\";s:6:\"sticky\";s:1:\"0\";s:4:\"tnid\";s:1:\"0\";s:9:\"translate\";s:1:\"0\";s:3:\"vid\";s:1:\"4\";s:12:\"revision_uid\";s:1:\"1\";s:5:\"title\";s:9:\"resources\";s:4:\"body\";s:109:\"<b>Internet Resources</b>\r\n\r\nFrom the Database of State Incentives for Renewables and Efficiency (DSIRE.org):\";s:6:\"teaser\";s:109:\"<b>Internet Resources</b>\r\n\r\nFrom the Database of State Incentives for Renewables and Efficiency (DSIRE.org):\";s:3:\"log\";s:0:\"\";s:18:\"revision_timestamp\";s:10:\"1285364809\";s:6:\"format\";s:1:\"1\";s:4:\"name\";s:5:\"admin\";s:7:\"picture\";s:0:\"\";s:4:\"data\";s:6:\"a:0:{}\";s:4:\"path\";s:9:\"resources\";s:22:\"last_comment_timestamp\";s:10:\"1265202538\";s:17:\"last_comment_name\";N;s:13:\"comment_count\";s:1:\"0\";s:8:\"taxonomy\";a:0:{}}}s:9:\"#build_id\";s:37:\"form-83654e82c988beb3336a0c8298102229\";s:5:\"#type\";s:4:\"form\";s:11:\"#programmed\";b:0;s:13:\"form_build_id\";a:4:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:37:\"form-83654e82c988beb3336a0c8298102229\";s:3:\"#id\";s:37:\"form-83654e82c988beb3336a0c8298102229\";s:5:\"#name\";s:13:\"form_build_id\";}s:6:\"#token\";s:14:\"page_node_form\";s:10:\"form_token\";a:3:{s:3:\"#id\";s:30:\"edit-page-node-form-form-token\";s:5:\"#type\";s:5:\"token\";s:14:\"#default_value\";s:32:\"085f2577d2b77d19e6a9fc768f63abbb\";}s:7:\"form_id\";a:3:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:14:\"page_node_form\";s:3:\"#id\";s:19:\"edit-page-node-form\";}s:12:\"#description\";N;s:11:\"#attributes\";a:0:{}s:9:\"#required\";b:0;s:5:\"#tree\";b:0;s:8:\"#parents\";a:0:{}s:7:\"#method\";s:4:\"post\";s:7:\"#action\";s:27:\"/~uspvinc/main2/node/4/edit\";s:16:\"comment_settings\";a:7:{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:7:\"#weight\";i:30;s:7:\"comment\";a:4:{s:5:\"#type\";s:6:\"radios\";s:8:\"#parents\";a:1:{i:0;s:7:\"comment\";}s:14:\"#default_value\";s:1:\"0\";s:8:\"#options\";a:3:{i:0;s:8:\"Disabled\";i:1;s:9:\"Read only\";i:2;s:10:\"Read/Write\";}}}s:6:\"#cache\";b:1;s:4:\"menu\";a:21:{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:5:\"#tree\";b:1;s:7:\"#weight\";i:-2;s:11:\"#attributes\";a:1:{s:5:\"class\";s:14:\"menu-item-form\";}s:6:\"delete\";a:2:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:22:\"Delete this menu item.\";}s:4:\"mlid\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:3:\"284\";}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\";s:1:\"1\";}s:7:\"options\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:9:\"resources\";}}}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:5:\"#item\";a:14:{s:6:\"delete\";i:0;s:4:\"mlid\";s:3:\"284\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:10:\"customized\";s:1:\"1\";s:7:\"options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:9:\"resources\";}}s:8:\"expanded\";s:1:\"0\";s:18:\"parent_depth_limit\";i:8;s:10:\"link_title\";s:9:\"resources\";s:6:\"parent\";s:16:\"menu-main-menu:0\";s:6:\"weight\";s:1:\"0\";s:4:\"plid\";s:1:\"0\";s:9:\"menu_name\";s:14:\"menu-main-menu\";}s:10:\"link_title\";a:5:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:15:\"Menu link title\";s:14:\"#default_value\";s:9:\"resources\";s:12:\"#description\";s:133:\"The link text corresponding to this item that should appear in the menu. Leave blank if you do not wish to add this post to the menu.\";s:9:\"#required\";b:0;}s:6:\"parent\";a:6:{s:5:\"#type\";s:6:\"select\";s:6:\"#title\";s:11:\"Parent item\";s:14:\"#default_value\";s:16:\"menu-main-menu:0\";s:8:\"#options\";a:95:{s:16:\"menu-main-menu:0\";s:11:\"<Main Menu>\";s:18:\"menu-main-menu:283\";s:8:\"-- about\";s:18:\"menu-main-menu:285\";s:11:\"-- services\";s:18:\"menu-main-menu:286\";s:17:\"-- special offers\";s:12:\"navigation:0\";s:12:\"<Navigation>\";s:12:\"navigation:9\";s:26:\"-- Compose tips (disabled)\";s:14:\"navigation:461\";s:29:\"-- Image galleries (disabled)\";s:13:\"navigation:21\";s:13:\"-- My account\";s:14:\"navigation:114\";s:20:\"-- Search (disabled)\";s:14:\"navigation:244\";s:22:\"-- Site map (disabled)\";s:13:\"navigation:11\";s:17:\"-- Create content\";s:14:\"navigation:476\";s:11:\"---- Banner\";s:14:\"navigation:441\";s:10:\"---- Image\";s:14:\"navigation:289\";s:21:\"---- Newsletter issue\";s:14:\"navigation:106\";s:9:\"---- Page\";s:14:\"navigation:388\";s:10:\"---- Panel\";s:14:\"navigation:107\";s:10:\"---- Story\";s:12:\"navigation:2\";s:13:\"-- Administer\";s:13:\"navigation:10\";s:23:\"---- Content management\";s:13:\"navigation:27\";s:15:\"------ Comments\";s:13:\"navigation:28\";s:14:\"------ Content\";s:13:\"navigation:29\";s:20:\"------ Content types\";s:14:\"navigation:462\";s:22:\"------ Image galleries\";s:14:\"navigation:463\";s:19:\"------ Image import\";s:14:\"navigation:538\";s:18:\"------ Newsletters\";s:14:\"navigation:546\";s:20:\"-------- Sent issues\";s:14:\"navigation:541\";s:21:\"-------- Draft issues\";s:14:\"navigation:544\";s:20:\"-------- Newsletters\";s:14:\"navigation:548\";s:22:\"-------- Subscriptions\";s:13:\"navigation:42\";s:20:\"------ Post settings\";s:13:\"navigation:43\";s:21:\"------ RSS publishing\";s:13:\"navigation:94\";s:15:\"------ Taxonomy\";s:13:\"navigation:17\";s:18:\"---- Site building\";s:13:\"navigation:25\";s:13:\"------ Blocks\";s:14:\"navigation:424\";s:20:\"------ Bulk Exporter\";s:13:\"navigation:38\";s:12:\"------ Menus\";s:14:\"navigation:282\";s:18:\"-------- Main Menu\";s:13:\"navigation:89\";s:19:\"-------- Navigation\";s:13:\"navigation:90\";s:22:\"-------- Primary links\";s:14:\"navigation:495\";s:19:\"-------- Right Menu\";s:13:\"navigation:91\";s:24:\"-------- Secondary links\";s:14:\"navigation:387\";s:18:\"------ Mini panels\";s:13:\"navigation:39\";s:14:\"------ Modules\";s:14:\"navigation:412\";s:12:\"------ Pages\";s:14:\"navigation:360\";s:13:\"------ Panels\";s:13:\"navigation:49\";s:13:\"------ Themes\";s:14:\"navigation:335\";s:15:\"------ Triggers\";s:14:\"navigation:501\";s:18:\"------ URL aliases\";s:14:\"navigation:257\";s:12:\"------ Views\";s:13:\"navigation:18\";s:23:\"---- Site configuration\";s:13:\"navigation:23\";s:14:\"------ Actions\";s:14:\"navigation:119\";s:26:\"------ Administration menu\";s:13:\"navigation:24\";s:27:\"------ Administration theme\";s:13:\"navigation:26\";s:17:\"------ Clean URLs\";s:13:\"navigation:30\";s:20:\"------ Date and time\";s:13:\"navigation:33\";s:22:\"------ Error reporting\";s:13:\"navigation:34\";s:18:\"------ File system\";s:13:\"navigation:35\";s:20:\"------ Image toolkit\";s:14:\"navigation:442\";s:13:\"------ Images\";s:13:\"navigation:36\";s:20:\"------ Input formats\";s:13:\"navigation:37\";s:25:\"------ Logging and alerts\";s:14:\"navigation:100\";s:25:\"-------- Database logging\";s:14:\"navigation:245\";s:17:\"------ Nice Menus\";s:13:\"navigation:40\";s:18:\"------ Performance\";s:14:\"navigation:120\";s:22:\"------ Search settings\";s:14:\"navigation:539\";s:17:\"------ Simplenews\";s:14:\"navigation:542\";s:16:\"-------- General\";s:14:\"navigation:543\";s:19:\"-------- Newsletter\";s:14:\"navigation:547\";s:21:\"-------- Subscription\";s:14:\"navigation:545\";s:18:\"-------- Send mail\";s:13:\"navigation:46\";s:23:\"------ Site information\";s:13:\"navigation:47\";s:23:\"------ Site maintenance\";s:14:\"navigation:246\";s:15:\"------ Site map\";s:13:\"navigation:20\";s:20:\"---- User management\";s:13:\"navigation:22\";s:19:\"------ Access rules\";s:13:\"navigation:41\";s:18:\"------ Permissions\";s:13:\"navigation:45\";s:12:\"------ Roles\";s:13:\"navigation:50\";s:20:\"------ User settings\";s:13:\"navigation:51\";s:12:\"------ Users\";s:13:\"navigation:16\";s:12:\"---- Reports\";s:13:\"navigation:93\";s:25:\"------ Recent log entries\";s:13:\"navigation:96\";s:33:\"------ Top \'access denied\' errors\";s:13:\"navigation:97\";s:34:\"------ Top \'page not found\' errors\";s:14:\"navigation:121\";s:25:\"------ Top search phrases\";s:14:\"navigation:105\";s:24:\"------ Available updates\";s:13:\"navigation:48\";s:20:\"------ Status report\";s:13:\"navigation:15\";s:9:\"---- Help\";s:12:\"navigation:4\";s:10:\"-- Log out\";s:15:\"primary-links:0\";s:15:\"<Primary links>\";s:17:\"menu-right-menu:0\";s:12:\"<Right Menu>\";s:19:\"menu-right-menu:496\";s:28:\"-- Financial Calculator Tool\";s:19:\"menu-right-menu:497\";s:21:\"-- News Story Library\";s:19:\"menu-right-menu:498\";s:14:\"-- Latest News\";s:19:\"menu-right-menu:499\";s:25:\"-- SREC Management Portal\";s:17:\"secondary-links:0\";s:17:\"<Secondary links>\";}s:12:\"#description\";s:156:\"The maximum depth for an item and all its children is fixed at 9. Some menu items may not be available as parents if selecting them would exceed this limit.\";s:11:\"#attributes\";a:1:{s:5:\"class\";s:17:\"menu-title-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:1:\"0\";s:12:\"#description\";s:107:\"Optional. In the menu, the heavier items will sink and the lighter items will be positioned nearer the top.\";}}s:7:\"#submit\";a:1:{i:0;s:21:\"menu_node_form_submit\";}s:4:\"path\";a:9:{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:7:\"#access\";b:1;s:7:\"#weight\";i:30;s:4:\"path\";a:6:{s:5:\"#type\";s:9:\"textfield\";s:14:\"#default_value\";s:9:\"resources\";s:10:\"#maxlength\";i:128;s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:12:\"#description\";s:207:\"Optionally specify an alternative URL by which this node 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:22:\"pathauto_perform_alias\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:15:\"Automatic alias\";s:14:\"#default_value\";i:1;s:12:\"#description\";s:238:\"An alias will be generated for you. If you wish to create your own alias below, uncheck this option. To control the format of the generated aliases, see the <a href=\"/~uspvinc/main2/admin/build/path/pathauto\">automated alias settings</a>.\";s:7:\"#weight\";i:-1;}s:9:\"old_alias\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:9:\"resources\";}}s:11:\"#pre_render\";a:1:{i:0;s:27:\"content_alter_extra_weights\";}s:21:\"#content_extra_fields\";a:6:{s:5:\"title\";a:3:{s:5:\"label\";s:5:\"Title\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:-5;}s:10:\"body_field\";a:4:{s:5:\"label\";s:4:\"Body\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:0;s:4:\"view\";s:4:\"body\";}s:20:\"revision_information\";a:3:{s:5:\"label\";s:20:\"Revision information\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:20;}s:16:\"comment_settings\";a:3:{s:5:\"label\";s:16:\"Comment settings\";s:11:\"description\";s:20:\"Comment module form.\";s:6:\"weight\";i:30;}s:4:\"menu\";a:3:{s:5:\"label\";s:13:\"Menu settings\";s:11:\"description\";s:17:\"Menu module form.\";s:6:\"weight\";i:-2;}s:4:\"path\";a:3:{s:5:\"label\";s:13:\"Path settings\";s:11:\"description\";s:17:\"Path module form.\";s:6:\"weight\";i:30;}}s:12:\"#cache_token\";s:32:\"b606e4768653f607fe391c11e4d335c4\";}',1285386515,1285364915,'',1),('form_form-d971cc054da3345f874c4b2b9a213c3c','a:40:{s:3:\"#id\";s:9:\"node-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:\"1265202538\";}s:4:\"type\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:4:\"page\";}s:8:\"language\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:0:\"\";}s:7:\"changed\";a:2:{s:5:\"#type\";s:6:\"hidden\";s:14:\"#default_value\";s:10:\"1285364809\";}s:5:\"title\";a:6:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:5:\"Title\";s:9:\"#required\";b:1;s:14:\"#default_value\";s:9:\"resources\";s:10:\"#maxlength\";i:255;s:7:\"#weight\";i:-5;}s:10:\"body_field\";a:7:{s:12:\"#after_build\";a:2:{i:0;s:14:\"node_teaser_js\";i:1;s:26:\"node_teaser_include_verify\";}s:7:\"#prefix\";s:32:\"<div class=\"body-field-wrapper\">\";s:7:\"#suffix\";s:6:\"</div>\";s:9:\"teaser_js\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:5:\"#rows\";i:10;s:7:\"#teaser\";s:9:\"edit-body\";s:16:\"#teaser_checkbox\";s:19:\"edit-teaser-include\";s:9:\"#disabled\";b:1;}s:14:\"teaser_include\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:25:\"Show summary in full view\";s:14:\"#default_value\";b:1;s:7:\"#prefix\";s:29:\"<div class=\"teaser-checkbox\">\";s:7:\"#suffix\";s:6:\"</div>\";}s:4:\"body\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:4:\"Body\";s:14:\"#default_value\";s:109:\"<b>Internet Resources</b>\r\n\r\nFrom the Database of State Incentives for Renewables and Efficiency (DSIRE.org):\";s:5:\"#rows\";i:20;s:9:\"#required\";b:0;}s:6:\"format\";a:9:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:12:\"Input format\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:7:\"#weight\";N;s:17:\"#element_validate\";a:1:{i:0;s:20:\"filter_form_validate\";}i:1;a:7:{s:5:\"#type\";s:5:\"radio\";s:6:\"#title\";s:13:\"Filtered HTML\";s:14:\"#default_value\";s:1:\"1\";s:13:\"#return_value\";s:1:\"1\";s:8:\"#parents\";a:1:{i:0;s:6:\"format\";}s:12:\"#description\";s:306:\"<ul class=\"tips\"><li>Web page addresses and e-mail addresses turn into links automatically.</li><li>Allowed HTML tags: &lt;a&gt; &lt;em&gt; &lt;strong&gt; &lt;cite&gt; &lt;code&gt; &lt;ul&gt; &lt;ol&gt; &lt;li&gt; &lt;dl&gt; &lt;dt&gt; &lt;dd&gt;</li><li>Lines and paragraphs break automatically.</li></ul>\";s:3:\"#id\";s:13:\"edit-format-1\";}i:2;a:7:{s:5:\"#type\";s:5:\"radio\";s:6:\"#title\";s:9:\"Full HTML\";s:14:\"#default_value\";s:1:\"1\";s:13:\"#return_value\";s:1:\"2\";s:8:\"#parents\";a:1:{i:0;s:6:\"format\";}s:12:\"#description\";s:151:\"<ul class=\"tips\"><li>Web page addresses and e-mail addresses turn into links automatically.</li><li>Lines and paragraphs break automatically.</li></ul>\";s:3:\"#id\";s:13:\"edit-format-2\";}i:3;a:1:{s:6:\"#value\";s:90:\"<p><a href=\"/~uspvinc/main2/filter/tips\">More information about formatting options</a></p>\";}}}s:5:\"#node\";O:8:\"stdClass\":33:{s:3:\"nid\";s:1:\"4\";s:4:\"type\";s:4:\"page\";s:8:\"language\";s:0:\"\";s:3:\"uid\";s:1:\"1\";s:6:\"status\";s:1:\"1\";s:7:\"created\";s:10:\"1265202538\";s:7:\"changed\";s:10:\"1285364809\";s:7:\"comment\";s:1:\"0\";s:7:\"promote\";s:1:\"0\";s:8:\"moderate\";s:1:\"0\";s:6:\"sticky\";s:1:\"0\";s:4:\"tnid\";s:1:\"0\";s:9:\"translate\";s:1:\"0\";s:3:\"vid\";s:1:\"4\";s:12:\"revision_uid\";s:1:\"1\";s:5:\"title\";s:9:\"resources\";s:4:\"body\";s:109:\"<b>Internet Resources</b>\r\n\r\nFrom the Database of State Incentives for Renewables and Efficiency (DSIRE.org):\";s:6:\"teaser\";s:109:\"<b>Internet Resources</b>\r\n\r\nFrom the Database of State Incentives for Renewables and Efficiency (DSIRE.org):\";s:3:\"log\";N;s:18:\"revision_timestamp\";s:10:\"1285364809\";s:6:\"format\";s:1:\"1\";s:4:\"name\";s:5:\"admin\";s:7:\"picture\";s:0:\"\";s:4:\"data\";s:6:\"a:0:{}\";s:4:\"path\";s:9:\"resources\";s:22:\"last_comment_timestamp\";s:10:\"1265202538\";s:17:\"last_comment_name\";N;s:13:\"comment_count\";s:1:\"0\";s:8:\"taxonomy\";a:0:{}s:4:\"date\";s:25:\"2010-02-03 21:08:58 +0800\";s:8:\"revision\";b:0;s:4:\"menu\";a:48:{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:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:3:\"fit\";s:1:\"2\";s:12:\"number_parts\";s:1:\"2\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:9:\"resources\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:4:\"type\";s:1:\"4\";s:14:\"block_callback\";s:0:\"\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"0\";s:4:\"file\";s:0:\"\";s:9:\"menu_name\";s:14:\"menu-main-menu\";s:4:\"mlid\";s:3:\"284\";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:9:\"resources\";s:7:\"options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:9:\"resources\";}}s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"284\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:4:\"href\";s:6:\"node/4\";s:6:\"access\";b:1;s:17:\"localized_options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:9:\"resources\";}}s:18:\"parent_depth_limit\";i:8;}s:22:\"pathauto_perform_alias\";b:1;}s:20:\"revision_information\";a:7:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:20:\"Revision information\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:7:\"#weight\";i:20;s:8:\"revision\";a:4:{s:7:\"#access\";b:1;s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:19:\"Create new revision\";s:14:\"#default_value\";b:0;}s:3:\"log\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:11:\"Log message\";s:14:\"#default_value\";s:0:\"\";s:5:\"#rows\";i:2;s:12:\"#description\";s:104:\"An explanation of the additions or updates being made to help other authors understand your motivations.\";}}s:6:\"author\";a:8:{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:7:\"#weight\";i:20;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:35:\"Leave blank for <em>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:91:\"Format: <em>2010-02-03 21:08:58 +0800</em>. Leave blank to use the time of form submission.\";s:14:\"#default_value\";s:25:\"2010-02-03 21:08:58 +0800\";}}s:7:\"options\";a:9:{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:7:\"#weight\";i:25;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:\"buttons\";a:3:{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:16:\"node_form_submit\";}}s:7:\"preview\";a:4:{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:6:\"#theme\";a:2:{i:0;s:14:\"page_node_form\";i:1;s:9:\"node_form\";}s:11:\"#parameters\";a:3:{i:0;s:14:\"page_node_form\";i:1;a:3:{s:7:\"storage\";N;s:9:\"submitted\";b:0;s:4:\"post\";a:16:{s:5:\"title\";s:9:\"resources\";s:4:\"menu\";a:3:{s:10:\"link_title\";s:9:\"resources\";s:6:\"parent\";s:16:\"menu-main-menu:0\";s:6:\"weight\";s:1:\"0\";}s:14:\"teaser_include\";s:1:\"1\";s:4:\"body\";s:3439:\"<table class=\"contentbackground\" width=\"100%\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\">\r\n<tbody><tr>\r\n<td><h3><font face=\"Verdana\">Internet Resources</font></h3>\r\n<p><font face=\"Verdana\" size=\"5\"></font>&nbsp;</p>\r\n<h3><font face=\"Verdana\" size=\"1\">From the Database of State Incentives for Renewables and Efficiency (DSIRE.org):</font></h3>\r\n<p><font face=\"Verdana\" size=\"2\"><a href=\"http://www.dsireusa.org/library/includes/statesearch2.cfm?State=US&amp;back=fintab&amp;CurrentPageID=7&amp;Search=TableState&amp;EE=1&amp;RE=1\">Federal&nbsp;Incentives for Solar PV</a></font></p>\r\n<p><font face=\"Verdana\" size=\"2\"><a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&amp;State=MD&amp;RE=1&amp;EE=1\" target=\"_blank\">Maryland Incentives for Solar PV</a></font></p>\r\n<p align=\"left\"><font face=\"Verdana\" size=\"2\"><a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&amp;State=DC&amp;RE=1&amp;EE=1\">District of Columbia Incentives for Solar PV</a></font></p>\r\n<p><font face=\"Verdana\" size=\"1\"></font>&nbsp;</p>\r\n<p><font face=\"Verdana\" size=\"1\"></font>&nbsp;</p></td></tr></tbody></table>\r\n<table class=\"content3bk\" width=\"100%\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\">\r\n<tbody><tr>\r\n<td><h1><font face=\"Verdana\">Industry Organizations</font></h1>\r\n<p><font face=\"Verdana\" size=\"2\"><a href=\"http://www.ases.org/\">American Solar Energy Society&nbsp;</a>&nbsp;&nbsp;&nbsp;&nbsp; Professional Member</font></p>\r\n<p><font face=\"Verdana\" size=\"2\"><a href=\"http://www.ases.org/\"><img src=\"./user/cimage/ases-logo.jpg\" width=\"213\" align=\"bottom\" border=\"0\" height=\"80\"></a></font></p>\r\n<p><font face=\"Verdana\" size=\"2\"><a href=\"http://www.mdv-seia.org\">Maryland-DC-Virginia Solar Energy&nbsp;Industries Association</a>&nbsp;&nbsp; Professional Member</font></p>\r\n<p><font face=\"Verdana\" size=\"2\">&nbsp;&nbsp;<a href=\"http://www.mdv-seia.org\"><img src=\"./user/cimage/MDVSEIA.jpg\" style=\"width: 388px; height: 94px;\" width=\"810\" align=\"middle\" border=\"0\" height=\"94\"></a></font></p></td></tr></tbody></table>\r\n<table class=\"content4bk\" width=\"100%\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\">\r\n<tbody><tr>\r\n<td><h1><strong><font face=\"Verdana\" size=\"4\">Contact Us</font></strong></h1>\r\n<p><font size=\"2\"><font face=\"Verdana\"><strong>Telephone</strong>: 240-344-2657</font></font></p>\r\n<p><font size=\"2\"><font face=\"Verdana\"><strong>Email</strong>:</font></font></p>\r\n<p><font face=\"Verdana\" size=\"2\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Sales: </font><a href=\"mailto:sales@uspvinc.com\"><font face=\"Verdana\" size=\"2\">sales@uspvinc.com</font></a></p>\r\n<p><font face=\"Verdana\" size=\"2\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Customer Service: </font><a href=\"mailto:support@uspvinc.com\"><font face=\"Verdana\" size=\"2\">support@uspvinc.com</font></a></p>\r\n<p><font face=\"Verdana\" size=\"2\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Other Inquiries:&nbsp; </font><a href=\"mailto:info@uspvinc.com\"><font face=\"Verdana\" size=\"2\">info@uspvinc.com</font></a></p>\r\n<p><font size=\"2\"><font face=\"Verdana\"><strong>Postal Address</strong>: 4539 Metropolitan Court, Frederick MD&nbsp; 21704</font></font></p>\r\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </p></td></tr></tbody></table>\";s:6:\"format\";s:1:\"2\";s:7:\"changed\";s:10:\"1285364809\";s:13:\"form_build_id\";s:37:\"form-6a2263dad615796df1aff4efb01e42ba\";s:10:\"form_token\";s:32:\"085f2577d2b77d19e6a9fc768f63abbb\";s:7:\"form_id\";s:14:\"page_node_form\";s:3:\"log\";s:0:\"\";s:7:\"comment\";s:1:\"0\";s:22:\"pathauto_perform_alias\";s:1:\"1\";s:4:\"name\";s:5:\"admin\";s:4:\"date\";s:25:\"2010-02-03 21:08:58 +0800\";s:6:\"status\";s:1:\"1\";s:2:\"op\";s:7:\"Preview\";}}i:2;r:83;}s:9:\"#build_id\";s:37:\"form-d971cc054da3345f874c4b2b9a213c3c\";s:5:\"#type\";s:4:\"form\";s:11:\"#programmed\";b:0;s:13:\"form_build_id\";a:4:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:37:\"form-d971cc054da3345f874c4b2b9a213c3c\";s:3:\"#id\";s:37:\"form-d971cc054da3345f874c4b2b9a213c3c\";s:5:\"#name\";s:13:\"form_build_id\";}s:6:\"#token\";s:14:\"page_node_form\";s:10:\"form_token\";a:3:{s:3:\"#id\";s:30:\"edit-page-node-form-form-token\";s:5:\"#type\";s:5:\"token\";s:14:\"#default_value\";s:32:\"085f2577d2b77d19e6a9fc768f63abbb\";}s:7:\"form_id\";a:3:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:14:\"page_node_form\";s:3:\"#id\";s:19:\"edit-page-node-form\";}s:12:\"#description\";N;s:11:\"#attributes\";a:0:{}s:9:\"#required\";b:0;s:5:\"#tree\";b:0;s:8:\"#parents\";a:0:{}s:7:\"#method\";s:4:\"post\";s:7:\"#action\";s:27:\"/~uspvinc/main2/node/4/edit\";s:16:\"comment_settings\";a:7:{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:7:\"#weight\";i:30;s:7:\"comment\";a:4:{s:5:\"#type\";s:6:\"radios\";s:8:\"#parents\";a:1:{i:0;s:7:\"comment\";}s:14:\"#default_value\";s:1:\"0\";s:8:\"#options\";a:3:{i:0;s:8:\"Disabled\";i:1;s:9:\"Read only\";i:2;s:10:\"Read/Write\";}}}s:6:\"#cache\";b:1;s:4:\"menu\";a:21:{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:5:\"#tree\";b:1;s:7:\"#weight\";i:-2;s:11:\"#attributes\";a:1:{s:5:\"class\";s:14:\"menu-item-form\";}s:6:\"delete\";a:2:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:22:\"Delete this menu item.\";}s:4:\"mlid\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:3:\"284\";}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\";s:1:\"1\";}s:7:\"options\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:9:\"resources\";}}}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:5:\"#item\";a:48:{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:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:3:\"fit\";s:1:\"2\";s:12:\"number_parts\";s:1:\"2\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:9:\"resources\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:4:\"type\";s:1:\"4\";s:14:\"block_callback\";s:0:\"\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"0\";s:4:\"file\";s:0:\"\";s:9:\"menu_name\";s:14:\"menu-main-menu\";s:4:\"mlid\";s:3:\"284\";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:9:\"resources\";s:7:\"options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:9:\"resources\";}}s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"284\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:4:\"href\";s:6:\"node/4\";s:6:\"access\";b:1;s:17:\"localized_options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:9:\"resources\";}}s:18:\"parent_depth_limit\";i:8;}s:10:\"link_title\";a:5:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:15:\"Menu link title\";s:14:\"#default_value\";s:9:\"resources\";s:12:\"#description\";s:133:\"The link text corresponding to this item that should appear in the menu. Leave blank if you do not wish to add this post to the menu.\";s:9:\"#required\";b:0;}s:6:\"parent\";a:6:{s:5:\"#type\";s:6:\"select\";s:6:\"#title\";s:11:\"Parent item\";s:14:\"#default_value\";s:16:\"menu-main-menu:0\";s:8:\"#options\";a:95:{s:16:\"menu-main-menu:0\";s:11:\"<Main Menu>\";s:18:\"menu-main-menu:283\";s:8:\"-- about\";s:18:\"menu-main-menu:285\";s:11:\"-- services\";s:18:\"menu-main-menu:286\";s:17:\"-- special offers\";s:12:\"navigation:0\";s:12:\"<Navigation>\";s:12:\"navigation:9\";s:26:\"-- Compose tips (disabled)\";s:14:\"navigation:461\";s:29:\"-- Image galleries (disabled)\";s:13:\"navigation:21\";s:13:\"-- My account\";s:14:\"navigation:114\";s:20:\"-- Search (disabled)\";s:14:\"navigation:244\";s:22:\"-- Site map (disabled)\";s:13:\"navigation:11\";s:17:\"-- Create content\";s:14:\"navigation:476\";s:11:\"---- Banner\";s:14:\"navigation:441\";s:10:\"---- Image\";s:14:\"navigation:289\";s:21:\"---- Newsletter issue\";s:14:\"navigation:106\";s:9:\"---- Page\";s:14:\"navigation:388\";s:10:\"---- Panel\";s:14:\"navigation:107\";s:10:\"---- Story\";s:12:\"navigation:2\";s:13:\"-- Administer\";s:13:\"navigation:10\";s:23:\"---- Content management\";s:13:\"navigation:27\";s:15:\"------ Comments\";s:13:\"navigation:28\";s:14:\"------ Content\";s:13:\"navigation:29\";s:20:\"------ Content types\";s:14:\"navigation:462\";s:22:\"------ Image galleries\";s:14:\"navigation:463\";s:19:\"------ Image import\";s:14:\"navigation:538\";s:18:\"------ Newsletters\";s:14:\"navigation:546\";s:20:\"-------- Sent issues\";s:14:\"navigation:541\";s:21:\"-------- Draft issues\";s:14:\"navigation:544\";s:20:\"-------- Newsletters\";s:14:\"navigation:548\";s:22:\"-------- Subscriptions\";s:13:\"navigation:42\";s:20:\"------ Post settings\";s:13:\"navigation:43\";s:21:\"------ RSS publishing\";s:13:\"navigation:94\";s:15:\"------ Taxonomy\";s:13:\"navigation:17\";s:18:\"---- Site building\";s:13:\"navigation:25\";s:13:\"------ Blocks\";s:14:\"navigation:424\";s:20:\"------ Bulk Exporter\";s:13:\"navigation:38\";s:12:\"------ Menus\";s:14:\"navigation:282\";s:18:\"-------- Main Menu\";s:13:\"navigation:89\";s:19:\"-------- Navigation\";s:13:\"navigation:90\";s:22:\"-------- Primary links\";s:14:\"navigation:495\";s:19:\"-------- Right Menu\";s:13:\"navigation:91\";s:24:\"-------- Secondary links\";s:14:\"navigation:387\";s:18:\"------ Mini panels\";s:13:\"navigation:39\";s:14:\"------ Modules\";s:14:\"navigation:412\";s:12:\"------ Pages\";s:14:\"navigation:360\";s:13:\"------ Panels\";s:13:\"navigation:49\";s:13:\"------ Themes\";s:14:\"navigation:335\";s:15:\"------ Triggers\";s:14:\"navigation:501\";s:18:\"------ URL aliases\";s:14:\"navigation:257\";s:12:\"------ Views\";s:13:\"navigation:18\";s:23:\"---- Site configuration\";s:13:\"navigation:23\";s:14:\"------ Actions\";s:14:\"navigation:119\";s:26:\"------ Administration menu\";s:13:\"navigation:24\";s:27:\"------ Administration theme\";s:13:\"navigation:26\";s:17:\"------ Clean URLs\";s:13:\"navigation:30\";s:20:\"------ Date and time\";s:13:\"navigation:33\";s:22:\"------ Error reporting\";s:13:\"navigation:34\";s:18:\"------ File system\";s:13:\"navigation:35\";s:20:\"------ Image toolkit\";s:14:\"navigation:442\";s:13:\"------ Images\";s:13:\"navigation:36\";s:20:\"------ Input formats\";s:13:\"navigation:37\";s:25:\"------ Logging and alerts\";s:14:\"navigation:100\";s:25:\"-------- Database logging\";s:14:\"navigation:245\";s:17:\"------ Nice Menus\";s:13:\"navigation:40\";s:18:\"------ Performance\";s:14:\"navigation:120\";s:22:\"------ Search settings\";s:14:\"navigation:539\";s:17:\"------ Simplenews\";s:14:\"navigation:542\";s:16:\"-------- General\";s:14:\"navigation:543\";s:19:\"-------- Newsletter\";s:14:\"navigation:547\";s:21:\"-------- Subscription\";s:14:\"navigation:545\";s:18:\"-------- Send mail\";s:13:\"navigation:46\";s:23:\"------ Site information\";s:13:\"navigation:47\";s:23:\"------ Site maintenance\";s:14:\"navigation:246\";s:15:\"------ Site map\";s:13:\"navigation:20\";s:20:\"---- User management\";s:13:\"navigation:22\";s:19:\"------ Access rules\";s:13:\"navigation:41\";s:18:\"------ Permissions\";s:13:\"navigation:45\";s:12:\"------ Roles\";s:13:\"navigation:50\";s:20:\"------ User settings\";s:13:\"navigation:51\";s:12:\"------ Users\";s:13:\"navigation:16\";s:12:\"---- Reports\";s:13:\"navigation:93\";s:25:\"------ Recent log entries\";s:13:\"navigation:96\";s:33:\"------ Top \'access denied\' errors\";s:13:\"navigation:97\";s:34:\"------ Top \'page not found\' errors\";s:14:\"navigation:121\";s:25:\"------ Top search phrases\";s:14:\"navigation:105\";s:24:\"------ Available updates\";s:13:\"navigation:48\";s:20:\"------ Status report\";s:13:\"navigation:15\";s:9:\"---- Help\";s:12:\"navigation:4\";s:10:\"-- Log out\";s:15:\"primary-links:0\";s:15:\"<Primary links>\";s:17:\"menu-right-menu:0\";s:12:\"<Right Menu>\";s:19:\"menu-right-menu:496\";s:28:\"-- Financial Calculator Tool\";s:19:\"menu-right-menu:497\";s:21:\"-- News Story Library\";s:19:\"menu-right-menu:498\";s:14:\"-- Latest News\";s:19:\"menu-right-menu:499\";s:25:\"-- SREC Management Portal\";s:17:\"secondary-links:0\";s:17:\"<Secondary links>\";}s:12:\"#description\";s:156:\"The maximum depth for an item and all its children is fixed at 9. Some menu items may not be available as parents if selecting them would exceed this limit.\";s:11:\"#attributes\";a:1:{s:5:\"class\";s:17:\"menu-title-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:1:\"0\";s:12:\"#description\";s:107:\"Optional. In the menu, the heavier items will sink and the lighter items will be positioned nearer the top.\";}}s:7:\"#submit\";a:1:{i:0;s:21:\"menu_node_form_submit\";}s:4:\"path\";a:10:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:17:\"URL path settings\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:0;s:7:\"#access\";b:1;s:7:\"#weight\";i:30;s:4:\"path\";a:6:{s:5:\"#type\";s:9:\"textfield\";s:14:\"#default_value\";s:9:\"resources\";s:10:\"#maxlength\";i:128;s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:12:\"#description\";s:207:\"Optionally specify an alternative URL by which this node 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\";s:1:\"4\";}s:22:\"pathauto_perform_alias\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:15:\"Automatic alias\";s:14:\"#default_value\";b:1;s:12:\"#description\";s:238:\"An alias will be generated for you. If you wish to create your own alias below, uncheck this option. To control the format of the generated aliases, see the <a href=\"/~uspvinc/main2/admin/build/path/pathauto\">automated alias settings</a>.\";s:7:\"#weight\";i:-1;}s:9:\"old_alias\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:9:\"resources\";}}s:11:\"#pre_render\";a:1:{i:0;s:27:\"content_alter_extra_weights\";}s:21:\"#content_extra_fields\";a:6:{s:5:\"title\";a:3:{s:5:\"label\";s:5:\"Title\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:-5;}s:10:\"body_field\";a:4:{s:5:\"label\";s:4:\"Body\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:0;s:4:\"view\";s:4:\"body\";}s:20:\"revision_information\";a:3:{s:5:\"label\";s:20:\"Revision information\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:20;}s:16:\"comment_settings\";a:3:{s:5:\"label\";s:16:\"Comment settings\";s:11:\"description\";s:20:\"Comment module form.\";s:6:\"weight\";i:30;}s:4:\"menu\";a:3:{s:5:\"label\";s:13:\"Menu settings\";s:11:\"description\";s:17:\"Menu module form.\";s:6:\"weight\";i:-2;}s:4:\"path\";a:3:{s:5:\"label\";s:13:\"Path settings\";s:11:\"description\";s:17:\"Path module form.\";s:6:\"weight\";i:30;}}s:12:\"#cache_token\";s:32:\"b606e4768653f607fe391c11e4d335c4\";}',1285386789,1285365189,'',1),('form_form-61b1d1c42807372b08c336f823061c7c','a:41:{s:7:\"#prefix\";s:4557:\"<div class=\"preview\"><h3>Preview trimmed version</h3>  <div class=\"node\">\n        <h2 class=\"title\"><a href=\"/~uspvinc/main2/resources\">resources</a></h2>    <div class=\"submitted\"></div>\n    <div class=\"taxonomy\"></div>\n    <div class=\"content\"><table class=\"contentbackground\" width=\"100%\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\">\n<tbody>\n<tr>\n<td>\n<h3><font face=\"Verdana\">Internet Resources</font></h3>\n<p><font face=\"Verdana\" size=\"5\"></font>&nbsp;</p>\n<h3><font face=\"Verdana\" size=\"1\">From the Database of State Incentives for Renewables and Efficiency (DSIRE.org):</font></h3>\n<p><font face=\"Verdana\" size=\"2\"><a href=\"http://www.dsireusa.org/library/includes/statesearch2.cfm?State=US&amp;back=fintab&amp;CurrentPageID=7&amp;Search=TableState&amp;EE=1&amp;RE=1\">Federal&nbsp;Incentives for Solar PV</a></font></p>\n</td></tr></tbody></table></div>\n      </div>\n<h3>Preview full version</h3>  <div class=\"node\">\n        <h2 class=\"title\"><a href=\"/~uspvinc/main2/resources\">resources</a></h2>    <div class=\"submitted\"></div>\n    <div class=\"taxonomy\"></div>\n    <div class=\"content\"><table class=\"contentbackground\" width=\"100%\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\">\n<tbody>\n<tr>\n<td>\n<h3><font face=\"Verdana\">Internet Resources</font></h3>\n<p><font face=\"Verdana\" size=\"5\"></font>&nbsp;</p>\n<h3><font face=\"Verdana\" size=\"1\">From the Database of State Incentives for Renewables and Efficiency (DSIRE.org):</font></h3>\n<p><font face=\"Verdana\" size=\"2\"><a href=\"http://www.dsireusa.org/library/includes/statesearch2.cfm?State=US&amp;back=fintab&amp;CurrentPageID=7&amp;Search=TableState&amp;EE=1&amp;RE=1\">Federal&nbsp;Incentives for Solar PV</a></font></p>\n<p><font face=\"Verdana\" size=\"2\"><a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&amp;State=MD&amp;RE=1&amp;EE=1\" target=\"_blank\">Maryland Incentives for Solar PV</a></font></p>\n<p align=\"left\"><font face=\"Verdana\" size=\"2\"><a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&amp;State=DC&amp;RE=1&amp;EE=1\">District of Columbia Incentives for Solar PV</a></font></p>\n<p><font face=\"Verdana\" size=\"1\"></font>&nbsp;</p>\n<p><font face=\"Verdana\" size=\"1\"></font>&nbsp;</p>\n</td>\n</tr>\n</tbody>\n</table>\n<table class=\"content3bk\" width=\"100%\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\">\n<tbody>\n<tr>\n<td>\n<h1><font face=\"Verdana\">Industry Organizations</font></h1>\n<p><font face=\"Verdana\" size=\"2\"><a href=\"http://www.ases.org/\">American Solar Energy Society&nbsp;</a>&nbsp;&nbsp;&nbsp;&nbsp; Professional Member</font></p>\n<p><font face=\"Verdana\" size=\"2\"><a href=\"http://www.ases.org/\"><img src=\"./user/cimage/ases-logo.jpg\" width=\"213\" align=\"bottom\" border=\"0\" height=\"80\" /></a></font></p>\n<p><font face=\"Verdana\" size=\"2\"><a href=\"http://www.mdv-seia.org\">Maryland-DC-Virginia Solar Energy&nbsp;Industries Association</a>&nbsp;&nbsp; Professional Member</font></p>\n<p><font face=\"Verdana\" size=\"2\">&nbsp;&nbsp;<a href=\"http://www.mdv-seia.org\"><img src=\"./user/cimage/MDVSEIA.jpg\" style=\"width: 388px; height: 94px;\" width=\"810\" align=\"middle\" border=\"0\" height=\"94\" /></a></font></p>\n</td>\n</tr>\n</tbody>\n</table>\n<table class=\"content4bk\" width=\"100%\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\">\n<tbody>\n<tr>\n<td>\n<h1><strong><font face=\"Verdana\" size=\"4\">Contact Us</font></strong></h1>\n<p><font size=\"2\"><font face=\"Verdana\"><strong>Telephone</strong>: 240-344-2657</font></font></p>\n<p><font size=\"2\"><font face=\"Verdana\"><strong>Email</strong>:</font></font></p>\n<p><font face=\"Verdana\" size=\"2\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Sales: </font><a href=\"mailto:sales@uspvinc.com\"><font face=\"Verdana\" size=\"2\">sales@uspvinc.com</font></a></p>\n<p><font face=\"Verdana\" size=\"2\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Customer Service: </font><a href=\"mailto:support@uspvinc.com\"><font face=\"Verdana\" size=\"2\">support@uspvinc.com</font></a></p>\n<p><font face=\"Verdana\" size=\"2\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Other Inquiries:&nbsp; </font><a href=\"mailto:info@uspvinc.com\"><font face=\"Verdana\" size=\"2\">info@uspvinc.com</font></a></p>\n<p><font size=\"2\"><font face=\"Verdana\"><strong>Postal Address</strong>: 4539 Metropolitan Court, Frederick MD&nbsp; 21704</font></font></p>\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </p>\n</td>\n</tr>\n</tbody>\n</table>\n</div>\n      </div>\n</div>\n\";s:3:\"#id\";s:9:\"node-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\";i:1265202538;}s:4:\"type\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:4:\"page\";}s:8:\"language\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:0:\"\";}s:7:\"changed\";a:2:{s:5:\"#type\";s:6:\"hidden\";s:14:\"#default_value\";s:10:\"1285364809\";}s:5:\"title\";a:6:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:5:\"Title\";s:9:\"#required\";b:1;s:14:\"#default_value\";s:9:\"resources\";s:10:\"#maxlength\";i:255;s:7:\"#weight\";i:-5;}s:10:\"body_field\";a:7:{s:12:\"#after_build\";a:2:{i:0;s:14:\"node_teaser_js\";i:1;s:26:\"node_teaser_include_verify\";}s:7:\"#prefix\";s:32:\"<div class=\"body-field-wrapper\">\";s:7:\"#suffix\";s:6:\"</div>\";s:9:\"teaser_js\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:5:\"#rows\";i:10;s:7:\"#teaser\";s:9:\"edit-body\";s:16:\"#teaser_checkbox\";s:19:\"edit-teaser-include\";s:9:\"#disabled\";b:1;}s:14:\"teaser_include\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:25:\"Show summary in full view\";s:14:\"#default_value\";b:1;s:7:\"#prefix\";s:29:\"<div class=\"teaser-checkbox\">\";s:7:\"#suffix\";s:6:\"</div>\";}s:4:\"body\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:4:\"Body\";s:14:\"#default_value\";s:3439:\"<table class=\"contentbackground\" width=\"100%\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\">\r\n<tbody><tr>\r\n<td><h3><font face=\"Verdana\">Internet Resources</font></h3>\r\n<p><font face=\"Verdana\" size=\"5\"></font>&nbsp;</p>\r\n<h3><font face=\"Verdana\" size=\"1\">From the Database of State Incentives for Renewables and Efficiency (DSIRE.org):</font></h3>\r\n<p><font face=\"Verdana\" size=\"2\"><a href=\"http://www.dsireusa.org/library/includes/statesearch2.cfm?State=US&amp;back=fintab&amp;CurrentPageID=7&amp;Search=TableState&amp;EE=1&amp;RE=1\">Federal&nbsp;Incentives for Solar PV</a></font></p>\r\n<p><font face=\"Verdana\" size=\"2\"><a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&amp;State=MD&amp;RE=1&amp;EE=1\" target=\"_blank\">Maryland Incentives for Solar PV</a></font></p>\r\n<p align=\"left\"><font face=\"Verdana\" size=\"2\"><a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&amp;State=DC&amp;RE=1&amp;EE=1\">District of Columbia Incentives for Solar PV</a></font></p>\r\n<p><font face=\"Verdana\" size=\"1\"></font>&nbsp;</p>\r\n<p><font face=\"Verdana\" size=\"1\"></font>&nbsp;</p></td></tr></tbody></table>\r\n<table class=\"content3bk\" width=\"100%\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\">\r\n<tbody><tr>\r\n<td><h1><font face=\"Verdana\">Industry Organizations</font></h1>\r\n<p><font face=\"Verdana\" size=\"2\"><a href=\"http://www.ases.org/\">American Solar Energy Society&nbsp;</a>&nbsp;&nbsp;&nbsp;&nbsp; Professional Member</font></p>\r\n<p><font face=\"Verdana\" size=\"2\"><a href=\"http://www.ases.org/\"><img src=\"./user/cimage/ases-logo.jpg\" width=\"213\" align=\"bottom\" border=\"0\" height=\"80\"></a></font></p>\r\n<p><font face=\"Verdana\" size=\"2\"><a href=\"http://www.mdv-seia.org\">Maryland-DC-Virginia Solar Energy&nbsp;Industries Association</a>&nbsp;&nbsp; Professional Member</font></p>\r\n<p><font face=\"Verdana\" size=\"2\">&nbsp;&nbsp;<a href=\"http://www.mdv-seia.org\"><img src=\"./user/cimage/MDVSEIA.jpg\" style=\"width: 388px; height: 94px;\" width=\"810\" align=\"middle\" border=\"0\" height=\"94\"></a></font></p></td></tr></tbody></table>\r\n<table class=\"content4bk\" width=\"100%\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\">\r\n<tbody><tr>\r\n<td><h1><strong><font face=\"Verdana\" size=\"4\">Contact Us</font></strong></h1>\r\n<p><font size=\"2\"><font face=\"Verdana\"><strong>Telephone</strong>: 240-344-2657</font></font></p>\r\n<p><font size=\"2\"><font face=\"Verdana\"><strong>Email</strong>:</font></font></p>\r\n<p><font face=\"Verdana\" size=\"2\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Sales: </font><a href=\"mailto:sales@uspvinc.com\"><font face=\"Verdana\" size=\"2\">sales@uspvinc.com</font></a></p>\r\n<p><font face=\"Verdana\" size=\"2\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Customer Service: </font><a href=\"mailto:support@uspvinc.com\"><font face=\"Verdana\" size=\"2\">support@uspvinc.com</font></a></p>\r\n<p><font face=\"Verdana\" size=\"2\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Other Inquiries:&nbsp; </font><a href=\"mailto:info@uspvinc.com\"><font face=\"Verdana\" size=\"2\">info@uspvinc.com</font></a></p>\r\n<p><font size=\"2\"><font face=\"Verdana\"><strong>Postal Address</strong>: 4539 Metropolitan Court, Frederick MD&nbsp; 21704</font></font></p>\r\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </p></td></tr></tbody></table>\";s:5:\"#rows\";i:20;s:9:\"#required\";b:0;}s:6:\"format\";a:9:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:12:\"Input format\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:7:\"#weight\";N;s:17:\"#element_validate\";a:1:{i:0;s:20:\"filter_form_validate\";}i:1;a:7:{s:5:\"#type\";s:5:\"radio\";s:6:\"#title\";s:13:\"Filtered HTML\";s:14:\"#default_value\";s:1:\"2\";s:13:\"#return_value\";s:1:\"1\";s:8:\"#parents\";a:1:{i:0;s:6:\"format\";}s:12:\"#description\";s:306:\"<ul class=\"tips\"><li>Web page addresses and e-mail addresses turn into links automatically.</li><li>Allowed HTML tags: &lt;a&gt; &lt;em&gt; &lt;strong&gt; &lt;cite&gt; &lt;code&gt; &lt;ul&gt; &lt;ol&gt; &lt;li&gt; &lt;dl&gt; &lt;dt&gt; &lt;dd&gt;</li><li>Lines and paragraphs break automatically.</li></ul>\";s:3:\"#id\";s:13:\"edit-format-1\";}i:2;a:7:{s:5:\"#type\";s:5:\"radio\";s:6:\"#title\";s:9:\"Full HTML\";s:14:\"#default_value\";s:1:\"2\";s:13:\"#return_value\";s:1:\"2\";s:8:\"#parents\";a:1:{i:0;s:6:\"format\";}s:12:\"#description\";s:151:\"<ul class=\"tips\"><li>Web page addresses and e-mail addresses turn into links automatically.</li><li>Lines and paragraphs break automatically.</li></ul>\";s:3:\"#id\";s:13:\"edit-format-2\";}i:3;a:1:{s:6:\"#value\";s:90:\"<p><a href=\"/~uspvinc/main2/filter/tips\">More information about formatting options</a></p>\";}}}s:5:\"#node\";O:8:\"stdClass\":46:{s:3:\"nid\";s:1:\"4\";s:3:\"vid\";s:1:\"4\";s:3:\"uid\";s:1:\"1\";s:7:\"created\";i:1265202538;s:4:\"type\";s:4:\"page\";s:8:\"language\";s:0:\"\";s:7:\"changed\";s:10:\"1285364809\";s:5:\"title\";s:9:\"resources\";s:9:\"teaser_js\";s:0:\"\";s:14:\"teaser_include\";i:1;s:4:\"body\";s:3439:\"<table class=\"contentbackground\" width=\"100%\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\">\r\n<tbody><tr>\r\n<td><h3><font face=\"Verdana\">Internet Resources</font></h3>\r\n<p><font face=\"Verdana\" size=\"5\"></font>&nbsp;</p>\r\n<h3><font face=\"Verdana\" size=\"1\">From the Database of State Incentives for Renewables and Efficiency (DSIRE.org):</font></h3>\r\n<p><font face=\"Verdana\" size=\"2\"><a href=\"http://www.dsireusa.org/library/includes/statesearch2.cfm?State=US&amp;back=fintab&amp;CurrentPageID=7&amp;Search=TableState&amp;EE=1&amp;RE=1\">Federal&nbsp;Incentives for Solar PV</a></font></p>\r\n<p><font face=\"Verdana\" size=\"2\"><a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&amp;State=MD&amp;RE=1&amp;EE=1\" target=\"_blank\">Maryland Incentives for Solar PV</a></font></p>\r\n<p align=\"left\"><font face=\"Verdana\" size=\"2\"><a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&amp;State=DC&amp;RE=1&amp;EE=1\">District of Columbia Incentives for Solar PV</a></font></p>\r\n<p><font face=\"Verdana\" size=\"1\"></font>&nbsp;</p>\r\n<p><font face=\"Verdana\" size=\"1\"></font>&nbsp;</p></td></tr></tbody></table>\r\n<table class=\"content3bk\" width=\"100%\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\">\r\n<tbody><tr>\r\n<td><h1><font face=\"Verdana\">Industry Organizations</font></h1>\r\n<p><font face=\"Verdana\" size=\"2\"><a href=\"http://www.ases.org/\">American Solar Energy Society&nbsp;</a>&nbsp;&nbsp;&nbsp;&nbsp; Professional Member</font></p>\r\n<p><font face=\"Verdana\" size=\"2\"><a href=\"http://www.ases.org/\"><img src=\"./user/cimage/ases-logo.jpg\" width=\"213\" align=\"bottom\" border=\"0\" height=\"80\"></a></font></p>\r\n<p><font face=\"Verdana\" size=\"2\"><a href=\"http://www.mdv-seia.org\">Maryland-DC-Virginia Solar Energy&nbsp;Industries Association</a>&nbsp;&nbsp; Professional Member</font></p>\r\n<p><font face=\"Verdana\" size=\"2\">&nbsp;&nbsp;<a href=\"http://www.mdv-seia.org\"><img src=\"./user/cimage/MDVSEIA.jpg\" style=\"width: 388px; height: 94px;\" width=\"810\" align=\"middle\" border=\"0\" height=\"94\"></a></font></p></td></tr></tbody></table>\r\n<table class=\"content4bk\" width=\"100%\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\">\r\n<tbody><tr>\r\n<td><h1><strong><font face=\"Verdana\" size=\"4\">Contact Us</font></strong></h1>\r\n<p><font size=\"2\"><font face=\"Verdana\"><strong>Telephone</strong>: 240-344-2657</font></font></p>\r\n<p><font size=\"2\"><font face=\"Verdana\"><strong>Email</strong>:</font></font></p>\r\n<p><font face=\"Verdana\" size=\"2\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Sales: </font><a href=\"mailto:sales@uspvinc.com\"><font face=\"Verdana\" size=\"2\">sales@uspvinc.com</font></a></p>\r\n<p><font face=\"Verdana\" size=\"2\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Customer Service: </font><a href=\"mailto:support@uspvinc.com\"><font face=\"Verdana\" size=\"2\">support@uspvinc.com</font></a></p>\r\n<p><font face=\"Verdana\" size=\"2\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Other Inquiries:&nbsp; </font><a href=\"mailto:info@uspvinc.com\"><font face=\"Verdana\" size=\"2\">info@uspvinc.com</font></a></p>\r\n<p><font size=\"2\"><font face=\"Verdana\"><strong>Postal Address</strong>: 4539 Metropolitan Court, Frederick MD&nbsp; 21704</font></font></p>\r\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </p></td></tr></tbody></table>\";s:6:\"format\";s:1:\"2\";s:8:\"revision\";i:0;s:3:\"log\";s:0:\"\";s:4:\"name\";s:5:\"admin\";s:4:\"date\";s:25:\"2010-02-03 21:08:58 +0800\";s:6:\"status\";i:1;s:7:\"promote\";i:0;s:6:\"sticky\";i:0;s:6:\"submit\";s:4:\"Save\";s:2:\"op\";s:7:\"Preview\";s:7:\"preview\";s:7:\"Preview\";s:6:\"delete\";s:6:\"Delete\";s:13:\"form_build_id\";s:37:\"form-d971cc054da3345f874c4b2b9a213c3c\";s:10:\"form_token\";s:32:\"085f2577d2b77d19e6a9fc768f63abbb\";s:7:\"form_id\";s:14:\"page_node_form\";s:7:\"comment\";s:1:\"0\";s:4:\"menu\";a:14:{s:6:\"delete\";i:0;s:4:\"mlid\";s:3:\"284\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:10:\"customized\";s:1:\"1\";s:7:\"options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:9:\"resources\";}}s:8:\"expanded\";s:1:\"0\";s:18:\"parent_depth_limit\";i:8;s:10:\"link_title\";s:9:\"resources\";s:6:\"parent\";s:16:\"menu-main-menu:0\";s:6:\"weight\";s:1:\"0\";s:4:\"plid\";s:1:\"0\";s:9:\"menu_name\";s:14:\"menu-main-menu\";}s:4:\"path\";s:9:\"resources\";s:3:\"pid\";s:1:\"4\";s:22:\"pathauto_perform_alias\";i:1;s:9:\"old_alias\";s:9:\"resources\";s:6:\"teaser\";s:582:\"<table class=\"contentbackground\" width=\"100%\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\">\r\n<tbody><tr>\r\n<td><h3><font face=\"Verdana\">Internet Resources</font></h3>\r\n<p><font face=\"Verdana\" size=\"5\"></font>&nbsp;</p>\r\n<h3><font face=\"Verdana\" size=\"1\">From the Database of State Incentives for Renewables and Efficiency (DSIRE.org):</font></h3>\r\n<p><font face=\"Verdana\" size=\"2\"><a href=\"http://www.dsireusa.org/library/includes/statesearch2.cfm?State=US&amp;back=fintab&amp;CurrentPageID=7&amp;Search=TableState&amp;EE=1&amp;RE=1\">Federal&nbsp;Incentives for Solar PV</a></font></p>\";s:9:\"validated\";b:1;s:8:\"moderate\";s:1:\"0\";s:4:\"tnid\";s:1:\"0\";s:9:\"translate\";s:1:\"0\";s:12:\"revision_uid\";s:1:\"1\";s:18:\"revision_timestamp\";s:10:\"1285364809\";s:7:\"picture\";s:0:\"\";s:4:\"data\";s:6:\"a:0:{}\";s:22:\"last_comment_timestamp\";s:10:\"1265202538\";s:17:\"last_comment_name\";N;s:13:\"comment_count\";s:1:\"0\";s:8:\"taxonomy\";a:0:{}s:10:\"build_mode\";i:1;}s:20:\"revision_information\";a:7:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:20:\"Revision information\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:7:\"#weight\";i:20;s:8:\"revision\";a:4:{s:7:\"#access\";b:1;s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:19:\"Create new revision\";s:14:\"#default_value\";i:0;}s:3:\"log\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:11:\"Log message\";s:14:\"#default_value\";s:0:\"\";s:5:\"#rows\";i:2;s:12:\"#description\";s:104:\"An explanation of the additions or updates being made to help other authors understand your motivations.\";}}s:6:\"author\";a:8:{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:7:\"#weight\";i:20;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:35:\"Leave blank for <em>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:91:\"Format: <em>2010-02-03 21:08:58 +0800</em>. Leave blank to use the time of form submission.\";s:14:\"#default_value\";s:25:\"2010-02-03 21:08:58 +0800\";}}s:7:\"options\";a:9:{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:7:\"#weight\";i:25;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: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\";i:0;}}s:7:\"buttons\";a:3:{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:16:\"node_form_submit\";}}s:7:\"preview\";a:4:{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:6:\"#theme\";a:2:{i:0;s:14:\"page_node_form\";i:1;s:9:\"node_form\";}s:11:\"#parameters\";a:3:{i:0;s:14:\"page_node_form\";i:1;a:8:{s:7:\"storage\";N;s:9:\"submitted\";b:1;s:6:\"values\";a:32:{s:3:\"nid\";s:1:\"4\";s:3:\"vid\";s:1:\"4\";s:3:\"uid\";s:1:\"1\";s:7:\"created\";s:10:\"1265202538\";s:4:\"type\";s:4:\"page\";s:8:\"language\";s:0:\"\";s:7:\"changed\";s:10:\"1285364809\";s:5:\"title\";s:9:\"resources\";s:9:\"teaser_js\";s:0:\"\";s:14:\"teaser_include\";i:1;s:4:\"body\";s:3439:\"<table class=\"contentbackground\" width=\"100%\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\">\r\n<tbody><tr>\r\n<td><h3><font face=\"Verdana\">Internet Resources</font></h3>\r\n<p><font face=\"Verdana\" size=\"5\"></font>&nbsp;</p>\r\n<h3><font face=\"Verdana\" size=\"1\">From the Database of State Incentives for Renewables and Efficiency (DSIRE.org):</font></h3>\r\n<p><font face=\"Verdana\" size=\"2\"><a href=\"http://www.dsireusa.org/library/includes/statesearch2.cfm?State=US&amp;back=fintab&amp;CurrentPageID=7&amp;Search=TableState&amp;EE=1&amp;RE=1\">Federal&nbsp;Incentives for Solar PV</a></font></p>\r\n<p><font face=\"Verdana\" size=\"2\"><a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&amp;State=MD&amp;RE=1&amp;EE=1\" target=\"_blank\">Maryland Incentives for Solar PV</a></font></p>\r\n<p align=\"left\"><font face=\"Verdana\" size=\"2\"><a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&amp;State=DC&amp;RE=1&amp;EE=1\">District of Columbia Incentives for Solar PV</a></font></p>\r\n<p><font face=\"Verdana\" size=\"1\"></font>&nbsp;</p>\r\n<p><font face=\"Verdana\" size=\"1\"></font>&nbsp;</p></td></tr></tbody></table>\r\n<table class=\"content3bk\" width=\"100%\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\">\r\n<tbody><tr>\r\n<td><h1><font face=\"Verdana\">Industry Organizations</font></h1>\r\n<p><font face=\"Verdana\" size=\"2\"><a href=\"http://www.ases.org/\">American Solar Energy Society&nbsp;</a>&nbsp;&nbsp;&nbsp;&nbsp; Professional Member</font></p>\r\n<p><font face=\"Verdana\" size=\"2\"><a href=\"http://www.ases.org/\"><img src=\"./user/cimage/ases-logo.jpg\" width=\"213\" align=\"bottom\" border=\"0\" height=\"80\"></a></font></p>\r\n<p><font face=\"Verdana\" size=\"2\"><a href=\"http://www.mdv-seia.org\">Maryland-DC-Virginia Solar Energy&nbsp;Industries Association</a>&nbsp;&nbsp; Professional Member</font></p>\r\n<p><font face=\"Verdana\" size=\"2\">&nbsp;&nbsp;<a href=\"http://www.mdv-seia.org\"><img src=\"./user/cimage/MDVSEIA.jpg\" style=\"width: 388px; height: 94px;\" width=\"810\" align=\"middle\" border=\"0\" height=\"94\"></a></font></p></td></tr></tbody></table>\r\n<table class=\"content4bk\" width=\"100%\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\">\r\n<tbody><tr>\r\n<td><h1><strong><font face=\"Verdana\" size=\"4\">Contact Us</font></strong></h1>\r\n<p><font size=\"2\"><font face=\"Verdana\"><strong>Telephone</strong>: 240-344-2657</font></font></p>\r\n<p><font size=\"2\"><font face=\"Verdana\"><strong>Email</strong>:</font></font></p>\r\n<p><font face=\"Verdana\" size=\"2\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Sales: </font><a href=\"mailto:sales@uspvinc.com\"><font face=\"Verdana\" size=\"2\">sales@uspvinc.com</font></a></p>\r\n<p><font face=\"Verdana\" size=\"2\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Customer Service: </font><a href=\"mailto:support@uspvinc.com\"><font face=\"Verdana\" size=\"2\">support@uspvinc.com</font></a></p>\r\n<p><font face=\"Verdana\" size=\"2\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Other Inquiries:&nbsp; </font><a href=\"mailto:info@uspvinc.com\"><font face=\"Verdana\" size=\"2\">info@uspvinc.com</font></a></p>\r\n<p><font size=\"2\"><font face=\"Verdana\"><strong>Postal Address</strong>: 4539 Metropolitan Court, Frederick MD&nbsp; 21704</font></font></p>\r\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </p></td></tr></tbody></table>\";s:6:\"format\";s:1:\"2\";s:8:\"revision\";i:0;s:3:\"log\";s:0:\"\";s:4:\"name\";s:5:\"admin\";s:4:\"date\";s:25:\"2010-02-03 21:08:58 +0800\";s:6:\"status\";i:1;s:7:\"promote\";i:0;s:6:\"sticky\";i:0;s:6:\"submit\";s:4:\"Save\";s:2:\"op\";s:7:\"Preview\";s:7:\"preview\";s:7:\"Preview\";s:6:\"delete\";s:6:\"Delete\";s:13:\"form_build_id\";s:37:\"form-d971cc054da3345f874c4b2b9a213c3c\";s:10:\"form_token\";s:32:\"085f2577d2b77d19e6a9fc768f63abbb\";s:7:\"form_id\";s:14:\"page_node_form\";s:7:\"comment\";s:1:\"0\";s:4:\"menu\";a:14:{s:6:\"delete\";i:0;s:4:\"mlid\";s:3:\"284\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:10:\"customized\";s:1:\"1\";s:7:\"options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:9:\"resources\";}}s:8:\"expanded\";s:1:\"0\";s:18:\"parent_depth_limit\";i:8;s:10:\"link_title\";s:9:\"resources\";s:6:\"parent\";s:16:\"menu-main-menu:0\";s:6:\"weight\";s:1:\"0\";s:4:\"plid\";s:1:\"0\";s:9:\"menu_name\";s:14:\"menu-main-menu\";}s:4:\"path\";s:0:\"\";s:3:\"pid\";s:1:\"4\";s:22:\"pathauto_perform_alias\";i:1;s:9:\"old_alias\";s:9:\"resources\";}s:14:\"clicked_button\";a:19:{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:5:\"#post\";a:16:{s:5:\"title\";s:9:\"resources\";s:4:\"menu\";a:3:{s:10:\"link_title\";s:9:\"resources\";s:6:\"parent\";s:16:\"menu-main-menu:0\";s:6:\"weight\";s:1:\"0\";}s:14:\"teaser_include\";s:1:\"1\";s:4:\"body\";s:3439:\"<table class=\"contentbackground\" width=\"100%\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\">\r\n<tbody><tr>\r\n<td><h3><font face=\"Verdana\">Internet Resources</font></h3>\r\n<p><font face=\"Verdana\" size=\"5\"></font>&nbsp;</p>\r\n<h3><font face=\"Verdana\" size=\"1\">From the Database of State Incentives for Renewables and Efficiency (DSIRE.org):</font></h3>\r\n<p><font face=\"Verdana\" size=\"2\"><a href=\"http://www.dsireusa.org/library/includes/statesearch2.cfm?State=US&amp;back=fintab&amp;CurrentPageID=7&amp;Search=TableState&amp;EE=1&amp;RE=1\">Federal&nbsp;Incentives for Solar PV</a></font></p>\r\n<p><font face=\"Verdana\" size=\"2\"><a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&amp;State=MD&amp;RE=1&amp;EE=1\" target=\"_blank\">Maryland Incentives for Solar PV</a></font></p>\r\n<p align=\"left\"><font face=\"Verdana\" size=\"2\"><a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&amp;State=DC&amp;RE=1&amp;EE=1\">District of Columbia Incentives for Solar PV</a></font></p>\r\n<p><font face=\"Verdana\" size=\"1\"></font>&nbsp;</p>\r\n<p><font face=\"Verdana\" size=\"1\"></font>&nbsp;</p></td></tr></tbody></table>\r\n<table class=\"content3bk\" width=\"100%\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\">\r\n<tbody><tr>\r\n<td><h1><font face=\"Verdana\">Industry Organizations</font></h1>\r\n<p><font face=\"Verdana\" size=\"2\"><a href=\"http://www.ases.org/\">American Solar Energy Society&nbsp;</a>&nbsp;&nbsp;&nbsp;&nbsp; Professional Member</font></p>\r\n<p><font face=\"Verdana\" size=\"2\"><a href=\"http://www.ases.org/\"><img src=\"./user/cimage/ases-logo.jpg\" width=\"213\" align=\"bottom\" border=\"0\" height=\"80\"></a></font></p>\r\n<p><font face=\"Verdana\" size=\"2\"><a href=\"http://www.mdv-seia.org\">Maryland-DC-Virginia Solar Energy&nbsp;Industries Association</a>&nbsp;&nbsp; Professional Member</font></p>\r\n<p><font face=\"Verdana\" size=\"2\">&nbsp;&nbsp;<a href=\"http://www.mdv-seia.org\"><img src=\"./user/cimage/MDVSEIA.jpg\" style=\"width: 388px; height: 94px;\" width=\"810\" align=\"middle\" border=\"0\" height=\"94\"></a></font></p></td></tr></tbody></table>\r\n<table class=\"content4bk\" width=\"100%\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\">\r\n<tbody><tr>\r\n<td><h1><strong><font face=\"Verdana\" size=\"4\">Contact Us</font></strong></h1>\r\n<p><font size=\"2\"><font face=\"Verdana\"><strong>Telephone</strong>: 240-344-2657</font></font></p>\r\n<p><font size=\"2\"><font face=\"Verdana\"><strong>Email</strong>:</font></font></p>\r\n<p><font face=\"Verdana\" size=\"2\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Sales: </font><a href=\"mailto:sales@uspvinc.com\"><font face=\"Verdana\" size=\"2\">sales@uspvinc.com</font></a></p>\r\n<p><font face=\"Verdana\" size=\"2\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Customer Service: </font><a href=\"mailto:support@uspvinc.com\"><font face=\"Verdana\" size=\"2\">support@uspvinc.com</font></a></p>\r\n<p><font face=\"Verdana\" size=\"2\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Other Inquiries:&nbsp; </font><a href=\"mailto:info@uspvinc.com\"><font face=\"Verdana\" size=\"2\">info@uspvinc.com</font></a></p>\r\n<p><font size=\"2\"><font face=\"Verdana\"><strong>Postal Address</strong>: 4539 Metropolitan Court, Frederick MD&nbsp; 21704</font></font></p>\r\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </p></td></tr></tbody></table>\";s:6:\"format\";s:1:\"2\";s:7:\"changed\";s:10:\"1285364809\";s:13:\"form_build_id\";s:37:\"form-6a2263dad615796df1aff4efb01e42ba\";s:10:\"form_token\";s:32:\"085f2577d2b77d19e6a9fc768f63abbb\";s:7:\"form_id\";s:14:\"page_node_form\";s:3:\"log\";s:0:\"\";s:7:\"comment\";s:1:\"0\";s:22:\"pathauto_perform_alias\";s:1:\"1\";s:4:\"name\";s:5:\"admin\";s:4:\"date\";s:25:\"2010-02-03 21:08:58 +0800\";s:6:\"status\";s:1:\"1\";s:2:\"op\";s:7:\"Preview\";}s:11:\"#programmed\";b:0;s:5:\"#tree\";b:0;s:8:\"#parents\";a:1:{i:0;s:7:\"preview\";}s:14:\"#array_parents\";a:2:{i:0;s:7:\"buttons\";i:1;s:7:\"preview\";}s:10:\"#processed\";b:0;s:12:\"#description\";N;s:11:\"#attributes\";a:0:{}s:9:\"#required\";b:0;s:6:\"#input\";b:1;s:5:\"#name\";s:2:\"op\";s:12:\"#button_type\";s:6:\"submit\";s:25:\"#executes_submit_callback\";b:1;s:8:\"#process\";a:1:{i:0;s:16:\"form_expand_ahah\";}s:3:\"#id\";s:12:\"edit-preview\";}s:8:\"redirect\";N;s:4:\"node\";a:34:{s:3:\"nid\";s:1:\"4\";s:3:\"vid\";s:1:\"4\";s:3:\"uid\";s:1:\"1\";s:7:\"created\";i:1265202538;s:4:\"type\";s:4:\"page\";s:8:\"language\";s:0:\"\";s:7:\"changed\";s:10:\"1285364809\";s:5:\"title\";s:9:\"resources\";s:9:\"teaser_js\";s:0:\"\";s:14:\"teaser_include\";i:1;s:4:\"body\";s:3439:\"<table class=\"contentbackground\" width=\"100%\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\">\r\n<tbody><tr>\r\n<td><h3><font face=\"Verdana\">Internet Resources</font></h3>\r\n<p><font face=\"Verdana\" size=\"5\"></font>&nbsp;</p>\r\n<h3><font face=\"Verdana\" size=\"1\">From the Database of State Incentives for Renewables and Efficiency (DSIRE.org):</font></h3>\r\n<p><font face=\"Verdana\" size=\"2\"><a href=\"http://www.dsireusa.org/library/includes/statesearch2.cfm?State=US&amp;back=fintab&amp;CurrentPageID=7&amp;Search=TableState&amp;EE=1&amp;RE=1\">Federal&nbsp;Incentives for Solar PV</a></font></p>\r\n<p><font face=\"Verdana\" size=\"2\"><a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&amp;State=MD&amp;RE=1&amp;EE=1\" target=\"_blank\">Maryland Incentives for Solar PV</a></font></p>\r\n<p align=\"left\"><font face=\"Verdana\" size=\"2\"><a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&amp;State=DC&amp;RE=1&amp;EE=1\">District of Columbia Incentives for Solar PV</a></font></p>\r\n<p><font face=\"Verdana\" size=\"1\"></font>&nbsp;</p>\r\n<p><font face=\"Verdana\" size=\"1\"></font>&nbsp;</p></td></tr></tbody></table>\r\n<table class=\"content3bk\" width=\"100%\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\">\r\n<tbody><tr>\r\n<td><h1><font face=\"Verdana\">Industry Organizations</font></h1>\r\n<p><font face=\"Verdana\" size=\"2\"><a href=\"http://www.ases.org/\">American Solar Energy Society&nbsp;</a>&nbsp;&nbsp;&nbsp;&nbsp; Professional Member</font></p>\r\n<p><font face=\"Verdana\" size=\"2\"><a href=\"http://www.ases.org/\"><img src=\"./user/cimage/ases-logo.jpg\" width=\"213\" align=\"bottom\" border=\"0\" height=\"80\"></a></font></p>\r\n<p><font face=\"Verdana\" size=\"2\"><a href=\"http://www.mdv-seia.org\">Maryland-DC-Virginia Solar Energy&nbsp;Industries Association</a>&nbsp;&nbsp; Professional Member</font></p>\r\n<p><font face=\"Verdana\" size=\"2\">&nbsp;&nbsp;<a href=\"http://www.mdv-seia.org\"><img src=\"./user/cimage/MDVSEIA.jpg\" style=\"width: 388px; height: 94px;\" width=\"810\" align=\"middle\" border=\"0\" height=\"94\"></a></font></p></td></tr></tbody></table>\r\n<table class=\"content4bk\" width=\"100%\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\">\r\n<tbody><tr>\r\n<td><h1><strong><font face=\"Verdana\" size=\"4\">Contact Us</font></strong></h1>\r\n<p><font size=\"2\"><font face=\"Verdana\"><strong>Telephone</strong>: 240-344-2657</font></font></p>\r\n<p><font size=\"2\"><font face=\"Verdana\"><strong>Email</strong>:</font></font></p>\r\n<p><font face=\"Verdana\" size=\"2\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Sales: </font><a href=\"mailto:sales@uspvinc.com\"><font face=\"Verdana\" size=\"2\">sales@uspvinc.com</font></a></p>\r\n<p><font face=\"Verdana\" size=\"2\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Customer Service: </font><a href=\"mailto:support@uspvinc.com\"><font face=\"Verdana\" size=\"2\">support@uspvinc.com</font></a></p>\r\n<p><font face=\"Verdana\" size=\"2\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Other Inquiries:&nbsp; </font><a href=\"mailto:info@uspvinc.com\"><font face=\"Verdana\" size=\"2\">info@uspvinc.com</font></a></p>\r\n<p><font size=\"2\"><font face=\"Verdana\"><strong>Postal Address</strong>: 4539 Metropolitan Court, Frederick MD&nbsp; 21704</font></font></p>\r\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </p></td></tr></tbody></table>\";s:6:\"format\";s:1:\"2\";s:8:\"revision\";i:0;s:3:\"log\";s:0:\"\";s:4:\"name\";s:5:\"admin\";s:4:\"date\";s:25:\"2010-02-03 21:08:58 +0800\";s:6:\"status\";i:1;s:7:\"promote\";i:0;s:6:\"sticky\";i:0;s:6:\"submit\";s:4:\"Save\";s:2:\"op\";s:7:\"Preview\";s:7:\"preview\";s:7:\"Preview\";s:6:\"delete\";s:6:\"Delete\";s:13:\"form_build_id\";s:37:\"form-d971cc054da3345f874c4b2b9a213c3c\";s:10:\"form_token\";s:32:\"085f2577d2b77d19e6a9fc768f63abbb\";s:7:\"form_id\";s:14:\"page_node_form\";s:7:\"comment\";s:1:\"0\";s:4:\"menu\";a:14:{s:6:\"delete\";i:0;s:4:\"mlid\";s:3:\"284\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:10:\"customized\";s:1:\"1\";s:7:\"options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:9:\"resources\";}}s:8:\"expanded\";s:1:\"0\";s:18:\"parent_depth_limit\";i:8;s:10:\"link_title\";s:9:\"resources\";s:6:\"parent\";s:16:\"menu-main-menu:0\";s:6:\"weight\";s:1:\"0\";s:4:\"plid\";s:1:\"0\";s:9:\"menu_name\";s:14:\"menu-main-menu\";}s:4:\"path\";s:0:\"\";s:3:\"pid\";s:1:\"4\";s:22:\"pathauto_perform_alias\";i:1;s:9:\"old_alias\";s:9:\"resources\";s:6:\"teaser\";s:582:\"<table class=\"contentbackground\" width=\"100%\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\">\r\n<tbody><tr>\r\n<td><h3><font face=\"Verdana\">Internet Resources</font></h3>\r\n<p><font face=\"Verdana\" size=\"5\"></font>&nbsp;</p>\r\n<h3><font face=\"Verdana\" size=\"1\">From the Database of State Incentives for Renewables and Efficiency (DSIRE.org):</font></h3>\r\n<p><font face=\"Verdana\" size=\"2\"><a href=\"http://www.dsireusa.org/library/includes/statesearch2.cfm?State=US&amp;back=fintab&amp;CurrentPageID=7&amp;Search=TableState&amp;EE=1&amp;RE=1\">Federal&nbsp;Incentives for Solar PV</a></font></p>\";s:9:\"validated\";b:1;}s:7:\"rebuild\";b:1;s:12:\"node_preview\";s:4557:\"<div class=\"preview\"><h3>Preview trimmed version</h3>  <div class=\"node\">\n        <h2 class=\"title\"><a href=\"/~uspvinc/main2/resources\">resources</a></h2>    <div class=\"submitted\"></div>\n    <div class=\"taxonomy\"></div>\n    <div class=\"content\"><table class=\"contentbackground\" width=\"100%\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\">\n<tbody>\n<tr>\n<td>\n<h3><font face=\"Verdana\">Internet Resources</font></h3>\n<p><font face=\"Verdana\" size=\"5\"></font>&nbsp;</p>\n<h3><font face=\"Verdana\" size=\"1\">From the Database of State Incentives for Renewables and Efficiency (DSIRE.org):</font></h3>\n<p><font face=\"Verdana\" size=\"2\"><a href=\"http://www.dsireusa.org/library/includes/statesearch2.cfm?State=US&amp;back=fintab&amp;CurrentPageID=7&amp;Search=TableState&amp;EE=1&amp;RE=1\">Federal&nbsp;Incentives for Solar PV</a></font></p>\n</td></tr></tbody></table></div>\n      </div>\n<h3>Preview full version</h3>  <div class=\"node\">\n        <h2 class=\"title\"><a href=\"/~uspvinc/main2/resources\">resources</a></h2>    <div class=\"submitted\"></div>\n    <div class=\"taxonomy\"></div>\n    <div class=\"content\"><table class=\"contentbackground\" width=\"100%\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\">\n<tbody>\n<tr>\n<td>\n<h3><font face=\"Verdana\">Internet Resources</font></h3>\n<p><font face=\"Verdana\" size=\"5\"></font>&nbsp;</p>\n<h3><font face=\"Verdana\" size=\"1\">From the Database of State Incentives for Renewables and Efficiency (DSIRE.org):</font></h3>\n<p><font face=\"Verdana\" size=\"2\"><a href=\"http://www.dsireusa.org/library/includes/statesearch2.cfm?State=US&amp;back=fintab&amp;CurrentPageID=7&amp;Search=TableState&amp;EE=1&amp;RE=1\">Federal&nbsp;Incentives for Solar PV</a></font></p>\n<p><font face=\"Verdana\" size=\"2\"><a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&amp;State=MD&amp;RE=1&amp;EE=1\" target=\"_blank\">Maryland Incentives for Solar PV</a></font></p>\n<p align=\"left\"><font face=\"Verdana\" size=\"2\"><a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&amp;State=DC&amp;RE=1&amp;EE=1\">District of Columbia Incentives for Solar PV</a></font></p>\n<p><font face=\"Verdana\" size=\"1\"></font>&nbsp;</p>\n<p><font face=\"Verdana\" size=\"1\"></font>&nbsp;</p>\n</td>\n</tr>\n</tbody>\n</table>\n<table class=\"content3bk\" width=\"100%\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\">\n<tbody>\n<tr>\n<td>\n<h1><font face=\"Verdana\">Industry Organizations</font></h1>\n<p><font face=\"Verdana\" size=\"2\"><a href=\"http://www.ases.org/\">American Solar Energy Society&nbsp;</a>&nbsp;&nbsp;&nbsp;&nbsp; Professional Member</font></p>\n<p><font face=\"Verdana\" size=\"2\"><a href=\"http://www.ases.org/\"><img src=\"./user/cimage/ases-logo.jpg\" width=\"213\" align=\"bottom\" border=\"0\" height=\"80\" /></a></font></p>\n<p><font face=\"Verdana\" size=\"2\"><a href=\"http://www.mdv-seia.org\">Maryland-DC-Virginia Solar Energy&nbsp;Industries Association</a>&nbsp;&nbsp; Professional Member</font></p>\n<p><font face=\"Verdana\" size=\"2\">&nbsp;&nbsp;<a href=\"http://www.mdv-seia.org\"><img src=\"./user/cimage/MDVSEIA.jpg\" style=\"width: 388px; height: 94px;\" width=\"810\" align=\"middle\" border=\"0\" height=\"94\" /></a></font></p>\n</td>\n</tr>\n</tbody>\n</table>\n<table class=\"content4bk\" width=\"100%\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\">\n<tbody>\n<tr>\n<td>\n<h1><strong><font face=\"Verdana\" size=\"4\">Contact Us</font></strong></h1>\n<p><font size=\"2\"><font face=\"Verdana\"><strong>Telephone</strong>: 240-344-2657</font></font></p>\n<p><font size=\"2\"><font face=\"Verdana\"><strong>Email</strong>:</font></font></p>\n<p><font face=\"Verdana\" size=\"2\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Sales: </font><a href=\"mailto:sales@uspvinc.com\"><font face=\"Verdana\" size=\"2\">sales@uspvinc.com</font></a></p>\n<p><font face=\"Verdana\" size=\"2\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Customer Service: </font><a href=\"mailto:support@uspvinc.com\"><font face=\"Verdana\" size=\"2\">support@uspvinc.com</font></a></p>\n<p><font face=\"Verdana\" size=\"2\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Other Inquiries:&nbsp; </font><a href=\"mailto:info@uspvinc.com\"><font face=\"Verdana\" size=\"2\">info@uspvinc.com</font></a></p>\n<p><font size=\"2\"><font face=\"Verdana\"><strong>Postal Address</strong>: 4539 Metropolitan Court, Frederick MD&nbsp; 21704</font></font></p>\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </p>\n</td>\n</tr>\n</tbody>\n</table>\n</div>\n      </div>\n</div>\n\";}i:2;O:8:\"stdClass\":33:{s:3:\"nid\";s:1:\"4\";s:4:\"type\";s:4:\"page\";s:8:\"language\";s:0:\"\";s:3:\"uid\";s:1:\"1\";s:6:\"status\";s:1:\"1\";s:7:\"created\";s:10:\"1265202538\";s:7:\"changed\";s:10:\"1285364809\";s:7:\"comment\";s:1:\"0\";s:7:\"promote\";s:1:\"0\";s:8:\"moderate\";s:1:\"0\";s:6:\"sticky\";s:1:\"0\";s:4:\"tnid\";s:1:\"0\";s:9:\"translate\";s:1:\"0\";s:3:\"vid\";s:1:\"4\";s:12:\"revision_uid\";s:1:\"1\";s:5:\"title\";s:9:\"resources\";s:4:\"body\";s:109:\"<b>Internet Resources</b>\r\n\r\nFrom the Database of State Incentives for Renewables and Efficiency (DSIRE.org):\";s:6:\"teaser\";s:109:\"<b>Internet Resources</b>\r\n\r\nFrom the Database of State Incentives for Renewables and Efficiency (DSIRE.org):\";s:3:\"log\";N;s:18:\"revision_timestamp\";s:10:\"1285364809\";s:6:\"format\";s:1:\"1\";s:4:\"name\";s:5:\"admin\";s:7:\"picture\";s:0:\"\";s:4:\"data\";s:6:\"a:0:{}\";s:4:\"path\";s:9:\"resources\";s:22:\"last_comment_timestamp\";s:10:\"1265202538\";s:17:\"last_comment_name\";N;s:13:\"comment_count\";s:1:\"0\";s:8:\"taxonomy\";a:0:{}s:4:\"date\";s:25:\"2010-02-03 21:08:58 +0800\";s:8:\"revision\";b:0;s:4:\"menu\";a:48:{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:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:3:\"fit\";s:1:\"2\";s:12:\"number_parts\";s:1:\"2\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:9:\"resources\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:4:\"type\";s:1:\"4\";s:14:\"block_callback\";s:0:\"\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"0\";s:4:\"file\";s:0:\"\";s:9:\"menu_name\";s:14:\"menu-main-menu\";s:4:\"mlid\";s:3:\"284\";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:9:\"resources\";s:7:\"options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:9:\"resources\";}}s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"284\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:4:\"href\";s:6:\"node/4\";s:6:\"access\";b:1;s:17:\"localized_options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:9:\"resources\";}}s:18:\"parent_depth_limit\";i:8;}s:22:\"pathauto_perform_alias\";b:1;}}s:9:\"#build_id\";s:37:\"form-61b1d1c42807372b08c336f823061c7c\";s:5:\"#type\";s:4:\"form\";s:11:\"#programmed\";b:0;s:13:\"form_build_id\";a:4:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:37:\"form-61b1d1c42807372b08c336f823061c7c\";s:3:\"#id\";s:37:\"form-61b1d1c42807372b08c336f823061c7c\";s:5:\"#name\";s:13:\"form_build_id\";}s:6:\"#token\";s:14:\"page_node_form\";s:10:\"form_token\";a:3:{s:3:\"#id\";s:30:\"edit-page-node-form-form-token\";s:5:\"#type\";s:5:\"token\";s:14:\"#default_value\";s:32:\"085f2577d2b77d19e6a9fc768f63abbb\";}s:7:\"form_id\";a:3:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:14:\"page_node_form\";s:3:\"#id\";s:19:\"edit-page-node-form\";}s:12:\"#description\";N;s:11:\"#attributes\";a:0:{}s:9:\"#required\";b:0;s:5:\"#tree\";b:0;s:8:\"#parents\";a:0:{}s:7:\"#method\";s:4:\"post\";s:7:\"#action\";s:27:\"/~uspvinc/main2/node/4/edit\";s:16:\"comment_settings\";a:7:{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:7:\"#weight\";i:30;s:7:\"comment\";a:4:{s:5:\"#type\";s:6:\"radios\";s:8:\"#parents\";a:1:{i:0;s:7:\"comment\";}s:14:\"#default_value\";s:1:\"0\";s:8:\"#options\";a:3:{i:0;s:8:\"Disabled\";i:1;s:9:\"Read only\";i:2;s:10:\"Read/Write\";}}}s:6:\"#cache\";b:1;s:4:\"menu\";a:21:{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:5:\"#tree\";b:1;s:7:\"#weight\";i:-2;s:11:\"#attributes\";a:1:{s:5:\"class\";s:14:\"menu-item-form\";}s:6:\"delete\";a:2:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:22:\"Delete this menu item.\";}s:4:\"mlid\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:3:\"284\";}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\";s:1:\"1\";}s:7:\"options\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:9:\"resources\";}}}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:5:\"#item\";a:14:{s:6:\"delete\";i:0;s:4:\"mlid\";s:3:\"284\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:10:\"customized\";s:1:\"1\";s:7:\"options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:9:\"resources\";}}s:8:\"expanded\";s:1:\"0\";s:18:\"parent_depth_limit\";i:8;s:10:\"link_title\";s:9:\"resources\";s:6:\"parent\";s:16:\"menu-main-menu:0\";s:6:\"weight\";s:1:\"0\";s:4:\"plid\";s:1:\"0\";s:9:\"menu_name\";s:14:\"menu-main-menu\";}s:10:\"link_title\";a:5:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:15:\"Menu link title\";s:14:\"#default_value\";s:9:\"resources\";s:12:\"#description\";s:133:\"The link text corresponding to this item that should appear in the menu. Leave blank if you do not wish to add this post to the menu.\";s:9:\"#required\";b:0;}s:6:\"parent\";a:6:{s:5:\"#type\";s:6:\"select\";s:6:\"#title\";s:11:\"Parent item\";s:14:\"#default_value\";s:16:\"menu-main-menu:0\";s:8:\"#options\";a:95:{s:16:\"menu-main-menu:0\";s:11:\"<Main Menu>\";s:18:\"menu-main-menu:283\";s:8:\"-- about\";s:18:\"menu-main-menu:285\";s:11:\"-- services\";s:18:\"menu-main-menu:286\";s:17:\"-- special offers\";s:12:\"navigation:0\";s:12:\"<Navigation>\";s:12:\"navigation:9\";s:26:\"-- Compose tips (disabled)\";s:14:\"navigation:461\";s:29:\"-- Image galleries (disabled)\";s:13:\"navigation:21\";s:13:\"-- My account\";s:14:\"navigation:114\";s:20:\"-- Search (disabled)\";s:14:\"navigation:244\";s:22:\"-- Site map (disabled)\";s:13:\"navigation:11\";s:17:\"-- Create content\";s:14:\"navigation:476\";s:11:\"---- Banner\";s:14:\"navigation:441\";s:10:\"---- Image\";s:14:\"navigation:289\";s:21:\"---- Newsletter issue\";s:14:\"navigation:106\";s:9:\"---- Page\";s:14:\"navigation:388\";s:10:\"---- Panel\";s:14:\"navigation:107\";s:10:\"---- Story\";s:12:\"navigation:2\";s:13:\"-- Administer\";s:13:\"navigation:10\";s:23:\"---- Content management\";s:13:\"navigation:27\";s:15:\"------ Comments\";s:13:\"navigation:28\";s:14:\"------ Content\";s:13:\"navigation:29\";s:20:\"------ Content types\";s:14:\"navigation:462\";s:22:\"------ Image galleries\";s:14:\"navigation:463\";s:19:\"------ Image import\";s:14:\"navigation:538\";s:18:\"------ Newsletters\";s:14:\"navigation:546\";s:20:\"-------- Sent issues\";s:14:\"navigation:541\";s:21:\"-------- Draft issues\";s:14:\"navigation:544\";s:20:\"-------- Newsletters\";s:14:\"navigation:548\";s:22:\"-------- Subscriptions\";s:13:\"navigation:42\";s:20:\"------ Post settings\";s:13:\"navigation:43\";s:21:\"------ RSS publishing\";s:13:\"navigation:94\";s:15:\"------ Taxonomy\";s:13:\"navigation:17\";s:18:\"---- Site building\";s:13:\"navigation:25\";s:13:\"------ Blocks\";s:14:\"navigation:424\";s:20:\"------ Bulk Exporter\";s:13:\"navigation:38\";s:12:\"------ Menus\";s:14:\"navigation:282\";s:18:\"-------- Main Menu\";s:13:\"navigation:89\";s:19:\"-------- Navigation\";s:13:\"navigation:90\";s:22:\"-------- Primary links\";s:14:\"navigation:495\";s:19:\"-------- Right Menu\";s:13:\"navigation:91\";s:24:\"-------- Secondary links\";s:14:\"navigation:387\";s:18:\"------ Mini panels\";s:13:\"navigation:39\";s:14:\"------ Modules\";s:14:\"navigation:412\";s:12:\"------ Pages\";s:14:\"navigation:360\";s:13:\"------ Panels\";s:13:\"navigation:49\";s:13:\"------ Themes\";s:14:\"navigation:335\";s:15:\"------ Triggers\";s:14:\"navigation:501\";s:18:\"------ URL aliases\";s:14:\"navigation:257\";s:12:\"------ Views\";s:13:\"navigation:18\";s:23:\"---- Site configuration\";s:13:\"navigation:23\";s:14:\"------ Actions\";s:14:\"navigation:119\";s:26:\"------ Administration menu\";s:13:\"navigation:24\";s:27:\"------ Administration theme\";s:13:\"navigation:26\";s:17:\"------ Clean URLs\";s:13:\"navigation:30\";s:20:\"------ Date and time\";s:13:\"navigation:33\";s:22:\"------ Error reporting\";s:13:\"navigation:34\";s:18:\"------ File system\";s:13:\"navigation:35\";s:20:\"------ Image toolkit\";s:14:\"navigation:442\";s:13:\"------ Images\";s:13:\"navigation:36\";s:20:\"------ Input formats\";s:13:\"navigation:37\";s:25:\"------ Logging and alerts\";s:14:\"navigation:100\";s:25:\"-------- Database logging\";s:14:\"navigation:245\";s:17:\"------ Nice Menus\";s:13:\"navigation:40\";s:18:\"------ Performance\";s:14:\"navigation:120\";s:22:\"------ Search settings\";s:14:\"navigation:539\";s:17:\"------ Simplenews\";s:14:\"navigation:542\";s:16:\"-------- General\";s:14:\"navigation:543\";s:19:\"-------- Newsletter\";s:14:\"navigation:547\";s:21:\"-------- Subscription\";s:14:\"navigation:545\";s:18:\"-------- Send mail\";s:13:\"navigation:46\";s:23:\"------ Site information\";s:13:\"navigation:47\";s:23:\"------ Site maintenance\";s:14:\"navigation:246\";s:15:\"------ Site map\";s:13:\"navigation:20\";s:20:\"---- User management\";s:13:\"navigation:22\";s:19:\"------ Access rules\";s:13:\"navigation:41\";s:18:\"------ Permissions\";s:13:\"navigation:45\";s:12:\"------ Roles\";s:13:\"navigation:50\";s:20:\"------ User settings\";s:13:\"navigation:51\";s:12:\"------ Users\";s:13:\"navigation:16\";s:12:\"---- Reports\";s:13:\"navigation:93\";s:25:\"------ Recent log entries\";s:13:\"navigation:96\";s:33:\"------ Top \'access denied\' errors\";s:13:\"navigation:97\";s:34:\"------ Top \'page not found\' errors\";s:14:\"navigation:121\";s:25:\"------ Top search phrases\";s:14:\"navigation:105\";s:24:\"------ Available updates\";s:13:\"navigation:48\";s:20:\"------ Status report\";s:13:\"navigation:15\";s:9:\"---- Help\";s:12:\"navigation:4\";s:10:\"-- Log out\";s:15:\"primary-links:0\";s:15:\"<Primary links>\";s:17:\"menu-right-menu:0\";s:12:\"<Right Menu>\";s:19:\"menu-right-menu:496\";s:28:\"-- Financial Calculator Tool\";s:19:\"menu-right-menu:497\";s:21:\"-- News Story Library\";s:19:\"menu-right-menu:498\";s:14:\"-- Latest News\";s:19:\"menu-right-menu:499\";s:25:\"-- SREC Management Portal\";s:17:\"secondary-links:0\";s:17:\"<Secondary links>\";}s:12:\"#description\";s:156:\"The maximum depth for an item and all its children is fixed at 9. Some menu items may not be available as parents if selecting them would exceed this limit.\";s:11:\"#attributes\";a:1:{s:5:\"class\";s:17:\"menu-title-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:1:\"0\";s:12:\"#description\";s:107:\"Optional. In the menu, the heavier items will sink and the lighter items will be positioned nearer the top.\";}}s:7:\"#submit\";a:1:{i:0;s:21:\"menu_node_form_submit\";}s:4:\"path\";a:9:{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:7:\"#access\";b:1;s:7:\"#weight\";i:30;s:4:\"path\";a:6:{s:5:\"#type\";s:9:\"textfield\";s:14:\"#default_value\";s:9:\"resources\";s:10:\"#maxlength\";i:128;s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:12:\"#description\";s:207:\"Optionally specify an alternative URL by which this node 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:22:\"pathauto_perform_alias\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:15:\"Automatic alias\";s:14:\"#default_value\";i:1;s:12:\"#description\";s:238:\"An alias will be generated for you. If you wish to create your own alias below, uncheck this option. To control the format of the generated aliases, see the <a href=\"/~uspvinc/main2/admin/build/path/pathauto\">automated alias settings</a>.\";s:7:\"#weight\";i:-1;}s:9:\"old_alias\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:9:\"resources\";}}s:11:\"#pre_render\";a:1:{i:0;s:27:\"content_alter_extra_weights\";}s:21:\"#content_extra_fields\";a:6:{s:5:\"title\";a:3:{s:5:\"label\";s:5:\"Title\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:-5;}s:10:\"body_field\";a:4:{s:5:\"label\";s:4:\"Body\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:0;s:4:\"view\";s:4:\"body\";}s:20:\"revision_information\";a:3:{s:5:\"label\";s:20:\"Revision information\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:20;}s:16:\"comment_settings\";a:3:{s:5:\"label\";s:16:\"Comment settings\";s:11:\"description\";s:20:\"Comment module form.\";s:6:\"weight\";i:30;}s:4:\"menu\";a:3:{s:5:\"label\";s:13:\"Menu settings\";s:11:\"description\";s:17:\"Menu module form.\";s:6:\"weight\";i:-2;}s:4:\"path\";a:3:{s:5:\"label\";s:13:\"Path settings\";s:11:\"description\";s:17:\"Path module form.\";s:6:\"weight\";i:30;}}s:12:\"#cache_token\";s:32:\"b606e4768653f607fe391c11e4d335c4\";}',1285386789,1285365189,'',1),('form_form-ad34c45ba31911305f1634e210eb6cd8','a:40:{s:3:\"#id\";s:9:\"node-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:\"1265202538\";}s:4:\"type\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:4:\"page\";}s:8:\"language\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:0:\"\";}s:7:\"changed\";a:2:{s:5:\"#type\";s:6:\"hidden\";s:14:\"#default_value\";s:10:\"1285364809\";}s:5:\"title\";a:6:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:5:\"Title\";s:9:\"#required\";b:1;s:14:\"#default_value\";s:9:\"resources\";s:10:\"#maxlength\";i:255;s:7:\"#weight\";i:-5;}s:10:\"body_field\";a:7:{s:12:\"#after_build\";a:2:{i:0;s:14:\"node_teaser_js\";i:1;s:26:\"node_teaser_include_verify\";}s:7:\"#prefix\";s:32:\"<div class=\"body-field-wrapper\">\";s:7:\"#suffix\";s:6:\"</div>\";s:9:\"teaser_js\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:5:\"#rows\";i:10;s:7:\"#teaser\";s:9:\"edit-body\";s:16:\"#teaser_checkbox\";s:19:\"edit-teaser-include\";s:9:\"#disabled\";b:1;}s:14:\"teaser_include\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:25:\"Show summary in full view\";s:14:\"#default_value\";b:1;s:7:\"#prefix\";s:29:\"<div class=\"teaser-checkbox\">\";s:7:\"#suffix\";s:6:\"</div>\";}s:4:\"body\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:4:\"Body\";s:14:\"#default_value\";s:109:\"<b>Internet Resources</b>\r\n\r\nFrom the Database of State Incentives for Renewables and Efficiency (DSIRE.org):\";s:5:\"#rows\";i:20;s:9:\"#required\";b:0;}s:6:\"format\";a:9:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:12:\"Input format\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:7:\"#weight\";N;s:17:\"#element_validate\";a:1:{i:0;s:20:\"filter_form_validate\";}i:1;a:7:{s:5:\"#type\";s:5:\"radio\";s:6:\"#title\";s:13:\"Filtered HTML\";s:14:\"#default_value\";s:1:\"1\";s:13:\"#return_value\";s:1:\"1\";s:8:\"#parents\";a:1:{i:0;s:6:\"format\";}s:12:\"#description\";s:306:\"<ul class=\"tips\"><li>Web page addresses and e-mail addresses turn into links automatically.</li><li>Allowed HTML tags: &lt;a&gt; &lt;em&gt; &lt;strong&gt; &lt;cite&gt; &lt;code&gt; &lt;ul&gt; &lt;ol&gt; &lt;li&gt; &lt;dl&gt; &lt;dt&gt; &lt;dd&gt;</li><li>Lines and paragraphs break automatically.</li></ul>\";s:3:\"#id\";s:13:\"edit-format-1\";}i:2;a:7:{s:5:\"#type\";s:5:\"radio\";s:6:\"#title\";s:9:\"Full HTML\";s:14:\"#default_value\";s:1:\"1\";s:13:\"#return_value\";s:1:\"2\";s:8:\"#parents\";a:1:{i:0;s:6:\"format\";}s:12:\"#description\";s:151:\"<ul class=\"tips\"><li>Web page addresses and e-mail addresses turn into links automatically.</li><li>Lines and paragraphs break automatically.</li></ul>\";s:3:\"#id\";s:13:\"edit-format-2\";}i:3;a:1:{s:6:\"#value\";s:90:\"<p><a href=\"/~uspvinc/main2/filter/tips\">More information about formatting options</a></p>\";}}}s:5:\"#node\";O:8:\"stdClass\":33:{s:3:\"nid\";s:1:\"4\";s:4:\"type\";s:4:\"page\";s:8:\"language\";s:0:\"\";s:3:\"uid\";s:1:\"1\";s:6:\"status\";s:1:\"1\";s:7:\"created\";s:10:\"1265202538\";s:7:\"changed\";s:10:\"1285364809\";s:7:\"comment\";s:1:\"0\";s:7:\"promote\";s:1:\"0\";s:8:\"moderate\";s:1:\"0\";s:6:\"sticky\";s:1:\"0\";s:4:\"tnid\";s:1:\"0\";s:9:\"translate\";s:1:\"0\";s:3:\"vid\";s:1:\"4\";s:12:\"revision_uid\";s:1:\"1\";s:5:\"title\";s:9:\"resources\";s:4:\"body\";s:109:\"<b>Internet Resources</b>\r\n\r\nFrom the Database of State Incentives for Renewables and Efficiency (DSIRE.org):\";s:6:\"teaser\";s:109:\"<b>Internet Resources</b>\r\n\r\nFrom the Database of State Incentives for Renewables and Efficiency (DSIRE.org):\";s:3:\"log\";N;s:18:\"revision_timestamp\";s:10:\"1285364809\";s:6:\"format\";s:1:\"1\";s:4:\"name\";s:5:\"admin\";s:7:\"picture\";s:0:\"\";s:4:\"data\";s:6:\"a:0:{}\";s:4:\"path\";s:9:\"resources\";s:22:\"last_comment_timestamp\";s:10:\"1265202538\";s:17:\"last_comment_name\";N;s:13:\"comment_count\";s:1:\"0\";s:8:\"taxonomy\";a:0:{}s:4:\"date\";s:25:\"2010-02-03 21:08:58 +0800\";s:8:\"revision\";b:0;s:4:\"menu\";a:48:{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:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:3:\"fit\";s:1:\"2\";s:12:\"number_parts\";s:1:\"2\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:9:\"resources\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:4:\"type\";s:1:\"4\";s:14:\"block_callback\";s:0:\"\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"0\";s:4:\"file\";s:0:\"\";s:9:\"menu_name\";s:14:\"menu-main-menu\";s:4:\"mlid\";s:3:\"284\";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:9:\"resources\";s:7:\"options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:9:\"resources\";}}s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"284\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:4:\"href\";s:6:\"node/4\";s:6:\"access\";b:1;s:17:\"localized_options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:9:\"resources\";}}s:18:\"parent_depth_limit\";i:8;}s:22:\"pathauto_perform_alias\";b:1;}s:20:\"revision_information\";a:7:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:20:\"Revision information\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:7:\"#weight\";i:20;s:8:\"revision\";a:4:{s:7:\"#access\";b:1;s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:19:\"Create new revision\";s:14:\"#default_value\";b:0;}s:3:\"log\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:11:\"Log message\";s:14:\"#default_value\";s:0:\"\";s:5:\"#rows\";i:2;s:12:\"#description\";s:104:\"An explanation of the additions or updates being made to help other authors understand your motivations.\";}}s:6:\"author\";a:8:{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:7:\"#weight\";i:20;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:35:\"Leave blank for <em>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:91:\"Format: <em>2010-02-03 21:08:58 +0800</em>. Leave blank to use the time of form submission.\";s:14:\"#default_value\";s:25:\"2010-02-03 21:08:58 +0800\";}}s:7:\"options\";a:9:{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:7:\"#weight\";i:25;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:\"buttons\";a:3:{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:16:\"node_form_submit\";}}s:7:\"preview\";a:4:{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:6:\"#theme\";a:2:{i:0;s:14:\"page_node_form\";i:1;s:9:\"node_form\";}s:11:\"#parameters\";a:3:{i:0;s:14:\"page_node_form\";i:1;a:3:{s:7:\"storage\";N;s:9:\"submitted\";b:0;s:4:\"post\";a:0:{}}i:2;r:83;}s:9:\"#build_id\";s:37:\"form-ad34c45ba31911305f1634e210eb6cd8\";s:5:\"#type\";s:4:\"form\";s:11:\"#programmed\";b:0;s:13:\"form_build_id\";a:4:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:37:\"form-ad34c45ba31911305f1634e210eb6cd8\";s:3:\"#id\";s:37:\"form-ad34c45ba31911305f1634e210eb6cd8\";s:5:\"#name\";s:13:\"form_build_id\";}s:6:\"#token\";s:14:\"page_node_form\";s:10:\"form_token\";a:3:{s:3:\"#id\";s:30:\"edit-page-node-form-form-token\";s:5:\"#type\";s:5:\"token\";s:14:\"#default_value\";s:32:\"69ee9cfa6b6366390575effcb3429c15\";}s:7:\"form_id\";a:3:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:14:\"page_node_form\";s:3:\"#id\";s:19:\"edit-page-node-form\";}s:12:\"#description\";N;s:11:\"#attributes\";a:0:{}s:9:\"#required\";b:0;s:5:\"#tree\";b:0;s:8:\"#parents\";a:0:{}s:7:\"#method\";s:4:\"post\";s:7:\"#action\";s:27:\"/~uspvinc/main2/node/4/edit\";s:16:\"comment_settings\";a:7:{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:7:\"#weight\";i:30;s:7:\"comment\";a:4:{s:5:\"#type\";s:6:\"radios\";s:8:\"#parents\";a:1:{i:0;s:7:\"comment\";}s:14:\"#default_value\";s:1:\"0\";s:8:\"#options\";a:3:{i:0;s:8:\"Disabled\";i:1;s:9:\"Read only\";i:2;s:10:\"Read/Write\";}}}s:6:\"#cache\";b:1;s:4:\"menu\";a:21:{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:5:\"#tree\";b:1;s:7:\"#weight\";i:-2;s:11:\"#attributes\";a:1:{s:5:\"class\";s:14:\"menu-item-form\";}s:6:\"delete\";a:2:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:22:\"Delete this menu item.\";}s:4:\"mlid\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:3:\"284\";}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\";s:1:\"1\";}s:7:\"options\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:9:\"resources\";}}}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:5:\"#item\";a:48:{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:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:3:\"fit\";s:1:\"2\";s:12:\"number_parts\";s:1:\"2\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:9:\"resources\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:4:\"type\";s:1:\"4\";s:14:\"block_callback\";s:0:\"\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"0\";s:4:\"file\";s:0:\"\";s:9:\"menu_name\";s:14:\"menu-main-menu\";s:4:\"mlid\";s:3:\"284\";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:9:\"resources\";s:7:\"options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:9:\"resources\";}}s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"284\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:4:\"href\";s:6:\"node/4\";s:6:\"access\";b:1;s:17:\"localized_options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:9:\"resources\";}}s:18:\"parent_depth_limit\";i:8;}s:10:\"link_title\";a:5:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:15:\"Menu link title\";s:14:\"#default_value\";s:9:\"resources\";s:12:\"#description\";s:133:\"The link text corresponding to this item that should appear in the menu. Leave blank if you do not wish to add this post to the menu.\";s:9:\"#required\";b:0;}s:6:\"parent\";a:6:{s:5:\"#type\";s:6:\"select\";s:6:\"#title\";s:11:\"Parent item\";s:14:\"#default_value\";s:16:\"menu-main-menu:0\";s:8:\"#options\";a:95:{s:16:\"menu-main-menu:0\";s:11:\"<Main Menu>\";s:18:\"menu-main-menu:283\";s:8:\"-- about\";s:18:\"menu-main-menu:285\";s:11:\"-- services\";s:18:\"menu-main-menu:286\";s:17:\"-- special offers\";s:12:\"navigation:0\";s:12:\"<Navigation>\";s:12:\"navigation:9\";s:26:\"-- Compose tips (disabled)\";s:14:\"navigation:461\";s:29:\"-- Image galleries (disabled)\";s:13:\"navigation:21\";s:13:\"-- My account\";s:14:\"navigation:114\";s:20:\"-- Search (disabled)\";s:14:\"navigation:244\";s:22:\"-- Site map (disabled)\";s:13:\"navigation:11\";s:17:\"-- Create content\";s:14:\"navigation:476\";s:11:\"---- Banner\";s:14:\"navigation:441\";s:10:\"---- Image\";s:14:\"navigation:289\";s:21:\"---- Newsletter issue\";s:14:\"navigation:106\";s:9:\"---- Page\";s:14:\"navigation:388\";s:10:\"---- Panel\";s:14:\"navigation:107\";s:10:\"---- Story\";s:12:\"navigation:2\";s:13:\"-- Administer\";s:13:\"navigation:10\";s:23:\"---- Content management\";s:13:\"navigation:27\";s:15:\"------ Comments\";s:13:\"navigation:28\";s:14:\"------ Content\";s:13:\"navigation:29\";s:20:\"------ Content types\";s:14:\"navigation:462\";s:22:\"------ Image galleries\";s:14:\"navigation:463\";s:19:\"------ Image import\";s:14:\"navigation:538\";s:18:\"------ Newsletters\";s:14:\"navigation:546\";s:20:\"-------- Sent issues\";s:14:\"navigation:541\";s:21:\"-------- Draft issues\";s:14:\"navigation:544\";s:20:\"-------- Newsletters\";s:14:\"navigation:548\";s:22:\"-------- Subscriptions\";s:13:\"navigation:42\";s:20:\"------ Post settings\";s:13:\"navigation:43\";s:21:\"------ RSS publishing\";s:13:\"navigation:94\";s:15:\"------ Taxonomy\";s:13:\"navigation:17\";s:18:\"---- Site building\";s:13:\"navigation:25\";s:13:\"------ Blocks\";s:14:\"navigation:424\";s:20:\"------ Bulk Exporter\";s:13:\"navigation:38\";s:12:\"------ Menus\";s:14:\"navigation:282\";s:18:\"-------- Main Menu\";s:13:\"navigation:89\";s:19:\"-------- Navigation\";s:13:\"navigation:90\";s:22:\"-------- Primary links\";s:14:\"navigation:495\";s:19:\"-------- Right Menu\";s:13:\"navigation:91\";s:24:\"-------- Secondary links\";s:14:\"navigation:387\";s:18:\"------ Mini panels\";s:13:\"navigation:39\";s:14:\"------ Modules\";s:14:\"navigation:412\";s:12:\"------ Pages\";s:14:\"navigation:360\";s:13:\"------ Panels\";s:13:\"navigation:49\";s:13:\"------ Themes\";s:14:\"navigation:335\";s:15:\"------ Triggers\";s:14:\"navigation:501\";s:18:\"------ URL aliases\";s:14:\"navigation:257\";s:12:\"------ Views\";s:13:\"navigation:18\";s:23:\"---- Site configuration\";s:13:\"navigation:23\";s:14:\"------ Actions\";s:14:\"navigation:119\";s:26:\"------ Administration menu\";s:13:\"navigation:24\";s:27:\"------ Administration theme\";s:13:\"navigation:26\";s:17:\"------ Clean URLs\";s:13:\"navigation:30\";s:20:\"------ Date and time\";s:13:\"navigation:33\";s:22:\"------ Error reporting\";s:13:\"navigation:34\";s:18:\"------ File system\";s:13:\"navigation:35\";s:20:\"------ Image toolkit\";s:14:\"navigation:442\";s:13:\"------ Images\";s:13:\"navigation:36\";s:20:\"------ Input formats\";s:13:\"navigation:37\";s:25:\"------ Logging and alerts\";s:14:\"navigation:100\";s:25:\"-------- Database logging\";s:14:\"navigation:245\";s:17:\"------ Nice Menus\";s:13:\"navigation:40\";s:18:\"------ Performance\";s:14:\"navigation:120\";s:22:\"------ Search settings\";s:14:\"navigation:539\";s:17:\"------ Simplenews\";s:14:\"navigation:542\";s:16:\"-------- General\";s:14:\"navigation:543\";s:19:\"-------- Newsletter\";s:14:\"navigation:547\";s:21:\"-------- Subscription\";s:14:\"navigation:545\";s:18:\"-------- Send mail\";s:13:\"navigation:46\";s:23:\"------ Site information\";s:13:\"navigation:47\";s:23:\"------ Site maintenance\";s:14:\"navigation:246\";s:15:\"------ Site map\";s:13:\"navigation:20\";s:20:\"---- User management\";s:13:\"navigation:22\";s:19:\"------ Access rules\";s:13:\"navigation:41\";s:18:\"------ Permissions\";s:13:\"navigation:45\";s:12:\"------ Roles\";s:13:\"navigation:50\";s:20:\"------ User settings\";s:13:\"navigation:51\";s:12:\"------ Users\";s:13:\"navigation:16\";s:12:\"---- Reports\";s:13:\"navigation:93\";s:25:\"------ Recent log entries\";s:13:\"navigation:96\";s:33:\"------ Top \'access denied\' errors\";s:13:\"navigation:97\";s:34:\"------ Top \'page not found\' errors\";s:14:\"navigation:121\";s:25:\"------ Top search phrases\";s:14:\"navigation:105\";s:24:\"------ Available updates\";s:13:\"navigation:48\";s:20:\"------ Status report\";s:13:\"navigation:15\";s:9:\"---- Help\";s:12:\"navigation:4\";s:10:\"-- Log out\";s:15:\"primary-links:0\";s:15:\"<Primary links>\";s:17:\"menu-right-menu:0\";s:12:\"<Right Menu>\";s:19:\"menu-right-menu:496\";s:28:\"-- Financial Calculator Tool\";s:19:\"menu-right-menu:497\";s:21:\"-- News Story Library\";s:19:\"menu-right-menu:498\";s:14:\"-- Latest News\";s:19:\"menu-right-menu:499\";s:25:\"-- SREC Management Portal\";s:17:\"secondary-links:0\";s:17:\"<Secondary links>\";}s:12:\"#description\";s:156:\"The maximum depth for an item and all its children is fixed at 9. Some menu items may not be available as parents if selecting them would exceed this limit.\";s:11:\"#attributes\";a:1:{s:5:\"class\";s:17:\"menu-title-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:1:\"0\";s:12:\"#description\";s:107:\"Optional. In the menu, the heavier items will sink and the lighter items will be positioned nearer the top.\";}}s:7:\"#submit\";a:1:{i:0;s:21:\"menu_node_form_submit\";}s:4:\"path\";a:10:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:17:\"URL path settings\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:0;s:7:\"#access\";b:1;s:7:\"#weight\";i:30;s:4:\"path\";a:6:{s:5:\"#type\";s:9:\"textfield\";s:14:\"#default_value\";s:9:\"resources\";s:10:\"#maxlength\";i:128;s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:12:\"#description\";s:207:\"Optionally specify an alternative URL by which this node 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\";s:1:\"4\";}s:22:\"pathauto_perform_alias\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:15:\"Automatic alias\";s:14:\"#default_value\";b:1;s:12:\"#description\";s:238:\"An alias will be generated for you. If you wish to create your own alias below, uncheck this option. To control the format of the generated aliases, see the <a href=\"/~uspvinc/main2/admin/build/path/pathauto\">automated alias settings</a>.\";s:7:\"#weight\";i:-1;}s:9:\"old_alias\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:9:\"resources\";}}s:11:\"#pre_render\";a:1:{i:0;s:27:\"content_alter_extra_weights\";}s:21:\"#content_extra_fields\";a:6:{s:5:\"title\";a:3:{s:5:\"label\";s:5:\"Title\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:-5;}s:10:\"body_field\";a:4:{s:5:\"label\";s:4:\"Body\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:0;s:4:\"view\";s:4:\"body\";}s:20:\"revision_information\";a:3:{s:5:\"label\";s:20:\"Revision information\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:20;}s:16:\"comment_settings\";a:3:{s:5:\"label\";s:16:\"Comment settings\";s:11:\"description\";s:20:\"Comment module form.\";s:6:\"weight\";i:30;}s:4:\"menu\";a:3:{s:5:\"label\";s:13:\"Menu settings\";s:11:\"description\";s:17:\"Menu module form.\";s:6:\"weight\";i:-2;}s:4:\"path\";a:3:{s:5:\"label\";s:13:\"Path settings\";s:11:\"description\";s:17:\"Path module form.\";s:6:\"weight\";i:30;}}s:12:\"#cache_token\";s:32:\"ea05954e6208c2bed552f97e30d1dad3\";}',1285705405,1285683805,'',1),('form_form-fea3c8fe8ad1d559015b3c63db6f10af','a:41:{s:3:\"#id\";s:9:\"node-form\";s:3:\"nid\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:1:\"8\";}s:3:\"vid\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:1:\"8\";}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:\"1265208624\";}s:4:\"type\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:6:\"banner\";}s:8:\"language\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:0:\"\";}s:7:\"changed\";a:2:{s:5:\"#type\";s:6:\"hidden\";s:14:\"#default_value\";s:10:\"1265208624\";}s:5:\"title\";a:6:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:5:\"Title\";s:9:\"#required\";b:1;s:14:\"#default_value\";s:15:\"banner 2 - USPV\";s:10:\"#maxlength\";i:255;s:7:\"#weight\";i:-5;}s:10:\"body_field\";a:7:{s:12:\"#after_build\";a:2:{i:0;s:14:\"node_teaser_js\";i:1;s:26:\"node_teaser_include_verify\";}s:7:\"#prefix\";s:32:\"<div class=\"body-field-wrapper\">\";s:7:\"#suffix\";s:6:\"</div>\";s:9:\"teaser_js\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:5:\"#rows\";i:10;s:7:\"#teaser\";s:9:\"edit-body\";s:16:\"#teaser_checkbox\";s:19:\"edit-teaser-include\";s:9:\"#disabled\";b:1;}s:14:\"teaser_include\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:25:\"Show summary in full view\";s:14:\"#default_value\";b:1;s:7:\"#prefix\";s:29:\"<div class=\"teaser-checkbox\">\";s:7:\"#suffix\";s:6:\"</div>\";}s:4:\"body\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:4:\"Body\";s:14:\"#default_value\";s:15:\"banner 2 - USPV\";s:5:\"#rows\";i:20;s:9:\"#required\";b:0;}s:6:\"format\";a:9:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:12:\"Input format\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:7:\"#weight\";N;s:17:\"#element_validate\";a:1:{i:0;s:20:\"filter_form_validate\";}i:1;a:7:{s:5:\"#type\";s:5:\"radio\";s:6:\"#title\";s:13:\"Filtered HTML\";s:14:\"#default_value\";s:1:\"1\";s:13:\"#return_value\";s:1:\"1\";s:8:\"#parents\";a:1:{i:0;s:6:\"format\";}s:12:\"#description\";s:306:\"<ul class=\"tips\"><li>Web page addresses and e-mail addresses turn into links automatically.</li><li>Allowed HTML tags: &lt;a&gt; &lt;em&gt; &lt;strong&gt; &lt;cite&gt; &lt;code&gt; &lt;ul&gt; &lt;ol&gt; &lt;li&gt; &lt;dl&gt; &lt;dt&gt; &lt;dd&gt;</li><li>Lines and paragraphs break automatically.</li></ul>\";s:3:\"#id\";s:13:\"edit-format-1\";}i:2;a:7:{s:5:\"#type\";s:5:\"radio\";s:6:\"#title\";s:9:\"Full HTML\";s:14:\"#default_value\";s:1:\"1\";s:13:\"#return_value\";s:1:\"2\";s:8:\"#parents\";a:1:{i:0;s:6:\"format\";}s:12:\"#description\";s:151:\"<ul class=\"tips\"><li>Web page addresses and e-mail addresses turn into links automatically.</li><li>Lines and paragraphs break automatically.</li></ul>\";s:3:\"#id\";s:13:\"edit-format-2\";}i:3;a:1:{s:6:\"#value\";s:90:\"<p><a href=\"/~uspvinc/main2/filter/tips\">More information about formatting options</a></p>\";}}}s:5:\"#node\";O:8:\"stdClass\":34:{s:3:\"nid\";s:1:\"8\";s:4:\"type\";s:6:\"banner\";s:8:\"language\";s:0:\"\";s:3:\"uid\";s:1:\"1\";s:6:\"status\";s:1:\"1\";s:7:\"created\";s:10:\"1265208624\";s:7:\"changed\";s:10:\"1265208624\";s:7:\"comment\";s:1:\"2\";s:7:\"promote\";s:1:\"1\";s:8:\"moderate\";s:1:\"0\";s:6:\"sticky\";s:1:\"0\";s:4:\"tnid\";s:1:\"0\";s:9:\"translate\";s:1:\"0\";s:3:\"vid\";s:1:\"8\";s:12:\"revision_uid\";s:1:\"1\";s:5:\"title\";s:15:\"banner 2 - USPV\";s:4:\"body\";s:15:\"banner 2 - USPV\";s:6:\"teaser\";s:15:\"banner 2 - USPV\";s:3:\"log\";N;s:18:\"revision_timestamp\";s:10:\"1265208624\";s:6:\"format\";s:1:\"1\";s:4:\"name\";s:5:\"admin\";s:7:\"picture\";s:0:\"\";s:4:\"data\";s:6:\"a:0:{}\";s:4:\"path\";s:20:\"banner/banner-2-uspv\";s:22:\"last_comment_timestamp\";s:10:\"1265208624\";s:17:\"last_comment_name\";N;s:13:\"comment_count\";s:1:\"0\";s:8:\"taxonomy\";a:0:{}s:4:\"iids\";a:1:{i:0;s:1:\"7\";}s:4:\"date\";s:25:\"2010-02-03 22:50:24 +0800\";s:8:\"revision\";b:0;s:4:\"menu\";a:48:{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:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:3:\"fit\";s:1:\"2\";s:12:\"number_parts\";s:1:\"2\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:5:\"about\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:4:\"type\";s:1:\"4\";s:14:\"block_callback\";s:0:\"\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"0\";s:4:\"file\";s:0:\"\";s:9:\"menu_name\";s:14:\"menu-main-menu\";s:4:\"mlid\";s:3:\"283\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/8\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:5:\"about\";s:7:\"options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:5:\"about\";}}s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"283\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:4:\"href\";s:6:\"node/8\";s:6:\"access\";b:1;s:17:\"localized_options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:5:\"about\";}}s:18:\"parent_depth_limit\";i:8;}s:22:\"pathauto_perform_alias\";b:1;}s:20:\"revision_information\";a:7:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:20:\"Revision information\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:7:\"#weight\";i:20;s:8:\"revision\";a:4:{s:7:\"#access\";b:1;s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:19:\"Create new revision\";s:14:\"#default_value\";b:0;}s:3:\"log\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:11:\"Log message\";s:14:\"#default_value\";s:0:\"\";s:5:\"#rows\";i:2;s:12:\"#description\";s:104:\"An explanation of the additions or updates being made to help other authors understand your motivations.\";}}s:6:\"author\";a:8:{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:7:\"#weight\";i:20;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:35:\"Leave blank for <em>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:91:\"Format: <em>2010-02-03 22:50:24 +0800</em>. Leave blank to use the time of form submission.\";s:14:\"#default_value\";s:25:\"2010-02-03 22:50:24 +0800\";}}s:7:\"options\";a:9:{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:7:\"#weight\";i:25;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:\"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\";s:1:\"0\";}}s:7:\"buttons\";a:3:{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:16:\"node_form_submit\";}}s:7:\"preview\";a:4:{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:2:{i:0;s:18:\"node_form_validate\";i:1;s:21:\"image_attach_validate\";}s:6:\"#theme\";a:2:{i:0;s:16:\"banner_node_form\";i:1;s:9:\"node_form\";}s:11:\"#parameters\";a:3:{i:0;s:16:\"banner_node_form\";i:1;a:3:{s:7:\"storage\";N;s:9:\"submitted\";b:0;s:4:\"post\";a:0:{}}i:2;r:83;}s:9:\"#build_id\";s:37:\"form-fea3c8fe8ad1d559015b3c63db6f10af\";s:5:\"#type\";s:4:\"form\";s:11:\"#programmed\";b:0;s:13:\"form_build_id\";a:4:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:37:\"form-fea3c8fe8ad1d559015b3c63db6f10af\";s:3:\"#id\";s:37:\"form-fea3c8fe8ad1d559015b3c63db6f10af\";s:5:\"#name\";s:13:\"form_build_id\";}s:6:\"#token\";s:16:\"banner_node_form\";s:10:\"form_token\";a:3:{s:3:\"#id\";s:32:\"edit-banner-node-form-form-token\";s:5:\"#type\";s:5:\"token\";s:14:\"#default_value\";s:32:\"07cec0c98582e0fd07a1adcfd62b388b\";}s:7:\"form_id\";a:3:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:16:\"banner_node_form\";s:3:\"#id\";s:21:\"edit-banner-node-form\";}s:12:\"#description\";N;s:11:\"#attributes\";a:1:{s:7:\"enctype\";s:19:\"multipart/form-data\";}s:9:\"#required\";b:0;s:5:\"#tree\";b:0;s:8:\"#parents\";a:0:{}s:7:\"#method\";s:4:\"post\";s:7:\"#action\";s:27:\"/~uspvinc/main2/node/8/edit\";s:16:\"comment_settings\";a:7:{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:7:\"#weight\";i:30;s:7:\"comment\";a:4:{s:5:\"#type\";s:6:\"radios\";s:8:\"#parents\";a:1:{i:0;s:7:\"comment\";}s:14:\"#default_value\";s:1:\"2\";s:8:\"#options\";a:3:{i:0;s:8:\"Disabled\";i:1;s:9:\"Read only\";i:2;s:10:\"Read/Write\";}}}s:6:\"#cache\";b:1;s:4:\"menu\";a:21:{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:5:\"#tree\";b:1;s:7:\"#weight\";i:-2;s:11:\"#attributes\";a:1:{s:5:\"class\";s:14:\"menu-item-form\";}s:6:\"delete\";a:2:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:22:\"Delete this menu item.\";}s:4:\"mlid\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:3:\"283\";}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\";s:1:\"1\";}s:7:\"options\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:5:\"about\";}}}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:5:\"#item\";a:48:{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:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:3:\"fit\";s:1:\"2\";s:12:\"number_parts\";s:1:\"2\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:5:\"about\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:4:\"type\";s:1:\"4\";s:14:\"block_callback\";s:0:\"\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"0\";s:4:\"file\";s:0:\"\";s:9:\"menu_name\";s:14:\"menu-main-menu\";s:4:\"mlid\";s:3:\"283\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/8\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:5:\"about\";s:7:\"options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:5:\"about\";}}s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"283\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:4:\"href\";s:6:\"node/8\";s:6:\"access\";b:1;s:17:\"localized_options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:5:\"about\";}}s:18:\"parent_depth_limit\";i:8;}s:10:\"link_title\";a:5:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:15:\"Menu link title\";s:14:\"#default_value\";s:5:\"about\";s:12:\"#description\";s:133:\"The link text corresponding to this item that should appear in the menu. Leave blank if you do not wish to add this post to the menu.\";s:9:\"#required\";b:0;}s:6:\"parent\";a:6:{s:5:\"#type\";s:6:\"select\";s:6:\"#title\";s:11:\"Parent item\";s:14:\"#default_value\";s:16:\"menu-main-menu:0\";s:8:\"#options\";a:95:{s:16:\"menu-main-menu:0\";s:11:\"<Main Menu>\";s:18:\"menu-main-menu:284\";s:12:\"-- resources\";s:18:\"menu-main-menu:285\";s:11:\"-- services\";s:18:\"menu-main-menu:286\";s:17:\"-- special offers\";s:12:\"navigation:0\";s:12:\"<Navigation>\";s:12:\"navigation:9\";s:26:\"-- Compose tips (disabled)\";s:14:\"navigation:461\";s:29:\"-- Image galleries (disabled)\";s:13:\"navigation:21\";s:13:\"-- My account\";s:14:\"navigation:114\";s:20:\"-- Search (disabled)\";s:14:\"navigation:244\";s:22:\"-- Site map (disabled)\";s:13:\"navigation:11\";s:17:\"-- Create content\";s:14:\"navigation:476\";s:11:\"---- Banner\";s:14:\"navigation:441\";s:10:\"---- Image\";s:14:\"navigation:289\";s:21:\"---- Newsletter issue\";s:14:\"navigation:106\";s:9:\"---- Page\";s:14:\"navigation:388\";s:10:\"---- Panel\";s:14:\"navigation:107\";s:10:\"---- Story\";s:12:\"navigation:2\";s:13:\"-- Administer\";s:13:\"navigation:10\";s:23:\"---- Content management\";s:13:\"navigation:27\";s:15:\"------ Comments\";s:13:\"navigation:28\";s:14:\"------ Content\";s:13:\"navigation:29\";s:20:\"------ Content types\";s:14:\"navigation:462\";s:22:\"------ Image galleries\";s:14:\"navigation:463\";s:19:\"------ Image import\";s:14:\"navigation:538\";s:18:\"------ Newsletters\";s:14:\"navigation:546\";s:20:\"-------- Sent issues\";s:14:\"navigation:541\";s:21:\"-------- Draft issues\";s:14:\"navigation:544\";s:20:\"-------- Newsletters\";s:14:\"navigation:548\";s:22:\"-------- Subscriptions\";s:13:\"navigation:42\";s:20:\"------ Post settings\";s:13:\"navigation:43\";s:21:\"------ RSS publishing\";s:13:\"navigation:94\";s:15:\"------ Taxonomy\";s:13:\"navigation:17\";s:18:\"---- Site building\";s:13:\"navigation:25\";s:13:\"------ Blocks\";s:14:\"navigation:424\";s:20:\"------ Bulk Exporter\";s:13:\"navigation:38\";s:12:\"------ Menus\";s:14:\"navigation:282\";s:18:\"-------- Main Menu\";s:13:\"navigation:89\";s:19:\"-------- Navigation\";s:13:\"navigation:90\";s:22:\"-------- Primary links\";s:14:\"navigation:495\";s:19:\"-------- Right Menu\";s:13:\"navigation:91\";s:24:\"-------- Secondary links\";s:14:\"navigation:387\";s:18:\"------ Mini panels\";s:13:\"navigation:39\";s:14:\"------ Modules\";s:14:\"navigation:412\";s:12:\"------ Pages\";s:14:\"navigation:360\";s:13:\"------ Panels\";s:13:\"navigation:49\";s:13:\"------ Themes\";s:14:\"navigation:335\";s:15:\"------ Triggers\";s:14:\"navigation:501\";s:18:\"------ URL aliases\";s:14:\"navigation:257\";s:12:\"------ Views\";s:13:\"navigation:18\";s:23:\"---- Site configuration\";s:13:\"navigation:23\";s:14:\"------ Actions\";s:14:\"navigation:119\";s:26:\"------ Administration menu\";s:13:\"navigation:24\";s:27:\"------ Administration theme\";s:13:\"navigation:26\";s:17:\"------ Clean URLs\";s:13:\"navigation:30\";s:20:\"------ Date and time\";s:13:\"navigation:33\";s:22:\"------ Error reporting\";s:13:\"navigation:34\";s:18:\"------ File system\";s:13:\"navigation:35\";s:20:\"------ Image toolkit\";s:14:\"navigation:442\";s:13:\"------ Images\";s:13:\"navigation:36\";s:20:\"------ Input formats\";s:13:\"navigation:37\";s:25:\"------ Logging and alerts\";s:14:\"navigation:100\";s:25:\"-------- Database logging\";s:14:\"navigation:245\";s:17:\"------ Nice Menus\";s:13:\"navigation:40\";s:18:\"------ Performance\";s:14:\"navigation:120\";s:22:\"------ Search settings\";s:14:\"navigation:539\";s:17:\"------ Simplenews\";s:14:\"navigation:542\";s:16:\"-------- General\";s:14:\"navigation:543\";s:19:\"-------- Newsletter\";s:14:\"navigation:547\";s:21:\"-------- Subscription\";s:14:\"navigation:545\";s:18:\"-------- Send mail\";s:13:\"navigation:46\";s:23:\"------ Site information\";s:13:\"navigation:47\";s:23:\"------ Site maintenance\";s:14:\"navigation:246\";s:15:\"------ Site map\";s:13:\"navigation:20\";s:20:\"---- User management\";s:13:\"navigation:22\";s:19:\"------ Access rules\";s:13:\"navigation:41\";s:18:\"------ Permissions\";s:13:\"navigation:45\";s:12:\"------ Roles\";s:13:\"navigation:50\";s:20:\"------ User settings\";s:13:\"navigation:51\";s:12:\"------ Users\";s:13:\"navigation:16\";s:12:\"---- Reports\";s:13:\"navigation:93\";s:25:\"------ Recent log entries\";s:13:\"navigation:96\";s:33:\"------ Top \'access denied\' errors\";s:13:\"navigation:97\";s:34:\"------ Top \'page not found\' errors\";s:14:\"navigation:121\";s:25:\"------ Top search phrases\";s:14:\"navigation:105\";s:24:\"------ Available updates\";s:13:\"navigation:48\";s:20:\"------ Status report\";s:13:\"navigation:15\";s:9:\"---- Help\";s:12:\"navigation:4\";s:10:\"-- Log out\";s:15:\"primary-links:0\";s:15:\"<Primary links>\";s:17:\"menu-right-menu:0\";s:12:\"<Right Menu>\";s:19:\"menu-right-menu:496\";s:28:\"-- Financial Calculator Tool\";s:19:\"menu-right-menu:497\";s:21:\"-- News Story Library\";s:19:\"menu-right-menu:498\";s:14:\"-- Latest News\";s:19:\"menu-right-menu:499\";s:25:\"-- SREC Management Portal\";s:17:\"secondary-links:0\";s:17:\"<Secondary links>\";}s:12:\"#description\";s:156:\"The maximum depth for an item and all its children is fixed at 9. Some menu items may not be available as parents if selecting them would exceed this limit.\";s:11:\"#attributes\";a:1:{s:5:\"class\";s:17:\"menu-title-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:1:\"0\";s:12:\"#description\";s:107:\"Optional. In the menu, the heavier items will sink and the lighter items will be positioned nearer the top.\";}}s:7:\"#submit\";a:2:{i:0;s:21:\"menu_node_form_submit\";i:1;s:29:\"image_attach_node_form_submit\";}s:4:\"path\";a:10:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:17:\"URL path settings\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:0;s:7:\"#access\";b:1;s:7:\"#weight\";i:30;s:4:\"path\";a:6:{s:5:\"#type\";s:9:\"textfield\";s:14:\"#default_value\";s:20:\"banner/banner-2-uspv\";s:10:\"#maxlength\";i:128;s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:12:\"#description\";s:207:\"Optionally specify an alternative URL by which this node 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\";s:1:\"8\";}s:22:\"pathauto_perform_alias\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:15:\"Automatic alias\";s:14:\"#default_value\";b:1;s:12:\"#description\";s:238:\"An alias will be generated for you. If you wish to create your own alias below, uncheck this option. To control the format of the generated aliases, see the <a href=\"/~uspvinc/main2/admin/build/path/pathauto\">automated alias settings</a>.\";s:7:\"#weight\";i:-1;}s:9:\"old_alias\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:20:\"banner/banner-2-uspv\";}}s:11:\"#pre_render\";a:1:{i:0;s:27:\"content_alter_extra_weights\";}s:21:\"#content_extra_fields\";a:7:{s:5:\"title\";a:3:{s:5:\"label\";s:5:\"Title\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";s:2:\"-5\";}s:10:\"body_field\";a:4:{s:5:\"label\";s:4:\"Body\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";s:2:\"-2\";s:4:\"view\";s:4:\"body\";}s:20:\"revision_information\";a:3:{s:5:\"label\";s:20:\"Revision information\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";s:2:\"-1\";}s:16:\"comment_settings\";a:3:{s:5:\"label\";s:16:\"Comment settings\";s:11:\"description\";s:20:\"Comment module form.\";s:6:\"weight\";s:1:\"0\";}s:4:\"menu\";a:3:{s:5:\"label\";s:13:\"Menu settings\";s:11:\"description\";s:17:\"Menu module form.\";s:6:\"weight\";s:2:\"-4\";}s:4:\"path\";a:3:{s:5:\"label\";s:13:\"Path settings\";s:11:\"description\";s:17:\"Path module form.\";s:6:\"weight\";i:30;}s:12:\"image_attach\";a:3:{s:5:\"label\";s:15:\"Attached images\";s:11:\"description\";s:25:\"Image Attach module form.\";s:6:\"weight\";s:2:\"-3\";}}s:12:\"image_attach\";a:10:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:15:\"Attached images\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:0;s:12:\"#description\";s:23:\"You may attach 1 image.\";s:15:\"image_thumbnail\";a:1:{i:7;a:3:{s:5:\"#type\";s:4:\"item\";s:6:\"#title\";s:9:\"Thumbnail\";s:6:\"#value\";s:210:\"<img src=\"http://www.powerstormtech.com/~uspvinc/main2/sites/default/files/images/banner-2.thumbnail.png\" alt=\"banner 2 - USPV\" title=\"banner 2 - USPV\"  class=\"image image-thumbnail \" width=\"100\" height=\"36\" />\";}}s:4:\"iids\";a:7:{s:5:\"#type\";s:6:\"select\";s:14:\"#default_value\";a:1:{i:0;s:1:\"7\";}s:9:\"#multiple\";b:1;s:5:\"#size\";i:6;s:6:\"#title\";s:15:\"Existing images\";s:8:\"#options\";a:4:{i:0;s:8:\"- None -\";i:1;s:15:\"banner 1 - USPV\";i:7;s:15:\"banner 2 - USPV\";i:9;s:15:\"banner 3 - USPV\";}s:12:\"#description\";s:54:\"Choose existing images if you do not upload a new one.\";}s:5:\"image\";a:2:{s:5:\"#type\";s:4:\"file\";s:6:\"#title\";s:12:\"Upload image\";}s:11:\"image_title\";a:4:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:11:\"Image title\";s:14:\"#default_value\";s:0:\"\";s:12:\"#description\";s:72:\"The title the image will be shown with. Leave blank to use the filename.\";}s:21:\"image_attach_multiple\";a:4:{s:5:\"#type\";s:6:\"submit\";s:6:\"#value\";s:6:\"Attach\";s:9:\"#validate\";a:1:{i:0;s:21:\"image_attach_validate\";}s:7:\"#submit\";a:1:{i:0;s:29:\"image_attach_image_add_submit\";}}}s:12:\"#cache_token\";s:32:\"ea05954e6208c2bed552f97e30d1dad3\";}',1285706667,1285685067,'',1),('form_form-4f6bcbf4164f68a709a7b0a6607974a6','a:41:{s:3:\"#id\";s:9:\"node-form\";s:3:\"nid\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:1:\"8\";}s:3:\"vid\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:1:\"8\";}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:\"1265208624\";}s:4:\"type\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:6:\"banner\";}s:8:\"language\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:0:\"\";}s:7:\"changed\";a:2:{s:5:\"#type\";s:6:\"hidden\";s:14:\"#default_value\";s:10:\"1265208624\";}s:5:\"title\";a:6:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:5:\"Title\";s:9:\"#required\";b:1;s:14:\"#default_value\";s:15:\"banner 2 - USPV\";s:10:\"#maxlength\";i:255;s:7:\"#weight\";i:-5;}s:10:\"body_field\";a:7:{s:12:\"#after_build\";a:2:{i:0;s:14:\"node_teaser_js\";i:1;s:26:\"node_teaser_include_verify\";}s:7:\"#prefix\";s:32:\"<div class=\"body-field-wrapper\">\";s:7:\"#suffix\";s:6:\"</div>\";s:9:\"teaser_js\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:5:\"#rows\";i:10;s:7:\"#teaser\";s:9:\"edit-body\";s:16:\"#teaser_checkbox\";s:19:\"edit-teaser-include\";s:9:\"#disabled\";b:1;}s:14:\"teaser_include\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:25:\"Show summary in full view\";s:14:\"#default_value\";b:1;s:7:\"#prefix\";s:29:\"<div class=\"teaser-checkbox\">\";s:7:\"#suffix\";s:6:\"</div>\";}s:4:\"body\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:4:\"Body\";s:14:\"#default_value\";s:15:\"banner 2 - USPV\";s:5:\"#rows\";i:20;s:9:\"#required\";b:0;}s:6:\"format\";a:9:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:12:\"Input format\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:7:\"#weight\";N;s:17:\"#element_validate\";a:1:{i:0;s:20:\"filter_form_validate\";}i:1;a:7:{s:5:\"#type\";s:5:\"radio\";s:6:\"#title\";s:13:\"Filtered HTML\";s:14:\"#default_value\";s:1:\"1\";s:13:\"#return_value\";s:1:\"1\";s:8:\"#parents\";a:1:{i:0;s:6:\"format\";}s:12:\"#description\";s:306:\"<ul class=\"tips\"><li>Web page addresses and e-mail addresses turn into links automatically.</li><li>Allowed HTML tags: &lt;a&gt; &lt;em&gt; &lt;strong&gt; &lt;cite&gt; &lt;code&gt; &lt;ul&gt; &lt;ol&gt; &lt;li&gt; &lt;dl&gt; &lt;dt&gt; &lt;dd&gt;</li><li>Lines and paragraphs break automatically.</li></ul>\";s:3:\"#id\";s:13:\"edit-format-1\";}i:2;a:7:{s:5:\"#type\";s:5:\"radio\";s:6:\"#title\";s:9:\"Full HTML\";s:14:\"#default_value\";s:1:\"1\";s:13:\"#return_value\";s:1:\"2\";s:8:\"#parents\";a:1:{i:0;s:6:\"format\";}s:12:\"#description\";s:151:\"<ul class=\"tips\"><li>Web page addresses and e-mail addresses turn into links automatically.</li><li>Lines and paragraphs break automatically.</li></ul>\";s:3:\"#id\";s:13:\"edit-format-2\";}i:3;a:1:{s:6:\"#value\";s:90:\"<p><a href=\"/~uspvinc/main2/filter/tips\">More information about formatting options</a></p>\";}}}s:5:\"#node\";O:8:\"stdClass\":34:{s:3:\"nid\";s:1:\"8\";s:4:\"type\";s:6:\"banner\";s:8:\"language\";s:0:\"\";s:3:\"uid\";s:1:\"1\";s:6:\"status\";s:1:\"1\";s:7:\"created\";s:10:\"1265208624\";s:7:\"changed\";s:10:\"1265208624\";s:7:\"comment\";s:1:\"2\";s:7:\"promote\";s:1:\"1\";s:8:\"moderate\";s:1:\"0\";s:6:\"sticky\";s:1:\"0\";s:4:\"tnid\";s:1:\"0\";s:9:\"translate\";s:1:\"0\";s:3:\"vid\";s:1:\"8\";s:12:\"revision_uid\";s:1:\"1\";s:5:\"title\";s:15:\"banner 2 - USPV\";s:4:\"body\";s:15:\"banner 2 - USPV\";s:6:\"teaser\";s:15:\"banner 2 - USPV\";s:3:\"log\";N;s:18:\"revision_timestamp\";s:10:\"1265208624\";s:6:\"format\";s:1:\"1\";s:4:\"name\";s:5:\"admin\";s:7:\"picture\";s:0:\"\";s:4:\"data\";s:6:\"a:0:{}\";s:4:\"path\";s:20:\"banner/banner-2-uspv\";s:22:\"last_comment_timestamp\";s:10:\"1265208624\";s:17:\"last_comment_name\";N;s:13:\"comment_count\";s:1:\"0\";s:8:\"taxonomy\";a:0:{}s:4:\"iids\";a:1:{i:0;s:1:\"7\";}s:4:\"date\";s:25:\"2010-02-03 22:50:24 +0800\";s:8:\"revision\";b:0;s:4:\"menu\";a:48:{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:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:3:\"fit\";s:1:\"2\";s:12:\"number_parts\";s:1:\"2\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:5:\"about\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:4:\"type\";s:1:\"4\";s:14:\"block_callback\";s:0:\"\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"0\";s:4:\"file\";s:0:\"\";s:9:\"menu_name\";s:14:\"menu-main-menu\";s:4:\"mlid\";s:3:\"283\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/8\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:5:\"about\";s:7:\"options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:5:\"about\";}}s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"283\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:4:\"href\";s:6:\"node/8\";s:6:\"access\";b:1;s:17:\"localized_options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:5:\"about\";}}s:18:\"parent_depth_limit\";i:8;}s:22:\"pathauto_perform_alias\";b:1;}s:20:\"revision_information\";a:7:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:20:\"Revision information\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:7:\"#weight\";i:20;s:8:\"revision\";a:4:{s:7:\"#access\";b:1;s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:19:\"Create new revision\";s:14:\"#default_value\";b:0;}s:3:\"log\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:11:\"Log message\";s:14:\"#default_value\";s:0:\"\";s:5:\"#rows\";i:2;s:12:\"#description\";s:104:\"An explanation of the additions or updates being made to help other authors understand your motivations.\";}}s:6:\"author\";a:8:{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:7:\"#weight\";i:20;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:35:\"Leave blank for <em>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:91:\"Format: <em>2010-02-03 22:50:24 +0800</em>. Leave blank to use the time of form submission.\";s:14:\"#default_value\";s:25:\"2010-02-03 22:50:24 +0800\";}}s:7:\"options\";a:9:{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:7:\"#weight\";i:25;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:\"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\";s:1:\"0\";}}s:7:\"buttons\";a:3:{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:16:\"node_form_submit\";}}s:7:\"preview\";a:4:{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:2:{i:0;s:18:\"node_form_validate\";i:1;s:21:\"image_attach_validate\";}s:6:\"#theme\";a:2:{i:0;s:16:\"banner_node_form\";i:1;s:9:\"node_form\";}s:11:\"#parameters\";a:3:{i:0;s:16:\"banner_node_form\";i:1;a:3:{s:7:\"storage\";N;s:9:\"submitted\";b:0;s:4:\"post\";a:0:{}}i:2;r:83;}s:9:\"#build_id\";s:37:\"form-4f6bcbf4164f68a709a7b0a6607974a6\";s:5:\"#type\";s:4:\"form\";s:11:\"#programmed\";b:0;s:13:\"form_build_id\";a:4:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:37:\"form-4f6bcbf4164f68a709a7b0a6607974a6\";s:3:\"#id\";s:37:\"form-4f6bcbf4164f68a709a7b0a6607974a6\";s:5:\"#name\";s:13:\"form_build_id\";}s:6:\"#token\";s:16:\"banner_node_form\";s:10:\"form_token\";a:3:{s:3:\"#id\";s:32:\"edit-banner-node-form-form-token\";s:5:\"#type\";s:5:\"token\";s:14:\"#default_value\";s:32:\"07cec0c98582e0fd07a1adcfd62b388b\";}s:7:\"form_id\";a:3:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:16:\"banner_node_form\";s:3:\"#id\";s:21:\"edit-banner-node-form\";}s:12:\"#description\";N;s:11:\"#attributes\";a:1:{s:7:\"enctype\";s:19:\"multipart/form-data\";}s:9:\"#required\";b:0;s:5:\"#tree\";b:0;s:8:\"#parents\";a:0:{}s:7:\"#method\";s:4:\"post\";s:7:\"#action\";s:27:\"/~uspvinc/main2/node/8/edit\";s:16:\"comment_settings\";a:7:{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:7:\"#weight\";i:30;s:7:\"comment\";a:4:{s:5:\"#type\";s:6:\"radios\";s:8:\"#parents\";a:1:{i:0;s:7:\"comment\";}s:14:\"#default_value\";s:1:\"2\";s:8:\"#options\";a:3:{i:0;s:8:\"Disabled\";i:1;s:9:\"Read only\";i:2;s:10:\"Read/Write\";}}}s:6:\"#cache\";b:1;s:4:\"menu\";a:21:{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:5:\"#tree\";b:1;s:7:\"#weight\";i:-2;s:11:\"#attributes\";a:1:{s:5:\"class\";s:14:\"menu-item-form\";}s:6:\"delete\";a:2:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:22:\"Delete this menu item.\";}s:4:\"mlid\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:3:\"283\";}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\";s:1:\"1\";}s:7:\"options\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:5:\"about\";}}}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:5:\"#item\";a:48:{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:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:3:\"fit\";s:1:\"2\";s:12:\"number_parts\";s:1:\"2\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:5:\"about\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:4:\"type\";s:1:\"4\";s:14:\"block_callback\";s:0:\"\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"0\";s:4:\"file\";s:0:\"\";s:9:\"menu_name\";s:14:\"menu-main-menu\";s:4:\"mlid\";s:3:\"283\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/8\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:5:\"about\";s:7:\"options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:5:\"about\";}}s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"283\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:4:\"href\";s:6:\"node/8\";s:6:\"access\";b:1;s:17:\"localized_options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:5:\"about\";}}s:18:\"parent_depth_limit\";i:8;}s:10:\"link_title\";a:5:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:15:\"Menu link title\";s:14:\"#default_value\";s:5:\"about\";s:12:\"#description\";s:133:\"The link text corresponding to this item that should appear in the menu. Leave blank if you do not wish to add this post to the menu.\";s:9:\"#required\";b:0;}s:6:\"parent\";a:6:{s:5:\"#type\";s:6:\"select\";s:6:\"#title\";s:11:\"Parent item\";s:14:\"#default_value\";s:16:\"menu-main-menu:0\";s:8:\"#options\";a:96:{s:16:\"menu-main-menu:0\";s:11:\"<Main Menu>\";s:18:\"menu-main-menu:581\";s:7:\"-- news\";s:18:\"menu-main-menu:284\";s:12:\"-- resources\";s:18:\"menu-main-menu:285\";s:11:\"-- services\";s:18:\"menu-main-menu:286\";s:17:\"-- special offers\";s:12:\"navigation:0\";s:12:\"<Navigation>\";s:12:\"navigation:9\";s:26:\"-- Compose tips (disabled)\";s:14:\"navigation:461\";s:29:\"-- Image galleries (disabled)\";s:13:\"navigation:21\";s:13:\"-- My account\";s:14:\"navigation:114\";s:20:\"-- Search (disabled)\";s:14:\"navigation:244\";s:22:\"-- Site map (disabled)\";s:13:\"navigation:11\";s:17:\"-- Create content\";s:14:\"navigation:476\";s:11:\"---- Banner\";s:14:\"navigation:441\";s:10:\"---- Image\";s:14:\"navigation:289\";s:21:\"---- Newsletter issue\";s:14:\"navigation:106\";s:9:\"---- Page\";s:14:\"navigation:388\";s:10:\"---- Panel\";s:14:\"navigation:107\";s:10:\"---- Story\";s:12:\"navigation:2\";s:13:\"-- Administer\";s:13:\"navigation:10\";s:23:\"---- Content management\";s:13:\"navigation:27\";s:15:\"------ Comments\";s:13:\"navigation:28\";s:14:\"------ Content\";s:13:\"navigation:29\";s:20:\"------ Content types\";s:14:\"navigation:462\";s:22:\"------ Image galleries\";s:14:\"navigation:463\";s:19:\"------ Image import\";s:14:\"navigation:538\";s:18:\"------ Newsletters\";s:14:\"navigation:546\";s:20:\"-------- Sent issues\";s:14:\"navigation:541\";s:21:\"-------- Draft issues\";s:14:\"navigation:544\";s:20:\"-------- Newsletters\";s:14:\"navigation:548\";s:22:\"-------- Subscriptions\";s:13:\"navigation:42\";s:20:\"------ Post settings\";s:13:\"navigation:43\";s:21:\"------ RSS publishing\";s:13:\"navigation:94\";s:15:\"------ Taxonomy\";s:13:\"navigation:17\";s:18:\"---- Site building\";s:13:\"navigation:25\";s:13:\"------ Blocks\";s:14:\"navigation:424\";s:20:\"------ Bulk Exporter\";s:13:\"navigation:38\";s:12:\"------ Menus\";s:14:\"navigation:282\";s:18:\"-------- Main Menu\";s:13:\"navigation:89\";s:19:\"-------- Navigation\";s:13:\"navigation:90\";s:22:\"-------- Primary links\";s:14:\"navigation:495\";s:19:\"-------- Right Menu\";s:13:\"navigation:91\";s:24:\"-------- Secondary links\";s:14:\"navigation:387\";s:18:\"------ Mini panels\";s:13:\"navigation:39\";s:14:\"------ Modules\";s:14:\"navigation:412\";s:12:\"------ Pages\";s:14:\"navigation:360\";s:13:\"------ Panels\";s:13:\"navigation:49\";s:13:\"------ Themes\";s:14:\"navigation:335\";s:15:\"------ Triggers\";s:14:\"navigation:501\";s:18:\"------ URL aliases\";s:14:\"navigation:257\";s:12:\"------ Views\";s:13:\"navigation:18\";s:23:\"---- Site configuration\";s:13:\"navigation:23\";s:14:\"------ Actions\";s:14:\"navigation:119\";s:26:\"------ Administration menu\";s:13:\"navigation:24\";s:27:\"------ Administration theme\";s:13:\"navigation:26\";s:17:\"------ Clean URLs\";s:13:\"navigation:30\";s:20:\"------ Date and time\";s:13:\"navigation:33\";s:22:\"------ Error reporting\";s:13:\"navigation:34\";s:18:\"------ File system\";s:13:\"navigation:35\";s:20:\"------ Image toolkit\";s:14:\"navigation:442\";s:13:\"------ Images\";s:13:\"navigation:36\";s:20:\"------ Input formats\";s:13:\"navigation:37\";s:25:\"------ Logging and alerts\";s:14:\"navigation:100\";s:25:\"-------- Database logging\";s:14:\"navigation:245\";s:17:\"------ Nice Menus\";s:13:\"navigation:40\";s:18:\"------ Performance\";s:14:\"navigation:120\";s:22:\"------ Search settings\";s:14:\"navigation:539\";s:17:\"------ Simplenews\";s:14:\"navigation:542\";s:16:\"-------- General\";s:14:\"navigation:543\";s:19:\"-------- Newsletter\";s:14:\"navigation:547\";s:21:\"-------- Subscription\";s:14:\"navigation:545\";s:18:\"-------- Send mail\";s:13:\"navigation:46\";s:23:\"------ Site information\";s:13:\"navigation:47\";s:23:\"------ Site maintenance\";s:14:\"navigation:246\";s:15:\"------ Site map\";s:13:\"navigation:20\";s:20:\"---- User management\";s:13:\"navigation:22\";s:19:\"------ Access rules\";s:13:\"navigation:41\";s:18:\"------ Permissions\";s:13:\"navigation:45\";s:12:\"------ Roles\";s:13:\"navigation:50\";s:20:\"------ User settings\";s:13:\"navigation:51\";s:12:\"------ Users\";s:13:\"navigation:16\";s:12:\"---- Reports\";s:13:\"navigation:93\";s:25:\"------ Recent log entries\";s:13:\"navigation:96\";s:33:\"------ Top \'access denied\' errors\";s:13:\"navigation:97\";s:34:\"------ Top \'page not found\' errors\";s:14:\"navigation:121\";s:25:\"------ Top search phrases\";s:14:\"navigation:105\";s:24:\"------ Available updates\";s:13:\"navigation:48\";s:20:\"------ Status report\";s:13:\"navigation:15\";s:9:\"---- Help\";s:12:\"navigation:4\";s:10:\"-- Log out\";s:15:\"primary-links:0\";s:15:\"<Primary links>\";s:17:\"menu-right-menu:0\";s:12:\"<Right Menu>\";s:19:\"menu-right-menu:496\";s:28:\"-- Financial Calculator Tool\";s:19:\"menu-right-menu:497\";s:21:\"-- News Story Library\";s:19:\"menu-right-menu:498\";s:14:\"-- Latest News\";s:19:\"menu-right-menu:499\";s:25:\"-- SREC Management Portal\";s:17:\"secondary-links:0\";s:17:\"<Secondary links>\";}s:12:\"#description\";s:156:\"The maximum depth for an item and all its children is fixed at 9. Some menu items may not be available as parents if selecting them would exceed this limit.\";s:11:\"#attributes\";a:1:{s:5:\"class\";s:17:\"menu-title-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:1:\"0\";s:12:\"#description\";s:107:\"Optional. In the menu, the heavier items will sink and the lighter items will be positioned nearer the top.\";}}s:7:\"#submit\";a:2:{i:0;s:21:\"menu_node_form_submit\";i:1;s:29:\"image_attach_node_form_submit\";}s:4:\"path\";a:10:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:17:\"URL path settings\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:0;s:7:\"#access\";b:1;s:7:\"#weight\";i:30;s:4:\"path\";a:6:{s:5:\"#type\";s:9:\"textfield\";s:14:\"#default_value\";s:20:\"banner/banner-2-uspv\";s:10:\"#maxlength\";i:128;s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:12:\"#description\";s:207:\"Optionally specify an alternative URL by which this node 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\";s:1:\"8\";}s:22:\"pathauto_perform_alias\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:15:\"Automatic alias\";s:14:\"#default_value\";b:1;s:12:\"#description\";s:238:\"An alias will be generated for you. If you wish to create your own alias below, uncheck this option. To control the format of the generated aliases, see the <a href=\"/~uspvinc/main2/admin/build/path/pathauto\">automated alias settings</a>.\";s:7:\"#weight\";i:-1;}s:9:\"old_alias\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:20:\"banner/banner-2-uspv\";}}s:11:\"#pre_render\";a:1:{i:0;s:27:\"content_alter_extra_weights\";}s:21:\"#content_extra_fields\";a:7:{s:5:\"title\";a:3:{s:5:\"label\";s:5:\"Title\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";s:2:\"-5\";}s:10:\"body_field\";a:4:{s:5:\"label\";s:4:\"Body\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";s:2:\"-2\";s:4:\"view\";s:4:\"body\";}s:20:\"revision_information\";a:3:{s:5:\"label\";s:20:\"Revision information\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";s:2:\"-1\";}s:16:\"comment_settings\";a:3:{s:5:\"label\";s:16:\"Comment settings\";s:11:\"description\";s:20:\"Comment module form.\";s:6:\"weight\";s:1:\"0\";}s:4:\"menu\";a:3:{s:5:\"label\";s:13:\"Menu settings\";s:11:\"description\";s:17:\"Menu module form.\";s:6:\"weight\";s:2:\"-4\";}s:4:\"path\";a:3:{s:5:\"label\";s:13:\"Path settings\";s:11:\"description\";s:17:\"Path module form.\";s:6:\"weight\";i:30;}s:12:\"image_attach\";a:3:{s:5:\"label\";s:15:\"Attached images\";s:11:\"description\";s:25:\"Image Attach module form.\";s:6:\"weight\";s:2:\"-3\";}}s:12:\"image_attach\";a:10:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:15:\"Attached images\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:0;s:12:\"#description\";s:23:\"You may attach 1 image.\";s:15:\"image_thumbnail\";a:1:{i:7;a:3:{s:5:\"#type\";s:4:\"item\";s:6:\"#title\";s:9:\"Thumbnail\";s:6:\"#value\";s:210:\"<img src=\"http://www.powerstormtech.com/~uspvinc/main2/sites/default/files/images/banner-2.thumbnail.png\" alt=\"banner 2 - USPV\" title=\"banner 2 - USPV\"  class=\"image image-thumbnail \" width=\"100\" height=\"36\" />\";}}s:4:\"iids\";a:7:{s:5:\"#type\";s:6:\"select\";s:14:\"#default_value\";a:1:{i:0;s:1:\"7\";}s:9:\"#multiple\";b:1;s:5:\"#size\";i:6;s:6:\"#title\";s:15:\"Existing images\";s:8:\"#options\";a:4:{i:0;s:8:\"- None -\";i:1;s:15:\"banner 1 - USPV\";i:7;s:15:\"banner 2 - USPV\";i:9;s:15:\"banner 3 - USPV\";}s:12:\"#description\";s:54:\"Choose existing images if you do not upload a new one.\";}s:5:\"image\";a:2:{s:5:\"#type\";s:4:\"file\";s:6:\"#title\";s:12:\"Upload image\";}s:11:\"image_title\";a:4:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:11:\"Image title\";s:14:\"#default_value\";s:0:\"\";s:12:\"#description\";s:72:\"The title the image will be shown with. Leave blank to use the filename.\";}s:21:\"image_attach_multiple\";a:4:{s:5:\"#type\";s:6:\"submit\";s:6:\"#value\";s:6:\"Attach\";s:9:\"#validate\";a:1:{i:0;s:21:\"image_attach_validate\";}s:7:\"#submit\";a:1:{i:0;s:29:\"image_attach_image_add_submit\";}}}s:12:\"#cache_token\";s:32:\"ea05954e6208c2bed552f97e30d1dad3\";}',1285706443,1285684843,'',1),('form_form-7874292713766db637c4b05056d27ee6','a:40:{s:3:\"#id\";s:9:\"node-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:\"1265202538\";}s:4:\"type\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:4:\"page\";}s:8:\"language\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:0:\"\";}s:7:\"changed\";a:2:{s:5:\"#type\";s:6:\"hidden\";s:14:\"#default_value\";s:10:\"1285684275\";}s:5:\"title\";a:6:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:5:\"Title\";s:9:\"#required\";b:1;s:14:\"#default_value\";s:9:\"resources\";s:10:\"#maxlength\";i:255;s:7:\"#weight\";i:-5;}s:10:\"body_field\";a:7:{s:12:\"#after_build\";a:2:{i:0;s:14:\"node_teaser_js\";i:1;s:26:\"node_teaser_include_verify\";}s:7:\"#prefix\";s:32:\"<div class=\"body-field-wrapper\">\";s:7:\"#suffix\";s:6:\"</div>\";s:9:\"teaser_js\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:5:\"#rows\";i:10;s:7:\"#teaser\";s:9:\"edit-body\";s:16:\"#teaser_checkbox\";s:19:\"edit-teaser-include\";s:9:\"#disabled\";b:1;}s:14:\"teaser_include\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:25:\"Show summary in full view\";s:14:\"#default_value\";b:1;s:7:\"#prefix\";s:29:\"<div class=\"teaser-checkbox\">\";s:7:\"#suffix\";s:6:\"</div>\";}s:4:\"body\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:4:\"Body\";s:14:\"#default_value\";s:1102:\"<h2>Internet Resources</h2>\r\n \r\nFrom the Database of State Incentives for Renewables and Efficiency (DSIRE.org):\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/statesearch2.cfm?State=US&back=fintab&CurrentPageID=7&Search=TableState&EE=1&RE=1\">Federal Incentives for Solar PV</a>\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&State=MD&RE=1&EE=1\">Maryland Incentives for Solar PV</a>\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&State=DC&RE=1&EE=1\">District of Columbia Incentives for Solar PV</a>\r\n\r\n<h2>Industry Organizations</h2>\r\n\r\n<a href=\"http://www.ases.org/\">American Solar Energy Society</a>   Professional Member\r\n\r\n<a href=\"http://www.mdv-seia.org/\">Maryland-DC-Virginia Solar Energy Industries Association</a>   Professional Member\r\n  \r\n<h2>Contact Us</h2>\r\n<p>\r\nTelephone: 240-344-2657\r\n</p>\r\n<p>\r\nEmail:\r\n\r\n          Sales: sales@uspvinc.com\r\n\r\n          Customer Service: support@uspvinc.com\r\n\r\n          Other Inquiries:  info@uspvinc.com\r\n</p>\r\n<p>\r\nPostal Address: 4539 Metropolitan Court, Frederick MD  21704\r\n</p>\";s:5:\"#rows\";i:20;s:9:\"#required\";b:0;}s:6:\"format\";a:9:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:12:\"Input format\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:7:\"#weight\";N;s:17:\"#element_validate\";a:1:{i:0;s:20:\"filter_form_validate\";}i:1;a:7:{s:5:\"#type\";s:5:\"radio\";s:6:\"#title\";s:13:\"Filtered HTML\";s:14:\"#default_value\";s:1:\"2\";s:13:\"#return_value\";s:1:\"1\";s:8:\"#parents\";a:1:{i:0;s:6:\"format\";}s:12:\"#description\";s:306:\"<ul class=\"tips\"><li>Web page addresses and e-mail addresses turn into links automatically.</li><li>Allowed HTML tags: &lt;a&gt; &lt;em&gt; &lt;strong&gt; &lt;cite&gt; &lt;code&gt; &lt;ul&gt; &lt;ol&gt; &lt;li&gt; &lt;dl&gt; &lt;dt&gt; &lt;dd&gt;</li><li>Lines and paragraphs break automatically.</li></ul>\";s:3:\"#id\";s:13:\"edit-format-1\";}i:2;a:7:{s:5:\"#type\";s:5:\"radio\";s:6:\"#title\";s:9:\"Full HTML\";s:14:\"#default_value\";s:1:\"2\";s:13:\"#return_value\";s:1:\"2\";s:8:\"#parents\";a:1:{i:0;s:6:\"format\";}s:12:\"#description\";s:151:\"<ul class=\"tips\"><li>Web page addresses and e-mail addresses turn into links automatically.</li><li>Lines and paragraphs break automatically.</li></ul>\";s:3:\"#id\";s:13:\"edit-format-2\";}i:3;a:1:{s:6:\"#value\";s:90:\"<p><a href=\"/~uspvinc/main2/filter/tips\">More information about formatting options</a></p>\";}}}s:5:\"#node\";O:8:\"stdClass\":33:{s:3:\"nid\";s:1:\"4\";s:4:\"type\";s:4:\"page\";s:8:\"language\";s:0:\"\";s:3:\"uid\";s:1:\"1\";s:6:\"status\";s:1:\"1\";s:7:\"created\";s:10:\"1265202538\";s:7:\"changed\";s:10:\"1285684275\";s:7:\"comment\";s:1:\"0\";s:7:\"promote\";s:1:\"0\";s:8:\"moderate\";s:1:\"0\";s:6:\"sticky\";s:1:\"0\";s:4:\"tnid\";s:1:\"0\";s:9:\"translate\";s:1:\"0\";s:3:\"vid\";s:1:\"4\";s:12:\"revision_uid\";s:1:\"1\";s:5:\"title\";s:9:\"resources\";s:4:\"body\";s:1102:\"<h2>Internet Resources</h2>\r\n \r\nFrom the Database of State Incentives for Renewables and Efficiency (DSIRE.org):\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/statesearch2.cfm?State=US&back=fintab&CurrentPageID=7&Search=TableState&EE=1&RE=1\">Federal Incentives for Solar PV</a>\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&State=MD&RE=1&EE=1\">Maryland Incentives for Solar PV</a>\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&State=DC&RE=1&EE=1\">District of Columbia Incentives for Solar PV</a>\r\n\r\n<h2>Industry Organizations</h2>\r\n\r\n<a href=\"http://www.ases.org/\">American Solar Energy Society</a>   Professional Member\r\n\r\n<a href=\"http://www.mdv-seia.org/\">Maryland-DC-Virginia Solar Energy Industries Association</a>   Professional Member\r\n  \r\n<h2>Contact Us</h2>\r\n<p>\r\nTelephone: 240-344-2657\r\n</p>\r\n<p>\r\nEmail:\r\n\r\n          Sales: sales@uspvinc.com\r\n\r\n          Customer Service: support@uspvinc.com\r\n\r\n          Other Inquiries:  info@uspvinc.com\r\n</p>\r\n<p>\r\nPostal Address: 4539 Metropolitan Court, Frederick MD  21704\r\n</p>\";s:6:\"teaser\";s:569:\"<h2>Internet Resources</h2>\r\n \r\nFrom the Database of State Incentives for Renewables and Efficiency (DSIRE.org):\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/statesearch2.cfm?State=US&back=fintab&CurrentPageID=7&Search=TableState&EE=1&RE=1\">Federal Incentives for Solar PV</a>\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&State=MD&RE=1&EE=1\">Maryland Incentives for Solar PV</a>\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&State=DC&RE=1&EE=1\">District of Columbia Incentives for Solar PV</a>\r\n\r\";s:3:\"log\";N;s:18:\"revision_timestamp\";s:10:\"1285684275\";s:6:\"format\";s:1:\"2\";s:4:\"name\";s:5:\"admin\";s:7:\"picture\";s:0:\"\";s:4:\"data\";s:6:\"a:0:{}\";s:4:\"path\";s:9:\"resources\";s:22:\"last_comment_timestamp\";s:10:\"1265202538\";s:17:\"last_comment_name\";N;s:13:\"comment_count\";s:1:\"0\";s:8:\"taxonomy\";a:0:{}s:4:\"date\";s:25:\"2010-02-03 21:08:58 +0800\";s:8:\"revision\";b:0;s:4:\"menu\";a:48:{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:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:3:\"fit\";s:1:\"2\";s:12:\"number_parts\";s:1:\"2\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:9:\"resources\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:4:\"type\";s:1:\"4\";s:14:\"block_callback\";s:0:\"\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"0\";s:4:\"file\";s:0:\"\";s:9:\"menu_name\";s:14:\"menu-main-menu\";s:4:\"mlid\";s:3:\"284\";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:9:\"resources\";s:7:\"options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:9:\"resources\";}}s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"284\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:4:\"href\";s:6:\"node/4\";s:6:\"access\";b:1;s:17:\"localized_options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:9:\"resources\";}}s:18:\"parent_depth_limit\";i:8;}s:22:\"pathauto_perform_alias\";b:1;}s:20:\"revision_information\";a:7:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:20:\"Revision information\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:7:\"#weight\";i:20;s:8:\"revision\";a:4:{s:7:\"#access\";b:1;s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:19:\"Create new revision\";s:14:\"#default_value\";b:0;}s:3:\"log\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:11:\"Log message\";s:14:\"#default_value\";s:0:\"\";s:5:\"#rows\";i:2;s:12:\"#description\";s:104:\"An explanation of the additions or updates being made to help other authors understand your motivations.\";}}s:6:\"author\";a:8:{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:7:\"#weight\";i:20;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:35:\"Leave blank for <em>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:91:\"Format: <em>2010-02-03 21:08:58 +0800</em>. Leave blank to use the time of form submission.\";s:14:\"#default_value\";s:25:\"2010-02-03 21:08:58 +0800\";}}s:7:\"options\";a:9:{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:7:\"#weight\";i:25;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:\"buttons\";a:3:{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:16:\"node_form_submit\";}}s:7:\"preview\";a:4:{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:6:\"#theme\";a:2:{i:0;s:14:\"page_node_form\";i:1;s:9:\"node_form\";}s:11:\"#parameters\";a:3:{i:0;s:14:\"page_node_form\";i:1;a:3:{s:7:\"storage\";N;s:9:\"submitted\";b:0;s:4:\"post\";a:0:{}}i:2;r:83;}s:9:\"#build_id\";s:37:\"form-7874292713766db637c4b05056d27ee6\";s:5:\"#type\";s:4:\"form\";s:11:\"#programmed\";b:0;s:13:\"form_build_id\";a:4:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:37:\"form-7874292713766db637c4b05056d27ee6\";s:3:\"#id\";s:37:\"form-7874292713766db637c4b05056d27ee6\";s:5:\"#name\";s:13:\"form_build_id\";}s:6:\"#token\";s:14:\"page_node_form\";s:10:\"form_token\";a:3:{s:3:\"#id\";s:30:\"edit-page-node-form-form-token\";s:5:\"#type\";s:5:\"token\";s:14:\"#default_value\";s:32:\"69ee9cfa6b6366390575effcb3429c15\";}s:7:\"form_id\";a:3:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:14:\"page_node_form\";s:3:\"#id\";s:19:\"edit-page-node-form\";}s:12:\"#description\";N;s:11:\"#attributes\";a:0:{}s:9:\"#required\";b:0;s:5:\"#tree\";b:0;s:8:\"#parents\";a:0:{}s:7:\"#method\";s:4:\"post\";s:7:\"#action\";s:27:\"/~uspvinc/main2/node/4/edit\";s:16:\"comment_settings\";a:7:{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:7:\"#weight\";i:30;s:7:\"comment\";a:4:{s:5:\"#type\";s:6:\"radios\";s:8:\"#parents\";a:1:{i:0;s:7:\"comment\";}s:14:\"#default_value\";s:1:\"0\";s:8:\"#options\";a:3:{i:0;s:8:\"Disabled\";i:1;s:9:\"Read only\";i:2;s:10:\"Read/Write\";}}}s:6:\"#cache\";b:1;s:4:\"menu\";a:21:{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:5:\"#tree\";b:1;s:7:\"#weight\";i:-2;s:11:\"#attributes\";a:1:{s:5:\"class\";s:14:\"menu-item-form\";}s:6:\"delete\";a:2:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:22:\"Delete this menu item.\";}s:4:\"mlid\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:3:\"284\";}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\";s:1:\"1\";}s:7:\"options\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:9:\"resources\";}}}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:5:\"#item\";a:48:{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:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:3:\"fit\";s:1:\"2\";s:12:\"number_parts\";s:1:\"2\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:9:\"resources\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:4:\"type\";s:1:\"4\";s:14:\"block_callback\";s:0:\"\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"0\";s:4:\"file\";s:0:\"\";s:9:\"menu_name\";s:14:\"menu-main-menu\";s:4:\"mlid\";s:3:\"284\";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:9:\"resources\";s:7:\"options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:9:\"resources\";}}s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"284\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:4:\"href\";s:6:\"node/4\";s:6:\"access\";b:1;s:17:\"localized_options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:9:\"resources\";}}s:18:\"parent_depth_limit\";i:8;}s:10:\"link_title\";a:5:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:15:\"Menu link title\";s:14:\"#default_value\";s:9:\"resources\";s:12:\"#description\";s:133:\"The link text corresponding to this item that should appear in the menu. Leave blank if you do not wish to add this post to the menu.\";s:9:\"#required\";b:0;}s:6:\"parent\";a:6:{s:5:\"#type\";s:6:\"select\";s:6:\"#title\";s:11:\"Parent item\";s:14:\"#default_value\";s:16:\"menu-main-menu:0\";s:8:\"#options\";a:95:{s:16:\"menu-main-menu:0\";s:11:\"<Main Menu>\";s:18:\"menu-main-menu:283\";s:8:\"-- about\";s:18:\"menu-main-menu:285\";s:11:\"-- services\";s:18:\"menu-main-menu:286\";s:17:\"-- special offers\";s:12:\"navigation:0\";s:12:\"<Navigation>\";s:12:\"navigation:9\";s:26:\"-- Compose tips (disabled)\";s:14:\"navigation:461\";s:29:\"-- Image galleries (disabled)\";s:13:\"navigation:21\";s:13:\"-- My account\";s:14:\"navigation:114\";s:20:\"-- Search (disabled)\";s:14:\"navigation:244\";s:22:\"-- Site map (disabled)\";s:13:\"navigation:11\";s:17:\"-- Create content\";s:14:\"navigation:476\";s:11:\"---- Banner\";s:14:\"navigation:441\";s:10:\"---- Image\";s:14:\"navigation:289\";s:21:\"---- Newsletter issue\";s:14:\"navigation:106\";s:9:\"---- Page\";s:14:\"navigation:388\";s:10:\"---- Panel\";s:14:\"navigation:107\";s:10:\"---- Story\";s:12:\"navigation:2\";s:13:\"-- Administer\";s:13:\"navigation:10\";s:23:\"---- Content management\";s:13:\"navigation:27\";s:15:\"------ Comments\";s:13:\"navigation:28\";s:14:\"------ Content\";s:13:\"navigation:29\";s:20:\"------ Content types\";s:14:\"navigation:462\";s:22:\"------ Image galleries\";s:14:\"navigation:463\";s:19:\"------ Image import\";s:14:\"navigation:538\";s:18:\"------ Newsletters\";s:14:\"navigation:546\";s:20:\"-------- Sent issues\";s:14:\"navigation:541\";s:21:\"-------- Draft issues\";s:14:\"navigation:544\";s:20:\"-------- Newsletters\";s:14:\"navigation:548\";s:22:\"-------- Subscriptions\";s:13:\"navigation:42\";s:20:\"------ Post settings\";s:13:\"navigation:43\";s:21:\"------ RSS publishing\";s:13:\"navigation:94\";s:15:\"------ Taxonomy\";s:13:\"navigation:17\";s:18:\"---- Site building\";s:13:\"navigation:25\";s:13:\"------ Blocks\";s:14:\"navigation:424\";s:20:\"------ Bulk Exporter\";s:13:\"navigation:38\";s:12:\"------ Menus\";s:14:\"navigation:282\";s:18:\"-------- Main Menu\";s:13:\"navigation:89\";s:19:\"-------- Navigation\";s:13:\"navigation:90\";s:22:\"-------- Primary links\";s:14:\"navigation:495\";s:19:\"-------- Right Menu\";s:13:\"navigation:91\";s:24:\"-------- Secondary links\";s:14:\"navigation:387\";s:18:\"------ Mini panels\";s:13:\"navigation:39\";s:14:\"------ Modules\";s:14:\"navigation:412\";s:12:\"------ Pages\";s:14:\"navigation:360\";s:13:\"------ Panels\";s:13:\"navigation:49\";s:13:\"------ Themes\";s:14:\"navigation:335\";s:15:\"------ Triggers\";s:14:\"navigation:501\";s:18:\"------ URL aliases\";s:14:\"navigation:257\";s:12:\"------ Views\";s:13:\"navigation:18\";s:23:\"---- Site configuration\";s:13:\"navigation:23\";s:14:\"------ Actions\";s:14:\"navigation:119\";s:26:\"------ Administration menu\";s:13:\"navigation:24\";s:27:\"------ Administration theme\";s:13:\"navigation:26\";s:17:\"------ Clean URLs\";s:13:\"navigation:30\";s:20:\"------ Date and time\";s:13:\"navigation:33\";s:22:\"------ Error reporting\";s:13:\"navigation:34\";s:18:\"------ File system\";s:13:\"navigation:35\";s:20:\"------ Image toolkit\";s:14:\"navigation:442\";s:13:\"------ Images\";s:13:\"navigation:36\";s:20:\"------ Input formats\";s:13:\"navigation:37\";s:25:\"------ Logging and alerts\";s:14:\"navigation:100\";s:25:\"-------- Database logging\";s:14:\"navigation:245\";s:17:\"------ Nice Menus\";s:13:\"navigation:40\";s:18:\"------ Performance\";s:14:\"navigation:120\";s:22:\"------ Search settings\";s:14:\"navigation:539\";s:17:\"------ Simplenews\";s:14:\"navigation:542\";s:16:\"-------- General\";s:14:\"navigation:543\";s:19:\"-------- Newsletter\";s:14:\"navigation:547\";s:21:\"-------- Subscription\";s:14:\"navigation:545\";s:18:\"-------- Send mail\";s:13:\"navigation:46\";s:23:\"------ Site information\";s:13:\"navigation:47\";s:23:\"------ Site maintenance\";s:14:\"navigation:246\";s:15:\"------ Site map\";s:13:\"navigation:20\";s:20:\"---- User management\";s:13:\"navigation:22\";s:19:\"------ Access rules\";s:13:\"navigation:41\";s:18:\"------ Permissions\";s:13:\"navigation:45\";s:12:\"------ Roles\";s:13:\"navigation:50\";s:20:\"------ User settings\";s:13:\"navigation:51\";s:12:\"------ Users\";s:13:\"navigation:16\";s:12:\"---- Reports\";s:13:\"navigation:93\";s:25:\"------ Recent log entries\";s:13:\"navigation:96\";s:33:\"------ Top \'access denied\' errors\";s:13:\"navigation:97\";s:34:\"------ Top \'page not found\' errors\";s:14:\"navigation:121\";s:25:\"------ Top search phrases\";s:14:\"navigation:105\";s:24:\"------ Available updates\";s:13:\"navigation:48\";s:20:\"------ Status report\";s:13:\"navigation:15\";s:9:\"---- Help\";s:12:\"navigation:4\";s:10:\"-- Log out\";s:15:\"primary-links:0\";s:15:\"<Primary links>\";s:17:\"menu-right-menu:0\";s:12:\"<Right Menu>\";s:19:\"menu-right-menu:496\";s:28:\"-- Financial Calculator Tool\";s:19:\"menu-right-menu:497\";s:21:\"-- News Story Library\";s:19:\"menu-right-menu:498\";s:14:\"-- Latest News\";s:19:\"menu-right-menu:499\";s:25:\"-- SREC Management Portal\";s:17:\"secondary-links:0\";s:17:\"<Secondary links>\";}s:12:\"#description\";s:156:\"The maximum depth for an item and all its children is fixed at 9. Some menu items may not be available as parents if selecting them would exceed this limit.\";s:11:\"#attributes\";a:1:{s:5:\"class\";s:17:\"menu-title-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:1:\"0\";s:12:\"#description\";s:107:\"Optional. In the menu, the heavier items will sink and the lighter items will be positioned nearer the top.\";}}s:7:\"#submit\";a:1:{i:0;s:21:\"menu_node_form_submit\";}s:4:\"path\";a:10:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:17:\"URL path settings\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:0;s:7:\"#access\";b:1;s:7:\"#weight\";i:30;s:4:\"path\";a:6:{s:5:\"#type\";s:9:\"textfield\";s:14:\"#default_value\";s:9:\"resources\";s:10:\"#maxlength\";i:128;s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:12:\"#description\";s:207:\"Optionally specify an alternative URL by which this node 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\";s:1:\"4\";}s:22:\"pathauto_perform_alias\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:15:\"Automatic alias\";s:14:\"#default_value\";b:1;s:12:\"#description\";s:238:\"An alias will be generated for you. If you wish to create your own alias below, uncheck this option. To control the format of the generated aliases, see the <a href=\"/~uspvinc/main2/admin/build/path/pathauto\">automated alias settings</a>.\";s:7:\"#weight\";i:-1;}s:9:\"old_alias\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:9:\"resources\";}}s:11:\"#pre_render\";a:1:{i:0;s:27:\"content_alter_extra_weights\";}s:21:\"#content_extra_fields\";a:6:{s:5:\"title\";a:3:{s:5:\"label\";s:5:\"Title\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:-5;}s:10:\"body_field\";a:4:{s:5:\"label\";s:4:\"Body\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:0;s:4:\"view\";s:4:\"body\";}s:20:\"revision_information\";a:3:{s:5:\"label\";s:20:\"Revision information\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:20;}s:16:\"comment_settings\";a:3:{s:5:\"label\";s:16:\"Comment settings\";s:11:\"description\";s:20:\"Comment module form.\";s:6:\"weight\";i:30;}s:4:\"menu\";a:3:{s:5:\"label\";s:13:\"Menu settings\";s:11:\"description\";s:17:\"Menu module form.\";s:6:\"weight\";i:-2;}s:4:\"path\";a:3:{s:5:\"label\";s:13:\"Path settings\";s:11:\"description\";s:17:\"Path module form.\";s:6:\"weight\";i:30;}}s:12:\"#cache_token\";s:32:\"ea05954e6208c2bed552f97e30d1dad3\";}',1285707104,1285685504,'',1),('form_form-34a2e0514ce67ccd04f44d3ded163a62','a:40:{s:3:\"#id\";s:9:\"node-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:\"1265202538\";}s:4:\"type\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:4:\"page\";}s:8:\"language\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:0:\"\";}s:7:\"changed\";a:2:{s:5:\"#type\";s:6:\"hidden\";s:14:\"#default_value\";s:10:\"1285684275\";}s:5:\"title\";a:6:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:5:\"Title\";s:9:\"#required\";b:1;s:14:\"#default_value\";s:9:\"resources\";s:10:\"#maxlength\";i:255;s:7:\"#weight\";i:-5;}s:10:\"body_field\";a:7:{s:12:\"#after_build\";a:2:{i:0;s:14:\"node_teaser_js\";i:1;s:26:\"node_teaser_include_verify\";}s:7:\"#prefix\";s:32:\"<div class=\"body-field-wrapper\">\";s:7:\"#suffix\";s:6:\"</div>\";s:9:\"teaser_js\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:5:\"#rows\";i:10;s:7:\"#teaser\";s:9:\"edit-body\";s:16:\"#teaser_checkbox\";s:19:\"edit-teaser-include\";s:9:\"#disabled\";b:1;}s:14:\"teaser_include\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:25:\"Show summary in full view\";s:14:\"#default_value\";b:1;s:7:\"#prefix\";s:29:\"<div class=\"teaser-checkbox\">\";s:7:\"#suffix\";s:6:\"</div>\";}s:4:\"body\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:4:\"Body\";s:14:\"#default_value\";s:1102:\"<h2>Internet Resources</h2>\r\n \r\nFrom the Database of State Incentives for Renewables and Efficiency (DSIRE.org):\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/statesearch2.cfm?State=US&back=fintab&CurrentPageID=7&Search=TableState&EE=1&RE=1\">Federal Incentives for Solar PV</a>\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&State=MD&RE=1&EE=1\">Maryland Incentives for Solar PV</a>\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&State=DC&RE=1&EE=1\">District of Columbia Incentives for Solar PV</a>\r\n\r\n<h2>Industry Organizations</h2>\r\n\r\n<a href=\"http://www.ases.org/\">American Solar Energy Society</a>   Professional Member\r\n\r\n<a href=\"http://www.mdv-seia.org/\">Maryland-DC-Virginia Solar Energy Industries Association</a>   Professional Member\r\n  \r\n<h2>Contact Us</h2>\r\n<p>\r\nTelephone: 240-344-2657\r\n</p>\r\n<p>\r\nEmail:\r\n\r\n          Sales: sales@uspvinc.com\r\n\r\n          Customer Service: support@uspvinc.com\r\n\r\n          Other Inquiries:  info@uspvinc.com\r\n</p>\r\n<p>\r\nPostal Address: 4539 Metropolitan Court, Frederick MD  21704\r\n</p>\";s:5:\"#rows\";i:20;s:9:\"#required\";b:0;}s:6:\"format\";a:9:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:12:\"Input format\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:7:\"#weight\";N;s:17:\"#element_validate\";a:1:{i:0;s:20:\"filter_form_validate\";}i:1;a:7:{s:5:\"#type\";s:5:\"radio\";s:6:\"#title\";s:13:\"Filtered HTML\";s:14:\"#default_value\";s:1:\"2\";s:13:\"#return_value\";s:1:\"1\";s:8:\"#parents\";a:1:{i:0;s:6:\"format\";}s:12:\"#description\";s:306:\"<ul class=\"tips\"><li>Web page addresses and e-mail addresses turn into links automatically.</li><li>Allowed HTML tags: &lt;a&gt; &lt;em&gt; &lt;strong&gt; &lt;cite&gt; &lt;code&gt; &lt;ul&gt; &lt;ol&gt; &lt;li&gt; &lt;dl&gt; &lt;dt&gt; &lt;dd&gt;</li><li>Lines and paragraphs break automatically.</li></ul>\";s:3:\"#id\";s:13:\"edit-format-1\";}i:2;a:7:{s:5:\"#type\";s:5:\"radio\";s:6:\"#title\";s:9:\"Full HTML\";s:14:\"#default_value\";s:1:\"2\";s:13:\"#return_value\";s:1:\"2\";s:8:\"#parents\";a:1:{i:0;s:6:\"format\";}s:12:\"#description\";s:151:\"<ul class=\"tips\"><li>Web page addresses and e-mail addresses turn into links automatically.</li><li>Lines and paragraphs break automatically.</li></ul>\";s:3:\"#id\";s:13:\"edit-format-2\";}i:3;a:1:{s:6:\"#value\";s:90:\"<p><a href=\"/~uspvinc/main2/filter/tips\">More information about formatting options</a></p>\";}}}s:5:\"#node\";O:8:\"stdClass\":33:{s:3:\"nid\";s:1:\"4\";s:4:\"type\";s:4:\"page\";s:8:\"language\";s:0:\"\";s:3:\"uid\";s:1:\"1\";s:6:\"status\";s:1:\"1\";s:7:\"created\";s:10:\"1265202538\";s:7:\"changed\";s:10:\"1285684275\";s:7:\"comment\";s:1:\"0\";s:7:\"promote\";s:1:\"0\";s:8:\"moderate\";s:1:\"0\";s:6:\"sticky\";s:1:\"0\";s:4:\"tnid\";s:1:\"0\";s:9:\"translate\";s:1:\"0\";s:3:\"vid\";s:1:\"4\";s:12:\"revision_uid\";s:1:\"1\";s:5:\"title\";s:9:\"resources\";s:4:\"body\";s:1102:\"<h2>Internet Resources</h2>\r\n \r\nFrom the Database of State Incentives for Renewables and Efficiency (DSIRE.org):\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/statesearch2.cfm?State=US&back=fintab&CurrentPageID=7&Search=TableState&EE=1&RE=1\">Federal Incentives for Solar PV</a>\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&State=MD&RE=1&EE=1\">Maryland Incentives for Solar PV</a>\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&State=DC&RE=1&EE=1\">District of Columbia Incentives for Solar PV</a>\r\n\r\n<h2>Industry Organizations</h2>\r\n\r\n<a href=\"http://www.ases.org/\">American Solar Energy Society</a>   Professional Member\r\n\r\n<a href=\"http://www.mdv-seia.org/\">Maryland-DC-Virginia Solar Energy Industries Association</a>   Professional Member\r\n  \r\n<h2>Contact Us</h2>\r\n<p>\r\nTelephone: 240-344-2657\r\n</p>\r\n<p>\r\nEmail:\r\n\r\n          Sales: sales@uspvinc.com\r\n\r\n          Customer Service: support@uspvinc.com\r\n\r\n          Other Inquiries:  info@uspvinc.com\r\n</p>\r\n<p>\r\nPostal Address: 4539 Metropolitan Court, Frederick MD  21704\r\n</p>\";s:6:\"teaser\";s:569:\"<h2>Internet Resources</h2>\r\n \r\nFrom the Database of State Incentives for Renewables and Efficiency (DSIRE.org):\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/statesearch2.cfm?State=US&back=fintab&CurrentPageID=7&Search=TableState&EE=1&RE=1\">Federal Incentives for Solar PV</a>\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&State=MD&RE=1&EE=1\">Maryland Incentives for Solar PV</a>\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&State=DC&RE=1&EE=1\">District of Columbia Incentives for Solar PV</a>\r\n\r\";s:3:\"log\";N;s:18:\"revision_timestamp\";s:10:\"1285684275\";s:6:\"format\";s:1:\"2\";s:4:\"name\";s:5:\"admin\";s:7:\"picture\";s:0:\"\";s:4:\"data\";s:6:\"a:0:{}\";s:4:\"path\";s:9:\"resources\";s:22:\"last_comment_timestamp\";s:10:\"1265202538\";s:17:\"last_comment_name\";N;s:13:\"comment_count\";s:1:\"0\";s:8:\"taxonomy\";a:0:{}s:4:\"date\";s:25:\"2010-02-03 21:08:58 +0800\";s:8:\"revision\";b:0;s:4:\"menu\";a:48:{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:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:3:\"fit\";s:1:\"2\";s:12:\"number_parts\";s:1:\"2\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:9:\"resources\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:4:\"type\";s:1:\"4\";s:14:\"block_callback\";s:0:\"\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"0\";s:4:\"file\";s:0:\"\";s:9:\"menu_name\";s:14:\"menu-main-menu\";s:4:\"mlid\";s:3:\"284\";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:9:\"resources\";s:7:\"options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:9:\"resources\";}}s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"284\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:4:\"href\";s:6:\"node/4\";s:6:\"access\";b:1;s:17:\"localized_options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:9:\"resources\";}}s:18:\"parent_depth_limit\";i:8;}s:22:\"pathauto_perform_alias\";b:1;}s:20:\"revision_information\";a:7:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:20:\"Revision information\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:7:\"#weight\";i:20;s:8:\"revision\";a:4:{s:7:\"#access\";b:1;s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:19:\"Create new revision\";s:14:\"#default_value\";b:0;}s:3:\"log\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:11:\"Log message\";s:14:\"#default_value\";s:0:\"\";s:5:\"#rows\";i:2;s:12:\"#description\";s:104:\"An explanation of the additions or updates being made to help other authors understand your motivations.\";}}s:6:\"author\";a:8:{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:7:\"#weight\";i:20;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:35:\"Leave blank for <em>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:91:\"Format: <em>2010-02-03 21:08:58 +0800</em>. Leave blank to use the time of form submission.\";s:14:\"#default_value\";s:25:\"2010-02-03 21:08:58 +0800\";}}s:7:\"options\";a:9:{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:7:\"#weight\";i:25;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:\"buttons\";a:3:{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:16:\"node_form_submit\";}}s:7:\"preview\";a:4:{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:6:\"#theme\";a:2:{i:0;s:14:\"page_node_form\";i:1;s:9:\"node_form\";}s:11:\"#parameters\";a:3:{i:0;s:14:\"page_node_form\";i:1;a:3:{s:7:\"storage\";N;s:9:\"submitted\";b:0;s:4:\"post\";a:0:{}}i:2;r:83;}s:9:\"#build_id\";s:37:\"form-34a2e0514ce67ccd04f44d3ded163a62\";s:5:\"#type\";s:4:\"form\";s:11:\"#programmed\";b:0;s:13:\"form_build_id\";a:4:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:37:\"form-34a2e0514ce67ccd04f44d3ded163a62\";s:3:\"#id\";s:37:\"form-34a2e0514ce67ccd04f44d3ded163a62\";s:5:\"#name\";s:13:\"form_build_id\";}s:6:\"#token\";s:14:\"page_node_form\";s:10:\"form_token\";a:3:{s:3:\"#id\";s:30:\"edit-page-node-form-form-token\";s:5:\"#type\";s:5:\"token\";s:14:\"#default_value\";s:32:\"69ee9cfa6b6366390575effcb3429c15\";}s:7:\"form_id\";a:3:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:14:\"page_node_form\";s:3:\"#id\";s:19:\"edit-page-node-form\";}s:12:\"#description\";N;s:11:\"#attributes\";a:0:{}s:9:\"#required\";b:0;s:5:\"#tree\";b:0;s:8:\"#parents\";a:0:{}s:7:\"#method\";s:4:\"post\";s:7:\"#action\";s:27:\"/~uspvinc/main2/node/4/edit\";s:16:\"comment_settings\";a:7:{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:7:\"#weight\";i:30;s:7:\"comment\";a:4:{s:5:\"#type\";s:6:\"radios\";s:8:\"#parents\";a:1:{i:0;s:7:\"comment\";}s:14:\"#default_value\";s:1:\"0\";s:8:\"#options\";a:3:{i:0;s:8:\"Disabled\";i:1;s:9:\"Read only\";i:2;s:10:\"Read/Write\";}}}s:6:\"#cache\";b:1;s:4:\"menu\";a:21:{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:5:\"#tree\";b:1;s:7:\"#weight\";i:-2;s:11:\"#attributes\";a:1:{s:5:\"class\";s:14:\"menu-item-form\";}s:6:\"delete\";a:2:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:22:\"Delete this menu item.\";}s:4:\"mlid\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:3:\"284\";}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\";s:1:\"1\";}s:7:\"options\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:9:\"resources\";}}}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:5:\"#item\";a:48:{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:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:3:\"fit\";s:1:\"2\";s:12:\"number_parts\";s:1:\"2\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:9:\"resources\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:4:\"type\";s:1:\"4\";s:14:\"block_callback\";s:0:\"\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"0\";s:4:\"file\";s:0:\"\";s:9:\"menu_name\";s:14:\"menu-main-menu\";s:4:\"mlid\";s:3:\"284\";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:9:\"resources\";s:7:\"options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:9:\"resources\";}}s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"284\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:4:\"href\";s:6:\"node/4\";s:6:\"access\";b:1;s:17:\"localized_options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:9:\"resources\";}}s:18:\"parent_depth_limit\";i:8;}s:10:\"link_title\";a:5:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:15:\"Menu link title\";s:14:\"#default_value\";s:9:\"resources\";s:12:\"#description\";s:133:\"The link text corresponding to this item that should appear in the menu. Leave blank if you do not wish to add this post to the menu.\";s:9:\"#required\";b:0;}s:6:\"parent\";a:6:{s:5:\"#type\";s:6:\"select\";s:6:\"#title\";s:11:\"Parent item\";s:14:\"#default_value\";s:16:\"menu-main-menu:0\";s:8:\"#options\";a:95:{s:16:\"menu-main-menu:0\";s:11:\"<Main Menu>\";s:18:\"menu-main-menu:283\";s:8:\"-- about\";s:18:\"menu-main-menu:285\";s:11:\"-- services\";s:18:\"menu-main-menu:286\";s:17:\"-- special offers\";s:12:\"navigation:0\";s:12:\"<Navigation>\";s:12:\"navigation:9\";s:26:\"-- Compose tips (disabled)\";s:14:\"navigation:461\";s:29:\"-- Image galleries (disabled)\";s:13:\"navigation:21\";s:13:\"-- My account\";s:14:\"navigation:114\";s:20:\"-- Search (disabled)\";s:14:\"navigation:244\";s:22:\"-- Site map (disabled)\";s:13:\"navigation:11\";s:17:\"-- Create content\";s:14:\"navigation:476\";s:11:\"---- Banner\";s:14:\"navigation:441\";s:10:\"---- Image\";s:14:\"navigation:289\";s:21:\"---- Newsletter issue\";s:14:\"navigation:106\";s:9:\"---- Page\";s:14:\"navigation:388\";s:10:\"---- Panel\";s:14:\"navigation:107\";s:10:\"---- Story\";s:12:\"navigation:2\";s:13:\"-- Administer\";s:13:\"navigation:10\";s:23:\"---- Content management\";s:13:\"navigation:27\";s:15:\"------ Comments\";s:13:\"navigation:28\";s:14:\"------ Content\";s:13:\"navigation:29\";s:20:\"------ Content types\";s:14:\"navigation:462\";s:22:\"------ Image galleries\";s:14:\"navigation:463\";s:19:\"------ Image import\";s:14:\"navigation:538\";s:18:\"------ Newsletters\";s:14:\"navigation:546\";s:20:\"-------- Sent issues\";s:14:\"navigation:541\";s:21:\"-------- Draft issues\";s:14:\"navigation:544\";s:20:\"-------- Newsletters\";s:14:\"navigation:548\";s:22:\"-------- Subscriptions\";s:13:\"navigation:42\";s:20:\"------ Post settings\";s:13:\"navigation:43\";s:21:\"------ RSS publishing\";s:13:\"navigation:94\";s:15:\"------ Taxonomy\";s:13:\"navigation:17\";s:18:\"---- Site building\";s:13:\"navigation:25\";s:13:\"------ Blocks\";s:14:\"navigation:424\";s:20:\"------ Bulk Exporter\";s:13:\"navigation:38\";s:12:\"------ Menus\";s:14:\"navigation:282\";s:18:\"-------- Main Menu\";s:13:\"navigation:89\";s:19:\"-------- Navigation\";s:13:\"navigation:90\";s:22:\"-------- Primary links\";s:14:\"navigation:495\";s:19:\"-------- Right Menu\";s:13:\"navigation:91\";s:24:\"-------- Secondary links\";s:14:\"navigation:387\";s:18:\"------ Mini panels\";s:13:\"navigation:39\";s:14:\"------ Modules\";s:14:\"navigation:412\";s:12:\"------ Pages\";s:14:\"navigation:360\";s:13:\"------ Panels\";s:13:\"navigation:49\";s:13:\"------ Themes\";s:14:\"navigation:335\";s:15:\"------ Triggers\";s:14:\"navigation:501\";s:18:\"------ URL aliases\";s:14:\"navigation:257\";s:12:\"------ Views\";s:13:\"navigation:18\";s:23:\"---- Site configuration\";s:13:\"navigation:23\";s:14:\"------ Actions\";s:14:\"navigation:119\";s:26:\"------ Administration menu\";s:13:\"navigation:24\";s:27:\"------ Administration theme\";s:13:\"navigation:26\";s:17:\"------ Clean URLs\";s:13:\"navigation:30\";s:20:\"------ Date and time\";s:13:\"navigation:33\";s:22:\"------ Error reporting\";s:13:\"navigation:34\";s:18:\"------ File system\";s:13:\"navigation:35\";s:20:\"------ Image toolkit\";s:14:\"navigation:442\";s:13:\"------ Images\";s:13:\"navigation:36\";s:20:\"------ Input formats\";s:13:\"navigation:37\";s:25:\"------ Logging and alerts\";s:14:\"navigation:100\";s:25:\"-------- Database logging\";s:14:\"navigation:245\";s:17:\"------ Nice Menus\";s:13:\"navigation:40\";s:18:\"------ Performance\";s:14:\"navigation:120\";s:22:\"------ Search settings\";s:14:\"navigation:539\";s:17:\"------ Simplenews\";s:14:\"navigation:542\";s:16:\"-------- General\";s:14:\"navigation:543\";s:19:\"-------- Newsletter\";s:14:\"navigation:547\";s:21:\"-------- Subscription\";s:14:\"navigation:545\";s:18:\"-------- Send mail\";s:13:\"navigation:46\";s:23:\"------ Site information\";s:13:\"navigation:47\";s:23:\"------ Site maintenance\";s:14:\"navigation:246\";s:15:\"------ Site map\";s:13:\"navigation:20\";s:20:\"---- User management\";s:13:\"navigation:22\";s:19:\"------ Access rules\";s:13:\"navigation:41\";s:18:\"------ Permissions\";s:13:\"navigation:45\";s:12:\"------ Roles\";s:13:\"navigation:50\";s:20:\"------ User settings\";s:13:\"navigation:51\";s:12:\"------ Users\";s:13:\"navigation:16\";s:12:\"---- Reports\";s:13:\"navigation:93\";s:25:\"------ Recent log entries\";s:13:\"navigation:96\";s:33:\"------ Top \'access denied\' errors\";s:13:\"navigation:97\";s:34:\"------ Top \'page not found\' errors\";s:14:\"navigation:121\";s:25:\"------ Top search phrases\";s:14:\"navigation:105\";s:24:\"------ Available updates\";s:13:\"navigation:48\";s:20:\"------ Status report\";s:13:\"navigation:15\";s:9:\"---- Help\";s:12:\"navigation:4\";s:10:\"-- Log out\";s:15:\"primary-links:0\";s:15:\"<Primary links>\";s:17:\"menu-right-menu:0\";s:12:\"<Right Menu>\";s:19:\"menu-right-menu:496\";s:28:\"-- Financial Calculator Tool\";s:19:\"menu-right-menu:497\";s:21:\"-- News Story Library\";s:19:\"menu-right-menu:498\";s:14:\"-- Latest News\";s:19:\"menu-right-menu:499\";s:25:\"-- SREC Management Portal\";s:17:\"secondary-links:0\";s:17:\"<Secondary links>\";}s:12:\"#description\";s:156:\"The maximum depth for an item and all its children is fixed at 9. Some menu items may not be available as parents if selecting them would exceed this limit.\";s:11:\"#attributes\";a:1:{s:5:\"class\";s:17:\"menu-title-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:1:\"0\";s:12:\"#description\";s:107:\"Optional. In the menu, the heavier items will sink and the lighter items will be positioned nearer the top.\";}}s:7:\"#submit\";a:1:{i:0;s:21:\"menu_node_form_submit\";}s:4:\"path\";a:10:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:17:\"URL path settings\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:0;s:7:\"#access\";b:1;s:7:\"#weight\";i:30;s:4:\"path\";a:6:{s:5:\"#type\";s:9:\"textfield\";s:14:\"#default_value\";s:9:\"resources\";s:10:\"#maxlength\";i:128;s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:12:\"#description\";s:207:\"Optionally specify an alternative URL by which this node 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\";s:1:\"4\";}s:22:\"pathauto_perform_alias\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:15:\"Automatic alias\";s:14:\"#default_value\";b:1;s:12:\"#description\";s:238:\"An alias will be generated for you. If you wish to create your own alias below, uncheck this option. To control the format of the generated aliases, see the <a href=\"/~uspvinc/main2/admin/build/path/pathauto\">automated alias settings</a>.\";s:7:\"#weight\";i:-1;}s:9:\"old_alias\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:9:\"resources\";}}s:11:\"#pre_render\";a:1:{i:0;s:27:\"content_alter_extra_weights\";}s:21:\"#content_extra_fields\";a:6:{s:5:\"title\";a:3:{s:5:\"label\";s:5:\"Title\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:-5;}s:10:\"body_field\";a:4:{s:5:\"label\";s:4:\"Body\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:0;s:4:\"view\";s:4:\"body\";}s:20:\"revision_information\";a:3:{s:5:\"label\";s:20:\"Revision information\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:20;}s:16:\"comment_settings\";a:3:{s:5:\"label\";s:16:\"Comment settings\";s:11:\"description\";s:20:\"Comment module form.\";s:6:\"weight\";i:30;}s:4:\"menu\";a:3:{s:5:\"label\";s:13:\"Menu settings\";s:11:\"description\";s:17:\"Menu module form.\";s:6:\"weight\";i:-2;}s:4:\"path\";a:3:{s:5:\"label\";s:13:\"Path settings\";s:11:\"description\";s:17:\"Path module form.\";s:6:\"weight\";i:30;}}s:12:\"#cache_token\";s:32:\"ea05954e6208c2bed552f97e30d1dad3\";}',1285707266,1285685666,'',1),('form_form-ff2b04945757c26982bb1174d571b2e7','a:44:{s:3:\"#id\";s:9:\"node-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:1285686733;}s:4:\"type\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:5:\"image\";}s:8:\"language\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:0:\"\";}s:7:\"changed\";a:2:{s:5:\"#type\";s:6:\"hidden\";s:14:\"#default_value\";N;}s:9:\"#validate\";a:2:{i:0;s:19:\"image_form_validate\";i:1;s:18:\"node_form_validate\";}s:7:\"#submit\";a:2:{i:0;s:17:\"image_form_submit\";i:1;s:21:\"menu_node_form_submit\";}s:5:\"title\";a:7:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:5:\"Title\";s:5:\"#size\";i:60;s:10:\"#maxlength\";i:128;s:9:\"#required\";b:1;s:14:\"#default_value\";N;s:7:\"#weight\";i:-5;}s:6:\"images\";a:4:{s:5:\"#tree\";b:1;s:9:\"_original\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:0:\"\";}s:9:\"thumbnail\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:0:\"\";}s:7:\"preview\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:0:\"\";}}s:8:\"new_file\";a:2:{s:5:\"#type\";s:5:\"value\";s:14:\"#default_value\";b:0;}s:11:\"#attributes\";a:1:{s:7:\"enctype\";s:19:\"multipart/form-data\";}s:5:\"image\";a:5:{s:7:\"#prefix\";s:33:\"<div class=\"image-field-wrapper\">\";s:7:\"#suffix\";s:6:\"</div>\";s:9:\"thumbnail\";a:2:{s:5:\"#type\";s:4:\"item\";s:12:\"#after_build\";a:1:{i:0;s:24:\"image_form_add_thumbnail\";}}s:5:\"image\";a:4:{s:5:\"#type\";s:4:\"file\";s:6:\"#title\";s:5:\"Image\";s:5:\"#size\";i:40;s:12:\"#description\";s:26:\"Select an image to upload.\";}s:14:\"rebuild_images\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:25:\"Rebuild derivative images\";s:14:\"#default_value\";b:0;s:12:\"#description\";s:58:\"Check this to rebuild the derivative images for this node.\";s:7:\"#access\";b:0;}}s:10:\"body_field\";a:7:{s:12:\"#after_build\";a:2:{i:0;s:14:\"node_teaser_js\";i:1;s:26:\"node_teaser_include_verify\";}s:7:\"#prefix\";s:32:\"<div class=\"body-field-wrapper\">\";s:7:\"#suffix\";s:6:\"</div>\";s:9:\"teaser_js\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:5:\"#rows\";i:10;s:7:\"#teaser\";s:9:\"edit-body\";s:16:\"#teaser_checkbox\";s:19:\"edit-teaser-include\";s:9:\"#disabled\";b:1;}s:14:\"teaser_include\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:25:\"Show summary in full view\";s:14:\"#default_value\";b:1;s:7:\"#prefix\";s:29:\"<div class=\"teaser-checkbox\">\";s:7:\"#suffix\";s:6:\"</div>\";}s:4:\"body\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:4:\"Body\";s:14:\"#default_value\";N;s:5:\"#rows\";i:20;s:9:\"#required\";b:0;}s:6:\"format\";a:9:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:12:\"Input format\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:7:\"#weight\";N;s:17:\"#element_validate\";a:1:{i:0;s:20:\"filter_form_validate\";}i:1;a:7:{s:5:\"#type\";s:5:\"radio\";s:6:\"#title\";s:13:\"Filtered HTML\";s:14:\"#default_value\";i:1;s:13:\"#return_value\";s:1:\"1\";s:8:\"#parents\";a:1:{i:0;s:6:\"format\";}s:12:\"#description\";s:306:\"<ul class=\"tips\"><li>Web page addresses and e-mail addresses turn into links automatically.</li><li>Allowed HTML tags: &lt;a&gt; &lt;em&gt; &lt;strong&gt; &lt;cite&gt; &lt;code&gt; &lt;ul&gt; &lt;ol&gt; &lt;li&gt; &lt;dl&gt; &lt;dt&gt; &lt;dd&gt;</li><li>Lines and paragraphs break automatically.</li></ul>\";s:3:\"#id\";s:13:\"edit-format-1\";}i:2;a:7:{s:5:\"#type\";s:5:\"radio\";s:6:\"#title\";s:9:\"Full HTML\";s:14:\"#default_value\";i:1;s:13:\"#return_value\";s:1:\"2\";s:8:\"#parents\";a:1:{i:0;s:6:\"format\";}s:12:\"#description\";s:151:\"<ul class=\"tips\"><li>Web page addresses and e-mail addresses turn into links automatically.</li><li>Lines and paragraphs break automatically.</li></ul>\";s:3:\"#id\";s:13:\"edit-format-2\";}i:3;a:1:{s:6:\"#value\";s:90:\"<p><a href=\"/~uspvinc/main2/filter/tips\">More information about formatting options</a></p>\";}}}s:5:\"#node\";O:8:\"stdClass\":15:{s:3:\"uid\";s:1:\"1\";s:4:\"name\";s:5:\"admin\";s:4:\"type\";s:5:\"image\";s:8:\"language\";s:0:\"\";s:4:\"body\";N;s:5:\"title\";N;s:6:\"format\";N;s:6:\"status\";b:1;s:7:\"promote\";b:0;s:6:\"sticky\";b:0;s:7:\"created\";i:1285686733;s:8:\"revision\";b:0;s:7:\"comment\";i: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:13:\"primary-links\";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:22:\"pathauto_perform_alias\";b:1;}s:20:\"revision_information\";a:7:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:20:\"Revision information\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:7:\"#weight\";i:20;s:8:\"revision\";a:4:{s:7:\"#access\";b:1;s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:19:\"Create new revision\";s:14:\"#default_value\";b:0;}s:3:\"log\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:11:\"Log message\";s:14:\"#default_value\";s:0:\"\";s:5:\"#rows\";i:2;s:12:\"#description\";s:104:\"An explanation of the additions or updates being made to help other authors understand your motivations.\";}}s:6:\"author\";a:8:{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:7:\"#weight\";i:20;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:35:\"Leave blank for <em>Anonymous</em>.\";}s:4:\"date\";a:4:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:11:\"Authored on\";s:10:\"#maxlength\";i:25;s:12:\"#description\";s:91:\"Format: <em>2010-09-28 23:12:13 +0800</em>. Leave blank to use the time of form submission.\";}}s:7:\"options\";a:9:{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:7:\"#weight\";i:25;s:6:\"status\";a:3:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:9:\"Published\";s:14:\"#default_value\";b: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\";b: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\";b:0;}}s:7:\"buttons\";a:2:{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:16:\"node_form_submit\";}}s:7:\"preview\";a:4:{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:\"#theme\";a:2:{i:0;s:15:\"image_node_form\";i:1;s:9:\"node_form\";}s:11:\"#parameters\";a:3:{i:0;s:15:\"image_node_form\";i:1;a:3:{s:7:\"storage\";N;s:9:\"submitted\";b:0;s:4:\"post\";a:0:{}}i:2;a:4:{s:3:\"uid\";s:1:\"1\";s:4:\"name\";s:5:\"admin\";s:4:\"type\";s:5:\"image\";s:8:\"language\";s:0:\"\";}}s:9:\"#build_id\";s:37:\"form-ff2b04945757c26982bb1174d571b2e7\";s:5:\"#type\";s:4:\"form\";s:11:\"#programmed\";b:0;s:13:\"form_build_id\";a:4:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:37:\"form-ff2b04945757c26982bb1174d571b2e7\";s:3:\"#id\";s:37:\"form-ff2b04945757c26982bb1174d571b2e7\";s:5:\"#name\";s:13:\"form_build_id\";}s:6:\"#token\";s:15:\"image_node_form\";s:10:\"form_token\";a:3:{s:3:\"#id\";s:31:\"edit-image-node-form-form-token\";s:5:\"#type\";s:5:\"token\";s:14:\"#default_value\";s:32:\"2b44c59501c41906d4c0b325804495eb\";}s:7:\"form_id\";a:3:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:15:\"image_node_form\";s:3:\"#id\";s:20:\"edit-image-node-form\";}s:12:\"#description\";N;s:9:\"#required\";b:0;s:5:\"#tree\";b:0;s:8:\"#parents\";a:0:{}s:7:\"#method\";s:4:\"post\";s:7:\"#action\";s:30:\"/~uspvinc/main2/node/add/image\";s:16:\"comment_settings\";a:7:{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:7:\"#weight\";i:30;s:7:\"comment\";a:4:{s:5:\"#type\";s:6:\"radios\";s:8:\"#parents\";a:1:{i:0;s:7:\"comment\";}s:14:\"#default_value\";i:2;s:8:\"#options\";a:3:{i:0;s:8:\"Disabled\";i:1;s:9:\"Read only\";i:2;s:10:\"Read/Write\";}}}s:6:\"#cache\";b:1;s:4:\"menu\";a:20:{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:5:\"#tree\";b:1;s:7:\"#weight\";i:-2;s:11:\"#attributes\";a:1:{s:5:\"class\";s:14:\"menu-item-form\";}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:0;}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:5:\"#item\";a:12:{s:10:\"link_title\";s:0:\"\";s:4:\"mlid\";i:0;s:4:\"plid\";i:0;s:9:\"menu_name\";s:13:\"primary-links\";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:10:\"link_title\";a:5:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:15:\"Menu link title\";s:14:\"#default_value\";s:0:\"\";s:12:\"#description\";s:133:\"The link text corresponding to this item that should appear in the menu. Leave blank if you do not wish to add this post to the menu.\";s:9:\"#required\";b:0;}s:6:\"parent\";a:6:{s:5:\"#type\";s:6:\"select\";s:6:\"#title\";s:11:\"Parent item\";s:14:\"#default_value\";s:15:\"primary-links:0\";s:8:\"#options\";a:96:{s:16:\"menu-main-menu:0\";s:11:\"<Main Menu>\";s:18:\"menu-main-menu:283\";s:8:\"-- about\";s:18:\"menu-main-menu:284\";s:12:\"-- resources\";s:18:\"menu-main-menu:285\";s:11:\"-- services\";s:18:\"menu-main-menu:286\";s:17:\"-- special offers\";s:12:\"navigation:0\";s:12:\"<Navigation>\";s:12:\"navigation:9\";s:26:\"-- Compose tips (disabled)\";s:14:\"navigation:461\";s:29:\"-- Image galleries (disabled)\";s:13:\"navigation:21\";s:13:\"-- My account\";s:14:\"navigation:114\";s:20:\"-- Search (disabled)\";s:14:\"navigation:244\";s:22:\"-- Site map (disabled)\";s:13:\"navigation:11\";s:17:\"-- Create content\";s:14:\"navigation:476\";s:11:\"---- Banner\";s:14:\"navigation:441\";s:10:\"---- Image\";s:14:\"navigation:289\";s:21:\"---- Newsletter issue\";s:14:\"navigation:106\";s:9:\"---- Page\";s:14:\"navigation:388\";s:10:\"---- Panel\";s:14:\"navigation:107\";s:10:\"---- Story\";s:12:\"navigation:2\";s:13:\"-- Administer\";s:13:\"navigation:10\";s:23:\"---- Content management\";s:13:\"navigation:27\";s:15:\"------ Comments\";s:13:\"navigation:28\";s:14:\"------ Content\";s:13:\"navigation:29\";s:20:\"------ Content types\";s:14:\"navigation:462\";s:22:\"------ Image galleries\";s:14:\"navigation:463\";s:19:\"------ Image import\";s:14:\"navigation:538\";s:18:\"------ Newsletters\";s:14:\"navigation:546\";s:20:\"-------- Sent issues\";s:14:\"navigation:541\";s:21:\"-------- Draft issues\";s:14:\"navigation:544\";s:20:\"-------- Newsletters\";s:14:\"navigation:548\";s:22:\"-------- Subscriptions\";s:13:\"navigation:42\";s:20:\"------ Post settings\";s:13:\"navigation:43\";s:21:\"------ RSS publishing\";s:13:\"navigation:94\";s:15:\"------ Taxonomy\";s:13:\"navigation:17\";s:18:\"---- Site building\";s:13:\"navigation:25\";s:13:\"------ Blocks\";s:14:\"navigation:424\";s:20:\"------ Bulk Exporter\";s:13:\"navigation:38\";s:12:\"------ Menus\";s:14:\"navigation:282\";s:18:\"-------- Main Menu\";s:13:\"navigation:89\";s:19:\"-------- Navigation\";s:13:\"navigation:90\";s:22:\"-------- Primary links\";s:14:\"navigation:495\";s:19:\"-------- Right Menu\";s:13:\"navigation:91\";s:24:\"-------- Secondary links\";s:14:\"navigation:387\";s:18:\"------ Mini panels\";s:13:\"navigation:39\";s:14:\"------ Modules\";s:14:\"navigation:412\";s:12:\"------ Pages\";s:14:\"navigation:360\";s:13:\"------ Panels\";s:13:\"navigation:49\";s:13:\"------ Themes\";s:14:\"navigation:335\";s:15:\"------ Triggers\";s:14:\"navigation:501\";s:18:\"------ URL aliases\";s:14:\"navigation:257\";s:12:\"------ Views\";s:13:\"navigation:18\";s:23:\"---- Site configuration\";s:13:\"navigation:23\";s:14:\"------ Actions\";s:14:\"navigation:119\";s:26:\"------ Administration menu\";s:13:\"navigation:24\";s:27:\"------ Administration theme\";s:13:\"navigation:26\";s:17:\"------ Clean URLs\";s:13:\"navigation:30\";s:20:\"------ Date and time\";s:13:\"navigation:33\";s:22:\"------ Error reporting\";s:13:\"navigation:34\";s:18:\"------ File system\";s:13:\"navigation:35\";s:20:\"------ Image toolkit\";s:14:\"navigation:442\";s:13:\"------ Images\";s:13:\"navigation:36\";s:20:\"------ Input formats\";s:13:\"navigation:37\";s:25:\"------ Logging and alerts\";s:14:\"navigation:100\";s:25:\"-------- Database logging\";s:14:\"navigation:245\";s:17:\"------ Nice Menus\";s:13:\"navigation:40\";s:18:\"------ Performance\";s:14:\"navigation:120\";s:22:\"------ Search settings\";s:14:\"navigation:539\";s:17:\"------ Simplenews\";s:14:\"navigation:542\";s:16:\"-------- General\";s:14:\"navigation:543\";s:19:\"-------- Newsletter\";s:14:\"navigation:547\";s:21:\"-------- Subscription\";s:14:\"navigation:545\";s:18:\"-------- Send mail\";s:13:\"navigation:46\";s:23:\"------ Site information\";s:13:\"navigation:47\";s:23:\"------ Site maintenance\";s:14:\"navigation:246\";s:15:\"------ Site map\";s:13:\"navigation:20\";s:20:\"---- User management\";s:13:\"navigation:22\";s:19:\"------ Access rules\";s:13:\"navigation:41\";s:18:\"------ Permissions\";s:13:\"navigation:45\";s:12:\"------ Roles\";s:13:\"navigation:50\";s:20:\"------ User settings\";s:13:\"navigation:51\";s:12:\"------ Users\";s:13:\"navigation:16\";s:12:\"---- Reports\";s:13:\"navigation:93\";s:25:\"------ Recent log entries\";s:13:\"navigation:96\";s:33:\"------ Top \'access denied\' errors\";s:13:\"navigation:97\";s:34:\"------ Top \'page not found\' errors\";s:14:\"navigation:121\";s:25:\"------ Top search phrases\";s:14:\"navigation:105\";s:24:\"------ Available updates\";s:13:\"navigation:48\";s:20:\"------ Status report\";s:13:\"navigation:15\";s:9:\"---- Help\";s:12:\"navigation:4\";s:10:\"-- Log out\";s:15:\"primary-links:0\";s:15:\"<Primary links>\";s:17:\"menu-right-menu:0\";s:12:\"<Right Menu>\";s:19:\"menu-right-menu:496\";s:28:\"-- Financial Calculator Tool\";s:19:\"menu-right-menu:497\";s:21:\"-- News Story Library\";s:19:\"menu-right-menu:498\";s:14:\"-- Latest News\";s:19:\"menu-right-menu:499\";s:25:\"-- SREC Management Portal\";s:17:\"secondary-links:0\";s:17:\"<Secondary links>\";}s:12:\"#description\";s:156:\"The maximum depth for an item and all its children is fixed at 9. Some menu items may not be available as parents if selecting them would exceed this limit.\";s:11:\"#attributes\";a:1:{s:5:\"class\";s:17:\"menu-title-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:107:\"Optional. In the menu, the heavier items will sink and the lighter items will be positioned nearer the top.\";}}s:4:\"path\";a:8:{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:7:\"#access\";b:1;s:7:\"#weight\";i:30;s:4:\"path\";a:6:{s:5:\"#type\";s:9:\"textfield\";s:14:\"#default_value\";N;s:10:\"#maxlength\";i:128;s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:12:\"#description\";s:207:\"Optionally specify an alternative URL by which this node 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:22:\"pathauto_perform_alias\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:15:\"Automatic alias\";s:14:\"#default_value\";b:1;s:12:\"#description\";s:238:\"An alias will be generated for you. If you wish to create your own alias below, uncheck this option. To control the format of the generated aliases, see the <a href=\"/~uspvinc/main2/admin/build/path/pathauto\">automated alias settings</a>.\";s:7:\"#weight\";i:-1;}}s:8:\"taxonomy\";a:3:{i:2;a:10:{s:5:\"#type\";s:6:\"select\";s:6:\"#title\";s:15:\"Image Galleries\";s:14:\"#default_value\";a:0:{}s:8:\"#options\";a:1:{s:0:\"\";s:17:\"- None selected -\";}s:12:\"#description\";s:0:\"\";s:9:\"#multiple\";i:0;s:5:\"#size\";i:0;s:7:\"#weight\";s:1:\"0\";s:6:\"#theme\";s:20:\"taxonomy_term_select\";s:9:\"#required\";s:1:\"0\";}s:7:\"#weight\";i:-3;s:5:\"#tree\";b:1;}s:11:\"#pre_render\";a:1:{i:0;s:27:\"content_alter_extra_weights\";}s:21:\"#content_extra_fields\";a:8:{s:5:\"title\";a:3:{s:5:\"label\";s:5:\"Title\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:-5;}s:10:\"body_field\";a:4:{s:5:\"label\";s:4:\"Body\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:0;s:4:\"view\";s:4:\"body\";}s:20:\"revision_information\";a:3:{s:5:\"label\";s:20:\"Revision information\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:20;}s:16:\"comment_settings\";a:3:{s:5:\"label\";s:16:\"Comment settings\";s:11:\"description\";s:20:\"Comment module form.\";s:6:\"weight\";i:30;}s:4:\"menu\";a:3:{s:5:\"label\";s:13:\"Menu settings\";s:11:\"description\";s:17:\"Menu module form.\";s:6:\"weight\";i:-2;}s:8:\"taxonomy\";a:3:{s:5:\"label\";s:8:\"Taxonomy\";s:11:\"description\";s:21:\"Taxonomy module form.\";s:6:\"weight\";i:-3;}s:4:\"path\";a:3:{s:5:\"label\";s:13:\"Path settings\";s:11:\"description\";s:17:\"Path module form.\";s:6:\"weight\";i:30;}s:5:\"image\";a:3:{s:5:\"label\";s:5:\"Image\";s:11:\"description\";s:14:\"Image display.\";s:6:\"weight\";i:0;}}s:12:\"#cache_token\";s:32:\"ea05954e6208c2bed552f97e30d1dad3\";}',1285708333,1285686733,'',1),('form_form-7fc24f1b8adf7c4af04d90ec3b11e7fa','a:40:{s:3:\"#id\";s:9:\"node-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:1285686806;}s:4:\"type\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:4:\"page\";}s:8:\"language\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:0:\"\";}s:7:\"changed\";a:2:{s:5:\"#type\";s:6:\"hidden\";s:14:\"#default_value\";N;}s:5:\"title\";a:6:{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:10:\"body_field\";a:7:{s:12:\"#after_build\";a:2:{i:0;s:14:\"node_teaser_js\";i:1;s:26:\"node_teaser_include_verify\";}s:7:\"#prefix\";s:32:\"<div class=\"body-field-wrapper\">\";s:7:\"#suffix\";s:6:\"</div>\";s:9:\"teaser_js\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:5:\"#rows\";i:10;s:7:\"#teaser\";s:9:\"edit-body\";s:16:\"#teaser_checkbox\";s:19:\"edit-teaser-include\";s:9:\"#disabled\";b:1;}s:14:\"teaser_include\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:25:\"Show summary in full view\";s:14:\"#default_value\";b:1;s:7:\"#prefix\";s:29:\"<div class=\"teaser-checkbox\">\";s:7:\"#suffix\";s:6:\"</div>\";}s:4:\"body\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:4:\"Body\";s:14:\"#default_value\";N;s:5:\"#rows\";i:20;s:9:\"#required\";b:0;}s:6:\"format\";a:9:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:12:\"Input format\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:7:\"#weight\";N;s:17:\"#element_validate\";a:1:{i:0;s:20:\"filter_form_validate\";}i:1;a:7:{s:5:\"#type\";s:5:\"radio\";s:6:\"#title\";s:13:\"Filtered HTML\";s:14:\"#default_value\";i:1;s:13:\"#return_value\";s:1:\"1\";s:8:\"#parents\";a:1:{i:0;s:6:\"format\";}s:12:\"#description\";s:306:\"<ul class=\"tips\"><li>Web page addresses and e-mail addresses turn into links automatically.</li><li>Allowed HTML tags: &lt;a&gt; &lt;em&gt; &lt;strong&gt; &lt;cite&gt; &lt;code&gt; &lt;ul&gt; &lt;ol&gt; &lt;li&gt; &lt;dl&gt; &lt;dt&gt; &lt;dd&gt;</li><li>Lines and paragraphs break automatically.</li></ul>\";s:3:\"#id\";s:13:\"edit-format-1\";}i:2;a:7:{s:5:\"#type\";s:5:\"radio\";s:6:\"#title\";s:9:\"Full HTML\";s:14:\"#default_value\";i:1;s:13:\"#return_value\";s:1:\"2\";s:8:\"#parents\";a:1:{i:0;s:6:\"format\";}s:12:\"#description\";s:151:\"<ul class=\"tips\"><li>Web page addresses and e-mail addresses turn into links automatically.</li><li>Lines and paragraphs break automatically.</li></ul>\";s:3:\"#id\";s:13:\"edit-format-2\";}i:3;a:1:{s:6:\"#value\";s:90:\"<p><a href=\"/~uspvinc/main2/filter/tips\">More information about formatting options</a></p>\";}}}s:5:\"#node\";O:8:\"stdClass\":15:{s:3:\"uid\";s:1:\"1\";s:4:\"name\";s:5:\"admin\";s:4:\"type\";s:4:\"page\";s:8:\"language\";s:0:\"\";s:4:\"body\";N;s:5:\"title\";N;s:6:\"format\";N;s:6:\"status\";b:1;s:7:\"promote\";b:0;s:6:\"sticky\";b:0;s:7:\"created\";i:1285686806;s:8:\"revision\";b:0;s:7:\"comment\";i: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:13:\"primary-links\";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:22:\"pathauto_perform_alias\";b:1;}s:20:\"revision_information\";a:7:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:20:\"Revision information\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:7:\"#weight\";i:20;s:8:\"revision\";a:4:{s:7:\"#access\";b:1;s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:19:\"Create new revision\";s:14:\"#default_value\";b:0;}s:3:\"log\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:11:\"Log message\";s:14:\"#default_value\";s:0:\"\";s:5:\"#rows\";i:2;s:12:\"#description\";s:104:\"An explanation of the additions or updates being made to help other authors understand your motivations.\";}}s:6:\"author\";a:8:{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:7:\"#weight\";i:20;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:35:\"Leave blank for <em>Anonymous</em>.\";}s:4:\"date\";a:4:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:11:\"Authored on\";s:10:\"#maxlength\";i:25;s:12:\"#description\";s:91:\"Format: <em>2010-09-28 23:13:26 +0800</em>. Leave blank to use the time of form submission.\";}}s:7:\"options\";a:9:{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:7:\"#weight\";i:25;s:6:\"status\";a:3:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:9:\"Published\";s:14:\"#default_value\";b: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\";b: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\";b:0;}}s:7:\"buttons\";a:2:{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:16:\"node_form_submit\";}}s:7:\"preview\";a:4:{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:6:\"#theme\";a:2:{i:0;s:14:\"page_node_form\";i:1;s:9:\"node_form\";}s:11:\"#parameters\";a:3:{i:0;s:14:\"page_node_form\";i:1;a:3:{s:7:\"storage\";N;s:9:\"submitted\";b:0;s:4:\"post\";a:0:{}}i:2;a:4:{s:3:\"uid\";s:1:\"1\";s:4:\"name\";s:5:\"admin\";s:4:\"type\";s:4:\"page\";s:8:\"language\";s:0:\"\";}}s:9:\"#build_id\";s:37:\"form-7fc24f1b8adf7c4af04d90ec3b11e7fa\";s:5:\"#type\";s:4:\"form\";s:11:\"#programmed\";b:0;s:13:\"form_build_id\";a:4:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:37:\"form-7fc24f1b8adf7c4af04d90ec3b11e7fa\";s:3:\"#id\";s:37:\"form-7fc24f1b8adf7c4af04d90ec3b11e7fa\";s:5:\"#name\";s:13:\"form_build_id\";}s:6:\"#token\";s:14:\"page_node_form\";s:10:\"form_token\";a:3:{s:3:\"#id\";s:30:\"edit-page-node-form-form-token\";s:5:\"#type\";s:5:\"token\";s:14:\"#default_value\";s:32:\"69ee9cfa6b6366390575effcb3429c15\";}s:7:\"form_id\";a:3:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:14:\"page_node_form\";s:3:\"#id\";s:19:\"edit-page-node-form\";}s:12:\"#description\";N;s:11:\"#attributes\";a:0:{}s:9:\"#required\";b:0;s:5:\"#tree\";b:0;s:8:\"#parents\";a:0:{}s:7:\"#method\";s:4:\"post\";s:7:\"#action\";s:29:\"/~uspvinc/main2/node/add/page\";s:16:\"comment_settings\";a:7:{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:7:\"#weight\";i:30;s:7:\"comment\";a:4:{s:5:\"#type\";s:6:\"radios\";s:8:\"#parents\";a:1:{i:0;s:7:\"comment\";}s:14:\"#default_value\";i:0;s:8:\"#options\";a:3:{i:0;s:8:\"Disabled\";i:1;s:9:\"Read only\";i:2;s:10:\"Read/Write\";}}}s:6:\"#cache\";b:1;s:4:\"menu\";a:20:{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:5:\"#tree\";b:1;s:7:\"#weight\";i:-2;s:11:\"#attributes\";a:1:{s:5:\"class\";s:14:\"menu-item-form\";}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:0;}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:5:\"#item\";a:12:{s:10:\"link_title\";s:0:\"\";s:4:\"mlid\";i:0;s:4:\"plid\";i:0;s:9:\"menu_name\";s:13:\"primary-links\";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:10:\"link_title\";a:5:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:15:\"Menu link title\";s:14:\"#default_value\";s:0:\"\";s:12:\"#description\";s:133:\"The link text corresponding to this item that should appear in the menu. Leave blank if you do not wish to add this post to the menu.\";s:9:\"#required\";b:0;}s:6:\"parent\";a:6:{s:5:\"#type\";s:6:\"select\";s:6:\"#title\";s:11:\"Parent item\";s:14:\"#default_value\";s:15:\"primary-links:0\";s:8:\"#options\";a:96:{s:16:\"menu-main-menu:0\";s:11:\"<Main Menu>\";s:18:\"menu-main-menu:283\";s:8:\"-- about\";s:18:\"menu-main-menu:284\";s:12:\"-- resources\";s:18:\"menu-main-menu:285\";s:11:\"-- services\";s:18:\"menu-main-menu:286\";s:17:\"-- special offers\";s:12:\"navigation:0\";s:12:\"<Navigation>\";s:12:\"navigation:9\";s:26:\"-- Compose tips (disabled)\";s:14:\"navigation:461\";s:29:\"-- Image galleries (disabled)\";s:13:\"navigation:21\";s:13:\"-- My account\";s:14:\"navigation:114\";s:20:\"-- Search (disabled)\";s:14:\"navigation:244\";s:22:\"-- Site map (disabled)\";s:13:\"navigation:11\";s:17:\"-- Create content\";s:14:\"navigation:476\";s:11:\"---- Banner\";s:14:\"navigation:441\";s:10:\"---- Image\";s:14:\"navigation:289\";s:21:\"---- Newsletter issue\";s:14:\"navigation:106\";s:9:\"---- Page\";s:14:\"navigation:388\";s:10:\"---- Panel\";s:14:\"navigation:107\";s:10:\"---- Story\";s:12:\"navigation:2\";s:13:\"-- Administer\";s:13:\"navigation:10\";s:23:\"---- Content management\";s:13:\"navigation:27\";s:15:\"------ Comments\";s:13:\"navigation:28\";s:14:\"------ Content\";s:13:\"navigation:29\";s:20:\"------ Content types\";s:14:\"navigation:462\";s:22:\"------ Image galleries\";s:14:\"navigation:463\";s:19:\"------ Image import\";s:14:\"navigation:538\";s:18:\"------ Newsletters\";s:14:\"navigation:546\";s:20:\"-------- Sent issues\";s:14:\"navigation:541\";s:21:\"-------- Draft issues\";s:14:\"navigation:544\";s:20:\"-------- Newsletters\";s:14:\"navigation:548\";s:22:\"-------- Subscriptions\";s:13:\"navigation:42\";s:20:\"------ Post settings\";s:13:\"navigation:43\";s:21:\"------ RSS publishing\";s:13:\"navigation:94\";s:15:\"------ Taxonomy\";s:13:\"navigation:17\";s:18:\"---- Site building\";s:13:\"navigation:25\";s:13:\"------ Blocks\";s:14:\"navigation:424\";s:20:\"------ Bulk Exporter\";s:13:\"navigation:38\";s:12:\"------ Menus\";s:14:\"navigation:282\";s:18:\"-------- Main Menu\";s:13:\"navigation:89\";s:19:\"-------- Navigation\";s:13:\"navigation:90\";s:22:\"-------- Primary links\";s:14:\"navigation:495\";s:19:\"-------- Right Menu\";s:13:\"navigation:91\";s:24:\"-------- Secondary links\";s:14:\"navigation:387\";s:18:\"------ Mini panels\";s:13:\"navigation:39\";s:14:\"------ Modules\";s:14:\"navigation:412\";s:12:\"------ Pages\";s:14:\"navigation:360\";s:13:\"------ Panels\";s:13:\"navigation:49\";s:13:\"------ Themes\";s:14:\"navigation:335\";s:15:\"------ Triggers\";s:14:\"navigation:501\";s:18:\"------ URL aliases\";s:14:\"navigation:257\";s:12:\"------ Views\";s:13:\"navigation:18\";s:23:\"---- Site configuration\";s:13:\"navigation:23\";s:14:\"------ Actions\";s:14:\"navigation:119\";s:26:\"------ Administration menu\";s:13:\"navigation:24\";s:27:\"------ Administration theme\";s:13:\"navigation:26\";s:17:\"------ Clean URLs\";s:13:\"navigation:30\";s:20:\"------ Date and time\";s:13:\"navigation:33\";s:22:\"------ Error reporting\";s:13:\"navigation:34\";s:18:\"------ File system\";s:13:\"navigation:35\";s:20:\"------ Image toolkit\";s:14:\"navigation:442\";s:13:\"------ Images\";s:13:\"navigation:36\";s:20:\"------ Input formats\";s:13:\"navigation:37\";s:25:\"------ Logging and alerts\";s:14:\"navigation:100\";s:25:\"-------- Database logging\";s:14:\"navigation:245\";s:17:\"------ Nice Menus\";s:13:\"navigation:40\";s:18:\"------ Performance\";s:14:\"navigation:120\";s:22:\"------ Search settings\";s:14:\"navigation:539\";s:17:\"------ Simplenews\";s:14:\"navigation:542\";s:16:\"-------- General\";s:14:\"navigation:543\";s:19:\"-------- Newsletter\";s:14:\"navigation:547\";s:21:\"-------- Subscription\";s:14:\"navigation:545\";s:18:\"-------- Send mail\";s:13:\"navigation:46\";s:23:\"------ Site information\";s:13:\"navigation:47\";s:23:\"------ Site maintenance\";s:14:\"navigation:246\";s:15:\"------ Site map\";s:13:\"navigation:20\";s:20:\"---- User management\";s:13:\"navigation:22\";s:19:\"------ Access rules\";s:13:\"navigation:41\";s:18:\"------ Permissions\";s:13:\"navigation:45\";s:12:\"------ Roles\";s:13:\"navigation:50\";s:20:\"------ User settings\";s:13:\"navigation:51\";s:12:\"------ Users\";s:13:\"navigation:16\";s:12:\"---- Reports\";s:13:\"navigation:93\";s:25:\"------ Recent log entries\";s:13:\"navigation:96\";s:33:\"------ Top \'access denied\' errors\";s:13:\"navigation:97\";s:34:\"------ Top \'page not found\' errors\";s:14:\"navigation:121\";s:25:\"------ Top search phrases\";s:14:\"navigation:105\";s:24:\"------ Available updates\";s:13:\"navigation:48\";s:20:\"------ Status report\";s:13:\"navigation:15\";s:9:\"---- Help\";s:12:\"navigation:4\";s:10:\"-- Log out\";s:15:\"primary-links:0\";s:15:\"<Primary links>\";s:17:\"menu-right-menu:0\";s:12:\"<Right Menu>\";s:19:\"menu-right-menu:496\";s:28:\"-- Financial Calculator Tool\";s:19:\"menu-right-menu:497\";s:21:\"-- News Story Library\";s:19:\"menu-right-menu:498\";s:14:\"-- Latest News\";s:19:\"menu-right-menu:499\";s:25:\"-- SREC Management Portal\";s:17:\"secondary-links:0\";s:17:\"<Secondary links>\";}s:12:\"#description\";s:156:\"The maximum depth for an item and all its children is fixed at 9. Some menu items may not be available as parents if selecting them would exceed this limit.\";s:11:\"#attributes\";a:1:{s:5:\"class\";s:17:\"menu-title-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:107:\"Optional. In the menu, the heavier items will sink and the lighter items will be positioned nearer the top.\";}}s:7:\"#submit\";a:1:{i:0;s:21:\"menu_node_form_submit\";}s:4:\"path\";a:8:{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:7:\"#access\";b:1;s:7:\"#weight\";i:30;s:4:\"path\";a:6:{s:5:\"#type\";s:9:\"textfield\";s:14:\"#default_value\";N;s:10:\"#maxlength\";i:128;s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:12:\"#description\";s:207:\"Optionally specify an alternative URL by which this node 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:22:\"pathauto_perform_alias\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:15:\"Automatic alias\";s:14:\"#default_value\";b:1;s:12:\"#description\";s:238:\"An alias will be generated for you. If you wish to create your own alias below, uncheck this option. To control the format of the generated aliases, see the <a href=\"/~uspvinc/main2/admin/build/path/pathauto\">automated alias settings</a>.\";s:7:\"#weight\";i:-1;}}s:11:\"#pre_render\";a:1:{i:0;s:27:\"content_alter_extra_weights\";}s:21:\"#content_extra_fields\";a:6:{s:5:\"title\";a:3:{s:5:\"label\";s:5:\"Title\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:-5;}s:10:\"body_field\";a:4:{s:5:\"label\";s:4:\"Body\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:0;s:4:\"view\";s:4:\"body\";}s:20:\"revision_information\";a:3:{s:5:\"label\";s:20:\"Revision information\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:20;}s:16:\"comment_settings\";a:3:{s:5:\"label\";s:16:\"Comment settings\";s:11:\"description\";s:20:\"Comment module form.\";s:6:\"weight\";i:30;}s:4:\"menu\";a:3:{s:5:\"label\";s:13:\"Menu settings\";s:11:\"description\";s:17:\"Menu module form.\";s:6:\"weight\";i:-2;}s:4:\"path\";a:3:{s:5:\"label\";s:13:\"Path settings\";s:11:\"description\";s:17:\"Path module form.\";s:6:\"weight\";i:30;}}s:12:\"#cache_token\";s:32:\"ea05954e6208c2bed552f97e30d1dad3\";}',1285708406,1285686806,'',1),('form_form-dd952852da070cb650d69a6d457ececd','a:41:{s:3:\"#id\";s:9:\"node-form\";s:3:\"nid\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:1:\"8\";}s:3:\"vid\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:1:\"8\";}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:\"1265208624\";}s:4:\"type\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:6:\"banner\";}s:8:\"language\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:0:\"\";}s:7:\"changed\";a:2:{s:5:\"#type\";s:6:\"hidden\";s:14:\"#default_value\";s:10:\"1265208624\";}s:5:\"title\";a:6:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:5:\"Title\";s:9:\"#required\";b:1;s:14:\"#default_value\";s:15:\"banner 2 - USPV\";s:10:\"#maxlength\";i:255;s:7:\"#weight\";i:-5;}s:10:\"body_field\";a:7:{s:12:\"#after_build\";a:2:{i:0;s:14:\"node_teaser_js\";i:1;s:26:\"node_teaser_include_verify\";}s:7:\"#prefix\";s:32:\"<div class=\"body-field-wrapper\">\";s:7:\"#suffix\";s:6:\"</div>\";s:9:\"teaser_js\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:5:\"#rows\";i:10;s:7:\"#teaser\";s:9:\"edit-body\";s:16:\"#teaser_checkbox\";s:19:\"edit-teaser-include\";s:9:\"#disabled\";b:1;}s:14:\"teaser_include\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:25:\"Show summary in full view\";s:14:\"#default_value\";b:1;s:7:\"#prefix\";s:29:\"<div class=\"teaser-checkbox\">\";s:7:\"#suffix\";s:6:\"</div>\";}s:4:\"body\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:4:\"Body\";s:14:\"#default_value\";s:15:\"banner 2 - USPV\";s:5:\"#rows\";i:20;s:9:\"#required\";b:0;}s:6:\"format\";a:9:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:12:\"Input format\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:7:\"#weight\";N;s:17:\"#element_validate\";a:1:{i:0;s:20:\"filter_form_validate\";}i:1;a:7:{s:5:\"#type\";s:5:\"radio\";s:6:\"#title\";s:13:\"Filtered HTML\";s:14:\"#default_value\";s:1:\"1\";s:13:\"#return_value\";s:1:\"1\";s:8:\"#parents\";a:1:{i:0;s:6:\"format\";}s:12:\"#description\";s:306:\"<ul class=\"tips\"><li>Web page addresses and e-mail addresses turn into links automatically.</li><li>Allowed HTML tags: &lt;a&gt; &lt;em&gt; &lt;strong&gt; &lt;cite&gt; &lt;code&gt; &lt;ul&gt; &lt;ol&gt; &lt;li&gt; &lt;dl&gt; &lt;dt&gt; &lt;dd&gt;</li><li>Lines and paragraphs break automatically.</li></ul>\";s:3:\"#id\";s:13:\"edit-format-1\";}i:2;a:7:{s:5:\"#type\";s:5:\"radio\";s:6:\"#title\";s:9:\"Full HTML\";s:14:\"#default_value\";s:1:\"1\";s:13:\"#return_value\";s:1:\"2\";s:8:\"#parents\";a:1:{i:0;s:6:\"format\";}s:12:\"#description\";s:151:\"<ul class=\"tips\"><li>Web page addresses and e-mail addresses turn into links automatically.</li><li>Lines and paragraphs break automatically.</li></ul>\";s:3:\"#id\";s:13:\"edit-format-2\";}i:3;a:1:{s:6:\"#value\";s:90:\"<p><a href=\"/~uspvinc/main2/filter/tips\">More information about formatting options</a></p>\";}}}s:5:\"#node\";O:8:\"stdClass\":34:{s:3:\"nid\";s:1:\"8\";s:4:\"type\";s:6:\"banner\";s:8:\"language\";s:0:\"\";s:3:\"uid\";s:1:\"1\";s:6:\"status\";s:1:\"1\";s:7:\"created\";s:10:\"1265208624\";s:7:\"changed\";s:10:\"1265208624\";s:7:\"comment\";s:1:\"2\";s:7:\"promote\";s:1:\"1\";s:8:\"moderate\";s:1:\"0\";s:6:\"sticky\";s:1:\"0\";s:4:\"tnid\";s:1:\"0\";s:9:\"translate\";s:1:\"0\";s:3:\"vid\";s:1:\"8\";s:12:\"revision_uid\";s:1:\"1\";s:5:\"title\";s:15:\"banner 2 - USPV\";s:4:\"body\";s:15:\"banner 2 - USPV\";s:6:\"teaser\";s:15:\"banner 2 - USPV\";s:3:\"log\";N;s:18:\"revision_timestamp\";s:10:\"1265208624\";s:6:\"format\";s:1:\"1\";s:4:\"name\";s:5:\"admin\";s:7:\"picture\";s:0:\"\";s:4:\"data\";s:6:\"a:0:{}\";s:4:\"path\";s:20:\"banner/banner-2-uspv\";s:22:\"last_comment_timestamp\";s:10:\"1265208624\";s:17:\"last_comment_name\";N;s:13:\"comment_count\";s:1:\"0\";s:8:\"taxonomy\";a:0:{}s:4:\"iids\";a:1:{i:0;s:1:\"7\";}s:4:\"date\";s:25:\"2010-02-03 22:50:24 +0800\";s:8:\"revision\";b:0;s:4:\"menu\";a:48:{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:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:3:\"fit\";s:1:\"2\";s:12:\"number_parts\";s:1:\"2\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:5:\"about\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:4:\"type\";s:1:\"4\";s:14:\"block_callback\";s:0:\"\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"0\";s:4:\"file\";s:0:\"\";s:9:\"menu_name\";s:14:\"menu-main-menu\";s:4:\"mlid\";s:3:\"283\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/8\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:5:\"about\";s:7:\"options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:5:\"about\";}}s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"283\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:4:\"href\";s:6:\"node/8\";s:6:\"access\";b:1;s:17:\"localized_options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:5:\"about\";}}s:18:\"parent_depth_limit\";i:8;}s:22:\"pathauto_perform_alias\";b:1;}s:20:\"revision_information\";a:7:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:20:\"Revision information\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:7:\"#weight\";i:20;s:8:\"revision\";a:4:{s:7:\"#access\";b:1;s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:19:\"Create new revision\";s:14:\"#default_value\";b:0;}s:3:\"log\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:11:\"Log message\";s:14:\"#default_value\";s:0:\"\";s:5:\"#rows\";i:2;s:12:\"#description\";s:104:\"An explanation of the additions or updates being made to help other authors understand your motivations.\";}}s:6:\"author\";a:8:{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:7:\"#weight\";i:20;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:35:\"Leave blank for <em>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:91:\"Format: <em>2010-02-03 22:50:24 +0800</em>. Leave blank to use the time of form submission.\";s:14:\"#default_value\";s:25:\"2010-02-03 22:50:24 +0800\";}}s:7:\"options\";a:9:{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:7:\"#weight\";i:25;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:\"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\";s:1:\"0\";}}s:7:\"buttons\";a:3:{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:16:\"node_form_submit\";}}s:7:\"preview\";a:4:{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:2:{i:0;s:18:\"node_form_validate\";i:1;s:21:\"image_attach_validate\";}s:6:\"#theme\";a:2:{i:0;s:16:\"banner_node_form\";i:1;s:9:\"node_form\";}s:11:\"#parameters\";a:3:{i:0;s:16:\"banner_node_form\";i:1;a:3:{s:7:\"storage\";N;s:9:\"submitted\";b:0;s:4:\"post\";a:0:{}}i:2;r:83;}s:9:\"#build_id\";s:37:\"form-dd952852da070cb650d69a6d457ececd\";s:5:\"#type\";s:4:\"form\";s:11:\"#programmed\";b:0;s:13:\"form_build_id\";a:4:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:37:\"form-dd952852da070cb650d69a6d457ececd\";s:3:\"#id\";s:37:\"form-dd952852da070cb650d69a6d457ececd\";s:5:\"#name\";s:13:\"form_build_id\";}s:6:\"#token\";s:16:\"banner_node_form\";s:10:\"form_token\";a:3:{s:3:\"#id\";s:32:\"edit-banner-node-form-form-token\";s:5:\"#type\";s:5:\"token\";s:14:\"#default_value\";s:32:\"07cec0c98582e0fd07a1adcfd62b388b\";}s:7:\"form_id\";a:3:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:16:\"banner_node_form\";s:3:\"#id\";s:21:\"edit-banner-node-form\";}s:12:\"#description\";N;s:11:\"#attributes\";a:1:{s:7:\"enctype\";s:19:\"multipart/form-data\";}s:9:\"#required\";b:0;s:5:\"#tree\";b:0;s:8:\"#parents\";a:0:{}s:7:\"#method\";s:4:\"post\";s:7:\"#action\";s:27:\"/~uspvinc/main2/node/8/edit\";s:16:\"comment_settings\";a:7:{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:7:\"#weight\";i:30;s:7:\"comment\";a:4:{s:5:\"#type\";s:6:\"radios\";s:8:\"#parents\";a:1:{i:0;s:7:\"comment\";}s:14:\"#default_value\";s:1:\"2\";s:8:\"#options\";a:3:{i:0;s:8:\"Disabled\";i:1;s:9:\"Read only\";i:2;s:10:\"Read/Write\";}}}s:6:\"#cache\";b:1;s:4:\"menu\";a:21:{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:5:\"#tree\";b:1;s:7:\"#weight\";i:-2;s:11:\"#attributes\";a:1:{s:5:\"class\";s:14:\"menu-item-form\";}s:6:\"delete\";a:2:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:22:\"Delete this menu item.\";}s:4:\"mlid\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:3:\"283\";}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\";s:1:\"1\";}s:7:\"options\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:5:\"about\";}}}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:5:\"#item\";a:48:{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:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:3:\"fit\";s:1:\"2\";s:12:\"number_parts\";s:1:\"2\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:5:\"about\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:4:\"type\";s:1:\"4\";s:14:\"block_callback\";s:0:\"\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"0\";s:4:\"file\";s:0:\"\";s:9:\"menu_name\";s:14:\"menu-main-menu\";s:4:\"mlid\";s:3:\"283\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/8\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:5:\"about\";s:7:\"options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:5:\"about\";}}s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"283\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:4:\"href\";s:6:\"node/8\";s:6:\"access\";b:1;s:17:\"localized_options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:5:\"about\";}}s:18:\"parent_depth_limit\";i:8;}s:10:\"link_title\";a:5:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:15:\"Menu link title\";s:14:\"#default_value\";s:5:\"about\";s:12:\"#description\";s:133:\"The link text corresponding to this item that should appear in the menu. Leave blank if you do not wish to add this post to the menu.\";s:9:\"#required\";b:0;}s:6:\"parent\";a:6:{s:5:\"#type\";s:6:\"select\";s:6:\"#title\";s:11:\"Parent item\";s:14:\"#default_value\";s:16:\"menu-main-menu:0\";s:8:\"#options\";a:95:{s:16:\"menu-main-menu:0\";s:11:\"<Main Menu>\";s:18:\"menu-main-menu:284\";s:12:\"-- resources\";s:18:\"menu-main-menu:285\";s:11:\"-- services\";s:18:\"menu-main-menu:286\";s:17:\"-- special offers\";s:12:\"navigation:0\";s:12:\"<Navigation>\";s:12:\"navigation:9\";s:26:\"-- Compose tips (disabled)\";s:14:\"navigation:461\";s:29:\"-- Image galleries (disabled)\";s:13:\"navigation:21\";s:13:\"-- My account\";s:14:\"navigation:114\";s:20:\"-- Search (disabled)\";s:14:\"navigation:244\";s:22:\"-- Site map (disabled)\";s:13:\"navigation:11\";s:17:\"-- Create content\";s:14:\"navigation:476\";s:11:\"---- Banner\";s:14:\"navigation:441\";s:10:\"---- Image\";s:14:\"navigation:289\";s:21:\"---- Newsletter issue\";s:14:\"navigation:106\";s:9:\"---- Page\";s:14:\"navigation:388\";s:10:\"---- Panel\";s:14:\"navigation:107\";s:10:\"---- Story\";s:12:\"navigation:2\";s:13:\"-- Administer\";s:13:\"navigation:10\";s:23:\"---- Content management\";s:13:\"navigation:27\";s:15:\"------ Comments\";s:13:\"navigation:28\";s:14:\"------ Content\";s:13:\"navigation:29\";s:20:\"------ Content types\";s:14:\"navigation:462\";s:22:\"------ Image galleries\";s:14:\"navigation:463\";s:19:\"------ Image import\";s:14:\"navigation:538\";s:18:\"------ Newsletters\";s:14:\"navigation:546\";s:20:\"-------- Sent issues\";s:14:\"navigation:541\";s:21:\"-------- Draft issues\";s:14:\"navigation:544\";s:20:\"-------- Newsletters\";s:14:\"navigation:548\";s:22:\"-------- Subscriptions\";s:13:\"navigation:42\";s:20:\"------ Post settings\";s:13:\"navigation:43\";s:21:\"------ RSS publishing\";s:13:\"navigation:94\";s:15:\"------ Taxonomy\";s:13:\"navigation:17\";s:18:\"---- Site building\";s:13:\"navigation:25\";s:13:\"------ Blocks\";s:14:\"navigation:424\";s:20:\"------ Bulk Exporter\";s:13:\"navigation:38\";s:12:\"------ Menus\";s:14:\"navigation:282\";s:18:\"-------- Main Menu\";s:13:\"navigation:89\";s:19:\"-------- Navigation\";s:13:\"navigation:90\";s:22:\"-------- Primary links\";s:14:\"navigation:495\";s:19:\"-------- Right Menu\";s:13:\"navigation:91\";s:24:\"-------- Secondary links\";s:14:\"navigation:387\";s:18:\"------ Mini panels\";s:13:\"navigation:39\";s:14:\"------ Modules\";s:14:\"navigation:412\";s:12:\"------ Pages\";s:14:\"navigation:360\";s:13:\"------ Panels\";s:13:\"navigation:49\";s:13:\"------ Themes\";s:14:\"navigation:335\";s:15:\"------ Triggers\";s:14:\"navigation:501\";s:18:\"------ URL aliases\";s:14:\"navigation:257\";s:12:\"------ Views\";s:13:\"navigation:18\";s:23:\"---- Site configuration\";s:13:\"navigation:23\";s:14:\"------ Actions\";s:14:\"navigation:119\";s:26:\"------ Administration menu\";s:13:\"navigation:24\";s:27:\"------ Administration theme\";s:13:\"navigation:26\";s:17:\"------ Clean URLs\";s:13:\"navigation:30\";s:20:\"------ Date and time\";s:13:\"navigation:33\";s:22:\"------ Error reporting\";s:13:\"navigation:34\";s:18:\"------ File system\";s:13:\"navigation:35\";s:20:\"------ Image toolkit\";s:14:\"navigation:442\";s:13:\"------ Images\";s:13:\"navigation:36\";s:20:\"------ Input formats\";s:13:\"navigation:37\";s:25:\"------ Logging and alerts\";s:14:\"navigation:100\";s:25:\"-------- Database logging\";s:14:\"navigation:245\";s:17:\"------ Nice Menus\";s:13:\"navigation:40\";s:18:\"------ Performance\";s:14:\"navigation:120\";s:22:\"------ Search settings\";s:14:\"navigation:539\";s:17:\"------ Simplenews\";s:14:\"navigation:542\";s:16:\"-------- General\";s:14:\"navigation:543\";s:19:\"-------- Newsletter\";s:14:\"navigation:547\";s:21:\"-------- Subscription\";s:14:\"navigation:545\";s:18:\"-------- Send mail\";s:13:\"navigation:46\";s:23:\"------ Site information\";s:13:\"navigation:47\";s:23:\"------ Site maintenance\";s:14:\"navigation:246\";s:15:\"------ Site map\";s:13:\"navigation:20\";s:20:\"---- User management\";s:13:\"navigation:22\";s:19:\"------ Access rules\";s:13:\"navigation:41\";s:18:\"------ Permissions\";s:13:\"navigation:45\";s:12:\"------ Roles\";s:13:\"navigation:50\";s:20:\"------ User settings\";s:13:\"navigation:51\";s:12:\"------ Users\";s:13:\"navigation:16\";s:12:\"---- Reports\";s:13:\"navigation:93\";s:25:\"------ Recent log entries\";s:13:\"navigation:96\";s:33:\"------ Top \'access denied\' errors\";s:13:\"navigation:97\";s:34:\"------ Top \'page not found\' errors\";s:14:\"navigation:121\";s:25:\"------ Top search phrases\";s:14:\"navigation:105\";s:24:\"------ Available updates\";s:13:\"navigation:48\";s:20:\"------ Status report\";s:13:\"navigation:15\";s:9:\"---- Help\";s:12:\"navigation:4\";s:10:\"-- Log out\";s:15:\"primary-links:0\";s:15:\"<Primary links>\";s:17:\"menu-right-menu:0\";s:12:\"<Right Menu>\";s:19:\"menu-right-menu:496\";s:28:\"-- Financial Calculator Tool\";s:19:\"menu-right-menu:497\";s:21:\"-- News Story Library\";s:19:\"menu-right-menu:498\";s:14:\"-- Latest News\";s:19:\"menu-right-menu:499\";s:25:\"-- SREC Management Portal\";s:17:\"secondary-links:0\";s:17:\"<Secondary links>\";}s:12:\"#description\";s:156:\"The maximum depth for an item and all its children is fixed at 9. Some menu items may not be available as parents if selecting them would exceed this limit.\";s:11:\"#attributes\";a:1:{s:5:\"class\";s:17:\"menu-title-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:1:\"0\";s:12:\"#description\";s:107:\"Optional. In the menu, the heavier items will sink and the lighter items will be positioned nearer the top.\";}}s:7:\"#submit\";a:2:{i:0;s:21:\"menu_node_form_submit\";i:1;s:29:\"image_attach_node_form_submit\";}s:4:\"path\";a:10:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:17:\"URL path settings\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:0;s:7:\"#access\";b:1;s:7:\"#weight\";i:30;s:4:\"path\";a:6:{s:5:\"#type\";s:9:\"textfield\";s:14:\"#default_value\";s:20:\"banner/banner-2-uspv\";s:10:\"#maxlength\";i:128;s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:12:\"#description\";s:207:\"Optionally specify an alternative URL by which this node 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\";s:1:\"8\";}s:22:\"pathauto_perform_alias\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:15:\"Automatic alias\";s:14:\"#default_value\";b:1;s:12:\"#description\";s:238:\"An alias will be generated for you. If you wish to create your own alias below, uncheck this option. To control the format of the generated aliases, see the <a href=\"/~uspvinc/main2/admin/build/path/pathauto\">automated alias settings</a>.\";s:7:\"#weight\";i:-1;}s:9:\"old_alias\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:20:\"banner/banner-2-uspv\";}}s:11:\"#pre_render\";a:1:{i:0;s:27:\"content_alter_extra_weights\";}s:21:\"#content_extra_fields\";a:7:{s:5:\"title\";a:3:{s:5:\"label\";s:5:\"Title\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";s:2:\"-5\";}s:10:\"body_field\";a:4:{s:5:\"label\";s:4:\"Body\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";s:2:\"-2\";s:4:\"view\";s:4:\"body\";}s:20:\"revision_information\";a:3:{s:5:\"label\";s:20:\"Revision information\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";s:2:\"-1\";}s:16:\"comment_settings\";a:3:{s:5:\"label\";s:16:\"Comment settings\";s:11:\"description\";s:20:\"Comment module form.\";s:6:\"weight\";s:1:\"0\";}s:4:\"menu\";a:3:{s:5:\"label\";s:13:\"Menu settings\";s:11:\"description\";s:17:\"Menu module form.\";s:6:\"weight\";s:2:\"-4\";}s:4:\"path\";a:3:{s:5:\"label\";s:13:\"Path settings\";s:11:\"description\";s:17:\"Path module form.\";s:6:\"weight\";i:30;}s:12:\"image_attach\";a:3:{s:5:\"label\";s:15:\"Attached images\";s:11:\"description\";s:25:\"Image Attach module form.\";s:6:\"weight\";s:2:\"-3\";}}s:12:\"image_attach\";a:10:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:15:\"Attached images\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:0;s:12:\"#description\";s:23:\"You may attach 1 image.\";s:15:\"image_thumbnail\";a:1:{i:7;a:3:{s:5:\"#type\";s:4:\"item\";s:6:\"#title\";s:9:\"Thumbnail\";s:6:\"#value\";s:210:\"<img src=\"http://www.powerstormtech.com/~uspvinc/main2/sites/default/files/images/banner-2.thumbnail.png\" alt=\"banner 2 - USPV\" title=\"banner 2 - USPV\"  class=\"image image-thumbnail \" width=\"100\" height=\"36\" />\";}}s:4:\"iids\";a:7:{s:5:\"#type\";s:6:\"select\";s:14:\"#default_value\";a:1:{i:0;s:1:\"7\";}s:9:\"#multiple\";b:1;s:5:\"#size\";i:6;s:6:\"#title\";s:15:\"Existing images\";s:8:\"#options\";a:4:{i:0;s:8:\"- None -\";i:1;s:15:\"banner 1 - USPV\";i:7;s:15:\"banner 2 - USPV\";i:9;s:15:\"banner 3 - USPV\";}s:12:\"#description\";s:54:\"Choose existing images if you do not upload a new one.\";}s:5:\"image\";a:2:{s:5:\"#type\";s:4:\"file\";s:6:\"#title\";s:12:\"Upload image\";}s:11:\"image_title\";a:4:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:11:\"Image title\";s:14:\"#default_value\";s:0:\"\";s:12:\"#description\";s:72:\"The title the image will be shown with. Leave blank to use the filename.\";}s:21:\"image_attach_multiple\";a:4:{s:5:\"#type\";s:6:\"submit\";s:6:\"#value\";s:6:\"Attach\";s:9:\"#validate\";a:1:{i:0;s:21:\"image_attach_validate\";}s:7:\"#submit\";a:1:{i:0;s:29:\"image_attach_image_add_submit\";}}}s:12:\"#cache_token\";s:32:\"ea05954e6208c2bed552f97e30d1dad3\";}',1285708436,1285686836,'',1),('form_form-8a9d3c34e0d21b6dd4347b2d607fed2a','a:40:{s:3:\"#id\";s:9:\"node-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:\"1265202538\";}s:4:\"type\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:4:\"page\";}s:8:\"language\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:0:\"\";}s:7:\"changed\";a:2:{s:5:\"#type\";s:6:\"hidden\";s:14:\"#default_value\";s:10:\"1285684275\";}s:5:\"title\";a:6:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:5:\"Title\";s:9:\"#required\";b:1;s:14:\"#default_value\";s:9:\"resources\";s:10:\"#maxlength\";i:255;s:7:\"#weight\";i:-5;}s:10:\"body_field\";a:7:{s:12:\"#after_build\";a:2:{i:0;s:14:\"node_teaser_js\";i:1;s:26:\"node_teaser_include_verify\";}s:7:\"#prefix\";s:32:\"<div class=\"body-field-wrapper\">\";s:7:\"#suffix\";s:6:\"</div>\";s:9:\"teaser_js\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:5:\"#rows\";i:10;s:7:\"#teaser\";s:9:\"edit-body\";s:16:\"#teaser_checkbox\";s:19:\"edit-teaser-include\";s:9:\"#disabled\";b:1;}s:14:\"teaser_include\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:25:\"Show summary in full view\";s:14:\"#default_value\";b:1;s:7:\"#prefix\";s:29:\"<div class=\"teaser-checkbox\">\";s:7:\"#suffix\";s:6:\"</div>\";}s:4:\"body\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:4:\"Body\";s:14:\"#default_value\";s:1102:\"<h2>Internet Resources</h2>\r\n \r\nFrom the Database of State Incentives for Renewables and Efficiency (DSIRE.org):\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/statesearch2.cfm?State=US&back=fintab&CurrentPageID=7&Search=TableState&EE=1&RE=1\">Federal Incentives for Solar PV</a>\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&State=MD&RE=1&EE=1\">Maryland Incentives for Solar PV</a>\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&State=DC&RE=1&EE=1\">District of Columbia Incentives for Solar PV</a>\r\n\r\n<h2>Industry Organizations</h2>\r\n\r\n<a href=\"http://www.ases.org/\">American Solar Energy Society</a>   Professional Member\r\n\r\n<a href=\"http://www.mdv-seia.org/\">Maryland-DC-Virginia Solar Energy Industries Association</a>   Professional Member\r\n  \r\n<h2>Contact Us</h2>\r\n<p>\r\nTelephone: 240-344-2657\r\n</p>\r\n<p>\r\nEmail:\r\n\r\n          Sales: sales@uspvinc.com\r\n\r\n          Customer Service: support@uspvinc.com\r\n\r\n          Other Inquiries:  info@uspvinc.com\r\n</p>\r\n<p>\r\nPostal Address: 4539 Metropolitan Court, Frederick MD  21704\r\n</p>\";s:5:\"#rows\";i:20;s:9:\"#required\";b:0;}s:6:\"format\";a:9:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:12:\"Input format\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:7:\"#weight\";N;s:17:\"#element_validate\";a:1:{i:0;s:20:\"filter_form_validate\";}i:1;a:7:{s:5:\"#type\";s:5:\"radio\";s:6:\"#title\";s:13:\"Filtered HTML\";s:14:\"#default_value\";s:1:\"2\";s:13:\"#return_value\";s:1:\"1\";s:8:\"#parents\";a:1:{i:0;s:6:\"format\";}s:12:\"#description\";s:306:\"<ul class=\"tips\"><li>Web page addresses and e-mail addresses turn into links automatically.</li><li>Allowed HTML tags: &lt;a&gt; &lt;em&gt; &lt;strong&gt; &lt;cite&gt; &lt;code&gt; &lt;ul&gt; &lt;ol&gt; &lt;li&gt; &lt;dl&gt; &lt;dt&gt; &lt;dd&gt;</li><li>Lines and paragraphs break automatically.</li></ul>\";s:3:\"#id\";s:13:\"edit-format-1\";}i:2;a:7:{s:5:\"#type\";s:5:\"radio\";s:6:\"#title\";s:9:\"Full HTML\";s:14:\"#default_value\";s:1:\"2\";s:13:\"#return_value\";s:1:\"2\";s:8:\"#parents\";a:1:{i:0;s:6:\"format\";}s:12:\"#description\";s:151:\"<ul class=\"tips\"><li>Web page addresses and e-mail addresses turn into links automatically.</li><li>Lines and paragraphs break automatically.</li></ul>\";s:3:\"#id\";s:13:\"edit-format-2\";}i:3;a:1:{s:6:\"#value\";s:90:\"<p><a href=\"/~uspvinc/main2/filter/tips\">More information about formatting options</a></p>\";}}}s:5:\"#node\";O:8:\"stdClass\":33:{s:3:\"nid\";s:1:\"4\";s:4:\"type\";s:4:\"page\";s:8:\"language\";s:0:\"\";s:3:\"uid\";s:1:\"1\";s:6:\"status\";s:1:\"1\";s:7:\"created\";s:10:\"1265202538\";s:7:\"changed\";s:10:\"1285684275\";s:7:\"comment\";s:1:\"0\";s:7:\"promote\";s:1:\"0\";s:8:\"moderate\";s:1:\"0\";s:6:\"sticky\";s:1:\"0\";s:4:\"tnid\";s:1:\"0\";s:9:\"translate\";s:1:\"0\";s:3:\"vid\";s:1:\"4\";s:12:\"revision_uid\";s:1:\"1\";s:5:\"title\";s:9:\"resources\";s:4:\"body\";s:1102:\"<h2>Internet Resources</h2>\r\n \r\nFrom the Database of State Incentives for Renewables and Efficiency (DSIRE.org):\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/statesearch2.cfm?State=US&back=fintab&CurrentPageID=7&Search=TableState&EE=1&RE=1\">Federal Incentives for Solar PV</a>\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&State=MD&RE=1&EE=1\">Maryland Incentives for Solar PV</a>\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&State=DC&RE=1&EE=1\">District of Columbia Incentives for Solar PV</a>\r\n\r\n<h2>Industry Organizations</h2>\r\n\r\n<a href=\"http://www.ases.org/\">American Solar Energy Society</a>   Professional Member\r\n\r\n<a href=\"http://www.mdv-seia.org/\">Maryland-DC-Virginia Solar Energy Industries Association</a>   Professional Member\r\n  \r\n<h2>Contact Us</h2>\r\n<p>\r\nTelephone: 240-344-2657\r\n</p>\r\n<p>\r\nEmail:\r\n\r\n          Sales: sales@uspvinc.com\r\n\r\n          Customer Service: support@uspvinc.com\r\n\r\n          Other Inquiries:  info@uspvinc.com\r\n</p>\r\n<p>\r\nPostal Address: 4539 Metropolitan Court, Frederick MD  21704\r\n</p>\";s:6:\"teaser\";s:569:\"<h2>Internet Resources</h2>\r\n \r\nFrom the Database of State Incentives for Renewables and Efficiency (DSIRE.org):\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/statesearch2.cfm?State=US&back=fintab&CurrentPageID=7&Search=TableState&EE=1&RE=1\">Federal Incentives for Solar PV</a>\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&State=MD&RE=1&EE=1\">Maryland Incentives for Solar PV</a>\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&State=DC&RE=1&EE=1\">District of Columbia Incentives for Solar PV</a>\r\n\r\";s:3:\"log\";N;s:18:\"revision_timestamp\";s:10:\"1285684275\";s:6:\"format\";s:1:\"2\";s:4:\"name\";s:5:\"admin\";s:7:\"picture\";s:0:\"\";s:4:\"data\";s:6:\"a:0:{}\";s:4:\"path\";s:9:\"resources\";s:22:\"last_comment_timestamp\";s:10:\"1265202538\";s:17:\"last_comment_name\";N;s:13:\"comment_count\";s:1:\"0\";s:8:\"taxonomy\";a:0:{}s:4:\"date\";s:25:\"2010-02-03 21:08:58 +0800\";s:8:\"revision\";b:0;s:4:\"menu\";a:48:{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:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:3:\"fit\";s:1:\"2\";s:12:\"number_parts\";s:1:\"2\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:9:\"resources\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:4:\"type\";s:1:\"4\";s:14:\"block_callback\";s:0:\"\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"0\";s:4:\"file\";s:0:\"\";s:9:\"menu_name\";s:14:\"menu-main-menu\";s:4:\"mlid\";s:3:\"284\";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:9:\"resources\";s:7:\"options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:9:\"resources\";}}s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"284\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:4:\"href\";s:6:\"node/4\";s:6:\"access\";b:1;s:17:\"localized_options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:9:\"resources\";}}s:18:\"parent_depth_limit\";i:8;}s:22:\"pathauto_perform_alias\";b:1;}s:20:\"revision_information\";a:7:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:20:\"Revision information\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:7:\"#weight\";i:20;s:8:\"revision\";a:4:{s:7:\"#access\";b:1;s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:19:\"Create new revision\";s:14:\"#default_value\";b:0;}s:3:\"log\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:11:\"Log message\";s:14:\"#default_value\";s:0:\"\";s:5:\"#rows\";i:2;s:12:\"#description\";s:104:\"An explanation of the additions or updates being made to help other authors understand your motivations.\";}}s:6:\"author\";a:8:{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:7:\"#weight\";i:20;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:35:\"Leave blank for <em>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:91:\"Format: <em>2010-02-03 21:08:58 +0800</em>. Leave blank to use the time of form submission.\";s:14:\"#default_value\";s:25:\"2010-02-03 21:08:58 +0800\";}}s:7:\"options\";a:9:{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:7:\"#weight\";i:25;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:\"buttons\";a:3:{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:16:\"node_form_submit\";}}s:7:\"preview\";a:4:{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:6:\"#theme\";a:2:{i:0;s:14:\"page_node_form\";i:1;s:9:\"node_form\";}s:11:\"#parameters\";a:3:{i:0;s:14:\"page_node_form\";i:1;a:3:{s:7:\"storage\";N;s:9:\"submitted\";b:0;s:4:\"post\";a:0:{}}i:2;r:83;}s:9:\"#build_id\";s:37:\"form-8a9d3c34e0d21b6dd4347b2d607fed2a\";s:5:\"#type\";s:4:\"form\";s:11:\"#programmed\";b:0;s:13:\"form_build_id\";a:4:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:37:\"form-8a9d3c34e0d21b6dd4347b2d607fed2a\";s:3:\"#id\";s:37:\"form-8a9d3c34e0d21b6dd4347b2d607fed2a\";s:5:\"#name\";s:13:\"form_build_id\";}s:6:\"#token\";s:14:\"page_node_form\";s:10:\"form_token\";a:3:{s:3:\"#id\";s:30:\"edit-page-node-form-form-token\";s:5:\"#type\";s:5:\"token\";s:14:\"#default_value\";s:32:\"69ee9cfa6b6366390575effcb3429c15\";}s:7:\"form_id\";a:3:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:14:\"page_node_form\";s:3:\"#id\";s:19:\"edit-page-node-form\";}s:12:\"#description\";N;s:11:\"#attributes\";a:0:{}s:9:\"#required\";b:0;s:5:\"#tree\";b:0;s:8:\"#parents\";a:0:{}s:7:\"#method\";s:4:\"post\";s:7:\"#action\";s:27:\"/~uspvinc/main2/node/4/edit\";s:16:\"comment_settings\";a:7:{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:7:\"#weight\";i:30;s:7:\"comment\";a:4:{s:5:\"#type\";s:6:\"radios\";s:8:\"#parents\";a:1:{i:0;s:7:\"comment\";}s:14:\"#default_value\";s:1:\"0\";s:8:\"#options\";a:3:{i:0;s:8:\"Disabled\";i:1;s:9:\"Read only\";i:2;s:10:\"Read/Write\";}}}s:6:\"#cache\";b:1;s:4:\"menu\";a:21:{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:5:\"#tree\";b:1;s:7:\"#weight\";i:-2;s:11:\"#attributes\";a:1:{s:5:\"class\";s:14:\"menu-item-form\";}s:6:\"delete\";a:2:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:22:\"Delete this menu item.\";}s:4:\"mlid\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:3:\"284\";}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\";s:1:\"1\";}s:7:\"options\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:9:\"resources\";}}}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:5:\"#item\";a:48:{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:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:3:\"fit\";s:1:\"2\";s:12:\"number_parts\";s:1:\"2\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:9:\"resources\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:4:\"type\";s:1:\"4\";s:14:\"block_callback\";s:0:\"\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"0\";s:4:\"file\";s:0:\"\";s:9:\"menu_name\";s:14:\"menu-main-menu\";s:4:\"mlid\";s:3:\"284\";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:9:\"resources\";s:7:\"options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:9:\"resources\";}}s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"284\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:4:\"href\";s:6:\"node/4\";s:6:\"access\";b:1;s:17:\"localized_options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:9:\"resources\";}}s:18:\"parent_depth_limit\";i:8;}s:10:\"link_title\";a:5:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:15:\"Menu link title\";s:14:\"#default_value\";s:9:\"resources\";s:12:\"#description\";s:133:\"The link text corresponding to this item that should appear in the menu. Leave blank if you do not wish to add this post to the menu.\";s:9:\"#required\";b:0;}s:6:\"parent\";a:6:{s:5:\"#type\";s:6:\"select\";s:6:\"#title\";s:11:\"Parent item\";s:14:\"#default_value\";s:16:\"menu-main-menu:0\";s:8:\"#options\";a:95:{s:16:\"menu-main-menu:0\";s:11:\"<Main Menu>\";s:18:\"menu-main-menu:283\";s:8:\"-- about\";s:18:\"menu-main-menu:285\";s:11:\"-- services\";s:18:\"menu-main-menu:286\";s:17:\"-- special offers\";s:12:\"navigation:0\";s:12:\"<Navigation>\";s:12:\"navigation:9\";s:26:\"-- Compose tips (disabled)\";s:14:\"navigation:461\";s:29:\"-- Image galleries (disabled)\";s:13:\"navigation:21\";s:13:\"-- My account\";s:14:\"navigation:114\";s:20:\"-- Search (disabled)\";s:14:\"navigation:244\";s:22:\"-- Site map (disabled)\";s:13:\"navigation:11\";s:17:\"-- Create content\";s:14:\"navigation:476\";s:11:\"---- Banner\";s:14:\"navigation:441\";s:10:\"---- Image\";s:14:\"navigation:289\";s:21:\"---- Newsletter issue\";s:14:\"navigation:106\";s:9:\"---- Page\";s:14:\"navigation:388\";s:10:\"---- Panel\";s:14:\"navigation:107\";s:10:\"---- Story\";s:12:\"navigation:2\";s:13:\"-- Administer\";s:13:\"navigation:10\";s:23:\"---- Content management\";s:13:\"navigation:27\";s:15:\"------ Comments\";s:13:\"navigation:28\";s:14:\"------ Content\";s:13:\"navigation:29\";s:20:\"------ Content types\";s:14:\"navigation:462\";s:22:\"------ Image galleries\";s:14:\"navigation:463\";s:19:\"------ Image import\";s:14:\"navigation:538\";s:18:\"------ Newsletters\";s:14:\"navigation:546\";s:20:\"-------- Sent issues\";s:14:\"navigation:541\";s:21:\"-------- Draft issues\";s:14:\"navigation:544\";s:20:\"-------- Newsletters\";s:14:\"navigation:548\";s:22:\"-------- Subscriptions\";s:13:\"navigation:42\";s:20:\"------ Post settings\";s:13:\"navigation:43\";s:21:\"------ RSS publishing\";s:13:\"navigation:94\";s:15:\"------ Taxonomy\";s:13:\"navigation:17\";s:18:\"---- Site building\";s:13:\"navigation:25\";s:13:\"------ Blocks\";s:14:\"navigation:424\";s:20:\"------ Bulk Exporter\";s:13:\"navigation:38\";s:12:\"------ Menus\";s:14:\"navigation:282\";s:18:\"-------- Main Menu\";s:13:\"navigation:89\";s:19:\"-------- Navigation\";s:13:\"navigation:90\";s:22:\"-------- Primary links\";s:14:\"navigation:495\";s:19:\"-------- Right Menu\";s:13:\"navigation:91\";s:24:\"-------- Secondary links\";s:14:\"navigation:387\";s:18:\"------ Mini panels\";s:13:\"navigation:39\";s:14:\"------ Modules\";s:14:\"navigation:412\";s:12:\"------ Pages\";s:14:\"navigation:360\";s:13:\"------ Panels\";s:13:\"navigation:49\";s:13:\"------ Themes\";s:14:\"navigation:335\";s:15:\"------ Triggers\";s:14:\"navigation:501\";s:18:\"------ URL aliases\";s:14:\"navigation:257\";s:12:\"------ Views\";s:13:\"navigation:18\";s:23:\"---- Site configuration\";s:13:\"navigation:23\";s:14:\"------ Actions\";s:14:\"navigation:119\";s:26:\"------ Administration menu\";s:13:\"navigation:24\";s:27:\"------ Administration theme\";s:13:\"navigation:26\";s:17:\"------ Clean URLs\";s:13:\"navigation:30\";s:20:\"------ Date and time\";s:13:\"navigation:33\";s:22:\"------ Error reporting\";s:13:\"navigation:34\";s:18:\"------ File system\";s:13:\"navigation:35\";s:20:\"------ Image toolkit\";s:14:\"navigation:442\";s:13:\"------ Images\";s:13:\"navigation:36\";s:20:\"------ Input formats\";s:13:\"navigation:37\";s:25:\"------ Logging and alerts\";s:14:\"navigation:100\";s:25:\"-------- Database logging\";s:14:\"navigation:245\";s:17:\"------ Nice Menus\";s:13:\"navigation:40\";s:18:\"------ Performance\";s:14:\"navigation:120\";s:22:\"------ Search settings\";s:14:\"navigation:539\";s:17:\"------ Simplenews\";s:14:\"navigation:542\";s:16:\"-------- General\";s:14:\"navigation:543\";s:19:\"-------- Newsletter\";s:14:\"navigation:547\";s:21:\"-------- Subscription\";s:14:\"navigation:545\";s:18:\"-------- Send mail\";s:13:\"navigation:46\";s:23:\"------ Site information\";s:13:\"navigation:47\";s:23:\"------ Site maintenance\";s:14:\"navigation:246\";s:15:\"------ Site map\";s:13:\"navigation:20\";s:20:\"---- User management\";s:13:\"navigation:22\";s:19:\"------ Access rules\";s:13:\"navigation:41\";s:18:\"------ Permissions\";s:13:\"navigation:45\";s:12:\"------ Roles\";s:13:\"navigation:50\";s:20:\"------ User settings\";s:13:\"navigation:51\";s:12:\"------ Users\";s:13:\"navigation:16\";s:12:\"---- Reports\";s:13:\"navigation:93\";s:25:\"------ Recent log entries\";s:13:\"navigation:96\";s:33:\"------ Top \'access denied\' errors\";s:13:\"navigation:97\";s:34:\"------ Top \'page not found\' errors\";s:14:\"navigation:121\";s:25:\"------ Top search phrases\";s:14:\"navigation:105\";s:24:\"------ Available updates\";s:13:\"navigation:48\";s:20:\"------ Status report\";s:13:\"navigation:15\";s:9:\"---- Help\";s:12:\"navigation:4\";s:10:\"-- Log out\";s:15:\"primary-links:0\";s:15:\"<Primary links>\";s:17:\"menu-right-menu:0\";s:12:\"<Right Menu>\";s:19:\"menu-right-menu:496\";s:28:\"-- Financial Calculator Tool\";s:19:\"menu-right-menu:497\";s:21:\"-- News Story Library\";s:19:\"menu-right-menu:498\";s:14:\"-- Latest News\";s:19:\"menu-right-menu:499\";s:25:\"-- SREC Management Portal\";s:17:\"secondary-links:0\";s:17:\"<Secondary links>\";}s:12:\"#description\";s:156:\"The maximum depth for an item and all its children is fixed at 9. Some menu items may not be available as parents if selecting them would exceed this limit.\";s:11:\"#attributes\";a:1:{s:5:\"class\";s:17:\"menu-title-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:1:\"0\";s:12:\"#description\";s:107:\"Optional. In the menu, the heavier items will sink and the lighter items will be positioned nearer the top.\";}}s:7:\"#submit\";a:1:{i:0;s:21:\"menu_node_form_submit\";}s:4:\"path\";a:10:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:17:\"URL path settings\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:0;s:7:\"#access\";b:1;s:7:\"#weight\";i:30;s:4:\"path\";a:6:{s:5:\"#type\";s:9:\"textfield\";s:14:\"#default_value\";s:9:\"resources\";s:10:\"#maxlength\";i:128;s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:12:\"#description\";s:207:\"Optionally specify an alternative URL by which this node 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\";s:1:\"4\";}s:22:\"pathauto_perform_alias\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:15:\"Automatic alias\";s:14:\"#default_value\";b:1;s:12:\"#description\";s:238:\"An alias will be generated for you. If you wish to create your own alias below, uncheck this option. To control the format of the generated aliases, see the <a href=\"/~uspvinc/main2/admin/build/path/pathauto\">automated alias settings</a>.\";s:7:\"#weight\";i:-1;}s:9:\"old_alias\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:9:\"resources\";}}s:11:\"#pre_render\";a:1:{i:0;s:27:\"content_alter_extra_weights\";}s:21:\"#content_extra_fields\";a:6:{s:5:\"title\";a:3:{s:5:\"label\";s:5:\"Title\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:-5;}s:10:\"body_field\";a:4:{s:5:\"label\";s:4:\"Body\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:0;s:4:\"view\";s:4:\"body\";}s:20:\"revision_information\";a:3:{s:5:\"label\";s:20:\"Revision information\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:20;}s:16:\"comment_settings\";a:3:{s:5:\"label\";s:16:\"Comment settings\";s:11:\"description\";s:20:\"Comment module form.\";s:6:\"weight\";i:30;}s:4:\"menu\";a:3:{s:5:\"label\";s:13:\"Menu settings\";s:11:\"description\";s:17:\"Menu module form.\";s:6:\"weight\";i:-2;}s:4:\"path\";a:3:{s:5:\"label\";s:13:\"Path settings\";s:11:\"description\";s:17:\"Path module form.\";s:6:\"weight\";i:30;}}s:12:\"#cache_token\";s:32:\"ea05954e6208c2bed552f97e30d1dad3\";}',1285708463,1285686863,'',1),('form_form-53551ceb3ae53b6278d46a737365b1aa','a:44:{s:3:\"#id\";s:9:\"node-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:1285686879;}s:4:\"type\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:5:\"image\";}s:8:\"language\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:0:\"\";}s:7:\"changed\";a:2:{s:5:\"#type\";s:6:\"hidden\";s:14:\"#default_value\";N;}s:9:\"#validate\";a:2:{i:0;s:19:\"image_form_validate\";i:1;s:18:\"node_form_validate\";}s:7:\"#submit\";a:2:{i:0;s:17:\"image_form_submit\";i:1;s:21:\"menu_node_form_submit\";}s:5:\"title\";a:7:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:5:\"Title\";s:5:\"#size\";i:60;s:10:\"#maxlength\";i:128;s:9:\"#required\";b:1;s:14:\"#default_value\";N;s:7:\"#weight\";i:-5;}s:6:\"images\";a:4:{s:5:\"#tree\";b:1;s:9:\"_original\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:0:\"\";}s:9:\"thumbnail\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:0:\"\";}s:7:\"preview\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:0:\"\";}}s:8:\"new_file\";a:2:{s:5:\"#type\";s:5:\"value\";s:14:\"#default_value\";b:0;}s:11:\"#attributes\";a:1:{s:7:\"enctype\";s:19:\"multipart/form-data\";}s:5:\"image\";a:5:{s:7:\"#prefix\";s:33:\"<div class=\"image-field-wrapper\">\";s:7:\"#suffix\";s:6:\"</div>\";s:9:\"thumbnail\";a:2:{s:5:\"#type\";s:4:\"item\";s:12:\"#after_build\";a:1:{i:0;s:24:\"image_form_add_thumbnail\";}}s:5:\"image\";a:4:{s:5:\"#type\";s:4:\"file\";s:6:\"#title\";s:5:\"Image\";s:5:\"#size\";i:40;s:12:\"#description\";s:26:\"Select an image to upload.\";}s:14:\"rebuild_images\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:25:\"Rebuild derivative images\";s:14:\"#default_value\";b:0;s:12:\"#description\";s:58:\"Check this to rebuild the derivative images for this node.\";s:7:\"#access\";b:0;}}s:10:\"body_field\";a:7:{s:12:\"#after_build\";a:2:{i:0;s:14:\"node_teaser_js\";i:1;s:26:\"node_teaser_include_verify\";}s:7:\"#prefix\";s:32:\"<div class=\"body-field-wrapper\">\";s:7:\"#suffix\";s:6:\"</div>\";s:9:\"teaser_js\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:5:\"#rows\";i:10;s:7:\"#teaser\";s:9:\"edit-body\";s:16:\"#teaser_checkbox\";s:19:\"edit-teaser-include\";s:9:\"#disabled\";b:1;}s:14:\"teaser_include\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:25:\"Show summary in full view\";s:14:\"#default_value\";b:1;s:7:\"#prefix\";s:29:\"<div class=\"teaser-checkbox\">\";s:7:\"#suffix\";s:6:\"</div>\";}s:4:\"body\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:4:\"Body\";s:14:\"#default_value\";N;s:5:\"#rows\";i:20;s:9:\"#required\";b:0;}s:6:\"format\";a:9:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:12:\"Input format\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:7:\"#weight\";N;s:17:\"#element_validate\";a:1:{i:0;s:20:\"filter_form_validate\";}i:1;a:7:{s:5:\"#type\";s:5:\"radio\";s:6:\"#title\";s:13:\"Filtered HTML\";s:14:\"#default_value\";i:1;s:13:\"#return_value\";s:1:\"1\";s:8:\"#parents\";a:1:{i:0;s:6:\"format\";}s:12:\"#description\";s:306:\"<ul class=\"tips\"><li>Web page addresses and e-mail addresses turn into links automatically.</li><li>Allowed HTML tags: &lt;a&gt; &lt;em&gt; &lt;strong&gt; &lt;cite&gt; &lt;code&gt; &lt;ul&gt; &lt;ol&gt; &lt;li&gt; &lt;dl&gt; &lt;dt&gt; &lt;dd&gt;</li><li>Lines and paragraphs break automatically.</li></ul>\";s:3:\"#id\";s:13:\"edit-format-1\";}i:2;a:7:{s:5:\"#type\";s:5:\"radio\";s:6:\"#title\";s:9:\"Full HTML\";s:14:\"#default_value\";i:1;s:13:\"#return_value\";s:1:\"2\";s:8:\"#parents\";a:1:{i:0;s:6:\"format\";}s:12:\"#description\";s:151:\"<ul class=\"tips\"><li>Web page addresses and e-mail addresses turn into links automatically.</li><li>Lines and paragraphs break automatically.</li></ul>\";s:3:\"#id\";s:13:\"edit-format-2\";}i:3;a:1:{s:6:\"#value\";s:90:\"<p><a href=\"/~uspvinc/main2/filter/tips\">More information about formatting options</a></p>\";}}}s:5:\"#node\";O:8:\"stdClass\":15:{s:3:\"uid\";s:1:\"1\";s:4:\"name\";s:5:\"admin\";s:4:\"type\";s:5:\"image\";s:8:\"language\";s:0:\"\";s:4:\"body\";N;s:5:\"title\";N;s:6:\"format\";N;s:6:\"status\";b:1;s:7:\"promote\";b:0;s:6:\"sticky\";b:0;s:7:\"created\";i:1285686879;s:8:\"revision\";b:0;s:7:\"comment\";i: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:13:\"primary-links\";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:22:\"pathauto_perform_alias\";b:1;}s:20:\"revision_information\";a:7:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:20:\"Revision information\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:7:\"#weight\";i:20;s:8:\"revision\";a:4:{s:7:\"#access\";b:1;s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:19:\"Create new revision\";s:14:\"#default_value\";b:0;}s:3:\"log\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:11:\"Log message\";s:14:\"#default_value\";s:0:\"\";s:5:\"#rows\";i:2;s:12:\"#description\";s:104:\"An explanation of the additions or updates being made to help other authors understand your motivations.\";}}s:6:\"author\";a:8:{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:7:\"#weight\";i:20;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:35:\"Leave blank for <em>Anonymous</em>.\";}s:4:\"date\";a:4:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:11:\"Authored on\";s:10:\"#maxlength\";i:25;s:12:\"#description\";s:91:\"Format: <em>2010-09-28 23:14:39 +0800</em>. Leave blank to use the time of form submission.\";}}s:7:\"options\";a:9:{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:7:\"#weight\";i:25;s:6:\"status\";a:3:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:9:\"Published\";s:14:\"#default_value\";b: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\";b: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\";b:0;}}s:7:\"buttons\";a:2:{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:16:\"node_form_submit\";}}s:7:\"preview\";a:4:{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:\"#theme\";a:2:{i:0;s:15:\"image_node_form\";i:1;s:9:\"node_form\";}s:11:\"#parameters\";a:3:{i:0;s:15:\"image_node_form\";i:1;a:3:{s:7:\"storage\";N;s:9:\"submitted\";b:0;s:4:\"post\";a:0:{}}i:2;a:4:{s:3:\"uid\";s:1:\"1\";s:4:\"name\";s:5:\"admin\";s:4:\"type\";s:5:\"image\";s:8:\"language\";s:0:\"\";}}s:9:\"#build_id\";s:37:\"form-53551ceb3ae53b6278d46a737365b1aa\";s:5:\"#type\";s:4:\"form\";s:11:\"#programmed\";b:0;s:13:\"form_build_id\";a:4:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:37:\"form-53551ceb3ae53b6278d46a737365b1aa\";s:3:\"#id\";s:37:\"form-53551ceb3ae53b6278d46a737365b1aa\";s:5:\"#name\";s:13:\"form_build_id\";}s:6:\"#token\";s:15:\"image_node_form\";s:10:\"form_token\";a:3:{s:3:\"#id\";s:31:\"edit-image-node-form-form-token\";s:5:\"#type\";s:5:\"token\";s:14:\"#default_value\";s:32:\"2b44c59501c41906d4c0b325804495eb\";}s:7:\"form_id\";a:3:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:15:\"image_node_form\";s:3:\"#id\";s:20:\"edit-image-node-form\";}s:12:\"#description\";N;s:9:\"#required\";b:0;s:5:\"#tree\";b:0;s:8:\"#parents\";a:0:{}s:7:\"#method\";s:4:\"post\";s:7:\"#action\";s:30:\"/~uspvinc/main2/node/add/image\";s:16:\"comment_settings\";a:7:{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:7:\"#weight\";i:30;s:7:\"comment\";a:4:{s:5:\"#type\";s:6:\"radios\";s:8:\"#parents\";a:1:{i:0;s:7:\"comment\";}s:14:\"#default_value\";i:2;s:8:\"#options\";a:3:{i:0;s:8:\"Disabled\";i:1;s:9:\"Read only\";i:2;s:10:\"Read/Write\";}}}s:6:\"#cache\";b:1;s:4:\"menu\";a:20:{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:5:\"#tree\";b:1;s:7:\"#weight\";i:-2;s:11:\"#attributes\";a:1:{s:5:\"class\";s:14:\"menu-item-form\";}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:0;}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:5:\"#item\";a:12:{s:10:\"link_title\";s:0:\"\";s:4:\"mlid\";i:0;s:4:\"plid\";i:0;s:9:\"menu_name\";s:13:\"primary-links\";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:10:\"link_title\";a:5:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:15:\"Menu link title\";s:14:\"#default_value\";s:0:\"\";s:12:\"#description\";s:133:\"The link text corresponding to this item that should appear in the menu. Leave blank if you do not wish to add this post to the menu.\";s:9:\"#required\";b:0;}s:6:\"parent\";a:6:{s:5:\"#type\";s:6:\"select\";s:6:\"#title\";s:11:\"Parent item\";s:14:\"#default_value\";s:15:\"primary-links:0\";s:8:\"#options\";a:96:{s:16:\"menu-main-menu:0\";s:11:\"<Main Menu>\";s:18:\"menu-main-menu:283\";s:8:\"-- about\";s:18:\"menu-main-menu:284\";s:12:\"-- resources\";s:18:\"menu-main-menu:285\";s:11:\"-- services\";s:18:\"menu-main-menu:286\";s:17:\"-- special offers\";s:12:\"navigation:0\";s:12:\"<Navigation>\";s:12:\"navigation:9\";s:26:\"-- Compose tips (disabled)\";s:14:\"navigation:461\";s:29:\"-- Image galleries (disabled)\";s:13:\"navigation:21\";s:13:\"-- My account\";s:14:\"navigation:114\";s:20:\"-- Search (disabled)\";s:14:\"navigation:244\";s:22:\"-- Site map (disabled)\";s:13:\"navigation:11\";s:17:\"-- Create content\";s:14:\"navigation:476\";s:11:\"---- Banner\";s:14:\"navigation:441\";s:10:\"---- Image\";s:14:\"navigation:289\";s:21:\"---- Newsletter issue\";s:14:\"navigation:106\";s:9:\"---- Page\";s:14:\"navigation:388\";s:10:\"---- Panel\";s:14:\"navigation:107\";s:10:\"---- Story\";s:12:\"navigation:2\";s:13:\"-- Administer\";s:13:\"navigation:10\";s:23:\"---- Content management\";s:13:\"navigation:27\";s:15:\"------ Comments\";s:13:\"navigation:28\";s:14:\"------ Content\";s:13:\"navigation:29\";s:20:\"------ Content types\";s:14:\"navigation:462\";s:22:\"------ Image galleries\";s:14:\"navigation:463\";s:19:\"------ Image import\";s:14:\"navigation:538\";s:18:\"------ Newsletters\";s:14:\"navigation:546\";s:20:\"-------- Sent issues\";s:14:\"navigation:541\";s:21:\"-------- Draft issues\";s:14:\"navigation:544\";s:20:\"-------- Newsletters\";s:14:\"navigation:548\";s:22:\"-------- Subscriptions\";s:13:\"navigation:42\";s:20:\"------ Post settings\";s:13:\"navigation:43\";s:21:\"------ RSS publishing\";s:13:\"navigation:94\";s:15:\"------ Taxonomy\";s:13:\"navigation:17\";s:18:\"---- Site building\";s:13:\"navigation:25\";s:13:\"------ Blocks\";s:14:\"navigation:424\";s:20:\"------ Bulk Exporter\";s:13:\"navigation:38\";s:12:\"------ Menus\";s:14:\"navigation:282\";s:18:\"-------- Main Menu\";s:13:\"navigation:89\";s:19:\"-------- Navigation\";s:13:\"navigation:90\";s:22:\"-------- Primary links\";s:14:\"navigation:495\";s:19:\"-------- Right Menu\";s:13:\"navigation:91\";s:24:\"-------- Secondary links\";s:14:\"navigation:387\";s:18:\"------ Mini panels\";s:13:\"navigation:39\";s:14:\"------ Modules\";s:14:\"navigation:412\";s:12:\"------ Pages\";s:14:\"navigation:360\";s:13:\"------ Panels\";s:13:\"navigation:49\";s:13:\"------ Themes\";s:14:\"navigation:335\";s:15:\"------ Triggers\";s:14:\"navigation:501\";s:18:\"------ URL aliases\";s:14:\"navigation:257\";s:12:\"------ Views\";s:13:\"navigation:18\";s:23:\"---- Site configuration\";s:13:\"navigation:23\";s:14:\"------ Actions\";s:14:\"navigation:119\";s:26:\"------ Administration menu\";s:13:\"navigation:24\";s:27:\"------ Administration theme\";s:13:\"navigation:26\";s:17:\"------ Clean URLs\";s:13:\"navigation:30\";s:20:\"------ Date and time\";s:13:\"navigation:33\";s:22:\"------ Error reporting\";s:13:\"navigation:34\";s:18:\"------ File system\";s:13:\"navigation:35\";s:20:\"------ Image toolkit\";s:14:\"navigation:442\";s:13:\"------ Images\";s:13:\"navigation:36\";s:20:\"------ Input formats\";s:13:\"navigation:37\";s:25:\"------ Logging and alerts\";s:14:\"navigation:100\";s:25:\"-------- Database logging\";s:14:\"navigation:245\";s:17:\"------ Nice Menus\";s:13:\"navigation:40\";s:18:\"------ Performance\";s:14:\"navigation:120\";s:22:\"------ Search settings\";s:14:\"navigation:539\";s:17:\"------ Simplenews\";s:14:\"navigation:542\";s:16:\"-------- General\";s:14:\"navigation:543\";s:19:\"-------- Newsletter\";s:14:\"navigation:547\";s:21:\"-------- Subscription\";s:14:\"navigation:545\";s:18:\"-------- Send mail\";s:13:\"navigation:46\";s:23:\"------ Site information\";s:13:\"navigation:47\";s:23:\"------ Site maintenance\";s:14:\"navigation:246\";s:15:\"------ Site map\";s:13:\"navigation:20\";s:20:\"---- User management\";s:13:\"navigation:22\";s:19:\"------ Access rules\";s:13:\"navigation:41\";s:18:\"------ Permissions\";s:13:\"navigation:45\";s:12:\"------ Roles\";s:13:\"navigation:50\";s:20:\"------ User settings\";s:13:\"navigation:51\";s:12:\"------ Users\";s:13:\"navigation:16\";s:12:\"---- Reports\";s:13:\"navigation:93\";s:25:\"------ Recent log entries\";s:13:\"navigation:96\";s:33:\"------ Top \'access denied\' errors\";s:13:\"navigation:97\";s:34:\"------ Top \'page not found\' errors\";s:14:\"navigation:121\";s:25:\"------ Top search phrases\";s:14:\"navigation:105\";s:24:\"------ Available updates\";s:13:\"navigation:48\";s:20:\"------ Status report\";s:13:\"navigation:15\";s:9:\"---- Help\";s:12:\"navigation:4\";s:10:\"-- Log out\";s:15:\"primary-links:0\";s:15:\"<Primary links>\";s:17:\"menu-right-menu:0\";s:12:\"<Right Menu>\";s:19:\"menu-right-menu:496\";s:28:\"-- Financial Calculator Tool\";s:19:\"menu-right-menu:497\";s:21:\"-- News Story Library\";s:19:\"menu-right-menu:498\";s:14:\"-- Latest News\";s:19:\"menu-right-menu:499\";s:25:\"-- SREC Management Portal\";s:17:\"secondary-links:0\";s:17:\"<Secondary links>\";}s:12:\"#description\";s:156:\"The maximum depth for an item and all its children is fixed at 9. Some menu items may not be available as parents if selecting them would exceed this limit.\";s:11:\"#attributes\";a:1:{s:5:\"class\";s:17:\"menu-title-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:107:\"Optional. In the menu, the heavier items will sink and the lighter items will be positioned nearer the top.\";}}s:4:\"path\";a:8:{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:7:\"#access\";b:1;s:7:\"#weight\";i:30;s:4:\"path\";a:6:{s:5:\"#type\";s:9:\"textfield\";s:14:\"#default_value\";N;s:10:\"#maxlength\";i:128;s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:12:\"#description\";s:207:\"Optionally specify an alternative URL by which this node 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:22:\"pathauto_perform_alias\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:15:\"Automatic alias\";s:14:\"#default_value\";b:1;s:12:\"#description\";s:238:\"An alias will be generated for you. If you wish to create your own alias below, uncheck this option. To control the format of the generated aliases, see the <a href=\"/~uspvinc/main2/admin/build/path/pathauto\">automated alias settings</a>.\";s:7:\"#weight\";i:-1;}}s:8:\"taxonomy\";a:3:{i:2;a:10:{s:5:\"#type\";s:6:\"select\";s:6:\"#title\";s:15:\"Image Galleries\";s:14:\"#default_value\";a:0:{}s:8:\"#options\";a:1:{s:0:\"\";s:17:\"- None selected -\";}s:12:\"#description\";s:0:\"\";s:9:\"#multiple\";i:0;s:5:\"#size\";i:0;s:7:\"#weight\";s:1:\"0\";s:6:\"#theme\";s:20:\"taxonomy_term_select\";s:9:\"#required\";s:1:\"0\";}s:7:\"#weight\";i:-3;s:5:\"#tree\";b:1;}s:11:\"#pre_render\";a:1:{i:0;s:27:\"content_alter_extra_weights\";}s:21:\"#content_extra_fields\";a:8:{s:5:\"title\";a:3:{s:5:\"label\";s:5:\"Title\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:-5;}s:10:\"body_field\";a:4:{s:5:\"label\";s:4:\"Body\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:0;s:4:\"view\";s:4:\"body\";}s:20:\"revision_information\";a:3:{s:5:\"label\";s:20:\"Revision information\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:20;}s:16:\"comment_settings\";a:3:{s:5:\"label\";s:16:\"Comment settings\";s:11:\"description\";s:20:\"Comment module form.\";s:6:\"weight\";i:30;}s:4:\"menu\";a:3:{s:5:\"label\";s:13:\"Menu settings\";s:11:\"description\";s:17:\"Menu module form.\";s:6:\"weight\";i:-2;}s:8:\"taxonomy\";a:3:{s:5:\"label\";s:8:\"Taxonomy\";s:11:\"description\";s:21:\"Taxonomy module form.\";s:6:\"weight\";i:-3;}s:4:\"path\";a:3:{s:5:\"label\";s:13:\"Path settings\";s:11:\"description\";s:17:\"Path module form.\";s:6:\"weight\";i:30;}s:5:\"image\";a:3:{s:5:\"label\";s:5:\"Image\";s:11:\"description\";s:14:\"Image display.\";s:6:\"weight\";i:0;}}s:12:\"#cache_token\";s:32:\"ea05954e6208c2bed552f97e30d1dad3\";}',1285708479,1285686879,'',1),('form_form-0410df206c17d82427415d081370f3d0','a:40:{s:3:\"#id\";s:9:\"node-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:\"1265202538\";}s:4:\"type\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:4:\"page\";}s:8:\"language\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:0:\"\";}s:7:\"changed\";a:2:{s:5:\"#type\";s:6:\"hidden\";s:14:\"#default_value\";s:10:\"1285684275\";}s:5:\"title\";a:6:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:5:\"Title\";s:9:\"#required\";b:1;s:14:\"#default_value\";s:9:\"resources\";s:10:\"#maxlength\";i:255;s:7:\"#weight\";i:-5;}s:10:\"body_field\";a:7:{s:12:\"#after_build\";a:2:{i:0;s:14:\"node_teaser_js\";i:1;s:26:\"node_teaser_include_verify\";}s:7:\"#prefix\";s:32:\"<div class=\"body-field-wrapper\">\";s:7:\"#suffix\";s:6:\"</div>\";s:9:\"teaser_js\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:5:\"#rows\";i:10;s:7:\"#teaser\";s:9:\"edit-body\";s:16:\"#teaser_checkbox\";s:19:\"edit-teaser-include\";s:9:\"#disabled\";b:1;}s:14:\"teaser_include\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:25:\"Show summary in full view\";s:14:\"#default_value\";b:1;s:7:\"#prefix\";s:29:\"<div class=\"teaser-checkbox\">\";s:7:\"#suffix\";s:6:\"</div>\";}s:4:\"body\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:4:\"Body\";s:14:\"#default_value\";s:1102:\"<h2>Internet Resources</h2>\r\n \r\nFrom the Database of State Incentives for Renewables and Efficiency (DSIRE.org):\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/statesearch2.cfm?State=US&back=fintab&CurrentPageID=7&Search=TableState&EE=1&RE=1\">Federal Incentives for Solar PV</a>\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&State=MD&RE=1&EE=1\">Maryland Incentives for Solar PV</a>\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&State=DC&RE=1&EE=1\">District of Columbia Incentives for Solar PV</a>\r\n\r\n<h2>Industry Organizations</h2>\r\n\r\n<a href=\"http://www.ases.org/\">American Solar Energy Society</a>   Professional Member\r\n\r\n<a href=\"http://www.mdv-seia.org/\">Maryland-DC-Virginia Solar Energy Industries Association</a>   Professional Member\r\n  \r\n<h2>Contact Us</h2>\r\n<p>\r\nTelephone: 240-344-2657\r\n</p>\r\n<p>\r\nEmail:\r\n\r\n          Sales: sales@uspvinc.com\r\n\r\n          Customer Service: support@uspvinc.com\r\n\r\n          Other Inquiries:  info@uspvinc.com\r\n</p>\r\n<p>\r\nPostal Address: 4539 Metropolitan Court, Frederick MD  21704\r\n</p>\";s:5:\"#rows\";i:20;s:9:\"#required\";b:0;}s:6:\"format\";a:9:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:12:\"Input format\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:7:\"#weight\";N;s:17:\"#element_validate\";a:1:{i:0;s:20:\"filter_form_validate\";}i:1;a:7:{s:5:\"#type\";s:5:\"radio\";s:6:\"#title\";s:13:\"Filtered HTML\";s:14:\"#default_value\";s:1:\"2\";s:13:\"#return_value\";s:1:\"1\";s:8:\"#parents\";a:1:{i:0;s:6:\"format\";}s:12:\"#description\";s:306:\"<ul class=\"tips\"><li>Web page addresses and e-mail addresses turn into links automatically.</li><li>Allowed HTML tags: &lt;a&gt; &lt;em&gt; &lt;strong&gt; &lt;cite&gt; &lt;code&gt; &lt;ul&gt; &lt;ol&gt; &lt;li&gt; &lt;dl&gt; &lt;dt&gt; &lt;dd&gt;</li><li>Lines and paragraphs break automatically.</li></ul>\";s:3:\"#id\";s:13:\"edit-format-1\";}i:2;a:7:{s:5:\"#type\";s:5:\"radio\";s:6:\"#title\";s:9:\"Full HTML\";s:14:\"#default_value\";s:1:\"2\";s:13:\"#return_value\";s:1:\"2\";s:8:\"#parents\";a:1:{i:0;s:6:\"format\";}s:12:\"#description\";s:151:\"<ul class=\"tips\"><li>Web page addresses and e-mail addresses turn into links automatically.</li><li>Lines and paragraphs break automatically.</li></ul>\";s:3:\"#id\";s:13:\"edit-format-2\";}i:3;a:1:{s:6:\"#value\";s:90:\"<p><a href=\"/~uspvinc/main2/filter/tips\">More information about formatting options</a></p>\";}}}s:5:\"#node\";O:8:\"stdClass\":33:{s:3:\"nid\";s:1:\"4\";s:4:\"type\";s:4:\"page\";s:8:\"language\";s:0:\"\";s:3:\"uid\";s:1:\"1\";s:6:\"status\";s:1:\"1\";s:7:\"created\";s:10:\"1265202538\";s:7:\"changed\";s:10:\"1285684275\";s:7:\"comment\";s:1:\"0\";s:7:\"promote\";s:1:\"0\";s:8:\"moderate\";s:1:\"0\";s:6:\"sticky\";s:1:\"0\";s:4:\"tnid\";s:1:\"0\";s:9:\"translate\";s:1:\"0\";s:3:\"vid\";s:1:\"4\";s:12:\"revision_uid\";s:1:\"1\";s:5:\"title\";s:9:\"resources\";s:4:\"body\";s:1102:\"<h2>Internet Resources</h2>\r\n \r\nFrom the Database of State Incentives for Renewables and Efficiency (DSIRE.org):\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/statesearch2.cfm?State=US&back=fintab&CurrentPageID=7&Search=TableState&EE=1&RE=1\">Federal Incentives for Solar PV</a>\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&State=MD&RE=1&EE=1\">Maryland Incentives for Solar PV</a>\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&State=DC&RE=1&EE=1\">District of Columbia Incentives for Solar PV</a>\r\n\r\n<h2>Industry Organizations</h2>\r\n\r\n<a href=\"http://www.ases.org/\">American Solar Energy Society</a>   Professional Member\r\n\r\n<a href=\"http://www.mdv-seia.org/\">Maryland-DC-Virginia Solar Energy Industries Association</a>   Professional Member\r\n  \r\n<h2>Contact Us</h2>\r\n<p>\r\nTelephone: 240-344-2657\r\n</p>\r\n<p>\r\nEmail:\r\n\r\n          Sales: sales@uspvinc.com\r\n\r\n          Customer Service: support@uspvinc.com\r\n\r\n          Other Inquiries:  info@uspvinc.com\r\n</p>\r\n<p>\r\nPostal Address: 4539 Metropolitan Court, Frederick MD  21704\r\n</p>\";s:6:\"teaser\";s:569:\"<h2>Internet Resources</h2>\r\n \r\nFrom the Database of State Incentives for Renewables and Efficiency (DSIRE.org):\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/statesearch2.cfm?State=US&back=fintab&CurrentPageID=7&Search=TableState&EE=1&RE=1\">Federal Incentives for Solar PV</a>\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&State=MD&RE=1&EE=1\">Maryland Incentives for Solar PV</a>\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&State=DC&RE=1&EE=1\">District of Columbia Incentives for Solar PV</a>\r\n\r\";s:3:\"log\";N;s:18:\"revision_timestamp\";s:10:\"1285684275\";s:6:\"format\";s:1:\"2\";s:4:\"name\";s:5:\"admin\";s:7:\"picture\";s:0:\"\";s:4:\"data\";s:6:\"a:0:{}\";s:4:\"path\";s:9:\"resources\";s:22:\"last_comment_timestamp\";s:10:\"1265202538\";s:17:\"last_comment_name\";N;s:13:\"comment_count\";s:1:\"0\";s:8:\"taxonomy\";a:0:{}s:4:\"date\";s:25:\"2010-02-03 21:08:58 +0800\";s:8:\"revision\";b:0;s:4:\"menu\";a:48:{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:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:3:\"fit\";s:1:\"2\";s:12:\"number_parts\";s:1:\"2\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:9:\"resources\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:4:\"type\";s:1:\"4\";s:14:\"block_callback\";s:0:\"\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"0\";s:4:\"file\";s:0:\"\";s:9:\"menu_name\";s:14:\"menu-main-menu\";s:4:\"mlid\";s:3:\"284\";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:9:\"resources\";s:7:\"options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:9:\"resources\";}}s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"284\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:4:\"href\";s:6:\"node/4\";s:6:\"access\";b:1;s:17:\"localized_options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:9:\"resources\";}}s:18:\"parent_depth_limit\";i:8;}s:22:\"pathauto_perform_alias\";b:1;}s:20:\"revision_information\";a:7:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:20:\"Revision information\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:7:\"#weight\";i:20;s:8:\"revision\";a:4:{s:7:\"#access\";b:1;s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:19:\"Create new revision\";s:14:\"#default_value\";b:0;}s:3:\"log\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:11:\"Log message\";s:14:\"#default_value\";s:0:\"\";s:5:\"#rows\";i:2;s:12:\"#description\";s:104:\"An explanation of the additions or updates being made to help other authors understand your motivations.\";}}s:6:\"author\";a:8:{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:7:\"#weight\";i:20;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:35:\"Leave blank for <em>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:91:\"Format: <em>2010-02-03 21:08:58 +0800</em>. Leave blank to use the time of form submission.\";s:14:\"#default_value\";s:25:\"2010-02-03 21:08:58 +0800\";}}s:7:\"options\";a:9:{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:7:\"#weight\";i:25;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:\"buttons\";a:3:{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:16:\"node_form_submit\";}}s:7:\"preview\";a:4:{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:6:\"#theme\";a:2:{i:0;s:14:\"page_node_form\";i:1;s:9:\"node_form\";}s:11:\"#parameters\";a:3:{i:0;s:14:\"page_node_form\";i:1;a:3:{s:7:\"storage\";N;s:9:\"submitted\";b:0;s:4:\"post\";a:0:{}}i:2;r:83;}s:9:\"#build_id\";s:37:\"form-0410df206c17d82427415d081370f3d0\";s:5:\"#type\";s:4:\"form\";s:11:\"#programmed\";b:0;s:13:\"form_build_id\";a:4:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:37:\"form-0410df206c17d82427415d081370f3d0\";s:3:\"#id\";s:37:\"form-0410df206c17d82427415d081370f3d0\";s:5:\"#name\";s:13:\"form_build_id\";}s:6:\"#token\";s:14:\"page_node_form\";s:10:\"form_token\";a:3:{s:3:\"#id\";s:30:\"edit-page-node-form-form-token\";s:5:\"#type\";s:5:\"token\";s:14:\"#default_value\";s:32:\"69ee9cfa6b6366390575effcb3429c15\";}s:7:\"form_id\";a:3:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:14:\"page_node_form\";s:3:\"#id\";s:19:\"edit-page-node-form\";}s:12:\"#description\";N;s:11:\"#attributes\";a:0:{}s:9:\"#required\";b:0;s:5:\"#tree\";b:0;s:8:\"#parents\";a:0:{}s:7:\"#method\";s:4:\"post\";s:7:\"#action\";s:27:\"/~uspvinc/main2/node/4/edit\";s:16:\"comment_settings\";a:7:{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:7:\"#weight\";i:30;s:7:\"comment\";a:4:{s:5:\"#type\";s:6:\"radios\";s:8:\"#parents\";a:1:{i:0;s:7:\"comment\";}s:14:\"#default_value\";s:1:\"0\";s:8:\"#options\";a:3:{i:0;s:8:\"Disabled\";i:1;s:9:\"Read only\";i:2;s:10:\"Read/Write\";}}}s:6:\"#cache\";b:1;s:4:\"menu\";a:21:{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:5:\"#tree\";b:1;s:7:\"#weight\";i:-2;s:11:\"#attributes\";a:1:{s:5:\"class\";s:14:\"menu-item-form\";}s:6:\"delete\";a:2:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:22:\"Delete this menu item.\";}s:4:\"mlid\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:3:\"284\";}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\";s:1:\"1\";}s:7:\"options\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:9:\"resources\";}}}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:5:\"#item\";a:48:{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:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:3:\"fit\";s:1:\"2\";s:12:\"number_parts\";s:1:\"2\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:9:\"resources\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:4:\"type\";s:1:\"4\";s:14:\"block_callback\";s:0:\"\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"0\";s:4:\"file\";s:0:\"\";s:9:\"menu_name\";s:14:\"menu-main-menu\";s:4:\"mlid\";s:3:\"284\";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:9:\"resources\";s:7:\"options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:9:\"resources\";}}s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"284\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:4:\"href\";s:6:\"node/4\";s:6:\"access\";b:1;s:17:\"localized_options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:9:\"resources\";}}s:18:\"parent_depth_limit\";i:8;}s:10:\"link_title\";a:5:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:15:\"Menu link title\";s:14:\"#default_value\";s:9:\"resources\";s:12:\"#description\";s:133:\"The link text corresponding to this item that should appear in the menu. Leave blank if you do not wish to add this post to the menu.\";s:9:\"#required\";b:0;}s:6:\"parent\";a:6:{s:5:\"#type\";s:6:\"select\";s:6:\"#title\";s:11:\"Parent item\";s:14:\"#default_value\";s:16:\"menu-main-menu:0\";s:8:\"#options\";a:95:{s:16:\"menu-main-menu:0\";s:11:\"<Main Menu>\";s:18:\"menu-main-menu:283\";s:8:\"-- about\";s:18:\"menu-main-menu:285\";s:11:\"-- services\";s:18:\"menu-main-menu:286\";s:17:\"-- special offers\";s:12:\"navigation:0\";s:12:\"<Navigation>\";s:12:\"navigation:9\";s:26:\"-- Compose tips (disabled)\";s:14:\"navigation:461\";s:29:\"-- Image galleries (disabled)\";s:13:\"navigation:21\";s:13:\"-- My account\";s:14:\"navigation:114\";s:20:\"-- Search (disabled)\";s:14:\"navigation:244\";s:22:\"-- Site map (disabled)\";s:13:\"navigation:11\";s:17:\"-- Create content\";s:14:\"navigation:476\";s:11:\"---- Banner\";s:14:\"navigation:441\";s:10:\"---- Image\";s:14:\"navigation:289\";s:21:\"---- Newsletter issue\";s:14:\"navigation:106\";s:9:\"---- Page\";s:14:\"navigation:388\";s:10:\"---- Panel\";s:14:\"navigation:107\";s:10:\"---- Story\";s:12:\"navigation:2\";s:13:\"-- Administer\";s:13:\"navigation:10\";s:23:\"---- Content management\";s:13:\"navigation:27\";s:15:\"------ Comments\";s:13:\"navigation:28\";s:14:\"------ Content\";s:13:\"navigation:29\";s:20:\"------ Content types\";s:14:\"navigation:462\";s:22:\"------ Image galleries\";s:14:\"navigation:463\";s:19:\"------ Image import\";s:14:\"navigation:538\";s:18:\"------ Newsletters\";s:14:\"navigation:546\";s:20:\"-------- Sent issues\";s:14:\"navigation:541\";s:21:\"-------- Draft issues\";s:14:\"navigation:544\";s:20:\"-------- Newsletters\";s:14:\"navigation:548\";s:22:\"-------- Subscriptions\";s:13:\"navigation:42\";s:20:\"------ Post settings\";s:13:\"navigation:43\";s:21:\"------ RSS publishing\";s:13:\"navigation:94\";s:15:\"------ Taxonomy\";s:13:\"navigation:17\";s:18:\"---- Site building\";s:13:\"navigation:25\";s:13:\"------ Blocks\";s:14:\"navigation:424\";s:20:\"------ Bulk Exporter\";s:13:\"navigation:38\";s:12:\"------ Menus\";s:14:\"navigation:282\";s:18:\"-------- Main Menu\";s:13:\"navigation:89\";s:19:\"-------- Navigation\";s:13:\"navigation:90\";s:22:\"-------- Primary links\";s:14:\"navigation:495\";s:19:\"-------- Right Menu\";s:13:\"navigation:91\";s:24:\"-------- Secondary links\";s:14:\"navigation:387\";s:18:\"------ Mini panels\";s:13:\"navigation:39\";s:14:\"------ Modules\";s:14:\"navigation:412\";s:12:\"------ Pages\";s:14:\"navigation:360\";s:13:\"------ Panels\";s:13:\"navigation:49\";s:13:\"------ Themes\";s:14:\"navigation:335\";s:15:\"------ Triggers\";s:14:\"navigation:501\";s:18:\"------ URL aliases\";s:14:\"navigation:257\";s:12:\"------ Views\";s:13:\"navigation:18\";s:23:\"---- Site configuration\";s:13:\"navigation:23\";s:14:\"------ Actions\";s:14:\"navigation:119\";s:26:\"------ Administration menu\";s:13:\"navigation:24\";s:27:\"------ Administration theme\";s:13:\"navigation:26\";s:17:\"------ Clean URLs\";s:13:\"navigation:30\";s:20:\"------ Date and time\";s:13:\"navigation:33\";s:22:\"------ Error reporting\";s:13:\"navigation:34\";s:18:\"------ File system\";s:13:\"navigation:35\";s:20:\"------ Image toolkit\";s:14:\"navigation:442\";s:13:\"------ Images\";s:13:\"navigation:36\";s:20:\"------ Input formats\";s:13:\"navigation:37\";s:25:\"------ Logging and alerts\";s:14:\"navigation:100\";s:25:\"-------- Database logging\";s:14:\"navigation:245\";s:17:\"------ Nice Menus\";s:13:\"navigation:40\";s:18:\"------ Performance\";s:14:\"navigation:120\";s:22:\"------ Search settings\";s:14:\"navigation:539\";s:17:\"------ Simplenews\";s:14:\"navigation:542\";s:16:\"-------- General\";s:14:\"navigation:543\";s:19:\"-------- Newsletter\";s:14:\"navigation:547\";s:21:\"-------- Subscription\";s:14:\"navigation:545\";s:18:\"-------- Send mail\";s:13:\"navigation:46\";s:23:\"------ Site information\";s:13:\"navigation:47\";s:23:\"------ Site maintenance\";s:14:\"navigation:246\";s:15:\"------ Site map\";s:13:\"navigation:20\";s:20:\"---- User management\";s:13:\"navigation:22\";s:19:\"------ Access rules\";s:13:\"navigation:41\";s:18:\"------ Permissions\";s:13:\"navigation:45\";s:12:\"------ Roles\";s:13:\"navigation:50\";s:20:\"------ User settings\";s:13:\"navigation:51\";s:12:\"------ Users\";s:13:\"navigation:16\";s:12:\"---- Reports\";s:13:\"navigation:93\";s:25:\"------ Recent log entries\";s:13:\"navigation:96\";s:33:\"------ Top \'access denied\' errors\";s:13:\"navigation:97\";s:34:\"------ Top \'page not found\' errors\";s:14:\"navigation:121\";s:25:\"------ Top search phrases\";s:14:\"navigation:105\";s:24:\"------ Available updates\";s:13:\"navigation:48\";s:20:\"------ Status report\";s:13:\"navigation:15\";s:9:\"---- Help\";s:12:\"navigation:4\";s:10:\"-- Log out\";s:15:\"primary-links:0\";s:15:\"<Primary links>\";s:17:\"menu-right-menu:0\";s:12:\"<Right Menu>\";s:19:\"menu-right-menu:496\";s:28:\"-- Financial Calculator Tool\";s:19:\"menu-right-menu:497\";s:21:\"-- News Story Library\";s:19:\"menu-right-menu:498\";s:14:\"-- Latest News\";s:19:\"menu-right-menu:499\";s:25:\"-- SREC Management Portal\";s:17:\"secondary-links:0\";s:17:\"<Secondary links>\";}s:12:\"#description\";s:156:\"The maximum depth for an item and all its children is fixed at 9. Some menu items may not be available as parents if selecting them would exceed this limit.\";s:11:\"#attributes\";a:1:{s:5:\"class\";s:17:\"menu-title-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:1:\"0\";s:12:\"#description\";s:107:\"Optional. In the menu, the heavier items will sink and the lighter items will be positioned nearer the top.\";}}s:7:\"#submit\";a:1:{i:0;s:21:\"menu_node_form_submit\";}s:4:\"path\";a:10:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:17:\"URL path settings\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:0;s:7:\"#access\";b:1;s:7:\"#weight\";i:30;s:4:\"path\";a:6:{s:5:\"#type\";s:9:\"textfield\";s:14:\"#default_value\";s:9:\"resources\";s:10:\"#maxlength\";i:128;s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:12:\"#description\";s:207:\"Optionally specify an alternative URL by which this node 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\";s:1:\"4\";}s:22:\"pathauto_perform_alias\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:15:\"Automatic alias\";s:14:\"#default_value\";b:1;s:12:\"#description\";s:238:\"An alias will be generated for you. If you wish to create your own alias below, uncheck this option. To control the format of the generated aliases, see the <a href=\"/~uspvinc/main2/admin/build/path/pathauto\">automated alias settings</a>.\";s:7:\"#weight\";i:-1;}s:9:\"old_alias\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:9:\"resources\";}}s:11:\"#pre_render\";a:1:{i:0;s:27:\"content_alter_extra_weights\";}s:21:\"#content_extra_fields\";a:6:{s:5:\"title\";a:3:{s:5:\"label\";s:5:\"Title\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:-5;}s:10:\"body_field\";a:4:{s:5:\"label\";s:4:\"Body\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:0;s:4:\"view\";s:4:\"body\";}s:20:\"revision_information\";a:3:{s:5:\"label\";s:20:\"Revision information\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:20;}s:16:\"comment_settings\";a:3:{s:5:\"label\";s:16:\"Comment settings\";s:11:\"description\";s:20:\"Comment module form.\";s:6:\"weight\";i:30;}s:4:\"menu\";a:3:{s:5:\"label\";s:13:\"Menu settings\";s:11:\"description\";s:17:\"Menu module form.\";s:6:\"weight\";i:-2;}s:4:\"path\";a:3:{s:5:\"label\";s:13:\"Path settings\";s:11:\"description\";s:17:\"Path module form.\";s:6:\"weight\";i:30;}}s:12:\"#cache_token\";s:32:\"ea05954e6208c2bed552f97e30d1dad3\";}',1285708502,1285686902,'',1),('form_form-6b05140ff887a437bce2975b281968ad','a:40:{s:3:\"#id\";s:9:\"node-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:\"1265202538\";}s:4:\"type\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:4:\"page\";}s:8:\"language\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:0:\"\";}s:7:\"changed\";a:2:{s:5:\"#type\";s:6:\"hidden\";s:14:\"#default_value\";s:10:\"1285684275\";}s:5:\"title\";a:6:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:5:\"Title\";s:9:\"#required\";b:1;s:14:\"#default_value\";s:9:\"resources\";s:10:\"#maxlength\";i:255;s:7:\"#weight\";i:-5;}s:10:\"body_field\";a:7:{s:12:\"#after_build\";a:2:{i:0;s:14:\"node_teaser_js\";i:1;s:26:\"node_teaser_include_verify\";}s:7:\"#prefix\";s:32:\"<div class=\"body-field-wrapper\">\";s:7:\"#suffix\";s:6:\"</div>\";s:9:\"teaser_js\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:5:\"#rows\";i:10;s:7:\"#teaser\";s:9:\"edit-body\";s:16:\"#teaser_checkbox\";s:19:\"edit-teaser-include\";s:9:\"#disabled\";b:1;}s:14:\"teaser_include\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:25:\"Show summary in full view\";s:14:\"#default_value\";b:1;s:7:\"#prefix\";s:29:\"<div class=\"teaser-checkbox\">\";s:7:\"#suffix\";s:6:\"</div>\";}s:4:\"body\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:4:\"Body\";s:14:\"#default_value\";s:1102:\"<h2>Internet Resources</h2>\r\n \r\nFrom the Database of State Incentives for Renewables and Efficiency (DSIRE.org):\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/statesearch2.cfm?State=US&back=fintab&CurrentPageID=7&Search=TableState&EE=1&RE=1\">Federal Incentives for Solar PV</a>\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&State=MD&RE=1&EE=1\">Maryland Incentives for Solar PV</a>\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&State=DC&RE=1&EE=1\">District of Columbia Incentives for Solar PV</a>\r\n\r\n<h2>Industry Organizations</h2>\r\n\r\n<a href=\"http://www.ases.org/\">American Solar Energy Society</a>   Professional Member\r\n\r\n<a href=\"http://www.mdv-seia.org/\">Maryland-DC-Virginia Solar Energy Industries Association</a>   Professional Member\r\n  \r\n<h2>Contact Us</h2>\r\n<p>\r\nTelephone: 240-344-2657\r\n</p>\r\n<p>\r\nEmail:\r\n\r\n          Sales: sales@uspvinc.com\r\n\r\n          Customer Service: support@uspvinc.com\r\n\r\n          Other Inquiries:  info@uspvinc.com\r\n</p>\r\n<p>\r\nPostal Address: 4539 Metropolitan Court, Frederick MD  21704\r\n</p>\";s:5:\"#rows\";i:20;s:9:\"#required\";b:0;}s:6:\"format\";a:9:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:12:\"Input format\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:7:\"#weight\";N;s:17:\"#element_validate\";a:1:{i:0;s:20:\"filter_form_validate\";}i:1;a:7:{s:5:\"#type\";s:5:\"radio\";s:6:\"#title\";s:13:\"Filtered HTML\";s:14:\"#default_value\";s:1:\"2\";s:13:\"#return_value\";s:1:\"1\";s:8:\"#parents\";a:1:{i:0;s:6:\"format\";}s:12:\"#description\";s:306:\"<ul class=\"tips\"><li>Web page addresses and e-mail addresses turn into links automatically.</li><li>Allowed HTML tags: &lt;a&gt; &lt;em&gt; &lt;strong&gt; &lt;cite&gt; &lt;code&gt; &lt;ul&gt; &lt;ol&gt; &lt;li&gt; &lt;dl&gt; &lt;dt&gt; &lt;dd&gt;</li><li>Lines and paragraphs break automatically.</li></ul>\";s:3:\"#id\";s:13:\"edit-format-1\";}i:2;a:7:{s:5:\"#type\";s:5:\"radio\";s:6:\"#title\";s:9:\"Full HTML\";s:14:\"#default_value\";s:1:\"2\";s:13:\"#return_value\";s:1:\"2\";s:8:\"#parents\";a:1:{i:0;s:6:\"format\";}s:12:\"#description\";s:151:\"<ul class=\"tips\"><li>Web page addresses and e-mail addresses turn into links automatically.</li><li>Lines and paragraphs break automatically.</li></ul>\";s:3:\"#id\";s:13:\"edit-format-2\";}i:3;a:1:{s:6:\"#value\";s:90:\"<p><a href=\"/~uspvinc/main2/filter/tips\">More information about formatting options</a></p>\";}}}s:5:\"#node\";O:8:\"stdClass\":33:{s:3:\"nid\";s:1:\"4\";s:4:\"type\";s:4:\"page\";s:8:\"language\";s:0:\"\";s:3:\"uid\";s:1:\"1\";s:6:\"status\";s:1:\"1\";s:7:\"created\";s:10:\"1265202538\";s:7:\"changed\";s:10:\"1285684275\";s:7:\"comment\";s:1:\"0\";s:7:\"promote\";s:1:\"0\";s:8:\"moderate\";s:1:\"0\";s:6:\"sticky\";s:1:\"0\";s:4:\"tnid\";s:1:\"0\";s:9:\"translate\";s:1:\"0\";s:3:\"vid\";s:1:\"4\";s:12:\"revision_uid\";s:1:\"1\";s:5:\"title\";s:9:\"resources\";s:4:\"body\";s:1102:\"<h2>Internet Resources</h2>\r\n \r\nFrom the Database of State Incentives for Renewables and Efficiency (DSIRE.org):\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/statesearch2.cfm?State=US&back=fintab&CurrentPageID=7&Search=TableState&EE=1&RE=1\">Federal Incentives for Solar PV</a>\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&State=MD&RE=1&EE=1\">Maryland Incentives for Solar PV</a>\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&State=DC&RE=1&EE=1\">District of Columbia Incentives for Solar PV</a>\r\n\r\n<h2>Industry Organizations</h2>\r\n\r\n<a href=\"http://www.ases.org/\">American Solar Energy Society</a>   Professional Member\r\n\r\n<a href=\"http://www.mdv-seia.org/\">Maryland-DC-Virginia Solar Energy Industries Association</a>   Professional Member\r\n  \r\n<h2>Contact Us</h2>\r\n<p>\r\nTelephone: 240-344-2657\r\n</p>\r\n<p>\r\nEmail:\r\n\r\n          Sales: sales@uspvinc.com\r\n\r\n          Customer Service: support@uspvinc.com\r\n\r\n          Other Inquiries:  info@uspvinc.com\r\n</p>\r\n<p>\r\nPostal Address: 4539 Metropolitan Court, Frederick MD  21704\r\n</p>\";s:6:\"teaser\";s:569:\"<h2>Internet Resources</h2>\r\n \r\nFrom the Database of State Incentives for Renewables and Efficiency (DSIRE.org):\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/statesearch2.cfm?State=US&back=fintab&CurrentPageID=7&Search=TableState&EE=1&RE=1\">Federal Incentives for Solar PV</a>\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&State=MD&RE=1&EE=1\">Maryland Incentives for Solar PV</a>\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&State=DC&RE=1&EE=1\">District of Columbia Incentives for Solar PV</a>\r\n\r\";s:3:\"log\";N;s:18:\"revision_timestamp\";s:10:\"1285684275\";s:6:\"format\";s:1:\"2\";s:4:\"name\";s:5:\"admin\";s:7:\"picture\";s:0:\"\";s:4:\"data\";s:6:\"a:0:{}\";s:4:\"path\";s:9:\"resources\";s:22:\"last_comment_timestamp\";s:10:\"1265202538\";s:17:\"last_comment_name\";N;s:13:\"comment_count\";s:1:\"0\";s:8:\"taxonomy\";a:0:{}s:4:\"date\";s:25:\"2010-02-03 21:08:58 +0800\";s:8:\"revision\";b:0;s:4:\"menu\";a:48:{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:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:3:\"fit\";s:1:\"2\";s:12:\"number_parts\";s:1:\"2\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:9:\"resources\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:4:\"type\";s:1:\"4\";s:14:\"block_callback\";s:0:\"\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"0\";s:4:\"file\";s:0:\"\";s:9:\"menu_name\";s:14:\"menu-main-menu\";s:4:\"mlid\";s:3:\"284\";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:9:\"resources\";s:7:\"options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:9:\"resources\";}}s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"284\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:4:\"href\";s:6:\"node/4\";s:6:\"access\";b:1;s:17:\"localized_options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:9:\"resources\";}}s:18:\"parent_depth_limit\";i:8;}s:22:\"pathauto_perform_alias\";b:1;}s:20:\"revision_information\";a:7:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:20:\"Revision information\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:7:\"#weight\";i:20;s:8:\"revision\";a:4:{s:7:\"#access\";b:1;s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:19:\"Create new revision\";s:14:\"#default_value\";b:0;}s:3:\"log\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:11:\"Log message\";s:14:\"#default_value\";s:0:\"\";s:5:\"#rows\";i:2;s:12:\"#description\";s:104:\"An explanation of the additions or updates being made to help other authors understand your motivations.\";}}s:6:\"author\";a:8:{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:7:\"#weight\";i:20;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:35:\"Leave blank for <em>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:91:\"Format: <em>2010-02-03 21:08:58 +0800</em>. Leave blank to use the time of form submission.\";s:14:\"#default_value\";s:25:\"2010-02-03 21:08:58 +0800\";}}s:7:\"options\";a:9:{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:7:\"#weight\";i:25;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:\"buttons\";a:3:{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:16:\"node_form_submit\";}}s:7:\"preview\";a:4:{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:6:\"#theme\";a:2:{i:0;s:14:\"page_node_form\";i:1;s:9:\"node_form\";}s:11:\"#parameters\";a:3:{i:0;s:14:\"page_node_form\";i:1;a:3:{s:7:\"storage\";N;s:9:\"submitted\";b:0;s:4:\"post\";a:0:{}}i:2;r:83;}s:9:\"#build_id\";s:37:\"form-6b05140ff887a437bce2975b281968ad\";s:5:\"#type\";s:4:\"form\";s:11:\"#programmed\";b:0;s:13:\"form_build_id\";a:4:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:37:\"form-6b05140ff887a437bce2975b281968ad\";s:3:\"#id\";s:37:\"form-6b05140ff887a437bce2975b281968ad\";s:5:\"#name\";s:13:\"form_build_id\";}s:6:\"#token\";s:14:\"page_node_form\";s:10:\"form_token\";a:3:{s:3:\"#id\";s:30:\"edit-page-node-form-form-token\";s:5:\"#type\";s:5:\"token\";s:14:\"#default_value\";s:32:\"69ee9cfa6b6366390575effcb3429c15\";}s:7:\"form_id\";a:3:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:14:\"page_node_form\";s:3:\"#id\";s:19:\"edit-page-node-form\";}s:12:\"#description\";N;s:11:\"#attributes\";a:0:{}s:9:\"#required\";b:0;s:5:\"#tree\";b:0;s:8:\"#parents\";a:0:{}s:7:\"#method\";s:4:\"post\";s:7:\"#action\";s:27:\"/~uspvinc/main2/node/4/edit\";s:16:\"comment_settings\";a:7:{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:7:\"#weight\";i:30;s:7:\"comment\";a:4:{s:5:\"#type\";s:6:\"radios\";s:8:\"#parents\";a:1:{i:0;s:7:\"comment\";}s:14:\"#default_value\";s:1:\"0\";s:8:\"#options\";a:3:{i:0;s:8:\"Disabled\";i:1;s:9:\"Read only\";i:2;s:10:\"Read/Write\";}}}s:6:\"#cache\";b:1;s:4:\"menu\";a:21:{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:5:\"#tree\";b:1;s:7:\"#weight\";i:-2;s:11:\"#attributes\";a:1:{s:5:\"class\";s:14:\"menu-item-form\";}s:6:\"delete\";a:2:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:22:\"Delete this menu item.\";}s:4:\"mlid\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:3:\"284\";}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\";s:1:\"1\";}s:7:\"options\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:9:\"resources\";}}}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:5:\"#item\";a:48:{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:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:3:\"fit\";s:1:\"2\";s:12:\"number_parts\";s:1:\"2\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:9:\"resources\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:4:\"type\";s:1:\"4\";s:14:\"block_callback\";s:0:\"\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"0\";s:4:\"file\";s:0:\"\";s:9:\"menu_name\";s:14:\"menu-main-menu\";s:4:\"mlid\";s:3:\"284\";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:9:\"resources\";s:7:\"options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:9:\"resources\";}}s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"284\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:4:\"href\";s:6:\"node/4\";s:6:\"access\";b:1;s:17:\"localized_options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:9:\"resources\";}}s:18:\"parent_depth_limit\";i:8;}s:10:\"link_title\";a:5:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:15:\"Menu link title\";s:14:\"#default_value\";s:9:\"resources\";s:12:\"#description\";s:133:\"The link text corresponding to this item that should appear in the menu. Leave blank if you do not wish to add this post to the menu.\";s:9:\"#required\";b:0;}s:6:\"parent\";a:6:{s:5:\"#type\";s:6:\"select\";s:6:\"#title\";s:11:\"Parent item\";s:14:\"#default_value\";s:16:\"menu-main-menu:0\";s:8:\"#options\";a:95:{s:16:\"menu-main-menu:0\";s:11:\"<Main Menu>\";s:18:\"menu-main-menu:283\";s:8:\"-- about\";s:18:\"menu-main-menu:285\";s:11:\"-- services\";s:18:\"menu-main-menu:286\";s:17:\"-- special offers\";s:12:\"navigation:0\";s:12:\"<Navigation>\";s:12:\"navigation:9\";s:26:\"-- Compose tips (disabled)\";s:14:\"navigation:461\";s:29:\"-- Image galleries (disabled)\";s:13:\"navigation:21\";s:13:\"-- My account\";s:14:\"navigation:114\";s:20:\"-- Search (disabled)\";s:14:\"navigation:244\";s:22:\"-- Site map (disabled)\";s:13:\"navigation:11\";s:17:\"-- Create content\";s:14:\"navigation:476\";s:11:\"---- Banner\";s:14:\"navigation:441\";s:10:\"---- Image\";s:14:\"navigation:289\";s:21:\"---- Newsletter issue\";s:14:\"navigation:106\";s:9:\"---- Page\";s:14:\"navigation:388\";s:10:\"---- Panel\";s:14:\"navigation:107\";s:10:\"---- Story\";s:12:\"navigation:2\";s:13:\"-- Administer\";s:13:\"navigation:10\";s:23:\"---- Content management\";s:13:\"navigation:27\";s:15:\"------ Comments\";s:13:\"navigation:28\";s:14:\"------ Content\";s:13:\"navigation:29\";s:20:\"------ Content types\";s:14:\"navigation:462\";s:22:\"------ Image galleries\";s:14:\"navigation:463\";s:19:\"------ Image import\";s:14:\"navigation:538\";s:18:\"------ Newsletters\";s:14:\"navigation:546\";s:20:\"-------- Sent issues\";s:14:\"navigation:541\";s:21:\"-------- Draft issues\";s:14:\"navigation:544\";s:20:\"-------- Newsletters\";s:14:\"navigation:548\";s:22:\"-------- Subscriptions\";s:13:\"navigation:42\";s:20:\"------ Post settings\";s:13:\"navigation:43\";s:21:\"------ RSS publishing\";s:13:\"navigation:94\";s:15:\"------ Taxonomy\";s:13:\"navigation:17\";s:18:\"---- Site building\";s:13:\"navigation:25\";s:13:\"------ Blocks\";s:14:\"navigation:424\";s:20:\"------ Bulk Exporter\";s:13:\"navigation:38\";s:12:\"------ Menus\";s:14:\"navigation:282\";s:18:\"-------- Main Menu\";s:13:\"navigation:89\";s:19:\"-------- Navigation\";s:13:\"navigation:90\";s:22:\"-------- Primary links\";s:14:\"navigation:495\";s:19:\"-------- Right Menu\";s:13:\"navigation:91\";s:24:\"-------- Secondary links\";s:14:\"navigation:387\";s:18:\"------ Mini panels\";s:13:\"navigation:39\";s:14:\"------ Modules\";s:14:\"navigation:412\";s:12:\"------ Pages\";s:14:\"navigation:360\";s:13:\"------ Panels\";s:13:\"navigation:49\";s:13:\"------ Themes\";s:14:\"navigation:335\";s:15:\"------ Triggers\";s:14:\"navigation:501\";s:18:\"------ URL aliases\";s:14:\"navigation:257\";s:12:\"------ Views\";s:13:\"navigation:18\";s:23:\"---- Site configuration\";s:13:\"navigation:23\";s:14:\"------ Actions\";s:14:\"navigation:119\";s:26:\"------ Administration menu\";s:13:\"navigation:24\";s:27:\"------ Administration theme\";s:13:\"navigation:26\";s:17:\"------ Clean URLs\";s:13:\"navigation:30\";s:20:\"------ Date and time\";s:13:\"navigation:33\";s:22:\"------ Error reporting\";s:13:\"navigation:34\";s:18:\"------ File system\";s:13:\"navigation:35\";s:20:\"------ Image toolkit\";s:14:\"navigation:442\";s:13:\"------ Images\";s:13:\"navigation:36\";s:20:\"------ Input formats\";s:13:\"navigation:37\";s:25:\"------ Logging and alerts\";s:14:\"navigation:100\";s:25:\"-------- Database logging\";s:14:\"navigation:245\";s:17:\"------ Nice Menus\";s:13:\"navigation:40\";s:18:\"------ Performance\";s:14:\"navigation:120\";s:22:\"------ Search settings\";s:14:\"navigation:539\";s:17:\"------ Simplenews\";s:14:\"navigation:542\";s:16:\"-------- General\";s:14:\"navigation:543\";s:19:\"-------- Newsletter\";s:14:\"navigation:547\";s:21:\"-------- Subscription\";s:14:\"navigation:545\";s:18:\"-------- Send mail\";s:13:\"navigation:46\";s:23:\"------ Site information\";s:13:\"navigation:47\";s:23:\"------ Site maintenance\";s:14:\"navigation:246\";s:15:\"------ Site map\";s:13:\"navigation:20\";s:20:\"---- User management\";s:13:\"navigation:22\";s:19:\"------ Access rules\";s:13:\"navigation:41\";s:18:\"------ Permissions\";s:13:\"navigation:45\";s:12:\"------ Roles\";s:13:\"navigation:50\";s:20:\"------ User settings\";s:13:\"navigation:51\";s:12:\"------ Users\";s:13:\"navigation:16\";s:12:\"---- Reports\";s:13:\"navigation:93\";s:25:\"------ Recent log entries\";s:13:\"navigation:96\";s:33:\"------ Top \'access denied\' errors\";s:13:\"navigation:97\";s:34:\"------ Top \'page not found\' errors\";s:14:\"navigation:121\";s:25:\"------ Top search phrases\";s:14:\"navigation:105\";s:24:\"------ Available updates\";s:13:\"navigation:48\";s:20:\"------ Status report\";s:13:\"navigation:15\";s:9:\"---- Help\";s:12:\"navigation:4\";s:10:\"-- Log out\";s:15:\"primary-links:0\";s:15:\"<Primary links>\";s:17:\"menu-right-menu:0\";s:12:\"<Right Menu>\";s:19:\"menu-right-menu:496\";s:28:\"-- Financial Calculator Tool\";s:19:\"menu-right-menu:497\";s:21:\"-- News Story Library\";s:19:\"menu-right-menu:498\";s:14:\"-- Latest News\";s:19:\"menu-right-menu:499\";s:25:\"-- SREC Management Portal\";s:17:\"secondary-links:0\";s:17:\"<Secondary links>\";}s:12:\"#description\";s:156:\"The maximum depth for an item and all its children is fixed at 9. Some menu items may not be available as parents if selecting them would exceed this limit.\";s:11:\"#attributes\";a:1:{s:5:\"class\";s:17:\"menu-title-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:1:\"0\";s:12:\"#description\";s:107:\"Optional. In the menu, the heavier items will sink and the lighter items will be positioned nearer the top.\";}}s:7:\"#submit\";a:1:{i:0;s:21:\"menu_node_form_submit\";}s:4:\"path\";a:10:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:17:\"URL path settings\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:0;s:7:\"#access\";b:1;s:7:\"#weight\";i:30;s:4:\"path\";a:6:{s:5:\"#type\";s:9:\"textfield\";s:14:\"#default_value\";s:9:\"resources\";s:10:\"#maxlength\";i:128;s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:12:\"#description\";s:207:\"Optionally specify an alternative URL by which this node 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\";s:1:\"4\";}s:22:\"pathauto_perform_alias\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:15:\"Automatic alias\";s:14:\"#default_value\";b:1;s:12:\"#description\";s:238:\"An alias will be generated for you. If you wish to create your own alias below, uncheck this option. To control the format of the generated aliases, see the <a href=\"/~uspvinc/main2/admin/build/path/pathauto\">automated alias settings</a>.\";s:7:\"#weight\";i:-1;}s:9:\"old_alias\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:9:\"resources\";}}s:11:\"#pre_render\";a:1:{i:0;s:27:\"content_alter_extra_weights\";}s:21:\"#content_extra_fields\";a:6:{s:5:\"title\";a:3:{s:5:\"label\";s:5:\"Title\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:-5;}s:10:\"body_field\";a:4:{s:5:\"label\";s:4:\"Body\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:0;s:4:\"view\";s:4:\"body\";}s:20:\"revision_information\";a:3:{s:5:\"label\";s:20:\"Revision information\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:20;}s:16:\"comment_settings\";a:3:{s:5:\"label\";s:16:\"Comment settings\";s:11:\"description\";s:20:\"Comment module form.\";s:6:\"weight\";i:30;}s:4:\"menu\";a:3:{s:5:\"label\";s:13:\"Menu settings\";s:11:\"description\";s:17:\"Menu module form.\";s:6:\"weight\";i:-2;}s:4:\"path\";a:3:{s:5:\"label\";s:13:\"Path settings\";s:11:\"description\";s:17:\"Path module form.\";s:6:\"weight\";i:30;}}s:12:\"#cache_token\";s:32:\"ea05954e6208c2bed552f97e30d1dad3\";}',1285709449,1285687849,'',1),('form_form-af930d8218f4f3e4a3076b14de0c00f7','a:40:{s:3:\"#id\";s:9:\"node-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:\"1265202538\";}s:4:\"type\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:4:\"page\";}s:8:\"language\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:0:\"\";}s:7:\"changed\";a:2:{s:5:\"#type\";s:6:\"hidden\";s:14:\"#default_value\";s:10:\"1285684275\";}s:5:\"title\";a:6:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:5:\"Title\";s:9:\"#required\";b:1;s:14:\"#default_value\";s:9:\"resources\";s:10:\"#maxlength\";i:255;s:7:\"#weight\";i:-5;}s:10:\"body_field\";a:7:{s:12:\"#after_build\";a:2:{i:0;s:14:\"node_teaser_js\";i:1;s:26:\"node_teaser_include_verify\";}s:7:\"#prefix\";s:32:\"<div class=\"body-field-wrapper\">\";s:7:\"#suffix\";s:6:\"</div>\";s:9:\"teaser_js\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:5:\"#rows\";i:10;s:7:\"#teaser\";s:9:\"edit-body\";s:16:\"#teaser_checkbox\";s:19:\"edit-teaser-include\";s:9:\"#disabled\";b:1;}s:14:\"teaser_include\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:25:\"Show summary in full view\";s:14:\"#default_value\";b:1;s:7:\"#prefix\";s:29:\"<div class=\"teaser-checkbox\">\";s:7:\"#suffix\";s:6:\"</div>\";}s:4:\"body\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:4:\"Body\";s:14:\"#default_value\";s:1102:\"<h2>Internet Resources</h2>\r\n \r\nFrom the Database of State Incentives for Renewables and Efficiency (DSIRE.org):\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/statesearch2.cfm?State=US&back=fintab&CurrentPageID=7&Search=TableState&EE=1&RE=1\">Federal Incentives for Solar PV</a>\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&State=MD&RE=1&EE=1\">Maryland Incentives for Solar PV</a>\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&State=DC&RE=1&EE=1\">District of Columbia Incentives for Solar PV</a>\r\n\r\n<h2>Industry Organizations</h2>\r\n\r\n<a href=\"http://www.ases.org/\">American Solar Energy Society</a>   Professional Member\r\n\r\n<a href=\"http://www.mdv-seia.org/\">Maryland-DC-Virginia Solar Energy Industries Association</a>   Professional Member\r\n  \r\n<h2>Contact Us</h2>\r\n<p>\r\nTelephone: 240-344-2657\r\n</p>\r\n<p>\r\nEmail:\r\n\r\n          Sales: sales@uspvinc.com\r\n\r\n          Customer Service: support@uspvinc.com\r\n\r\n          Other Inquiries:  info@uspvinc.com\r\n</p>\r\n<p>\r\nPostal Address: 4539 Metropolitan Court, Frederick MD  21704\r\n</p>\";s:5:\"#rows\";i:20;s:9:\"#required\";b:0;}s:6:\"format\";a:9:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:12:\"Input format\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:7:\"#weight\";N;s:17:\"#element_validate\";a:1:{i:0;s:20:\"filter_form_validate\";}i:1;a:7:{s:5:\"#type\";s:5:\"radio\";s:6:\"#title\";s:13:\"Filtered HTML\";s:14:\"#default_value\";s:1:\"2\";s:13:\"#return_value\";s:1:\"1\";s:8:\"#parents\";a:1:{i:0;s:6:\"format\";}s:12:\"#description\";s:306:\"<ul class=\"tips\"><li>Web page addresses and e-mail addresses turn into links automatically.</li><li>Allowed HTML tags: &lt;a&gt; &lt;em&gt; &lt;strong&gt; &lt;cite&gt; &lt;code&gt; &lt;ul&gt; &lt;ol&gt; &lt;li&gt; &lt;dl&gt; &lt;dt&gt; &lt;dd&gt;</li><li>Lines and paragraphs break automatically.</li></ul>\";s:3:\"#id\";s:13:\"edit-format-1\";}i:2;a:7:{s:5:\"#type\";s:5:\"radio\";s:6:\"#title\";s:9:\"Full HTML\";s:14:\"#default_value\";s:1:\"2\";s:13:\"#return_value\";s:1:\"2\";s:8:\"#parents\";a:1:{i:0;s:6:\"format\";}s:12:\"#description\";s:151:\"<ul class=\"tips\"><li>Web page addresses and e-mail addresses turn into links automatically.</li><li>Lines and paragraphs break automatically.</li></ul>\";s:3:\"#id\";s:13:\"edit-format-2\";}i:3;a:1:{s:6:\"#value\";s:90:\"<p><a href=\"/~uspvinc/main2/filter/tips\">More information about formatting options</a></p>\";}}}s:5:\"#node\";O:8:\"stdClass\":33:{s:3:\"nid\";s:1:\"4\";s:4:\"type\";s:4:\"page\";s:8:\"language\";s:0:\"\";s:3:\"uid\";s:1:\"1\";s:6:\"status\";s:1:\"1\";s:7:\"created\";s:10:\"1265202538\";s:7:\"changed\";s:10:\"1285684275\";s:7:\"comment\";s:1:\"0\";s:7:\"promote\";s:1:\"0\";s:8:\"moderate\";s:1:\"0\";s:6:\"sticky\";s:1:\"0\";s:4:\"tnid\";s:1:\"0\";s:9:\"translate\";s:1:\"0\";s:3:\"vid\";s:1:\"4\";s:12:\"revision_uid\";s:1:\"1\";s:5:\"title\";s:9:\"resources\";s:4:\"body\";s:1102:\"<h2>Internet Resources</h2>\r\n \r\nFrom the Database of State Incentives for Renewables and Efficiency (DSIRE.org):\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/statesearch2.cfm?State=US&back=fintab&CurrentPageID=7&Search=TableState&EE=1&RE=1\">Federal Incentives for Solar PV</a>\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&State=MD&RE=1&EE=1\">Maryland Incentives for Solar PV</a>\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&State=DC&RE=1&EE=1\">District of Columbia Incentives for Solar PV</a>\r\n\r\n<h2>Industry Organizations</h2>\r\n\r\n<a href=\"http://www.ases.org/\">American Solar Energy Society</a>   Professional Member\r\n\r\n<a href=\"http://www.mdv-seia.org/\">Maryland-DC-Virginia Solar Energy Industries Association</a>   Professional Member\r\n  \r\n<h2>Contact Us</h2>\r\n<p>\r\nTelephone: 240-344-2657\r\n</p>\r\n<p>\r\nEmail:\r\n\r\n          Sales: sales@uspvinc.com\r\n\r\n          Customer Service: support@uspvinc.com\r\n\r\n          Other Inquiries:  info@uspvinc.com\r\n</p>\r\n<p>\r\nPostal Address: 4539 Metropolitan Court, Frederick MD  21704\r\n</p>\";s:6:\"teaser\";s:569:\"<h2>Internet Resources</h2>\r\n \r\nFrom the Database of State Incentives for Renewables and Efficiency (DSIRE.org):\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/statesearch2.cfm?State=US&back=fintab&CurrentPageID=7&Search=TableState&EE=1&RE=1\">Federal Incentives for Solar PV</a>\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&State=MD&RE=1&EE=1\">Maryland Incentives for Solar PV</a>\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&State=DC&RE=1&EE=1\">District of Columbia Incentives for Solar PV</a>\r\n\r\";s:3:\"log\";N;s:18:\"revision_timestamp\";s:10:\"1285684275\";s:6:\"format\";s:1:\"2\";s:4:\"name\";s:5:\"admin\";s:7:\"picture\";s:0:\"\";s:4:\"data\";s:6:\"a:0:{}\";s:4:\"path\";s:9:\"resources\";s:22:\"last_comment_timestamp\";s:10:\"1265202538\";s:17:\"last_comment_name\";N;s:13:\"comment_count\";s:1:\"0\";s:8:\"taxonomy\";a:0:{}s:4:\"date\";s:25:\"2010-02-03 21:08:58 +0800\";s:8:\"revision\";b:0;s:4:\"menu\";a:48:{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:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:3:\"fit\";s:1:\"2\";s:12:\"number_parts\";s:1:\"2\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:9:\"resources\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:4:\"type\";s:1:\"4\";s:14:\"block_callback\";s:0:\"\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"0\";s:4:\"file\";s:0:\"\";s:9:\"menu_name\";s:14:\"menu-main-menu\";s:4:\"mlid\";s:3:\"284\";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:9:\"resources\";s:7:\"options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:9:\"resources\";}}s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"284\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:4:\"href\";s:6:\"node/4\";s:6:\"access\";b:1;s:17:\"localized_options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:9:\"resources\";}}s:18:\"parent_depth_limit\";i:8;}s:22:\"pathauto_perform_alias\";b:1;}s:20:\"revision_information\";a:7:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:20:\"Revision information\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:7:\"#weight\";i:20;s:8:\"revision\";a:4:{s:7:\"#access\";b:1;s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:19:\"Create new revision\";s:14:\"#default_value\";b:0;}s:3:\"log\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:11:\"Log message\";s:14:\"#default_value\";s:0:\"\";s:5:\"#rows\";i:2;s:12:\"#description\";s:104:\"An explanation of the additions or updates being made to help other authors understand your motivations.\";}}s:6:\"author\";a:8:{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:7:\"#weight\";i:20;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:35:\"Leave blank for <em>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:91:\"Format: <em>2010-02-03 21:08:58 +0800</em>. Leave blank to use the time of form submission.\";s:14:\"#default_value\";s:25:\"2010-02-03 21:08:58 +0800\";}}s:7:\"options\";a:9:{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:7:\"#weight\";i:25;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:\"buttons\";a:3:{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:16:\"node_form_submit\";}}s:7:\"preview\";a:4:{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:6:\"#theme\";a:2:{i:0;s:14:\"page_node_form\";i:1;s:9:\"node_form\";}s:11:\"#parameters\";a:3:{i:0;s:14:\"page_node_form\";i:1;a:3:{s:7:\"storage\";N;s:9:\"submitted\";b:0;s:4:\"post\";a:0:{}}i:2;r:83;}s:9:\"#build_id\";s:37:\"form-af930d8218f4f3e4a3076b14de0c00f7\";s:5:\"#type\";s:4:\"form\";s:11:\"#programmed\";b:0;s:13:\"form_build_id\";a:4:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:37:\"form-af930d8218f4f3e4a3076b14de0c00f7\";s:3:\"#id\";s:37:\"form-af930d8218f4f3e4a3076b14de0c00f7\";s:5:\"#name\";s:13:\"form_build_id\";}s:6:\"#token\";s:14:\"page_node_form\";s:10:\"form_token\";a:3:{s:3:\"#id\";s:30:\"edit-page-node-form-form-token\";s:5:\"#type\";s:5:\"token\";s:14:\"#default_value\";s:32:\"69ee9cfa6b6366390575effcb3429c15\";}s:7:\"form_id\";a:3:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:14:\"page_node_form\";s:3:\"#id\";s:19:\"edit-page-node-form\";}s:12:\"#description\";N;s:11:\"#attributes\";a:0:{}s:9:\"#required\";b:0;s:5:\"#tree\";b:0;s:8:\"#parents\";a:0:{}s:7:\"#method\";s:4:\"post\";s:7:\"#action\";s:27:\"/~uspvinc/main2/node/4/edit\";s:16:\"comment_settings\";a:7:{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:7:\"#weight\";i:30;s:7:\"comment\";a:4:{s:5:\"#type\";s:6:\"radios\";s:8:\"#parents\";a:1:{i:0;s:7:\"comment\";}s:14:\"#default_value\";s:1:\"0\";s:8:\"#options\";a:3:{i:0;s:8:\"Disabled\";i:1;s:9:\"Read only\";i:2;s:10:\"Read/Write\";}}}s:6:\"#cache\";b:1;s:4:\"menu\";a:21:{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:5:\"#tree\";b:1;s:7:\"#weight\";i:-2;s:11:\"#attributes\";a:1:{s:5:\"class\";s:14:\"menu-item-form\";}s:6:\"delete\";a:2:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:22:\"Delete this menu item.\";}s:4:\"mlid\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:3:\"284\";}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\";s:1:\"1\";}s:7:\"options\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:9:\"resources\";}}}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:5:\"#item\";a:48:{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:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:3:\"fit\";s:1:\"2\";s:12:\"number_parts\";s:1:\"2\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:9:\"resources\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:4:\"type\";s:1:\"4\";s:14:\"block_callback\";s:0:\"\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"0\";s:4:\"file\";s:0:\"\";s:9:\"menu_name\";s:14:\"menu-main-menu\";s:4:\"mlid\";s:3:\"284\";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:9:\"resources\";s:7:\"options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:9:\"resources\";}}s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"284\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:4:\"href\";s:6:\"node/4\";s:6:\"access\";b:1;s:17:\"localized_options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:9:\"resources\";}}s:18:\"parent_depth_limit\";i:8;}s:10:\"link_title\";a:5:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:15:\"Menu link title\";s:14:\"#default_value\";s:9:\"resources\";s:12:\"#description\";s:133:\"The link text corresponding to this item that should appear in the menu. Leave blank if you do not wish to add this post to the menu.\";s:9:\"#required\";b:0;}s:6:\"parent\";a:6:{s:5:\"#type\";s:6:\"select\";s:6:\"#title\";s:11:\"Parent item\";s:14:\"#default_value\";s:16:\"menu-main-menu:0\";s:8:\"#options\";a:95:{s:16:\"menu-main-menu:0\";s:11:\"<Main Menu>\";s:18:\"menu-main-menu:283\";s:8:\"-- about\";s:18:\"menu-main-menu:285\";s:11:\"-- services\";s:18:\"menu-main-menu:286\";s:17:\"-- special offers\";s:12:\"navigation:0\";s:12:\"<Navigation>\";s:12:\"navigation:9\";s:26:\"-- Compose tips (disabled)\";s:14:\"navigation:461\";s:29:\"-- Image galleries (disabled)\";s:13:\"navigation:21\";s:13:\"-- My account\";s:14:\"navigation:114\";s:20:\"-- Search (disabled)\";s:14:\"navigation:244\";s:22:\"-- Site map (disabled)\";s:13:\"navigation:11\";s:17:\"-- Create content\";s:14:\"navigation:476\";s:11:\"---- Banner\";s:14:\"navigation:441\";s:10:\"---- Image\";s:14:\"navigation:289\";s:21:\"---- Newsletter issue\";s:14:\"navigation:106\";s:9:\"---- Page\";s:14:\"navigation:388\";s:10:\"---- Panel\";s:14:\"navigation:107\";s:10:\"---- Story\";s:12:\"navigation:2\";s:13:\"-- Administer\";s:13:\"navigation:10\";s:23:\"---- Content management\";s:13:\"navigation:27\";s:15:\"------ Comments\";s:13:\"navigation:28\";s:14:\"------ Content\";s:13:\"navigation:29\";s:20:\"------ Content types\";s:14:\"navigation:462\";s:22:\"------ Image galleries\";s:14:\"navigation:463\";s:19:\"------ Image import\";s:14:\"navigation:538\";s:18:\"------ Newsletters\";s:14:\"navigation:546\";s:20:\"-------- Sent issues\";s:14:\"navigation:541\";s:21:\"-------- Draft issues\";s:14:\"navigation:544\";s:20:\"-------- Newsletters\";s:14:\"navigation:548\";s:22:\"-------- Subscriptions\";s:13:\"navigation:42\";s:20:\"------ Post settings\";s:13:\"navigation:43\";s:21:\"------ RSS publishing\";s:13:\"navigation:94\";s:15:\"------ Taxonomy\";s:13:\"navigation:17\";s:18:\"---- Site building\";s:13:\"navigation:25\";s:13:\"------ Blocks\";s:14:\"navigation:424\";s:20:\"------ Bulk Exporter\";s:13:\"navigation:38\";s:12:\"------ Menus\";s:14:\"navigation:282\";s:18:\"-------- Main Menu\";s:13:\"navigation:89\";s:19:\"-------- Navigation\";s:13:\"navigation:90\";s:22:\"-------- Primary links\";s:14:\"navigation:495\";s:19:\"-------- Right Menu\";s:13:\"navigation:91\";s:24:\"-------- Secondary links\";s:14:\"navigation:387\";s:18:\"------ Mini panels\";s:13:\"navigation:39\";s:14:\"------ Modules\";s:14:\"navigation:412\";s:12:\"------ Pages\";s:14:\"navigation:360\";s:13:\"------ Panels\";s:13:\"navigation:49\";s:13:\"------ Themes\";s:14:\"navigation:335\";s:15:\"------ Triggers\";s:14:\"navigation:501\";s:18:\"------ URL aliases\";s:14:\"navigation:257\";s:12:\"------ Views\";s:13:\"navigation:18\";s:23:\"---- Site configuration\";s:13:\"navigation:23\";s:14:\"------ Actions\";s:14:\"navigation:119\";s:26:\"------ Administration menu\";s:13:\"navigation:24\";s:27:\"------ Administration theme\";s:13:\"navigation:26\";s:17:\"------ Clean URLs\";s:13:\"navigation:30\";s:20:\"------ Date and time\";s:13:\"navigation:33\";s:22:\"------ Error reporting\";s:13:\"navigation:34\";s:18:\"------ File system\";s:13:\"navigation:35\";s:20:\"------ Image toolkit\";s:14:\"navigation:442\";s:13:\"------ Images\";s:13:\"navigation:36\";s:20:\"------ Input formats\";s:13:\"navigation:37\";s:25:\"------ Logging and alerts\";s:14:\"navigation:100\";s:25:\"-------- Database logging\";s:14:\"navigation:245\";s:17:\"------ Nice Menus\";s:13:\"navigation:40\";s:18:\"------ Performance\";s:14:\"navigation:120\";s:22:\"------ Search settings\";s:14:\"navigation:539\";s:17:\"------ Simplenews\";s:14:\"navigation:542\";s:16:\"-------- General\";s:14:\"navigation:543\";s:19:\"-------- Newsletter\";s:14:\"navigation:547\";s:21:\"-------- Subscription\";s:14:\"navigation:545\";s:18:\"-------- Send mail\";s:13:\"navigation:46\";s:23:\"------ Site information\";s:13:\"navigation:47\";s:23:\"------ Site maintenance\";s:14:\"navigation:246\";s:15:\"------ Site map\";s:13:\"navigation:20\";s:20:\"---- User management\";s:13:\"navigation:22\";s:19:\"------ Access rules\";s:13:\"navigation:41\";s:18:\"------ Permissions\";s:13:\"navigation:45\";s:12:\"------ Roles\";s:13:\"navigation:50\";s:20:\"------ User settings\";s:13:\"navigation:51\";s:12:\"------ Users\";s:13:\"navigation:16\";s:12:\"---- Reports\";s:13:\"navigation:93\";s:25:\"------ Recent log entries\";s:13:\"navigation:96\";s:33:\"------ Top \'access denied\' errors\";s:13:\"navigation:97\";s:34:\"------ Top \'page not found\' errors\";s:14:\"navigation:121\";s:25:\"------ Top search phrases\";s:14:\"navigation:105\";s:24:\"------ Available updates\";s:13:\"navigation:48\";s:20:\"------ Status report\";s:13:\"navigation:15\";s:9:\"---- Help\";s:12:\"navigation:4\";s:10:\"-- Log out\";s:15:\"primary-links:0\";s:15:\"<Primary links>\";s:17:\"menu-right-menu:0\";s:12:\"<Right Menu>\";s:19:\"menu-right-menu:496\";s:28:\"-- Financial Calculator Tool\";s:19:\"menu-right-menu:497\";s:21:\"-- News Story Library\";s:19:\"menu-right-menu:498\";s:14:\"-- Latest News\";s:19:\"menu-right-menu:499\";s:25:\"-- SREC Management Portal\";s:17:\"secondary-links:0\";s:17:\"<Secondary links>\";}s:12:\"#description\";s:156:\"The maximum depth for an item and all its children is fixed at 9. Some menu items may not be available as parents if selecting them would exceed this limit.\";s:11:\"#attributes\";a:1:{s:5:\"class\";s:17:\"menu-title-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:1:\"0\";s:12:\"#description\";s:107:\"Optional. In the menu, the heavier items will sink and the lighter items will be positioned nearer the top.\";}}s:7:\"#submit\";a:1:{i:0;s:21:\"menu_node_form_submit\";}s:4:\"path\";a:10:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:17:\"URL path settings\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:0;s:7:\"#access\";b:1;s:7:\"#weight\";i:30;s:4:\"path\";a:6:{s:5:\"#type\";s:9:\"textfield\";s:14:\"#default_value\";s:9:\"resources\";s:10:\"#maxlength\";i:128;s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:12:\"#description\";s:207:\"Optionally specify an alternative URL by which this node 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\";s:1:\"4\";}s:22:\"pathauto_perform_alias\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:15:\"Automatic alias\";s:14:\"#default_value\";b:1;s:12:\"#description\";s:238:\"An alias will be generated for you. If you wish to create your own alias below, uncheck this option. To control the format of the generated aliases, see the <a href=\"/~uspvinc/main2/admin/build/path/pathauto\">automated alias settings</a>.\";s:7:\"#weight\";i:-1;}s:9:\"old_alias\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:9:\"resources\";}}s:11:\"#pre_render\";a:1:{i:0;s:27:\"content_alter_extra_weights\";}s:21:\"#content_extra_fields\";a:6:{s:5:\"title\";a:3:{s:5:\"label\";s:5:\"Title\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:-5;}s:10:\"body_field\";a:4:{s:5:\"label\";s:4:\"Body\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:0;s:4:\"view\";s:4:\"body\";}s:20:\"revision_information\";a:3:{s:5:\"label\";s:20:\"Revision information\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:20;}s:16:\"comment_settings\";a:3:{s:5:\"label\";s:16:\"Comment settings\";s:11:\"description\";s:20:\"Comment module form.\";s:6:\"weight\";i:30;}s:4:\"menu\";a:3:{s:5:\"label\";s:13:\"Menu settings\";s:11:\"description\";s:17:\"Menu module form.\";s:6:\"weight\";i:-2;}s:4:\"path\";a:3:{s:5:\"label\";s:13:\"Path settings\";s:11:\"description\";s:17:\"Path module form.\";s:6:\"weight\";i:30;}}s:12:\"#cache_token\";s:32:\"ea05954e6208c2bed552f97e30d1dad3\";}',1285709780,1285688180,'',1),('form_form-c7ab85f17f0a7cf2877bef01f354ca99','a:41:{s:3:\"#id\";s:9:\"node-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:\"1265202538\";}s:4:\"type\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:4:\"page\";}s:8:\"language\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:0:\"\";}s:7:\"changed\";a:2:{s:5:\"#type\";s:6:\"hidden\";s:14:\"#default_value\";s:10:\"1285684275\";}s:5:\"title\";a:6:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:5:\"Title\";s:9:\"#required\";b:1;s:14:\"#default_value\";s:9:\"resources\";s:10:\"#maxlength\";i:255;s:7:\"#weight\";i:-5;}s:10:\"body_field\";a:7:{s:12:\"#after_build\";a:2:{i:0;s:14:\"node_teaser_js\";i:1;s:26:\"node_teaser_include_verify\";}s:7:\"#prefix\";s:32:\"<div class=\"body-field-wrapper\">\";s:7:\"#suffix\";s:6:\"</div>\";s:9:\"teaser_js\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:5:\"#rows\";i:10;s:7:\"#teaser\";s:9:\"edit-body\";s:16:\"#teaser_checkbox\";s:19:\"edit-teaser-include\";s:9:\"#disabled\";b:1;}s:14:\"teaser_include\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:25:\"Show summary in full view\";s:14:\"#default_value\";b:1;s:7:\"#prefix\";s:29:\"<div class=\"teaser-checkbox\">\";s:7:\"#suffix\";s:6:\"</div>\";}s:4:\"body\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:4:\"Body\";s:14:\"#default_value\";s:1102:\"<h2>Internet Resources</h2>\r\n \r\nFrom the Database of State Incentives for Renewables and Efficiency (DSIRE.org):\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/statesearch2.cfm?State=US&back=fintab&CurrentPageID=7&Search=TableState&EE=1&RE=1\">Federal Incentives for Solar PV</a>\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&State=MD&RE=1&EE=1\">Maryland Incentives for Solar PV</a>\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&State=DC&RE=1&EE=1\">District of Columbia Incentives for Solar PV</a>\r\n\r\n<h2>Industry Organizations</h2>\r\n\r\n<a href=\"http://www.ases.org/\">American Solar Energy Society</a>   Professional Member\r\n\r\n<a href=\"http://www.mdv-seia.org/\">Maryland-DC-Virginia Solar Energy Industries Association</a>   Professional Member\r\n  \r\n<h2>Contact Us</h2>\r\n<p>\r\nTelephone: 240-344-2657\r\n</p>\r\n<p>\r\nEmail:\r\n\r\n          Sales: sales@uspvinc.com\r\n\r\n          Customer Service: support@uspvinc.com\r\n\r\n          Other Inquiries:  info@uspvinc.com\r\n</p>\r\n<p>\r\nPostal Address: 4539 Metropolitan Court, Frederick MD  21704\r\n</p>\";s:5:\"#rows\";i:20;s:9:\"#required\";b:0;}s:6:\"format\";a:9:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:12:\"Input format\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:7:\"#weight\";N;s:17:\"#element_validate\";a:1:{i:0;s:20:\"filter_form_validate\";}i:1;a:7:{s:5:\"#type\";s:5:\"radio\";s:6:\"#title\";s:13:\"Filtered HTML\";s:14:\"#default_value\";s:1:\"2\";s:13:\"#return_value\";s:1:\"1\";s:8:\"#parents\";a:1:{i:0;s:6:\"format\";}s:12:\"#description\";s:306:\"<ul class=\"tips\"><li>Web page addresses and e-mail addresses turn into links automatically.</li><li>Allowed HTML tags: &lt;a&gt; &lt;em&gt; &lt;strong&gt; &lt;cite&gt; &lt;code&gt; &lt;ul&gt; &lt;ol&gt; &lt;li&gt; &lt;dl&gt; &lt;dt&gt; &lt;dd&gt;</li><li>Lines and paragraphs break automatically.</li></ul>\";s:3:\"#id\";s:13:\"edit-format-1\";}i:2;a:7:{s:5:\"#type\";s:5:\"radio\";s:6:\"#title\";s:9:\"Full HTML\";s:14:\"#default_value\";s:1:\"2\";s:13:\"#return_value\";s:1:\"2\";s:8:\"#parents\";a:1:{i:0;s:6:\"format\";}s:12:\"#description\";s:151:\"<ul class=\"tips\"><li>Web page addresses and e-mail addresses turn into links automatically.</li><li>Lines and paragraphs break automatically.</li></ul>\";s:3:\"#id\";s:13:\"edit-format-2\";}i:3;a:1:{s:6:\"#value\";s:90:\"<p><a href=\"/~uspvinc/main2/filter/tips\">More information about formatting options</a></p>\";}}}s:5:\"#node\";O:8:\"stdClass\":33:{s:3:\"nid\";s:1:\"4\";s:4:\"type\";s:4:\"page\";s:8:\"language\";s:0:\"\";s:3:\"uid\";s:1:\"1\";s:6:\"status\";s:1:\"1\";s:7:\"created\";s:10:\"1265202538\";s:7:\"changed\";s:10:\"1285684275\";s:7:\"comment\";s:1:\"0\";s:7:\"promote\";s:1:\"0\";s:8:\"moderate\";s:1:\"0\";s:6:\"sticky\";s:1:\"0\";s:4:\"tnid\";s:1:\"0\";s:9:\"translate\";s:1:\"0\";s:3:\"vid\";s:1:\"4\";s:12:\"revision_uid\";s:1:\"1\";s:5:\"title\";s:9:\"resources\";s:4:\"body\";s:1102:\"<h2>Internet Resources</h2>\r\n \r\nFrom the Database of State Incentives for Renewables and Efficiency (DSIRE.org):\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/statesearch2.cfm?State=US&back=fintab&CurrentPageID=7&Search=TableState&EE=1&RE=1\">Federal Incentives for Solar PV</a>\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&State=MD&RE=1&EE=1\">Maryland Incentives for Solar PV</a>\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&State=DC&RE=1&EE=1\">District of Columbia Incentives for Solar PV</a>\r\n\r\n<h2>Industry Organizations</h2>\r\n\r\n<a href=\"http://www.ases.org/\">American Solar Energy Society</a>   Professional Member\r\n\r\n<a href=\"http://www.mdv-seia.org/\">Maryland-DC-Virginia Solar Energy Industries Association</a>   Professional Member\r\n  \r\n<h2>Contact Us</h2>\r\n<p>\r\nTelephone: 240-344-2657\r\n</p>\r\n<p>\r\nEmail:\r\n\r\n          Sales: sales@uspvinc.com\r\n\r\n          Customer Service: support@uspvinc.com\r\n\r\n          Other Inquiries:  info@uspvinc.com\r\n</p>\r\n<p>\r\nPostal Address: 4539 Metropolitan Court, Frederick MD  21704\r\n</p>\";s:6:\"teaser\";s:569:\"<h2>Internet Resources</h2>\r\n \r\nFrom the Database of State Incentives for Renewables and Efficiency (DSIRE.org):\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/statesearch2.cfm?State=US&back=fintab&CurrentPageID=7&Search=TableState&EE=1&RE=1\">Federal Incentives for Solar PV</a>\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&State=MD&RE=1&EE=1\">Maryland Incentives for Solar PV</a>\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&State=DC&RE=1&EE=1\">District of Columbia Incentives for Solar PV</a>\r\n\r\";s:3:\"log\";N;s:18:\"revision_timestamp\";s:10:\"1285684275\";s:6:\"format\";s:1:\"2\";s:4:\"name\";s:5:\"admin\";s:7:\"picture\";s:0:\"\";s:4:\"data\";s:6:\"a:0:{}\";s:4:\"path\";s:9:\"resources\";s:22:\"last_comment_timestamp\";s:10:\"1265202538\";s:17:\"last_comment_name\";N;s:13:\"comment_count\";s:1:\"0\";s:8:\"taxonomy\";a:0:{}s:4:\"date\";s:25:\"2010-02-03 21:08:58 +0800\";s:8:\"revision\";b:0;s:4:\"menu\";a:48:{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:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:3:\"fit\";s:1:\"2\";s:12:\"number_parts\";s:1:\"2\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:9:\"resources\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:4:\"type\";s:1:\"4\";s:14:\"block_callback\";s:0:\"\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"0\";s:4:\"file\";s:0:\"\";s:9:\"menu_name\";s:14:\"menu-main-menu\";s:4:\"mlid\";s:3:\"284\";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:9:\"resources\";s:7:\"options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:9:\"resources\";}}s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"284\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:4:\"href\";s:6:\"node/4\";s:6:\"access\";b:1;s:17:\"localized_options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:9:\"resources\";}}s:18:\"parent_depth_limit\";i:8;}s:22:\"pathauto_perform_alias\";b:1;}s:20:\"revision_information\";a:7:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:20:\"Revision information\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:7:\"#weight\";i:20;s:8:\"revision\";a:4:{s:7:\"#access\";b:1;s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:19:\"Create new revision\";s:14:\"#default_value\";b:0;}s:3:\"log\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:11:\"Log message\";s:14:\"#default_value\";s:0:\"\";s:5:\"#rows\";i:2;s:12:\"#description\";s:104:\"An explanation of the additions or updates being made to help other authors understand your motivations.\";}}s:6:\"author\";a:8:{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:7:\"#weight\";i:20;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:35:\"Leave blank for <em>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:91:\"Format: <em>2010-02-03 21:08:58 +0800</em>. Leave blank to use the time of form submission.\";s:14:\"#default_value\";s:25:\"2010-02-03 21:08:58 +0800\";}}s:7:\"options\";a:9:{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:7:\"#weight\";i:25;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:\"buttons\";a:3:{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:16:\"node_form_submit\";}}s:7:\"preview\";a:4:{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:6:\"#theme\";a:2:{i:0;s:14:\"page_node_form\";i:1;s:9:\"node_form\";}s:11:\"#parameters\";a:3:{i:0;s:14:\"page_node_form\";i:1;a:3:{s:7:\"storage\";N;s:9:\"submitted\";b:0;s:4:\"post\";a:0:{}}i:2;r:83;}s:9:\"#build_id\";s:37:\"form-c7ab85f17f0a7cf2877bef01f354ca99\";s:5:\"#type\";s:4:\"form\";s:11:\"#programmed\";b:0;s:13:\"form_build_id\";a:4:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:37:\"form-c7ab85f17f0a7cf2877bef01f354ca99\";s:3:\"#id\";s:37:\"form-c7ab85f17f0a7cf2877bef01f354ca99\";s:5:\"#name\";s:13:\"form_build_id\";}s:6:\"#token\";s:14:\"page_node_form\";s:10:\"form_token\";a:3:{s:3:\"#id\";s:30:\"edit-page-node-form-form-token\";s:5:\"#type\";s:5:\"token\";s:14:\"#default_value\";s:32:\"69ee9cfa6b6366390575effcb3429c15\";}s:7:\"form_id\";a:3:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:14:\"page_node_form\";s:3:\"#id\";s:19:\"edit-page-node-form\";}s:12:\"#description\";N;s:11:\"#attributes\";a:0:{}s:9:\"#required\";b:0;s:5:\"#tree\";b:0;s:8:\"#parents\";a:0:{}s:7:\"#method\";s:4:\"post\";s:7:\"#action\";s:27:\"/~uspvinc/main2/node/4/edit\";s:12:\"#after_build\";a:1:{i:0;s:21:\"ckeditor_process_form\";}s:16:\"comment_settings\";a:7:{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:7:\"#weight\";i:30;s:7:\"comment\";a:4:{s:5:\"#type\";s:6:\"radios\";s:8:\"#parents\";a:1:{i:0;s:7:\"comment\";}s:14:\"#default_value\";s:1:\"0\";s:8:\"#options\";a:3:{i:0;s:8:\"Disabled\";i:1;s:9:\"Read only\";i:2;s:10:\"Read/Write\";}}}s:6:\"#cache\";b:1;s:4:\"menu\";a:21:{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:5:\"#tree\";b:1;s:7:\"#weight\";i:-2;s:11:\"#attributes\";a:1:{s:5:\"class\";s:14:\"menu-item-form\";}s:6:\"delete\";a:2:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:22:\"Delete this menu item.\";}s:4:\"mlid\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:3:\"284\";}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\";s:1:\"1\";}s:7:\"options\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:9:\"resources\";}}}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:5:\"#item\";a:48:{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:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:3:\"fit\";s:1:\"2\";s:12:\"number_parts\";s:1:\"2\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:9:\"resources\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:4:\"type\";s:1:\"4\";s:14:\"block_callback\";s:0:\"\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"0\";s:4:\"file\";s:0:\"\";s:9:\"menu_name\";s:14:\"menu-main-menu\";s:4:\"mlid\";s:3:\"284\";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:9:\"resources\";s:7:\"options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:9:\"resources\";}}s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"284\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:4:\"href\";s:6:\"node/4\";s:6:\"access\";b:1;s:17:\"localized_options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:9:\"resources\";}}s:18:\"parent_depth_limit\";i:8;}s:10:\"link_title\";a:5:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:15:\"Menu link title\";s:14:\"#default_value\";s:9:\"resources\";s:12:\"#description\";s:133:\"The link text corresponding to this item that should appear in the menu. Leave blank if you do not wish to add this post to the menu.\";s:9:\"#required\";b:0;}s:6:\"parent\";a:6:{s:5:\"#type\";s:6:\"select\";s:6:\"#title\";s:11:\"Parent item\";s:14:\"#default_value\";s:16:\"menu-main-menu:0\";s:8:\"#options\";a:96:{s:16:\"menu-main-menu:0\";s:11:\"<Main Menu>\";s:18:\"menu-main-menu:283\";s:8:\"-- about\";s:18:\"menu-main-menu:285\";s:11:\"-- services\";s:18:\"menu-main-menu:286\";s:17:\"-- special offers\";s:12:\"navigation:0\";s:12:\"<Navigation>\";s:12:\"navigation:9\";s:26:\"-- Compose tips (disabled)\";s:14:\"navigation:461\";s:29:\"-- Image galleries (disabled)\";s:13:\"navigation:21\";s:13:\"-- My account\";s:14:\"navigation:114\";s:20:\"-- Search (disabled)\";s:14:\"navigation:244\";s:22:\"-- Site map (disabled)\";s:13:\"navigation:11\";s:17:\"-- Create content\";s:14:\"navigation:476\";s:11:\"---- Banner\";s:14:\"navigation:441\";s:10:\"---- Image\";s:14:\"navigation:289\";s:21:\"---- Newsletter issue\";s:14:\"navigation:106\";s:9:\"---- Page\";s:14:\"navigation:388\";s:10:\"---- Panel\";s:14:\"navigation:107\";s:10:\"---- Story\";s:12:\"navigation:2\";s:13:\"-- Administer\";s:13:\"navigation:10\";s:23:\"---- Content management\";s:13:\"navigation:27\";s:15:\"------ Comments\";s:13:\"navigation:28\";s:14:\"------ Content\";s:13:\"navigation:29\";s:20:\"------ Content types\";s:14:\"navigation:462\";s:22:\"------ Image galleries\";s:14:\"navigation:463\";s:19:\"------ Image import\";s:14:\"navigation:538\";s:18:\"------ Newsletters\";s:14:\"navigation:546\";s:20:\"-------- Sent issues\";s:14:\"navigation:541\";s:21:\"-------- Draft issues\";s:14:\"navigation:544\";s:20:\"-------- Newsletters\";s:14:\"navigation:548\";s:22:\"-------- Subscriptions\";s:13:\"navigation:42\";s:20:\"------ Post settings\";s:13:\"navigation:43\";s:21:\"------ RSS publishing\";s:13:\"navigation:94\";s:15:\"------ Taxonomy\";s:13:\"navigation:17\";s:18:\"---- Site building\";s:13:\"navigation:25\";s:13:\"------ Blocks\";s:14:\"navigation:424\";s:20:\"------ Bulk Exporter\";s:13:\"navigation:38\";s:12:\"------ Menus\";s:14:\"navigation:282\";s:18:\"-------- Main Menu\";s:13:\"navigation:89\";s:19:\"-------- Navigation\";s:13:\"navigation:90\";s:22:\"-------- Primary links\";s:14:\"navigation:495\";s:19:\"-------- Right Menu\";s:13:\"navigation:91\";s:24:\"-------- Secondary links\";s:14:\"navigation:387\";s:18:\"------ Mini panels\";s:13:\"navigation:39\";s:14:\"------ Modules\";s:14:\"navigation:412\";s:12:\"------ Pages\";s:14:\"navigation:360\";s:13:\"------ Panels\";s:13:\"navigation:49\";s:13:\"------ Themes\";s:14:\"navigation:335\";s:15:\"------ Triggers\";s:14:\"navigation:501\";s:18:\"------ URL aliases\";s:14:\"navigation:257\";s:12:\"------ Views\";s:13:\"navigation:18\";s:23:\"---- Site configuration\";s:13:\"navigation:23\";s:14:\"------ Actions\";s:14:\"navigation:119\";s:26:\"------ Administration menu\";s:13:\"navigation:24\";s:27:\"------ Administration theme\";s:14:\"navigation:583\";s:15:\"------ CKEditor\";s:13:\"navigation:26\";s:17:\"------ Clean URLs\";s:13:\"navigation:30\";s:20:\"------ Date and time\";s:13:\"navigation:33\";s:22:\"------ Error reporting\";s:13:\"navigation:34\";s:18:\"------ File system\";s:13:\"navigation:35\";s:20:\"------ Image toolkit\";s:14:\"navigation:442\";s:13:\"------ Images\";s:13:\"navigation:36\";s:20:\"------ Input formats\";s:13:\"navigation:37\";s:25:\"------ Logging and alerts\";s:14:\"navigation:100\";s:25:\"-------- Database logging\";s:14:\"navigation:245\";s:17:\"------ Nice Menus\";s:13:\"navigation:40\";s:18:\"------ Performance\";s:14:\"navigation:120\";s:22:\"------ Search settings\";s:14:\"navigation:539\";s:17:\"------ Simplenews\";s:14:\"navigation:542\";s:16:\"-------- General\";s:14:\"navigation:543\";s:19:\"-------- Newsletter\";s:14:\"navigation:547\";s:21:\"-------- Subscription\";s:14:\"navigation:545\";s:18:\"-------- Send mail\";s:13:\"navigation:46\";s:23:\"------ Site information\";s:13:\"navigation:47\";s:23:\"------ Site maintenance\";s:14:\"navigation:246\";s:15:\"------ Site map\";s:13:\"navigation:20\";s:20:\"---- User management\";s:13:\"navigation:22\";s:19:\"------ Access rules\";s:13:\"navigation:41\";s:18:\"------ Permissions\";s:13:\"navigation:45\";s:12:\"------ Roles\";s:13:\"navigation:50\";s:20:\"------ User settings\";s:13:\"navigation:51\";s:12:\"------ Users\";s:13:\"navigation:16\";s:12:\"---- Reports\";s:13:\"navigation:93\";s:25:\"------ Recent log entries\";s:13:\"navigation:96\";s:33:\"------ Top \'access denied\' errors\";s:13:\"navigation:97\";s:34:\"------ Top \'page not found\' errors\";s:14:\"navigation:121\";s:25:\"------ Top search phrases\";s:14:\"navigation:105\";s:24:\"------ Available updates\";s:13:\"navigation:48\";s:20:\"------ Status report\";s:13:\"navigation:15\";s:9:\"---- Help\";s:12:\"navigation:4\";s:10:\"-- Log out\";s:15:\"primary-links:0\";s:15:\"<Primary links>\";s:17:\"menu-right-menu:0\";s:12:\"<Right Menu>\";s:19:\"menu-right-menu:496\";s:28:\"-- Financial Calculator Tool\";s:19:\"menu-right-menu:497\";s:21:\"-- News Story Library\";s:19:\"menu-right-menu:498\";s:14:\"-- Latest News\";s:19:\"menu-right-menu:499\";s:25:\"-- SREC Management Portal\";s:17:\"secondary-links:0\";s:17:\"<Secondary links>\";}s:12:\"#description\";s:156:\"The maximum depth for an item and all its children is fixed at 9. Some menu items may not be available as parents if selecting them would exceed this limit.\";s:11:\"#attributes\";a:1:{s:5:\"class\";s:17:\"menu-title-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:1:\"0\";s:12:\"#description\";s:107:\"Optional. In the menu, the heavier items will sink and the lighter items will be positioned nearer the top.\";}}s:7:\"#submit\";a:1:{i:0;s:21:\"menu_node_form_submit\";}s:4:\"path\";a:10:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:17:\"URL path settings\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:0;s:7:\"#access\";b:1;s:7:\"#weight\";i:30;s:4:\"path\";a:6:{s:5:\"#type\";s:9:\"textfield\";s:14:\"#default_value\";s:9:\"resources\";s:10:\"#maxlength\";i:128;s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:12:\"#description\";s:207:\"Optionally specify an alternative URL by which this node 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\";s:1:\"4\";}s:22:\"pathauto_perform_alias\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:15:\"Automatic alias\";s:14:\"#default_value\";b:1;s:12:\"#description\";s:238:\"An alias will be generated for you. If you wish to create your own alias below, uncheck this option. To control the format of the generated aliases, see the <a href=\"/~uspvinc/main2/admin/build/path/pathauto\">automated alias settings</a>.\";s:7:\"#weight\";i:-1;}s:9:\"old_alias\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:9:\"resources\";}}s:11:\"#pre_render\";a:1:{i:0;s:27:\"content_alter_extra_weights\";}s:21:\"#content_extra_fields\";a:6:{s:5:\"title\";a:3:{s:5:\"label\";s:5:\"Title\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:-5;}s:10:\"body_field\";a:4:{s:5:\"label\";s:4:\"Body\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:0;s:4:\"view\";s:4:\"body\";}s:20:\"revision_information\";a:3:{s:5:\"label\";s:20:\"Revision information\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:20;}s:16:\"comment_settings\";a:3:{s:5:\"label\";s:16:\"Comment settings\";s:11:\"description\";s:20:\"Comment module form.\";s:6:\"weight\";i:30;}s:4:\"menu\";a:3:{s:5:\"label\";s:13:\"Menu settings\";s:11:\"description\";s:17:\"Menu module form.\";s:6:\"weight\";i:-2;}s:4:\"path\";a:3:{s:5:\"label\";s:13:\"Path settings\";s:11:\"description\";s:17:\"Path module form.\";s:6:\"weight\";i:30;}}s:12:\"#cache_token\";s:32:\"ea05954e6208c2bed552f97e30d1dad3\";}',1285719431,1285697831,'',1),('form_form-173c7a9321b96d94c00d5e45fa810a4c','a:41:{s:7:\"#prefix\";s:2484:\"<div class=\"preview\"><h3>Preview trimmed version</h3>  <div class=\"node\">\n        <h2 class=\"title\"><a href=\"/~uspvinc/main2/resources\">resources</a></h2>    <div class=\"submitted\"></div>\n    <div class=\"taxonomy\"></div>\n    <div class=\"content\"><h2>Internet Resources</h2>\n<p>From the Database of State Incentives for Renewables and Efficiency (DSIRE.org):</p>\n<p><a href=\"http://www.dsireusa.org/library/includes/statesearch2.cfm?State=US&amp;back=fintab&amp;CurrentPageID=7&amp;Search=TableState&amp;EE=1&amp;RE=1\">Federal Incentives for Solar PV</a></p>\n<p><a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&amp;State=MD&amp;RE=1&amp;EE=1\">Maryland Incentives for Solar PV</a></p>\n<p><a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&amp;State=DC&amp;RE=1&amp;EE=1\">District of Columbia Incentives for Solar PV</a></p>\n</div>\n      </div>\n<h3>Preview full version</h3>  <div class=\"node\">\n        <h2 class=\"title\"><a href=\"/~uspvinc/main2/resources\">resources</a></h2>    <div class=\"submitted\"></div>\n    <div class=\"taxonomy\"></div>\n    <div class=\"content\"><h2>Internet Resources</h2>\n<p>From the Database of State Incentives for Renewables and Efficiency (DSIRE.org):</p>\n<p><a href=\"http://www.dsireusa.org/library/includes/statesearch2.cfm?State=US&amp;back=fintab&amp;CurrentPageID=7&amp;Search=TableState&amp;EE=1&amp;RE=1\">Federal Incentives for Solar PV</a></p>\n<p><a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&amp;State=MD&amp;RE=1&amp;EE=1\">Maryland Incentives for Solar PV</a></p>\n<p><a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&amp;State=DC&amp;RE=1&amp;EE=1\">District of Columbia Incentives for Solar PV</a></p>\n<h2>Industry Organizations</h2>\n<p><a href=\"http://www.ases.org/\">American Solar Energy Society</a><br />\n<img src=\"sites/default/files/images/ases-logo.jpg\" />  Professional Member</p>\n<p><a href=\"http://www.mdv-seia.org/\">Maryland-DC-Virginia Solar Energy Industries Association</a>   Professional Member</p>\n<h2>Contact Us</h2>\n<p>\nTelephone: 240-344-2657\n</p>\n<p>\nEmail:</p>\n<p>          Sales: <a href=\"mailto:sales@uspvinc.com\">sales@uspvinc.com</a></p>\n<p>          Customer Service: <a href=\"mailto:support@uspvinc.com\">support@uspvinc.com</a></p>\n<p>          Other Inquiries:  <a href=\"mailto:info@uspvinc.com\">info@uspvinc.com</a>\n</p>\n<p>\nPostal Address: 4539 Metropolitan Court, Frederick MD  21704\n</p>\n</div>\n      </div>\n</div>\n\";s:3:\"#id\";s:9:\"node-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\";i:1265202538;}s:4:\"type\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:4:\"page\";}s:8:\"language\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:0:\"\";}s:7:\"changed\";a:2:{s:5:\"#type\";s:6:\"hidden\";s:14:\"#default_value\";s:10:\"1285684275\";}s:5:\"title\";a:6:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:5:\"Title\";s:9:\"#required\";b:1;s:14:\"#default_value\";s:9:\"resources\";s:10:\"#maxlength\";i:255;s:7:\"#weight\";i:-5;}s:10:\"body_field\";a:7:{s:12:\"#after_build\";a:2:{i:0;s:14:\"node_teaser_js\";i:1;s:26:\"node_teaser_include_verify\";}s:7:\"#prefix\";s:32:\"<div class=\"body-field-wrapper\">\";s:7:\"#suffix\";s:6:\"</div>\";s:9:\"teaser_js\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:5:\"#rows\";i:10;s:7:\"#teaser\";s:9:\"edit-body\";s:16:\"#teaser_checkbox\";s:19:\"edit-teaser-include\";s:9:\"#disabled\";b:1;}s:14:\"teaser_include\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:25:\"Show summary in full view\";s:14:\"#default_value\";b:1;s:7:\"#prefix\";s:29:\"<div class=\"teaser-checkbox\">\";s:7:\"#suffix\";s:6:\"</div>\";}s:4:\"body\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:4:\"Body\";s:14:\"#default_value\";s:1157:\"<h2>Internet Resources</h2>\r\n \r\nFrom the Database of State Incentives for Renewables and Efficiency (DSIRE.org):\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/statesearch2.cfm?State=US&back=fintab&CurrentPageID=7&Search=TableState&EE=1&RE=1\">Federal Incentives for Solar PV</a>\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&State=MD&RE=1&EE=1\">Maryland Incentives for Solar PV</a>\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&State=DC&RE=1&EE=1\">District of Columbia Incentives for Solar PV</a>\r\n\r\n<h2>Industry Organizations</h2>\r\n\r\n<a href=\"http://www.ases.org/\">American Solar Energy Society</a> \r\n<img src=\"sites/default/files/images/ases-logo.jpg\"/>  Professional Member\r\n\r\n<a href=\"http://www.mdv-seia.org/\">Maryland-DC-Virginia Solar Energy Industries Association</a>   Professional Member\r\n  \r\n<h2>Contact Us</h2>\r\n<p>\r\nTelephone: 240-344-2657\r\n</p>\r\n<p>\r\nEmail:\r\n\r\n          Sales: sales@uspvinc.com\r\n\r\n          Customer Service: support@uspvinc.com\r\n\r\n          Other Inquiries:  info@uspvinc.com\r\n</p>\r\n<p>\r\nPostal Address: 4539 Metropolitan Court, Frederick MD  21704\r\n</p>\";s:5:\"#rows\";i:20;s:9:\"#required\";b:0;}s:6:\"format\";a:9:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:12:\"Input format\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:7:\"#weight\";N;s:17:\"#element_validate\";a:1:{i:0;s:20:\"filter_form_validate\";}i:1;a:7:{s:5:\"#type\";s:5:\"radio\";s:6:\"#title\";s:13:\"Filtered HTML\";s:14:\"#default_value\";s:1:\"2\";s:13:\"#return_value\";s:1:\"1\";s:8:\"#parents\";a:1:{i:0;s:6:\"format\";}s:12:\"#description\";s:306:\"<ul class=\"tips\"><li>Web page addresses and e-mail addresses turn into links automatically.</li><li>Allowed HTML tags: &lt;a&gt; &lt;em&gt; &lt;strong&gt; &lt;cite&gt; &lt;code&gt; &lt;ul&gt; &lt;ol&gt; &lt;li&gt; &lt;dl&gt; &lt;dt&gt; &lt;dd&gt;</li><li>Lines and paragraphs break automatically.</li></ul>\";s:3:\"#id\";s:13:\"edit-format-1\";}i:2;a:7:{s:5:\"#type\";s:5:\"radio\";s:6:\"#title\";s:9:\"Full HTML\";s:14:\"#default_value\";s:1:\"2\";s:13:\"#return_value\";s:1:\"2\";s:8:\"#parents\";a:1:{i:0;s:6:\"format\";}s:12:\"#description\";s:151:\"<ul class=\"tips\"><li>Web page addresses and e-mail addresses turn into links automatically.</li><li>Lines and paragraphs break automatically.</li></ul>\";s:3:\"#id\";s:13:\"edit-format-2\";}i:3;a:1:{s:6:\"#value\";s:90:\"<p><a href=\"/~uspvinc/main2/filter/tips\">More information about formatting options</a></p>\";}}}s:5:\"#node\";O:8:\"stdClass\":45:{s:3:\"nid\";s:1:\"4\";s:3:\"vid\";s:1:\"4\";s:3:\"uid\";s:1:\"1\";s:7:\"created\";i:1265202538;s:4:\"type\";s:4:\"page\";s:8:\"language\";s:0:\"\";s:7:\"changed\";s:10:\"1285684275\";s:5:\"title\";s:9:\"resources\";s:9:\"teaser_js\";s:0:\"\";s:14:\"teaser_include\";i:1;s:4:\"body\";s:1157:\"<h2>Internet Resources</h2>\r\n \r\nFrom the Database of State Incentives for Renewables and Efficiency (DSIRE.org):\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/statesearch2.cfm?State=US&back=fintab&CurrentPageID=7&Search=TableState&EE=1&RE=1\">Federal Incentives for Solar PV</a>\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&State=MD&RE=1&EE=1\">Maryland Incentives for Solar PV</a>\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&State=DC&RE=1&EE=1\">District of Columbia Incentives for Solar PV</a>\r\n\r\n<h2>Industry Organizations</h2>\r\n\r\n<a href=\"http://www.ases.org/\">American Solar Energy Society</a> \r\n<img src=\"sites/default/files/images/ases-logo.jpg\"/>  Professional Member\r\n\r\n<a href=\"http://www.mdv-seia.org/\">Maryland-DC-Virginia Solar Energy Industries Association</a>   Professional Member\r\n  \r\n<h2>Contact Us</h2>\r\n<p>\r\nTelephone: 240-344-2657\r\n</p>\r\n<p>\r\nEmail:\r\n\r\n          Sales: sales@uspvinc.com\r\n\r\n          Customer Service: support@uspvinc.com\r\n\r\n          Other Inquiries:  info@uspvinc.com\r\n</p>\r\n<p>\r\nPostal Address: 4539 Metropolitan Court, Frederick MD  21704\r\n</p>\";s:6:\"format\";s:1:\"2\";s:8:\"revision\";i:0;s:3:\"log\";s:0:\"\";s:4:\"name\";s:5:\"admin\";s:4:\"date\";s:25:\"2010-02-03 21:08:58 +0800\";s:6:\"status\";i:1;s:7:\"promote\";i:0;s:6:\"sticky\";i:0;s:6:\"submit\";s:4:\"Save\";s:2:\"op\";s:7:\"Preview\";s:7:\"preview\";s:7:\"Preview\";s:6:\"delete\";s:6:\"Delete\";s:13:\"form_build_id\";s:37:\"form-37c3e61624d28dd989ffad79c3af7032\";s:10:\"form_token\";s:32:\"69ee9cfa6b6366390575effcb3429c15\";s:7:\"form_id\";s:14:\"page_node_form\";s:7:\"comment\";s:1:\"0\";s:4:\"menu\";a:14:{s:6:\"delete\";i:0;s:4:\"mlid\";s:3:\"284\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:10:\"customized\";s:1:\"1\";s:7:\"options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:9:\"resources\";}}s:8:\"expanded\";s:1:\"0\";s:18:\"parent_depth_limit\";i:8;s:10:\"link_title\";s:9:\"resources\";s:6:\"parent\";s:16:\"menu-main-menu:0\";s:6:\"weight\";s:1:\"0\";s:4:\"plid\";s:1:\"0\";s:9:\"menu_name\";s:14:\"menu-main-menu\";}s:4:\"path\";s:9:\"resources\";s:22:\"pathauto_perform_alias\";i:1;s:9:\"old_alias\";s:9:\"resources\";s:6:\"teaser\";s:569:\"<h2>Internet Resources</h2>\r\n \r\nFrom the Database of State Incentives for Renewables and Efficiency (DSIRE.org):\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/statesearch2.cfm?State=US&back=fintab&CurrentPageID=7&Search=TableState&EE=1&RE=1\">Federal Incentives for Solar PV</a>\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&State=MD&RE=1&EE=1\">Maryland Incentives for Solar PV</a>\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&State=DC&RE=1&EE=1\">District of Columbia Incentives for Solar PV</a>\r\n\r\";s:9:\"validated\";b:1;s:8:\"moderate\";s:1:\"0\";s:4:\"tnid\";s:1:\"0\";s:9:\"translate\";s:1:\"0\";s:12:\"revision_uid\";s:1:\"1\";s:18:\"revision_timestamp\";s:10:\"1285684275\";s:7:\"picture\";s:0:\"\";s:4:\"data\";s:6:\"a:0:{}\";s:22:\"last_comment_timestamp\";s:10:\"1265202538\";s:17:\"last_comment_name\";N;s:13:\"comment_count\";s:1:\"0\";s:8:\"taxonomy\";a:0:{}s:10:\"build_mode\";i:1;}s:20:\"revision_information\";a:7:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:20:\"Revision information\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:7:\"#weight\";i:20;s:8:\"revision\";a:4:{s:7:\"#access\";b:1;s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:19:\"Create new revision\";s:14:\"#default_value\";i:0;}s:3:\"log\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:11:\"Log message\";s:14:\"#default_value\";s:0:\"\";s:5:\"#rows\";i:2;s:12:\"#description\";s:104:\"An explanation of the additions or updates being made to help other authors understand your motivations.\";}}s:6:\"author\";a:8:{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:7:\"#weight\";i:20;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:35:\"Leave blank for <em>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:91:\"Format: <em>2010-02-03 21:08:58 +0800</em>. Leave blank to use the time of form submission.\";s:14:\"#default_value\";s:25:\"2010-02-03 21:08:58 +0800\";}}s:7:\"options\";a:9:{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:7:\"#weight\";i:25;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: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\";i:0;}}s:7:\"buttons\";a:3:{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:16:\"node_form_submit\";}}s:7:\"preview\";a:4:{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:6:\"#theme\";a:2:{i:0;s:14:\"page_node_form\";i:1;s:9:\"node_form\";}s:11:\"#parameters\";a:3:{i:0;s:14:\"page_node_form\";i:1;a:8:{s:7:\"storage\";N;s:9:\"submitted\";b:1;s:6:\"values\";a:31:{s:3:\"nid\";s:1:\"4\";s:3:\"vid\";s:1:\"4\";s:3:\"uid\";s:1:\"1\";s:7:\"created\";i:1265202538;s:4:\"type\";s:4:\"page\";s:8:\"language\";s:0:\"\";s:7:\"changed\";s:10:\"1285684275\";s:5:\"title\";s:9:\"resources\";s:9:\"teaser_js\";s:0:\"\";s:14:\"teaser_include\";i:1;s:4:\"body\";s:1157:\"<h2>Internet Resources</h2>\r\n \r\nFrom the Database of State Incentives for Renewables and Efficiency (DSIRE.org):\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/statesearch2.cfm?State=US&back=fintab&CurrentPageID=7&Search=TableState&EE=1&RE=1\">Federal Incentives for Solar PV</a>\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&State=MD&RE=1&EE=1\">Maryland Incentives for Solar PV</a>\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&State=DC&RE=1&EE=1\">District of Columbia Incentives for Solar PV</a>\r\n\r\n<h2>Industry Organizations</h2>\r\n\r\n<a href=\"http://www.ases.org/\">American Solar Energy Society</a> \r\n<img src=\"sites/default/files/images/ases-logo.jpg\"/>  Professional Member\r\n\r\n<a href=\"http://www.mdv-seia.org/\">Maryland-DC-Virginia Solar Energy Industries Association</a>   Professional Member\r\n  \r\n<h2>Contact Us</h2>\r\n<p>\r\nTelephone: 240-344-2657\r\n</p>\r\n<p>\r\nEmail:\r\n\r\n          Sales: sales@uspvinc.com\r\n\r\n          Customer Service: support@uspvinc.com\r\n\r\n          Other Inquiries:  info@uspvinc.com\r\n</p>\r\n<p>\r\nPostal Address: 4539 Metropolitan Court, Frederick MD  21704\r\n</p>\";s:6:\"format\";s:1:\"2\";s:8:\"revision\";i:0;s:3:\"log\";s:0:\"\";s:4:\"name\";s:5:\"admin\";s:4:\"date\";s:25:\"2010-02-03 21:08:58 +0800\";s:6:\"status\";i:1;s:7:\"promote\";i:0;s:6:\"sticky\";i:0;s:6:\"submit\";s:4:\"Save\";s:2:\"op\";s:7:\"Preview\";s:7:\"preview\";s:7:\"Preview\";s:6:\"delete\";s:6:\"Delete\";s:13:\"form_build_id\";s:37:\"form-37c3e61624d28dd989ffad79c3af7032\";s:10:\"form_token\";s:32:\"69ee9cfa6b6366390575effcb3429c15\";s:7:\"form_id\";s:14:\"page_node_form\";s:7:\"comment\";s:1:\"0\";s:4:\"menu\";a:14:{s:6:\"delete\";i:0;s:4:\"mlid\";s:3:\"284\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:10:\"customized\";s:1:\"1\";s:7:\"options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:9:\"resources\";}}s:8:\"expanded\";s:1:\"0\";s:18:\"parent_depth_limit\";i:8;s:10:\"link_title\";s:9:\"resources\";s:6:\"parent\";s:16:\"menu-main-menu:0\";s:6:\"weight\";s:1:\"0\";s:4:\"plid\";s:1:\"0\";s:9:\"menu_name\";s:14:\"menu-main-menu\";}s:4:\"path\";s:0:\"\";s:22:\"pathauto_perform_alias\";i:1;s:9:\"old_alias\";s:9:\"resources\";}s:14:\"clicked_button\";a:19:{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:5:\"#post\";a:16:{s:5:\"title\";s:9:\"resources\";s:4:\"menu\";a:3:{s:10:\"link_title\";s:9:\"resources\";s:6:\"parent\";s:16:\"menu-main-menu:0\";s:6:\"weight\";s:1:\"0\";}s:14:\"teaser_include\";s:1:\"1\";s:4:\"body\";s:1157:\"<h2>Internet Resources</h2>\r\n \r\nFrom the Database of State Incentives for Renewables and Efficiency (DSIRE.org):\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/statesearch2.cfm?State=US&back=fintab&CurrentPageID=7&Search=TableState&EE=1&RE=1\">Federal Incentives for Solar PV</a>\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&State=MD&RE=1&EE=1\">Maryland Incentives for Solar PV</a>\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&State=DC&RE=1&EE=1\">District of Columbia Incentives for Solar PV</a>\r\n\r\n<h2>Industry Organizations</h2>\r\n\r\n<a href=\"http://www.ases.org/\">American Solar Energy Society</a> \r\n<img src=\"sites/default/files/images/ases-logo.jpg\"/>  Professional Member\r\n\r\n<a href=\"http://www.mdv-seia.org/\">Maryland-DC-Virginia Solar Energy Industries Association</a>   Professional Member\r\n  \r\n<h2>Contact Us</h2>\r\n<p>\r\nTelephone: 240-344-2657\r\n</p>\r\n<p>\r\nEmail:\r\n\r\n          Sales: sales@uspvinc.com\r\n\r\n          Customer Service: support@uspvinc.com\r\n\r\n          Other Inquiries:  info@uspvinc.com\r\n</p>\r\n<p>\r\nPostal Address: 4539 Metropolitan Court, Frederick MD  21704\r\n</p>\";s:6:\"format\";s:1:\"2\";s:7:\"changed\";s:10:\"1285684275\";s:13:\"form_build_id\";s:37:\"form-37c3e61624d28dd989ffad79c3af7032\";s:10:\"form_token\";s:32:\"69ee9cfa6b6366390575effcb3429c15\";s:7:\"form_id\";s:14:\"page_node_form\";s:3:\"log\";s:0:\"\";s:7:\"comment\";s:1:\"0\";s:22:\"pathauto_perform_alias\";s:1:\"1\";s:4:\"name\";s:5:\"admin\";s:4:\"date\";s:25:\"2010-02-03 21:08:58 +0800\";s:6:\"status\";s:1:\"1\";s:2:\"op\";s:7:\"Preview\";}s:11:\"#programmed\";b:0;s:5:\"#tree\";b:0;s:8:\"#parents\";a:1:{i:0;s:7:\"preview\";}s:14:\"#array_parents\";a:2:{i:0;s:7:\"buttons\";i:1;s:7:\"preview\";}s:10:\"#processed\";b:0;s:12:\"#description\";N;s:11:\"#attributes\";a:0:{}s:9:\"#required\";b:0;s:6:\"#input\";b:1;s:5:\"#name\";s:2:\"op\";s:12:\"#button_type\";s:6:\"submit\";s:25:\"#executes_submit_callback\";b:1;s:8:\"#process\";a:1:{i:0;s:16:\"form_expand_ahah\";}s:3:\"#id\";s:12:\"edit-preview\";}s:8:\"redirect\";N;s:4:\"node\";a:33:{s:3:\"nid\";s:1:\"4\";s:3:\"vid\";s:1:\"4\";s:3:\"uid\";s:1:\"1\";s:7:\"created\";i:1265202538;s:4:\"type\";s:4:\"page\";s:8:\"language\";s:0:\"\";s:7:\"changed\";s:10:\"1285684275\";s:5:\"title\";s:9:\"resources\";s:9:\"teaser_js\";s:0:\"\";s:14:\"teaser_include\";i:1;s:4:\"body\";s:1157:\"<h2>Internet Resources</h2>\r\n \r\nFrom the Database of State Incentives for Renewables and Efficiency (DSIRE.org):\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/statesearch2.cfm?State=US&back=fintab&CurrentPageID=7&Search=TableState&EE=1&RE=1\">Federal Incentives for Solar PV</a>\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&State=MD&RE=1&EE=1\">Maryland Incentives for Solar PV</a>\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&State=DC&RE=1&EE=1\">District of Columbia Incentives for Solar PV</a>\r\n\r\n<h2>Industry Organizations</h2>\r\n\r\n<a href=\"http://www.ases.org/\">American Solar Energy Society</a> \r\n<img src=\"sites/default/files/images/ases-logo.jpg\"/>  Professional Member\r\n\r\n<a href=\"http://www.mdv-seia.org/\">Maryland-DC-Virginia Solar Energy Industries Association</a>   Professional Member\r\n  \r\n<h2>Contact Us</h2>\r\n<p>\r\nTelephone: 240-344-2657\r\n</p>\r\n<p>\r\nEmail:\r\n\r\n          Sales: sales@uspvinc.com\r\n\r\n          Customer Service: support@uspvinc.com\r\n\r\n          Other Inquiries:  info@uspvinc.com\r\n</p>\r\n<p>\r\nPostal Address: 4539 Metropolitan Court, Frederick MD  21704\r\n</p>\";s:6:\"format\";s:1:\"2\";s:8:\"revision\";i:0;s:3:\"log\";s:0:\"\";s:4:\"name\";s:5:\"admin\";s:4:\"date\";s:25:\"2010-02-03 21:08:58 +0800\";s:6:\"status\";i:1;s:7:\"promote\";i:0;s:6:\"sticky\";i:0;s:6:\"submit\";s:4:\"Save\";s:2:\"op\";s:7:\"Preview\";s:7:\"preview\";s:7:\"Preview\";s:6:\"delete\";s:6:\"Delete\";s:13:\"form_build_id\";s:37:\"form-37c3e61624d28dd989ffad79c3af7032\";s:10:\"form_token\";s:32:\"69ee9cfa6b6366390575effcb3429c15\";s:7:\"form_id\";s:14:\"page_node_form\";s:7:\"comment\";s:1:\"0\";s:4:\"menu\";a:14:{s:6:\"delete\";i:0;s:4:\"mlid\";s:3:\"284\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:10:\"customized\";s:1:\"1\";s:7:\"options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:9:\"resources\";}}s:8:\"expanded\";s:1:\"0\";s:18:\"parent_depth_limit\";i:8;s:10:\"link_title\";s:9:\"resources\";s:6:\"parent\";s:16:\"menu-main-menu:0\";s:6:\"weight\";s:1:\"0\";s:4:\"plid\";s:1:\"0\";s:9:\"menu_name\";s:14:\"menu-main-menu\";}s:4:\"path\";s:0:\"\";s:22:\"pathauto_perform_alias\";i:1;s:9:\"old_alias\";s:9:\"resources\";s:6:\"teaser\";s:569:\"<h2>Internet Resources</h2>\r\n \r\nFrom the Database of State Incentives for Renewables and Efficiency (DSIRE.org):\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/statesearch2.cfm?State=US&back=fintab&CurrentPageID=7&Search=TableState&EE=1&RE=1\">Federal Incentives for Solar PV</a>\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&State=MD&RE=1&EE=1\">Maryland Incentives for Solar PV</a>\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&State=DC&RE=1&EE=1\">District of Columbia Incentives for Solar PV</a>\r\n\r\";s:9:\"validated\";b:1;}s:7:\"rebuild\";b:1;s:12:\"node_preview\";s:2484:\"<div class=\"preview\"><h3>Preview trimmed version</h3>  <div class=\"node\">\n        <h2 class=\"title\"><a href=\"/~uspvinc/main2/resources\">resources</a></h2>    <div class=\"submitted\"></div>\n    <div class=\"taxonomy\"></div>\n    <div class=\"content\"><h2>Internet Resources</h2>\n<p>From the Database of State Incentives for Renewables and Efficiency (DSIRE.org):</p>\n<p><a href=\"http://www.dsireusa.org/library/includes/statesearch2.cfm?State=US&amp;back=fintab&amp;CurrentPageID=7&amp;Search=TableState&amp;EE=1&amp;RE=1\">Federal Incentives for Solar PV</a></p>\n<p><a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&amp;State=MD&amp;RE=1&amp;EE=1\">Maryland Incentives for Solar PV</a></p>\n<p><a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&amp;State=DC&amp;RE=1&amp;EE=1\">District of Columbia Incentives for Solar PV</a></p>\n</div>\n      </div>\n<h3>Preview full version</h3>  <div class=\"node\">\n        <h2 class=\"title\"><a href=\"/~uspvinc/main2/resources\">resources</a></h2>    <div class=\"submitted\"></div>\n    <div class=\"taxonomy\"></div>\n    <div class=\"content\"><h2>Internet Resources</h2>\n<p>From the Database of State Incentives for Renewables and Efficiency (DSIRE.org):</p>\n<p><a href=\"http://www.dsireusa.org/library/includes/statesearch2.cfm?State=US&amp;back=fintab&amp;CurrentPageID=7&amp;Search=TableState&amp;EE=1&amp;RE=1\">Federal Incentives for Solar PV</a></p>\n<p><a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&amp;State=MD&amp;RE=1&amp;EE=1\">Maryland Incentives for Solar PV</a></p>\n<p><a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&amp;State=DC&amp;RE=1&amp;EE=1\">District of Columbia Incentives for Solar PV</a></p>\n<h2>Industry Organizations</h2>\n<p><a href=\"http://www.ases.org/\">American Solar Energy Society</a><br />\n<img src=\"sites/default/files/images/ases-logo.jpg\" />  Professional Member</p>\n<p><a href=\"http://www.mdv-seia.org/\">Maryland-DC-Virginia Solar Energy Industries Association</a>   Professional Member</p>\n<h2>Contact Us</h2>\n<p>\nTelephone: 240-344-2657\n</p>\n<p>\nEmail:</p>\n<p>          Sales: <a href=\"mailto:sales@uspvinc.com\">sales@uspvinc.com</a></p>\n<p>          Customer Service: <a href=\"mailto:support@uspvinc.com\">support@uspvinc.com</a></p>\n<p>          Other Inquiries:  <a href=\"mailto:info@uspvinc.com\">info@uspvinc.com</a>\n</p>\n<p>\nPostal Address: 4539 Metropolitan Court, Frederick MD  21704\n</p>\n</div>\n      </div>\n</div>\n\";}i:2;O:8:\"stdClass\":29:{s:3:\"nid\";s:1:\"4\";s:4:\"type\";s:4:\"page\";s:8:\"language\";s:0:\"\";s:3:\"uid\";s:1:\"1\";s:6:\"status\";s:1:\"1\";s:7:\"created\";s:10:\"1265202538\";s:7:\"changed\";s:10:\"1285684275\";s:7:\"comment\";s:1:\"0\";s:7:\"promote\";s:1:\"0\";s:8:\"moderate\";s:1:\"0\";s:6:\"sticky\";s:1:\"0\";s:4:\"tnid\";s:1:\"0\";s:9:\"translate\";s:1:\"0\";s:3:\"vid\";s:1:\"4\";s:12:\"revision_uid\";s:1:\"1\";s:5:\"title\";s:9:\"resources\";s:4:\"body\";s:1102:\"<h2>Internet Resources</h2>\r\n \r\nFrom the Database of State Incentives for Renewables and Efficiency (DSIRE.org):\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/statesearch2.cfm?State=US&back=fintab&CurrentPageID=7&Search=TableState&EE=1&RE=1\">Federal Incentives for Solar PV</a>\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&State=MD&RE=1&EE=1\">Maryland Incentives for Solar PV</a>\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&State=DC&RE=1&EE=1\">District of Columbia Incentives for Solar PV</a>\r\n\r\n<h2>Industry Organizations</h2>\r\n\r\n<a href=\"http://www.ases.org/\">American Solar Energy Society</a>   Professional Member\r\n\r\n<a href=\"http://www.mdv-seia.org/\">Maryland-DC-Virginia Solar Energy Industries Association</a>   Professional Member\r\n  \r\n<h2>Contact Us</h2>\r\n<p>\r\nTelephone: 240-344-2657\r\n</p>\r\n<p>\r\nEmail:\r\n\r\n          Sales: sales@uspvinc.com\r\n\r\n          Customer Service: support@uspvinc.com\r\n\r\n          Other Inquiries:  info@uspvinc.com\r\n</p>\r\n<p>\r\nPostal Address: 4539 Metropolitan Court, Frederick MD  21704\r\n</p>\";s:6:\"teaser\";s:569:\"<h2>Internet Resources</h2>\r\n \r\nFrom the Database of State Incentives for Renewables and Efficiency (DSIRE.org):\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/statesearch2.cfm?State=US&back=fintab&CurrentPageID=7&Search=TableState&EE=1&RE=1\">Federal Incentives for Solar PV</a>\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&State=MD&RE=1&EE=1\">Maryland Incentives for Solar PV</a>\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&State=DC&RE=1&EE=1\">District of Columbia Incentives for Solar PV</a>\r\n\r\";s:3:\"log\";s:0:\"\";s:18:\"revision_timestamp\";s:10:\"1285684275\";s:6:\"format\";s:1:\"2\";s:4:\"name\";s:5:\"admin\";s:7:\"picture\";s:0:\"\";s:4:\"data\";s:6:\"a:0:{}\";s:4:\"path\";s:9:\"resources\";s:22:\"last_comment_timestamp\";s:10:\"1265202538\";s:17:\"last_comment_name\";N;s:13:\"comment_count\";s:1:\"0\";s:8:\"taxonomy\";a:0:{}}}s:9:\"#build_id\";s:37:\"form-173c7a9321b96d94c00d5e45fa810a4c\";s:5:\"#type\";s:4:\"form\";s:11:\"#programmed\";b:0;s:13:\"form_build_id\";a:4:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:37:\"form-173c7a9321b96d94c00d5e45fa810a4c\";s:3:\"#id\";s:37:\"form-173c7a9321b96d94c00d5e45fa810a4c\";s:5:\"#name\";s:13:\"form_build_id\";}s:6:\"#token\";s:14:\"page_node_form\";s:10:\"form_token\";a:3:{s:3:\"#id\";s:30:\"edit-page-node-form-form-token\";s:5:\"#type\";s:5:\"token\";s:14:\"#default_value\";s:32:\"69ee9cfa6b6366390575effcb3429c15\";}s:7:\"form_id\";a:3:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:14:\"page_node_form\";s:3:\"#id\";s:19:\"edit-page-node-form\";}s:12:\"#description\";N;s:11:\"#attributes\";a:0:{}s:9:\"#required\";b:0;s:5:\"#tree\";b:0;s:8:\"#parents\";a:0:{}s:7:\"#method\";s:4:\"post\";s:7:\"#action\";s:27:\"/~uspvinc/main2/node/4/edit\";s:16:\"comment_settings\";a:7:{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:7:\"#weight\";i:30;s:7:\"comment\";a:4:{s:5:\"#type\";s:6:\"radios\";s:8:\"#parents\";a:1:{i:0;s:7:\"comment\";}s:14:\"#default_value\";s:1:\"0\";s:8:\"#options\";a:3:{i:0;s:8:\"Disabled\";i:1;s:9:\"Read only\";i:2;s:10:\"Read/Write\";}}}s:6:\"#cache\";b:1;s:4:\"menu\";a:21:{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:5:\"#tree\";b:1;s:7:\"#weight\";i:-2;s:11:\"#attributes\";a:1:{s:5:\"class\";s:14:\"menu-item-form\";}s:6:\"delete\";a:2:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:22:\"Delete this menu item.\";}s:4:\"mlid\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:3:\"284\";}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\";s:1:\"1\";}s:7:\"options\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:9:\"resources\";}}}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:5:\"#item\";a:14:{s:6:\"delete\";i:0;s:4:\"mlid\";s:3:\"284\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:10:\"customized\";s:1:\"1\";s:7:\"options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:9:\"resources\";}}s:8:\"expanded\";s:1:\"0\";s:18:\"parent_depth_limit\";i:8;s:10:\"link_title\";s:9:\"resources\";s:6:\"parent\";s:16:\"menu-main-menu:0\";s:6:\"weight\";s:1:\"0\";s:4:\"plid\";s:1:\"0\";s:9:\"menu_name\";s:14:\"menu-main-menu\";}s:10:\"link_title\";a:5:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:15:\"Menu link title\";s:14:\"#default_value\";s:9:\"resources\";s:12:\"#description\";s:133:\"The link text corresponding to this item that should appear in the menu. Leave blank if you do not wish to add this post to the menu.\";s:9:\"#required\";b:0;}s:6:\"parent\";a:6:{s:5:\"#type\";s:6:\"select\";s:6:\"#title\";s:11:\"Parent item\";s:14:\"#default_value\";s:16:\"menu-main-menu:0\";s:8:\"#options\";a:95:{s:16:\"menu-main-menu:0\";s:11:\"<Main Menu>\";s:18:\"menu-main-menu:283\";s:8:\"-- about\";s:18:\"menu-main-menu:285\";s:11:\"-- services\";s:18:\"menu-main-menu:286\";s:17:\"-- special offers\";s:12:\"navigation:0\";s:12:\"<Navigation>\";s:12:\"navigation:9\";s:26:\"-- Compose tips (disabled)\";s:14:\"navigation:461\";s:29:\"-- Image galleries (disabled)\";s:13:\"navigation:21\";s:13:\"-- My account\";s:14:\"navigation:114\";s:20:\"-- Search (disabled)\";s:14:\"navigation:244\";s:22:\"-- Site map (disabled)\";s:13:\"navigation:11\";s:17:\"-- Create content\";s:14:\"navigation:476\";s:11:\"---- Banner\";s:14:\"navigation:441\";s:10:\"---- Image\";s:14:\"navigation:289\";s:21:\"---- Newsletter issue\";s:14:\"navigation:106\";s:9:\"---- Page\";s:14:\"navigation:388\";s:10:\"---- Panel\";s:14:\"navigation:107\";s:10:\"---- Story\";s:12:\"navigation:2\";s:13:\"-- Administer\";s:13:\"navigation:10\";s:23:\"---- Content management\";s:13:\"navigation:27\";s:15:\"------ Comments\";s:13:\"navigation:28\";s:14:\"------ Content\";s:13:\"navigation:29\";s:20:\"------ Content types\";s:14:\"navigation:462\";s:22:\"------ Image galleries\";s:14:\"navigation:463\";s:19:\"------ Image import\";s:14:\"navigation:538\";s:18:\"------ Newsletters\";s:14:\"navigation:546\";s:20:\"-------- Sent issues\";s:14:\"navigation:541\";s:21:\"-------- Draft issues\";s:14:\"navigation:544\";s:20:\"-------- Newsletters\";s:14:\"navigation:548\";s:22:\"-------- Subscriptions\";s:13:\"navigation:42\";s:20:\"------ Post settings\";s:13:\"navigation:43\";s:21:\"------ RSS publishing\";s:13:\"navigation:94\";s:15:\"------ Taxonomy\";s:13:\"navigation:17\";s:18:\"---- Site building\";s:13:\"navigation:25\";s:13:\"------ Blocks\";s:14:\"navigation:424\";s:20:\"------ Bulk Exporter\";s:13:\"navigation:38\";s:12:\"------ Menus\";s:14:\"navigation:282\";s:18:\"-------- Main Menu\";s:13:\"navigation:89\";s:19:\"-------- Navigation\";s:13:\"navigation:90\";s:22:\"-------- Primary links\";s:14:\"navigation:495\";s:19:\"-------- Right Menu\";s:13:\"navigation:91\";s:24:\"-------- Secondary links\";s:14:\"navigation:387\";s:18:\"------ Mini panels\";s:13:\"navigation:39\";s:14:\"------ Modules\";s:14:\"navigation:412\";s:12:\"------ Pages\";s:14:\"navigation:360\";s:13:\"------ Panels\";s:13:\"navigation:49\";s:13:\"------ Themes\";s:14:\"navigation:335\";s:15:\"------ Triggers\";s:14:\"navigation:501\";s:18:\"------ URL aliases\";s:14:\"navigation:257\";s:12:\"------ Views\";s:13:\"navigation:18\";s:23:\"---- Site configuration\";s:13:\"navigation:23\";s:14:\"------ Actions\";s:14:\"navigation:119\";s:26:\"------ Administration menu\";s:13:\"navigation:24\";s:27:\"------ Administration theme\";s:13:\"navigation:26\";s:17:\"------ Clean URLs\";s:13:\"navigation:30\";s:20:\"------ Date and time\";s:13:\"navigation:33\";s:22:\"------ Error reporting\";s:13:\"navigation:34\";s:18:\"------ File system\";s:13:\"navigation:35\";s:20:\"------ Image toolkit\";s:14:\"navigation:442\";s:13:\"------ Images\";s:13:\"navigation:36\";s:20:\"------ Input formats\";s:13:\"navigation:37\";s:25:\"------ Logging and alerts\";s:14:\"navigation:100\";s:25:\"-------- Database logging\";s:14:\"navigation:245\";s:17:\"------ Nice Menus\";s:13:\"navigation:40\";s:18:\"------ Performance\";s:14:\"navigation:120\";s:22:\"------ Search settings\";s:14:\"navigation:539\";s:17:\"------ Simplenews\";s:14:\"navigation:542\";s:16:\"-------- General\";s:14:\"navigation:543\";s:19:\"-------- Newsletter\";s:14:\"navigation:547\";s:21:\"-------- Subscription\";s:14:\"navigation:545\";s:18:\"-------- Send mail\";s:13:\"navigation:46\";s:23:\"------ Site information\";s:13:\"navigation:47\";s:23:\"------ Site maintenance\";s:14:\"navigation:246\";s:15:\"------ Site map\";s:13:\"navigation:20\";s:20:\"---- User management\";s:13:\"navigation:22\";s:19:\"------ Access rules\";s:13:\"navigation:41\";s:18:\"------ Permissions\";s:13:\"navigation:45\";s:12:\"------ Roles\";s:13:\"navigation:50\";s:20:\"------ User settings\";s:13:\"navigation:51\";s:12:\"------ Users\";s:13:\"navigation:16\";s:12:\"---- Reports\";s:13:\"navigation:93\";s:25:\"------ Recent log entries\";s:13:\"navigation:96\";s:33:\"------ Top \'access denied\' errors\";s:13:\"navigation:97\";s:34:\"------ Top \'page not found\' errors\";s:14:\"navigation:121\";s:25:\"------ Top search phrases\";s:14:\"navigation:105\";s:24:\"------ Available updates\";s:13:\"navigation:48\";s:20:\"------ Status report\";s:13:\"navigation:15\";s:9:\"---- Help\";s:12:\"navigation:4\";s:10:\"-- Log out\";s:15:\"primary-links:0\";s:15:\"<Primary links>\";s:17:\"menu-right-menu:0\";s:12:\"<Right Menu>\";s:19:\"menu-right-menu:496\";s:28:\"-- Financial Calculator Tool\";s:19:\"menu-right-menu:497\";s:21:\"-- News Story Library\";s:19:\"menu-right-menu:498\";s:14:\"-- Latest News\";s:19:\"menu-right-menu:499\";s:25:\"-- SREC Management Portal\";s:17:\"secondary-links:0\";s:17:\"<Secondary links>\";}s:12:\"#description\";s:156:\"The maximum depth for an item and all its children is fixed at 9. Some menu items may not be available as parents if selecting them would exceed this limit.\";s:11:\"#attributes\";a:1:{s:5:\"class\";s:17:\"menu-title-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:1:\"0\";s:12:\"#description\";s:107:\"Optional. In the menu, the heavier items will sink and the lighter items will be positioned nearer the top.\";}}s:7:\"#submit\";a:1:{i:0;s:21:\"menu_node_form_submit\";}s:4:\"path\";a:9:{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:7:\"#access\";b:1;s:7:\"#weight\";i:30;s:4:\"path\";a:6:{s:5:\"#type\";s:9:\"textfield\";s:14:\"#default_value\";s:9:\"resources\";s:10:\"#maxlength\";i:128;s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:12:\"#description\";s:207:\"Optionally specify an alternative URL by which this node 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:22:\"pathauto_perform_alias\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:15:\"Automatic alias\";s:14:\"#default_value\";i:1;s:12:\"#description\";s:238:\"An alias will be generated for you. If you wish to create your own alias below, uncheck this option. To control the format of the generated aliases, see the <a href=\"/~uspvinc/main2/admin/build/path/pathauto\">automated alias settings</a>.\";s:7:\"#weight\";i:-1;}s:9:\"old_alias\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:9:\"resources\";}}s:11:\"#pre_render\";a:1:{i:0;s:27:\"content_alter_extra_weights\";}s:21:\"#content_extra_fields\";a:6:{s:5:\"title\";a:3:{s:5:\"label\";s:5:\"Title\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:-5;}s:10:\"body_field\";a:4:{s:5:\"label\";s:4:\"Body\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:0;s:4:\"view\";s:4:\"body\";}s:20:\"revision_information\";a:3:{s:5:\"label\";s:20:\"Revision information\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:20;}s:16:\"comment_settings\";a:3:{s:5:\"label\";s:16:\"Comment settings\";s:11:\"description\";s:20:\"Comment module form.\";s:6:\"weight\";i:30;}s:4:\"menu\";a:3:{s:5:\"label\";s:13:\"Menu settings\";s:11:\"description\";s:17:\"Menu module form.\";s:6:\"weight\";i:-2;}s:4:\"path\";a:3:{s:5:\"label\";s:13:\"Path settings\";s:11:\"description\";s:17:\"Path module form.\";s:6:\"weight\";i:30;}}s:12:\"#cache_token\";s:32:\"ea05954e6208c2bed552f97e30d1dad3\";}',1285710069,1285688469,'',1),('form_form-704971972ae2a3f03a0136b09874022b','a:41:{s:3:\"#id\";s:9:\"node-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:\"1265202538\";}s:4:\"type\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:4:\"page\";}s:8:\"language\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:0:\"\";}s:7:\"changed\";a:2:{s:5:\"#type\";s:6:\"hidden\";s:14:\"#default_value\";s:10:\"1285684275\";}s:5:\"title\";a:6:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:5:\"Title\";s:9:\"#required\";b:1;s:14:\"#default_value\";s:9:\"resources\";s:10:\"#maxlength\";i:255;s:7:\"#weight\";i:-5;}s:10:\"body_field\";a:7:{s:12:\"#after_build\";a:2:{i:0;s:14:\"node_teaser_js\";i:1;s:26:\"node_teaser_include_verify\";}s:7:\"#prefix\";s:32:\"<div class=\"body-field-wrapper\">\";s:7:\"#suffix\";s:6:\"</div>\";s:9:\"teaser_js\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:5:\"#rows\";i:10;s:7:\"#teaser\";s:9:\"edit-body\";s:16:\"#teaser_checkbox\";s:19:\"edit-teaser-include\";s:9:\"#disabled\";b:1;}s:14:\"teaser_include\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:25:\"Show summary in full view\";s:14:\"#default_value\";b:1;s:7:\"#prefix\";s:29:\"<div class=\"teaser-checkbox\">\";s:7:\"#suffix\";s:6:\"</div>\";}s:4:\"body\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:4:\"Body\";s:14:\"#default_value\";s:1102:\"<h2>Internet Resources</h2>\r\n \r\nFrom the Database of State Incentives for Renewables and Efficiency (DSIRE.org):\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/statesearch2.cfm?State=US&back=fintab&CurrentPageID=7&Search=TableState&EE=1&RE=1\">Federal Incentives for Solar PV</a>\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&State=MD&RE=1&EE=1\">Maryland Incentives for Solar PV</a>\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&State=DC&RE=1&EE=1\">District of Columbia Incentives for Solar PV</a>\r\n\r\n<h2>Industry Organizations</h2>\r\n\r\n<a href=\"http://www.ases.org/\">American Solar Energy Society</a>   Professional Member\r\n\r\n<a href=\"http://www.mdv-seia.org/\">Maryland-DC-Virginia Solar Energy Industries Association</a>   Professional Member\r\n  \r\n<h2>Contact Us</h2>\r\n<p>\r\nTelephone: 240-344-2657\r\n</p>\r\n<p>\r\nEmail:\r\n\r\n          Sales: sales@uspvinc.com\r\n\r\n          Customer Service: support@uspvinc.com\r\n\r\n          Other Inquiries:  info@uspvinc.com\r\n</p>\r\n<p>\r\nPostal Address: 4539 Metropolitan Court, Frederick MD  21704\r\n</p>\";s:5:\"#rows\";i:20;s:9:\"#required\";b:0;}s:6:\"format\";a:9:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:12:\"Input format\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:7:\"#weight\";N;s:17:\"#element_validate\";a:1:{i:0;s:20:\"filter_form_validate\";}i:1;a:7:{s:5:\"#type\";s:5:\"radio\";s:6:\"#title\";s:13:\"Filtered HTML\";s:14:\"#default_value\";s:1:\"2\";s:13:\"#return_value\";s:1:\"1\";s:8:\"#parents\";a:1:{i:0;s:6:\"format\";}s:12:\"#description\";s:306:\"<ul class=\"tips\"><li>Web page addresses and e-mail addresses turn into links automatically.</li><li>Allowed HTML tags: &lt;a&gt; &lt;em&gt; &lt;strong&gt; &lt;cite&gt; &lt;code&gt; &lt;ul&gt; &lt;ol&gt; &lt;li&gt; &lt;dl&gt; &lt;dt&gt; &lt;dd&gt;</li><li>Lines and paragraphs break automatically.</li></ul>\";s:3:\"#id\";s:13:\"edit-format-1\";}i:2;a:7:{s:5:\"#type\";s:5:\"radio\";s:6:\"#title\";s:9:\"Full HTML\";s:14:\"#default_value\";s:1:\"2\";s:13:\"#return_value\";s:1:\"2\";s:8:\"#parents\";a:1:{i:0;s:6:\"format\";}s:12:\"#description\";s:151:\"<ul class=\"tips\"><li>Web page addresses and e-mail addresses turn into links automatically.</li><li>Lines and paragraphs break automatically.</li></ul>\";s:3:\"#id\";s:13:\"edit-format-2\";}i:3;a:1:{s:6:\"#value\";s:90:\"<p><a href=\"/~uspvinc/main2/filter/tips\">More information about formatting options</a></p>\";}}}s:5:\"#node\";O:8:\"stdClass\":33:{s:3:\"nid\";s:1:\"4\";s:4:\"type\";s:4:\"page\";s:8:\"language\";s:0:\"\";s:3:\"uid\";s:1:\"1\";s:6:\"status\";s:1:\"1\";s:7:\"created\";s:10:\"1265202538\";s:7:\"changed\";s:10:\"1285684275\";s:7:\"comment\";s:1:\"0\";s:7:\"promote\";s:1:\"0\";s:8:\"moderate\";s:1:\"0\";s:6:\"sticky\";s:1:\"0\";s:4:\"tnid\";s:1:\"0\";s:9:\"translate\";s:1:\"0\";s:3:\"vid\";s:1:\"4\";s:12:\"revision_uid\";s:1:\"1\";s:5:\"title\";s:9:\"resources\";s:4:\"body\";s:1102:\"<h2>Internet Resources</h2>\r\n \r\nFrom the Database of State Incentives for Renewables and Efficiency (DSIRE.org):\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/statesearch2.cfm?State=US&back=fintab&CurrentPageID=7&Search=TableState&EE=1&RE=1\">Federal Incentives for Solar PV</a>\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&State=MD&RE=1&EE=1\">Maryland Incentives for Solar PV</a>\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&State=DC&RE=1&EE=1\">District of Columbia Incentives for Solar PV</a>\r\n\r\n<h2>Industry Organizations</h2>\r\n\r\n<a href=\"http://www.ases.org/\">American Solar Energy Society</a>   Professional Member\r\n\r\n<a href=\"http://www.mdv-seia.org/\">Maryland-DC-Virginia Solar Energy Industries Association</a>   Professional Member\r\n  \r\n<h2>Contact Us</h2>\r\n<p>\r\nTelephone: 240-344-2657\r\n</p>\r\n<p>\r\nEmail:\r\n\r\n          Sales: sales@uspvinc.com\r\n\r\n          Customer Service: support@uspvinc.com\r\n\r\n          Other Inquiries:  info@uspvinc.com\r\n</p>\r\n<p>\r\nPostal Address: 4539 Metropolitan Court, Frederick MD  21704\r\n</p>\";s:6:\"teaser\";s:569:\"<h2>Internet Resources</h2>\r\n \r\nFrom the Database of State Incentives for Renewables and Efficiency (DSIRE.org):\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/statesearch2.cfm?State=US&back=fintab&CurrentPageID=7&Search=TableState&EE=1&RE=1\">Federal Incentives for Solar PV</a>\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&State=MD&RE=1&EE=1\">Maryland Incentives for Solar PV</a>\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&State=DC&RE=1&EE=1\">District of Columbia Incentives for Solar PV</a>\r\n\r\";s:3:\"log\";N;s:18:\"revision_timestamp\";s:10:\"1285684275\";s:6:\"format\";s:1:\"2\";s:4:\"name\";s:5:\"admin\";s:7:\"picture\";s:0:\"\";s:4:\"data\";s:6:\"a:0:{}\";s:4:\"path\";s:9:\"resources\";s:22:\"last_comment_timestamp\";s:10:\"1265202538\";s:17:\"last_comment_name\";N;s:13:\"comment_count\";s:1:\"0\";s:8:\"taxonomy\";a:0:{}s:4:\"date\";s:25:\"2010-02-03 21:08:58 +0800\";s:8:\"revision\";b:0;s:4:\"menu\";a:48:{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:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:3:\"fit\";s:1:\"2\";s:12:\"number_parts\";s:1:\"2\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:9:\"resources\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:4:\"type\";s:1:\"4\";s:14:\"block_callback\";s:0:\"\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"0\";s:4:\"file\";s:0:\"\";s:9:\"menu_name\";s:14:\"menu-main-menu\";s:4:\"mlid\";s:3:\"284\";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:9:\"resources\";s:7:\"options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:9:\"resources\";}}s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"284\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:4:\"href\";s:6:\"node/4\";s:6:\"access\";b:1;s:17:\"localized_options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:9:\"resources\";}}s:18:\"parent_depth_limit\";i:8;}s:22:\"pathauto_perform_alias\";b:1;}s:20:\"revision_information\";a:7:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:20:\"Revision information\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:7:\"#weight\";i:20;s:8:\"revision\";a:4:{s:7:\"#access\";b:1;s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:19:\"Create new revision\";s:14:\"#default_value\";b:0;}s:3:\"log\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:11:\"Log message\";s:14:\"#default_value\";s:0:\"\";s:5:\"#rows\";i:2;s:12:\"#description\";s:104:\"An explanation of the additions or updates being made to help other authors understand your motivations.\";}}s:6:\"author\";a:8:{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:7:\"#weight\";i:20;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:35:\"Leave blank for <em>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:91:\"Format: <em>2010-02-03 21:08:58 +0800</em>. Leave blank to use the time of form submission.\";s:14:\"#default_value\";s:25:\"2010-02-03 21:08:58 +0800\";}}s:7:\"options\";a:9:{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:7:\"#weight\";i:25;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:\"buttons\";a:3:{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:16:\"node_form_submit\";}}s:7:\"preview\";a:4:{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:6:\"#theme\";a:2:{i:0;s:14:\"page_node_form\";i:1;s:9:\"node_form\";}s:11:\"#parameters\";a:3:{i:0;s:14:\"page_node_form\";i:1;a:3:{s:7:\"storage\";N;s:9:\"submitted\";b:0;s:4:\"post\";a:0:{}}i:2;r:83;}s:9:\"#build_id\";s:37:\"form-704971972ae2a3f03a0136b09874022b\";s:5:\"#type\";s:4:\"form\";s:11:\"#programmed\";b:0;s:13:\"form_build_id\";a:4:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:37:\"form-704971972ae2a3f03a0136b09874022b\";s:3:\"#id\";s:37:\"form-704971972ae2a3f03a0136b09874022b\";s:5:\"#name\";s:13:\"form_build_id\";}s:6:\"#token\";s:14:\"page_node_form\";s:10:\"form_token\";a:3:{s:3:\"#id\";s:30:\"edit-page-node-form-form-token\";s:5:\"#type\";s:5:\"token\";s:14:\"#default_value\";s:32:\"69ee9cfa6b6366390575effcb3429c15\";}s:7:\"form_id\";a:3:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:14:\"page_node_form\";s:3:\"#id\";s:19:\"edit-page-node-form\";}s:12:\"#description\";N;s:11:\"#attributes\";a:0:{}s:9:\"#required\";b:0;s:5:\"#tree\";b:0;s:8:\"#parents\";a:0:{}s:7:\"#method\";s:4:\"post\";s:7:\"#action\";s:27:\"/~uspvinc/main2/node/4/edit\";s:12:\"#after_build\";a:1:{i:0;s:21:\"ckeditor_process_form\";}s:16:\"comment_settings\";a:7:{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:7:\"#weight\";i:30;s:7:\"comment\";a:4:{s:5:\"#type\";s:6:\"radios\";s:8:\"#parents\";a:1:{i:0;s:7:\"comment\";}s:14:\"#default_value\";s:1:\"0\";s:8:\"#options\";a:3:{i:0;s:8:\"Disabled\";i:1;s:9:\"Read only\";i:2;s:10:\"Read/Write\";}}}s:6:\"#cache\";b:1;s:4:\"menu\";a:21:{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:5:\"#tree\";b:1;s:7:\"#weight\";i:-2;s:11:\"#attributes\";a:1:{s:5:\"class\";s:14:\"menu-item-form\";}s:6:\"delete\";a:2:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:22:\"Delete this menu item.\";}s:4:\"mlid\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:3:\"284\";}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\";s:1:\"1\";}s:7:\"options\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:9:\"resources\";}}}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:5:\"#item\";a:48:{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:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:3:\"fit\";s:1:\"2\";s:12:\"number_parts\";s:1:\"2\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:9:\"resources\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:4:\"type\";s:1:\"4\";s:14:\"block_callback\";s:0:\"\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"0\";s:4:\"file\";s:0:\"\";s:9:\"menu_name\";s:14:\"menu-main-menu\";s:4:\"mlid\";s:3:\"284\";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:9:\"resources\";s:7:\"options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:9:\"resources\";}}s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"284\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:4:\"href\";s:6:\"node/4\";s:6:\"access\";b:1;s:17:\"localized_options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:9:\"resources\";}}s:18:\"parent_depth_limit\";i:8;}s:10:\"link_title\";a:5:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:15:\"Menu link title\";s:14:\"#default_value\";s:9:\"resources\";s:12:\"#description\";s:133:\"The link text corresponding to this item that should appear in the menu. Leave blank if you do not wish to add this post to the menu.\";s:9:\"#required\";b:0;}s:6:\"parent\";a:6:{s:5:\"#type\";s:6:\"select\";s:6:\"#title\";s:11:\"Parent item\";s:14:\"#default_value\";s:16:\"menu-main-menu:0\";s:8:\"#options\";a:96:{s:16:\"menu-main-menu:0\";s:11:\"<Main Menu>\";s:18:\"menu-main-menu:283\";s:8:\"-- about\";s:18:\"menu-main-menu:285\";s:11:\"-- services\";s:18:\"menu-main-menu:286\";s:17:\"-- special offers\";s:12:\"navigation:0\";s:12:\"<Navigation>\";s:12:\"navigation:9\";s:26:\"-- Compose tips (disabled)\";s:14:\"navigation:461\";s:29:\"-- Image galleries (disabled)\";s:13:\"navigation:21\";s:13:\"-- My account\";s:14:\"navigation:114\";s:20:\"-- Search (disabled)\";s:14:\"navigation:244\";s:22:\"-- Site map (disabled)\";s:13:\"navigation:11\";s:17:\"-- Create content\";s:14:\"navigation:476\";s:11:\"---- Banner\";s:14:\"navigation:441\";s:10:\"---- Image\";s:14:\"navigation:289\";s:21:\"---- Newsletter issue\";s:14:\"navigation:106\";s:9:\"---- Page\";s:14:\"navigation:388\";s:10:\"---- Panel\";s:14:\"navigation:107\";s:10:\"---- Story\";s:12:\"navigation:2\";s:13:\"-- Administer\";s:13:\"navigation:10\";s:23:\"---- Content management\";s:13:\"navigation:27\";s:15:\"------ Comments\";s:13:\"navigation:28\";s:14:\"------ Content\";s:13:\"navigation:29\";s:20:\"------ Content types\";s:14:\"navigation:462\";s:22:\"------ Image galleries\";s:14:\"navigation:463\";s:19:\"------ Image import\";s:14:\"navigation:538\";s:18:\"------ Newsletters\";s:14:\"navigation:546\";s:20:\"-------- Sent issues\";s:14:\"navigation:541\";s:21:\"-------- Draft issues\";s:14:\"navigation:544\";s:20:\"-------- Newsletters\";s:14:\"navigation:548\";s:22:\"-------- Subscriptions\";s:13:\"navigation:42\";s:20:\"------ Post settings\";s:13:\"navigation:43\";s:21:\"------ RSS publishing\";s:13:\"navigation:94\";s:15:\"------ Taxonomy\";s:13:\"navigation:17\";s:18:\"---- Site building\";s:13:\"navigation:25\";s:13:\"------ Blocks\";s:14:\"navigation:424\";s:20:\"------ Bulk Exporter\";s:13:\"navigation:38\";s:12:\"------ Menus\";s:14:\"navigation:282\";s:18:\"-------- Main Menu\";s:13:\"navigation:89\";s:19:\"-------- Navigation\";s:13:\"navigation:90\";s:22:\"-------- Primary links\";s:14:\"navigation:495\";s:19:\"-------- Right Menu\";s:13:\"navigation:91\";s:24:\"-------- Secondary links\";s:14:\"navigation:387\";s:18:\"------ Mini panels\";s:13:\"navigation:39\";s:14:\"------ Modules\";s:14:\"navigation:412\";s:12:\"------ Pages\";s:14:\"navigation:360\";s:13:\"------ Panels\";s:13:\"navigation:49\";s:13:\"------ Themes\";s:14:\"navigation:335\";s:15:\"------ Triggers\";s:14:\"navigation:501\";s:18:\"------ URL aliases\";s:14:\"navigation:257\";s:12:\"------ Views\";s:13:\"navigation:18\";s:23:\"---- Site configuration\";s:13:\"navigation:23\";s:14:\"------ Actions\";s:14:\"navigation:119\";s:26:\"------ Administration menu\";s:13:\"navigation:24\";s:27:\"------ Administration theme\";s:14:\"navigation:583\";s:15:\"------ CKEditor\";s:13:\"navigation:26\";s:17:\"------ Clean URLs\";s:13:\"navigation:30\";s:20:\"------ Date and time\";s:13:\"navigation:33\";s:22:\"------ Error reporting\";s:13:\"navigation:34\";s:18:\"------ File system\";s:13:\"navigation:35\";s:20:\"------ Image toolkit\";s:14:\"navigation:442\";s:13:\"------ Images\";s:13:\"navigation:36\";s:20:\"------ Input formats\";s:13:\"navigation:37\";s:25:\"------ Logging and alerts\";s:14:\"navigation:100\";s:25:\"-------- Database logging\";s:14:\"navigation:245\";s:17:\"------ Nice Menus\";s:13:\"navigation:40\";s:18:\"------ Performance\";s:14:\"navigation:120\";s:22:\"------ Search settings\";s:14:\"navigation:539\";s:17:\"------ Simplenews\";s:14:\"navigation:542\";s:16:\"-------- General\";s:14:\"navigation:543\";s:19:\"-------- Newsletter\";s:14:\"navigation:547\";s:21:\"-------- Subscription\";s:14:\"navigation:545\";s:18:\"-------- Send mail\";s:13:\"navigation:46\";s:23:\"------ Site information\";s:13:\"navigation:47\";s:23:\"------ Site maintenance\";s:14:\"navigation:246\";s:15:\"------ Site map\";s:13:\"navigation:20\";s:20:\"---- User management\";s:13:\"navigation:22\";s:19:\"------ Access rules\";s:13:\"navigation:41\";s:18:\"------ Permissions\";s:13:\"navigation:45\";s:12:\"------ Roles\";s:13:\"navigation:50\";s:20:\"------ User settings\";s:13:\"navigation:51\";s:12:\"------ Users\";s:13:\"navigation:16\";s:12:\"---- Reports\";s:13:\"navigation:93\";s:25:\"------ Recent log entries\";s:13:\"navigation:96\";s:33:\"------ Top \'access denied\' errors\";s:13:\"navigation:97\";s:34:\"------ Top \'page not found\' errors\";s:14:\"navigation:121\";s:25:\"------ Top search phrases\";s:14:\"navigation:105\";s:24:\"------ Available updates\";s:13:\"navigation:48\";s:20:\"------ Status report\";s:13:\"navigation:15\";s:9:\"---- Help\";s:12:\"navigation:4\";s:10:\"-- Log out\";s:15:\"primary-links:0\";s:15:\"<Primary links>\";s:17:\"menu-right-menu:0\";s:12:\"<Right Menu>\";s:19:\"menu-right-menu:496\";s:28:\"-- Financial Calculator Tool\";s:19:\"menu-right-menu:497\";s:21:\"-- News Story Library\";s:19:\"menu-right-menu:498\";s:14:\"-- Latest News\";s:19:\"menu-right-menu:499\";s:25:\"-- SREC Management Portal\";s:17:\"secondary-links:0\";s:17:\"<Secondary links>\";}s:12:\"#description\";s:156:\"The maximum depth for an item and all its children is fixed at 9. Some menu items may not be available as parents if selecting them would exceed this limit.\";s:11:\"#attributes\";a:1:{s:5:\"class\";s:17:\"menu-title-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:1:\"0\";s:12:\"#description\";s:107:\"Optional. In the menu, the heavier items will sink and the lighter items will be positioned nearer the top.\";}}s:7:\"#submit\";a:1:{i:0;s:21:\"menu_node_form_submit\";}s:4:\"path\";a:10:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:17:\"URL path settings\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:0;s:7:\"#access\";b:1;s:7:\"#weight\";i:30;s:4:\"path\";a:6:{s:5:\"#type\";s:9:\"textfield\";s:14:\"#default_value\";s:9:\"resources\";s:10:\"#maxlength\";i:128;s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:12:\"#description\";s:207:\"Optionally specify an alternative URL by which this node 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\";s:1:\"4\";}s:22:\"pathauto_perform_alias\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:15:\"Automatic alias\";s:14:\"#default_value\";b:1;s:12:\"#description\";s:238:\"An alias will be generated for you. If you wish to create your own alias below, uncheck this option. To control the format of the generated aliases, see the <a href=\"/~uspvinc/main2/admin/build/path/pathauto\">automated alias settings</a>.\";s:7:\"#weight\";i:-1;}s:9:\"old_alias\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:9:\"resources\";}}s:11:\"#pre_render\";a:1:{i:0;s:27:\"content_alter_extra_weights\";}s:21:\"#content_extra_fields\";a:6:{s:5:\"title\";a:3:{s:5:\"label\";s:5:\"Title\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:-5;}s:10:\"body_field\";a:4:{s:5:\"label\";s:4:\"Body\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:0;s:4:\"view\";s:4:\"body\";}s:20:\"revision_information\";a:3:{s:5:\"label\";s:20:\"Revision information\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:20;}s:16:\"comment_settings\";a:3:{s:5:\"label\";s:16:\"Comment settings\";s:11:\"description\";s:20:\"Comment module form.\";s:6:\"weight\";i:30;}s:4:\"menu\";a:3:{s:5:\"label\";s:13:\"Menu settings\";s:11:\"description\";s:17:\"Menu module form.\";s:6:\"weight\";i:-2;}s:4:\"path\";a:3:{s:5:\"label\";s:13:\"Path settings\";s:11:\"description\";s:17:\"Path module form.\";s:6:\"weight\";i:30;}}s:12:\"#cache_token\";s:32:\"ea05954e6208c2bed552f97e30d1dad3\";}',1285719565,1285697965,'',1),('form_form-f3a545f32115c6d3dc4dd766883895ba','a:40:{s:3:\"#id\";s:9:\"node-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:\"1265202538\";}s:4:\"type\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:4:\"page\";}s:8:\"language\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:0:\"\";}s:7:\"changed\";a:2:{s:5:\"#type\";s:6:\"hidden\";s:14:\"#default_value\";s:10:\"1285684275\";}s:5:\"title\";a:6:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:5:\"Title\";s:9:\"#required\";b:1;s:14:\"#default_value\";s:9:\"resources\";s:10:\"#maxlength\";i:255;s:7:\"#weight\";i:-5;}s:10:\"body_field\";a:7:{s:12:\"#after_build\";a:2:{i:0;s:14:\"node_teaser_js\";i:1;s:26:\"node_teaser_include_verify\";}s:7:\"#prefix\";s:32:\"<div class=\"body-field-wrapper\">\";s:7:\"#suffix\";s:6:\"</div>\";s:9:\"teaser_js\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:5:\"#rows\";i:10;s:7:\"#teaser\";s:9:\"edit-body\";s:16:\"#teaser_checkbox\";s:19:\"edit-teaser-include\";s:9:\"#disabled\";b:1;}s:14:\"teaser_include\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:25:\"Show summary in full view\";s:14:\"#default_value\";b:1;s:7:\"#prefix\";s:29:\"<div class=\"teaser-checkbox\">\";s:7:\"#suffix\";s:6:\"</div>\";}s:4:\"body\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:4:\"Body\";s:14:\"#default_value\";s:1102:\"<h2>Internet Resources</h2>\r\n \r\nFrom the Database of State Incentives for Renewables and Efficiency (DSIRE.org):\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/statesearch2.cfm?State=US&back=fintab&CurrentPageID=7&Search=TableState&EE=1&RE=1\">Federal Incentives for Solar PV</a>\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&State=MD&RE=1&EE=1\">Maryland Incentives for Solar PV</a>\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&State=DC&RE=1&EE=1\">District of Columbia Incentives for Solar PV</a>\r\n\r\n<h2>Industry Organizations</h2>\r\n\r\n<a href=\"http://www.ases.org/\">American Solar Energy Society</a>   Professional Member\r\n\r\n<a href=\"http://www.mdv-seia.org/\">Maryland-DC-Virginia Solar Energy Industries Association</a>   Professional Member\r\n  \r\n<h2>Contact Us</h2>\r\n<p>\r\nTelephone: 240-344-2657\r\n</p>\r\n<p>\r\nEmail:\r\n\r\n          Sales: sales@uspvinc.com\r\n\r\n          Customer Service: support@uspvinc.com\r\n\r\n          Other Inquiries:  info@uspvinc.com\r\n</p>\r\n<p>\r\nPostal Address: 4539 Metropolitan Court, Frederick MD  21704\r\n</p>\";s:5:\"#rows\";i:20;s:9:\"#required\";b:0;}s:6:\"format\";a:9:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:12:\"Input format\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:7:\"#weight\";N;s:17:\"#element_validate\";a:1:{i:0;s:20:\"filter_form_validate\";}i:1;a:7:{s:5:\"#type\";s:5:\"radio\";s:6:\"#title\";s:13:\"Filtered HTML\";s:14:\"#default_value\";s:1:\"2\";s:13:\"#return_value\";s:1:\"1\";s:8:\"#parents\";a:1:{i:0;s:6:\"format\";}s:12:\"#description\";s:306:\"<ul class=\"tips\"><li>Web page addresses and e-mail addresses turn into links automatically.</li><li>Allowed HTML tags: &lt;a&gt; &lt;em&gt; &lt;strong&gt; &lt;cite&gt; &lt;code&gt; &lt;ul&gt; &lt;ol&gt; &lt;li&gt; &lt;dl&gt; &lt;dt&gt; &lt;dd&gt;</li><li>Lines and paragraphs break automatically.</li></ul>\";s:3:\"#id\";s:13:\"edit-format-1\";}i:2;a:7:{s:5:\"#type\";s:5:\"radio\";s:6:\"#title\";s:9:\"Full HTML\";s:14:\"#default_value\";s:1:\"2\";s:13:\"#return_value\";s:1:\"2\";s:8:\"#parents\";a:1:{i:0;s:6:\"format\";}s:12:\"#description\";s:151:\"<ul class=\"tips\"><li>Web page addresses and e-mail addresses turn into links automatically.</li><li>Lines and paragraphs break automatically.</li></ul>\";s:3:\"#id\";s:13:\"edit-format-2\";}i:3;a:1:{s:6:\"#value\";s:90:\"<p><a href=\"/~uspvinc/main2/filter/tips\">More information about formatting options</a></p>\";}}}s:5:\"#node\";O:8:\"stdClass\":33:{s:3:\"nid\";s:1:\"4\";s:4:\"type\";s:4:\"page\";s:8:\"language\";s:0:\"\";s:3:\"uid\";s:1:\"1\";s:6:\"status\";s:1:\"1\";s:7:\"created\";s:10:\"1265202538\";s:7:\"changed\";s:10:\"1285684275\";s:7:\"comment\";s:1:\"0\";s:7:\"promote\";s:1:\"0\";s:8:\"moderate\";s:1:\"0\";s:6:\"sticky\";s:1:\"0\";s:4:\"tnid\";s:1:\"0\";s:9:\"translate\";s:1:\"0\";s:3:\"vid\";s:1:\"4\";s:12:\"revision_uid\";s:1:\"1\";s:5:\"title\";s:9:\"resources\";s:4:\"body\";s:1102:\"<h2>Internet Resources</h2>\r\n \r\nFrom the Database of State Incentives for Renewables and Efficiency (DSIRE.org):\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/statesearch2.cfm?State=US&back=fintab&CurrentPageID=7&Search=TableState&EE=1&RE=1\">Federal Incentives for Solar PV</a>\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&State=MD&RE=1&EE=1\">Maryland Incentives for Solar PV</a>\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&State=DC&RE=1&EE=1\">District of Columbia Incentives for Solar PV</a>\r\n\r\n<h2>Industry Organizations</h2>\r\n\r\n<a href=\"http://www.ases.org/\">American Solar Energy Society</a>   Professional Member\r\n\r\n<a href=\"http://www.mdv-seia.org/\">Maryland-DC-Virginia Solar Energy Industries Association</a>   Professional Member\r\n  \r\n<h2>Contact Us</h2>\r\n<p>\r\nTelephone: 240-344-2657\r\n</p>\r\n<p>\r\nEmail:\r\n\r\n          Sales: sales@uspvinc.com\r\n\r\n          Customer Service: support@uspvinc.com\r\n\r\n          Other Inquiries:  info@uspvinc.com\r\n</p>\r\n<p>\r\nPostal Address: 4539 Metropolitan Court, Frederick MD  21704\r\n</p>\";s:6:\"teaser\";s:569:\"<h2>Internet Resources</h2>\r\n \r\nFrom the Database of State Incentives for Renewables and Efficiency (DSIRE.org):\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/statesearch2.cfm?State=US&back=fintab&CurrentPageID=7&Search=TableState&EE=1&RE=1\">Federal Incentives for Solar PV</a>\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&State=MD&RE=1&EE=1\">Maryland Incentives for Solar PV</a>\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&State=DC&RE=1&EE=1\">District of Columbia Incentives for Solar PV</a>\r\n\r\";s:3:\"log\";N;s:18:\"revision_timestamp\";s:10:\"1285684275\";s:6:\"format\";s:1:\"2\";s:4:\"name\";s:5:\"admin\";s:7:\"picture\";s:0:\"\";s:4:\"data\";s:6:\"a:0:{}\";s:4:\"path\";s:9:\"resources\";s:22:\"last_comment_timestamp\";s:10:\"1265202538\";s:17:\"last_comment_name\";N;s:13:\"comment_count\";s:1:\"0\";s:8:\"taxonomy\";a:0:{}s:4:\"date\";s:25:\"2010-02-03 21:08:58 +0800\";s:8:\"revision\";b:0;s:4:\"menu\";a:48:{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:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:3:\"fit\";s:1:\"2\";s:12:\"number_parts\";s:1:\"2\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:9:\"resources\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:4:\"type\";s:1:\"4\";s:14:\"block_callback\";s:0:\"\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"0\";s:4:\"file\";s:0:\"\";s:9:\"menu_name\";s:14:\"menu-main-menu\";s:4:\"mlid\";s:3:\"284\";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:9:\"resources\";s:7:\"options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:9:\"resources\";}}s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"284\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:4:\"href\";s:6:\"node/4\";s:6:\"access\";b:1;s:17:\"localized_options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:9:\"resources\";}}s:18:\"parent_depth_limit\";i:8;}s:22:\"pathauto_perform_alias\";b:1;}s:20:\"revision_information\";a:7:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:20:\"Revision information\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:7:\"#weight\";i:20;s:8:\"revision\";a:4:{s:7:\"#access\";b:1;s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:19:\"Create new revision\";s:14:\"#default_value\";b:0;}s:3:\"log\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:11:\"Log message\";s:14:\"#default_value\";s:0:\"\";s:5:\"#rows\";i:2;s:12:\"#description\";s:104:\"An explanation of the additions or updates being made to help other authors understand your motivations.\";}}s:6:\"author\";a:8:{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:7:\"#weight\";i:20;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:35:\"Leave blank for <em>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:91:\"Format: <em>2010-02-03 21:08:58 +0800</em>. Leave blank to use the time of form submission.\";s:14:\"#default_value\";s:25:\"2010-02-03 21:08:58 +0800\";}}s:7:\"options\";a:9:{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:7:\"#weight\";i:25;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:\"buttons\";a:3:{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:16:\"node_form_submit\";}}s:7:\"preview\";a:4:{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:6:\"#theme\";a:2:{i:0;s:14:\"page_node_form\";i:1;s:9:\"node_form\";}s:11:\"#parameters\";a:3:{i:0;s:14:\"page_node_form\";i:1;a:3:{s:7:\"storage\";N;s:9:\"submitted\";b:0;s:4:\"post\";a:0:{}}i:2;r:83;}s:9:\"#build_id\";s:37:\"form-f3a545f32115c6d3dc4dd766883895ba\";s:5:\"#type\";s:4:\"form\";s:11:\"#programmed\";b:0;s:13:\"form_build_id\";a:4:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:37:\"form-f3a545f32115c6d3dc4dd766883895ba\";s:3:\"#id\";s:37:\"form-f3a545f32115c6d3dc4dd766883895ba\";s:5:\"#name\";s:13:\"form_build_id\";}s:6:\"#token\";s:14:\"page_node_form\";s:10:\"form_token\";a:3:{s:3:\"#id\";s:30:\"edit-page-node-form-form-token\";s:5:\"#type\";s:5:\"token\";s:14:\"#default_value\";s:32:\"69ee9cfa6b6366390575effcb3429c15\";}s:7:\"form_id\";a:3:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:14:\"page_node_form\";s:3:\"#id\";s:19:\"edit-page-node-form\";}s:12:\"#description\";N;s:11:\"#attributes\";a:0:{}s:9:\"#required\";b:0;s:5:\"#tree\";b:0;s:8:\"#parents\";a:0:{}s:7:\"#method\";s:4:\"post\";s:7:\"#action\";s:27:\"/~uspvinc/main2/node/4/edit\";s:16:\"comment_settings\";a:7:{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:7:\"#weight\";i:30;s:7:\"comment\";a:4:{s:5:\"#type\";s:6:\"radios\";s:8:\"#parents\";a:1:{i:0;s:7:\"comment\";}s:14:\"#default_value\";s:1:\"0\";s:8:\"#options\";a:3:{i:0;s:8:\"Disabled\";i:1;s:9:\"Read only\";i:2;s:10:\"Read/Write\";}}}s:6:\"#cache\";b:1;s:4:\"menu\";a:21:{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:5:\"#tree\";b:1;s:7:\"#weight\";i:-2;s:11:\"#attributes\";a:1:{s:5:\"class\";s:14:\"menu-item-form\";}s:6:\"delete\";a:2:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:22:\"Delete this menu item.\";}s:4:\"mlid\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:3:\"284\";}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\";s:1:\"1\";}s:7:\"options\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:9:\"resources\";}}}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:5:\"#item\";a:48:{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:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:3:\"fit\";s:1:\"2\";s:12:\"number_parts\";s:1:\"2\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:9:\"resources\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:4:\"type\";s:1:\"4\";s:14:\"block_callback\";s:0:\"\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"0\";s:4:\"file\";s:0:\"\";s:9:\"menu_name\";s:14:\"menu-main-menu\";s:4:\"mlid\";s:3:\"284\";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:9:\"resources\";s:7:\"options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:9:\"resources\";}}s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"284\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:4:\"href\";s:6:\"node/4\";s:6:\"access\";b:1;s:17:\"localized_options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:9:\"resources\";}}s:18:\"parent_depth_limit\";i:8;}s:10:\"link_title\";a:5:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:15:\"Menu link title\";s:14:\"#default_value\";s:9:\"resources\";s:12:\"#description\";s:133:\"The link text corresponding to this item that should appear in the menu. Leave blank if you do not wish to add this post to the menu.\";s:9:\"#required\";b:0;}s:6:\"parent\";a:6:{s:5:\"#type\";s:6:\"select\";s:6:\"#title\";s:11:\"Parent item\";s:14:\"#default_value\";s:16:\"menu-main-menu:0\";s:8:\"#options\";a:96:{s:16:\"menu-main-menu:0\";s:11:\"<Main Menu>\";s:18:\"menu-main-menu:283\";s:8:\"-- about\";s:18:\"menu-main-menu:285\";s:11:\"-- services\";s:18:\"menu-main-menu:286\";s:17:\"-- special offers\";s:12:\"navigation:0\";s:12:\"<Navigation>\";s:12:\"navigation:9\";s:26:\"-- Compose tips (disabled)\";s:14:\"navigation:461\";s:29:\"-- Image galleries (disabled)\";s:13:\"navigation:21\";s:13:\"-- My account\";s:14:\"navigation:114\";s:20:\"-- Search (disabled)\";s:14:\"navigation:244\";s:22:\"-- Site map (disabled)\";s:13:\"navigation:11\";s:17:\"-- Create content\";s:14:\"navigation:476\";s:11:\"---- Banner\";s:14:\"navigation:441\";s:10:\"---- Image\";s:14:\"navigation:289\";s:21:\"---- Newsletter issue\";s:14:\"navigation:106\";s:9:\"---- Page\";s:14:\"navigation:388\";s:10:\"---- Panel\";s:14:\"navigation:107\";s:10:\"---- Story\";s:12:\"navigation:2\";s:13:\"-- Administer\";s:13:\"navigation:10\";s:23:\"---- Content management\";s:13:\"navigation:27\";s:15:\"------ Comments\";s:13:\"navigation:28\";s:14:\"------ Content\";s:13:\"navigation:29\";s:20:\"------ Content types\";s:14:\"navigation:462\";s:22:\"------ Image galleries\";s:14:\"navigation:463\";s:19:\"------ Image import\";s:14:\"navigation:538\";s:18:\"------ Newsletters\";s:14:\"navigation:546\";s:20:\"-------- Sent issues\";s:14:\"navigation:541\";s:21:\"-------- Draft issues\";s:14:\"navigation:544\";s:20:\"-------- Newsletters\";s:14:\"navigation:548\";s:22:\"-------- Subscriptions\";s:13:\"navigation:42\";s:20:\"------ Post settings\";s:13:\"navigation:43\";s:21:\"------ RSS publishing\";s:13:\"navigation:94\";s:15:\"------ Taxonomy\";s:13:\"navigation:17\";s:18:\"---- Site building\";s:13:\"navigation:25\";s:13:\"------ Blocks\";s:14:\"navigation:424\";s:20:\"------ Bulk Exporter\";s:13:\"navigation:38\";s:12:\"------ Menus\";s:14:\"navigation:282\";s:18:\"-------- Main Menu\";s:13:\"navigation:89\";s:19:\"-------- Navigation\";s:13:\"navigation:90\";s:22:\"-------- Primary links\";s:14:\"navigation:495\";s:19:\"-------- Right Menu\";s:13:\"navigation:91\";s:24:\"-------- Secondary links\";s:14:\"navigation:387\";s:18:\"------ Mini panels\";s:13:\"navigation:39\";s:14:\"------ Modules\";s:14:\"navigation:412\";s:12:\"------ Pages\";s:14:\"navigation:360\";s:13:\"------ Panels\";s:13:\"navigation:49\";s:13:\"------ Themes\";s:14:\"navigation:335\";s:15:\"------ Triggers\";s:14:\"navigation:501\";s:18:\"------ URL aliases\";s:14:\"navigation:257\";s:12:\"------ Views\";s:13:\"navigation:18\";s:23:\"---- Site configuration\";s:13:\"navigation:23\";s:14:\"------ Actions\";s:14:\"navigation:119\";s:26:\"------ Administration menu\";s:13:\"navigation:24\";s:27:\"------ Administration theme\";s:13:\"navigation:26\";s:17:\"------ Clean URLs\";s:13:\"navigation:30\";s:20:\"------ Date and time\";s:13:\"navigation:33\";s:22:\"------ Error reporting\";s:14:\"navigation:595\";s:16:\"------ FCKeditor\";s:13:\"navigation:34\";s:18:\"------ File system\";s:13:\"navigation:35\";s:20:\"------ Image toolkit\";s:14:\"navigation:442\";s:13:\"------ Images\";s:13:\"navigation:36\";s:20:\"------ Input formats\";s:13:\"navigation:37\";s:25:\"------ Logging and alerts\";s:14:\"navigation:100\";s:25:\"-------- Database logging\";s:14:\"navigation:245\";s:17:\"------ Nice Menus\";s:13:\"navigation:40\";s:18:\"------ Performance\";s:14:\"navigation:120\";s:22:\"------ Search settings\";s:14:\"navigation:539\";s:17:\"------ Simplenews\";s:14:\"navigation:542\";s:16:\"-------- General\";s:14:\"navigation:543\";s:19:\"-------- Newsletter\";s:14:\"navigation:547\";s:21:\"-------- Subscription\";s:14:\"navigation:545\";s:18:\"-------- Send mail\";s:13:\"navigation:46\";s:23:\"------ Site information\";s:13:\"navigation:47\";s:23:\"------ Site maintenance\";s:14:\"navigation:246\";s:15:\"------ Site map\";s:13:\"navigation:20\";s:20:\"---- User management\";s:13:\"navigation:22\";s:19:\"------ Access rules\";s:13:\"navigation:41\";s:18:\"------ Permissions\";s:13:\"navigation:45\";s:12:\"------ Roles\";s:13:\"navigation:50\";s:20:\"------ User settings\";s:13:\"navigation:51\";s:12:\"------ Users\";s:13:\"navigation:16\";s:12:\"---- Reports\";s:13:\"navigation:93\";s:25:\"------ Recent log entries\";s:13:\"navigation:96\";s:33:\"------ Top \'access denied\' errors\";s:13:\"navigation:97\";s:34:\"------ Top \'page not found\' errors\";s:14:\"navigation:121\";s:25:\"------ Top search phrases\";s:14:\"navigation:105\";s:24:\"------ Available updates\";s:13:\"navigation:48\";s:20:\"------ Status report\";s:13:\"navigation:15\";s:9:\"---- Help\";s:12:\"navigation:4\";s:10:\"-- Log out\";s:15:\"primary-links:0\";s:15:\"<Primary links>\";s:17:\"menu-right-menu:0\";s:12:\"<Right Menu>\";s:19:\"menu-right-menu:496\";s:28:\"-- Financial Calculator Tool\";s:19:\"menu-right-menu:497\";s:21:\"-- News Story Library\";s:19:\"menu-right-menu:498\";s:14:\"-- Latest News\";s:19:\"menu-right-menu:499\";s:25:\"-- SREC Management Portal\";s:17:\"secondary-links:0\";s:17:\"<Secondary links>\";}s:12:\"#description\";s:156:\"The maximum depth for an item and all its children is fixed at 9. Some menu items may not be available as parents if selecting them would exceed this limit.\";s:11:\"#attributes\";a:1:{s:5:\"class\";s:17:\"menu-title-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:1:\"0\";s:12:\"#description\";s:107:\"Optional. In the menu, the heavier items will sink and the lighter items will be positioned nearer the top.\";}}s:7:\"#submit\";a:1:{i:0;s:21:\"menu_node_form_submit\";}s:4:\"path\";a:10:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:17:\"URL path settings\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:0;s:7:\"#access\";b:1;s:7:\"#weight\";i:30;s:4:\"path\";a:6:{s:5:\"#type\";s:9:\"textfield\";s:14:\"#default_value\";s:9:\"resources\";s:10:\"#maxlength\";i:128;s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:12:\"#description\";s:207:\"Optionally specify an alternative URL by which this node 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\";s:1:\"4\";}s:22:\"pathauto_perform_alias\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:15:\"Automatic alias\";s:14:\"#default_value\";b:1;s:12:\"#description\";s:238:\"An alias will be generated for you. If you wish to create your own alias below, uncheck this option. To control the format of the generated aliases, see the <a href=\"/~uspvinc/main2/admin/build/path/pathauto\">automated alias settings</a>.\";s:7:\"#weight\";i:-1;}s:9:\"old_alias\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:9:\"resources\";}}s:11:\"#pre_render\";a:1:{i:0;s:27:\"content_alter_extra_weights\";}s:21:\"#content_extra_fields\";a:6:{s:5:\"title\";a:3:{s:5:\"label\";s:5:\"Title\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:-5;}s:10:\"body_field\";a:4:{s:5:\"label\";s:4:\"Body\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:0;s:4:\"view\";s:4:\"body\";}s:20:\"revision_information\";a:3:{s:5:\"label\";s:20:\"Revision information\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:20;}s:16:\"comment_settings\";a:3:{s:5:\"label\";s:16:\"Comment settings\";s:11:\"description\";s:20:\"Comment module form.\";s:6:\"weight\";i:30;}s:4:\"menu\";a:3:{s:5:\"label\";s:13:\"Menu settings\";s:11:\"description\";s:17:\"Menu module form.\";s:6:\"weight\";i:-2;}s:4:\"path\";a:3:{s:5:\"label\";s:13:\"Path settings\";s:11:\"description\";s:17:\"Path module form.\";s:6:\"weight\";i:30;}}s:12:\"#cache_token\";s:32:\"ea05954e6208c2bed552f97e30d1dad3\";}',1285720098,1285698498,'',1),('form_form-4fbd47b2e9fefcc2e7e45f07ca068c5b','a:40:{s:3:\"#id\";s:9:\"node-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:1285698656;}s:4:\"type\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:4:\"page\";}s:8:\"language\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:0:\"\";}s:7:\"changed\";a:2:{s:5:\"#type\";s:6:\"hidden\";s:14:\"#default_value\";N;}s:5:\"title\";a:6:{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:10:\"body_field\";a:7:{s:12:\"#after_build\";a:2:{i:0;s:14:\"node_teaser_js\";i:1;s:26:\"node_teaser_include_verify\";}s:7:\"#prefix\";s:32:\"<div class=\"body-field-wrapper\">\";s:7:\"#suffix\";s:6:\"</div>\";s:9:\"teaser_js\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:5:\"#rows\";i:10;s:7:\"#teaser\";s:9:\"edit-body\";s:16:\"#teaser_checkbox\";s:19:\"edit-teaser-include\";s:9:\"#disabled\";b:1;}s:14:\"teaser_include\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:25:\"Show summary in full view\";s:14:\"#default_value\";b:1;s:7:\"#prefix\";s:29:\"<div class=\"teaser-checkbox\">\";s:7:\"#suffix\";s:6:\"</div>\";}s:4:\"body\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:4:\"Body\";s:14:\"#default_value\";N;s:5:\"#rows\";i:20;s:9:\"#required\";b:0;}s:6:\"format\";a:9:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:12:\"Input format\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:7:\"#weight\";N;s:17:\"#element_validate\";a:1:{i:0;s:20:\"filter_form_validate\";}i:1;a:7:{s:5:\"#type\";s:5:\"radio\";s:6:\"#title\";s:13:\"Filtered HTML\";s:14:\"#default_value\";i:1;s:13:\"#return_value\";s:1:\"1\";s:8:\"#parents\";a:1:{i:0;s:6:\"format\";}s:12:\"#description\";s:306:\"<ul class=\"tips\"><li>Web page addresses and e-mail addresses turn into links automatically.</li><li>Allowed HTML tags: &lt;a&gt; &lt;em&gt; &lt;strong&gt; &lt;cite&gt; &lt;code&gt; &lt;ul&gt; &lt;ol&gt; &lt;li&gt; &lt;dl&gt; &lt;dt&gt; &lt;dd&gt;</li><li>Lines and paragraphs break automatically.</li></ul>\";s:3:\"#id\";s:13:\"edit-format-1\";}i:2;a:7:{s:5:\"#type\";s:5:\"radio\";s:6:\"#title\";s:9:\"Full HTML\";s:14:\"#default_value\";i:1;s:13:\"#return_value\";s:1:\"2\";s:8:\"#parents\";a:1:{i:0;s:6:\"format\";}s:12:\"#description\";s:151:\"<ul class=\"tips\"><li>Web page addresses and e-mail addresses turn into links automatically.</li><li>Lines and paragraphs break automatically.</li></ul>\";s:3:\"#id\";s:13:\"edit-format-2\";}i:3;a:1:{s:6:\"#value\";s:90:\"<p><a href=\"/~uspvinc/main2/filter/tips\">More information about formatting options</a></p>\";}}}s:5:\"#node\";O:8:\"stdClass\":15:{s:3:\"uid\";s:1:\"1\";s:4:\"name\";s:5:\"admin\";s:4:\"type\";s:4:\"page\";s:8:\"language\";s:0:\"\";s:4:\"body\";N;s:5:\"title\";N;s:6:\"format\";N;s:6:\"status\";b:1;s:7:\"promote\";b:0;s:6:\"sticky\";b:0;s:7:\"created\";i:1285698656;s:8:\"revision\";b:0;s:7:\"comment\";i: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:13:\"primary-links\";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:22:\"pathauto_perform_alias\";b:1;}s:20:\"revision_information\";a:7:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:20:\"Revision information\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:7:\"#weight\";i:20;s:8:\"revision\";a:4:{s:7:\"#access\";b:1;s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:19:\"Create new revision\";s:14:\"#default_value\";b:0;}s:3:\"log\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:11:\"Log message\";s:14:\"#default_value\";s:0:\"\";s:5:\"#rows\";i:2;s:12:\"#description\";s:104:\"An explanation of the additions or updates being made to help other authors understand your motivations.\";}}s:6:\"author\";a:8:{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:7:\"#weight\";i:20;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:35:\"Leave blank for <em>Anonymous</em>.\";}s:4:\"date\";a:4:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:11:\"Authored on\";s:10:\"#maxlength\";i:25;s:12:\"#description\";s:91:\"Format: <em>2010-09-29 02:30:56 +0800</em>. Leave blank to use the time of form submission.\";}}s:7:\"options\";a:9:{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:7:\"#weight\";i:25;s:6:\"status\";a:3:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:9:\"Published\";s:14:\"#default_value\";b: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\";b: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\";b:0;}}s:7:\"buttons\";a:2:{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:16:\"node_form_submit\";}}s:7:\"preview\";a:4:{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:6:\"#theme\";a:2:{i:0;s:14:\"page_node_form\";i:1;s:9:\"node_form\";}s:11:\"#parameters\";a:3:{i:0;s:14:\"page_node_form\";i:1;a:3:{s:7:\"storage\";N;s:9:\"submitted\";b:0;s:4:\"post\";a:0:{}}i:2;a:4:{s:3:\"uid\";s:1:\"1\";s:4:\"name\";s:5:\"admin\";s:4:\"type\";s:4:\"page\";s:8:\"language\";s:0:\"\";}}s:9:\"#build_id\";s:37:\"form-4fbd47b2e9fefcc2e7e45f07ca068c5b\";s:5:\"#type\";s:4:\"form\";s:11:\"#programmed\";b:0;s:13:\"form_build_id\";a:4:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:37:\"form-4fbd47b2e9fefcc2e7e45f07ca068c5b\";s:3:\"#id\";s:37:\"form-4fbd47b2e9fefcc2e7e45f07ca068c5b\";s:5:\"#name\";s:13:\"form_build_id\";}s:6:\"#token\";s:14:\"page_node_form\";s:10:\"form_token\";a:3:{s:3:\"#id\";s:30:\"edit-page-node-form-form-token\";s:5:\"#type\";s:5:\"token\";s:14:\"#default_value\";s:32:\"69ee9cfa6b6366390575effcb3429c15\";}s:7:\"form_id\";a:3:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:14:\"page_node_form\";s:3:\"#id\";s:19:\"edit-page-node-form\";}s:12:\"#description\";N;s:11:\"#attributes\";a:0:{}s:9:\"#required\";b:0;s:5:\"#tree\";b:0;s:8:\"#parents\";a:0:{}s:7:\"#method\";s:4:\"post\";s:7:\"#action\";s:29:\"/~uspvinc/main2/node/add/page\";s:16:\"comment_settings\";a:7:{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:7:\"#weight\";i:30;s:7:\"comment\";a:4:{s:5:\"#type\";s:6:\"radios\";s:8:\"#parents\";a:1:{i:0;s:7:\"comment\";}s:14:\"#default_value\";i:0;s:8:\"#options\";a:3:{i:0;s:8:\"Disabled\";i:1;s:9:\"Read only\";i:2;s:10:\"Read/Write\";}}}s:6:\"#cache\";b:1;s:4:\"menu\";a:20:{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:5:\"#tree\";b:1;s:7:\"#weight\";i:-2;s:11:\"#attributes\";a:1:{s:5:\"class\";s:14:\"menu-item-form\";}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:0;}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:5:\"#item\";a:12:{s:10:\"link_title\";s:0:\"\";s:4:\"mlid\";i:0;s:4:\"plid\";i:0;s:9:\"menu_name\";s:13:\"primary-links\";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:10:\"link_title\";a:5:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:15:\"Menu link title\";s:14:\"#default_value\";s:0:\"\";s:12:\"#description\";s:133:\"The link text corresponding to this item that should appear in the menu. Leave blank if you do not wish to add this post to the menu.\";s:9:\"#required\";b:0;}s:6:\"parent\";a:6:{s:5:\"#type\";s:6:\"select\";s:6:\"#title\";s:11:\"Parent item\";s:14:\"#default_value\";s:15:\"primary-links:0\";s:8:\"#options\";a:97:{s:16:\"menu-main-menu:0\";s:11:\"<Main Menu>\";s:18:\"menu-main-menu:283\";s:8:\"-- about\";s:18:\"menu-main-menu:284\";s:12:\"-- resources\";s:18:\"menu-main-menu:285\";s:11:\"-- services\";s:18:\"menu-main-menu:286\";s:17:\"-- special offers\";s:12:\"navigation:0\";s:12:\"<Navigation>\";s:12:\"navigation:9\";s:26:\"-- Compose tips (disabled)\";s:14:\"navigation:461\";s:29:\"-- Image galleries (disabled)\";s:13:\"navigation:21\";s:13:\"-- My account\";s:14:\"navigation:114\";s:20:\"-- Search (disabled)\";s:14:\"navigation:244\";s:22:\"-- Site map (disabled)\";s:13:\"navigation:11\";s:17:\"-- Create content\";s:14:\"navigation:476\";s:11:\"---- Banner\";s:14:\"navigation:441\";s:10:\"---- Image\";s:14:\"navigation:289\";s:21:\"---- Newsletter issue\";s:14:\"navigation:106\";s:9:\"---- Page\";s:14:\"navigation:388\";s:10:\"---- Panel\";s:14:\"navigation:107\";s:10:\"---- Story\";s:12:\"navigation:2\";s:13:\"-- Administer\";s:13:\"navigation:10\";s:23:\"---- Content management\";s:13:\"navigation:27\";s:15:\"------ Comments\";s:13:\"navigation:28\";s:14:\"------ Content\";s:13:\"navigation:29\";s:20:\"------ Content types\";s:14:\"navigation:462\";s:22:\"------ Image galleries\";s:14:\"navigation:463\";s:19:\"------ Image import\";s:14:\"navigation:538\";s:18:\"------ Newsletters\";s:14:\"navigation:546\";s:20:\"-------- Sent issues\";s:14:\"navigation:541\";s:21:\"-------- Draft issues\";s:14:\"navigation:544\";s:20:\"-------- Newsletters\";s:14:\"navigation:548\";s:22:\"-------- Subscriptions\";s:13:\"navigation:42\";s:20:\"------ Post settings\";s:13:\"navigation:43\";s:21:\"------ RSS publishing\";s:13:\"navigation:94\";s:15:\"------ Taxonomy\";s:13:\"navigation:17\";s:18:\"---- Site building\";s:13:\"navigation:25\";s:13:\"------ Blocks\";s:14:\"navigation:424\";s:20:\"------ Bulk Exporter\";s:13:\"navigation:38\";s:12:\"------ Menus\";s:14:\"navigation:282\";s:18:\"-------- Main Menu\";s:13:\"navigation:89\";s:19:\"-------- Navigation\";s:13:\"navigation:90\";s:22:\"-------- Primary links\";s:14:\"navigation:495\";s:19:\"-------- Right Menu\";s:13:\"navigation:91\";s:24:\"-------- Secondary links\";s:14:\"navigation:387\";s:18:\"------ Mini panels\";s:13:\"navigation:39\";s:14:\"------ Modules\";s:14:\"navigation:412\";s:12:\"------ Pages\";s:14:\"navigation:360\";s:13:\"------ Panels\";s:13:\"navigation:49\";s:13:\"------ Themes\";s:14:\"navigation:335\";s:15:\"------ Triggers\";s:14:\"navigation:501\";s:18:\"------ URL aliases\";s:14:\"navigation:257\";s:12:\"------ Views\";s:13:\"navigation:18\";s:23:\"---- Site configuration\";s:13:\"navigation:23\";s:14:\"------ Actions\";s:14:\"navigation:119\";s:26:\"------ Administration menu\";s:13:\"navigation:24\";s:27:\"------ Administration theme\";s:13:\"navigation:26\";s:17:\"------ Clean URLs\";s:13:\"navigation:30\";s:20:\"------ Date and time\";s:13:\"navigation:33\";s:22:\"------ Error reporting\";s:14:\"navigation:595\";s:16:\"------ FCKeditor\";s:13:\"navigation:34\";s:18:\"------ File system\";s:13:\"navigation:35\";s:20:\"------ Image toolkit\";s:14:\"navigation:442\";s:13:\"------ Images\";s:13:\"navigation:36\";s:20:\"------ Input formats\";s:13:\"navigation:37\";s:25:\"------ Logging and alerts\";s:14:\"navigation:100\";s:25:\"-------- Database logging\";s:14:\"navigation:245\";s:17:\"------ Nice Menus\";s:13:\"navigation:40\";s:18:\"------ Performance\";s:14:\"navigation:120\";s:22:\"------ Search settings\";s:14:\"navigation:539\";s:17:\"------ Simplenews\";s:14:\"navigation:542\";s:16:\"-------- General\";s:14:\"navigation:543\";s:19:\"-------- Newsletter\";s:14:\"navigation:547\";s:21:\"-------- Subscription\";s:14:\"navigation:545\";s:18:\"-------- Send mail\";s:13:\"navigation:46\";s:23:\"------ Site information\";s:13:\"navigation:47\";s:23:\"------ Site maintenance\";s:14:\"navigation:246\";s:15:\"------ Site map\";s:13:\"navigation:20\";s:20:\"---- User management\";s:13:\"navigation:22\";s:19:\"------ Access rules\";s:13:\"navigation:41\";s:18:\"------ Permissions\";s:13:\"navigation:45\";s:12:\"------ Roles\";s:13:\"navigation:50\";s:20:\"------ User settings\";s:13:\"navigation:51\";s:12:\"------ Users\";s:13:\"navigation:16\";s:12:\"---- Reports\";s:13:\"navigation:93\";s:25:\"------ Recent log entries\";s:13:\"navigation:96\";s:33:\"------ Top \'access denied\' errors\";s:13:\"navigation:97\";s:34:\"------ Top \'page not found\' errors\";s:14:\"navigation:121\";s:25:\"------ Top search phrases\";s:14:\"navigation:105\";s:24:\"------ Available updates\";s:13:\"navigation:48\";s:20:\"------ Status report\";s:13:\"navigation:15\";s:9:\"---- Help\";s:12:\"navigation:4\";s:10:\"-- Log out\";s:15:\"primary-links:0\";s:15:\"<Primary links>\";s:17:\"menu-right-menu:0\";s:12:\"<Right Menu>\";s:19:\"menu-right-menu:496\";s:28:\"-- Financial Calculator Tool\";s:19:\"menu-right-menu:497\";s:21:\"-- News Story Library\";s:19:\"menu-right-menu:498\";s:14:\"-- Latest News\";s:19:\"menu-right-menu:499\";s:25:\"-- SREC Management Portal\";s:17:\"secondary-links:0\";s:17:\"<Secondary links>\";}s:12:\"#description\";s:156:\"The maximum depth for an item and all its children is fixed at 9. Some menu items may not be available as parents if selecting them would exceed this limit.\";s:11:\"#attributes\";a:1:{s:5:\"class\";s:17:\"menu-title-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:107:\"Optional. In the menu, the heavier items will sink and the lighter items will be positioned nearer the top.\";}}s:7:\"#submit\";a:1:{i:0;s:21:\"menu_node_form_submit\";}s:4:\"path\";a:8:{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:7:\"#access\";b:1;s:7:\"#weight\";i:30;s:4:\"path\";a:6:{s:5:\"#type\";s:9:\"textfield\";s:14:\"#default_value\";N;s:10:\"#maxlength\";i:128;s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:12:\"#description\";s:207:\"Optionally specify an alternative URL by which this node 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:22:\"pathauto_perform_alias\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:15:\"Automatic alias\";s:14:\"#default_value\";b:1;s:12:\"#description\";s:238:\"An alias will be generated for you. If you wish to create your own alias below, uncheck this option. To control the format of the generated aliases, see the <a href=\"/~uspvinc/main2/admin/build/path/pathauto\">automated alias settings</a>.\";s:7:\"#weight\";i:-1;}}s:11:\"#pre_render\";a:1:{i:0;s:27:\"content_alter_extra_weights\";}s:21:\"#content_extra_fields\";a:6:{s:5:\"title\";a:3:{s:5:\"label\";s:5:\"Title\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:-5;}s:10:\"body_field\";a:4:{s:5:\"label\";s:4:\"Body\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:0;s:4:\"view\";s:4:\"body\";}s:20:\"revision_information\";a:3:{s:5:\"label\";s:20:\"Revision information\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:20;}s:16:\"comment_settings\";a:3:{s:5:\"label\";s:16:\"Comment settings\";s:11:\"description\";s:20:\"Comment module form.\";s:6:\"weight\";i:30;}s:4:\"menu\";a:3:{s:5:\"label\";s:13:\"Menu settings\";s:11:\"description\";s:17:\"Menu module form.\";s:6:\"weight\";i:-2;}s:4:\"path\";a:3:{s:5:\"label\";s:13:\"Path settings\";s:11:\"description\";s:17:\"Path module form.\";s:6:\"weight\";i:30;}}s:12:\"#cache_token\";s:32:\"ea05954e6208c2bed552f97e30d1dad3\";}',1285720256,1285698656,'',1),('form_form-813d11743ccc4472fe6346f854feb661','a:40:{s:3:\"#id\";s:9:\"node-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:\"1265202538\";}s:4:\"type\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:4:\"page\";}s:8:\"language\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:0:\"\";}s:7:\"changed\";a:2:{s:5:\"#type\";s:6:\"hidden\";s:14:\"#default_value\";s:10:\"1285684275\";}s:5:\"title\";a:6:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:5:\"Title\";s:9:\"#required\";b:1;s:14:\"#default_value\";s:9:\"resources\";s:10:\"#maxlength\";i:255;s:7:\"#weight\";i:-5;}s:10:\"body_field\";a:7:{s:12:\"#after_build\";a:2:{i:0;s:14:\"node_teaser_js\";i:1;s:26:\"node_teaser_include_verify\";}s:7:\"#prefix\";s:32:\"<div class=\"body-field-wrapper\">\";s:7:\"#suffix\";s:6:\"</div>\";s:9:\"teaser_js\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:5:\"#rows\";i:10;s:7:\"#teaser\";s:9:\"edit-body\";s:16:\"#teaser_checkbox\";s:19:\"edit-teaser-include\";s:9:\"#disabled\";b:1;}s:14:\"teaser_include\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:25:\"Show summary in full view\";s:14:\"#default_value\";b:1;s:7:\"#prefix\";s:29:\"<div class=\"teaser-checkbox\">\";s:7:\"#suffix\";s:6:\"</div>\";}s:4:\"body\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:4:\"Body\";s:14:\"#default_value\";s:1102:\"<h2>Internet Resources</h2>\r\n \r\nFrom the Database of State Incentives for Renewables and Efficiency (DSIRE.org):\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/statesearch2.cfm?State=US&back=fintab&CurrentPageID=7&Search=TableState&EE=1&RE=1\">Federal Incentives for Solar PV</a>\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&State=MD&RE=1&EE=1\">Maryland Incentives for Solar PV</a>\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&State=DC&RE=1&EE=1\">District of Columbia Incentives for Solar PV</a>\r\n\r\n<h2>Industry Organizations</h2>\r\n\r\n<a href=\"http://www.ases.org/\">American Solar Energy Society</a>   Professional Member\r\n\r\n<a href=\"http://www.mdv-seia.org/\">Maryland-DC-Virginia Solar Energy Industries Association</a>   Professional Member\r\n  \r\n<h2>Contact Us</h2>\r\n<p>\r\nTelephone: 240-344-2657\r\n</p>\r\n<p>\r\nEmail:\r\n\r\n          Sales: sales@uspvinc.com\r\n\r\n          Customer Service: support@uspvinc.com\r\n\r\n          Other Inquiries:  info@uspvinc.com\r\n</p>\r\n<p>\r\nPostal Address: 4539 Metropolitan Court, Frederick MD  21704\r\n</p>\";s:5:\"#rows\";i:20;s:9:\"#required\";b:0;}s:6:\"format\";a:9:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:12:\"Input format\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:7:\"#weight\";N;s:17:\"#element_validate\";a:1:{i:0;s:20:\"filter_form_validate\";}i:1;a:7:{s:5:\"#type\";s:5:\"radio\";s:6:\"#title\";s:13:\"Filtered HTML\";s:14:\"#default_value\";s:1:\"2\";s:13:\"#return_value\";s:1:\"1\";s:8:\"#parents\";a:1:{i:0;s:6:\"format\";}s:12:\"#description\";s:306:\"<ul class=\"tips\"><li>Web page addresses and e-mail addresses turn into links automatically.</li><li>Allowed HTML tags: &lt;a&gt; &lt;em&gt; &lt;strong&gt; &lt;cite&gt; &lt;code&gt; &lt;ul&gt; &lt;ol&gt; &lt;li&gt; &lt;dl&gt; &lt;dt&gt; &lt;dd&gt;</li><li>Lines and paragraphs break automatically.</li></ul>\";s:3:\"#id\";s:13:\"edit-format-1\";}i:2;a:7:{s:5:\"#type\";s:5:\"radio\";s:6:\"#title\";s:9:\"Full HTML\";s:14:\"#default_value\";s:1:\"2\";s:13:\"#return_value\";s:1:\"2\";s:8:\"#parents\";a:1:{i:0;s:6:\"format\";}s:12:\"#description\";s:151:\"<ul class=\"tips\"><li>Web page addresses and e-mail addresses turn into links automatically.</li><li>Lines and paragraphs break automatically.</li></ul>\";s:3:\"#id\";s:13:\"edit-format-2\";}i:3;a:1:{s:6:\"#value\";s:90:\"<p><a href=\"/~uspvinc/main2/filter/tips\">More information about formatting options</a></p>\";}}}s:5:\"#node\";O:8:\"stdClass\":33:{s:3:\"nid\";s:1:\"4\";s:4:\"type\";s:4:\"page\";s:8:\"language\";s:0:\"\";s:3:\"uid\";s:1:\"1\";s:6:\"status\";s:1:\"1\";s:7:\"created\";s:10:\"1265202538\";s:7:\"changed\";s:10:\"1285684275\";s:7:\"comment\";s:1:\"0\";s:7:\"promote\";s:1:\"0\";s:8:\"moderate\";s:1:\"0\";s:6:\"sticky\";s:1:\"0\";s:4:\"tnid\";s:1:\"0\";s:9:\"translate\";s:1:\"0\";s:3:\"vid\";s:1:\"4\";s:12:\"revision_uid\";s:1:\"1\";s:5:\"title\";s:9:\"resources\";s:4:\"body\";s:1102:\"<h2>Internet Resources</h2>\r\n \r\nFrom the Database of State Incentives for Renewables and Efficiency (DSIRE.org):\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/statesearch2.cfm?State=US&back=fintab&CurrentPageID=7&Search=TableState&EE=1&RE=1\">Federal Incentives for Solar PV</a>\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&State=MD&RE=1&EE=1\">Maryland Incentives for Solar PV</a>\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&State=DC&RE=1&EE=1\">District of Columbia Incentives for Solar PV</a>\r\n\r\n<h2>Industry Organizations</h2>\r\n\r\n<a href=\"http://www.ases.org/\">American Solar Energy Society</a>   Professional Member\r\n\r\n<a href=\"http://www.mdv-seia.org/\">Maryland-DC-Virginia Solar Energy Industries Association</a>   Professional Member\r\n  \r\n<h2>Contact Us</h2>\r\n<p>\r\nTelephone: 240-344-2657\r\n</p>\r\n<p>\r\nEmail:\r\n\r\n          Sales: sales@uspvinc.com\r\n\r\n          Customer Service: support@uspvinc.com\r\n\r\n          Other Inquiries:  info@uspvinc.com\r\n</p>\r\n<p>\r\nPostal Address: 4539 Metropolitan Court, Frederick MD  21704\r\n</p>\";s:6:\"teaser\";s:569:\"<h2>Internet Resources</h2>\r\n \r\nFrom the Database of State Incentives for Renewables and Efficiency (DSIRE.org):\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/statesearch2.cfm?State=US&back=fintab&CurrentPageID=7&Search=TableState&EE=1&RE=1\">Federal Incentives for Solar PV</a>\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&State=MD&RE=1&EE=1\">Maryland Incentives for Solar PV</a>\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&State=DC&RE=1&EE=1\">District of Columbia Incentives for Solar PV</a>\r\n\r\";s:3:\"log\";N;s:18:\"revision_timestamp\";s:10:\"1285684275\";s:6:\"format\";s:1:\"2\";s:4:\"name\";s:5:\"admin\";s:7:\"picture\";s:0:\"\";s:4:\"data\";s:6:\"a:0:{}\";s:4:\"path\";s:9:\"resources\";s:22:\"last_comment_timestamp\";s:10:\"1265202538\";s:17:\"last_comment_name\";N;s:13:\"comment_count\";s:1:\"0\";s:8:\"taxonomy\";a:0:{}s:4:\"date\";s:25:\"2010-02-03 21:08:58 +0800\";s:8:\"revision\";b:0;s:4:\"menu\";a:48:{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:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:3:\"fit\";s:1:\"2\";s:12:\"number_parts\";s:1:\"2\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:9:\"resources\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:4:\"type\";s:1:\"4\";s:14:\"block_callback\";s:0:\"\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"0\";s:4:\"file\";s:0:\"\";s:9:\"menu_name\";s:14:\"menu-main-menu\";s:4:\"mlid\";s:3:\"284\";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:9:\"resources\";s:7:\"options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:9:\"resources\";}}s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"284\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:4:\"href\";s:6:\"node/4\";s:6:\"access\";b:1;s:17:\"localized_options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:9:\"resources\";}}s:18:\"parent_depth_limit\";i:8;}s:22:\"pathauto_perform_alias\";b:1;}s:20:\"revision_information\";a:7:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:20:\"Revision information\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:7:\"#weight\";i:20;s:8:\"revision\";a:4:{s:7:\"#access\";b:1;s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:19:\"Create new revision\";s:14:\"#default_value\";b:0;}s:3:\"log\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:11:\"Log message\";s:14:\"#default_value\";s:0:\"\";s:5:\"#rows\";i:2;s:12:\"#description\";s:104:\"An explanation of the additions or updates being made to help other authors understand your motivations.\";}}s:6:\"author\";a:8:{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:7:\"#weight\";i:20;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:35:\"Leave blank for <em>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:91:\"Format: <em>2010-02-03 21:08:58 +0800</em>. Leave blank to use the time of form submission.\";s:14:\"#default_value\";s:25:\"2010-02-03 21:08:58 +0800\";}}s:7:\"options\";a:9:{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:7:\"#weight\";i:25;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:\"buttons\";a:3:{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:16:\"node_form_submit\";}}s:7:\"preview\";a:4:{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:6:\"#theme\";a:2:{i:0;s:14:\"page_node_form\";i:1;s:9:\"node_form\";}s:11:\"#parameters\";a:3:{i:0;s:14:\"page_node_form\";i:1;a:3:{s:7:\"storage\";N;s:9:\"submitted\";b:0;s:4:\"post\";a:0:{}}i:2;r:83;}s:9:\"#build_id\";s:37:\"form-813d11743ccc4472fe6346f854feb661\";s:5:\"#type\";s:4:\"form\";s:11:\"#programmed\";b:0;s:13:\"form_build_id\";a:4:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:37:\"form-813d11743ccc4472fe6346f854feb661\";s:3:\"#id\";s:37:\"form-813d11743ccc4472fe6346f854feb661\";s:5:\"#name\";s:13:\"form_build_id\";}s:6:\"#token\";s:14:\"page_node_form\";s:10:\"form_token\";a:3:{s:3:\"#id\";s:30:\"edit-page-node-form-form-token\";s:5:\"#type\";s:5:\"token\";s:14:\"#default_value\";s:32:\"69ee9cfa6b6366390575effcb3429c15\";}s:7:\"form_id\";a:3:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:14:\"page_node_form\";s:3:\"#id\";s:19:\"edit-page-node-form\";}s:12:\"#description\";N;s:11:\"#attributes\";a:0:{}s:9:\"#required\";b:0;s:5:\"#tree\";b:0;s:8:\"#parents\";a:0:{}s:7:\"#method\";s:4:\"post\";s:7:\"#action\";s:27:\"/~uspvinc/main2/node/4/edit\";s:16:\"comment_settings\";a:7:{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:7:\"#weight\";i:30;s:7:\"comment\";a:4:{s:5:\"#type\";s:6:\"radios\";s:8:\"#parents\";a:1:{i:0;s:7:\"comment\";}s:14:\"#default_value\";s:1:\"0\";s:8:\"#options\";a:3:{i:0;s:8:\"Disabled\";i:1;s:9:\"Read only\";i:2;s:10:\"Read/Write\";}}}s:6:\"#cache\";b:1;s:4:\"menu\";a:21:{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:5:\"#tree\";b:1;s:7:\"#weight\";i:-2;s:11:\"#attributes\";a:1:{s:5:\"class\";s:14:\"menu-item-form\";}s:6:\"delete\";a:2:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:22:\"Delete this menu item.\";}s:4:\"mlid\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:3:\"284\";}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\";s:1:\"1\";}s:7:\"options\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:9:\"resources\";}}}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:5:\"#item\";a:48:{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:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:3:\"fit\";s:1:\"2\";s:12:\"number_parts\";s:1:\"2\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:9:\"resources\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:4:\"type\";s:1:\"4\";s:14:\"block_callback\";s:0:\"\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"0\";s:4:\"file\";s:0:\"\";s:9:\"menu_name\";s:14:\"menu-main-menu\";s:4:\"mlid\";s:3:\"284\";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:9:\"resources\";s:7:\"options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:9:\"resources\";}}s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"284\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:4:\"href\";s:6:\"node/4\";s:6:\"access\";b:1;s:17:\"localized_options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:9:\"resources\";}}s:18:\"parent_depth_limit\";i:8;}s:10:\"link_title\";a:5:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:15:\"Menu link title\";s:14:\"#default_value\";s:9:\"resources\";s:12:\"#description\";s:133:\"The link text corresponding to this item that should appear in the menu. Leave blank if you do not wish to add this post to the menu.\";s:9:\"#required\";b:0;}s:6:\"parent\";a:6:{s:5:\"#type\";s:6:\"select\";s:6:\"#title\";s:11:\"Parent item\";s:14:\"#default_value\";s:16:\"menu-main-menu:0\";s:8:\"#options\";a:96:{s:16:\"menu-main-menu:0\";s:11:\"<Main Menu>\";s:18:\"menu-main-menu:283\";s:8:\"-- about\";s:18:\"menu-main-menu:285\";s:11:\"-- services\";s:18:\"menu-main-menu:286\";s:17:\"-- special offers\";s:12:\"navigation:0\";s:12:\"<Navigation>\";s:12:\"navigation:9\";s:26:\"-- Compose tips (disabled)\";s:14:\"navigation:461\";s:29:\"-- Image galleries (disabled)\";s:13:\"navigation:21\";s:13:\"-- My account\";s:14:\"navigation:114\";s:20:\"-- Search (disabled)\";s:14:\"navigation:244\";s:22:\"-- Site map (disabled)\";s:13:\"navigation:11\";s:17:\"-- Create content\";s:14:\"navigation:476\";s:11:\"---- Banner\";s:14:\"navigation:441\";s:10:\"---- Image\";s:14:\"navigation:289\";s:21:\"---- Newsletter issue\";s:14:\"navigation:106\";s:9:\"---- Page\";s:14:\"navigation:388\";s:10:\"---- Panel\";s:14:\"navigation:107\";s:10:\"---- Story\";s:12:\"navigation:2\";s:13:\"-- Administer\";s:13:\"navigation:10\";s:23:\"---- Content management\";s:13:\"navigation:27\";s:15:\"------ Comments\";s:13:\"navigation:28\";s:14:\"------ Content\";s:13:\"navigation:29\";s:20:\"------ Content types\";s:14:\"navigation:462\";s:22:\"------ Image galleries\";s:14:\"navigation:463\";s:19:\"------ Image import\";s:14:\"navigation:538\";s:18:\"------ Newsletters\";s:14:\"navigation:546\";s:20:\"-------- Sent issues\";s:14:\"navigation:541\";s:21:\"-------- Draft issues\";s:14:\"navigation:544\";s:20:\"-------- Newsletters\";s:14:\"navigation:548\";s:22:\"-------- Subscriptions\";s:13:\"navigation:42\";s:20:\"------ Post settings\";s:13:\"navigation:43\";s:21:\"------ RSS publishing\";s:13:\"navigation:94\";s:15:\"------ Taxonomy\";s:13:\"navigation:17\";s:18:\"---- Site building\";s:13:\"navigation:25\";s:13:\"------ Blocks\";s:14:\"navigation:424\";s:20:\"------ Bulk Exporter\";s:13:\"navigation:38\";s:12:\"------ Menus\";s:14:\"navigation:282\";s:18:\"-------- Main Menu\";s:13:\"navigation:89\";s:19:\"-------- Navigation\";s:13:\"navigation:90\";s:22:\"-------- Primary links\";s:14:\"navigation:495\";s:19:\"-------- Right Menu\";s:13:\"navigation:91\";s:24:\"-------- Secondary links\";s:14:\"navigation:387\";s:18:\"------ Mini panels\";s:13:\"navigation:39\";s:14:\"------ Modules\";s:14:\"navigation:412\";s:12:\"------ Pages\";s:14:\"navigation:360\";s:13:\"------ Panels\";s:13:\"navigation:49\";s:13:\"------ Themes\";s:14:\"navigation:335\";s:15:\"------ Triggers\";s:14:\"navigation:501\";s:18:\"------ URL aliases\";s:14:\"navigation:257\";s:12:\"------ Views\";s:13:\"navigation:18\";s:23:\"---- Site configuration\";s:13:\"navigation:23\";s:14:\"------ Actions\";s:14:\"navigation:119\";s:26:\"------ Administration menu\";s:13:\"navigation:24\";s:27:\"------ Administration theme\";s:13:\"navigation:26\";s:17:\"------ Clean URLs\";s:13:\"navigation:30\";s:20:\"------ Date and time\";s:13:\"navigation:33\";s:22:\"------ Error reporting\";s:14:\"navigation:595\";s:16:\"------ FCKeditor\";s:13:\"navigation:34\";s:18:\"------ File system\";s:13:\"navigation:35\";s:20:\"------ Image toolkit\";s:14:\"navigation:442\";s:13:\"------ Images\";s:13:\"navigation:36\";s:20:\"------ Input formats\";s:13:\"navigation:37\";s:25:\"------ Logging and alerts\";s:14:\"navigation:100\";s:25:\"-------- Database logging\";s:14:\"navigation:245\";s:17:\"------ Nice Menus\";s:13:\"navigation:40\";s:18:\"------ Performance\";s:14:\"navigation:120\";s:22:\"------ Search settings\";s:14:\"navigation:539\";s:17:\"------ Simplenews\";s:14:\"navigation:542\";s:16:\"-------- General\";s:14:\"navigation:543\";s:19:\"-------- Newsletter\";s:14:\"navigation:547\";s:21:\"-------- Subscription\";s:14:\"navigation:545\";s:18:\"-------- Send mail\";s:13:\"navigation:46\";s:23:\"------ Site information\";s:13:\"navigation:47\";s:23:\"------ Site maintenance\";s:14:\"navigation:246\";s:15:\"------ Site map\";s:13:\"navigation:20\";s:20:\"---- User management\";s:13:\"navigation:22\";s:19:\"------ Access rules\";s:13:\"navigation:41\";s:18:\"------ Permissions\";s:13:\"navigation:45\";s:12:\"------ Roles\";s:13:\"navigation:50\";s:20:\"------ User settings\";s:13:\"navigation:51\";s:12:\"------ Users\";s:13:\"navigation:16\";s:12:\"---- Reports\";s:13:\"navigation:93\";s:25:\"------ Recent log entries\";s:13:\"navigation:96\";s:33:\"------ Top \'access denied\' errors\";s:13:\"navigation:97\";s:34:\"------ Top \'page not found\' errors\";s:14:\"navigation:121\";s:25:\"------ Top search phrases\";s:14:\"navigation:105\";s:24:\"------ Available updates\";s:13:\"navigation:48\";s:20:\"------ Status report\";s:13:\"navigation:15\";s:9:\"---- Help\";s:12:\"navigation:4\";s:10:\"-- Log out\";s:15:\"primary-links:0\";s:15:\"<Primary links>\";s:17:\"menu-right-menu:0\";s:12:\"<Right Menu>\";s:19:\"menu-right-menu:496\";s:28:\"-- Financial Calculator Tool\";s:19:\"menu-right-menu:497\";s:21:\"-- News Story Library\";s:19:\"menu-right-menu:498\";s:14:\"-- Latest News\";s:19:\"menu-right-menu:499\";s:25:\"-- SREC Management Portal\";s:17:\"secondary-links:0\";s:17:\"<Secondary links>\";}s:12:\"#description\";s:156:\"The maximum depth for an item and all its children is fixed at 9. Some menu items may not be available as parents if selecting them would exceed this limit.\";s:11:\"#attributes\";a:1:{s:5:\"class\";s:17:\"menu-title-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:1:\"0\";s:12:\"#description\";s:107:\"Optional. In the menu, the heavier items will sink and the lighter items will be positioned nearer the top.\";}}s:7:\"#submit\";a:1:{i:0;s:21:\"menu_node_form_submit\";}s:4:\"path\";a:10:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:17:\"URL path settings\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:0;s:7:\"#access\";b:1;s:7:\"#weight\";i:30;s:4:\"path\";a:6:{s:5:\"#type\";s:9:\"textfield\";s:14:\"#default_value\";s:9:\"resources\";s:10:\"#maxlength\";i:128;s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:12:\"#description\";s:207:\"Optionally specify an alternative URL by which this node 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\";s:1:\"4\";}s:22:\"pathauto_perform_alias\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:15:\"Automatic alias\";s:14:\"#default_value\";b:1;s:12:\"#description\";s:238:\"An alias will be generated for you. If you wish to create your own alias below, uncheck this option. To control the format of the generated aliases, see the <a href=\"/~uspvinc/main2/admin/build/path/pathauto\">automated alias settings</a>.\";s:7:\"#weight\";i:-1;}s:9:\"old_alias\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:9:\"resources\";}}s:11:\"#pre_render\";a:1:{i:0;s:27:\"content_alter_extra_weights\";}s:21:\"#content_extra_fields\";a:6:{s:5:\"title\";a:3:{s:5:\"label\";s:5:\"Title\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:-5;}s:10:\"body_field\";a:4:{s:5:\"label\";s:4:\"Body\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:0;s:4:\"view\";s:4:\"body\";}s:20:\"revision_information\";a:3:{s:5:\"label\";s:20:\"Revision information\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:20;}s:16:\"comment_settings\";a:3:{s:5:\"label\";s:16:\"Comment settings\";s:11:\"description\";s:20:\"Comment module form.\";s:6:\"weight\";i:30;}s:4:\"menu\";a:3:{s:5:\"label\";s:13:\"Menu settings\";s:11:\"description\";s:17:\"Menu module form.\";s:6:\"weight\";i:-2;}s:4:\"path\";a:3:{s:5:\"label\";s:13:\"Path settings\";s:11:\"description\";s:17:\"Path module form.\";s:6:\"weight\";i:30;}}s:12:\"#cache_token\";s:32:\"ea05954e6208c2bed552f97e30d1dad3\";}',1285720731,1285699131,'',1),('form_form-63638bb5d5c85064d6e0f464c4d519bd','a:40:{s:3:\"#id\";s:9:\"node-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:\"1265202538\";}s:4:\"type\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:4:\"page\";}s:8:\"language\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:0:\"\";}s:7:\"changed\";a:2:{s:5:\"#type\";s:6:\"hidden\";s:14:\"#default_value\";s:10:\"1285684275\";}s:5:\"title\";a:6:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:5:\"Title\";s:9:\"#required\";b:1;s:14:\"#default_value\";s:9:\"resources\";s:10:\"#maxlength\";i:255;s:7:\"#weight\";i:-5;}s:10:\"body_field\";a:7:{s:12:\"#after_build\";a:2:{i:0;s:14:\"node_teaser_js\";i:1;s:26:\"node_teaser_include_verify\";}s:7:\"#prefix\";s:32:\"<div class=\"body-field-wrapper\">\";s:7:\"#suffix\";s:6:\"</div>\";s:9:\"teaser_js\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:5:\"#rows\";i:10;s:7:\"#teaser\";s:9:\"edit-body\";s:16:\"#teaser_checkbox\";s:19:\"edit-teaser-include\";s:9:\"#disabled\";b:1;}s:14:\"teaser_include\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:25:\"Show summary in full view\";s:14:\"#default_value\";b:1;s:7:\"#prefix\";s:29:\"<div class=\"teaser-checkbox\">\";s:7:\"#suffix\";s:6:\"</div>\";}s:4:\"body\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:4:\"Body\";s:14:\"#default_value\";s:1102:\"<h2>Internet Resources</h2>\r\n \r\nFrom the Database of State Incentives for Renewables and Efficiency (DSIRE.org):\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/statesearch2.cfm?State=US&back=fintab&CurrentPageID=7&Search=TableState&EE=1&RE=1\">Federal Incentives for Solar PV</a>\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&State=MD&RE=1&EE=1\">Maryland Incentives for Solar PV</a>\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&State=DC&RE=1&EE=1\">District of Columbia Incentives for Solar PV</a>\r\n\r\n<h2>Industry Organizations</h2>\r\n\r\n<a href=\"http://www.ases.org/\">American Solar Energy Society</a>   Professional Member\r\n\r\n<a href=\"http://www.mdv-seia.org/\">Maryland-DC-Virginia Solar Energy Industries Association</a>   Professional Member\r\n  \r\n<h2>Contact Us</h2>\r\n<p>\r\nTelephone: 240-344-2657\r\n</p>\r\n<p>\r\nEmail:\r\n\r\n          Sales: sales@uspvinc.com\r\n\r\n          Customer Service: support@uspvinc.com\r\n\r\n          Other Inquiries:  info@uspvinc.com\r\n</p>\r\n<p>\r\nPostal Address: 4539 Metropolitan Court, Frederick MD  21704\r\n</p>\";s:5:\"#rows\";i:20;s:9:\"#required\";b:0;}s:6:\"format\";a:9:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:12:\"Input format\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:7:\"#weight\";N;s:17:\"#element_validate\";a:1:{i:0;s:20:\"filter_form_validate\";}i:1;a:7:{s:5:\"#type\";s:5:\"radio\";s:6:\"#title\";s:13:\"Filtered HTML\";s:14:\"#default_value\";s:1:\"2\";s:13:\"#return_value\";s:1:\"1\";s:8:\"#parents\";a:1:{i:0;s:6:\"format\";}s:12:\"#description\";s:306:\"<ul class=\"tips\"><li>Web page addresses and e-mail addresses turn into links automatically.</li><li>Allowed HTML tags: &lt;a&gt; &lt;em&gt; &lt;strong&gt; &lt;cite&gt; &lt;code&gt; &lt;ul&gt; &lt;ol&gt; &lt;li&gt; &lt;dl&gt; &lt;dt&gt; &lt;dd&gt;</li><li>Lines and paragraphs break automatically.</li></ul>\";s:3:\"#id\";s:13:\"edit-format-1\";}i:2;a:7:{s:5:\"#type\";s:5:\"radio\";s:6:\"#title\";s:9:\"Full HTML\";s:14:\"#default_value\";s:1:\"2\";s:13:\"#return_value\";s:1:\"2\";s:8:\"#parents\";a:1:{i:0;s:6:\"format\";}s:12:\"#description\";s:151:\"<ul class=\"tips\"><li>Web page addresses and e-mail addresses turn into links automatically.</li><li>Lines and paragraphs break automatically.</li></ul>\";s:3:\"#id\";s:13:\"edit-format-2\";}i:3;a:1:{s:6:\"#value\";s:90:\"<p><a href=\"/~uspvinc/main2/filter/tips\">More information about formatting options</a></p>\";}}}s:5:\"#node\";O:8:\"stdClass\":33:{s:3:\"nid\";s:1:\"4\";s:4:\"type\";s:4:\"page\";s:8:\"language\";s:0:\"\";s:3:\"uid\";s:1:\"1\";s:6:\"status\";s:1:\"1\";s:7:\"created\";s:10:\"1265202538\";s:7:\"changed\";s:10:\"1285684275\";s:7:\"comment\";s:1:\"0\";s:7:\"promote\";s:1:\"0\";s:8:\"moderate\";s:1:\"0\";s:6:\"sticky\";s:1:\"0\";s:4:\"tnid\";s:1:\"0\";s:9:\"translate\";s:1:\"0\";s:3:\"vid\";s:1:\"4\";s:12:\"revision_uid\";s:1:\"1\";s:5:\"title\";s:9:\"resources\";s:4:\"body\";s:1102:\"<h2>Internet Resources</h2>\r\n \r\nFrom the Database of State Incentives for Renewables and Efficiency (DSIRE.org):\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/statesearch2.cfm?State=US&back=fintab&CurrentPageID=7&Search=TableState&EE=1&RE=1\">Federal Incentives for Solar PV</a>\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&State=MD&RE=1&EE=1\">Maryland Incentives for Solar PV</a>\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&State=DC&RE=1&EE=1\">District of Columbia Incentives for Solar PV</a>\r\n\r\n<h2>Industry Organizations</h2>\r\n\r\n<a href=\"http://www.ases.org/\">American Solar Energy Society</a>   Professional Member\r\n\r\n<a href=\"http://www.mdv-seia.org/\">Maryland-DC-Virginia Solar Energy Industries Association</a>   Professional Member\r\n  \r\n<h2>Contact Us</h2>\r\n<p>\r\nTelephone: 240-344-2657\r\n</p>\r\n<p>\r\nEmail:\r\n\r\n          Sales: sales@uspvinc.com\r\n\r\n          Customer Service: support@uspvinc.com\r\n\r\n          Other Inquiries:  info@uspvinc.com\r\n</p>\r\n<p>\r\nPostal Address: 4539 Metropolitan Court, Frederick MD  21704\r\n</p>\";s:6:\"teaser\";s:569:\"<h2>Internet Resources</h2>\r\n \r\nFrom the Database of State Incentives for Renewables and Efficiency (DSIRE.org):\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/statesearch2.cfm?State=US&back=fintab&CurrentPageID=7&Search=TableState&EE=1&RE=1\">Federal Incentives for Solar PV</a>\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&State=MD&RE=1&EE=1\">Maryland Incentives for Solar PV</a>\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&State=DC&RE=1&EE=1\">District of Columbia Incentives for Solar PV</a>\r\n\r\";s:3:\"log\";N;s:18:\"revision_timestamp\";s:10:\"1285684275\";s:6:\"format\";s:1:\"2\";s:4:\"name\";s:5:\"admin\";s:7:\"picture\";s:0:\"\";s:4:\"data\";s:6:\"a:0:{}\";s:4:\"path\";s:9:\"resources\";s:22:\"last_comment_timestamp\";s:10:\"1265202538\";s:17:\"last_comment_name\";N;s:13:\"comment_count\";s:1:\"0\";s:8:\"taxonomy\";a:0:{}s:4:\"date\";s:25:\"2010-02-03 21:08:58 +0800\";s:8:\"revision\";b:0;s:4:\"menu\";a:48:{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:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:3:\"fit\";s:1:\"2\";s:12:\"number_parts\";s:1:\"2\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:9:\"resources\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:4:\"type\";s:1:\"4\";s:14:\"block_callback\";s:0:\"\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"0\";s:4:\"file\";s:0:\"\";s:9:\"menu_name\";s:14:\"menu-main-menu\";s:4:\"mlid\";s:3:\"284\";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:9:\"resources\";s:7:\"options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:9:\"resources\";}}s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"284\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:4:\"href\";s:6:\"node/4\";s:6:\"access\";b:1;s:17:\"localized_options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:9:\"resources\";}}s:18:\"parent_depth_limit\";i:8;}s:22:\"pathauto_perform_alias\";b:1;}s:20:\"revision_information\";a:7:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:20:\"Revision information\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:7:\"#weight\";i:20;s:8:\"revision\";a:4:{s:7:\"#access\";b:1;s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:19:\"Create new revision\";s:14:\"#default_value\";b:0;}s:3:\"log\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:11:\"Log message\";s:14:\"#default_value\";s:0:\"\";s:5:\"#rows\";i:2;s:12:\"#description\";s:104:\"An explanation of the additions or updates being made to help other authors understand your motivations.\";}}s:6:\"author\";a:8:{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:7:\"#weight\";i:20;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:35:\"Leave blank for <em>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:91:\"Format: <em>2010-02-03 21:08:58 +0800</em>. Leave blank to use the time of form submission.\";s:14:\"#default_value\";s:25:\"2010-02-03 21:08:58 +0800\";}}s:7:\"options\";a:9:{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:7:\"#weight\";i:25;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:\"buttons\";a:3:{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:16:\"node_form_submit\";}}s:7:\"preview\";a:4:{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:6:\"#theme\";a:2:{i:0;s:14:\"page_node_form\";i:1;s:9:\"node_form\";}s:11:\"#parameters\";a:3:{i:0;s:14:\"page_node_form\";i:1;a:3:{s:7:\"storage\";N;s:9:\"submitted\";b:0;s:4:\"post\";a:0:{}}i:2;r:83;}s:9:\"#build_id\";s:37:\"form-63638bb5d5c85064d6e0f464c4d519bd\";s:5:\"#type\";s:4:\"form\";s:11:\"#programmed\";b:0;s:13:\"form_build_id\";a:4:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:37:\"form-63638bb5d5c85064d6e0f464c4d519bd\";s:3:\"#id\";s:37:\"form-63638bb5d5c85064d6e0f464c4d519bd\";s:5:\"#name\";s:13:\"form_build_id\";}s:6:\"#token\";s:14:\"page_node_form\";s:10:\"form_token\";a:3:{s:3:\"#id\";s:30:\"edit-page-node-form-form-token\";s:5:\"#type\";s:5:\"token\";s:14:\"#default_value\";s:32:\"69ee9cfa6b6366390575effcb3429c15\";}s:7:\"form_id\";a:3:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:14:\"page_node_form\";s:3:\"#id\";s:19:\"edit-page-node-form\";}s:12:\"#description\";N;s:11:\"#attributes\";a:0:{}s:9:\"#required\";b:0;s:5:\"#tree\";b:0;s:8:\"#parents\";a:0:{}s:7:\"#method\";s:4:\"post\";s:7:\"#action\";s:27:\"/~uspvinc/main2/node/4/edit\";s:16:\"comment_settings\";a:7:{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:7:\"#weight\";i:30;s:7:\"comment\";a:4:{s:5:\"#type\";s:6:\"radios\";s:8:\"#parents\";a:1:{i:0;s:7:\"comment\";}s:14:\"#default_value\";s:1:\"0\";s:8:\"#options\";a:3:{i:0;s:8:\"Disabled\";i:1;s:9:\"Read only\";i:2;s:10:\"Read/Write\";}}}s:6:\"#cache\";b:1;s:4:\"menu\";a:21:{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:5:\"#tree\";b:1;s:7:\"#weight\";i:-2;s:11:\"#attributes\";a:1:{s:5:\"class\";s:14:\"menu-item-form\";}s:6:\"delete\";a:2:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:22:\"Delete this menu item.\";}s:4:\"mlid\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:3:\"284\";}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\";s:1:\"1\";}s:7:\"options\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:9:\"resources\";}}}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:5:\"#item\";a:48:{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:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:3:\"fit\";s:1:\"2\";s:12:\"number_parts\";s:1:\"2\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:9:\"resources\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:4:\"type\";s:1:\"4\";s:14:\"block_callback\";s:0:\"\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"0\";s:4:\"file\";s:0:\"\";s:9:\"menu_name\";s:14:\"menu-main-menu\";s:4:\"mlid\";s:3:\"284\";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:9:\"resources\";s:7:\"options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:9:\"resources\";}}s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"284\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:4:\"href\";s:6:\"node/4\";s:6:\"access\";b:1;s:17:\"localized_options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:9:\"resources\";}}s:18:\"parent_depth_limit\";i:8;}s:10:\"link_title\";a:5:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:15:\"Menu link title\";s:14:\"#default_value\";s:9:\"resources\";s:12:\"#description\";s:133:\"The link text corresponding to this item that should appear in the menu. Leave blank if you do not wish to add this post to the menu.\";s:9:\"#required\";b:0;}s:6:\"parent\";a:6:{s:5:\"#type\";s:6:\"select\";s:6:\"#title\";s:11:\"Parent item\";s:14:\"#default_value\";s:16:\"menu-main-menu:0\";s:8:\"#options\";a:96:{s:16:\"menu-main-menu:0\";s:11:\"<Main Menu>\";s:18:\"menu-main-menu:283\";s:8:\"-- about\";s:18:\"menu-main-menu:285\";s:11:\"-- services\";s:18:\"menu-main-menu:286\";s:17:\"-- special offers\";s:12:\"navigation:0\";s:12:\"<Navigation>\";s:12:\"navigation:9\";s:26:\"-- Compose tips (disabled)\";s:14:\"navigation:461\";s:29:\"-- Image galleries (disabled)\";s:13:\"navigation:21\";s:13:\"-- My account\";s:14:\"navigation:114\";s:20:\"-- Search (disabled)\";s:14:\"navigation:244\";s:22:\"-- Site map (disabled)\";s:13:\"navigation:11\";s:17:\"-- Create content\";s:14:\"navigation:476\";s:11:\"---- Banner\";s:14:\"navigation:441\";s:10:\"---- Image\";s:14:\"navigation:289\";s:21:\"---- Newsletter issue\";s:14:\"navigation:106\";s:9:\"---- Page\";s:14:\"navigation:388\";s:10:\"---- Panel\";s:14:\"navigation:107\";s:10:\"---- Story\";s:12:\"navigation:2\";s:13:\"-- Administer\";s:13:\"navigation:10\";s:23:\"---- Content management\";s:13:\"navigation:27\";s:15:\"------ Comments\";s:13:\"navigation:28\";s:14:\"------ Content\";s:13:\"navigation:29\";s:20:\"------ Content types\";s:14:\"navigation:462\";s:22:\"------ Image galleries\";s:14:\"navigation:463\";s:19:\"------ Image import\";s:14:\"navigation:538\";s:18:\"------ Newsletters\";s:14:\"navigation:546\";s:20:\"-------- Sent issues\";s:14:\"navigation:541\";s:21:\"-------- Draft issues\";s:14:\"navigation:544\";s:20:\"-------- Newsletters\";s:14:\"navigation:548\";s:22:\"-------- Subscriptions\";s:13:\"navigation:42\";s:20:\"------ Post settings\";s:13:\"navigation:43\";s:21:\"------ RSS publishing\";s:13:\"navigation:94\";s:15:\"------ Taxonomy\";s:13:\"navigation:17\";s:18:\"---- Site building\";s:13:\"navigation:25\";s:13:\"------ Blocks\";s:14:\"navigation:424\";s:20:\"------ Bulk Exporter\";s:13:\"navigation:38\";s:12:\"------ Menus\";s:14:\"navigation:282\";s:18:\"-------- Main Menu\";s:13:\"navigation:89\";s:19:\"-------- Navigation\";s:13:\"navigation:90\";s:22:\"-------- Primary links\";s:14:\"navigation:495\";s:19:\"-------- Right Menu\";s:13:\"navigation:91\";s:24:\"-------- Secondary links\";s:14:\"navigation:387\";s:18:\"------ Mini panels\";s:13:\"navigation:39\";s:14:\"------ Modules\";s:14:\"navigation:412\";s:12:\"------ Pages\";s:14:\"navigation:360\";s:13:\"------ Panels\";s:13:\"navigation:49\";s:13:\"------ Themes\";s:14:\"navigation:335\";s:15:\"------ Triggers\";s:14:\"navigation:501\";s:18:\"------ URL aliases\";s:14:\"navigation:257\";s:12:\"------ Views\";s:13:\"navigation:18\";s:23:\"---- Site configuration\";s:13:\"navigation:23\";s:14:\"------ Actions\";s:14:\"navigation:119\";s:26:\"------ Administration menu\";s:13:\"navigation:24\";s:27:\"------ Administration theme\";s:13:\"navigation:26\";s:17:\"------ Clean URLs\";s:13:\"navigation:30\";s:20:\"------ Date and time\";s:13:\"navigation:33\";s:22:\"------ Error reporting\";s:14:\"navigation:595\";s:16:\"------ FCKeditor\";s:13:\"navigation:34\";s:18:\"------ File system\";s:13:\"navigation:35\";s:20:\"------ Image toolkit\";s:14:\"navigation:442\";s:13:\"------ Images\";s:13:\"navigation:36\";s:20:\"------ Input formats\";s:13:\"navigation:37\";s:25:\"------ Logging and alerts\";s:14:\"navigation:100\";s:25:\"-------- Database logging\";s:14:\"navigation:245\";s:17:\"------ Nice Menus\";s:13:\"navigation:40\";s:18:\"------ Performance\";s:14:\"navigation:120\";s:22:\"------ Search settings\";s:14:\"navigation:539\";s:17:\"------ Simplenews\";s:14:\"navigation:542\";s:16:\"-------- General\";s:14:\"navigation:543\";s:19:\"-------- Newsletter\";s:14:\"navigation:547\";s:21:\"-------- Subscription\";s:14:\"navigation:545\";s:18:\"-------- Send mail\";s:13:\"navigation:46\";s:23:\"------ Site information\";s:13:\"navigation:47\";s:23:\"------ Site maintenance\";s:14:\"navigation:246\";s:15:\"------ Site map\";s:13:\"navigation:20\";s:20:\"---- User management\";s:13:\"navigation:22\";s:19:\"------ Access rules\";s:13:\"navigation:41\";s:18:\"------ Permissions\";s:13:\"navigation:45\";s:12:\"------ Roles\";s:13:\"navigation:50\";s:20:\"------ User settings\";s:13:\"navigation:51\";s:12:\"------ Users\";s:13:\"navigation:16\";s:12:\"---- Reports\";s:13:\"navigation:93\";s:25:\"------ Recent log entries\";s:13:\"navigation:96\";s:33:\"------ Top \'access denied\' errors\";s:13:\"navigation:97\";s:34:\"------ Top \'page not found\' errors\";s:14:\"navigation:121\";s:25:\"------ Top search phrases\";s:14:\"navigation:105\";s:24:\"------ Available updates\";s:13:\"navigation:48\";s:20:\"------ Status report\";s:13:\"navigation:15\";s:9:\"---- Help\";s:12:\"navigation:4\";s:10:\"-- Log out\";s:15:\"primary-links:0\";s:15:\"<Primary links>\";s:17:\"menu-right-menu:0\";s:12:\"<Right Menu>\";s:19:\"menu-right-menu:496\";s:28:\"-- Financial Calculator Tool\";s:19:\"menu-right-menu:497\";s:21:\"-- News Story Library\";s:19:\"menu-right-menu:498\";s:14:\"-- Latest News\";s:19:\"menu-right-menu:499\";s:25:\"-- SREC Management Portal\";s:17:\"secondary-links:0\";s:17:\"<Secondary links>\";}s:12:\"#description\";s:156:\"The maximum depth for an item and all its children is fixed at 9. Some menu items may not be available as parents if selecting them would exceed this limit.\";s:11:\"#attributes\";a:1:{s:5:\"class\";s:17:\"menu-title-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:1:\"0\";s:12:\"#description\";s:107:\"Optional. In the menu, the heavier items will sink and the lighter items will be positioned nearer the top.\";}}s:7:\"#submit\";a:1:{i:0;s:21:\"menu_node_form_submit\";}s:4:\"path\";a:10:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:17:\"URL path settings\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:0;s:7:\"#access\";b:1;s:7:\"#weight\";i:30;s:4:\"path\";a:6:{s:5:\"#type\";s:9:\"textfield\";s:14:\"#default_value\";s:9:\"resources\";s:10:\"#maxlength\";i:128;s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:12:\"#description\";s:207:\"Optionally specify an alternative URL by which this node 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\";s:1:\"4\";}s:22:\"pathauto_perform_alias\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:15:\"Automatic alias\";s:14:\"#default_value\";b:1;s:12:\"#description\";s:238:\"An alias will be generated for you. If you wish to create your own alias below, uncheck this option. To control the format of the generated aliases, see the <a href=\"/~uspvinc/main2/admin/build/path/pathauto\">automated alias settings</a>.\";s:7:\"#weight\";i:-1;}s:9:\"old_alias\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:9:\"resources\";}}s:11:\"#pre_render\";a:1:{i:0;s:27:\"content_alter_extra_weights\";}s:21:\"#content_extra_fields\";a:6:{s:5:\"title\";a:3:{s:5:\"label\";s:5:\"Title\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:-5;}s:10:\"body_field\";a:4:{s:5:\"label\";s:4:\"Body\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:0;s:4:\"view\";s:4:\"body\";}s:20:\"revision_information\";a:3:{s:5:\"label\";s:20:\"Revision information\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:20;}s:16:\"comment_settings\";a:3:{s:5:\"label\";s:16:\"Comment settings\";s:11:\"description\";s:20:\"Comment module form.\";s:6:\"weight\";i:30;}s:4:\"menu\";a:3:{s:5:\"label\";s:13:\"Menu settings\";s:11:\"description\";s:17:\"Menu module form.\";s:6:\"weight\";i:-2;}s:4:\"path\";a:3:{s:5:\"label\";s:13:\"Path settings\";s:11:\"description\";s:17:\"Path module form.\";s:6:\"weight\";i:30;}}s:12:\"#cache_token\";s:32:\"ea05954e6208c2bed552f97e30d1dad3\";}',1285722273,1285700673,'',1),('form_form-36e2d429219d261b04c3a626f6f9d204','a:40:{s:3:\"#id\";s:9:\"node-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:\"1265202538\";}s:4:\"type\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:4:\"page\";}s:8:\"language\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:0:\"\";}s:7:\"changed\";a:2:{s:5:\"#type\";s:6:\"hidden\";s:14:\"#default_value\";s:10:\"1285684275\";}s:5:\"title\";a:6:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:5:\"Title\";s:9:\"#required\";b:1;s:14:\"#default_value\";s:9:\"resources\";s:10:\"#maxlength\";i:255;s:7:\"#weight\";i:-5;}s:10:\"body_field\";a:7:{s:12:\"#after_build\";a:2:{i:0;s:14:\"node_teaser_js\";i:1;s:26:\"node_teaser_include_verify\";}s:7:\"#prefix\";s:32:\"<div class=\"body-field-wrapper\">\";s:7:\"#suffix\";s:6:\"</div>\";s:9:\"teaser_js\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:5:\"#rows\";i:10;s:7:\"#teaser\";s:9:\"edit-body\";s:16:\"#teaser_checkbox\";s:19:\"edit-teaser-include\";s:9:\"#disabled\";b:1;}s:14:\"teaser_include\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:25:\"Show summary in full view\";s:14:\"#default_value\";b:1;s:7:\"#prefix\";s:29:\"<div class=\"teaser-checkbox\">\";s:7:\"#suffix\";s:6:\"</div>\";}s:4:\"body\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:4:\"Body\";s:14:\"#default_value\";s:1102:\"<h2>Internet Resources</h2>\r\n \r\nFrom the Database of State Incentives for Renewables and Efficiency (DSIRE.org):\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/statesearch2.cfm?State=US&back=fintab&CurrentPageID=7&Search=TableState&EE=1&RE=1\">Federal Incentives for Solar PV</a>\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&State=MD&RE=1&EE=1\">Maryland Incentives for Solar PV</a>\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&State=DC&RE=1&EE=1\">District of Columbia Incentives for Solar PV</a>\r\n\r\n<h2>Industry Organizations</h2>\r\n\r\n<a href=\"http://www.ases.org/\">American Solar Energy Society</a>   Professional Member\r\n\r\n<a href=\"http://www.mdv-seia.org/\">Maryland-DC-Virginia Solar Energy Industries Association</a>   Professional Member\r\n  \r\n<h2>Contact Us</h2>\r\n<p>\r\nTelephone: 240-344-2657\r\n</p>\r\n<p>\r\nEmail:\r\n\r\n          Sales: sales@uspvinc.com\r\n\r\n          Customer Service: support@uspvinc.com\r\n\r\n          Other Inquiries:  info@uspvinc.com\r\n</p>\r\n<p>\r\nPostal Address: 4539 Metropolitan Court, Frederick MD  21704\r\n</p>\";s:5:\"#rows\";i:20;s:9:\"#required\";b:0;}s:6:\"format\";a:9:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:12:\"Input format\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:7:\"#weight\";N;s:17:\"#element_validate\";a:1:{i:0;s:20:\"filter_form_validate\";}i:1;a:7:{s:5:\"#type\";s:5:\"radio\";s:6:\"#title\";s:13:\"Filtered HTML\";s:14:\"#default_value\";s:1:\"2\";s:13:\"#return_value\";s:1:\"1\";s:8:\"#parents\";a:1:{i:0;s:6:\"format\";}s:12:\"#description\";s:306:\"<ul class=\"tips\"><li>Web page addresses and e-mail addresses turn into links automatically.</li><li>Allowed HTML tags: &lt;a&gt; &lt;em&gt; &lt;strong&gt; &lt;cite&gt; &lt;code&gt; &lt;ul&gt; &lt;ol&gt; &lt;li&gt; &lt;dl&gt; &lt;dt&gt; &lt;dd&gt;</li><li>Lines and paragraphs break automatically.</li></ul>\";s:3:\"#id\";s:13:\"edit-format-1\";}i:2;a:7:{s:5:\"#type\";s:5:\"radio\";s:6:\"#title\";s:9:\"Full HTML\";s:14:\"#default_value\";s:1:\"2\";s:13:\"#return_value\";s:1:\"2\";s:8:\"#parents\";a:1:{i:0;s:6:\"format\";}s:12:\"#description\";s:151:\"<ul class=\"tips\"><li>Web page addresses and e-mail addresses turn into links automatically.</li><li>Lines and paragraphs break automatically.</li></ul>\";s:3:\"#id\";s:13:\"edit-format-2\";}i:3;a:1:{s:6:\"#value\";s:90:\"<p><a href=\"/~uspvinc/main2/filter/tips\">More information about formatting options</a></p>\";}}}s:5:\"#node\";O:8:\"stdClass\":33:{s:3:\"nid\";s:1:\"4\";s:4:\"type\";s:4:\"page\";s:8:\"language\";s:0:\"\";s:3:\"uid\";s:1:\"1\";s:6:\"status\";s:1:\"1\";s:7:\"created\";s:10:\"1265202538\";s:7:\"changed\";s:10:\"1285684275\";s:7:\"comment\";s:1:\"0\";s:7:\"promote\";s:1:\"0\";s:8:\"moderate\";s:1:\"0\";s:6:\"sticky\";s:1:\"0\";s:4:\"tnid\";s:1:\"0\";s:9:\"translate\";s:1:\"0\";s:3:\"vid\";s:1:\"4\";s:12:\"revision_uid\";s:1:\"1\";s:5:\"title\";s:9:\"resources\";s:4:\"body\";s:1102:\"<h2>Internet Resources</h2>\r\n \r\nFrom the Database of State Incentives for Renewables and Efficiency (DSIRE.org):\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/statesearch2.cfm?State=US&back=fintab&CurrentPageID=7&Search=TableState&EE=1&RE=1\">Federal Incentives for Solar PV</a>\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&State=MD&RE=1&EE=1\">Maryland Incentives for Solar PV</a>\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&State=DC&RE=1&EE=1\">District of Columbia Incentives for Solar PV</a>\r\n\r\n<h2>Industry Organizations</h2>\r\n\r\n<a href=\"http://www.ases.org/\">American Solar Energy Society</a>   Professional Member\r\n\r\n<a href=\"http://www.mdv-seia.org/\">Maryland-DC-Virginia Solar Energy Industries Association</a>   Professional Member\r\n  \r\n<h2>Contact Us</h2>\r\n<p>\r\nTelephone: 240-344-2657\r\n</p>\r\n<p>\r\nEmail:\r\n\r\n          Sales: sales@uspvinc.com\r\n\r\n          Customer Service: support@uspvinc.com\r\n\r\n          Other Inquiries:  info@uspvinc.com\r\n</p>\r\n<p>\r\nPostal Address: 4539 Metropolitan Court, Frederick MD  21704\r\n</p>\";s:6:\"teaser\";s:569:\"<h2>Internet Resources</h2>\r\n \r\nFrom the Database of State Incentives for Renewables and Efficiency (DSIRE.org):\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/statesearch2.cfm?State=US&back=fintab&CurrentPageID=7&Search=TableState&EE=1&RE=1\">Federal Incentives for Solar PV</a>\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&State=MD&RE=1&EE=1\">Maryland Incentives for Solar PV</a>\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&State=DC&RE=1&EE=1\">District of Columbia Incentives for Solar PV</a>\r\n\r\";s:3:\"log\";N;s:18:\"revision_timestamp\";s:10:\"1285684275\";s:6:\"format\";s:1:\"2\";s:4:\"name\";s:5:\"admin\";s:7:\"picture\";s:0:\"\";s:4:\"data\";s:6:\"a:0:{}\";s:4:\"path\";s:9:\"resources\";s:22:\"last_comment_timestamp\";s:10:\"1265202538\";s:17:\"last_comment_name\";N;s:13:\"comment_count\";s:1:\"0\";s:8:\"taxonomy\";a:0:{}s:4:\"date\";s:25:\"2010-02-03 21:08:58 +0800\";s:8:\"revision\";b:0;s:4:\"menu\";a:48:{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:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:3:\"fit\";s:1:\"2\";s:12:\"number_parts\";s:1:\"2\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:9:\"resources\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:4:\"type\";s:1:\"4\";s:14:\"block_callback\";s:0:\"\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"0\";s:4:\"file\";s:0:\"\";s:9:\"menu_name\";s:14:\"menu-main-menu\";s:4:\"mlid\";s:3:\"284\";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:9:\"resources\";s:7:\"options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:9:\"resources\";}}s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"284\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:4:\"href\";s:6:\"node/4\";s:6:\"access\";b:1;s:17:\"localized_options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:9:\"resources\";}}s:18:\"parent_depth_limit\";i:8;}s:22:\"pathauto_perform_alias\";b:1;}s:20:\"revision_information\";a:7:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:20:\"Revision information\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:7:\"#weight\";i:20;s:8:\"revision\";a:4:{s:7:\"#access\";b:1;s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:19:\"Create new revision\";s:14:\"#default_value\";b:0;}s:3:\"log\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:11:\"Log message\";s:14:\"#default_value\";s:0:\"\";s:5:\"#rows\";i:2;s:12:\"#description\";s:104:\"An explanation of the additions or updates being made to help other authors understand your motivations.\";}}s:6:\"author\";a:8:{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:7:\"#weight\";i:20;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:35:\"Leave blank for <em>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:91:\"Format: <em>2010-02-03 21:08:58 +0800</em>. Leave blank to use the time of form submission.\";s:14:\"#default_value\";s:25:\"2010-02-03 21:08:58 +0800\";}}s:7:\"options\";a:9:{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:7:\"#weight\";i:25;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:\"buttons\";a:3:{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:16:\"node_form_submit\";}}s:7:\"preview\";a:4:{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:6:\"#theme\";a:2:{i:0;s:14:\"page_node_form\";i:1;s:9:\"node_form\";}s:11:\"#parameters\";a:3:{i:0;s:14:\"page_node_form\";i:1;a:3:{s:7:\"storage\";N;s:9:\"submitted\";b:0;s:4:\"post\";a:0:{}}i:2;r:83;}s:9:\"#build_id\";s:37:\"form-36e2d429219d261b04c3a626f6f9d204\";s:5:\"#type\";s:4:\"form\";s:11:\"#programmed\";b:0;s:13:\"form_build_id\";a:4:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:37:\"form-36e2d429219d261b04c3a626f6f9d204\";s:3:\"#id\";s:37:\"form-36e2d429219d261b04c3a626f6f9d204\";s:5:\"#name\";s:13:\"form_build_id\";}s:6:\"#token\";s:14:\"page_node_form\";s:10:\"form_token\";a:3:{s:3:\"#id\";s:30:\"edit-page-node-form-form-token\";s:5:\"#type\";s:5:\"token\";s:14:\"#default_value\";s:32:\"69ee9cfa6b6366390575effcb3429c15\";}s:7:\"form_id\";a:3:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:14:\"page_node_form\";s:3:\"#id\";s:19:\"edit-page-node-form\";}s:12:\"#description\";N;s:11:\"#attributes\";a:0:{}s:9:\"#required\";b:0;s:5:\"#tree\";b:0;s:8:\"#parents\";a:0:{}s:7:\"#method\";s:4:\"post\";s:7:\"#action\";s:27:\"/~uspvinc/main2/node/4/edit\";s:16:\"comment_settings\";a:7:{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:7:\"#weight\";i:30;s:7:\"comment\";a:4:{s:5:\"#type\";s:6:\"radios\";s:8:\"#parents\";a:1:{i:0;s:7:\"comment\";}s:14:\"#default_value\";s:1:\"0\";s:8:\"#options\";a:3:{i:0;s:8:\"Disabled\";i:1;s:9:\"Read only\";i:2;s:10:\"Read/Write\";}}}s:6:\"#cache\";b:1;s:4:\"menu\";a:21:{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:5:\"#tree\";b:1;s:7:\"#weight\";i:-2;s:11:\"#attributes\";a:1:{s:5:\"class\";s:14:\"menu-item-form\";}s:6:\"delete\";a:2:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:22:\"Delete this menu item.\";}s:4:\"mlid\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:3:\"284\";}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\";s:1:\"1\";}s:7:\"options\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:9:\"resources\";}}}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:5:\"#item\";a:48:{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:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:3:\"fit\";s:1:\"2\";s:12:\"number_parts\";s:1:\"2\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:9:\"resources\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:4:\"type\";s:1:\"4\";s:14:\"block_callback\";s:0:\"\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"0\";s:4:\"file\";s:0:\"\";s:9:\"menu_name\";s:14:\"menu-main-menu\";s:4:\"mlid\";s:3:\"284\";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:9:\"resources\";s:7:\"options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:9:\"resources\";}}s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"284\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:4:\"href\";s:6:\"node/4\";s:6:\"access\";b:1;s:17:\"localized_options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:9:\"resources\";}}s:18:\"parent_depth_limit\";i:8;}s:10:\"link_title\";a:5:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:15:\"Menu link title\";s:14:\"#default_value\";s:9:\"resources\";s:12:\"#description\";s:133:\"The link text corresponding to this item that should appear in the menu. Leave blank if you do not wish to add this post to the menu.\";s:9:\"#required\";b:0;}s:6:\"parent\";a:6:{s:5:\"#type\";s:6:\"select\";s:6:\"#title\";s:11:\"Parent item\";s:14:\"#default_value\";s:16:\"menu-main-menu:0\";s:8:\"#options\";a:96:{s:16:\"menu-main-menu:0\";s:11:\"<Main Menu>\";s:18:\"menu-main-menu:283\";s:8:\"-- about\";s:18:\"menu-main-menu:285\";s:11:\"-- services\";s:18:\"menu-main-menu:286\";s:17:\"-- special offers\";s:12:\"navigation:0\";s:12:\"<Navigation>\";s:12:\"navigation:9\";s:26:\"-- Compose tips (disabled)\";s:14:\"navigation:461\";s:29:\"-- Image galleries (disabled)\";s:13:\"navigation:21\";s:13:\"-- My account\";s:14:\"navigation:114\";s:20:\"-- Search (disabled)\";s:14:\"navigation:244\";s:22:\"-- Site map (disabled)\";s:13:\"navigation:11\";s:17:\"-- Create content\";s:14:\"navigation:476\";s:11:\"---- Banner\";s:14:\"navigation:441\";s:10:\"---- Image\";s:14:\"navigation:289\";s:21:\"---- Newsletter issue\";s:14:\"navigation:106\";s:9:\"---- Page\";s:14:\"navigation:388\";s:10:\"---- Panel\";s:14:\"navigation:107\";s:10:\"---- Story\";s:12:\"navigation:2\";s:13:\"-- Administer\";s:13:\"navigation:10\";s:23:\"---- Content management\";s:13:\"navigation:27\";s:15:\"------ Comments\";s:13:\"navigation:28\";s:14:\"------ Content\";s:13:\"navigation:29\";s:20:\"------ Content types\";s:14:\"navigation:462\";s:22:\"------ Image galleries\";s:14:\"navigation:463\";s:19:\"------ Image import\";s:14:\"navigation:538\";s:18:\"------ Newsletters\";s:14:\"navigation:546\";s:20:\"-------- Sent issues\";s:14:\"navigation:541\";s:21:\"-------- Draft issues\";s:14:\"navigation:544\";s:20:\"-------- Newsletters\";s:14:\"navigation:548\";s:22:\"-------- Subscriptions\";s:13:\"navigation:42\";s:20:\"------ Post settings\";s:13:\"navigation:43\";s:21:\"------ RSS publishing\";s:13:\"navigation:94\";s:15:\"------ Taxonomy\";s:13:\"navigation:17\";s:18:\"---- Site building\";s:13:\"navigation:25\";s:13:\"------ Blocks\";s:14:\"navigation:424\";s:20:\"------ Bulk Exporter\";s:13:\"navigation:38\";s:12:\"------ Menus\";s:14:\"navigation:282\";s:18:\"-------- Main Menu\";s:13:\"navigation:89\";s:19:\"-------- Navigation\";s:13:\"navigation:90\";s:22:\"-------- Primary links\";s:14:\"navigation:495\";s:19:\"-------- Right Menu\";s:13:\"navigation:91\";s:24:\"-------- Secondary links\";s:14:\"navigation:387\";s:18:\"------ Mini panels\";s:13:\"navigation:39\";s:14:\"------ Modules\";s:14:\"navigation:412\";s:12:\"------ Pages\";s:14:\"navigation:360\";s:13:\"------ Panels\";s:13:\"navigation:49\";s:13:\"------ Themes\";s:14:\"navigation:335\";s:15:\"------ Triggers\";s:14:\"navigation:501\";s:18:\"------ URL aliases\";s:14:\"navigation:257\";s:12:\"------ Views\";s:13:\"navigation:18\";s:23:\"---- Site configuration\";s:13:\"navigation:23\";s:14:\"------ Actions\";s:14:\"navigation:119\";s:26:\"------ Administration menu\";s:13:\"navigation:24\";s:27:\"------ Administration theme\";s:13:\"navigation:26\";s:17:\"------ Clean URLs\";s:13:\"navigation:30\";s:20:\"------ Date and time\";s:13:\"navigation:33\";s:22:\"------ Error reporting\";s:14:\"navigation:595\";s:16:\"------ FCKeditor\";s:13:\"navigation:34\";s:18:\"------ File system\";s:13:\"navigation:35\";s:20:\"------ Image toolkit\";s:14:\"navigation:442\";s:13:\"------ Images\";s:13:\"navigation:36\";s:20:\"------ Input formats\";s:13:\"navigation:37\";s:25:\"------ Logging and alerts\";s:14:\"navigation:100\";s:25:\"-------- Database logging\";s:14:\"navigation:245\";s:17:\"------ Nice Menus\";s:13:\"navigation:40\";s:18:\"------ Performance\";s:14:\"navigation:120\";s:22:\"------ Search settings\";s:14:\"navigation:539\";s:17:\"------ Simplenews\";s:14:\"navigation:542\";s:16:\"-------- General\";s:14:\"navigation:543\";s:19:\"-------- Newsletter\";s:14:\"navigation:547\";s:21:\"-------- Subscription\";s:14:\"navigation:545\";s:18:\"-------- Send mail\";s:13:\"navigation:46\";s:23:\"------ Site information\";s:13:\"navigation:47\";s:23:\"------ Site maintenance\";s:14:\"navigation:246\";s:15:\"------ Site map\";s:13:\"navigation:20\";s:20:\"---- User management\";s:13:\"navigation:22\";s:19:\"------ Access rules\";s:13:\"navigation:41\";s:18:\"------ Permissions\";s:13:\"navigation:45\";s:12:\"------ Roles\";s:13:\"navigation:50\";s:20:\"------ User settings\";s:13:\"navigation:51\";s:12:\"------ Users\";s:13:\"navigation:16\";s:12:\"---- Reports\";s:13:\"navigation:93\";s:25:\"------ Recent log entries\";s:13:\"navigation:96\";s:33:\"------ Top \'access denied\' errors\";s:13:\"navigation:97\";s:34:\"------ Top \'page not found\' errors\";s:14:\"navigation:121\";s:25:\"------ Top search phrases\";s:14:\"navigation:105\";s:24:\"------ Available updates\";s:13:\"navigation:48\";s:20:\"------ Status report\";s:13:\"navigation:15\";s:9:\"---- Help\";s:12:\"navigation:4\";s:10:\"-- Log out\";s:15:\"primary-links:0\";s:15:\"<Primary links>\";s:17:\"menu-right-menu:0\";s:12:\"<Right Menu>\";s:19:\"menu-right-menu:496\";s:28:\"-- Financial Calculator Tool\";s:19:\"menu-right-menu:497\";s:21:\"-- News Story Library\";s:19:\"menu-right-menu:498\";s:14:\"-- Latest News\";s:19:\"menu-right-menu:499\";s:25:\"-- SREC Management Portal\";s:17:\"secondary-links:0\";s:17:\"<Secondary links>\";}s:12:\"#description\";s:156:\"The maximum depth for an item and all its children is fixed at 9. Some menu items may not be available as parents if selecting them would exceed this limit.\";s:11:\"#attributes\";a:1:{s:5:\"class\";s:17:\"menu-title-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:1:\"0\";s:12:\"#description\";s:107:\"Optional. In the menu, the heavier items will sink and the lighter items will be positioned nearer the top.\";}}s:7:\"#submit\";a:1:{i:0;s:21:\"menu_node_form_submit\";}s:4:\"path\";a:10:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:17:\"URL path settings\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:0;s:7:\"#access\";b:1;s:7:\"#weight\";i:30;s:4:\"path\";a:6:{s:5:\"#type\";s:9:\"textfield\";s:14:\"#default_value\";s:9:\"resources\";s:10:\"#maxlength\";i:128;s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:12:\"#description\";s:207:\"Optionally specify an alternative URL by which this node 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\";s:1:\"4\";}s:22:\"pathauto_perform_alias\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:15:\"Automatic alias\";s:14:\"#default_value\";b:1;s:12:\"#description\";s:238:\"An alias will be generated for you. If you wish to create your own alias below, uncheck this option. To control the format of the generated aliases, see the <a href=\"/~uspvinc/main2/admin/build/path/pathauto\">automated alias settings</a>.\";s:7:\"#weight\";i:-1;}s:9:\"old_alias\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:9:\"resources\";}}s:11:\"#pre_render\";a:1:{i:0;s:27:\"content_alter_extra_weights\";}s:21:\"#content_extra_fields\";a:6:{s:5:\"title\";a:3:{s:5:\"label\";s:5:\"Title\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:-5;}s:10:\"body_field\";a:4:{s:5:\"label\";s:4:\"Body\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:0;s:4:\"view\";s:4:\"body\";}s:20:\"revision_information\";a:3:{s:5:\"label\";s:20:\"Revision information\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:20;}s:16:\"comment_settings\";a:3:{s:5:\"label\";s:16:\"Comment settings\";s:11:\"description\";s:20:\"Comment module form.\";s:6:\"weight\";i:30;}s:4:\"menu\";a:3:{s:5:\"label\";s:13:\"Menu settings\";s:11:\"description\";s:17:\"Menu module form.\";s:6:\"weight\";i:-2;}s:4:\"path\";a:3:{s:5:\"label\";s:13:\"Path settings\";s:11:\"description\";s:17:\"Path module form.\";s:6:\"weight\";i:30;}}s:12:\"#cache_token\";s:32:\"ea05954e6208c2bed552f97e30d1dad3\";}',1285722349,1285700749,'',1),('form_form-0e5b01da6e82ebc65bac498767eed83b','a:41:{s:7:\"#prefix\";s:586:\"<div class=\"preview\">  <div class=\"node\">\n        <h2 class=\"title\"><a href=\"/~uspvinc/main2/renewable-energy-credit-rec-management-program-pv-system-owners\">Renewable Energy Credit (REC) Management Program for PV System Owners</a></h2>    <div class=\"submitted\"></div>\n    <div class=\"taxonomy\"></div>\n    <div class=\"content\"><p>Sign-up for USPV\'s REC Management Program today.  No up-front or out-of-pocket costs.  Don\'t miss out on this opportunity to participate in the Renewable Energy Credit markets and earn hundreds or even thousands of dollars!</p>\n</div>\n      </div>\n</div>\n\";s:3:\"#id\";s:9:\"node-form\";s:3:\"nid\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:2:\"11\";}s:3:\"vid\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:2:\"11\";}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:1285703167;}s:4:\"type\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:4:\"page\";}s:8:\"language\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:0:\"\";}s:7:\"changed\";a:2:{s:5:\"#type\";s:6:\"hidden\";s:14:\"#default_value\";s:10:\"1285703167\";}s:5:\"title\";a:6:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:5:\"Title\";s:9:\"#required\";b:1;s:14:\"#default_value\";s:69:\"Renewable Energy Credit (REC) Management Program for PV System Owners\";s:10:\"#maxlength\";i:255;s:7:\"#weight\";i:-5;}s:10:\"body_field\";a:7:{s:12:\"#after_build\";a:2:{i:0;s:14:\"node_teaser_js\";i:1;s:26:\"node_teaser_include_verify\";}s:7:\"#prefix\";s:32:\"<div class=\"body-field-wrapper\">\";s:7:\"#suffix\";s:6:\"</div>\";s:9:\"teaser_js\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:5:\"#rows\";i:10;s:7:\"#teaser\";s:9:\"edit-body\";s:16:\"#teaser_checkbox\";s:19:\"edit-teaser-include\";s:9:\"#disabled\";b:1;}s:14:\"teaser_include\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:25:\"Show summary in full view\";s:14:\"#default_value\";b:1;s:7:\"#prefix\";s:29:\"<div class=\"teaser-checkbox\">\";s:7:\"#suffix\";s:6:\"</div>\";}s:4:\"body\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:4:\"Body\";s:14:\"#default_value\";s:225:\"Sign-up for USPV\'s REC Management Program today.  No up-front or out-of-pocket costs.  Don\'t miss out on this opportunity to participate in the Renewable Energy Credit markets and earn hundreds or even thousands of dollars!  \";s:5:\"#rows\";i:20;s:9:\"#required\";b:0;}s:6:\"format\";a:9:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:12:\"Input format\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:7:\"#weight\";N;s:17:\"#element_validate\";a:1:{i:0;s:20:\"filter_form_validate\";}i:1;a:7:{s:5:\"#type\";s:5:\"radio\";s:6:\"#title\";s:13:\"Filtered HTML\";s:14:\"#default_value\";s:1:\"1\";s:13:\"#return_value\";s:1:\"1\";s:8:\"#parents\";a:1:{i:0;s:6:\"format\";}s:12:\"#description\";s:306:\"<ul class=\"tips\"><li>Web page addresses and e-mail addresses turn into links automatically.</li><li>Allowed HTML tags: &lt;a&gt; &lt;em&gt; &lt;strong&gt; &lt;cite&gt; &lt;code&gt; &lt;ul&gt; &lt;ol&gt; &lt;li&gt; &lt;dl&gt; &lt;dt&gt; &lt;dd&gt;</li><li>Lines and paragraphs break automatically.</li></ul>\";s:3:\"#id\";s:13:\"edit-format-1\";}i:2;a:7:{s:5:\"#type\";s:5:\"radio\";s:6:\"#title\";s:9:\"Full HTML\";s:14:\"#default_value\";s:1:\"1\";s:13:\"#return_value\";s:1:\"2\";s:8:\"#parents\";a:1:{i:0;s:6:\"format\";}s:12:\"#description\";s:151:\"<ul class=\"tips\"><li>Web page addresses and e-mail addresses turn into links automatically.</li><li>Lines and paragraphs break automatically.</li></ul>\";s:3:\"#id\";s:13:\"edit-format-2\";}i:3;a:1:{s:6:\"#value\";s:90:\"<p><a href=\"/~uspvinc/main2/filter/tips\">More information about formatting options</a></p>\";}}}s:5:\"#node\";O:8:\"stdClass\":46:{s:3:\"nid\";s:2:\"11\";s:3:\"vid\";s:2:\"11\";s:3:\"uid\";s:1:\"1\";s:7:\"created\";i:1285703167;s:4:\"type\";s:4:\"page\";s:8:\"language\";s:0:\"\";s:7:\"changed\";s:10:\"1285703167\";s:5:\"title\";s:69:\"Renewable Energy Credit (REC) Management Program for PV System Owners\";s:9:\"teaser_js\";s:0:\"\";s:14:\"teaser_include\";i:1;s:4:\"body\";s:225:\"Sign-up for USPV\'s REC Management Program today.  No up-front or out-of-pocket costs.  Don\'t miss out on this opportunity to participate in the Renewable Energy Credit markets and earn hundreds or even thousands of dollars!  \";s:6:\"format\";s:1:\"1\";s:8:\"revision\";i:0;s:3:\"log\";s:0:\"\";s:4:\"name\";s:5:\"admin\";s:4:\"date\";s:25:\"2010-09-29 03:46:07 +0800\";s:6:\"status\";i:1;s:7:\"promote\";i:0;s:6:\"sticky\";i:0;s:6:\"submit\";s:4:\"Save\";s:2:\"op\";s:7:\"Preview\";s:7:\"preview\";s:7:\"Preview\";s:6:\"delete\";s:6:\"Delete\";s:13:\"form_build_id\";s:37:\"form-4bb7da8dc13e4a0855e444be2acc1c83\";s:10:\"form_token\";s:32:\"69ee9cfa6b6366390575effcb3429c15\";s:7:\"form_id\";s:14:\"page_node_form\";s:7:\"comment\";s:1:\"0\";s:4:\"menu\";a:13:{s:4:\"mlid\";i:0;s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";i:0;s:12:\"has_children\";i:0;s:10:\"customized\";i:0;s:7:\"options\";a:0:{}s:8:\"expanded\";i:0;s:18:\"parent_depth_limit\";i:8;s:10:\"link_title\";s:0:\"\";s:6:\"parent\";s:15:\"primary-links:0\";s:6:\"weight\";s:1:\"0\";s:4:\"plid\";s:1:\"0\";s:9:\"menu_name\";s:13:\"primary-links\";}s:4:\"path\";s:63:\"renewable-energy-credit-rec-management-program-pv-system-owners\";s:3:\"pid\";s:2:\"11\";s:22:\"pathauto_perform_alias\";i:1;s:9:\"old_alias\";s:63:\"renewable-energy-credit-rec-management-program-pv-system-owners\";s:6:\"teaser\";s:225:\"Sign-up for USPV\'s REC Management Program today.  No up-front or out-of-pocket costs.  Don\'t miss out on this opportunity to participate in the Renewable Energy Credit markets and earn hundreds or even thousands of dollars!  \";s:9:\"validated\";b:1;s:8:\"moderate\";s:1:\"0\";s:4:\"tnid\";s:1:\"0\";s:9:\"translate\";s:1:\"0\";s:12:\"revision_uid\";s:1:\"1\";s:18:\"revision_timestamp\";s:10:\"1285703167\";s:7:\"picture\";s:0:\"\";s:4:\"data\";s:6:\"a:0:{}\";s:22:\"last_comment_timestamp\";s:10:\"1285703167\";s:17:\"last_comment_name\";N;s:13:\"comment_count\";s:1:\"0\";s:8:\"taxonomy\";a:0:{}s:10:\"build_mode\";i:1;}s:20:\"revision_information\";a:7:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:20:\"Revision information\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:7:\"#weight\";i:20;s:8:\"revision\";a:4:{s:7:\"#access\";b:1;s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:19:\"Create new revision\";s:14:\"#default_value\";i:0;}s:3:\"log\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:11:\"Log message\";s:14:\"#default_value\";s:0:\"\";s:5:\"#rows\";i:2;s:12:\"#description\";s:104:\"An explanation of the additions or updates being made to help other authors understand your motivations.\";}}s:6:\"author\";a:8:{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:7:\"#weight\";i:20;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:35:\"Leave blank for <em>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:91:\"Format: <em>2010-09-29 03:46:07 +0800</em>. Leave blank to use the time of form submission.\";s:14:\"#default_value\";s:25:\"2010-09-29 03:46:07 +0800\";}}s:7:\"options\";a:9:{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:7:\"#weight\";i:25;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: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\";i:0;}}s:7:\"buttons\";a:3:{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:16:\"node_form_submit\";}}s:7:\"preview\";a:4:{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:6:\"#theme\";a:2:{i:0;s:14:\"page_node_form\";i:1;s:9:\"node_form\";}s:11:\"#parameters\";a:3:{i:0;s:14:\"page_node_form\";i:1;a:8:{s:7:\"storage\";N;s:9:\"submitted\";b:1;s:6:\"values\";a:32:{s:3:\"nid\";s:2:\"11\";s:3:\"vid\";s:2:\"11\";s:3:\"uid\";s:1:\"1\";s:7:\"created\";s:10:\"1285703167\";s:4:\"type\";s:4:\"page\";s:8:\"language\";s:0:\"\";s:7:\"changed\";s:10:\"1285703167\";s:5:\"title\";s:69:\"Renewable Energy Credit (REC) Management Program for PV System Owners\";s:9:\"teaser_js\";s:0:\"\";s:14:\"teaser_include\";i:1;s:4:\"body\";s:225:\"Sign-up for USPV\'s REC Management Program today.  No up-front or out-of-pocket costs.  Don\'t miss out on this opportunity to participate in the Renewable Energy Credit markets and earn hundreds or even thousands of dollars!  \";s:6:\"format\";s:1:\"1\";s:8:\"revision\";i:0;s:3:\"log\";s:0:\"\";s:4:\"name\";s:5:\"admin\";s:4:\"date\";s:25:\"2010-09-29 03:46:07 +0800\";s:6:\"status\";i:1;s:7:\"promote\";i:0;s:6:\"sticky\";i:0;s:6:\"submit\";s:4:\"Save\";s:2:\"op\";s:7:\"Preview\";s:7:\"preview\";s:7:\"Preview\";s:6:\"delete\";s:6:\"Delete\";s:13:\"form_build_id\";s:37:\"form-4bb7da8dc13e4a0855e444be2acc1c83\";s:10:\"form_token\";s:32:\"69ee9cfa6b6366390575effcb3429c15\";s:7:\"form_id\";s:14:\"page_node_form\";s:7:\"comment\";s:1:\"0\";s:4:\"menu\";a:13:{s:4:\"mlid\";i:0;s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";i:0;s:12:\"has_children\";i:0;s:10:\"customized\";i:0;s:7:\"options\";a:0:{}s:8:\"expanded\";i:0;s:18:\"parent_depth_limit\";i:8;s:10:\"link_title\";s:0:\"\";s:6:\"parent\";s:15:\"primary-links:0\";s:6:\"weight\";s:1:\"0\";s:4:\"plid\";s:1:\"0\";s:9:\"menu_name\";s:13:\"primary-links\";}s:4:\"path\";s:0:\"\";s:3:\"pid\";s:2:\"11\";s:22:\"pathauto_perform_alias\";i:1;s:9:\"old_alias\";s:63:\"renewable-energy-credit-rec-management-program-pv-system-owners\";}s:14:\"clicked_button\";a:19:{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:5:\"#post\";a:16:{s:5:\"title\";s:69:\"Renewable Energy Credit (REC) Management Program for PV System Owners\";s:4:\"menu\";a:3:{s:10:\"link_title\";s:0:\"\";s:6:\"parent\";s:15:\"primary-links:0\";s:6:\"weight\";s:1:\"0\";}s:14:\"teaser_include\";s:1:\"1\";s:4:\"body\";s:225:\"Sign-up for USPV\'s REC Management Program today.  No up-front or out-of-pocket costs.  Don\'t miss out on this opportunity to participate in the Renewable Energy Credit markets and earn hundreds or even thousands of dollars!  \";s:6:\"format\";s:1:\"1\";s:7:\"changed\";s:10:\"1285703167\";s:13:\"form_build_id\";s:37:\"form-4bb7da8dc13e4a0855e444be2acc1c83\";s:10:\"form_token\";s:32:\"69ee9cfa6b6366390575effcb3429c15\";s:7:\"form_id\";s:14:\"page_node_form\";s:3:\"log\";s:0:\"\";s:7:\"comment\";s:1:\"0\";s:22:\"pathauto_perform_alias\";s:1:\"1\";s:4:\"name\";s:5:\"admin\";s:4:\"date\";s:25:\"2010-09-29 03:46:07 +0800\";s:6:\"status\";s:1:\"1\";s:2:\"op\";s:7:\"Preview\";}s:11:\"#programmed\";b:0;s:5:\"#tree\";b:0;s:8:\"#parents\";a:1:{i:0;s:7:\"preview\";}s:14:\"#array_parents\";a:2:{i:0;s:7:\"buttons\";i:1;s:7:\"preview\";}s:10:\"#processed\";b:0;s:12:\"#description\";N;s:11:\"#attributes\";a:0:{}s:9:\"#required\";b:0;s:6:\"#input\";b:1;s:5:\"#name\";s:2:\"op\";s:12:\"#button_type\";s:6:\"submit\";s:25:\"#executes_submit_callback\";b:1;s:8:\"#process\";a:1:{i:0;s:16:\"form_expand_ahah\";}s:3:\"#id\";s:12:\"edit-preview\";}s:8:\"redirect\";N;s:4:\"node\";a:34:{s:3:\"nid\";s:2:\"11\";s:3:\"vid\";s:2:\"11\";s:3:\"uid\";s:1:\"1\";s:7:\"created\";i:1285703167;s:4:\"type\";s:4:\"page\";s:8:\"language\";s:0:\"\";s:7:\"changed\";s:10:\"1285703167\";s:5:\"title\";s:69:\"Renewable Energy Credit (REC) Management Program for PV System Owners\";s:9:\"teaser_js\";s:0:\"\";s:14:\"teaser_include\";i:1;s:4:\"body\";s:225:\"Sign-up for USPV\'s REC Management Program today.  No up-front or out-of-pocket costs.  Don\'t miss out on this opportunity to participate in the Renewable Energy Credit markets and earn hundreds or even thousands of dollars!  \";s:6:\"format\";s:1:\"1\";s:8:\"revision\";i:0;s:3:\"log\";s:0:\"\";s:4:\"name\";s:5:\"admin\";s:4:\"date\";s:25:\"2010-09-29 03:46:07 +0800\";s:6:\"status\";i:1;s:7:\"promote\";i:0;s:6:\"sticky\";i:0;s:6:\"submit\";s:4:\"Save\";s:2:\"op\";s:7:\"Preview\";s:7:\"preview\";s:7:\"Preview\";s:6:\"delete\";s:6:\"Delete\";s:13:\"form_build_id\";s:37:\"form-4bb7da8dc13e4a0855e444be2acc1c83\";s:10:\"form_token\";s:32:\"69ee9cfa6b6366390575effcb3429c15\";s:7:\"form_id\";s:14:\"page_node_form\";s:7:\"comment\";s:1:\"0\";s:4:\"menu\";a:13:{s:4:\"mlid\";i:0;s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";i:0;s:12:\"has_children\";i:0;s:10:\"customized\";i:0;s:7:\"options\";a:0:{}s:8:\"expanded\";i:0;s:18:\"parent_depth_limit\";i:8;s:10:\"link_title\";s:0:\"\";s:6:\"parent\";s:15:\"primary-links:0\";s:6:\"weight\";s:1:\"0\";s:4:\"plid\";s:1:\"0\";s:9:\"menu_name\";s:13:\"primary-links\";}s:4:\"path\";s:0:\"\";s:3:\"pid\";s:2:\"11\";s:22:\"pathauto_perform_alias\";i:1;s:9:\"old_alias\";s:63:\"renewable-energy-credit-rec-management-program-pv-system-owners\";s:6:\"teaser\";s:225:\"Sign-up for USPV\'s REC Management Program today.  No up-front or out-of-pocket costs.  Don\'t miss out on this opportunity to participate in the Renewable Energy Credit markets and earn hundreds or even thousands of dollars!  \";s:9:\"validated\";b:1;}s:7:\"rebuild\";b:1;s:12:\"node_preview\";s:586:\"<div class=\"preview\">  <div class=\"node\">\n        <h2 class=\"title\"><a href=\"/~uspvinc/main2/renewable-energy-credit-rec-management-program-pv-system-owners\">Renewable Energy Credit (REC) Management Program for PV System Owners</a></h2>    <div class=\"submitted\"></div>\n    <div class=\"taxonomy\"></div>\n    <div class=\"content\"><p>Sign-up for USPV\'s REC Management Program today.  No up-front or out-of-pocket costs.  Don\'t miss out on this opportunity to participate in the Renewable Energy Credit markets and earn hundreds or even thousands of dollars!</p>\n</div>\n      </div>\n</div>\n\";}i:2;O:8:\"stdClass\":29:{s:3:\"nid\";s:2:\"11\";s:4:\"type\";s:4:\"page\";s:8:\"language\";s:0:\"\";s:3:\"uid\";s:1:\"1\";s:6:\"status\";s:1:\"1\";s:7:\"created\";s:10:\"1285703167\";s:7:\"changed\";s:10:\"1285703167\";s:7:\"comment\";s:1:\"0\";s:7:\"promote\";s:1:\"0\";s:8:\"moderate\";s:1:\"0\";s:6:\"sticky\";s:1:\"0\";s:4:\"tnid\";s:1:\"0\";s:9:\"translate\";s:1:\"0\";s:3:\"vid\";s:2:\"11\";s:12:\"revision_uid\";s:1:\"1\";s:5:\"title\";s:69:\"Renewable Energy Credit (REC) Management Program for PV System Owners\";s:4:\"body\";s:225:\"Sign-up for USPV\'s REC Management Program today.  No up-front or out-of-pocket costs.  Don\'t miss out on this opportunity to participate in the Renewable Energy Credit markets and earn hundreds or even thousands of dollars!  \";s:6:\"teaser\";s:225:\"Sign-up for USPV\'s REC Management Program today.  No up-front or out-of-pocket costs.  Don\'t miss out on this opportunity to participate in the Renewable Energy Credit markets and earn hundreds or even thousands of dollars!  \";s:3:\"log\";s:0:\"\";s:18:\"revision_timestamp\";s:10:\"1285703167\";s:6:\"format\";s:1:\"1\";s:4:\"name\";s:5:\"admin\";s:7:\"picture\";s:0:\"\";s:4:\"data\";s:6:\"a:0:{}\";s:4:\"path\";s:63:\"renewable-energy-credit-rec-management-program-pv-system-owners\";s:22:\"last_comment_timestamp\";s:10:\"1285703167\";s:17:\"last_comment_name\";N;s:13:\"comment_count\";s:1:\"0\";s:8:\"taxonomy\";a:0:{}}}s:9:\"#build_id\";s:37:\"form-0e5b01da6e82ebc65bac498767eed83b\";s:5:\"#type\";s:4:\"form\";s:11:\"#programmed\";b:0;s:13:\"form_build_id\";a:4:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:37:\"form-0e5b01da6e82ebc65bac498767eed83b\";s:3:\"#id\";s:37:\"form-0e5b01da6e82ebc65bac498767eed83b\";s:5:\"#name\";s:13:\"form_build_id\";}s:6:\"#token\";s:14:\"page_node_form\";s:10:\"form_token\";a:3:{s:3:\"#id\";s:30:\"edit-page-node-form-form-token\";s:5:\"#type\";s:5:\"token\";s:14:\"#default_value\";s:32:\"69ee9cfa6b6366390575effcb3429c15\";}s:7:\"form_id\";a:3:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:14:\"page_node_form\";s:3:\"#id\";s:19:\"edit-page-node-form\";}s:12:\"#description\";N;s:11:\"#attributes\";a:0:{}s:9:\"#required\";b:0;s:5:\"#tree\";b:0;s:8:\"#parents\";a:0:{}s:7:\"#method\";s:4:\"post\";s:7:\"#action\";s:74:\"/~uspvinc/main2/node/11/edit?destination=admin%2Fcontent%2Fnode%2Foverview\";s:16:\"comment_settings\";a:7:{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:7:\"#weight\";i:30;s:7:\"comment\";a:4:{s:5:\"#type\";s:6:\"radios\";s:8:\"#parents\";a:1:{i:0;s:7:\"comment\";}s:14:\"#default_value\";s:1:\"0\";s:8:\"#options\";a:3:{i:0;s:8:\"Disabled\";i:1;s:9:\"Read only\";i:2;s:10:\"Read/Write\";}}}s:6:\"#cache\";b:1;s:4:\"menu\";a:20:{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:5:\"#tree\";b:1;s:7:\"#weight\";i:-2;s:11:\"#attributes\";a:1:{s:5:\"class\";s:14:\"menu-item-form\";}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:0;}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:5:\"#item\";a:13:{s:4:\"mlid\";i:0;s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";i:0;s:12:\"has_children\";i:0;s:10:\"customized\";i:0;s:7:\"options\";a:0:{}s:8:\"expanded\";i:0;s:18:\"parent_depth_limit\";i:8;s:10:\"link_title\";s:0:\"\";s:6:\"parent\";s:15:\"primary-links:0\";s:6:\"weight\";s:1:\"0\";s:4:\"plid\";s:1:\"0\";s:9:\"menu_name\";s:13:\"primary-links\";}s:10:\"link_title\";a:5:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:15:\"Menu link title\";s:14:\"#default_value\";s:0:\"\";s:12:\"#description\";s:133:\"The link text corresponding to this item that should appear in the menu. Leave blank if you do not wish to add this post to the menu.\";s:9:\"#required\";b:0;}s:6:\"parent\";a:6:{s:5:\"#type\";s:6:\"select\";s:6:\"#title\";s:11:\"Parent item\";s:14:\"#default_value\";s:15:\"primary-links:0\";s:8:\"#options\";a:96:{s:16:\"menu-main-menu:0\";s:11:\"<Main Menu>\";s:18:\"menu-main-menu:283\";s:8:\"-- about\";s:18:\"menu-main-menu:284\";s:12:\"-- resources\";s:18:\"menu-main-menu:285\";s:11:\"-- services\";s:18:\"menu-main-menu:286\";s:17:\"-- special offers\";s:12:\"navigation:0\";s:12:\"<Navigation>\";s:12:\"navigation:9\";s:26:\"-- Compose tips (disabled)\";s:14:\"navigation:461\";s:29:\"-- Image galleries (disabled)\";s:13:\"navigation:21\";s:13:\"-- My account\";s:14:\"navigation:114\";s:20:\"-- Search (disabled)\";s:14:\"navigation:244\";s:22:\"-- Site map (disabled)\";s:13:\"navigation:11\";s:17:\"-- Create content\";s:14:\"navigation:476\";s:11:\"---- Banner\";s:14:\"navigation:441\";s:10:\"---- Image\";s:14:\"navigation:289\";s:21:\"---- Newsletter issue\";s:14:\"navigation:106\";s:9:\"---- Page\";s:14:\"navigation:388\";s:10:\"---- Panel\";s:14:\"navigation:107\";s:10:\"---- Story\";s:12:\"navigation:2\";s:13:\"-- Administer\";s:13:\"navigation:10\";s:23:\"---- Content management\";s:13:\"navigation:27\";s:15:\"------ Comments\";s:13:\"navigation:28\";s:14:\"------ Content\";s:13:\"navigation:29\";s:20:\"------ Content types\";s:14:\"navigation:462\";s:22:\"------ Image galleries\";s:14:\"navigation:463\";s:19:\"------ Image import\";s:14:\"navigation:538\";s:18:\"------ Newsletters\";s:14:\"navigation:546\";s:20:\"-------- Sent issues\";s:14:\"navigation:541\";s:21:\"-------- Draft issues\";s:14:\"navigation:544\";s:20:\"-------- Newsletters\";s:14:\"navigation:548\";s:22:\"-------- Subscriptions\";s:13:\"navigation:42\";s:20:\"------ Post settings\";s:13:\"navigation:43\";s:21:\"------ RSS publishing\";s:13:\"navigation:94\";s:15:\"------ Taxonomy\";s:13:\"navigation:17\";s:18:\"---- Site building\";s:13:\"navigation:25\";s:13:\"------ Blocks\";s:14:\"navigation:424\";s:20:\"------ Bulk Exporter\";s:13:\"navigation:38\";s:12:\"------ Menus\";s:14:\"navigation:282\";s:18:\"-------- Main Menu\";s:13:\"navigation:89\";s:19:\"-------- Navigation\";s:13:\"navigation:90\";s:22:\"-------- Primary links\";s:14:\"navigation:495\";s:19:\"-------- Right Menu\";s:13:\"navigation:91\";s:24:\"-------- Secondary links\";s:14:\"navigation:387\";s:18:\"------ Mini panels\";s:13:\"navigation:39\";s:14:\"------ Modules\";s:14:\"navigation:412\";s:12:\"------ Pages\";s:14:\"navigation:360\";s:13:\"------ Panels\";s:13:\"navigation:49\";s:13:\"------ Themes\";s:14:\"navigation:335\";s:15:\"------ Triggers\";s:14:\"navigation:501\";s:18:\"------ URL aliases\";s:14:\"navigation:257\";s:12:\"------ Views\";s:13:\"navigation:18\";s:23:\"---- Site configuration\";s:13:\"navigation:23\";s:14:\"------ Actions\";s:14:\"navigation:119\";s:26:\"------ Administration menu\";s:13:\"navigation:24\";s:27:\"------ Administration theme\";s:13:\"navigation:26\";s:17:\"------ Clean URLs\";s:13:\"navigation:30\";s:20:\"------ Date and time\";s:13:\"navigation:33\";s:22:\"------ Error reporting\";s:13:\"navigation:34\";s:18:\"------ File system\";s:13:\"navigation:35\";s:20:\"------ Image toolkit\";s:14:\"navigation:442\";s:13:\"------ Images\";s:13:\"navigation:36\";s:20:\"------ Input formats\";s:13:\"navigation:37\";s:25:\"------ Logging and alerts\";s:14:\"navigation:100\";s:25:\"-------- Database logging\";s:14:\"navigation:245\";s:17:\"------ Nice Menus\";s:13:\"navigation:40\";s:18:\"------ Performance\";s:14:\"navigation:120\";s:22:\"------ Search settings\";s:14:\"navigation:539\";s:17:\"------ Simplenews\";s:14:\"navigation:542\";s:16:\"-------- General\";s:14:\"navigation:543\";s:19:\"-------- Newsletter\";s:14:\"navigation:547\";s:21:\"-------- Subscription\";s:14:\"navigation:545\";s:18:\"-------- Send mail\";s:13:\"navigation:46\";s:23:\"------ Site information\";s:13:\"navigation:47\";s:23:\"------ Site maintenance\";s:14:\"navigation:246\";s:15:\"------ Site map\";s:13:\"navigation:20\";s:20:\"---- User management\";s:13:\"navigation:22\";s:19:\"------ Access rules\";s:13:\"navigation:41\";s:18:\"------ Permissions\";s:13:\"navigation:45\";s:12:\"------ Roles\";s:13:\"navigation:50\";s:20:\"------ User settings\";s:13:\"navigation:51\";s:12:\"------ Users\";s:13:\"navigation:16\";s:12:\"---- Reports\";s:13:\"navigation:93\";s:25:\"------ Recent log entries\";s:13:\"navigation:96\";s:33:\"------ Top \'access denied\' errors\";s:13:\"navigation:97\";s:34:\"------ Top \'page not found\' errors\";s:14:\"navigation:121\";s:25:\"------ Top search phrases\";s:14:\"navigation:105\";s:24:\"------ Available updates\";s:13:\"navigation:48\";s:20:\"------ Status report\";s:13:\"navigation:15\";s:9:\"---- Help\";s:12:\"navigation:4\";s:10:\"-- Log out\";s:15:\"primary-links:0\";s:15:\"<Primary links>\";s:17:\"menu-right-menu:0\";s:12:\"<Right Menu>\";s:19:\"menu-right-menu:496\";s:28:\"-- Financial Calculator Tool\";s:19:\"menu-right-menu:497\";s:21:\"-- News Story Library\";s:19:\"menu-right-menu:498\";s:14:\"-- Latest News\";s:19:\"menu-right-menu:499\";s:25:\"-- SREC Management Portal\";s:17:\"secondary-links:0\";s:17:\"<Secondary links>\";}s:12:\"#description\";s:156:\"The maximum depth for an item and all its children is fixed at 9. Some menu items may not be available as parents if selecting them would exceed this limit.\";s:11:\"#attributes\";a:1:{s:5:\"class\";s:17:\"menu-title-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:1:\"0\";s:12:\"#description\";s:107:\"Optional. In the menu, the heavier items will sink and the lighter items will be positioned nearer the top.\";}}s:7:\"#submit\";a:1:{i:0;s:21:\"menu_node_form_submit\";}s:4:\"path\";a:9:{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:7:\"#access\";b:1;s:7:\"#weight\";i:30;s:4:\"path\";a:6:{s:5:\"#type\";s:9:\"textfield\";s:14:\"#default_value\";s:63:\"renewable-energy-credit-rec-management-program-pv-system-owners\";s:10:\"#maxlength\";i:128;s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:12:\"#description\";s:207:\"Optionally specify an alternative URL by which this node 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:22:\"pathauto_perform_alias\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:15:\"Automatic alias\";s:14:\"#default_value\";i:1;s:12:\"#description\";s:238:\"An alias will be generated for you. If you wish to create your own alias below, uncheck this option. To control the format of the generated aliases, see the <a href=\"/~uspvinc/main2/admin/build/path/pathauto\">automated alias settings</a>.\";s:7:\"#weight\";i:-1;}s:9:\"old_alias\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:63:\"renewable-energy-credit-rec-management-program-pv-system-owners\";}}s:11:\"#pre_render\";a:1:{i:0;s:27:\"content_alter_extra_weights\";}s:21:\"#content_extra_fields\";a:6:{s:5:\"title\";a:3:{s:5:\"label\";s:5:\"Title\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:-5;}s:10:\"body_field\";a:4:{s:5:\"label\";s:4:\"Body\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:0;s:4:\"view\";s:4:\"body\";}s:20:\"revision_information\";a:3:{s:5:\"label\";s:20:\"Revision information\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:20;}s:16:\"comment_settings\";a:3:{s:5:\"label\";s:16:\"Comment settings\";s:11:\"description\";s:20:\"Comment module form.\";s:6:\"weight\";i:30;}s:4:\"menu\";a:3:{s:5:\"label\";s:13:\"Menu settings\";s:11:\"description\";s:17:\"Menu module form.\";s:6:\"weight\";i:-2;}s:4:\"path\";a:3:{s:5:\"label\";s:13:\"Path settings\";s:11:\"description\";s:17:\"Path module form.\";s:6:\"weight\";i:30;}}s:12:\"#cache_token\";s:32:\"ea05954e6208c2bed552f97e30d1dad3\";}',1285724925,1285703325,'',1),('form_form-c86affd2cab9c07a5e051e82ca5d8306','a:41:{s:3:\"#id\";s:9:\"node-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:1285703509;}s:4:\"type\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:6:\"banner\";}s:8:\"language\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:0:\"\";}s:7:\"changed\";a:2:{s:5:\"#type\";s:6:\"hidden\";s:14:\"#default_value\";N;}s:5:\"title\";a:6:{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:10:\"body_field\";a:7:{s:12:\"#after_build\";a:2:{i:0;s:14:\"node_teaser_js\";i:1;s:26:\"node_teaser_include_verify\";}s:7:\"#prefix\";s:32:\"<div class=\"body-field-wrapper\">\";s:7:\"#suffix\";s:6:\"</div>\";s:9:\"teaser_js\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:5:\"#rows\";i:10;s:7:\"#teaser\";s:9:\"edit-body\";s:16:\"#teaser_checkbox\";s:19:\"edit-teaser-include\";s:9:\"#disabled\";b:1;}s:14:\"teaser_include\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:25:\"Show summary in full view\";s:14:\"#default_value\";b:1;s:7:\"#prefix\";s:29:\"<div class=\"teaser-checkbox\">\";s:7:\"#suffix\";s:6:\"</div>\";}s:4:\"body\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:4:\"Body\";s:14:\"#default_value\";N;s:5:\"#rows\";i:20;s:9:\"#required\";b:0;}s:6:\"format\";a:9:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:12:\"Input format\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:7:\"#weight\";N;s:17:\"#element_validate\";a:1:{i:0;s:20:\"filter_form_validate\";}i:1;a:7:{s:5:\"#type\";s:5:\"radio\";s:6:\"#title\";s:13:\"Filtered HTML\";s:14:\"#default_value\";i:1;s:13:\"#return_value\";s:1:\"1\";s:8:\"#parents\";a:1:{i:0;s:6:\"format\";}s:12:\"#description\";s:306:\"<ul class=\"tips\"><li>Web page addresses and e-mail addresses turn into links automatically.</li><li>Allowed HTML tags: &lt;a&gt; &lt;em&gt; &lt;strong&gt; &lt;cite&gt; &lt;code&gt; &lt;ul&gt; &lt;ol&gt; &lt;li&gt; &lt;dl&gt; &lt;dt&gt; &lt;dd&gt;</li><li>Lines and paragraphs break automatically.</li></ul>\";s:3:\"#id\";s:13:\"edit-format-1\";}i:2;a:7:{s:5:\"#type\";s:5:\"radio\";s:6:\"#title\";s:9:\"Full HTML\";s:14:\"#default_value\";i:1;s:13:\"#return_value\";s:1:\"2\";s:8:\"#parents\";a:1:{i:0;s:6:\"format\";}s:12:\"#description\";s:151:\"<ul class=\"tips\"><li>Web page addresses and e-mail addresses turn into links automatically.</li><li>Lines and paragraphs break automatically.</li></ul>\";s:3:\"#id\";s:13:\"edit-format-2\";}i:3;a:1:{s:6:\"#value\";s:90:\"<p><a href=\"/~uspvinc/main2/filter/tips\">More information about formatting options</a></p>\";}}}s:5:\"#node\";O:8:\"stdClass\":15:{s:3:\"uid\";s:1:\"1\";s:4:\"name\";s:5:\"admin\";s:4:\"type\";s:6:\"banner\";s:8:\"language\";s:0:\"\";s:4:\"body\";N;s:5:\"title\";N;s:6:\"format\";N;s:6:\"status\";b:1;s:7:\"promote\";b:1;s:6:\"sticky\";b:0;s:7:\"created\";i:1285703509;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:13:\"primary-links\";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:22:\"pathauto_perform_alias\";b:1;}s:20:\"revision_information\";a:7:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:20:\"Revision information\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:7:\"#weight\";i:20;s:8:\"revision\";a:4:{s:7:\"#access\";b:1;s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:19:\"Create new revision\";s:14:\"#default_value\";b:0;}s:3:\"log\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:11:\"Log message\";s:14:\"#default_value\";s:0:\"\";s:5:\"#rows\";i:2;s:12:\"#description\";s:104:\"An explanation of the additions or updates being made to help other authors understand your motivations.\";}}s:6:\"author\";a:8:{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:7:\"#weight\";i:20;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:35:\"Leave blank for <em>Anonymous</em>.\";}s:4:\"date\";a:4:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:11:\"Authored on\";s:10:\"#maxlength\";i:25;s:12:\"#description\";s:91:\"Format: <em>2010-09-29 03:51:49 +0800</em>. Leave blank to use the time of form submission.\";}}s:7:\"options\";a:9:{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:7:\"#weight\";i:25;s:6:\"status\";a:3:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:9:\"Published\";s:14:\"#default_value\";b: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\";b: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\";b:0;}}s:7:\"buttons\";a:2:{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:16:\"node_form_submit\";}}s:7:\"preview\";a:4:{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:2:{i:0;s:18:\"node_form_validate\";i:1;s:21:\"image_attach_validate\";}s:6:\"#theme\";a:2:{i:0;s:16:\"banner_node_form\";i:1;s:9:\"node_form\";}s:11:\"#parameters\";a:3:{i:0;s:16:\"banner_node_form\";i:1;a:3:{s:7:\"storage\";N;s:9:\"submitted\";b:0;s:4:\"post\";a:0:{}}i:2;a:4:{s:3:\"uid\";s:1:\"1\";s:4:\"name\";s:5:\"admin\";s:4:\"type\";s:6:\"banner\";s:8:\"language\";s:0:\"\";}}s:9:\"#build_id\";s:37:\"form-c86affd2cab9c07a5e051e82ca5d8306\";s:5:\"#type\";s:4:\"form\";s:11:\"#programmed\";b:0;s:13:\"form_build_id\";a:4:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:37:\"form-c86affd2cab9c07a5e051e82ca5d8306\";s:3:\"#id\";s:37:\"form-c86affd2cab9c07a5e051e82ca5d8306\";s:5:\"#name\";s:13:\"form_build_id\";}s:6:\"#token\";s:16:\"banner_node_form\";s:10:\"form_token\";a:3:{s:3:\"#id\";s:32:\"edit-banner-node-form-form-token\";s:5:\"#type\";s:5:\"token\";s:14:\"#default_value\";s:32:\"07cec0c98582e0fd07a1adcfd62b388b\";}s:7:\"form_id\";a:3:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:16:\"banner_node_form\";s:3:\"#id\";s:21:\"edit-banner-node-form\";}s:12:\"#description\";N;s:11:\"#attributes\";a:1:{s:7:\"enctype\";s:19:\"multipart/form-data\";}s:9:\"#required\";b:0;s:5:\"#tree\";b:0;s:8:\"#parents\";a:0:{}s:7:\"#method\";s:4:\"post\";s:7:\"#action\";s:31:\"/~uspvinc/main2/node/add/banner\";s:16:\"comment_settings\";a:7:{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:7:\"#weight\";i:30;s:7:\"comment\";a:4:{s:5:\"#type\";s:6:\"radios\";s:8:\"#parents\";a:1:{i:0;s:7:\"comment\";}s:14:\"#default_value\";s:1:\"2\";s:8:\"#options\";a:3:{i:0;s:8:\"Disabled\";i:1;s:9:\"Read only\";i:2;s:10:\"Read/Write\";}}}s:6:\"#cache\";b:1;s:4:\"menu\";a:20:{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:5:\"#tree\";b:1;s:7:\"#weight\";i:-2;s:11:\"#attributes\";a:1:{s:5:\"class\";s:14:\"menu-item-form\";}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:0;}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:5:\"#item\";a:12:{s:10:\"link_title\";s:0:\"\";s:4:\"mlid\";i:0;s:4:\"plid\";i:0;s:9:\"menu_name\";s:13:\"primary-links\";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:10:\"link_title\";a:5:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:15:\"Menu link title\";s:14:\"#default_value\";s:0:\"\";s:12:\"#description\";s:133:\"The link text corresponding to this item that should appear in the menu. Leave blank if you do not wish to add this post to the menu.\";s:9:\"#required\";b:0;}s:6:\"parent\";a:6:{s:5:\"#type\";s:6:\"select\";s:6:\"#title\";s:11:\"Parent item\";s:14:\"#default_value\";s:15:\"primary-links:0\";s:8:\"#options\";a:96:{s:16:\"menu-main-menu:0\";s:11:\"<Main Menu>\";s:18:\"menu-main-menu:283\";s:8:\"-- about\";s:18:\"menu-main-menu:284\";s:12:\"-- resources\";s:18:\"menu-main-menu:285\";s:11:\"-- services\";s:18:\"menu-main-menu:286\";s:17:\"-- special offers\";s:12:\"navigation:0\";s:12:\"<Navigation>\";s:12:\"navigation:9\";s:26:\"-- Compose tips (disabled)\";s:14:\"navigation:461\";s:29:\"-- Image galleries (disabled)\";s:13:\"navigation:21\";s:13:\"-- My account\";s:14:\"navigation:114\";s:20:\"-- Search (disabled)\";s:14:\"navigation:244\";s:22:\"-- Site map (disabled)\";s:13:\"navigation:11\";s:17:\"-- Create content\";s:14:\"navigation:476\";s:11:\"---- Banner\";s:14:\"navigation:441\";s:10:\"---- Image\";s:14:\"navigation:289\";s:21:\"---- Newsletter issue\";s:14:\"navigation:106\";s:9:\"---- Page\";s:14:\"navigation:388\";s:10:\"---- Panel\";s:14:\"navigation:107\";s:10:\"---- Story\";s:12:\"navigation:2\";s:13:\"-- Administer\";s:13:\"navigation:10\";s:23:\"---- Content management\";s:13:\"navigation:27\";s:15:\"------ Comments\";s:13:\"navigation:28\";s:14:\"------ Content\";s:13:\"navigation:29\";s:20:\"------ Content types\";s:14:\"navigation:462\";s:22:\"------ Image galleries\";s:14:\"navigation:463\";s:19:\"------ Image import\";s:14:\"navigation:538\";s:18:\"------ Newsletters\";s:14:\"navigation:546\";s:20:\"-------- Sent issues\";s:14:\"navigation:541\";s:21:\"-------- Draft issues\";s:14:\"navigation:544\";s:20:\"-------- Newsletters\";s:14:\"navigation:548\";s:22:\"-------- Subscriptions\";s:13:\"navigation:42\";s:20:\"------ Post settings\";s:13:\"navigation:43\";s:21:\"------ RSS publishing\";s:13:\"navigation:94\";s:15:\"------ Taxonomy\";s:13:\"navigation:17\";s:18:\"---- Site building\";s:13:\"navigation:25\";s:13:\"------ Blocks\";s:14:\"navigation:424\";s:20:\"------ Bulk Exporter\";s:13:\"navigation:38\";s:12:\"------ Menus\";s:14:\"navigation:282\";s:18:\"-------- Main Menu\";s:13:\"navigation:89\";s:19:\"-------- Navigation\";s:13:\"navigation:90\";s:22:\"-------- Primary links\";s:14:\"navigation:495\";s:19:\"-------- Right Menu\";s:13:\"navigation:91\";s:24:\"-------- Secondary links\";s:14:\"navigation:387\";s:18:\"------ Mini panels\";s:13:\"navigation:39\";s:14:\"------ Modules\";s:14:\"navigation:412\";s:12:\"------ Pages\";s:14:\"navigation:360\";s:13:\"------ Panels\";s:13:\"navigation:49\";s:13:\"------ Themes\";s:14:\"navigation:335\";s:15:\"------ Triggers\";s:14:\"navigation:501\";s:18:\"------ URL aliases\";s:14:\"navigation:257\";s:12:\"------ Views\";s:13:\"navigation:18\";s:23:\"---- Site configuration\";s:13:\"navigation:23\";s:14:\"------ Actions\";s:14:\"navigation:119\";s:26:\"------ Administration menu\";s:13:\"navigation:24\";s:27:\"------ Administration theme\";s:13:\"navigation:26\";s:17:\"------ Clean URLs\";s:13:\"navigation:30\";s:20:\"------ Date and time\";s:13:\"navigation:33\";s:22:\"------ Error reporting\";s:13:\"navigation:34\";s:18:\"------ File system\";s:13:\"navigation:35\";s:20:\"------ Image toolkit\";s:14:\"navigation:442\";s:13:\"------ Images\";s:13:\"navigation:36\";s:20:\"------ Input formats\";s:13:\"navigation:37\";s:25:\"------ Logging and alerts\";s:14:\"navigation:100\";s:25:\"-------- Database logging\";s:14:\"navigation:245\";s:17:\"------ Nice Menus\";s:13:\"navigation:40\";s:18:\"------ Performance\";s:14:\"navigation:120\";s:22:\"------ Search settings\";s:14:\"navigation:539\";s:17:\"------ Simplenews\";s:14:\"navigation:542\";s:16:\"-------- General\";s:14:\"navigation:543\";s:19:\"-------- Newsletter\";s:14:\"navigation:547\";s:21:\"-------- Subscription\";s:14:\"navigation:545\";s:18:\"-------- Send mail\";s:13:\"navigation:46\";s:23:\"------ Site information\";s:13:\"navigation:47\";s:23:\"------ Site maintenance\";s:14:\"navigation:246\";s:15:\"------ Site map\";s:13:\"navigation:20\";s:20:\"---- User management\";s:13:\"navigation:22\";s:19:\"------ Access rules\";s:13:\"navigation:41\";s:18:\"------ Permissions\";s:13:\"navigation:45\";s:12:\"------ Roles\";s:13:\"navigation:50\";s:20:\"------ User settings\";s:13:\"navigation:51\";s:12:\"------ Users\";s:13:\"navigation:16\";s:12:\"---- Reports\";s:13:\"navigation:93\";s:25:\"------ Recent log entries\";s:13:\"navigation:96\";s:33:\"------ Top \'access denied\' errors\";s:13:\"navigation:97\";s:34:\"------ Top \'page not found\' errors\";s:14:\"navigation:121\";s:25:\"------ Top search phrases\";s:14:\"navigation:105\";s:24:\"------ Available updates\";s:13:\"navigation:48\";s:20:\"------ Status report\";s:13:\"navigation:15\";s:9:\"---- Help\";s:12:\"navigation:4\";s:10:\"-- Log out\";s:15:\"primary-links:0\";s:15:\"<Primary links>\";s:17:\"menu-right-menu:0\";s:12:\"<Right Menu>\";s:19:\"menu-right-menu:496\";s:28:\"-- Financial Calculator Tool\";s:19:\"menu-right-menu:497\";s:21:\"-- News Story Library\";s:19:\"menu-right-menu:498\";s:14:\"-- Latest News\";s:19:\"menu-right-menu:499\";s:25:\"-- SREC Management Portal\";s:17:\"secondary-links:0\";s:17:\"<Secondary links>\";}s:12:\"#description\";s:156:\"The maximum depth for an item and all its children is fixed at 9. Some menu items may not be available as parents if selecting them would exceed this limit.\";s:11:\"#attributes\";a:1:{s:5:\"class\";s:17:\"menu-title-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:107:\"Optional. In the menu, the heavier items will sink and the lighter items will be positioned nearer the top.\";}}s:7:\"#submit\";a:2:{i:0;s:21:\"menu_node_form_submit\";i:1;s:29:\"image_attach_node_form_submit\";}s:4:\"path\";a:8:{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:7:\"#access\";b:1;s:7:\"#weight\";i:30;s:4:\"path\";a:6:{s:5:\"#type\";s:9:\"textfield\";s:14:\"#default_value\";N;s:10:\"#maxlength\";i:128;s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:12:\"#description\";s:207:\"Optionally specify an alternative URL by which this node 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:22:\"pathauto_perform_alias\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:15:\"Automatic alias\";s:14:\"#default_value\";b:1;s:12:\"#description\";s:238:\"An alias will be generated for you. If you wish to create your own alias below, uncheck this option. To control the format of the generated aliases, see the <a href=\"/~uspvinc/main2/admin/build/path/pathauto\">automated alias settings</a>.\";s:7:\"#weight\";i:-1;}}s:11:\"#pre_render\";a:1:{i:0;s:27:\"content_alter_extra_weights\";}s:21:\"#content_extra_fields\";a:7:{s:5:\"title\";a:3:{s:5:\"label\";s:5:\"Title\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";s:2:\"-5\";}s:10:\"body_field\";a:4:{s:5:\"label\";s:4:\"Body\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";s:2:\"-2\";s:4:\"view\";s:4:\"body\";}s:20:\"revision_information\";a:3:{s:5:\"label\";s:20:\"Revision information\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";s:2:\"-1\";}s:16:\"comment_settings\";a:3:{s:5:\"label\";s:16:\"Comment settings\";s:11:\"description\";s:20:\"Comment module form.\";s:6:\"weight\";s:1:\"0\";}s:4:\"menu\";a:3:{s:5:\"label\";s:13:\"Menu settings\";s:11:\"description\";s:17:\"Menu module form.\";s:6:\"weight\";s:2:\"-4\";}s:4:\"path\";a:3:{s:5:\"label\";s:13:\"Path settings\";s:11:\"description\";s:17:\"Path module form.\";s:6:\"weight\";i:30;}s:12:\"image_attach\";a:3:{s:5:\"label\";s:15:\"Attached images\";s:11:\"description\";s:25:\"Image Attach module form.\";s:6:\"weight\";s:2:\"-3\";}}s:12:\"image_attach\";a:9:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:15:\"Attached images\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:12:\"#description\";s:23:\"You may attach 1 image.\";s:4:\"iids\";a:7:{s:5:\"#type\";s:6:\"select\";s:14:\"#default_value\";N;s:9:\"#multiple\";b:1;s:5:\"#size\";i:6;s:6:\"#title\";s:15:\"Existing images\";s:8:\"#options\";a:4:{i:0;s:8:\"- None -\";i:1;s:15:\"banner 1 - USPV\";i:7;s:15:\"banner 2 - USPV\";i:9;s:15:\"banner 3 - USPV\";}s:12:\"#description\";s:54:\"Choose existing images if you do not upload a new one.\";}s:5:\"image\";a:2:{s:5:\"#type\";s:4:\"file\";s:6:\"#title\";s:12:\"Upload image\";}s:11:\"image_title\";a:4:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:11:\"Image title\";s:14:\"#default_value\";s:0:\"\";s:12:\"#description\";s:72:\"The title the image will be shown with. Leave blank to use the filename.\";}s:21:\"image_attach_multiple\";a:4:{s:5:\"#type\";s:6:\"submit\";s:6:\"#value\";s:6:\"Attach\";s:9:\"#validate\";a:1:{i:0;s:21:\"image_attach_validate\";}s:7:\"#submit\";a:1:{i:0;s:29:\"image_attach_image_add_submit\";}}}s:12:\"#cache_token\";s:32:\"ea05954e6208c2bed552f97e30d1dad3\";}',1285725109,1285703509,'',1),('form_form-91bb49dc8cc4bdb3b835a221f19d80b9','a:41:{s:3:\"#id\";s:9:\"node-form\";s:3:\"nid\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:2:\"10\";}s:3:\"vid\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:2:\"10\";}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:\"1265208654\";}s:4:\"type\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:6:\"banner\";}s:8:\"language\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:0:\"\";}s:7:\"changed\";a:2:{s:5:\"#type\";s:6:\"hidden\";s:14:\"#default_value\";s:10:\"1265208654\";}s:5:\"title\";a:6:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:5:\"Title\";s:9:\"#required\";b:1;s:14:\"#default_value\";s:15:\"banner 3 - USPV\";s:10:\"#maxlength\";i:255;s:7:\"#weight\";i:-5;}s:10:\"body_field\";a:7:{s:12:\"#after_build\";a:2:{i:0;s:14:\"node_teaser_js\";i:1;s:26:\"node_teaser_include_verify\";}s:7:\"#prefix\";s:32:\"<div class=\"body-field-wrapper\">\";s:7:\"#suffix\";s:6:\"</div>\";s:9:\"teaser_js\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:5:\"#rows\";i:10;s:7:\"#teaser\";s:9:\"edit-body\";s:16:\"#teaser_checkbox\";s:19:\"edit-teaser-include\";s:9:\"#disabled\";b:1;}s:14:\"teaser_include\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:25:\"Show summary in full view\";s:14:\"#default_value\";b:1;s:7:\"#prefix\";s:29:\"<div class=\"teaser-checkbox\">\";s:7:\"#suffix\";s:6:\"</div>\";}s:4:\"body\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:4:\"Body\";s:14:\"#default_value\";s:15:\"banner 2 - USPV\";s:5:\"#rows\";i:20;s:9:\"#required\";b:0;}s:6:\"format\";a:9:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:12:\"Input format\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:7:\"#weight\";N;s:17:\"#element_validate\";a:1:{i:0;s:20:\"filter_form_validate\";}i:1;a:7:{s:5:\"#type\";s:5:\"radio\";s:6:\"#title\";s:13:\"Filtered HTML\";s:14:\"#default_value\";s:1:\"1\";s:13:\"#return_value\";s:1:\"1\";s:8:\"#parents\";a:1:{i:0;s:6:\"format\";}s:12:\"#description\";s:306:\"<ul class=\"tips\"><li>Web page addresses and e-mail addresses turn into links automatically.</li><li>Allowed HTML tags: &lt;a&gt; &lt;em&gt; &lt;strong&gt; &lt;cite&gt; &lt;code&gt; &lt;ul&gt; &lt;ol&gt; &lt;li&gt; &lt;dl&gt; &lt;dt&gt; &lt;dd&gt;</li><li>Lines and paragraphs break automatically.</li></ul>\";s:3:\"#id\";s:13:\"edit-format-1\";}i:2;a:7:{s:5:\"#type\";s:5:\"radio\";s:6:\"#title\";s:9:\"Full HTML\";s:14:\"#default_value\";s:1:\"1\";s:13:\"#return_value\";s:1:\"2\";s:8:\"#parents\";a:1:{i:0;s:6:\"format\";}s:12:\"#description\";s:151:\"<ul class=\"tips\"><li>Web page addresses and e-mail addresses turn into links automatically.</li><li>Lines and paragraphs break automatically.</li></ul>\";s:3:\"#id\";s:13:\"edit-format-2\";}i:3;a:1:{s:6:\"#value\";s:90:\"<p><a href=\"/~uspvinc/main2/filter/tips\">More information about formatting options</a></p>\";}}}s:5:\"#node\";O:8:\"stdClass\":34:{s:3:\"nid\";s:2:\"10\";s:4:\"type\";s:6:\"banner\";s:8:\"language\";s:0:\"\";s:3:\"uid\";s:1:\"1\";s:6:\"status\";s:1:\"1\";s:7:\"created\";s:10:\"1265208654\";s:7:\"changed\";s:10:\"1265208654\";s:7:\"comment\";s:1:\"2\";s:7:\"promote\";s:1:\"1\";s:8:\"moderate\";s:1:\"0\";s:6:\"sticky\";s:1:\"0\";s:4:\"tnid\";s:1:\"0\";s:9:\"translate\";s:1:\"0\";s:3:\"vid\";s:2:\"10\";s:12:\"revision_uid\";s:1:\"1\";s:5:\"title\";s:15:\"banner 3 - USPV\";s:4:\"body\";s:15:\"banner 2 - USPV\";s:6:\"teaser\";s:15:\"banner 2 - USPV\";s:3:\"log\";N;s:18:\"revision_timestamp\";s:10:\"1265208654\";s:6:\"format\";s:1:\"1\";s:4:\"name\";s:5:\"admin\";s:7:\"picture\";s:0:\"\";s:4:\"data\";s:6:\"a:0:{}\";s:4:\"path\";s:20:\"banner/banner-3-uspv\";s:22:\"last_comment_timestamp\";s:10:\"1265208654\";s:17:\"last_comment_name\";N;s:13:\"comment_count\";s:1:\"0\";s:8:\"taxonomy\";a:0:{}s:4:\"iids\";a:1:{i:0;s:1:\"9\";}s:4:\"date\";s:25:\"2010-02-03 22:50:54 +0800\";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:13:\"primary-links\";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:22:\"pathauto_perform_alias\";b:1;}s:20:\"revision_information\";a:7:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:20:\"Revision information\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:7:\"#weight\";i:20;s:8:\"revision\";a:4:{s:7:\"#access\";b:1;s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:19:\"Create new revision\";s:14:\"#default_value\";b:0;}s:3:\"log\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:11:\"Log message\";s:14:\"#default_value\";s:0:\"\";s:5:\"#rows\";i:2;s:12:\"#description\";s:104:\"An explanation of the additions or updates being made to help other authors understand your motivations.\";}}s:6:\"author\";a:8:{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:7:\"#weight\";i:20;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:35:\"Leave blank for <em>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:91:\"Format: <em>2010-02-03 22:50:54 +0800</em>. Leave blank to use the time of form submission.\";s:14:\"#default_value\";s:25:\"2010-02-03 22:50:54 +0800\";}}s:7:\"options\";a:9:{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:7:\"#weight\";i:25;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:\"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\";s:1:\"0\";}}s:7:\"buttons\";a:3:{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:16:\"node_form_submit\";}}s:7:\"preview\";a:4:{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:2:{i:0;s:18:\"node_form_validate\";i:1;s:21:\"image_attach_validate\";}s:6:\"#theme\";a:2:{i:0;s:16:\"banner_node_form\";i:1;s:9:\"node_form\";}s:11:\"#parameters\";a:3:{i:0;s:16:\"banner_node_form\";i:1;a:3:{s:7:\"storage\";N;s:9:\"submitted\";b:0;s:4:\"post\";a:0:{}}i:2;r:83;}s:9:\"#build_id\";s:37:\"form-91bb49dc8cc4bdb3b835a221f19d80b9\";s:5:\"#type\";s:4:\"form\";s:11:\"#programmed\";b:0;s:13:\"form_build_id\";a:4:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:37:\"form-91bb49dc8cc4bdb3b835a221f19d80b9\";s:3:\"#id\";s:37:\"form-91bb49dc8cc4bdb3b835a221f19d80b9\";s:5:\"#name\";s:13:\"form_build_id\";}s:6:\"#token\";s:16:\"banner_node_form\";s:10:\"form_token\";a:3:{s:3:\"#id\";s:32:\"edit-banner-node-form-form-token\";s:5:\"#type\";s:5:\"token\";s:14:\"#default_value\";s:32:\"07cec0c98582e0fd07a1adcfd62b388b\";}s:7:\"form_id\";a:3:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:16:\"banner_node_form\";s:3:\"#id\";s:21:\"edit-banner-node-form\";}s:12:\"#description\";N;s:11:\"#attributes\";a:1:{s:7:\"enctype\";s:19:\"multipart/form-data\";}s:9:\"#required\";b:0;s:5:\"#tree\";b:0;s:8:\"#parents\";a:0:{}s:7:\"#method\";s:4:\"post\";s:7:\"#action\";s:63:\"/~uspvinc/main2/node/10/edit?destination=admin%2Fcontent%2Fnode\";s:16:\"comment_settings\";a:7:{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:7:\"#weight\";i:30;s:7:\"comment\";a:4:{s:5:\"#type\";s:6:\"radios\";s:8:\"#parents\";a:1:{i:0;s:7:\"comment\";}s:14:\"#default_value\";s:1:\"2\";s:8:\"#options\";a:3:{i:0;s:8:\"Disabled\";i:1;s:9:\"Read only\";i:2;s:10:\"Read/Write\";}}}s:6:\"#cache\";b:1;s:4:\"menu\";a:20:{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:5:\"#tree\";b:1;s:7:\"#weight\";i:-2;s:11:\"#attributes\";a:1:{s:5:\"class\";s:14:\"menu-item-form\";}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:0;}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:5:\"#item\";a:12:{s:10:\"link_title\";s:0:\"\";s:4:\"mlid\";i:0;s:4:\"plid\";i:0;s:9:\"menu_name\";s:13:\"primary-links\";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:10:\"link_title\";a:5:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:15:\"Menu link title\";s:14:\"#default_value\";s:0:\"\";s:12:\"#description\";s:133:\"The link text corresponding to this item that should appear in the menu. Leave blank if you do not wish to add this post to the menu.\";s:9:\"#required\";b:0;}s:6:\"parent\";a:6:{s:5:\"#type\";s:6:\"select\";s:6:\"#title\";s:11:\"Parent item\";s:14:\"#default_value\";s:15:\"primary-links:0\";s:8:\"#options\";a:96:{s:16:\"menu-main-menu:0\";s:11:\"<Main Menu>\";s:18:\"menu-main-menu:283\";s:8:\"-- about\";s:18:\"menu-main-menu:284\";s:12:\"-- resources\";s:18:\"menu-main-menu:285\";s:11:\"-- services\";s:18:\"menu-main-menu:286\";s:17:\"-- special offers\";s:12:\"navigation:0\";s:12:\"<Navigation>\";s:12:\"navigation:9\";s:26:\"-- Compose tips (disabled)\";s:14:\"navigation:461\";s:29:\"-- Image galleries (disabled)\";s:13:\"navigation:21\";s:13:\"-- My account\";s:14:\"navigation:114\";s:20:\"-- Search (disabled)\";s:14:\"navigation:244\";s:22:\"-- Site map (disabled)\";s:13:\"navigation:11\";s:17:\"-- Create content\";s:14:\"navigation:476\";s:11:\"---- Banner\";s:14:\"navigation:441\";s:10:\"---- Image\";s:14:\"navigation:289\";s:21:\"---- Newsletter issue\";s:14:\"navigation:106\";s:9:\"---- Page\";s:14:\"navigation:388\";s:10:\"---- Panel\";s:14:\"navigation:107\";s:10:\"---- Story\";s:12:\"navigation:2\";s:13:\"-- Administer\";s:13:\"navigation:10\";s:23:\"---- Content management\";s:13:\"navigation:27\";s:15:\"------ Comments\";s:13:\"navigation:28\";s:14:\"------ Content\";s:13:\"navigation:29\";s:20:\"------ Content types\";s:14:\"navigation:462\";s:22:\"------ Image galleries\";s:14:\"navigation:463\";s:19:\"------ Image import\";s:14:\"navigation:538\";s:18:\"------ Newsletters\";s:14:\"navigation:546\";s:20:\"-------- Sent issues\";s:14:\"navigation:541\";s:21:\"-------- Draft issues\";s:14:\"navigation:544\";s:20:\"-------- Newsletters\";s:14:\"navigation:548\";s:22:\"-------- Subscriptions\";s:13:\"navigation:42\";s:20:\"------ Post settings\";s:13:\"navigation:43\";s:21:\"------ RSS publishing\";s:13:\"navigation:94\";s:15:\"------ Taxonomy\";s:13:\"navigation:17\";s:18:\"---- Site building\";s:13:\"navigation:25\";s:13:\"------ Blocks\";s:14:\"navigation:424\";s:20:\"------ Bulk Exporter\";s:13:\"navigation:38\";s:12:\"------ Menus\";s:14:\"navigation:282\";s:18:\"-------- Main Menu\";s:13:\"navigation:89\";s:19:\"-------- Navigation\";s:13:\"navigation:90\";s:22:\"-------- Primary links\";s:14:\"navigation:495\";s:19:\"-------- Right Menu\";s:13:\"navigation:91\";s:24:\"-------- Secondary links\";s:14:\"navigation:387\";s:18:\"------ Mini panels\";s:13:\"navigation:39\";s:14:\"------ Modules\";s:14:\"navigation:412\";s:12:\"------ Pages\";s:14:\"navigation:360\";s:13:\"------ Panels\";s:13:\"navigation:49\";s:13:\"------ Themes\";s:14:\"navigation:335\";s:15:\"------ Triggers\";s:14:\"navigation:501\";s:18:\"------ URL aliases\";s:14:\"navigation:257\";s:12:\"------ Views\";s:13:\"navigation:18\";s:23:\"---- Site configuration\";s:13:\"navigation:23\";s:14:\"------ Actions\";s:14:\"navigation:119\";s:26:\"------ Administration menu\";s:13:\"navigation:24\";s:27:\"------ Administration theme\";s:13:\"navigation:26\";s:17:\"------ Clean URLs\";s:13:\"navigation:30\";s:20:\"------ Date and time\";s:13:\"navigation:33\";s:22:\"------ Error reporting\";s:13:\"navigation:34\";s:18:\"------ File system\";s:13:\"navigation:35\";s:20:\"------ Image toolkit\";s:14:\"navigation:442\";s:13:\"------ Images\";s:13:\"navigation:36\";s:20:\"------ Input formats\";s:13:\"navigation:37\";s:25:\"------ Logging and alerts\";s:14:\"navigation:100\";s:25:\"-------- Database logging\";s:14:\"navigation:245\";s:17:\"------ Nice Menus\";s:13:\"navigation:40\";s:18:\"------ Performance\";s:14:\"navigation:120\";s:22:\"------ Search settings\";s:14:\"navigation:539\";s:17:\"------ Simplenews\";s:14:\"navigation:542\";s:16:\"-------- General\";s:14:\"navigation:543\";s:19:\"-------- Newsletter\";s:14:\"navigation:547\";s:21:\"-------- Subscription\";s:14:\"navigation:545\";s:18:\"-------- Send mail\";s:13:\"navigation:46\";s:23:\"------ Site information\";s:13:\"navigation:47\";s:23:\"------ Site maintenance\";s:14:\"navigation:246\";s:15:\"------ Site map\";s:13:\"navigation:20\";s:20:\"---- User management\";s:13:\"navigation:22\";s:19:\"------ Access rules\";s:13:\"navigation:41\";s:18:\"------ Permissions\";s:13:\"navigation:45\";s:12:\"------ Roles\";s:13:\"navigation:50\";s:20:\"------ User settings\";s:13:\"navigation:51\";s:12:\"------ Users\";s:13:\"navigation:16\";s:12:\"---- Reports\";s:13:\"navigation:93\";s:25:\"------ Recent log entries\";s:13:\"navigation:96\";s:33:\"------ Top \'access denied\' errors\";s:13:\"navigation:97\";s:34:\"------ Top \'page not found\' errors\";s:14:\"navigation:121\";s:25:\"------ Top search phrases\";s:14:\"navigation:105\";s:24:\"------ Available updates\";s:13:\"navigation:48\";s:20:\"------ Status report\";s:13:\"navigation:15\";s:9:\"---- Help\";s:12:\"navigation:4\";s:10:\"-- Log out\";s:15:\"primary-links:0\";s:15:\"<Primary links>\";s:17:\"menu-right-menu:0\";s:12:\"<Right Menu>\";s:19:\"menu-right-menu:496\";s:28:\"-- Financial Calculator Tool\";s:19:\"menu-right-menu:497\";s:21:\"-- News Story Library\";s:19:\"menu-right-menu:498\";s:14:\"-- Latest News\";s:19:\"menu-right-menu:499\";s:25:\"-- SREC Management Portal\";s:17:\"secondary-links:0\";s:17:\"<Secondary links>\";}s:12:\"#description\";s:156:\"The maximum depth for an item and all its children is fixed at 9. Some menu items may not be available as parents if selecting them would exceed this limit.\";s:11:\"#attributes\";a:1:{s:5:\"class\";s:17:\"menu-title-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:107:\"Optional. In the menu, the heavier items will sink and the lighter items will be positioned nearer the top.\";}}s:7:\"#submit\";a:2:{i:0;s:21:\"menu_node_form_submit\";i:1;s:29:\"image_attach_node_form_submit\";}s:4:\"path\";a:10:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:17:\"URL path settings\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:0;s:7:\"#access\";b:1;s:7:\"#weight\";i:30;s:4:\"path\";a:6:{s:5:\"#type\";s:9:\"textfield\";s:14:\"#default_value\";s:20:\"banner/banner-3-uspv\";s:10:\"#maxlength\";i:128;s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:12:\"#description\";s:207:\"Optionally specify an alternative URL by which this node 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\";s:2:\"10\";}s:22:\"pathauto_perform_alias\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:15:\"Automatic alias\";s:14:\"#default_value\";b:1;s:12:\"#description\";s:238:\"An alias will be generated for you. If you wish to create your own alias below, uncheck this option. To control the format of the generated aliases, see the <a href=\"/~uspvinc/main2/admin/build/path/pathauto\">automated alias settings</a>.\";s:7:\"#weight\";i:-1;}s:9:\"old_alias\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:20:\"banner/banner-3-uspv\";}}s:11:\"#pre_render\";a:1:{i:0;s:27:\"content_alter_extra_weights\";}s:21:\"#content_extra_fields\";a:7:{s:5:\"title\";a:3:{s:5:\"label\";s:5:\"Title\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";s:2:\"-5\";}s:10:\"body_field\";a:4:{s:5:\"label\";s:4:\"Body\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";s:2:\"-2\";s:4:\"view\";s:4:\"body\";}s:20:\"revision_information\";a:3:{s:5:\"label\";s:20:\"Revision information\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";s:2:\"-1\";}s:16:\"comment_settings\";a:3:{s:5:\"label\";s:16:\"Comment settings\";s:11:\"description\";s:20:\"Comment module form.\";s:6:\"weight\";s:1:\"0\";}s:4:\"menu\";a:3:{s:5:\"label\";s:13:\"Menu settings\";s:11:\"description\";s:17:\"Menu module form.\";s:6:\"weight\";s:2:\"-4\";}s:4:\"path\";a:3:{s:5:\"label\";s:13:\"Path settings\";s:11:\"description\";s:17:\"Path module form.\";s:6:\"weight\";i:30;}s:12:\"image_attach\";a:3:{s:5:\"label\";s:15:\"Attached images\";s:11:\"description\";s:25:\"Image Attach module form.\";s:6:\"weight\";s:2:\"-3\";}}s:12:\"image_attach\";a:10:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:15:\"Attached images\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:0;s:12:\"#description\";s:23:\"You may attach 1 image.\";s:15:\"image_thumbnail\";a:1:{i:9;a:3:{s:5:\"#type\";s:4:\"item\";s:6:\"#title\";s:9:\"Thumbnail\";s:6:\"#value\";s:210:\"<img src=\"http://www.powerstormtech.com/~uspvinc/main2/sites/default/files/images/banner-3.thumbnail.png\" alt=\"banner 3 - USPV\" title=\"banner 3 - USPV\"  class=\"image image-thumbnail \" width=\"100\" height=\"36\" />\";}}s:4:\"iids\";a:7:{s:5:\"#type\";s:6:\"select\";s:14:\"#default_value\";a:1:{i:0;s:1:\"9\";}s:9:\"#multiple\";b:1;s:5:\"#size\";i:6;s:6:\"#title\";s:15:\"Existing images\";s:8:\"#options\";a:4:{i:0;s:8:\"- None -\";i:1;s:15:\"banner 1 - USPV\";i:7;s:15:\"banner 2 - USPV\";i:9;s:15:\"banner 3 - USPV\";}s:12:\"#description\";s:54:\"Choose existing images if you do not upload a new one.\";}s:5:\"image\";a:2:{s:5:\"#type\";s:4:\"file\";s:6:\"#title\";s:12:\"Upload image\";}s:11:\"image_title\";a:4:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:11:\"Image title\";s:14:\"#default_value\";s:0:\"\";s:12:\"#description\";s:72:\"The title the image will be shown with. Leave blank to use the filename.\";}s:21:\"image_attach_multiple\";a:4:{s:5:\"#type\";s:6:\"submit\";s:6:\"#value\";s:6:\"Attach\";s:9:\"#validate\";a:1:{i:0;s:21:\"image_attach_validate\";}s:7:\"#submit\";a:1:{i:0;s:29:\"image_attach_image_add_submit\";}}}s:12:\"#cache_token\";s:32:\"ea05954e6208c2bed552f97e30d1dad3\";}',1285725555,1285703955,'',1),('form_form-14285e215499e7f1d7c985f1f1495e3d','a:41:{s:3:\"#id\";s:9:\"node-form\";s:3:\"nid\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:1:\"8\";}s:3:\"vid\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:1:\"8\";}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:\"1265208624\";}s:4:\"type\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:6:\"banner\";}s:8:\"language\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:0:\"\";}s:7:\"changed\";a:2:{s:5:\"#type\";s:6:\"hidden\";s:14:\"#default_value\";s:10:\"1265208624\";}s:5:\"title\";a:6:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:5:\"Title\";s:9:\"#required\";b:1;s:14:\"#default_value\";s:15:\"banner 2 - USPV\";s:10:\"#maxlength\";i:255;s:7:\"#weight\";i:-5;}s:10:\"body_field\";a:7:{s:12:\"#after_build\";a:2:{i:0;s:14:\"node_teaser_js\";i:1;s:26:\"node_teaser_include_verify\";}s:7:\"#prefix\";s:32:\"<div class=\"body-field-wrapper\">\";s:7:\"#suffix\";s:6:\"</div>\";s:9:\"teaser_js\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:5:\"#rows\";i:10;s:7:\"#teaser\";s:9:\"edit-body\";s:16:\"#teaser_checkbox\";s:19:\"edit-teaser-include\";s:9:\"#disabled\";b:1;}s:14:\"teaser_include\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:25:\"Show summary in full view\";s:14:\"#default_value\";b:1;s:7:\"#prefix\";s:29:\"<div class=\"teaser-checkbox\">\";s:7:\"#suffix\";s:6:\"</div>\";}s:4:\"body\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:4:\"Body\";s:14:\"#default_value\";s:15:\"banner 2 - USPV\";s:5:\"#rows\";i:20;s:9:\"#required\";b:0;}s:6:\"format\";a:9:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:12:\"Input format\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:7:\"#weight\";N;s:17:\"#element_validate\";a:1:{i:0;s:20:\"filter_form_validate\";}i:1;a:7:{s:5:\"#type\";s:5:\"radio\";s:6:\"#title\";s:13:\"Filtered HTML\";s:14:\"#default_value\";s:1:\"1\";s:13:\"#return_value\";s:1:\"1\";s:8:\"#parents\";a:1:{i:0;s:6:\"format\";}s:12:\"#description\";s:306:\"<ul class=\"tips\"><li>Web page addresses and e-mail addresses turn into links automatically.</li><li>Allowed HTML tags: &lt;a&gt; &lt;em&gt; &lt;strong&gt; &lt;cite&gt; &lt;code&gt; &lt;ul&gt; &lt;ol&gt; &lt;li&gt; &lt;dl&gt; &lt;dt&gt; &lt;dd&gt;</li><li>Lines and paragraphs break automatically.</li></ul>\";s:3:\"#id\";s:13:\"edit-format-1\";}i:2;a:7:{s:5:\"#type\";s:5:\"radio\";s:6:\"#title\";s:9:\"Full HTML\";s:14:\"#default_value\";s:1:\"1\";s:13:\"#return_value\";s:1:\"2\";s:8:\"#parents\";a:1:{i:0;s:6:\"format\";}s:12:\"#description\";s:151:\"<ul class=\"tips\"><li>Web page addresses and e-mail addresses turn into links automatically.</li><li>Lines and paragraphs break automatically.</li></ul>\";s:3:\"#id\";s:13:\"edit-format-2\";}i:3;a:1:{s:6:\"#value\";s:90:\"<p><a href=\"/~uspvinc/main2/filter/tips\">More information about formatting options</a></p>\";}}}s:5:\"#node\";O:8:\"stdClass\":34:{s:3:\"nid\";s:1:\"8\";s:4:\"type\";s:6:\"banner\";s:8:\"language\";s:0:\"\";s:3:\"uid\";s:1:\"1\";s:6:\"status\";s:1:\"1\";s:7:\"created\";s:10:\"1265208624\";s:7:\"changed\";s:10:\"1265208624\";s:7:\"comment\";s:1:\"2\";s:7:\"promote\";s:1:\"1\";s:8:\"moderate\";s:1:\"0\";s:6:\"sticky\";s:1:\"0\";s:4:\"tnid\";s:1:\"0\";s:9:\"translate\";s:1:\"0\";s:3:\"vid\";s:1:\"8\";s:12:\"revision_uid\";s:1:\"1\";s:5:\"title\";s:15:\"banner 2 - USPV\";s:4:\"body\";s:15:\"banner 2 - USPV\";s:6:\"teaser\";s:15:\"banner 2 - USPV\";s:3:\"log\";N;s:18:\"revision_timestamp\";s:10:\"1265208624\";s:6:\"format\";s:1:\"1\";s:4:\"name\";s:5:\"admin\";s:7:\"picture\";s:0:\"\";s:4:\"data\";s:6:\"a:0:{}\";s:4:\"path\";s:20:\"banner/banner-2-uspv\";s:22:\"last_comment_timestamp\";s:10:\"1265208624\";s:17:\"last_comment_name\";N;s:13:\"comment_count\";s:1:\"0\";s:8:\"taxonomy\";a:0:{}s:4:\"iids\";a:1:{i:0;s:1:\"7\";}s:4:\"date\";s:25:\"2010-02-03 22:50:24 +0800\";s:8:\"revision\";b:0;s:4:\"menu\";a:48:{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:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:3:\"fit\";s:1:\"2\";s:12:\"number_parts\";s:1:\"2\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:5:\"about\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:4:\"type\";s:1:\"4\";s:14:\"block_callback\";s:0:\"\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"0\";s:4:\"file\";s:0:\"\";s:9:\"menu_name\";s:14:\"menu-main-menu\";s:4:\"mlid\";s:3:\"283\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/8\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:5:\"about\";s:7:\"options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:5:\"about\";}}s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"283\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:4:\"href\";s:6:\"node/8\";s:6:\"access\";b:1;s:17:\"localized_options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:5:\"about\";}}s:18:\"parent_depth_limit\";i:8;}s:22:\"pathauto_perform_alias\";b:1;}s:20:\"revision_information\";a:7:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:20:\"Revision information\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:7:\"#weight\";i:20;s:8:\"revision\";a:4:{s:7:\"#access\";b:1;s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:19:\"Create new revision\";s:14:\"#default_value\";b:0;}s:3:\"log\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:11:\"Log message\";s:14:\"#default_value\";s:0:\"\";s:5:\"#rows\";i:2;s:12:\"#description\";s:104:\"An explanation of the additions or updates being made to help other authors understand your motivations.\";}}s:6:\"author\";a:8:{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:7:\"#weight\";i:20;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:35:\"Leave blank for <em>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:91:\"Format: <em>2010-02-03 22:50:24 +0800</em>. Leave blank to use the time of form submission.\";s:14:\"#default_value\";s:25:\"2010-02-03 22:50:24 +0800\";}}s:7:\"options\";a:9:{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:7:\"#weight\";i:25;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:\"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\";s:1:\"0\";}}s:7:\"buttons\";a:3:{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:16:\"node_form_submit\";}}s:7:\"preview\";a:4:{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:2:{i:0;s:18:\"node_form_validate\";i:1;s:21:\"image_attach_validate\";}s:6:\"#theme\";a:2:{i:0;s:16:\"banner_node_form\";i:1;s:9:\"node_form\";}s:11:\"#parameters\";a:3:{i:0;s:16:\"banner_node_form\";i:1;a:3:{s:7:\"storage\";N;s:9:\"submitted\";b:0;s:4:\"post\";a:0:{}}i:2;r:83;}s:9:\"#build_id\";s:37:\"form-14285e215499e7f1d7c985f1f1495e3d\";s:5:\"#type\";s:4:\"form\";s:11:\"#programmed\";b:0;s:13:\"form_build_id\";a:4:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:37:\"form-14285e215499e7f1d7c985f1f1495e3d\";s:3:\"#id\";s:37:\"form-14285e215499e7f1d7c985f1f1495e3d\";s:5:\"#name\";s:13:\"form_build_id\";}s:6:\"#token\";s:16:\"banner_node_form\";s:10:\"form_token\";a:3:{s:3:\"#id\";s:32:\"edit-banner-node-form-form-token\";s:5:\"#type\";s:5:\"token\";s:14:\"#default_value\";s:32:\"07cec0c98582e0fd07a1adcfd62b388b\";}s:7:\"form_id\";a:3:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:16:\"banner_node_form\";s:3:\"#id\";s:21:\"edit-banner-node-form\";}s:12:\"#description\";N;s:11:\"#attributes\";a:1:{s:7:\"enctype\";s:19:\"multipart/form-data\";}s:9:\"#required\";b:0;s:5:\"#tree\";b:0;s:8:\"#parents\";a:0:{}s:7:\"#method\";s:4:\"post\";s:7:\"#action\";s:62:\"/~uspvinc/main2/node/8/edit?destination=admin%2Fcontent%2Fnode\";s:16:\"comment_settings\";a:7:{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:7:\"#weight\";i:30;s:7:\"comment\";a:4:{s:5:\"#type\";s:6:\"radios\";s:8:\"#parents\";a:1:{i:0;s:7:\"comment\";}s:14:\"#default_value\";s:1:\"2\";s:8:\"#options\";a:3:{i:0;s:8:\"Disabled\";i:1;s:9:\"Read only\";i:2;s:10:\"Read/Write\";}}}s:6:\"#cache\";b:1;s:4:\"menu\";a:21:{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:5:\"#tree\";b:1;s:7:\"#weight\";i:-2;s:11:\"#attributes\";a:1:{s:5:\"class\";s:14:\"menu-item-form\";}s:6:\"delete\";a:2:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:22:\"Delete this menu item.\";}s:4:\"mlid\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:3:\"283\";}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\";s:1:\"1\";}s:7:\"options\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:5:\"about\";}}}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:5:\"#item\";a:48:{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:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:3:\"fit\";s:1:\"2\";s:12:\"number_parts\";s:1:\"2\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:5:\"about\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:4:\"type\";s:1:\"4\";s:14:\"block_callback\";s:0:\"\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"0\";s:4:\"file\";s:0:\"\";s:9:\"menu_name\";s:14:\"menu-main-menu\";s:4:\"mlid\";s:3:\"283\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/8\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:5:\"about\";s:7:\"options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:5:\"about\";}}s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"283\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:4:\"href\";s:6:\"node/8\";s:6:\"access\";b:1;s:17:\"localized_options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:5:\"about\";}}s:18:\"parent_depth_limit\";i:8;}s:10:\"link_title\";a:5:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:15:\"Menu link title\";s:14:\"#default_value\";s:5:\"about\";s:12:\"#description\";s:133:\"The link text corresponding to this item that should appear in the menu. Leave blank if you do not wish to add this post to the menu.\";s:9:\"#required\";b:0;}s:6:\"parent\";a:6:{s:5:\"#type\";s:6:\"select\";s:6:\"#title\";s:11:\"Parent item\";s:14:\"#default_value\";s:16:\"menu-main-menu:0\";s:8:\"#options\";a:95:{s:16:\"menu-main-menu:0\";s:11:\"<Main Menu>\";s:18:\"menu-main-menu:284\";s:12:\"-- resources\";s:18:\"menu-main-menu:285\";s:11:\"-- services\";s:18:\"menu-main-menu:286\";s:17:\"-- special offers\";s:12:\"navigation:0\";s:12:\"<Navigation>\";s:12:\"navigation:9\";s:26:\"-- Compose tips (disabled)\";s:14:\"navigation:461\";s:29:\"-- Image galleries (disabled)\";s:13:\"navigation:21\";s:13:\"-- My account\";s:14:\"navigation:114\";s:20:\"-- Search (disabled)\";s:14:\"navigation:244\";s:22:\"-- Site map (disabled)\";s:13:\"navigation:11\";s:17:\"-- Create content\";s:14:\"navigation:476\";s:11:\"---- Banner\";s:14:\"navigation:441\";s:10:\"---- Image\";s:14:\"navigation:289\";s:21:\"---- Newsletter issue\";s:14:\"navigation:106\";s:9:\"---- Page\";s:14:\"navigation:388\";s:10:\"---- Panel\";s:14:\"navigation:107\";s:10:\"---- Story\";s:12:\"navigation:2\";s:13:\"-- Administer\";s:13:\"navigation:10\";s:23:\"---- Content management\";s:13:\"navigation:27\";s:15:\"------ Comments\";s:13:\"navigation:28\";s:14:\"------ Content\";s:13:\"navigation:29\";s:20:\"------ Content types\";s:14:\"navigation:462\";s:22:\"------ Image galleries\";s:14:\"navigation:463\";s:19:\"------ Image import\";s:14:\"navigation:538\";s:18:\"------ Newsletters\";s:14:\"navigation:546\";s:20:\"-------- Sent issues\";s:14:\"navigation:541\";s:21:\"-------- Draft issues\";s:14:\"navigation:544\";s:20:\"-------- Newsletters\";s:14:\"navigation:548\";s:22:\"-------- Subscriptions\";s:13:\"navigation:42\";s:20:\"------ Post settings\";s:13:\"navigation:43\";s:21:\"------ RSS publishing\";s:13:\"navigation:94\";s:15:\"------ Taxonomy\";s:13:\"navigation:17\";s:18:\"---- Site building\";s:13:\"navigation:25\";s:13:\"------ Blocks\";s:14:\"navigation:424\";s:20:\"------ Bulk Exporter\";s:13:\"navigation:38\";s:12:\"------ Menus\";s:14:\"navigation:282\";s:18:\"-------- Main Menu\";s:13:\"navigation:89\";s:19:\"-------- Navigation\";s:13:\"navigation:90\";s:22:\"-------- Primary links\";s:14:\"navigation:495\";s:19:\"-------- Right Menu\";s:13:\"navigation:91\";s:24:\"-------- Secondary links\";s:14:\"navigation:387\";s:18:\"------ Mini panels\";s:13:\"navigation:39\";s:14:\"------ Modules\";s:14:\"navigation:412\";s:12:\"------ Pages\";s:14:\"navigation:360\";s:13:\"------ Panels\";s:13:\"navigation:49\";s:13:\"------ Themes\";s:14:\"navigation:335\";s:15:\"------ Triggers\";s:14:\"navigation:501\";s:18:\"------ URL aliases\";s:14:\"navigation:257\";s:12:\"------ Views\";s:13:\"navigation:18\";s:23:\"---- Site configuration\";s:13:\"navigation:23\";s:14:\"------ Actions\";s:14:\"navigation:119\";s:26:\"------ Administration menu\";s:13:\"navigation:24\";s:27:\"------ Administration theme\";s:13:\"navigation:26\";s:17:\"------ Clean URLs\";s:13:\"navigation:30\";s:20:\"------ Date and time\";s:13:\"navigation:33\";s:22:\"------ Error reporting\";s:13:\"navigation:34\";s:18:\"------ File system\";s:13:\"navigation:35\";s:20:\"------ Image toolkit\";s:14:\"navigation:442\";s:13:\"------ Images\";s:13:\"navigation:36\";s:20:\"------ Input formats\";s:13:\"navigation:37\";s:25:\"------ Logging and alerts\";s:14:\"navigation:100\";s:25:\"-------- Database logging\";s:14:\"navigation:245\";s:17:\"------ Nice Menus\";s:13:\"navigation:40\";s:18:\"------ Performance\";s:14:\"navigation:120\";s:22:\"------ Search settings\";s:14:\"navigation:539\";s:17:\"------ Simplenews\";s:14:\"navigation:542\";s:16:\"-------- General\";s:14:\"navigation:543\";s:19:\"-------- Newsletter\";s:14:\"navigation:547\";s:21:\"-------- Subscription\";s:14:\"navigation:545\";s:18:\"-------- Send mail\";s:13:\"navigation:46\";s:23:\"------ Site information\";s:13:\"navigation:47\";s:23:\"------ Site maintenance\";s:14:\"navigation:246\";s:15:\"------ Site map\";s:13:\"navigation:20\";s:20:\"---- User management\";s:13:\"navigation:22\";s:19:\"------ Access rules\";s:13:\"navigation:41\";s:18:\"------ Permissions\";s:13:\"navigation:45\";s:12:\"------ Roles\";s:13:\"navigation:50\";s:20:\"------ User settings\";s:13:\"navigation:51\";s:12:\"------ Users\";s:13:\"navigation:16\";s:12:\"---- Reports\";s:13:\"navigation:93\";s:25:\"------ Recent log entries\";s:13:\"navigation:96\";s:33:\"------ Top \'access denied\' errors\";s:13:\"navigation:97\";s:34:\"------ Top \'page not found\' errors\";s:14:\"navigation:121\";s:25:\"------ Top search phrases\";s:14:\"navigation:105\";s:24:\"------ Available updates\";s:13:\"navigation:48\";s:20:\"------ Status report\";s:13:\"navigation:15\";s:9:\"---- Help\";s:12:\"navigation:4\";s:10:\"-- Log out\";s:15:\"primary-links:0\";s:15:\"<Primary links>\";s:17:\"menu-right-menu:0\";s:12:\"<Right Menu>\";s:19:\"menu-right-menu:496\";s:28:\"-- Financial Calculator Tool\";s:19:\"menu-right-menu:497\";s:21:\"-- News Story Library\";s:19:\"menu-right-menu:498\";s:14:\"-- Latest News\";s:19:\"menu-right-menu:499\";s:25:\"-- SREC Management Portal\";s:17:\"secondary-links:0\";s:17:\"<Secondary links>\";}s:12:\"#description\";s:156:\"The maximum depth for an item and all its children is fixed at 9. Some menu items may not be available as parents if selecting them would exceed this limit.\";s:11:\"#attributes\";a:1:{s:5:\"class\";s:17:\"menu-title-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:1:\"0\";s:12:\"#description\";s:107:\"Optional. In the menu, the heavier items will sink and the lighter items will be positioned nearer the top.\";}}s:7:\"#submit\";a:2:{i:0;s:21:\"menu_node_form_submit\";i:1;s:29:\"image_attach_node_form_submit\";}s:4:\"path\";a:10:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:17:\"URL path settings\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:0;s:7:\"#access\";b:1;s:7:\"#weight\";i:30;s:4:\"path\";a:6:{s:5:\"#type\";s:9:\"textfield\";s:14:\"#default_value\";s:20:\"banner/banner-2-uspv\";s:10:\"#maxlength\";i:128;s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:12:\"#description\";s:207:\"Optionally specify an alternative URL by which this node 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\";s:1:\"8\";}s:22:\"pathauto_perform_alias\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:15:\"Automatic alias\";s:14:\"#default_value\";b:1;s:12:\"#description\";s:238:\"An alias will be generated for you. If you wish to create your own alias below, uncheck this option. To control the format of the generated aliases, see the <a href=\"/~uspvinc/main2/admin/build/path/pathauto\">automated alias settings</a>.\";s:7:\"#weight\";i:-1;}s:9:\"old_alias\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:20:\"banner/banner-2-uspv\";}}s:11:\"#pre_render\";a:1:{i:0;s:27:\"content_alter_extra_weights\";}s:21:\"#content_extra_fields\";a:7:{s:5:\"title\";a:3:{s:5:\"label\";s:5:\"Title\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";s:2:\"-5\";}s:10:\"body_field\";a:4:{s:5:\"label\";s:4:\"Body\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";s:2:\"-2\";s:4:\"view\";s:4:\"body\";}s:20:\"revision_information\";a:3:{s:5:\"label\";s:20:\"Revision information\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";s:2:\"-1\";}s:16:\"comment_settings\";a:3:{s:5:\"label\";s:16:\"Comment settings\";s:11:\"description\";s:20:\"Comment module form.\";s:6:\"weight\";s:1:\"0\";}s:4:\"menu\";a:3:{s:5:\"label\";s:13:\"Menu settings\";s:11:\"description\";s:17:\"Menu module form.\";s:6:\"weight\";s:2:\"-4\";}s:4:\"path\";a:3:{s:5:\"label\";s:13:\"Path settings\";s:11:\"description\";s:17:\"Path module form.\";s:6:\"weight\";i:30;}s:12:\"image_attach\";a:3:{s:5:\"label\";s:15:\"Attached images\";s:11:\"description\";s:25:\"Image Attach module form.\";s:6:\"weight\";s:2:\"-3\";}}s:12:\"image_attach\";a:10:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:15:\"Attached images\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:0;s:12:\"#description\";s:23:\"You may attach 1 image.\";s:15:\"image_thumbnail\";a:1:{i:7;a:3:{s:5:\"#type\";s:4:\"item\";s:6:\"#title\";s:9:\"Thumbnail\";s:6:\"#value\";s:210:\"<img src=\"http://www.powerstormtech.com/~uspvinc/main2/sites/default/files/images/banner-2.thumbnail.png\" alt=\"banner 2 - USPV\" title=\"banner 2 - USPV\"  class=\"image image-thumbnail \" width=\"100\" height=\"36\" />\";}}s:4:\"iids\";a:7:{s:5:\"#type\";s:6:\"select\";s:14:\"#default_value\";a:1:{i:0;s:1:\"7\";}s:9:\"#multiple\";b:1;s:5:\"#size\";i:6;s:6:\"#title\";s:15:\"Existing images\";s:8:\"#options\";a:4:{i:0;s:8:\"- None -\";i:1;s:15:\"banner 1 - USPV\";i:7;s:15:\"banner 2 - USPV\";i:9;s:15:\"banner 3 - USPV\";}s:12:\"#description\";s:54:\"Choose existing images if you do not upload a new one.\";}s:5:\"image\";a:2:{s:5:\"#type\";s:4:\"file\";s:6:\"#title\";s:12:\"Upload image\";}s:11:\"image_title\";a:4:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:11:\"Image title\";s:14:\"#default_value\";s:0:\"\";s:12:\"#description\";s:72:\"The title the image will be shown with. Leave blank to use the filename.\";}s:21:\"image_attach_multiple\";a:4:{s:5:\"#type\";s:6:\"submit\";s:6:\"#value\";s:6:\"Attach\";s:9:\"#validate\";a:1:{i:0;s:21:\"image_attach_validate\";}s:7:\"#submit\";a:1:{i:0;s:29:\"image_attach_image_add_submit\";}}}s:12:\"#cache_token\";s:32:\"ea05954e6208c2bed552f97e30d1dad3\";}',1285725575,1285703975,'',1),('form_form-a75228da75003502dc90a1451389786a','a:41:{s:3:\"#id\";s:9:\"node-form\";s:3:\"nid\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:1:\"2\";}s:3:\"vid\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:1:\"2\";}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:\"1265112144\";}s:4:\"type\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:6:\"banner\";}s:8:\"language\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:0:\"\";}s:7:\"changed\";a:2:{s:5:\"#type\";s:6:\"hidden\";s:14:\"#default_value\";s:10:\"1265112144\";}s:5:\"title\";a:6:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:5:\"Title\";s:9:\"#required\";b:1;s:14:\"#default_value\";s:15:\"Banner 1 - USPV\";s:10:\"#maxlength\";i:255;s:7:\"#weight\";i:-5;}s:10:\"body_field\";a:7:{s:12:\"#after_build\";a:2:{i:0;s:14:\"node_teaser_js\";i:1;s:26:\"node_teaser_include_verify\";}s:7:\"#prefix\";s:32:\"<div class=\"body-field-wrapper\">\";s:7:\"#suffix\";s:6:\"</div>\";s:9:\"teaser_js\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:5:\"#rows\";i:10;s:7:\"#teaser\";s:9:\"edit-body\";s:16:\"#teaser_checkbox\";s:19:\"edit-teaser-include\";s:9:\"#disabled\";b:1;}s:14:\"teaser_include\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:25:\"Show summary in full view\";s:14:\"#default_value\";b:1;s:7:\"#prefix\";s:29:\"<div class=\"teaser-checkbox\">\";s:7:\"#suffix\";s:6:\"</div>\";}s:4:\"body\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:4:\"Body\";s:14:\"#default_value\";s:13:\"banner 1 USPV\";s:5:\"#rows\";i:20;s:9:\"#required\";b:0;}s:6:\"format\";a:9:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:12:\"Input format\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:7:\"#weight\";N;s:17:\"#element_validate\";a:1:{i:0;s:20:\"filter_form_validate\";}i:1;a:7:{s:5:\"#type\";s:5:\"radio\";s:6:\"#title\";s:13:\"Filtered HTML\";s:14:\"#default_value\";s:1:\"1\";s:13:\"#return_value\";s:1:\"1\";s:8:\"#parents\";a:1:{i:0;s:6:\"format\";}s:12:\"#description\";s:306:\"<ul class=\"tips\"><li>Web page addresses and e-mail addresses turn into links automatically.</li><li>Allowed HTML tags: &lt;a&gt; &lt;em&gt; &lt;strong&gt; &lt;cite&gt; &lt;code&gt; &lt;ul&gt; &lt;ol&gt; &lt;li&gt; &lt;dl&gt; &lt;dt&gt; &lt;dd&gt;</li><li>Lines and paragraphs break automatically.</li></ul>\";s:3:\"#id\";s:13:\"edit-format-1\";}i:2;a:7:{s:5:\"#type\";s:5:\"radio\";s:6:\"#title\";s:9:\"Full HTML\";s:14:\"#default_value\";s:1:\"1\";s:13:\"#return_value\";s:1:\"2\";s:8:\"#parents\";a:1:{i:0;s:6:\"format\";}s:12:\"#description\";s:151:\"<ul class=\"tips\"><li>Web page addresses and e-mail addresses turn into links automatically.</li><li>Lines and paragraphs break automatically.</li></ul>\";s:3:\"#id\";s:13:\"edit-format-2\";}i:3;a:1:{s:6:\"#value\";s:90:\"<p><a href=\"/~uspvinc/main2/filter/tips\">More information about formatting options</a></p>\";}}}s:5:\"#node\";O:8:\"stdClass\":34:{s:3:\"nid\";s:1:\"2\";s:4:\"type\";s:6:\"banner\";s:8:\"language\";s:0:\"\";s:3:\"uid\";s:1:\"1\";s:6:\"status\";s:1:\"1\";s:7:\"created\";s:10:\"1265112144\";s:7:\"changed\";s:10:\"1265112144\";s:7:\"comment\";s:1:\"2\";s:7:\"promote\";s:1:\"1\";s:8:\"moderate\";s:1:\"0\";s:6:\"sticky\";s:1:\"0\";s:4:\"tnid\";s:1:\"0\";s:9:\"translate\";s:1:\"0\";s:3:\"vid\";s:1:\"2\";s:12:\"revision_uid\";s:1:\"1\";s:5:\"title\";s:15:\"Banner 1 - USPV\";s:4:\"body\";s:13:\"banner 1 USPV\";s:6:\"teaser\";s:13:\"banner 1 USPV\";s:3:\"log\";N;s:18:\"revision_timestamp\";s:10:\"1265112144\";s:6:\"format\";s:1:\"1\";s:4:\"name\";s:5:\"admin\";s:7:\"picture\";s:0:\"\";s:4:\"data\";s:6:\"a:0:{}\";s:4:\"path\";s:20:\"banner/banner-1-uspv\";s:22:\"last_comment_timestamp\";s:10:\"1265112144\";s:17:\"last_comment_name\";N;s:13:\"comment_count\";s:1:\"0\";s:8:\"taxonomy\";a:0:{}s:4:\"iids\";a:1:{i:0;s:1:\"1\";}s:4:\"date\";s:25:\"2010-02-02 20:02:24 +0800\";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:13:\"primary-links\";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:22:\"pathauto_perform_alias\";b:1;}s:20:\"revision_information\";a:7:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:20:\"Revision information\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:7:\"#weight\";i:20;s:8:\"revision\";a:4:{s:7:\"#access\";b:1;s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:19:\"Create new revision\";s:14:\"#default_value\";b:0;}s:3:\"log\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:11:\"Log message\";s:14:\"#default_value\";s:0:\"\";s:5:\"#rows\";i:2;s:12:\"#description\";s:104:\"An explanation of the additions or updates being made to help other authors understand your motivations.\";}}s:6:\"author\";a:8:{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:7:\"#weight\";i:20;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:35:\"Leave blank for <em>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:91:\"Format: <em>2010-02-02 20:02:24 +0800</em>. Leave blank to use the time of form submission.\";s:14:\"#default_value\";s:25:\"2010-02-02 20:02:24 +0800\";}}s:7:\"options\";a:9:{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:7:\"#weight\";i:25;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:\"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\";s:1:\"0\";}}s:7:\"buttons\";a:3:{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:16:\"node_form_submit\";}}s:7:\"preview\";a:4:{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:2:{i:0;s:18:\"node_form_validate\";i:1;s:21:\"image_attach_validate\";}s:6:\"#theme\";a:2:{i:0;s:16:\"banner_node_form\";i:1;s:9:\"node_form\";}s:11:\"#parameters\";a:3:{i:0;s:16:\"banner_node_form\";i:1;a:3:{s:7:\"storage\";N;s:9:\"submitted\";b:0;s:4:\"post\";a:0:{}}i:2;r:83;}s:9:\"#build_id\";s:37:\"form-a75228da75003502dc90a1451389786a\";s:5:\"#type\";s:4:\"form\";s:11:\"#programmed\";b:0;s:13:\"form_build_id\";a:4:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:37:\"form-a75228da75003502dc90a1451389786a\";s:3:\"#id\";s:37:\"form-a75228da75003502dc90a1451389786a\";s:5:\"#name\";s:13:\"form_build_id\";}s:6:\"#token\";s:16:\"banner_node_form\";s:10:\"form_token\";a:3:{s:3:\"#id\";s:32:\"edit-banner-node-form-form-token\";s:5:\"#type\";s:5:\"token\";s:14:\"#default_value\";s:32:\"07cec0c98582e0fd07a1adcfd62b388b\";}s:7:\"form_id\";a:3:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:16:\"banner_node_form\";s:3:\"#id\";s:21:\"edit-banner-node-form\";}s:12:\"#description\";N;s:11:\"#attributes\";a:1:{s:7:\"enctype\";s:19:\"multipart/form-data\";}s:9:\"#required\";b:0;s:5:\"#tree\";b:0;s:8:\"#parents\";a:0:{}s:7:\"#method\";s:4:\"post\";s:7:\"#action\";s:62:\"/~uspvinc/main2/node/2/edit?destination=admin%2Fcontent%2Fnode\";s:16:\"comment_settings\";a:7:{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:7:\"#weight\";i:30;s:7:\"comment\";a:4:{s:5:\"#type\";s:6:\"radios\";s:8:\"#parents\";a:1:{i:0;s:7:\"comment\";}s:14:\"#default_value\";s:1:\"2\";s:8:\"#options\";a:3:{i:0;s:8:\"Disabled\";i:1;s:9:\"Read only\";i:2;s:10:\"Read/Write\";}}}s:6:\"#cache\";b:1;s:4:\"menu\";a:20:{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:5:\"#tree\";b:1;s:7:\"#weight\";i:-2;s:11:\"#attributes\";a:1:{s:5:\"class\";s:14:\"menu-item-form\";}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:0;}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:5:\"#item\";a:12:{s:10:\"link_title\";s:0:\"\";s:4:\"mlid\";i:0;s:4:\"plid\";i:0;s:9:\"menu_name\";s:13:\"primary-links\";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:10:\"link_title\";a:5:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:15:\"Menu link title\";s:14:\"#default_value\";s:0:\"\";s:12:\"#description\";s:133:\"The link text corresponding to this item that should appear in the menu. Leave blank if you do not wish to add this post to the menu.\";s:9:\"#required\";b:0;}s:6:\"parent\";a:6:{s:5:\"#type\";s:6:\"select\";s:6:\"#title\";s:11:\"Parent item\";s:14:\"#default_value\";s:15:\"primary-links:0\";s:8:\"#options\";a:96:{s:16:\"menu-main-menu:0\";s:11:\"<Main Menu>\";s:18:\"menu-main-menu:283\";s:8:\"-- about\";s:18:\"menu-main-menu:284\";s:12:\"-- resources\";s:18:\"menu-main-menu:285\";s:11:\"-- services\";s:18:\"menu-main-menu:286\";s:17:\"-- special offers\";s:12:\"navigation:0\";s:12:\"<Navigation>\";s:12:\"navigation:9\";s:26:\"-- Compose tips (disabled)\";s:14:\"navigation:461\";s:29:\"-- Image galleries (disabled)\";s:13:\"navigation:21\";s:13:\"-- My account\";s:14:\"navigation:114\";s:20:\"-- Search (disabled)\";s:14:\"navigation:244\";s:22:\"-- Site map (disabled)\";s:13:\"navigation:11\";s:17:\"-- Create content\";s:14:\"navigation:476\";s:11:\"---- Banner\";s:14:\"navigation:441\";s:10:\"---- Image\";s:14:\"navigation:289\";s:21:\"---- Newsletter issue\";s:14:\"navigation:106\";s:9:\"---- Page\";s:14:\"navigation:388\";s:10:\"---- Panel\";s:14:\"navigation:107\";s:10:\"---- Story\";s:12:\"navigation:2\";s:13:\"-- Administer\";s:13:\"navigation:10\";s:23:\"---- Content management\";s:13:\"navigation:27\";s:15:\"------ Comments\";s:13:\"navigation:28\";s:14:\"------ Content\";s:13:\"navigation:29\";s:20:\"------ Content types\";s:14:\"navigation:462\";s:22:\"------ Image galleries\";s:14:\"navigation:463\";s:19:\"------ Image import\";s:14:\"navigation:538\";s:18:\"------ Newsletters\";s:14:\"navigation:546\";s:20:\"-------- Sent issues\";s:14:\"navigation:541\";s:21:\"-------- Draft issues\";s:14:\"navigation:544\";s:20:\"-------- Newsletters\";s:14:\"navigation:548\";s:22:\"-------- Subscriptions\";s:13:\"navigation:42\";s:20:\"------ Post settings\";s:13:\"navigation:43\";s:21:\"------ RSS publishing\";s:13:\"navigation:94\";s:15:\"------ Taxonomy\";s:13:\"navigation:17\";s:18:\"---- Site building\";s:13:\"navigation:25\";s:13:\"------ Blocks\";s:14:\"navigation:424\";s:20:\"------ Bulk Exporter\";s:13:\"navigation:38\";s:12:\"------ Menus\";s:14:\"navigation:282\";s:18:\"-------- Main Menu\";s:13:\"navigation:89\";s:19:\"-------- Navigation\";s:13:\"navigation:90\";s:22:\"-------- Primary links\";s:14:\"navigation:495\";s:19:\"-------- Right Menu\";s:13:\"navigation:91\";s:24:\"-------- Secondary links\";s:14:\"navigation:387\";s:18:\"------ Mini panels\";s:13:\"navigation:39\";s:14:\"------ Modules\";s:14:\"navigation:412\";s:12:\"------ Pages\";s:14:\"navigation:360\";s:13:\"------ Panels\";s:13:\"navigation:49\";s:13:\"------ Themes\";s:14:\"navigation:335\";s:15:\"------ Triggers\";s:14:\"navigation:501\";s:18:\"------ URL aliases\";s:14:\"navigation:257\";s:12:\"------ Views\";s:13:\"navigation:18\";s:23:\"---- Site configuration\";s:13:\"navigation:23\";s:14:\"------ Actions\";s:14:\"navigation:119\";s:26:\"------ Administration menu\";s:13:\"navigation:24\";s:27:\"------ Administration theme\";s:13:\"navigation:26\";s:17:\"------ Clean URLs\";s:13:\"navigation:30\";s:20:\"------ Date and time\";s:13:\"navigation:33\";s:22:\"------ Error reporting\";s:13:\"navigation:34\";s:18:\"------ File system\";s:13:\"navigation:35\";s:20:\"------ Image toolkit\";s:14:\"navigation:442\";s:13:\"------ Images\";s:13:\"navigation:36\";s:20:\"------ Input formats\";s:13:\"navigation:37\";s:25:\"------ Logging and alerts\";s:14:\"navigation:100\";s:25:\"-------- Database logging\";s:14:\"navigation:245\";s:17:\"------ Nice Menus\";s:13:\"navigation:40\";s:18:\"------ Performance\";s:14:\"navigation:120\";s:22:\"------ Search settings\";s:14:\"navigation:539\";s:17:\"------ Simplenews\";s:14:\"navigation:542\";s:16:\"-------- General\";s:14:\"navigation:543\";s:19:\"-------- Newsletter\";s:14:\"navigation:547\";s:21:\"-------- Subscription\";s:14:\"navigation:545\";s:18:\"-------- Send mail\";s:13:\"navigation:46\";s:23:\"------ Site information\";s:13:\"navigation:47\";s:23:\"------ Site maintenance\";s:14:\"navigation:246\";s:15:\"------ Site map\";s:13:\"navigation:20\";s:20:\"---- User management\";s:13:\"navigation:22\";s:19:\"------ Access rules\";s:13:\"navigation:41\";s:18:\"------ Permissions\";s:13:\"navigation:45\";s:12:\"------ Roles\";s:13:\"navigation:50\";s:20:\"------ User settings\";s:13:\"navigation:51\";s:12:\"------ Users\";s:13:\"navigation:16\";s:12:\"---- Reports\";s:13:\"navigation:93\";s:25:\"------ Recent log entries\";s:13:\"navigation:96\";s:33:\"------ Top \'access denied\' errors\";s:13:\"navigation:97\";s:34:\"------ Top \'page not found\' errors\";s:14:\"navigation:121\";s:25:\"------ Top search phrases\";s:14:\"navigation:105\";s:24:\"------ Available updates\";s:13:\"navigation:48\";s:20:\"------ Status report\";s:13:\"navigation:15\";s:9:\"---- Help\";s:12:\"navigation:4\";s:10:\"-- Log out\";s:15:\"primary-links:0\";s:15:\"<Primary links>\";s:17:\"menu-right-menu:0\";s:12:\"<Right Menu>\";s:19:\"menu-right-menu:496\";s:28:\"-- Financial Calculator Tool\";s:19:\"menu-right-menu:497\";s:21:\"-- News Story Library\";s:19:\"menu-right-menu:498\";s:14:\"-- Latest News\";s:19:\"menu-right-menu:499\";s:25:\"-- SREC Management Portal\";s:17:\"secondary-links:0\";s:17:\"<Secondary links>\";}s:12:\"#description\";s:156:\"The maximum depth for an item and all its children is fixed at 9. Some menu items may not be available as parents if selecting them would exceed this limit.\";s:11:\"#attributes\";a:1:{s:5:\"class\";s:17:\"menu-title-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:107:\"Optional. In the menu, the heavier items will sink and the lighter items will be positioned nearer the top.\";}}s:7:\"#submit\";a:2:{i:0;s:21:\"menu_node_form_submit\";i:1;s:29:\"image_attach_node_form_submit\";}s:4:\"path\";a:10:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:17:\"URL path settings\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:0;s:7:\"#access\";b:1;s:7:\"#weight\";i:30;s:4:\"path\";a:6:{s:5:\"#type\";s:9:\"textfield\";s:14:\"#default_value\";s:20:\"banner/banner-1-uspv\";s:10:\"#maxlength\";i:128;s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:12:\"#description\";s:207:\"Optionally specify an alternative URL by which this node 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\";s:1:\"2\";}s:22:\"pathauto_perform_alias\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:15:\"Automatic alias\";s:14:\"#default_value\";b:1;s:12:\"#description\";s:238:\"An alias will be generated for you. If you wish to create your own alias below, uncheck this option. To control the format of the generated aliases, see the <a href=\"/~uspvinc/main2/admin/build/path/pathauto\">automated alias settings</a>.\";s:7:\"#weight\";i:-1;}s:9:\"old_alias\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:20:\"banner/banner-1-uspv\";}}s:11:\"#pre_render\";a:1:{i:0;s:27:\"content_alter_extra_weights\";}s:21:\"#content_extra_fields\";a:7:{s:5:\"title\";a:3:{s:5:\"label\";s:5:\"Title\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";s:2:\"-5\";}s:10:\"body_field\";a:4:{s:5:\"label\";s:4:\"Body\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";s:2:\"-2\";s:4:\"view\";s:4:\"body\";}s:20:\"revision_information\";a:3:{s:5:\"label\";s:20:\"Revision information\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";s:2:\"-1\";}s:16:\"comment_settings\";a:3:{s:5:\"label\";s:16:\"Comment settings\";s:11:\"description\";s:20:\"Comment module form.\";s:6:\"weight\";s:1:\"0\";}s:4:\"menu\";a:3:{s:5:\"label\";s:13:\"Menu settings\";s:11:\"description\";s:17:\"Menu module form.\";s:6:\"weight\";s:2:\"-4\";}s:4:\"path\";a:3:{s:5:\"label\";s:13:\"Path settings\";s:11:\"description\";s:17:\"Path module form.\";s:6:\"weight\";i:30;}s:12:\"image_attach\";a:3:{s:5:\"label\";s:15:\"Attached images\";s:11:\"description\";s:25:\"Image Attach module form.\";s:6:\"weight\";s:2:\"-3\";}}s:12:\"image_attach\";a:10:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:15:\"Attached images\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:0;s:12:\"#description\";s:23:\"You may attach 1 image.\";s:15:\"image_thumbnail\";a:1:{i:1;a:3:{s:5:\"#type\";s:4:\"item\";s:6:\"#title\";s:9:\"Thumbnail\";s:6:\"#value\";s:210:\"<img src=\"http://www.powerstormtech.com/~uspvinc/main2/sites/default/files/images/banner-1.thumbnail.png\" alt=\"banner 1 - USPV\" title=\"banner 1 - USPV\"  class=\"image image-thumbnail \" width=\"100\" height=\"36\" />\";}}s:4:\"iids\";a:7:{s:5:\"#type\";s:6:\"select\";s:14:\"#default_value\";a:1:{i:0;s:1:\"1\";}s:9:\"#multiple\";b:1;s:5:\"#size\";i:6;s:6:\"#title\";s:15:\"Existing images\";s:8:\"#options\";a:4:{i:0;s:8:\"- None -\";i:1;s:15:\"banner 1 - USPV\";i:7;s:15:\"banner 2 - USPV\";i:9;s:15:\"banner 3 - USPV\";}s:12:\"#description\";s:54:\"Choose existing images if you do not upload a new one.\";}s:5:\"image\";a:2:{s:5:\"#type\";s:4:\"file\";s:6:\"#title\";s:12:\"Upload image\";}s:11:\"image_title\";a:4:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:11:\"Image title\";s:14:\"#default_value\";s:0:\"\";s:12:\"#description\";s:72:\"The title the image will be shown with. Leave blank to use the filename.\";}s:21:\"image_attach_multiple\";a:4:{s:5:\"#type\";s:6:\"submit\";s:6:\"#value\";s:6:\"Attach\";s:9:\"#validate\";a:1:{i:0;s:21:\"image_attach_validate\";}s:7:\"#submit\";a:1:{i:0;s:29:\"image_attach_image_add_submit\";}}}s:12:\"#cache_token\";s:32:\"ea05954e6208c2bed552f97e30d1dad3\";}',1285725588,1285703988,'',1),('form_form-ffbf6c1a81338e3a8ec2d5edc810db14','a:41:{s:3:\"#id\";s:9:\"node-form\";s:3:\"nid\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:2:\"10\";}s:3:\"vid\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:2:\"10\";}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:\"1265208654\";}s:4:\"type\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:6:\"banner\";}s:8:\"language\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:0:\"\";}s:7:\"changed\";a:2:{s:5:\"#type\";s:6:\"hidden\";s:14:\"#default_value\";s:10:\"1265208654\";}s:5:\"title\";a:6:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:5:\"Title\";s:9:\"#required\";b:1;s:14:\"#default_value\";s:15:\"banner 3 - USPV\";s:10:\"#maxlength\";i:255;s:7:\"#weight\";i:-5;}s:10:\"body_field\";a:7:{s:12:\"#after_build\";a:2:{i:0;s:14:\"node_teaser_js\";i:1;s:26:\"node_teaser_include_verify\";}s:7:\"#prefix\";s:32:\"<div class=\"body-field-wrapper\">\";s:7:\"#suffix\";s:6:\"</div>\";s:9:\"teaser_js\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:5:\"#rows\";i:10;s:7:\"#teaser\";s:9:\"edit-body\";s:16:\"#teaser_checkbox\";s:19:\"edit-teaser-include\";s:9:\"#disabled\";b:1;}s:14:\"teaser_include\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:25:\"Show summary in full view\";s:14:\"#default_value\";b:1;s:7:\"#prefix\";s:29:\"<div class=\"teaser-checkbox\">\";s:7:\"#suffix\";s:6:\"</div>\";}s:4:\"body\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:4:\"Body\";s:14:\"#default_value\";s:15:\"banner 2 - USPV\";s:5:\"#rows\";i:20;s:9:\"#required\";b:0;}s:6:\"format\";a:9:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:12:\"Input format\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:7:\"#weight\";N;s:17:\"#element_validate\";a:1:{i:0;s:20:\"filter_form_validate\";}i:1;a:7:{s:5:\"#type\";s:5:\"radio\";s:6:\"#title\";s:13:\"Filtered HTML\";s:14:\"#default_value\";s:1:\"1\";s:13:\"#return_value\";s:1:\"1\";s:8:\"#parents\";a:1:{i:0;s:6:\"format\";}s:12:\"#description\";s:306:\"<ul class=\"tips\"><li>Web page addresses and e-mail addresses turn into links automatically.</li><li>Allowed HTML tags: &lt;a&gt; &lt;em&gt; &lt;strong&gt; &lt;cite&gt; &lt;code&gt; &lt;ul&gt; &lt;ol&gt; &lt;li&gt; &lt;dl&gt; &lt;dt&gt; &lt;dd&gt;</li><li>Lines and paragraphs break automatically.</li></ul>\";s:3:\"#id\";s:13:\"edit-format-1\";}i:2;a:7:{s:5:\"#type\";s:5:\"radio\";s:6:\"#title\";s:9:\"Full HTML\";s:14:\"#default_value\";s:1:\"1\";s:13:\"#return_value\";s:1:\"2\";s:8:\"#parents\";a:1:{i:0;s:6:\"format\";}s:12:\"#description\";s:151:\"<ul class=\"tips\"><li>Web page addresses and e-mail addresses turn into links automatically.</li><li>Lines and paragraphs break automatically.</li></ul>\";s:3:\"#id\";s:13:\"edit-format-2\";}i:3;a:1:{s:6:\"#value\";s:90:\"<p><a href=\"/~uspvinc/main2/filter/tips\">More information about formatting options</a></p>\";}}}s:5:\"#node\";O:8:\"stdClass\":34:{s:3:\"nid\";s:2:\"10\";s:4:\"type\";s:6:\"banner\";s:8:\"language\";s:0:\"\";s:3:\"uid\";s:1:\"1\";s:6:\"status\";s:1:\"1\";s:7:\"created\";s:10:\"1265208654\";s:7:\"changed\";s:10:\"1265208654\";s:7:\"comment\";s:1:\"2\";s:7:\"promote\";s:1:\"1\";s:8:\"moderate\";s:1:\"0\";s:6:\"sticky\";s:1:\"0\";s:4:\"tnid\";s:1:\"0\";s:9:\"translate\";s:1:\"0\";s:3:\"vid\";s:2:\"10\";s:12:\"revision_uid\";s:1:\"1\";s:5:\"title\";s:15:\"banner 3 - USPV\";s:4:\"body\";s:15:\"banner 2 - USPV\";s:6:\"teaser\";s:15:\"banner 2 - USPV\";s:3:\"log\";N;s:18:\"revision_timestamp\";s:10:\"1265208654\";s:6:\"format\";s:1:\"1\";s:4:\"name\";s:5:\"admin\";s:7:\"picture\";s:0:\"\";s:4:\"data\";s:6:\"a:0:{}\";s:4:\"path\";s:20:\"banner/banner-3-uspv\";s:22:\"last_comment_timestamp\";s:10:\"1265208654\";s:17:\"last_comment_name\";N;s:13:\"comment_count\";s:1:\"0\";s:8:\"taxonomy\";a:0:{}s:4:\"iids\";a:1:{i:0;s:1:\"9\";}s:4:\"date\";s:25:\"2010-02-03 22:50:54 +0800\";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:13:\"primary-links\";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:22:\"pathauto_perform_alias\";b:1;}s:20:\"revision_information\";a:7:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:20:\"Revision information\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:7:\"#weight\";i:20;s:8:\"revision\";a:4:{s:7:\"#access\";b:1;s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:19:\"Create new revision\";s:14:\"#default_value\";b:0;}s:3:\"log\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:11:\"Log message\";s:14:\"#default_value\";s:0:\"\";s:5:\"#rows\";i:2;s:12:\"#description\";s:104:\"An explanation of the additions or updates being made to help other authors understand your motivations.\";}}s:6:\"author\";a:8:{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:7:\"#weight\";i:20;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:35:\"Leave blank for <em>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:91:\"Format: <em>2010-02-03 22:50:54 +0800</em>. Leave blank to use the time of form submission.\";s:14:\"#default_value\";s:25:\"2010-02-03 22:50:54 +0800\";}}s:7:\"options\";a:9:{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:7:\"#weight\";i:25;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:\"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\";s:1:\"0\";}}s:7:\"buttons\";a:3:{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:16:\"node_form_submit\";}}s:7:\"preview\";a:4:{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:2:{i:0;s:18:\"node_form_validate\";i:1;s:21:\"image_attach_validate\";}s:6:\"#theme\";a:2:{i:0;s:16:\"banner_node_form\";i:1;s:9:\"node_form\";}s:11:\"#parameters\";a:3:{i:0;s:16:\"banner_node_form\";i:1;a:3:{s:7:\"storage\";N;s:9:\"submitted\";b:0;s:4:\"post\";a:0:{}}i:2;r:83;}s:9:\"#build_id\";s:37:\"form-ffbf6c1a81338e3a8ec2d5edc810db14\";s:5:\"#type\";s:4:\"form\";s:11:\"#programmed\";b:0;s:13:\"form_build_id\";a:4:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:37:\"form-ffbf6c1a81338e3a8ec2d5edc810db14\";s:3:\"#id\";s:37:\"form-ffbf6c1a81338e3a8ec2d5edc810db14\";s:5:\"#name\";s:13:\"form_build_id\";}s:6:\"#token\";s:16:\"banner_node_form\";s:10:\"form_token\";a:3:{s:3:\"#id\";s:32:\"edit-banner-node-form-form-token\";s:5:\"#type\";s:5:\"token\";s:14:\"#default_value\";s:32:\"07cec0c98582e0fd07a1adcfd62b388b\";}s:7:\"form_id\";a:3:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:16:\"banner_node_form\";s:3:\"#id\";s:21:\"edit-banner-node-form\";}s:12:\"#description\";N;s:11:\"#attributes\";a:1:{s:7:\"enctype\";s:19:\"multipart/form-data\";}s:9:\"#required\";b:0;s:5:\"#tree\";b:0;s:8:\"#parents\";a:0:{}s:7:\"#method\";s:4:\"post\";s:7:\"#action\";s:28:\"/~uspvinc/main2/node/10/edit\";s:16:\"comment_settings\";a:7:{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:7:\"#weight\";i:30;s:7:\"comment\";a:4:{s:5:\"#type\";s:6:\"radios\";s:8:\"#parents\";a:1:{i:0;s:7:\"comment\";}s:14:\"#default_value\";s:1:\"2\";s:8:\"#options\";a:3:{i:0;s:8:\"Disabled\";i:1;s:9:\"Read only\";i:2;s:10:\"Read/Write\";}}}s:6:\"#cache\";b:1;s:4:\"menu\";a:20:{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:5:\"#tree\";b:1;s:7:\"#weight\";i:-2;s:11:\"#attributes\";a:1:{s:5:\"class\";s:14:\"menu-item-form\";}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:0;}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:5:\"#item\";a:12:{s:10:\"link_title\";s:0:\"\";s:4:\"mlid\";i:0;s:4:\"plid\";i:0;s:9:\"menu_name\";s:13:\"primary-links\";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:10:\"link_title\";a:5:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:15:\"Menu link title\";s:14:\"#default_value\";s:0:\"\";s:12:\"#description\";s:133:\"The link text corresponding to this item that should appear in the menu. Leave blank if you do not wish to add this post to the menu.\";s:9:\"#required\";b:0;}s:6:\"parent\";a:6:{s:5:\"#type\";s:6:\"select\";s:6:\"#title\";s:11:\"Parent item\";s:14:\"#default_value\";s:15:\"primary-links:0\";s:8:\"#options\";a:96:{s:16:\"menu-main-menu:0\";s:11:\"<Main Menu>\";s:18:\"menu-main-menu:283\";s:8:\"-- about\";s:18:\"menu-main-menu:284\";s:12:\"-- resources\";s:18:\"menu-main-menu:285\";s:11:\"-- services\";s:18:\"menu-main-menu:286\";s:17:\"-- special offers\";s:12:\"navigation:0\";s:12:\"<Navigation>\";s:12:\"navigation:9\";s:26:\"-- Compose tips (disabled)\";s:14:\"navigation:461\";s:29:\"-- Image galleries (disabled)\";s:13:\"navigation:21\";s:13:\"-- My account\";s:14:\"navigation:114\";s:20:\"-- Search (disabled)\";s:14:\"navigation:244\";s:22:\"-- Site map (disabled)\";s:13:\"navigation:11\";s:17:\"-- Create content\";s:14:\"navigation:476\";s:11:\"---- Banner\";s:14:\"navigation:441\";s:10:\"---- Image\";s:14:\"navigation:289\";s:21:\"---- Newsletter issue\";s:14:\"navigation:106\";s:9:\"---- Page\";s:14:\"navigation:388\";s:10:\"---- Panel\";s:14:\"navigation:107\";s:10:\"---- Story\";s:12:\"navigation:2\";s:13:\"-- Administer\";s:13:\"navigation:10\";s:23:\"---- Content management\";s:13:\"navigation:27\";s:15:\"------ Comments\";s:13:\"navigation:28\";s:14:\"------ Content\";s:13:\"navigation:29\";s:20:\"------ Content types\";s:14:\"navigation:462\";s:22:\"------ Image galleries\";s:14:\"navigation:463\";s:19:\"------ Image import\";s:14:\"navigation:538\";s:18:\"------ Newsletters\";s:14:\"navigation:546\";s:20:\"-------- Sent issues\";s:14:\"navigation:541\";s:21:\"-------- Draft issues\";s:14:\"navigation:544\";s:20:\"-------- Newsletters\";s:14:\"navigation:548\";s:22:\"-------- Subscriptions\";s:13:\"navigation:42\";s:20:\"------ Post settings\";s:13:\"navigation:43\";s:21:\"------ RSS publishing\";s:13:\"navigation:94\";s:15:\"------ Taxonomy\";s:13:\"navigation:17\";s:18:\"---- Site building\";s:13:\"navigation:25\";s:13:\"------ Blocks\";s:14:\"navigation:424\";s:20:\"------ Bulk Exporter\";s:13:\"navigation:38\";s:12:\"------ Menus\";s:14:\"navigation:282\";s:18:\"-------- Main Menu\";s:13:\"navigation:89\";s:19:\"-------- Navigation\";s:13:\"navigation:90\";s:22:\"-------- Primary links\";s:14:\"navigation:495\";s:19:\"-------- Right Menu\";s:13:\"navigation:91\";s:24:\"-------- Secondary links\";s:14:\"navigation:387\";s:18:\"------ Mini panels\";s:13:\"navigation:39\";s:14:\"------ Modules\";s:14:\"navigation:412\";s:12:\"------ Pages\";s:14:\"navigation:360\";s:13:\"------ Panels\";s:13:\"navigation:49\";s:13:\"------ Themes\";s:14:\"navigation:335\";s:15:\"------ Triggers\";s:14:\"navigation:501\";s:18:\"------ URL aliases\";s:14:\"navigation:257\";s:12:\"------ Views\";s:13:\"navigation:18\";s:23:\"---- Site configuration\";s:13:\"navigation:23\";s:14:\"------ Actions\";s:14:\"navigation:119\";s:26:\"------ Administration menu\";s:13:\"navigation:24\";s:27:\"------ Administration theme\";s:13:\"navigation:26\";s:17:\"------ Clean URLs\";s:13:\"navigation:30\";s:20:\"------ Date and time\";s:13:\"navigation:33\";s:22:\"------ Error reporting\";s:13:\"navigation:34\";s:18:\"------ File system\";s:13:\"navigation:35\";s:20:\"------ Image toolkit\";s:14:\"navigation:442\";s:13:\"------ Images\";s:13:\"navigation:36\";s:20:\"------ Input formats\";s:13:\"navigation:37\";s:25:\"------ Logging and alerts\";s:14:\"navigation:100\";s:25:\"-------- Database logging\";s:14:\"navigation:245\";s:17:\"------ Nice Menus\";s:13:\"navigation:40\";s:18:\"------ Performance\";s:14:\"navigation:120\";s:22:\"------ Search settings\";s:14:\"navigation:539\";s:17:\"------ Simplenews\";s:14:\"navigation:542\";s:16:\"-------- General\";s:14:\"navigation:543\";s:19:\"-------- Newsletter\";s:14:\"navigation:547\";s:21:\"-------- Subscription\";s:14:\"navigation:545\";s:18:\"-------- Send mail\";s:13:\"navigation:46\";s:23:\"------ Site information\";s:13:\"navigation:47\";s:23:\"------ Site maintenance\";s:14:\"navigation:246\";s:15:\"------ Site map\";s:13:\"navigation:20\";s:20:\"---- User management\";s:13:\"navigation:22\";s:19:\"------ Access rules\";s:13:\"navigation:41\";s:18:\"------ Permissions\";s:13:\"navigation:45\";s:12:\"------ Roles\";s:13:\"navigation:50\";s:20:\"------ User settings\";s:13:\"navigation:51\";s:12:\"------ Users\";s:13:\"navigation:16\";s:12:\"---- Reports\";s:13:\"navigation:93\";s:25:\"------ Recent log entries\";s:13:\"navigation:96\";s:33:\"------ Top \'access denied\' errors\";s:13:\"navigation:97\";s:34:\"------ Top \'page not found\' errors\";s:14:\"navigation:121\";s:25:\"------ Top search phrases\";s:14:\"navigation:105\";s:24:\"------ Available updates\";s:13:\"navigation:48\";s:20:\"------ Status report\";s:13:\"navigation:15\";s:9:\"---- Help\";s:12:\"navigation:4\";s:10:\"-- Log out\";s:15:\"primary-links:0\";s:15:\"<Primary links>\";s:17:\"menu-right-menu:0\";s:12:\"<Right Menu>\";s:19:\"menu-right-menu:496\";s:28:\"-- Financial Calculator Tool\";s:19:\"menu-right-menu:497\";s:21:\"-- News Story Library\";s:19:\"menu-right-menu:498\";s:14:\"-- Latest News\";s:19:\"menu-right-menu:499\";s:25:\"-- SREC Management Portal\";s:17:\"secondary-links:0\";s:17:\"<Secondary links>\";}s:12:\"#description\";s:156:\"The maximum depth for an item and all its children is fixed at 9. Some menu items may not be available as parents if selecting them would exceed this limit.\";s:11:\"#attributes\";a:1:{s:5:\"class\";s:17:\"menu-title-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:107:\"Optional. In the menu, the heavier items will sink and the lighter items will be positioned nearer the top.\";}}s:7:\"#submit\";a:2:{i:0;s:21:\"menu_node_form_submit\";i:1;s:29:\"image_attach_node_form_submit\";}s:4:\"path\";a:10:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:17:\"URL path settings\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:0;s:7:\"#access\";b:1;s:7:\"#weight\";i:30;s:4:\"path\";a:6:{s:5:\"#type\";s:9:\"textfield\";s:14:\"#default_value\";s:20:\"banner/banner-3-uspv\";s:10:\"#maxlength\";i:128;s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:12:\"#description\";s:207:\"Optionally specify an alternative URL by which this node 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\";s:2:\"10\";}s:22:\"pathauto_perform_alias\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:15:\"Automatic alias\";s:14:\"#default_value\";b:1;s:12:\"#description\";s:238:\"An alias will be generated for you. If you wish to create your own alias below, uncheck this option. To control the format of the generated aliases, see the <a href=\"/~uspvinc/main2/admin/build/path/pathauto\">automated alias settings</a>.\";s:7:\"#weight\";i:-1;}s:9:\"old_alias\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:20:\"banner/banner-3-uspv\";}}s:11:\"#pre_render\";a:1:{i:0;s:27:\"content_alter_extra_weights\";}s:21:\"#content_extra_fields\";a:7:{s:5:\"title\";a:3:{s:5:\"label\";s:5:\"Title\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";s:2:\"-5\";}s:10:\"body_field\";a:4:{s:5:\"label\";s:4:\"Body\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";s:2:\"-2\";s:4:\"view\";s:4:\"body\";}s:20:\"revision_information\";a:3:{s:5:\"label\";s:20:\"Revision information\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";s:2:\"-1\";}s:16:\"comment_settings\";a:3:{s:5:\"label\";s:16:\"Comment settings\";s:11:\"description\";s:20:\"Comment module form.\";s:6:\"weight\";s:1:\"0\";}s:4:\"menu\";a:3:{s:5:\"label\";s:13:\"Menu settings\";s:11:\"description\";s:17:\"Menu module form.\";s:6:\"weight\";s:2:\"-4\";}s:4:\"path\";a:3:{s:5:\"label\";s:13:\"Path settings\";s:11:\"description\";s:17:\"Path module form.\";s:6:\"weight\";i:30;}s:12:\"image_attach\";a:3:{s:5:\"label\";s:15:\"Attached images\";s:11:\"description\";s:25:\"Image Attach module form.\";s:6:\"weight\";s:2:\"-3\";}}s:12:\"image_attach\";a:10:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:15:\"Attached images\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:0;s:12:\"#description\";s:23:\"You may attach 1 image.\";s:15:\"image_thumbnail\";a:1:{i:9;a:3:{s:5:\"#type\";s:4:\"item\";s:6:\"#title\";s:9:\"Thumbnail\";s:6:\"#value\";s:210:\"<img src=\"http://www.powerstormtech.com/~uspvinc/main2/sites/default/files/images/banner-3.thumbnail.png\" alt=\"banner 3 - USPV\" title=\"banner 3 - USPV\"  class=\"image image-thumbnail \" width=\"100\" height=\"36\" />\";}}s:4:\"iids\";a:7:{s:5:\"#type\";s:6:\"select\";s:14:\"#default_value\";a:1:{i:0;s:1:\"9\";}s:9:\"#multiple\";b:1;s:5:\"#size\";i:6;s:6:\"#title\";s:15:\"Existing images\";s:8:\"#options\";a:4:{i:0;s:8:\"- None -\";i:1;s:15:\"banner 1 - USPV\";i:7;s:15:\"banner 2 - USPV\";i:9;s:15:\"banner 3 - USPV\";}s:12:\"#description\";s:54:\"Choose existing images if you do not upload a new one.\";}s:5:\"image\";a:2:{s:5:\"#type\";s:4:\"file\";s:6:\"#title\";s:12:\"Upload image\";}s:11:\"image_title\";a:4:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:11:\"Image title\";s:14:\"#default_value\";s:0:\"\";s:12:\"#description\";s:72:\"The title the image will be shown with. Leave blank to use the filename.\";}s:21:\"image_attach_multiple\";a:4:{s:5:\"#type\";s:6:\"submit\";s:6:\"#value\";s:6:\"Attach\";s:9:\"#validate\";a:1:{i:0;s:21:\"image_attach_validate\";}s:7:\"#submit\";a:1:{i:0;s:29:\"image_attach_image_add_submit\";}}}s:12:\"#cache_token\";s:32:\"ea05954e6208c2bed552f97e30d1dad3\";}',1285725773,1285704173,'',1),('form_form-55eb80271b007b6d4f2918e63db08f8d','a:44:{s:3:\"#id\";s:9:\"node-form\";s:3:\"nid\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:1:\"9\";}s:3:\"vid\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:1:\"9\";}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:\"1265208654\";}s:4:\"type\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:5:\"image\";}s:8:\"language\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:0:\"\";}s:7:\"changed\";a:2:{s:5:\"#type\";s:6:\"hidden\";s:14:\"#default_value\";s:10:\"1265208654\";}s:9:\"#validate\";a:2:{i:0;s:19:\"image_form_validate\";i:1;s:18:\"node_form_validate\";}s:7:\"#submit\";a:2:{i:0;s:17:\"image_form_submit\";i:1;s:21:\"menu_node_form_submit\";}s:5:\"title\";a:7:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:5:\"Title\";s:5:\"#size\";i:60;s:10:\"#maxlength\";i:128;s:9:\"#required\";b:1;s:14:\"#default_value\";s:15:\"banner 3 - USPV\";s:7:\"#weight\";i:-5;}s:6:\"images\";a:4:{s:5:\"#tree\";b:1;s:9:\"_original\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:39:\"sites/default/files/images/banner-3.png\";}s:9:\"thumbnail\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:49:\"sites/default/files/images/banner-3.thumbnail.png\";}s:7:\"preview\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:39:\"sites/default/files/images/banner-3.png\";}}s:8:\"new_file\";a:2:{s:5:\"#type\";s:5:\"value\";s:14:\"#default_value\";b:0;}s:11:\"#attributes\";a:1:{s:7:\"enctype\";s:19:\"multipart/form-data\";}s:5:\"image\";a:5:{s:7:\"#prefix\";s:33:\"<div class=\"image-field-wrapper\">\";s:7:\"#suffix\";s:6:\"</div>\";s:9:\"thumbnail\";a:2:{s:5:\"#type\";s:4:\"item\";s:12:\"#after_build\";a:1:{i:0;s:24:\"image_form_add_thumbnail\";}}s:5:\"image\";a:4:{s:5:\"#type\";s:4:\"file\";s:6:\"#title\";s:5:\"Image\";s:5:\"#size\";i:40;s:12:\"#description\";s:26:\"Select an image to upload.\";}s:14:\"rebuild_images\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:25:\"Rebuild derivative images\";s:14:\"#default_value\";b:0;s:12:\"#description\";s:58:\"Check this to rebuild the derivative images for this node.\";s:7:\"#access\";b:1;}}s:10:\"body_field\";a:7:{s:12:\"#after_build\";a:2:{i:0;s:14:\"node_teaser_js\";i:1;s:26:\"node_teaser_include_verify\";}s:7:\"#prefix\";s:32:\"<div class=\"body-field-wrapper\">\";s:7:\"#suffix\";s:6:\"</div>\";s:9:\"teaser_js\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:5:\"#rows\";i:10;s:7:\"#teaser\";s:9:\"edit-body\";s:16:\"#teaser_checkbox\";s:19:\"edit-teaser-include\";s:9:\"#disabled\";b:1;}s:14:\"teaser_include\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:25:\"Show summary in full view\";s:14:\"#default_value\";b:1;s:7:\"#prefix\";s:29:\"<div class=\"teaser-checkbox\">\";s:7:\"#suffix\";s:6:\"</div>\";}s:4:\"body\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:4:\"Body\";s:14:\"#default_value\";s:0:\"\";s:5:\"#rows\";i:20;s:9:\"#required\";b:0;}s:6:\"format\";a:9:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:12:\"Input format\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:7:\"#weight\";N;s:17:\"#element_validate\";a:1:{i:0;s:20:\"filter_form_validate\";}i:1;a:7:{s:5:\"#type\";s:5:\"radio\";s:6:\"#title\";s:13:\"Filtered HTML\";s:14:\"#default_value\";i:1;s:13:\"#return_value\";s:1:\"1\";s:8:\"#parents\";a:1:{i:0;s:6:\"format\";}s:12:\"#description\";s:306:\"<ul class=\"tips\"><li>Web page addresses and e-mail addresses turn into links automatically.</li><li>Allowed HTML tags: &lt;a&gt; &lt;em&gt; &lt;strong&gt; &lt;cite&gt; &lt;code&gt; &lt;ul&gt; &lt;ol&gt; &lt;li&gt; &lt;dl&gt; &lt;dt&gt; &lt;dd&gt;</li><li>Lines and paragraphs break automatically.</li></ul>\";s:3:\"#id\";s:13:\"edit-format-1\";}i:2;a:7:{s:5:\"#type\";s:5:\"radio\";s:6:\"#title\";s:9:\"Full HTML\";s:14:\"#default_value\";i:1;s:13:\"#return_value\";s:1:\"2\";s:8:\"#parents\";a:1:{i:0;s:6:\"format\";}s:12:\"#description\";s:151:\"<ul class=\"tips\"><li>Web page addresses and e-mail addresses turn into links automatically.</li><li>Lines and paragraphs break automatically.</li></ul>\";s:3:\"#id\";s:13:\"edit-format-2\";}i:3;a:1:{s:6:\"#value\";s:90:\"<p><a href=\"/~uspvinc/main2/filter/tips\">More information about formatting options</a></p>\";}}}s:5:\"#node\";O:8:\"stdClass\":35:{s:3:\"nid\";s:1:\"9\";s:4:\"type\";s:5:\"image\";s:8:\"language\";s:0:\"\";s:3:\"uid\";s:1:\"1\";s:6:\"status\";s:1:\"1\";s:7:\"created\";s:10:\"1265208654\";s:7:\"changed\";s:10:\"1265208654\";s:7:\"comment\";s:1:\"2\";s:7:\"promote\";s:1:\"0\";s:8:\"moderate\";s:1:\"0\";s:6:\"sticky\";s:1:\"0\";s:4:\"tnid\";s:1:\"0\";s:9:\"translate\";s:1:\"0\";s:3:\"vid\";s:1:\"9\";s:12:\"revision_uid\";s:1:\"1\";s:5:\"title\";s:15:\"banner 3 - USPV\";s:4:\"body\";s:0:\"\";s:6:\"teaser\";s:0:\"\";s:3:\"log\";N;s:18:\"revision_timestamp\";s:10:\"1265208654\";s:6:\"format\";s:1:\"0\";s:4:\"name\";s:5:\"admin\";s:7:\"picture\";s:0:\"\";s:4:\"data\";s:6:\"a:0:{}\";s:6:\"images\";a:3:{s:9:\"thumbnail\";s:49:\"sites/default/files/images/banner-3.thumbnail.png\";s:9:\"_original\";s:39:\"sites/default/files/images/banner-3.png\";s:7:\"preview\";s:39:\"sites/default/files/images/banner-3.png\";}s:14:\"rebuild_images\";b:0;s:4:\"path\";s:19:\"image/banner-3-uspv\";s:22:\"last_comment_timestamp\";s:10:\"1265208654\";s:17:\"last_comment_name\";N;s:13:\"comment_count\";s:1:\"0\";s:8:\"taxonomy\";a:0:{}s:4:\"date\";s:25:\"2010-02-03 22:50:54 +0800\";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:13:\"primary-links\";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:22:\"pathauto_perform_alias\";b:1;}s:20:\"revision_information\";a:7:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:20:\"Revision information\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:7:\"#weight\";i:20;s:8:\"revision\";a:4:{s:7:\"#access\";b:1;s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:19:\"Create new revision\";s:14:\"#default_value\";b:0;}s:3:\"log\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:11:\"Log message\";s:14:\"#default_value\";s:0:\"\";s:5:\"#rows\";i:2;s:12:\"#description\";s:104:\"An explanation of the additions or updates being made to help other authors understand your motivations.\";}}s:6:\"author\";a:8:{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:7:\"#weight\";i:20;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:35:\"Leave blank for <em>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:91:\"Format: <em>2010-02-03 22:50:54 +0800</em>. Leave blank to use the time of form submission.\";s:14:\"#default_value\";s:25:\"2010-02-03 22:50:54 +0800\";}}s:7:\"options\";a:9:{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:7:\"#weight\";i:25;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:\"buttons\";a:3:{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:16:\"node_form_submit\";}}s:7:\"preview\";a:4:{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:6:\"#theme\";a:2:{i:0;s:15:\"image_node_form\";i:1;s:9:\"node_form\";}s:11:\"#parameters\";a:3:{i:0;s:15:\"image_node_form\";i:1;a:3:{s:7:\"storage\";N;s:9:\"submitted\";b:0;s:4:\"post\";a:0:{}}i:2;r:124;}s:9:\"#build_id\";s:37:\"form-55eb80271b007b6d4f2918e63db08f8d\";s:5:\"#type\";s:4:\"form\";s:11:\"#programmed\";b:0;s:13:\"form_build_id\";a:4:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:37:\"form-55eb80271b007b6d4f2918e63db08f8d\";s:3:\"#id\";s:37:\"form-55eb80271b007b6d4f2918e63db08f8d\";s:5:\"#name\";s:13:\"form_build_id\";}s:6:\"#token\";s:15:\"image_node_form\";s:10:\"form_token\";a:3:{s:3:\"#id\";s:31:\"edit-image-node-form-form-token\";s:5:\"#type\";s:5:\"token\";s:14:\"#default_value\";s:32:\"2b44c59501c41906d4c0b325804495eb\";}s:7:\"form_id\";a:3:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:15:\"image_node_form\";s:3:\"#id\";s:20:\"edit-image-node-form\";}s:12:\"#description\";N;s:9:\"#required\";b:0;s:5:\"#tree\";b:0;s:8:\"#parents\";a:0:{}s:7:\"#method\";s:4:\"post\";s:7:\"#action\";s:27:\"/~uspvinc/main2/node/9/edit\";s:16:\"comment_settings\";a:7:{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:7:\"#weight\";i:30;s:7:\"comment\";a:4:{s:5:\"#type\";s:6:\"radios\";s:8:\"#parents\";a:1:{i:0;s:7:\"comment\";}s:14:\"#default_value\";s:1:\"2\";s:8:\"#options\";a:3:{i:0;s:8:\"Disabled\";i:1;s:9:\"Read only\";i:2;s:10:\"Read/Write\";}}}s:6:\"#cache\";b:1;s:4:\"menu\";a:20:{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:5:\"#tree\";b:1;s:7:\"#weight\";i:-2;s:11:\"#attributes\";a:1:{s:5:\"class\";s:14:\"menu-item-form\";}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:0;}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:5:\"#item\";a:12:{s:10:\"link_title\";s:0:\"\";s:4:\"mlid\";i:0;s:4:\"plid\";i:0;s:9:\"menu_name\";s:13:\"primary-links\";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:10:\"link_title\";a:5:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:15:\"Menu link title\";s:14:\"#default_value\";s:0:\"\";s:12:\"#description\";s:133:\"The link text corresponding to this item that should appear in the menu. Leave blank if you do not wish to add this post to the menu.\";s:9:\"#required\";b:0;}s:6:\"parent\";a:6:{s:5:\"#type\";s:6:\"select\";s:6:\"#title\";s:11:\"Parent item\";s:14:\"#default_value\";s:15:\"primary-links:0\";s:8:\"#options\";a:96:{s:16:\"menu-main-menu:0\";s:11:\"<Main Menu>\";s:18:\"menu-main-menu:283\";s:8:\"-- about\";s:18:\"menu-main-menu:284\";s:12:\"-- resources\";s:18:\"menu-main-menu:285\";s:11:\"-- services\";s:18:\"menu-main-menu:286\";s:17:\"-- special offers\";s:12:\"navigation:0\";s:12:\"<Navigation>\";s:12:\"navigation:9\";s:26:\"-- Compose tips (disabled)\";s:14:\"navigation:461\";s:29:\"-- Image galleries (disabled)\";s:13:\"navigation:21\";s:13:\"-- My account\";s:14:\"navigation:114\";s:20:\"-- Search (disabled)\";s:14:\"navigation:244\";s:22:\"-- Site map (disabled)\";s:13:\"navigation:11\";s:17:\"-- Create content\";s:14:\"navigation:476\";s:11:\"---- Banner\";s:14:\"navigation:441\";s:10:\"---- Image\";s:14:\"navigation:289\";s:21:\"---- Newsletter issue\";s:14:\"navigation:106\";s:9:\"---- Page\";s:14:\"navigation:388\";s:10:\"---- Panel\";s:14:\"navigation:107\";s:10:\"---- Story\";s:12:\"navigation:2\";s:13:\"-- Administer\";s:13:\"navigation:10\";s:23:\"---- Content management\";s:13:\"navigation:27\";s:15:\"------ Comments\";s:13:\"navigation:28\";s:14:\"------ Content\";s:13:\"navigation:29\";s:20:\"------ Content types\";s:14:\"navigation:462\";s:22:\"------ Image galleries\";s:14:\"navigation:463\";s:19:\"------ Image import\";s:14:\"navigation:538\";s:18:\"------ Newsletters\";s:14:\"navigation:546\";s:20:\"-------- Sent issues\";s:14:\"navigation:541\";s:21:\"-------- Draft issues\";s:14:\"navigation:544\";s:20:\"-------- Newsletters\";s:14:\"navigation:548\";s:22:\"-------- Subscriptions\";s:13:\"navigation:42\";s:20:\"------ Post settings\";s:13:\"navigation:43\";s:21:\"------ RSS publishing\";s:13:\"navigation:94\";s:15:\"------ Taxonomy\";s:13:\"navigation:17\";s:18:\"---- Site building\";s:13:\"navigation:25\";s:13:\"------ Blocks\";s:14:\"navigation:424\";s:20:\"------ Bulk Exporter\";s:13:\"navigation:38\";s:12:\"------ Menus\";s:14:\"navigation:282\";s:18:\"-------- Main Menu\";s:13:\"navigation:89\";s:19:\"-------- Navigation\";s:13:\"navigation:90\";s:22:\"-------- Primary links\";s:14:\"navigation:495\";s:19:\"-------- Right Menu\";s:13:\"navigation:91\";s:24:\"-------- Secondary links\";s:14:\"navigation:387\";s:18:\"------ Mini panels\";s:13:\"navigation:39\";s:14:\"------ Modules\";s:14:\"navigation:412\";s:12:\"------ Pages\";s:14:\"navigation:360\";s:13:\"------ Panels\";s:13:\"navigation:49\";s:13:\"------ Themes\";s:14:\"navigation:335\";s:15:\"------ Triggers\";s:14:\"navigation:501\";s:18:\"------ URL aliases\";s:14:\"navigation:257\";s:12:\"------ Views\";s:13:\"navigation:18\";s:23:\"---- Site configuration\";s:13:\"navigation:23\";s:14:\"------ Actions\";s:14:\"navigation:119\";s:26:\"------ Administration menu\";s:13:\"navigation:24\";s:27:\"------ Administration theme\";s:13:\"navigation:26\";s:17:\"------ Clean URLs\";s:13:\"navigation:30\";s:20:\"------ Date and time\";s:13:\"navigation:33\";s:22:\"------ Error reporting\";s:13:\"navigation:34\";s:18:\"------ File system\";s:13:\"navigation:35\";s:20:\"------ Image toolkit\";s:14:\"navigation:442\";s:13:\"------ Images\";s:13:\"navigation:36\";s:20:\"------ Input formats\";s:13:\"navigation:37\";s:25:\"------ Logging and alerts\";s:14:\"navigation:100\";s:25:\"-------- Database logging\";s:14:\"navigation:245\";s:17:\"------ Nice Menus\";s:13:\"navigation:40\";s:18:\"------ Performance\";s:14:\"navigation:120\";s:22:\"------ Search settings\";s:14:\"navigation:539\";s:17:\"------ Simplenews\";s:14:\"navigation:542\";s:16:\"-------- General\";s:14:\"navigation:543\";s:19:\"-------- Newsletter\";s:14:\"navigation:547\";s:21:\"-------- Subscription\";s:14:\"navigation:545\";s:18:\"-------- Send mail\";s:13:\"navigation:46\";s:23:\"------ Site information\";s:13:\"navigation:47\";s:23:\"------ Site maintenance\";s:14:\"navigation:246\";s:15:\"------ Site map\";s:13:\"navigation:20\";s:20:\"---- User management\";s:13:\"navigation:22\";s:19:\"------ Access rules\";s:13:\"navigation:41\";s:18:\"------ Permissions\";s:13:\"navigation:45\";s:12:\"------ Roles\";s:13:\"navigation:50\";s:20:\"------ User settings\";s:13:\"navigation:51\";s:12:\"------ Users\";s:13:\"navigation:16\";s:12:\"---- Reports\";s:13:\"navigation:93\";s:25:\"------ Recent log entries\";s:13:\"navigation:96\";s:33:\"------ Top \'access denied\' errors\";s:13:\"navigation:97\";s:34:\"------ Top \'page not found\' errors\";s:14:\"navigation:121\";s:25:\"------ Top search phrases\";s:14:\"navigation:105\";s:24:\"------ Available updates\";s:13:\"navigation:48\";s:20:\"------ Status report\";s:13:\"navigation:15\";s:9:\"---- Help\";s:12:\"navigation:4\";s:10:\"-- Log out\";s:15:\"primary-links:0\";s:15:\"<Primary links>\";s:17:\"menu-right-menu:0\";s:12:\"<Right Menu>\";s:19:\"menu-right-menu:496\";s:28:\"-- Financial Calculator Tool\";s:19:\"menu-right-menu:497\";s:21:\"-- News Story Library\";s:19:\"menu-right-menu:498\";s:14:\"-- Latest News\";s:19:\"menu-right-menu:499\";s:25:\"-- SREC Management Portal\";s:17:\"secondary-links:0\";s:17:\"<Secondary links>\";}s:12:\"#description\";s:156:\"The maximum depth for an item and all its children is fixed at 9. Some menu items may not be available as parents if selecting them would exceed this limit.\";s:11:\"#attributes\";a:1:{s:5:\"class\";s:17:\"menu-title-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:107:\"Optional. In the menu, the heavier items will sink and the lighter items will be positioned nearer the top.\";}}s:4:\"path\";a:10:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:17:\"URL path settings\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:0;s:7:\"#access\";b:1;s:7:\"#weight\";i:30;s:4:\"path\";a:6:{s:5:\"#type\";s:9:\"textfield\";s:14:\"#default_value\";s:19:\"image/banner-3-uspv\";s:10:\"#maxlength\";i:128;s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:12:\"#description\";s:207:\"Optionally specify an alternative URL by which this node 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\";s:1:\"9\";}s:22:\"pathauto_perform_alias\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:15:\"Automatic alias\";s:14:\"#default_value\";b:1;s:12:\"#description\";s:238:\"An alias will be generated for you. If you wish to create your own alias below, uncheck this option. To control the format of the generated aliases, see the <a href=\"/~uspvinc/main2/admin/build/path/pathauto\">automated alias settings</a>.\";s:7:\"#weight\";i:-1;}s:9:\"old_alias\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:19:\"image/banner-3-uspv\";}}s:8:\"taxonomy\";a:3:{i:2;a:10:{s:5:\"#type\";s:6:\"select\";s:6:\"#title\";s:15:\"Image Galleries\";s:14:\"#default_value\";a:0:{}s:8:\"#options\";a:1:{s:0:\"\";s:17:\"- None selected -\";}s:12:\"#description\";s:0:\"\";s:9:\"#multiple\";i:0;s:5:\"#size\";i:0;s:7:\"#weight\";s:1:\"0\";s:6:\"#theme\";s:20:\"taxonomy_term_select\";s:9:\"#required\";s:1:\"0\";}s:7:\"#weight\";i:-3;s:5:\"#tree\";b:1;}s:11:\"#pre_render\";a:1:{i:0;s:27:\"content_alter_extra_weights\";}s:21:\"#content_extra_fields\";a:8:{s:5:\"title\";a:3:{s:5:\"label\";s:5:\"Title\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:-5;}s:10:\"body_field\";a:4:{s:5:\"label\";s:4:\"Body\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:0;s:4:\"view\";s:4:\"body\";}s:20:\"revision_information\";a:3:{s:5:\"label\";s:20:\"Revision information\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:20;}s:16:\"comment_settings\";a:3:{s:5:\"label\";s:16:\"Comment settings\";s:11:\"description\";s:20:\"Comment module form.\";s:6:\"weight\";i:30;}s:4:\"menu\";a:3:{s:5:\"label\";s:13:\"Menu settings\";s:11:\"description\";s:17:\"Menu module form.\";s:6:\"weight\";i:-2;}s:8:\"taxonomy\";a:3:{s:5:\"label\";s:8:\"Taxonomy\";s:11:\"description\";s:21:\"Taxonomy module form.\";s:6:\"weight\";i:-3;}s:4:\"path\";a:3:{s:5:\"label\";s:13:\"Path settings\";s:11:\"description\";s:17:\"Path module form.\";s:6:\"weight\";i:30;}s:5:\"image\";a:3:{s:5:\"label\";s:5:\"Image\";s:11:\"description\";s:14:\"Image display.\";s:6:\"weight\";i:0;}}s:12:\"#cache_token\";s:32:\"ea05954e6208c2bed552f97e30d1dad3\";}',1285729479,1285707879,'',1),('form_form-73bd3ffa0cbb3c674dee7d3a4ab288f5','a:44:{s:3:\"#id\";s:9:\"node-form\";s:3:\"nid\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:1:\"9\";}s:3:\"vid\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:1:\"9\";}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:\"1265208654\";}s:4:\"type\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:5:\"image\";}s:8:\"language\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:0:\"\";}s:7:\"changed\";a:2:{s:5:\"#type\";s:6:\"hidden\";s:14:\"#default_value\";s:10:\"1265208654\";}s:9:\"#validate\";a:2:{i:0;s:19:\"image_form_validate\";i:1;s:18:\"node_form_validate\";}s:7:\"#submit\";a:2:{i:0;s:17:\"image_form_submit\";i:1;s:21:\"menu_node_form_submit\";}s:5:\"title\";a:7:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:5:\"Title\";s:5:\"#size\";i:60;s:10:\"#maxlength\";i:128;s:9:\"#required\";b:1;s:14:\"#default_value\";s:15:\"banner 3 - USPV\";s:7:\"#weight\";i:-5;}s:6:\"images\";a:4:{s:5:\"#tree\";b:1;s:9:\"_original\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:39:\"sites/default/files/images/banner-3.png\";}s:9:\"thumbnail\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:49:\"sites/default/files/images/banner-3.thumbnail.png\";}s:7:\"preview\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:39:\"sites/default/files/images/banner-3.png\";}}s:8:\"new_file\";a:2:{s:5:\"#type\";s:5:\"value\";s:14:\"#default_value\";b:0;}s:11:\"#attributes\";a:1:{s:7:\"enctype\";s:19:\"multipart/form-data\";}s:5:\"image\";a:5:{s:7:\"#prefix\";s:33:\"<div class=\"image-field-wrapper\">\";s:7:\"#suffix\";s:6:\"</div>\";s:9:\"thumbnail\";a:2:{s:5:\"#type\";s:4:\"item\";s:12:\"#after_build\";a:1:{i:0;s:24:\"image_form_add_thumbnail\";}}s:5:\"image\";a:4:{s:5:\"#type\";s:4:\"file\";s:6:\"#title\";s:5:\"Image\";s:5:\"#size\";i:40;s:12:\"#description\";s:26:\"Select an image to upload.\";}s:14:\"rebuild_images\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:25:\"Rebuild derivative images\";s:14:\"#default_value\";b:0;s:12:\"#description\";s:58:\"Check this to rebuild the derivative images for this node.\";s:7:\"#access\";b:1;}}s:10:\"body_field\";a:7:{s:12:\"#after_build\";a:2:{i:0;s:14:\"node_teaser_js\";i:1;s:26:\"node_teaser_include_verify\";}s:7:\"#prefix\";s:32:\"<div class=\"body-field-wrapper\">\";s:7:\"#suffix\";s:6:\"</div>\";s:9:\"teaser_js\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:5:\"#rows\";i:10;s:7:\"#teaser\";s:9:\"edit-body\";s:16:\"#teaser_checkbox\";s:19:\"edit-teaser-include\";s:9:\"#disabled\";b:1;}s:14:\"teaser_include\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:25:\"Show summary in full view\";s:14:\"#default_value\";b:1;s:7:\"#prefix\";s:29:\"<div class=\"teaser-checkbox\">\";s:7:\"#suffix\";s:6:\"</div>\";}s:4:\"body\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:4:\"Body\";s:14:\"#default_value\";s:0:\"\";s:5:\"#rows\";i:20;s:9:\"#required\";b:0;}s:6:\"format\";a:9:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:12:\"Input format\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:7:\"#weight\";N;s:17:\"#element_validate\";a:1:{i:0;s:20:\"filter_form_validate\";}i:1;a:7:{s:5:\"#type\";s:5:\"radio\";s:6:\"#title\";s:13:\"Filtered HTML\";s:14:\"#default_value\";i:1;s:13:\"#return_value\";s:1:\"1\";s:8:\"#parents\";a:1:{i:0;s:6:\"format\";}s:12:\"#description\";s:306:\"<ul class=\"tips\"><li>Web page addresses and e-mail addresses turn into links automatically.</li><li>Allowed HTML tags: &lt;a&gt; &lt;em&gt; &lt;strong&gt; &lt;cite&gt; &lt;code&gt; &lt;ul&gt; &lt;ol&gt; &lt;li&gt; &lt;dl&gt; &lt;dt&gt; &lt;dd&gt;</li><li>Lines and paragraphs break automatically.</li></ul>\";s:3:\"#id\";s:13:\"edit-format-1\";}i:2;a:7:{s:5:\"#type\";s:5:\"radio\";s:6:\"#title\";s:9:\"Full HTML\";s:14:\"#default_value\";i:1;s:13:\"#return_value\";s:1:\"2\";s:8:\"#parents\";a:1:{i:0;s:6:\"format\";}s:12:\"#description\";s:151:\"<ul class=\"tips\"><li>Web page addresses and e-mail addresses turn into links automatically.</li><li>Lines and paragraphs break automatically.</li></ul>\";s:3:\"#id\";s:13:\"edit-format-2\";}i:3;a:1:{s:6:\"#value\";s:90:\"<p><a href=\"/~uspvinc/main2/filter/tips\">More information about formatting options</a></p>\";}}}s:5:\"#node\";O:8:\"stdClass\":35:{s:3:\"nid\";s:1:\"9\";s:4:\"type\";s:5:\"image\";s:8:\"language\";s:0:\"\";s:3:\"uid\";s:1:\"1\";s:6:\"status\";s:1:\"1\";s:7:\"created\";s:10:\"1265208654\";s:7:\"changed\";s:10:\"1265208654\";s:7:\"comment\";s:1:\"2\";s:7:\"promote\";s:1:\"0\";s:8:\"moderate\";s:1:\"0\";s:6:\"sticky\";s:1:\"0\";s:4:\"tnid\";s:1:\"0\";s:9:\"translate\";s:1:\"0\";s:3:\"vid\";s:1:\"9\";s:12:\"revision_uid\";s:1:\"1\";s:5:\"title\";s:15:\"banner 3 - USPV\";s:4:\"body\";s:0:\"\";s:6:\"teaser\";s:0:\"\";s:3:\"log\";N;s:18:\"revision_timestamp\";s:10:\"1265208654\";s:6:\"format\";s:1:\"0\";s:4:\"name\";s:5:\"admin\";s:7:\"picture\";s:0:\"\";s:4:\"data\";s:6:\"a:0:{}\";s:6:\"images\";a:3:{s:9:\"thumbnail\";s:49:\"sites/default/files/images/banner-3.thumbnail.png\";s:9:\"_original\";s:39:\"sites/default/files/images/banner-3.png\";s:7:\"preview\";s:39:\"sites/default/files/images/banner-3.png\";}s:14:\"rebuild_images\";b:0;s:4:\"path\";s:19:\"image/banner-3-uspv\";s:22:\"last_comment_timestamp\";s:10:\"1265208654\";s:17:\"last_comment_name\";N;s:13:\"comment_count\";s:1:\"0\";s:8:\"taxonomy\";a:0:{}s:4:\"date\";s:25:\"2010-02-03 22:50:54 +0800\";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:13:\"primary-links\";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:22:\"pathauto_perform_alias\";b:1;}s:20:\"revision_information\";a:7:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:20:\"Revision information\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:7:\"#weight\";i:20;s:8:\"revision\";a:4:{s:7:\"#access\";b:1;s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:19:\"Create new revision\";s:14:\"#default_value\";b:0;}s:3:\"log\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:11:\"Log message\";s:14:\"#default_value\";s:0:\"\";s:5:\"#rows\";i:2;s:12:\"#description\";s:104:\"An explanation of the additions or updates being made to help other authors understand your motivations.\";}}s:6:\"author\";a:8:{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:7:\"#weight\";i:20;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:35:\"Leave blank for <em>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:91:\"Format: <em>2010-02-03 22:50:54 +0800</em>. Leave blank to use the time of form submission.\";s:14:\"#default_value\";s:25:\"2010-02-03 22:50:54 +0800\";}}s:7:\"options\";a:9:{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:7:\"#weight\";i:25;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:\"buttons\";a:3:{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:16:\"node_form_submit\";}}s:7:\"preview\";a:4:{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:6:\"#theme\";a:2:{i:0;s:15:\"image_node_form\";i:1;s:9:\"node_form\";}s:11:\"#parameters\";a:3:{i:0;s:15:\"image_node_form\";i:1;a:3:{s:7:\"storage\";N;s:9:\"submitted\";b:0;s:4:\"post\";a:0:{}}i:2;r:124;}s:9:\"#build_id\";s:37:\"form-73bd3ffa0cbb3c674dee7d3a4ab288f5\";s:5:\"#type\";s:4:\"form\";s:11:\"#programmed\";b:0;s:13:\"form_build_id\";a:4:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:37:\"form-73bd3ffa0cbb3c674dee7d3a4ab288f5\";s:3:\"#id\";s:37:\"form-73bd3ffa0cbb3c674dee7d3a4ab288f5\";s:5:\"#name\";s:13:\"form_build_id\";}s:6:\"#token\";s:15:\"image_node_form\";s:10:\"form_token\";a:3:{s:3:\"#id\";s:31:\"edit-image-node-form-form-token\";s:5:\"#type\";s:5:\"token\";s:14:\"#default_value\";s:32:\"2b44c59501c41906d4c0b325804495eb\";}s:7:\"form_id\";a:3:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:15:\"image_node_form\";s:3:\"#id\";s:20:\"edit-image-node-form\";}s:12:\"#description\";N;s:9:\"#required\";b:0;s:5:\"#tree\";b:0;s:8:\"#parents\";a:0:{}s:7:\"#method\";s:4:\"post\";s:7:\"#action\";s:27:\"/~uspvinc/main2/node/9/edit\";s:16:\"comment_settings\";a:7:{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:7:\"#weight\";i:30;s:7:\"comment\";a:4:{s:5:\"#type\";s:6:\"radios\";s:8:\"#parents\";a:1:{i:0;s:7:\"comment\";}s:14:\"#default_value\";s:1:\"2\";s:8:\"#options\";a:3:{i:0;s:8:\"Disabled\";i:1;s:9:\"Read only\";i:2;s:10:\"Read/Write\";}}}s:6:\"#cache\";b:1;s:4:\"menu\";a:20:{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:5:\"#tree\";b:1;s:7:\"#weight\";i:-2;s:11:\"#attributes\";a:1:{s:5:\"class\";s:14:\"menu-item-form\";}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:0;}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:5:\"#item\";a:12:{s:10:\"link_title\";s:0:\"\";s:4:\"mlid\";i:0;s:4:\"plid\";i:0;s:9:\"menu_name\";s:13:\"primary-links\";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:10:\"link_title\";a:5:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:15:\"Menu link title\";s:14:\"#default_value\";s:0:\"\";s:12:\"#description\";s:133:\"The link text corresponding to this item that should appear in the menu. Leave blank if you do not wish to add this post to the menu.\";s:9:\"#required\";b:0;}s:6:\"parent\";a:6:{s:5:\"#type\";s:6:\"select\";s:6:\"#title\";s:11:\"Parent item\";s:14:\"#default_value\";s:15:\"primary-links:0\";s:8:\"#options\";a:96:{s:16:\"menu-main-menu:0\";s:11:\"<Main Menu>\";s:18:\"menu-main-menu:283\";s:8:\"-- about\";s:18:\"menu-main-menu:284\";s:12:\"-- resources\";s:18:\"menu-main-menu:285\";s:11:\"-- services\";s:18:\"menu-main-menu:286\";s:17:\"-- special offers\";s:12:\"navigation:0\";s:12:\"<Navigation>\";s:12:\"navigation:9\";s:26:\"-- Compose tips (disabled)\";s:14:\"navigation:461\";s:29:\"-- Image galleries (disabled)\";s:13:\"navigation:21\";s:13:\"-- My account\";s:14:\"navigation:114\";s:20:\"-- Search (disabled)\";s:14:\"navigation:244\";s:22:\"-- Site map (disabled)\";s:13:\"navigation:11\";s:17:\"-- Create content\";s:14:\"navigation:476\";s:11:\"---- Banner\";s:14:\"navigation:441\";s:10:\"---- Image\";s:14:\"navigation:289\";s:21:\"---- Newsletter issue\";s:14:\"navigation:106\";s:9:\"---- Page\";s:14:\"navigation:388\";s:10:\"---- Panel\";s:14:\"navigation:107\";s:10:\"---- Story\";s:12:\"navigation:2\";s:13:\"-- Administer\";s:13:\"navigation:10\";s:23:\"---- Content management\";s:13:\"navigation:27\";s:15:\"------ Comments\";s:13:\"navigation:28\";s:14:\"------ Content\";s:13:\"navigation:29\";s:20:\"------ Content types\";s:14:\"navigation:462\";s:22:\"------ Image galleries\";s:14:\"navigation:463\";s:19:\"------ Image import\";s:14:\"navigation:538\";s:18:\"------ Newsletters\";s:14:\"navigation:546\";s:20:\"-------- Sent issues\";s:14:\"navigation:541\";s:21:\"-------- Draft issues\";s:14:\"navigation:544\";s:20:\"-------- Newsletters\";s:14:\"navigation:548\";s:22:\"-------- Subscriptions\";s:13:\"navigation:42\";s:20:\"------ Post settings\";s:13:\"navigation:43\";s:21:\"------ RSS publishing\";s:13:\"navigation:94\";s:15:\"------ Taxonomy\";s:13:\"navigation:17\";s:18:\"---- Site building\";s:13:\"navigation:25\";s:13:\"------ Blocks\";s:14:\"navigation:424\";s:20:\"------ Bulk Exporter\";s:13:\"navigation:38\";s:12:\"------ Menus\";s:14:\"navigation:282\";s:18:\"-------- Main Menu\";s:13:\"navigation:89\";s:19:\"-------- Navigation\";s:13:\"navigation:90\";s:22:\"-------- Primary links\";s:14:\"navigation:495\";s:19:\"-------- Right Menu\";s:13:\"navigation:91\";s:24:\"-------- Secondary links\";s:14:\"navigation:387\";s:18:\"------ Mini panels\";s:13:\"navigation:39\";s:14:\"------ Modules\";s:14:\"navigation:412\";s:12:\"------ Pages\";s:14:\"navigation:360\";s:13:\"------ Panels\";s:13:\"navigation:49\";s:13:\"------ Themes\";s:14:\"navigation:335\";s:15:\"------ Triggers\";s:14:\"navigation:501\";s:18:\"------ URL aliases\";s:14:\"navigation:257\";s:12:\"------ Views\";s:13:\"navigation:18\";s:23:\"---- Site configuration\";s:13:\"navigation:23\";s:14:\"------ Actions\";s:14:\"navigation:119\";s:26:\"------ Administration menu\";s:13:\"navigation:24\";s:27:\"------ Administration theme\";s:13:\"navigation:26\";s:17:\"------ Clean URLs\";s:13:\"navigation:30\";s:20:\"------ Date and time\";s:13:\"navigation:33\";s:22:\"------ Error reporting\";s:13:\"navigation:34\";s:18:\"------ File system\";s:13:\"navigation:35\";s:20:\"------ Image toolkit\";s:14:\"navigation:442\";s:13:\"------ Images\";s:13:\"navigation:36\";s:20:\"------ Input formats\";s:13:\"navigation:37\";s:25:\"------ Logging and alerts\";s:14:\"navigation:100\";s:25:\"-------- Database logging\";s:14:\"navigation:245\";s:17:\"------ Nice Menus\";s:13:\"navigation:40\";s:18:\"------ Performance\";s:14:\"navigation:120\";s:22:\"------ Search settings\";s:14:\"navigation:539\";s:17:\"------ Simplenews\";s:14:\"navigation:542\";s:16:\"-------- General\";s:14:\"navigation:543\";s:19:\"-------- Newsletter\";s:14:\"navigation:547\";s:21:\"-------- Subscription\";s:14:\"navigation:545\";s:18:\"-------- Send mail\";s:13:\"navigation:46\";s:23:\"------ Site information\";s:13:\"navigation:47\";s:23:\"------ Site maintenance\";s:14:\"navigation:246\";s:15:\"------ Site map\";s:13:\"navigation:20\";s:20:\"---- User management\";s:13:\"navigation:22\";s:19:\"------ Access rules\";s:13:\"navigation:41\";s:18:\"------ Permissions\";s:13:\"navigation:45\";s:12:\"------ Roles\";s:13:\"navigation:50\";s:20:\"------ User settings\";s:13:\"navigation:51\";s:12:\"------ Users\";s:13:\"navigation:16\";s:12:\"---- Reports\";s:13:\"navigation:93\";s:25:\"------ Recent log entries\";s:13:\"navigation:96\";s:33:\"------ Top \'access denied\' errors\";s:13:\"navigation:97\";s:34:\"------ Top \'page not found\' errors\";s:14:\"navigation:121\";s:25:\"------ Top search phrases\";s:14:\"navigation:105\";s:24:\"------ Available updates\";s:13:\"navigation:48\";s:20:\"------ Status report\";s:13:\"navigation:15\";s:9:\"---- Help\";s:12:\"navigation:4\";s:10:\"-- Log out\";s:15:\"primary-links:0\";s:15:\"<Primary links>\";s:17:\"menu-right-menu:0\";s:12:\"<Right Menu>\";s:19:\"menu-right-menu:496\";s:28:\"-- Financial Calculator Tool\";s:19:\"menu-right-menu:497\";s:21:\"-- News Story Library\";s:19:\"menu-right-menu:498\";s:14:\"-- Latest News\";s:19:\"menu-right-menu:499\";s:25:\"-- SREC Management Portal\";s:17:\"secondary-links:0\";s:17:\"<Secondary links>\";}s:12:\"#description\";s:156:\"The maximum depth for an item and all its children is fixed at 9. Some menu items may not be available as parents if selecting them would exceed this limit.\";s:11:\"#attributes\";a:1:{s:5:\"class\";s:17:\"menu-title-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:107:\"Optional. In the menu, the heavier items will sink and the lighter items will be positioned nearer the top.\";}}s:4:\"path\";a:10:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:17:\"URL path settings\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:0;s:7:\"#access\";b:1;s:7:\"#weight\";i:30;s:4:\"path\";a:6:{s:5:\"#type\";s:9:\"textfield\";s:14:\"#default_value\";s:19:\"image/banner-3-uspv\";s:10:\"#maxlength\";i:128;s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:12:\"#description\";s:207:\"Optionally specify an alternative URL by which this node 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\";s:1:\"9\";}s:22:\"pathauto_perform_alias\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:15:\"Automatic alias\";s:14:\"#default_value\";b:1;s:12:\"#description\";s:238:\"An alias will be generated for you. If you wish to create your own alias below, uncheck this option. To control the format of the generated aliases, see the <a href=\"/~uspvinc/main2/admin/build/path/pathauto\">automated alias settings</a>.\";s:7:\"#weight\";i:-1;}s:9:\"old_alias\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:19:\"image/banner-3-uspv\";}}s:8:\"taxonomy\";a:3:{i:2;a:10:{s:5:\"#type\";s:6:\"select\";s:6:\"#title\";s:15:\"Image Galleries\";s:14:\"#default_value\";a:0:{}s:8:\"#options\";a:1:{s:0:\"\";s:17:\"- None selected -\";}s:12:\"#description\";s:0:\"\";s:9:\"#multiple\";i:0;s:5:\"#size\";i:0;s:7:\"#weight\";s:1:\"0\";s:6:\"#theme\";s:20:\"taxonomy_term_select\";s:9:\"#required\";s:1:\"0\";}s:7:\"#weight\";i:-3;s:5:\"#tree\";b:1;}s:11:\"#pre_render\";a:1:{i:0;s:27:\"content_alter_extra_weights\";}s:21:\"#content_extra_fields\";a:8:{s:5:\"title\";a:3:{s:5:\"label\";s:5:\"Title\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:-5;}s:10:\"body_field\";a:4:{s:5:\"label\";s:4:\"Body\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:0;s:4:\"view\";s:4:\"body\";}s:20:\"revision_information\";a:3:{s:5:\"label\";s:20:\"Revision information\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:20;}s:16:\"comment_settings\";a:3:{s:5:\"label\";s:16:\"Comment settings\";s:11:\"description\";s:20:\"Comment module form.\";s:6:\"weight\";i:30;}s:4:\"menu\";a:3:{s:5:\"label\";s:13:\"Menu settings\";s:11:\"description\";s:17:\"Menu module form.\";s:6:\"weight\";i:-2;}s:8:\"taxonomy\";a:3:{s:5:\"label\";s:8:\"Taxonomy\";s:11:\"description\";s:21:\"Taxonomy module form.\";s:6:\"weight\";i:-3;}s:4:\"path\";a:3:{s:5:\"label\";s:13:\"Path settings\";s:11:\"description\";s:17:\"Path module form.\";s:6:\"weight\";i:30;}s:5:\"image\";a:3:{s:5:\"label\";s:5:\"Image\";s:11:\"description\";s:14:\"Image display.\";s:6:\"weight\";i:0;}}s:12:\"#cache_token\";s:32:\"ea05954e6208c2bed552f97e30d1dad3\";}',1285729700,1285708100,'',1),('form_form-26cddfe455eb365e7fb320c8527cc79a','a:40:{s:3:\"#id\";s:9:\"node-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:\"1265202538\";}s:4:\"type\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:4:\"page\";}s:8:\"language\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:0:\"\";}s:7:\"changed\";a:2:{s:5:\"#type\";s:6:\"hidden\";s:14:\"#default_value\";s:10:\"1285702357\";}s:5:\"title\";a:6:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:5:\"Title\";s:9:\"#required\";b:1;s:14:\"#default_value\";s:9:\"resources\";s:10:\"#maxlength\";i:255;s:7:\"#weight\";i:-5;}s:10:\"body_field\";a:7:{s:12:\"#after_build\";a:2:{i:0;s:14:\"node_teaser_js\";i:1;s:26:\"node_teaser_include_verify\";}s:7:\"#prefix\";s:32:\"<div class=\"body-field-wrapper\">\";s:7:\"#suffix\";s:6:\"</div>\";s:9:\"teaser_js\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:5:\"#rows\";i:10;s:7:\"#teaser\";s:9:\"edit-body\";s:16:\"#teaser_checkbox\";s:19:\"edit-teaser-include\";s:9:\"#disabled\";b:1;}s:14:\"teaser_include\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:25:\"Show summary in full view\";s:14:\"#default_value\";b:1;s:7:\"#prefix\";s:29:\"<div class=\"teaser-checkbox\">\";s:7:\"#suffix\";s:6:\"</div>\";}s:4:\"body\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:4:\"Body\";s:14:\"#default_value\";s:1245:\"<h2>Internet Resources</h2>\r\n \r\nFrom the Database of State Incentives for Renewables and Efficiency (DSIRE.org):\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/statesearch2.cfm?State=US&back=fintab&CurrentPageID=7&Search=TableState&EE=1&RE=1\">Federal Incentives for Solar PV</a>\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&State=MD&RE=1&EE=1\">Maryland Incentives for Solar PV</a>\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&State=DC&RE=1&EE=1\">District of Columbia Incentives for Solar PV</a>\r\n\r\n<h2>Industry Organizations</h2>\r\n\r\n<a href=\"http://www.ases.org/\">American Solar Energy Society</a> Professional Member\r\n<img src=\"/~uspvinc/main2/sites/default/files/images/ases-logo.jpg\"/> \r\n\r\n<a href=\"http://www.mdv-seia.org/\">Maryland-DC-Virginia Solar Energy Industries Association</a>   Professional Member\r\n\r\n<img src=\"/~uspvinc/main2/sites/default/files/images/MDVSEIA.jpg\"/>\r\n\r\n  \r\n<h2>Contact Us</h2>\r\n<p>\r\nTelephone: 240-344-2657\r\n</p>\r\n<p>\r\nEmail:\r\n\r\n          Sales: sales@uspvinc.com\r\n\r\n          Customer Service: support@uspvinc.com\r\n\r\n          Other Inquiries:  info@uspvinc.com\r\n</p>\r\n<p>\r\nPostal Address: 4539 Metropolitan Court, Frederick MD  21704\r\n</p>\";s:5:\"#rows\";i:20;s:9:\"#required\";b:0;}s:6:\"format\";a:9:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:12:\"Input format\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:7:\"#weight\";N;s:17:\"#element_validate\";a:1:{i:0;s:20:\"filter_form_validate\";}i:1;a:7:{s:5:\"#type\";s:5:\"radio\";s:6:\"#title\";s:13:\"Filtered HTML\";s:14:\"#default_value\";s:1:\"2\";s:13:\"#return_value\";s:1:\"1\";s:8:\"#parents\";a:1:{i:0;s:6:\"format\";}s:12:\"#description\";s:306:\"<ul class=\"tips\"><li>Web page addresses and e-mail addresses turn into links automatically.</li><li>Allowed HTML tags: &lt;a&gt; &lt;em&gt; &lt;strong&gt; &lt;cite&gt; &lt;code&gt; &lt;ul&gt; &lt;ol&gt; &lt;li&gt; &lt;dl&gt; &lt;dt&gt; &lt;dd&gt;</li><li>Lines and paragraphs break automatically.</li></ul>\";s:3:\"#id\";s:13:\"edit-format-1\";}i:2;a:7:{s:5:\"#type\";s:5:\"radio\";s:6:\"#title\";s:9:\"Full HTML\";s:14:\"#default_value\";s:1:\"2\";s:13:\"#return_value\";s:1:\"2\";s:8:\"#parents\";a:1:{i:0;s:6:\"format\";}s:12:\"#description\";s:151:\"<ul class=\"tips\"><li>Web page addresses and e-mail addresses turn into links automatically.</li><li>Lines and paragraphs break automatically.</li></ul>\";s:3:\"#id\";s:13:\"edit-format-2\";}i:3;a:1:{s:6:\"#value\";s:90:\"<p><a href=\"/~uspvinc/main2/filter/tips\">More information about formatting options</a></p>\";}}}s:5:\"#node\";O:8:\"stdClass\":33:{s:3:\"nid\";s:1:\"4\";s:4:\"type\";s:4:\"page\";s:8:\"language\";s:0:\"\";s:3:\"uid\";s:1:\"1\";s:6:\"status\";s:1:\"1\";s:7:\"created\";s:10:\"1265202538\";s:7:\"changed\";s:10:\"1285702357\";s:7:\"comment\";s:1:\"0\";s:7:\"promote\";s:1:\"0\";s:8:\"moderate\";s:1:\"0\";s:6:\"sticky\";s:1:\"0\";s:4:\"tnid\";s:1:\"0\";s:9:\"translate\";s:1:\"0\";s:3:\"vid\";s:1:\"4\";s:12:\"revision_uid\";s:1:\"1\";s:5:\"title\";s:9:\"resources\";s:4:\"body\";s:1245:\"<h2>Internet Resources</h2>\r\n \r\nFrom the Database of State Incentives for Renewables and Efficiency (DSIRE.org):\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/statesearch2.cfm?State=US&back=fintab&CurrentPageID=7&Search=TableState&EE=1&RE=1\">Federal Incentives for Solar PV</a>\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&State=MD&RE=1&EE=1\">Maryland Incentives for Solar PV</a>\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&State=DC&RE=1&EE=1\">District of Columbia Incentives for Solar PV</a>\r\n\r\n<h2>Industry Organizations</h2>\r\n\r\n<a href=\"http://www.ases.org/\">American Solar Energy Society</a> Professional Member\r\n<img src=\"/~uspvinc/main2/sites/default/files/images/ases-logo.jpg\"/> \r\n\r\n<a href=\"http://www.mdv-seia.org/\">Maryland-DC-Virginia Solar Energy Industries Association</a>   Professional Member\r\n\r\n<img src=\"/~uspvinc/main2/sites/default/files/images/MDVSEIA.jpg\"/>\r\n\r\n  \r\n<h2>Contact Us</h2>\r\n<p>\r\nTelephone: 240-344-2657\r\n</p>\r\n<p>\r\nEmail:\r\n\r\n          Sales: sales@uspvinc.com\r\n\r\n          Customer Service: support@uspvinc.com\r\n\r\n          Other Inquiries:  info@uspvinc.com\r\n</p>\r\n<p>\r\nPostal Address: 4539 Metropolitan Court, Frederick MD  21704\r\n</p>\";s:6:\"teaser\";s:569:\"<h2>Internet Resources</h2>\r\n \r\nFrom the Database of State Incentives for Renewables and Efficiency (DSIRE.org):\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/statesearch2.cfm?State=US&back=fintab&CurrentPageID=7&Search=TableState&EE=1&RE=1\">Federal Incentives for Solar PV</a>\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&State=MD&RE=1&EE=1\">Maryland Incentives for Solar PV</a>\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&State=DC&RE=1&EE=1\">District of Columbia Incentives for Solar PV</a>\r\n\r\";s:3:\"log\";N;s:18:\"revision_timestamp\";s:10:\"1285702357\";s:6:\"format\";s:1:\"2\";s:4:\"name\";s:5:\"admin\";s:7:\"picture\";s:0:\"\";s:4:\"data\";s:6:\"a:0:{}\";s:4:\"path\";s:9:\"resources\";s:22:\"last_comment_timestamp\";s:10:\"1265202538\";s:17:\"last_comment_name\";N;s:13:\"comment_count\";s:1:\"0\";s:8:\"taxonomy\";a:0:{}s:4:\"date\";s:25:\"2010-02-03 21:08:58 +0800\";s:8:\"revision\";b:0;s:4:\"menu\";a:48:{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:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:3:\"fit\";s:1:\"2\";s:12:\"number_parts\";s:1:\"2\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:9:\"resources\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:4:\"type\";s:1:\"4\";s:14:\"block_callback\";s:0:\"\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"0\";s:4:\"file\";s:0:\"\";s:9:\"menu_name\";s:14:\"menu-main-menu\";s:4:\"mlid\";s:3:\"284\";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:9:\"resources\";s:7:\"options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:9:\"resources\";}}s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"284\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:4:\"href\";s:6:\"node/4\";s:6:\"access\";b:1;s:17:\"localized_options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:9:\"resources\";}}s:18:\"parent_depth_limit\";i:8;}s:22:\"pathauto_perform_alias\";b:1;}s:20:\"revision_information\";a:7:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:20:\"Revision information\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:7:\"#weight\";i:20;s:8:\"revision\";a:4:{s:7:\"#access\";b:1;s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:19:\"Create new revision\";s:14:\"#default_value\";b:0;}s:3:\"log\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:11:\"Log message\";s:14:\"#default_value\";s:0:\"\";s:5:\"#rows\";i:2;s:12:\"#description\";s:104:\"An explanation of the additions or updates being made to help other authors understand your motivations.\";}}s:6:\"author\";a:8:{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:7:\"#weight\";i:20;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:35:\"Leave blank for <em>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:91:\"Format: <em>2010-02-03 21:08:58 +0800</em>. Leave blank to use the time of form submission.\";s:14:\"#default_value\";s:25:\"2010-02-03 21:08:58 +0800\";}}s:7:\"options\";a:9:{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:7:\"#weight\";i:25;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:\"buttons\";a:3:{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:16:\"node_form_submit\";}}s:7:\"preview\";a:4:{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:6:\"#theme\";a:2:{i:0;s:14:\"page_node_form\";i:1;s:9:\"node_form\";}s:11:\"#parameters\";a:3:{i:0;s:14:\"page_node_form\";i:1;a:3:{s:7:\"storage\";N;s:9:\"submitted\";b:0;s:4:\"post\";a:0:{}}i:2;r:83;}s:9:\"#build_id\";s:37:\"form-26cddfe455eb365e7fb320c8527cc79a\";s:5:\"#type\";s:4:\"form\";s:11:\"#programmed\";b:0;s:13:\"form_build_id\";a:4:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:37:\"form-26cddfe455eb365e7fb320c8527cc79a\";s:3:\"#id\";s:37:\"form-26cddfe455eb365e7fb320c8527cc79a\";s:5:\"#name\";s:13:\"form_build_id\";}s:6:\"#token\";s:14:\"page_node_form\";s:10:\"form_token\";a:3:{s:3:\"#id\";s:30:\"edit-page-node-form-form-token\";s:5:\"#type\";s:5:\"token\";s:14:\"#default_value\";s:32:\"69ee9cfa6b6366390575effcb3429c15\";}s:7:\"form_id\";a:3:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:14:\"page_node_form\";s:3:\"#id\";s:19:\"edit-page-node-form\";}s:12:\"#description\";N;s:11:\"#attributes\";a:0:{}s:9:\"#required\";b:0;s:5:\"#tree\";b:0;s:8:\"#parents\";a:0:{}s:7:\"#method\";s:4:\"post\";s:7:\"#action\";s:27:\"/~uspvinc/main2/node/4/edit\";s:16:\"comment_settings\";a:7:{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:7:\"#weight\";i:30;s:7:\"comment\";a:4:{s:5:\"#type\";s:6:\"radios\";s:8:\"#parents\";a:1:{i:0;s:7:\"comment\";}s:14:\"#default_value\";s:1:\"0\";s:8:\"#options\";a:3:{i:0;s:8:\"Disabled\";i:1;s:9:\"Read only\";i:2;s:10:\"Read/Write\";}}}s:6:\"#cache\";b:1;s:4:\"menu\";a:21:{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:5:\"#tree\";b:1;s:7:\"#weight\";i:-2;s:11:\"#attributes\";a:1:{s:5:\"class\";s:14:\"menu-item-form\";}s:6:\"delete\";a:2:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:22:\"Delete this menu item.\";}s:4:\"mlid\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:3:\"284\";}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\";s:1:\"1\";}s:7:\"options\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:9:\"resources\";}}}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:5:\"#item\";a:48:{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:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:3:\"fit\";s:1:\"2\";s:12:\"number_parts\";s:1:\"2\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:9:\"resources\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:4:\"type\";s:1:\"4\";s:14:\"block_callback\";s:0:\"\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"0\";s:4:\"file\";s:0:\"\";s:9:\"menu_name\";s:14:\"menu-main-menu\";s:4:\"mlid\";s:3:\"284\";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:9:\"resources\";s:7:\"options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:9:\"resources\";}}s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"284\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:4:\"href\";s:6:\"node/4\";s:6:\"access\";b:1;s:17:\"localized_options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:9:\"resources\";}}s:18:\"parent_depth_limit\";i:8;}s:10:\"link_title\";a:5:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:15:\"Menu link title\";s:14:\"#default_value\";s:9:\"resources\";s:12:\"#description\";s:133:\"The link text corresponding to this item that should appear in the menu. Leave blank if you do not wish to add this post to the menu.\";s:9:\"#required\";b:0;}s:6:\"parent\";a:6:{s:5:\"#type\";s:6:\"select\";s:6:\"#title\";s:11:\"Parent item\";s:14:\"#default_value\";s:16:\"menu-main-menu:0\";s:8:\"#options\";a:95:{s:16:\"menu-main-menu:0\";s:11:\"<Main Menu>\";s:18:\"menu-main-menu:283\";s:8:\"-- about\";s:18:\"menu-main-menu:285\";s:11:\"-- services\";s:18:\"menu-main-menu:286\";s:17:\"-- special offers\";s:12:\"navigation:0\";s:12:\"<Navigation>\";s:12:\"navigation:9\";s:26:\"-- Compose tips (disabled)\";s:14:\"navigation:461\";s:29:\"-- Image galleries (disabled)\";s:13:\"navigation:21\";s:13:\"-- My account\";s:14:\"navigation:114\";s:20:\"-- Search (disabled)\";s:14:\"navigation:244\";s:22:\"-- Site map (disabled)\";s:13:\"navigation:11\";s:17:\"-- Create content\";s:14:\"navigation:476\";s:11:\"---- Banner\";s:14:\"navigation:441\";s:10:\"---- Image\";s:14:\"navigation:289\";s:21:\"---- Newsletter issue\";s:14:\"navigation:106\";s:9:\"---- Page\";s:14:\"navigation:388\";s:10:\"---- Panel\";s:14:\"navigation:107\";s:10:\"---- Story\";s:12:\"navigation:2\";s:13:\"-- Administer\";s:13:\"navigation:10\";s:23:\"---- Content management\";s:13:\"navigation:27\";s:15:\"------ Comments\";s:13:\"navigation:28\";s:14:\"------ Content\";s:13:\"navigation:29\";s:20:\"------ Content types\";s:14:\"navigation:462\";s:22:\"------ Image galleries\";s:14:\"navigation:463\";s:19:\"------ Image import\";s:14:\"navigation:538\";s:18:\"------ Newsletters\";s:14:\"navigation:546\";s:20:\"-------- Sent issues\";s:14:\"navigation:541\";s:21:\"-------- Draft issues\";s:14:\"navigation:544\";s:20:\"-------- Newsletters\";s:14:\"navigation:548\";s:22:\"-------- Subscriptions\";s:13:\"navigation:42\";s:20:\"------ Post settings\";s:13:\"navigation:43\";s:21:\"------ RSS publishing\";s:13:\"navigation:94\";s:15:\"------ Taxonomy\";s:13:\"navigation:17\";s:18:\"---- Site building\";s:13:\"navigation:25\";s:13:\"------ Blocks\";s:14:\"navigation:424\";s:20:\"------ Bulk Exporter\";s:13:\"navigation:38\";s:12:\"------ Menus\";s:14:\"navigation:282\";s:18:\"-------- Main Menu\";s:13:\"navigation:89\";s:19:\"-------- Navigation\";s:13:\"navigation:90\";s:22:\"-------- Primary links\";s:14:\"navigation:495\";s:19:\"-------- Right Menu\";s:13:\"navigation:91\";s:24:\"-------- Secondary links\";s:14:\"navigation:387\";s:18:\"------ Mini panels\";s:13:\"navigation:39\";s:14:\"------ Modules\";s:14:\"navigation:412\";s:12:\"------ Pages\";s:14:\"navigation:360\";s:13:\"------ Panels\";s:13:\"navigation:49\";s:13:\"------ Themes\";s:14:\"navigation:335\";s:15:\"------ Triggers\";s:14:\"navigation:501\";s:18:\"------ URL aliases\";s:14:\"navigation:257\";s:12:\"------ Views\";s:13:\"navigation:18\";s:23:\"---- Site configuration\";s:13:\"navigation:23\";s:14:\"------ Actions\";s:14:\"navigation:119\";s:26:\"------ Administration menu\";s:13:\"navigation:24\";s:27:\"------ Administration theme\";s:13:\"navigation:26\";s:17:\"------ Clean URLs\";s:13:\"navigation:30\";s:20:\"------ Date and time\";s:13:\"navigation:33\";s:22:\"------ Error reporting\";s:13:\"navigation:34\";s:18:\"------ File system\";s:13:\"navigation:35\";s:20:\"------ Image toolkit\";s:14:\"navigation:442\";s:13:\"------ Images\";s:13:\"navigation:36\";s:20:\"------ Input formats\";s:13:\"navigation:37\";s:25:\"------ Logging and alerts\";s:14:\"navigation:100\";s:25:\"-------- Database logging\";s:14:\"navigation:245\";s:17:\"------ Nice Menus\";s:13:\"navigation:40\";s:18:\"------ Performance\";s:14:\"navigation:120\";s:22:\"------ Search settings\";s:14:\"navigation:539\";s:17:\"------ Simplenews\";s:14:\"navigation:542\";s:16:\"-------- General\";s:14:\"navigation:543\";s:19:\"-------- Newsletter\";s:14:\"navigation:547\";s:21:\"-------- Subscription\";s:14:\"navigation:545\";s:18:\"-------- Send mail\";s:13:\"navigation:46\";s:23:\"------ Site information\";s:13:\"navigation:47\";s:23:\"------ Site maintenance\";s:14:\"navigation:246\";s:15:\"------ Site map\";s:13:\"navigation:20\";s:20:\"---- User management\";s:13:\"navigation:22\";s:19:\"------ Access rules\";s:13:\"navigation:41\";s:18:\"------ Permissions\";s:13:\"navigation:45\";s:12:\"------ Roles\";s:13:\"navigation:50\";s:20:\"------ User settings\";s:13:\"navigation:51\";s:12:\"------ Users\";s:13:\"navigation:16\";s:12:\"---- Reports\";s:13:\"navigation:93\";s:25:\"------ Recent log entries\";s:13:\"navigation:96\";s:33:\"------ Top \'access denied\' errors\";s:13:\"navigation:97\";s:34:\"------ Top \'page not found\' errors\";s:14:\"navigation:121\";s:25:\"------ Top search phrases\";s:14:\"navigation:105\";s:24:\"------ Available updates\";s:13:\"navigation:48\";s:20:\"------ Status report\";s:13:\"navigation:15\";s:9:\"---- Help\";s:12:\"navigation:4\";s:10:\"-- Log out\";s:15:\"primary-links:0\";s:15:\"<Primary links>\";s:17:\"menu-right-menu:0\";s:12:\"<Right Menu>\";s:19:\"menu-right-menu:496\";s:28:\"-- Financial Calculator Tool\";s:19:\"menu-right-menu:497\";s:21:\"-- News Story Library\";s:19:\"menu-right-menu:498\";s:14:\"-- Latest News\";s:19:\"menu-right-menu:499\";s:25:\"-- SREC Management Portal\";s:17:\"secondary-links:0\";s:17:\"<Secondary links>\";}s:12:\"#description\";s:156:\"The maximum depth for an item and all its children is fixed at 9. Some menu items may not be available as parents if selecting them would exceed this limit.\";s:11:\"#attributes\";a:1:{s:5:\"class\";s:17:\"menu-title-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:1:\"0\";s:12:\"#description\";s:107:\"Optional. In the menu, the heavier items will sink and the lighter items will be positioned nearer the top.\";}}s:7:\"#submit\";a:1:{i:0;s:21:\"menu_node_form_submit\";}s:4:\"path\";a:10:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:17:\"URL path settings\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:0;s:7:\"#access\";b:1;s:7:\"#weight\";i:30;s:4:\"path\";a:6:{s:5:\"#type\";s:9:\"textfield\";s:14:\"#default_value\";s:9:\"resources\";s:10:\"#maxlength\";i:128;s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:12:\"#description\";s:207:\"Optionally specify an alternative URL by which this node 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\";s:1:\"4\";}s:22:\"pathauto_perform_alias\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:15:\"Automatic alias\";s:14:\"#default_value\";b:1;s:12:\"#description\";s:238:\"An alias will be generated for you. If you wish to create your own alias below, uncheck this option. To control the format of the generated aliases, see the <a href=\"/~uspvinc/main2/admin/build/path/pathauto\">automated alias settings</a>.\";s:7:\"#weight\";i:-1;}s:9:\"old_alias\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:9:\"resources\";}}s:11:\"#pre_render\";a:1:{i:0;s:27:\"content_alter_extra_weights\";}s:21:\"#content_extra_fields\";a:6:{s:5:\"title\";a:3:{s:5:\"label\";s:5:\"Title\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:-5;}s:10:\"body_field\";a:4:{s:5:\"label\";s:4:\"Body\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:0;s:4:\"view\";s:4:\"body\";}s:20:\"revision_information\";a:3:{s:5:\"label\";s:20:\"Revision information\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:20;}s:16:\"comment_settings\";a:3:{s:5:\"label\";s:16:\"Comment settings\";s:11:\"description\";s:20:\"Comment module form.\";s:6:\"weight\";i:30;}s:4:\"menu\";a:3:{s:5:\"label\";s:13:\"Menu settings\";s:11:\"description\";s:17:\"Menu module form.\";s:6:\"weight\";i:-2;}s:4:\"path\";a:3:{s:5:\"label\";s:13:\"Path settings\";s:11:\"description\";s:17:\"Path module form.\";s:6:\"weight\";i:30;}}s:12:\"#cache_token\";s:32:\"ea05954e6208c2bed552f97e30d1dad3\";}',1285730547,1285708947,'',1),('form_form-08847db0985e9e5e2c43f6f1e523bb0b','a:40:{s:3:\"#id\";s:9:\"node-form\";s:3:\"nid\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:2:\"11\";}s:3:\"vid\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:2:\"11\";}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:\"1285703167\";}s:4:\"type\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:4:\"page\";}s:8:\"language\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:0:\"\";}s:7:\"changed\";a:2:{s:5:\"#type\";s:6:\"hidden\";s:14:\"#default_value\";s:10:\"1285703167\";}s:5:\"title\";a:6:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:5:\"Title\";s:9:\"#required\";b:1;s:14:\"#default_value\";s:69:\"Renewable Energy Credit (REC) Management Program for PV System Owners\";s:10:\"#maxlength\";i:255;s:7:\"#weight\";i:-5;}s:10:\"body_field\";a:7:{s:12:\"#after_build\";a:2:{i:0;s:14:\"node_teaser_js\";i:1;s:26:\"node_teaser_include_verify\";}s:7:\"#prefix\";s:32:\"<div class=\"body-field-wrapper\">\";s:7:\"#suffix\";s:6:\"</div>\";s:9:\"teaser_js\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:5:\"#rows\";i:10;s:7:\"#teaser\";s:9:\"edit-body\";s:16:\"#teaser_checkbox\";s:19:\"edit-teaser-include\";s:9:\"#disabled\";b:1;}s:14:\"teaser_include\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:25:\"Show summary in full view\";s:14:\"#default_value\";b:1;s:7:\"#prefix\";s:29:\"<div class=\"teaser-checkbox\">\";s:7:\"#suffix\";s:6:\"</div>\";}s:4:\"body\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:4:\"Body\";s:14:\"#default_value\";s:225:\"Sign-up for USPV\'s REC Management Program today.  No up-front or out-of-pocket costs.  Don\'t miss out on this opportunity to participate in the Renewable Energy Credit markets and earn hundreds or even thousands of dollars!  \";s:5:\"#rows\";i:20;s:9:\"#required\";b:0;}s:6:\"format\";a:9:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:12:\"Input format\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:7:\"#weight\";N;s:17:\"#element_validate\";a:1:{i:0;s:20:\"filter_form_validate\";}i:1;a:7:{s:5:\"#type\";s:5:\"radio\";s:6:\"#title\";s:13:\"Filtered HTML\";s:14:\"#default_value\";s:1:\"1\";s:13:\"#return_value\";s:1:\"1\";s:8:\"#parents\";a:1:{i:0;s:6:\"format\";}s:12:\"#description\";s:306:\"<ul class=\"tips\"><li>Web page addresses and e-mail addresses turn into links automatically.</li><li>Allowed HTML tags: &lt;a&gt; &lt;em&gt; &lt;strong&gt; &lt;cite&gt; &lt;code&gt; &lt;ul&gt; &lt;ol&gt; &lt;li&gt; &lt;dl&gt; &lt;dt&gt; &lt;dd&gt;</li><li>Lines and paragraphs break automatically.</li></ul>\";s:3:\"#id\";s:13:\"edit-format-1\";}i:2;a:7:{s:5:\"#type\";s:5:\"radio\";s:6:\"#title\";s:9:\"Full HTML\";s:14:\"#default_value\";s:1:\"1\";s:13:\"#return_value\";s:1:\"2\";s:8:\"#parents\";a:1:{i:0;s:6:\"format\";}s:12:\"#description\";s:151:\"<ul class=\"tips\"><li>Web page addresses and e-mail addresses turn into links automatically.</li><li>Lines and paragraphs break automatically.</li></ul>\";s:3:\"#id\";s:13:\"edit-format-2\";}i:3;a:1:{s:6:\"#value\";s:90:\"<p><a href=\"/~uspvinc/main2/filter/tips\">More information about formatting options</a></p>\";}}}s:5:\"#node\";O:8:\"stdClass\":33:{s:3:\"nid\";s:2:\"11\";s:4:\"type\";s:4:\"page\";s:8:\"language\";s:0:\"\";s:3:\"uid\";s:1:\"1\";s:6:\"status\";s:1:\"1\";s:7:\"created\";s:10:\"1285703167\";s:7:\"changed\";s:10:\"1285703167\";s:7:\"comment\";s:1:\"0\";s:7:\"promote\";s:1:\"0\";s:8:\"moderate\";s:1:\"0\";s:6:\"sticky\";s:1:\"0\";s:4:\"tnid\";s:1:\"0\";s:9:\"translate\";s:1:\"0\";s:3:\"vid\";s:2:\"11\";s:12:\"revision_uid\";s:1:\"1\";s:5:\"title\";s:69:\"Renewable Energy Credit (REC) Management Program for PV System Owners\";s:4:\"body\";s:225:\"Sign-up for USPV\'s REC Management Program today.  No up-front or out-of-pocket costs.  Don\'t miss out on this opportunity to participate in the Renewable Energy Credit markets and earn hundreds or even thousands of dollars!  \";s:6:\"teaser\";s:225:\"Sign-up for USPV\'s REC Management Program today.  No up-front or out-of-pocket costs.  Don\'t miss out on this opportunity to participate in the Renewable Energy Credit markets and earn hundreds or even thousands of dollars!  \";s:3:\"log\";N;s:18:\"revision_timestamp\";s:10:\"1285703167\";s:6:\"format\";s:1:\"1\";s:4:\"name\";s:5:\"admin\";s:7:\"picture\";s:0:\"\";s:4:\"data\";s:6:\"a:0:{}\";s:4:\"path\";s:63:\"renewable-energy-credit-rec-management-program-pv-system-owners\";s:22:\"last_comment_timestamp\";s:10:\"1285703167\";s:17:\"last_comment_name\";N;s:13:\"comment_count\";s:1:\"0\";s:8:\"taxonomy\";a:0:{}s:4:\"date\";s:25:\"2010-09-29 03:46:07 +0800\";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:13:\"primary-links\";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:22:\"pathauto_perform_alias\";b:1;}s:20:\"revision_information\";a:7:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:20:\"Revision information\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:7:\"#weight\";i:20;s:8:\"revision\";a:4:{s:7:\"#access\";b:1;s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:19:\"Create new revision\";s:14:\"#default_value\";b:0;}s:3:\"log\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:11:\"Log message\";s:14:\"#default_value\";s:0:\"\";s:5:\"#rows\";i:2;s:12:\"#description\";s:104:\"An explanation of the additions or updates being made to help other authors understand your motivations.\";}}s:6:\"author\";a:8:{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:7:\"#weight\";i:20;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:35:\"Leave blank for <em>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:91:\"Format: <em>2010-09-29 03:46:07 +0800</em>. Leave blank to use the time of form submission.\";s:14:\"#default_value\";s:25:\"2010-09-29 03:46:07 +0800\";}}s:7:\"options\";a:9:{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:7:\"#weight\";i:25;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:\"buttons\";a:3:{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:16:\"node_form_submit\";}}s:7:\"preview\";a:4:{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:6:\"#theme\";a:2:{i:0;s:14:\"page_node_form\";i:1;s:9:\"node_form\";}s:11:\"#parameters\";a:3:{i:0;s:14:\"page_node_form\";i:1;a:3:{s:7:\"storage\";N;s:9:\"submitted\";b:0;s:4:\"post\";a:0:{}}i:2;r:83;}s:9:\"#build_id\";s:37:\"form-08847db0985e9e5e2c43f6f1e523bb0b\";s:5:\"#type\";s:4:\"form\";s:11:\"#programmed\";b:0;s:13:\"form_build_id\";a:4:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:37:\"form-08847db0985e9e5e2c43f6f1e523bb0b\";s:3:\"#id\";s:37:\"form-08847db0985e9e5e2c43f6f1e523bb0b\";s:5:\"#name\";s:13:\"form_build_id\";}s:6:\"#token\";s:14:\"page_node_form\";s:10:\"form_token\";a:3:{s:3:\"#id\";s:30:\"edit-page-node-form-form-token\";s:5:\"#type\";s:5:\"token\";s:14:\"#default_value\";s:32:\"69ee9cfa6b6366390575effcb3429c15\";}s:7:\"form_id\";a:3:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:14:\"page_node_form\";s:3:\"#id\";s:19:\"edit-page-node-form\";}s:12:\"#description\";N;s:11:\"#attributes\";a:0:{}s:9:\"#required\";b:0;s:5:\"#tree\";b:0;s:8:\"#parents\";a:0:{}s:7:\"#method\";s:4:\"post\";s:7:\"#action\";s:63:\"/~uspvinc/main2/node/11/edit?destination=admin%2Fcontent%2Fnode\";s:16:\"comment_settings\";a:7:{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:7:\"#weight\";i:30;s:7:\"comment\";a:4:{s:5:\"#type\";s:6:\"radios\";s:8:\"#parents\";a:1:{i:0;s:7:\"comment\";}s:14:\"#default_value\";s:1:\"0\";s:8:\"#options\";a:3:{i:0;s:8:\"Disabled\";i:1;s:9:\"Read only\";i:2;s:10:\"Read/Write\";}}}s:6:\"#cache\";b:1;s:4:\"menu\";a:20:{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:5:\"#tree\";b:1;s:7:\"#weight\";i:-2;s:11:\"#attributes\";a:1:{s:5:\"class\";s:14:\"menu-item-form\";}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:0;}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:5:\"#item\";a:12:{s:10:\"link_title\";s:0:\"\";s:4:\"mlid\";i:0;s:4:\"plid\";i:0;s:9:\"menu_name\";s:13:\"primary-links\";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:10:\"link_title\";a:5:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:15:\"Menu link title\";s:14:\"#default_value\";s:0:\"\";s:12:\"#description\";s:133:\"The link text corresponding to this item that should appear in the menu. Leave blank if you do not wish to add this post to the menu.\";s:9:\"#required\";b:0;}s:6:\"parent\";a:6:{s:5:\"#type\";s:6:\"select\";s:6:\"#title\";s:11:\"Parent item\";s:14:\"#default_value\";s:15:\"primary-links:0\";s:8:\"#options\";a:96:{s:16:\"menu-main-menu:0\";s:11:\"<Main Menu>\";s:18:\"menu-main-menu:283\";s:8:\"-- about\";s:18:\"menu-main-menu:284\";s:12:\"-- resources\";s:18:\"menu-main-menu:285\";s:11:\"-- services\";s:18:\"menu-main-menu:286\";s:17:\"-- special offers\";s:12:\"navigation:0\";s:12:\"<Navigation>\";s:12:\"navigation:9\";s:26:\"-- Compose tips (disabled)\";s:14:\"navigation:461\";s:29:\"-- Image galleries (disabled)\";s:13:\"navigation:21\";s:13:\"-- My account\";s:14:\"navigation:114\";s:20:\"-- Search (disabled)\";s:14:\"navigation:244\";s:22:\"-- Site map (disabled)\";s:13:\"navigation:11\";s:17:\"-- Create content\";s:14:\"navigation:476\";s:11:\"---- Banner\";s:14:\"navigation:441\";s:10:\"---- Image\";s:14:\"navigation:289\";s:21:\"---- Newsletter issue\";s:14:\"navigation:106\";s:9:\"---- Page\";s:14:\"navigation:388\";s:10:\"---- Panel\";s:14:\"navigation:107\";s:10:\"---- Story\";s:12:\"navigation:2\";s:13:\"-- Administer\";s:13:\"navigation:10\";s:23:\"---- Content management\";s:13:\"navigation:27\";s:15:\"------ Comments\";s:13:\"navigation:28\";s:14:\"------ Content\";s:13:\"navigation:29\";s:20:\"------ Content types\";s:14:\"navigation:462\";s:22:\"------ Image galleries\";s:14:\"navigation:463\";s:19:\"------ Image import\";s:14:\"navigation:538\";s:18:\"------ Newsletters\";s:14:\"navigation:546\";s:20:\"-------- Sent issues\";s:14:\"navigation:541\";s:21:\"-------- Draft issues\";s:14:\"navigation:544\";s:20:\"-------- Newsletters\";s:14:\"navigation:548\";s:22:\"-------- Subscriptions\";s:13:\"navigation:42\";s:20:\"------ Post settings\";s:13:\"navigation:43\";s:21:\"------ RSS publishing\";s:13:\"navigation:94\";s:15:\"------ Taxonomy\";s:13:\"navigation:17\";s:18:\"---- Site building\";s:13:\"navigation:25\";s:13:\"------ Blocks\";s:14:\"navigation:424\";s:20:\"------ Bulk Exporter\";s:13:\"navigation:38\";s:12:\"------ Menus\";s:14:\"navigation:282\";s:18:\"-------- Main Menu\";s:13:\"navigation:89\";s:19:\"-------- Navigation\";s:13:\"navigation:90\";s:22:\"-------- Primary links\";s:14:\"navigation:495\";s:19:\"-------- Right Menu\";s:13:\"navigation:91\";s:24:\"-------- Secondary links\";s:14:\"navigation:387\";s:18:\"------ Mini panels\";s:13:\"navigation:39\";s:14:\"------ Modules\";s:14:\"navigation:412\";s:12:\"------ Pages\";s:14:\"navigation:360\";s:13:\"------ Panels\";s:13:\"navigation:49\";s:13:\"------ Themes\";s:14:\"navigation:335\";s:15:\"------ Triggers\";s:14:\"navigation:501\";s:18:\"------ URL aliases\";s:14:\"navigation:257\";s:12:\"------ Views\";s:13:\"navigation:18\";s:23:\"---- Site configuration\";s:13:\"navigation:23\";s:14:\"------ Actions\";s:14:\"navigation:119\";s:26:\"------ Administration menu\";s:13:\"navigation:24\";s:27:\"------ Administration theme\";s:13:\"navigation:26\";s:17:\"------ Clean URLs\";s:13:\"navigation:30\";s:20:\"------ Date and time\";s:13:\"navigation:33\";s:22:\"------ Error reporting\";s:13:\"navigation:34\";s:18:\"------ File system\";s:13:\"navigation:35\";s:20:\"------ Image toolkit\";s:14:\"navigation:442\";s:13:\"------ Images\";s:13:\"navigation:36\";s:20:\"------ Input formats\";s:13:\"navigation:37\";s:25:\"------ Logging and alerts\";s:14:\"navigation:100\";s:25:\"-------- Database logging\";s:14:\"navigation:245\";s:17:\"------ Nice Menus\";s:13:\"navigation:40\";s:18:\"------ Performance\";s:14:\"navigation:120\";s:22:\"------ Search settings\";s:14:\"navigation:539\";s:17:\"------ Simplenews\";s:14:\"navigation:542\";s:16:\"-------- General\";s:14:\"navigation:543\";s:19:\"-------- Newsletter\";s:14:\"navigation:547\";s:21:\"-------- Subscription\";s:14:\"navigation:545\";s:18:\"-------- Send mail\";s:13:\"navigation:46\";s:23:\"------ Site information\";s:13:\"navigation:47\";s:23:\"------ Site maintenance\";s:14:\"navigation:246\";s:15:\"------ Site map\";s:13:\"navigation:20\";s:20:\"---- User management\";s:13:\"navigation:22\";s:19:\"------ Access rules\";s:13:\"navigation:41\";s:18:\"------ Permissions\";s:13:\"navigation:45\";s:12:\"------ Roles\";s:13:\"navigation:50\";s:20:\"------ User settings\";s:13:\"navigation:51\";s:12:\"------ Users\";s:13:\"navigation:16\";s:12:\"---- Reports\";s:13:\"navigation:93\";s:25:\"------ Recent log entries\";s:13:\"navigation:96\";s:33:\"------ Top \'access denied\' errors\";s:13:\"navigation:97\";s:34:\"------ Top \'page not found\' errors\";s:14:\"navigation:121\";s:25:\"------ Top search phrases\";s:14:\"navigation:105\";s:24:\"------ Available updates\";s:13:\"navigation:48\";s:20:\"------ Status report\";s:13:\"navigation:15\";s:9:\"---- Help\";s:12:\"navigation:4\";s:10:\"-- Log out\";s:15:\"primary-links:0\";s:15:\"<Primary links>\";s:17:\"menu-right-menu:0\";s:12:\"<Right Menu>\";s:19:\"menu-right-menu:496\";s:28:\"-- Financial Calculator Tool\";s:19:\"menu-right-menu:497\";s:21:\"-- News Story Library\";s:19:\"menu-right-menu:498\";s:14:\"-- Latest News\";s:19:\"menu-right-menu:499\";s:25:\"-- SREC Management Portal\";s:17:\"secondary-links:0\";s:17:\"<Secondary links>\";}s:12:\"#description\";s:156:\"The maximum depth for an item and all its children is fixed at 9. Some menu items may not be available as parents if selecting them would exceed this limit.\";s:11:\"#attributes\";a:1:{s:5:\"class\";s:17:\"menu-title-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:107:\"Optional. In the menu, the heavier items will sink and the lighter items will be positioned nearer the top.\";}}s:7:\"#submit\";a:1:{i:0;s:21:\"menu_node_form_submit\";}s:4:\"path\";a:10:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:17:\"URL path settings\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:0;s:7:\"#access\";b:1;s:7:\"#weight\";i:30;s:4:\"path\";a:6:{s:5:\"#type\";s:9:\"textfield\";s:14:\"#default_value\";s:63:\"renewable-energy-credit-rec-management-program-pv-system-owners\";s:10:\"#maxlength\";i:128;s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:12:\"#description\";s:207:\"Optionally specify an alternative URL by which this node 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\";s:2:\"11\";}s:22:\"pathauto_perform_alias\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:15:\"Automatic alias\";s:14:\"#default_value\";b:1;s:12:\"#description\";s:238:\"An alias will be generated for you. If you wish to create your own alias below, uncheck this option. To control the format of the generated aliases, see the <a href=\"/~uspvinc/main2/admin/build/path/pathauto\">automated alias settings</a>.\";s:7:\"#weight\";i:-1;}s:9:\"old_alias\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:63:\"renewable-energy-credit-rec-management-program-pv-system-owners\";}}s:11:\"#pre_render\";a:1:{i:0;s:27:\"content_alter_extra_weights\";}s:21:\"#content_extra_fields\";a:6:{s:5:\"title\";a:3:{s:5:\"label\";s:5:\"Title\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:-5;}s:10:\"body_field\";a:4:{s:5:\"label\";s:4:\"Body\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:0;s:4:\"view\";s:4:\"body\";}s:20:\"revision_information\";a:3:{s:5:\"label\";s:20:\"Revision information\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:20;}s:16:\"comment_settings\";a:3:{s:5:\"label\";s:16:\"Comment settings\";s:11:\"description\";s:20:\"Comment module form.\";s:6:\"weight\";i:30;}s:4:\"menu\";a:3:{s:5:\"label\";s:13:\"Menu settings\";s:11:\"description\";s:17:\"Menu module form.\";s:6:\"weight\";i:-2;}s:4:\"path\";a:3:{s:5:\"label\";s:13:\"Path settings\";s:11:\"description\";s:17:\"Path module form.\";s:6:\"weight\";i:30;}}s:12:\"#cache_token\";s:32:\"ea05954e6208c2bed552f97e30d1dad3\";}',1285731025,1285709425,'',1),('form_form-681ce3478cabf6e9e168c02978739744','a:40:{s:3:\"#id\";s:9:\"node-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:\"1265202538\";}s:4:\"type\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:4:\"page\";}s:8:\"language\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:0:\"\";}s:7:\"changed\";a:2:{s:5:\"#type\";s:6:\"hidden\";s:14:\"#default_value\";s:10:\"1285702357\";}s:5:\"title\";a:6:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:5:\"Title\";s:9:\"#required\";b:1;s:14:\"#default_value\";s:9:\"resources\";s:10:\"#maxlength\";i:255;s:7:\"#weight\";i:-5;}s:10:\"body_field\";a:7:{s:12:\"#after_build\";a:2:{i:0;s:14:\"node_teaser_js\";i:1;s:26:\"node_teaser_include_verify\";}s:7:\"#prefix\";s:32:\"<div class=\"body-field-wrapper\">\";s:7:\"#suffix\";s:6:\"</div>\";s:9:\"teaser_js\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:5:\"#rows\";i:10;s:7:\"#teaser\";s:9:\"edit-body\";s:16:\"#teaser_checkbox\";s:19:\"edit-teaser-include\";s:9:\"#disabled\";b:1;}s:14:\"teaser_include\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:25:\"Show summary in full view\";s:14:\"#default_value\";b:1;s:7:\"#prefix\";s:29:\"<div class=\"teaser-checkbox\">\";s:7:\"#suffix\";s:6:\"</div>\";}s:4:\"body\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:4:\"Body\";s:14:\"#default_value\";s:1245:\"<h2>Internet Resources</h2>\r\n \r\nFrom the Database of State Incentives for Renewables and Efficiency (DSIRE.org):\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/statesearch2.cfm?State=US&back=fintab&CurrentPageID=7&Search=TableState&EE=1&RE=1\">Federal Incentives for Solar PV</a>\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&State=MD&RE=1&EE=1\">Maryland Incentives for Solar PV</a>\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&State=DC&RE=1&EE=1\">District of Columbia Incentives for Solar PV</a>\r\n\r\n<h2>Industry Organizations</h2>\r\n\r\n<a href=\"http://www.ases.org/\">American Solar Energy Society</a> Professional Member\r\n<img src=\"/~uspvinc/main2/sites/default/files/images/ases-logo.jpg\"/> \r\n\r\n<a href=\"http://www.mdv-seia.org/\">Maryland-DC-Virginia Solar Energy Industries Association</a>   Professional Member\r\n\r\n<img src=\"/~uspvinc/main2/sites/default/files/images/MDVSEIA.jpg\"/>\r\n\r\n  \r\n<h2>Contact Us</h2>\r\n<p>\r\nTelephone: 240-344-2657\r\n</p>\r\n<p>\r\nEmail:\r\n\r\n          Sales: sales@uspvinc.com\r\n\r\n          Customer Service: support@uspvinc.com\r\n\r\n          Other Inquiries:  info@uspvinc.com\r\n</p>\r\n<p>\r\nPostal Address: 4539 Metropolitan Court, Frederick MD  21704\r\n</p>\";s:5:\"#rows\";i:20;s:9:\"#required\";b:0;}s:6:\"format\";a:9:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:12:\"Input format\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:7:\"#weight\";N;s:17:\"#element_validate\";a:1:{i:0;s:20:\"filter_form_validate\";}i:1;a:7:{s:5:\"#type\";s:5:\"radio\";s:6:\"#title\";s:13:\"Filtered HTML\";s:14:\"#default_value\";s:1:\"2\";s:13:\"#return_value\";s:1:\"1\";s:8:\"#parents\";a:1:{i:0;s:6:\"format\";}s:12:\"#description\";s:306:\"<ul class=\"tips\"><li>Web page addresses and e-mail addresses turn into links automatically.</li><li>Allowed HTML tags: &lt;a&gt; &lt;em&gt; &lt;strong&gt; &lt;cite&gt; &lt;code&gt; &lt;ul&gt; &lt;ol&gt; &lt;li&gt; &lt;dl&gt; &lt;dt&gt; &lt;dd&gt;</li><li>Lines and paragraphs break automatically.</li></ul>\";s:3:\"#id\";s:13:\"edit-format-1\";}i:2;a:7:{s:5:\"#type\";s:5:\"radio\";s:6:\"#title\";s:9:\"Full HTML\";s:14:\"#default_value\";s:1:\"2\";s:13:\"#return_value\";s:1:\"2\";s:8:\"#parents\";a:1:{i:0;s:6:\"format\";}s:12:\"#description\";s:151:\"<ul class=\"tips\"><li>Web page addresses and e-mail addresses turn into links automatically.</li><li>Lines and paragraphs break automatically.</li></ul>\";s:3:\"#id\";s:13:\"edit-format-2\";}i:3;a:1:{s:6:\"#value\";s:90:\"<p><a href=\"/~uspvinc/main2/filter/tips\">More information about formatting options</a></p>\";}}}s:5:\"#node\";O:8:\"stdClass\":33:{s:3:\"nid\";s:1:\"4\";s:4:\"type\";s:4:\"page\";s:8:\"language\";s:0:\"\";s:3:\"uid\";s:1:\"1\";s:6:\"status\";s:1:\"1\";s:7:\"created\";s:10:\"1265202538\";s:7:\"changed\";s:10:\"1285702357\";s:7:\"comment\";s:1:\"0\";s:7:\"promote\";s:1:\"0\";s:8:\"moderate\";s:1:\"0\";s:6:\"sticky\";s:1:\"0\";s:4:\"tnid\";s:1:\"0\";s:9:\"translate\";s:1:\"0\";s:3:\"vid\";s:1:\"4\";s:12:\"revision_uid\";s:1:\"1\";s:5:\"title\";s:9:\"resources\";s:4:\"body\";s:1245:\"<h2>Internet Resources</h2>\r\n \r\nFrom the Database of State Incentives for Renewables and Efficiency (DSIRE.org):\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/statesearch2.cfm?State=US&back=fintab&CurrentPageID=7&Search=TableState&EE=1&RE=1\">Federal Incentives for Solar PV</a>\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&State=MD&RE=1&EE=1\">Maryland Incentives for Solar PV</a>\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&State=DC&RE=1&EE=1\">District of Columbia Incentives for Solar PV</a>\r\n\r\n<h2>Industry Organizations</h2>\r\n\r\n<a href=\"http://www.ases.org/\">American Solar Energy Society</a> Professional Member\r\n<img src=\"/~uspvinc/main2/sites/default/files/images/ases-logo.jpg\"/> \r\n\r\n<a href=\"http://www.mdv-seia.org/\">Maryland-DC-Virginia Solar Energy Industries Association</a>   Professional Member\r\n\r\n<img src=\"/~uspvinc/main2/sites/default/files/images/MDVSEIA.jpg\"/>\r\n\r\n  \r\n<h2>Contact Us</h2>\r\n<p>\r\nTelephone: 240-344-2657\r\n</p>\r\n<p>\r\nEmail:\r\n\r\n          Sales: sales@uspvinc.com\r\n\r\n          Customer Service: support@uspvinc.com\r\n\r\n          Other Inquiries:  info@uspvinc.com\r\n</p>\r\n<p>\r\nPostal Address: 4539 Metropolitan Court, Frederick MD  21704\r\n</p>\";s:6:\"teaser\";s:569:\"<h2>Internet Resources</h2>\r\n \r\nFrom the Database of State Incentives for Renewables and Efficiency (DSIRE.org):\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/statesearch2.cfm?State=US&back=fintab&CurrentPageID=7&Search=TableState&EE=1&RE=1\">Federal Incentives for Solar PV</a>\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&State=MD&RE=1&EE=1\">Maryland Incentives for Solar PV</a>\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&State=DC&RE=1&EE=1\">District of Columbia Incentives for Solar PV</a>\r\n\r\";s:3:\"log\";N;s:18:\"revision_timestamp\";s:10:\"1285702357\";s:6:\"format\";s:1:\"2\";s:4:\"name\";s:5:\"admin\";s:7:\"picture\";s:0:\"\";s:4:\"data\";s:6:\"a:0:{}\";s:4:\"path\";s:9:\"resources\";s:22:\"last_comment_timestamp\";s:10:\"1265202538\";s:17:\"last_comment_name\";N;s:13:\"comment_count\";s:1:\"0\";s:8:\"taxonomy\";a:0:{}s:4:\"date\";s:25:\"2010-02-03 21:08:58 +0800\";s:8:\"revision\";b:0;s:4:\"menu\";a:48:{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:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:3:\"fit\";s:1:\"2\";s:12:\"number_parts\";s:1:\"2\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:9:\"resources\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:4:\"type\";s:1:\"4\";s:14:\"block_callback\";s:0:\"\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"0\";s:4:\"file\";s:0:\"\";s:9:\"menu_name\";s:14:\"menu-main-menu\";s:4:\"mlid\";s:3:\"284\";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:9:\"resources\";s:7:\"options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:9:\"resources\";}}s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"284\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:4:\"href\";s:6:\"node/4\";s:6:\"access\";b:1;s:17:\"localized_options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:9:\"resources\";}}s:18:\"parent_depth_limit\";i:8;}s:22:\"pathauto_perform_alias\";b:1;}s:20:\"revision_information\";a:7:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:20:\"Revision information\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:7:\"#weight\";i:20;s:8:\"revision\";a:4:{s:7:\"#access\";b:1;s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:19:\"Create new revision\";s:14:\"#default_value\";b:0;}s:3:\"log\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:11:\"Log message\";s:14:\"#default_value\";s:0:\"\";s:5:\"#rows\";i:2;s:12:\"#description\";s:104:\"An explanation of the additions or updates being made to help other authors understand your motivations.\";}}s:6:\"author\";a:8:{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:7:\"#weight\";i:20;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:35:\"Leave blank for <em>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:91:\"Format: <em>2010-02-03 21:08:58 +0800</em>. Leave blank to use the time of form submission.\";s:14:\"#default_value\";s:25:\"2010-02-03 21:08:58 +0800\";}}s:7:\"options\";a:9:{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:7:\"#weight\";i:25;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:\"buttons\";a:3:{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:16:\"node_form_submit\";}}s:7:\"preview\";a:4:{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:6:\"#theme\";a:2:{i:0;s:14:\"page_node_form\";i:1;s:9:\"node_form\";}s:11:\"#parameters\";a:3:{i:0;s:14:\"page_node_form\";i:1;a:3:{s:7:\"storage\";N;s:9:\"submitted\";b:0;s:4:\"post\";a:0:{}}i:2;r:83;}s:9:\"#build_id\";s:37:\"form-681ce3478cabf6e9e168c02978739744\";s:5:\"#type\";s:4:\"form\";s:11:\"#programmed\";b:0;s:13:\"form_build_id\";a:4:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:37:\"form-681ce3478cabf6e9e168c02978739744\";s:3:\"#id\";s:37:\"form-681ce3478cabf6e9e168c02978739744\";s:5:\"#name\";s:13:\"form_build_id\";}s:6:\"#token\";s:14:\"page_node_form\";s:10:\"form_token\";a:3:{s:3:\"#id\";s:30:\"edit-page-node-form-form-token\";s:5:\"#type\";s:5:\"token\";s:14:\"#default_value\";s:32:\"69ee9cfa6b6366390575effcb3429c15\";}s:7:\"form_id\";a:3:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:14:\"page_node_form\";s:3:\"#id\";s:19:\"edit-page-node-form\";}s:12:\"#description\";N;s:11:\"#attributes\";a:0:{}s:9:\"#required\";b:0;s:5:\"#tree\";b:0;s:8:\"#parents\";a:0:{}s:7:\"#method\";s:4:\"post\";s:7:\"#action\";s:27:\"/~uspvinc/main2/node/4/edit\";s:16:\"comment_settings\";a:7:{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:7:\"#weight\";i:30;s:7:\"comment\";a:4:{s:5:\"#type\";s:6:\"radios\";s:8:\"#parents\";a:1:{i:0;s:7:\"comment\";}s:14:\"#default_value\";s:1:\"0\";s:8:\"#options\";a:3:{i:0;s:8:\"Disabled\";i:1;s:9:\"Read only\";i:2;s:10:\"Read/Write\";}}}s:6:\"#cache\";b:1;s:4:\"menu\";a:21:{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:5:\"#tree\";b:1;s:7:\"#weight\";i:-2;s:11:\"#attributes\";a:1:{s:5:\"class\";s:14:\"menu-item-form\";}s:6:\"delete\";a:2:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:22:\"Delete this menu item.\";}s:4:\"mlid\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:3:\"284\";}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\";s:1:\"1\";}s:7:\"options\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:9:\"resources\";}}}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:5:\"#item\";a:48:{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:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:3:\"fit\";s:1:\"2\";s:12:\"number_parts\";s:1:\"2\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:9:\"resources\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:4:\"type\";s:1:\"4\";s:14:\"block_callback\";s:0:\"\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"0\";s:4:\"file\";s:0:\"\";s:9:\"menu_name\";s:14:\"menu-main-menu\";s:4:\"mlid\";s:3:\"284\";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:9:\"resources\";s:7:\"options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:9:\"resources\";}}s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"284\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:4:\"href\";s:6:\"node/4\";s:6:\"access\";b:1;s:17:\"localized_options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:9:\"resources\";}}s:18:\"parent_depth_limit\";i:8;}s:10:\"link_title\";a:5:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:15:\"Menu link title\";s:14:\"#default_value\";s:9:\"resources\";s:12:\"#description\";s:133:\"The link text corresponding to this item that should appear in the menu. Leave blank if you do not wish to add this post to the menu.\";s:9:\"#required\";b:0;}s:6:\"parent\";a:6:{s:5:\"#type\";s:6:\"select\";s:6:\"#title\";s:11:\"Parent item\";s:14:\"#default_value\";s:16:\"menu-main-menu:0\";s:8:\"#options\";a:95:{s:16:\"menu-main-menu:0\";s:11:\"<Main Menu>\";s:18:\"menu-main-menu:283\";s:8:\"-- about\";s:18:\"menu-main-menu:285\";s:11:\"-- services\";s:18:\"menu-main-menu:286\";s:17:\"-- special offers\";s:12:\"navigation:0\";s:12:\"<Navigation>\";s:12:\"navigation:9\";s:26:\"-- Compose tips (disabled)\";s:14:\"navigation:461\";s:29:\"-- Image galleries (disabled)\";s:13:\"navigation:21\";s:13:\"-- My account\";s:14:\"navigation:114\";s:20:\"-- Search (disabled)\";s:14:\"navigation:244\";s:22:\"-- Site map (disabled)\";s:13:\"navigation:11\";s:17:\"-- Create content\";s:14:\"navigation:476\";s:11:\"---- Banner\";s:14:\"navigation:441\";s:10:\"---- Image\";s:14:\"navigation:289\";s:21:\"---- Newsletter issue\";s:14:\"navigation:106\";s:9:\"---- Page\";s:14:\"navigation:388\";s:10:\"---- Panel\";s:14:\"navigation:107\";s:10:\"---- Story\";s:12:\"navigation:2\";s:13:\"-- Administer\";s:13:\"navigation:10\";s:23:\"---- Content management\";s:13:\"navigation:27\";s:15:\"------ Comments\";s:13:\"navigation:28\";s:14:\"------ Content\";s:13:\"navigation:29\";s:20:\"------ Content types\";s:14:\"navigation:462\";s:22:\"------ Image galleries\";s:14:\"navigation:463\";s:19:\"------ Image import\";s:14:\"navigation:538\";s:18:\"------ Newsletters\";s:14:\"navigation:546\";s:20:\"-------- Sent issues\";s:14:\"navigation:541\";s:21:\"-------- Draft issues\";s:14:\"navigation:544\";s:20:\"-------- Newsletters\";s:14:\"navigation:548\";s:22:\"-------- Subscriptions\";s:13:\"navigation:42\";s:20:\"------ Post settings\";s:13:\"navigation:43\";s:21:\"------ RSS publishing\";s:13:\"navigation:94\";s:15:\"------ Taxonomy\";s:13:\"navigation:17\";s:18:\"---- Site building\";s:13:\"navigation:25\";s:13:\"------ Blocks\";s:14:\"navigation:424\";s:20:\"------ Bulk Exporter\";s:13:\"navigation:38\";s:12:\"------ Menus\";s:14:\"navigation:282\";s:18:\"-------- Main Menu\";s:13:\"navigation:89\";s:19:\"-------- Navigation\";s:13:\"navigation:90\";s:22:\"-------- Primary links\";s:14:\"navigation:495\";s:19:\"-------- Right Menu\";s:13:\"navigation:91\";s:24:\"-------- Secondary links\";s:14:\"navigation:387\";s:18:\"------ Mini panels\";s:13:\"navigation:39\";s:14:\"------ Modules\";s:14:\"navigation:412\";s:12:\"------ Pages\";s:14:\"navigation:360\";s:13:\"------ Panels\";s:13:\"navigation:49\";s:13:\"------ Themes\";s:14:\"navigation:335\";s:15:\"------ Triggers\";s:14:\"navigation:501\";s:18:\"------ URL aliases\";s:14:\"navigation:257\";s:12:\"------ Views\";s:13:\"navigation:18\";s:23:\"---- Site configuration\";s:13:\"navigation:23\";s:14:\"------ Actions\";s:14:\"navigation:119\";s:26:\"------ Administration menu\";s:13:\"navigation:24\";s:27:\"------ Administration theme\";s:13:\"navigation:26\";s:17:\"------ Clean URLs\";s:13:\"navigation:30\";s:20:\"------ Date and time\";s:13:\"navigation:33\";s:22:\"------ Error reporting\";s:13:\"navigation:34\";s:18:\"------ File system\";s:13:\"navigation:35\";s:20:\"------ Image toolkit\";s:14:\"navigation:442\";s:13:\"------ Images\";s:13:\"navigation:36\";s:20:\"------ Input formats\";s:13:\"navigation:37\";s:25:\"------ Logging and alerts\";s:14:\"navigation:100\";s:25:\"-------- Database logging\";s:14:\"navigation:245\";s:17:\"------ Nice Menus\";s:13:\"navigation:40\";s:18:\"------ Performance\";s:14:\"navigation:120\";s:22:\"------ Search settings\";s:14:\"navigation:539\";s:17:\"------ Simplenews\";s:14:\"navigation:542\";s:16:\"-------- General\";s:14:\"navigation:543\";s:19:\"-------- Newsletter\";s:14:\"navigation:547\";s:21:\"-------- Subscription\";s:14:\"navigation:545\";s:18:\"-------- Send mail\";s:13:\"navigation:46\";s:23:\"------ Site information\";s:13:\"navigation:47\";s:23:\"------ Site maintenance\";s:14:\"navigation:246\";s:15:\"------ Site map\";s:13:\"navigation:20\";s:20:\"---- User management\";s:13:\"navigation:22\";s:19:\"------ Access rules\";s:13:\"navigation:41\";s:18:\"------ Permissions\";s:13:\"navigation:45\";s:12:\"------ Roles\";s:13:\"navigation:50\";s:20:\"------ User settings\";s:13:\"navigation:51\";s:12:\"------ Users\";s:13:\"navigation:16\";s:12:\"---- Reports\";s:13:\"navigation:93\";s:25:\"------ Recent log entries\";s:13:\"navigation:96\";s:33:\"------ Top \'access denied\' errors\";s:13:\"navigation:97\";s:34:\"------ Top \'page not found\' errors\";s:14:\"navigation:121\";s:25:\"------ Top search phrases\";s:14:\"navigation:105\";s:24:\"------ Available updates\";s:13:\"navigation:48\";s:20:\"------ Status report\";s:13:\"navigation:15\";s:9:\"---- Help\";s:12:\"navigation:4\";s:10:\"-- Log out\";s:15:\"primary-links:0\";s:15:\"<Primary links>\";s:17:\"menu-right-menu:0\";s:12:\"<Right Menu>\";s:19:\"menu-right-menu:496\";s:28:\"-- Financial Calculator Tool\";s:19:\"menu-right-menu:497\";s:21:\"-- News Story Library\";s:19:\"menu-right-menu:498\";s:14:\"-- Latest News\";s:19:\"menu-right-menu:499\";s:25:\"-- SREC Management Portal\";s:17:\"secondary-links:0\";s:17:\"<Secondary links>\";}s:12:\"#description\";s:156:\"The maximum depth for an item and all its children is fixed at 9. Some menu items may not be available as parents if selecting them would exceed this limit.\";s:11:\"#attributes\";a:1:{s:5:\"class\";s:17:\"menu-title-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:1:\"0\";s:12:\"#description\";s:107:\"Optional. In the menu, the heavier items will sink and the lighter items will be positioned nearer the top.\";}}s:7:\"#submit\";a:1:{i:0;s:21:\"menu_node_form_submit\";}s:4:\"path\";a:10:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:17:\"URL path settings\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:0;s:7:\"#access\";b:1;s:7:\"#weight\";i:30;s:4:\"path\";a:6:{s:5:\"#type\";s:9:\"textfield\";s:14:\"#default_value\";s:9:\"resources\";s:10:\"#maxlength\";i:128;s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:12:\"#description\";s:207:\"Optionally specify an alternative URL by which this node 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\";s:1:\"4\";}s:22:\"pathauto_perform_alias\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:15:\"Automatic alias\";s:14:\"#default_value\";b:1;s:12:\"#description\";s:238:\"An alias will be generated for you. If you wish to create your own alias below, uncheck this option. To control the format of the generated aliases, see the <a href=\"/~uspvinc/main2/admin/build/path/pathauto\">automated alias settings</a>.\";s:7:\"#weight\";i:-1;}s:9:\"old_alias\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:9:\"resources\";}}s:11:\"#pre_render\";a:1:{i:0;s:27:\"content_alter_extra_weights\";}s:21:\"#content_extra_fields\";a:6:{s:5:\"title\";a:3:{s:5:\"label\";s:5:\"Title\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:-5;}s:10:\"body_field\";a:4:{s:5:\"label\";s:4:\"Body\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:0;s:4:\"view\";s:4:\"body\";}s:20:\"revision_information\";a:3:{s:5:\"label\";s:20:\"Revision information\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:20;}s:16:\"comment_settings\";a:3:{s:5:\"label\";s:16:\"Comment settings\";s:11:\"description\";s:20:\"Comment module form.\";s:6:\"weight\";i:30;}s:4:\"menu\";a:3:{s:5:\"label\";s:13:\"Menu settings\";s:11:\"description\";s:17:\"Menu module form.\";s:6:\"weight\";i:-2;}s:4:\"path\";a:3:{s:5:\"label\";s:13:\"Path settings\";s:11:\"description\";s:17:\"Path module form.\";s:6:\"weight\";i:30;}}s:12:\"#cache_token\";s:32:\"ea05954e6208c2bed552f97e30d1dad3\";}',1285732236,1285710636,'',1),('form_form-94a37c4162d1865e4c9296466dad95da','a:40:{s:3:\"#id\";s:9:\"node-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:1285711845;}s:4:\"type\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:4:\"page\";}s:8:\"language\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:0:\"\";}s:7:\"changed\";a:2:{s:5:\"#type\";s:6:\"hidden\";s:14:\"#default_value\";N;}s:5:\"title\";a:6:{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:10:\"body_field\";a:7:{s:12:\"#after_build\";a:2:{i:0;s:14:\"node_teaser_js\";i:1;s:26:\"node_teaser_include_verify\";}s:7:\"#prefix\";s:32:\"<div class=\"body-field-wrapper\">\";s:7:\"#suffix\";s:6:\"</div>\";s:9:\"teaser_js\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:5:\"#rows\";i:10;s:7:\"#teaser\";s:9:\"edit-body\";s:16:\"#teaser_checkbox\";s:19:\"edit-teaser-include\";s:9:\"#disabled\";b:1;}s:14:\"teaser_include\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:25:\"Show summary in full view\";s:14:\"#default_value\";b:1;s:7:\"#prefix\";s:29:\"<div class=\"teaser-checkbox\">\";s:7:\"#suffix\";s:6:\"</div>\";}s:4:\"body\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:4:\"Body\";s:14:\"#default_value\";N;s:5:\"#rows\";i:20;s:9:\"#required\";b:0;}s:6:\"format\";a:9:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:12:\"Input format\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:7:\"#weight\";N;s:17:\"#element_validate\";a:1:{i:0;s:20:\"filter_form_validate\";}i:1;a:7:{s:5:\"#type\";s:5:\"radio\";s:6:\"#title\";s:13:\"Filtered HTML\";s:14:\"#default_value\";i:1;s:13:\"#return_value\";s:1:\"1\";s:8:\"#parents\";a:1:{i:0;s:6:\"format\";}s:12:\"#description\";s:306:\"<ul class=\"tips\"><li>Web page addresses and e-mail addresses turn into links automatically.</li><li>Allowed HTML tags: &lt;a&gt; &lt;em&gt; &lt;strong&gt; &lt;cite&gt; &lt;code&gt; &lt;ul&gt; &lt;ol&gt; &lt;li&gt; &lt;dl&gt; &lt;dt&gt; &lt;dd&gt;</li><li>Lines and paragraphs break automatically.</li></ul>\";s:3:\"#id\";s:13:\"edit-format-1\";}i:2;a:7:{s:5:\"#type\";s:5:\"radio\";s:6:\"#title\";s:9:\"Full HTML\";s:14:\"#default_value\";i:1;s:13:\"#return_value\";s:1:\"2\";s:8:\"#parents\";a:1:{i:0;s:6:\"format\";}s:12:\"#description\";s:151:\"<ul class=\"tips\"><li>Web page addresses and e-mail addresses turn into links automatically.</li><li>Lines and paragraphs break automatically.</li></ul>\";s:3:\"#id\";s:13:\"edit-format-2\";}i:3;a:1:{s:6:\"#value\";s:90:\"<p><a href=\"/~uspvinc/main2/filter/tips\">More information about formatting options</a></p>\";}}}s:5:\"#node\";O:8:\"stdClass\":15:{s:3:\"uid\";s:1:\"1\";s:4:\"name\";s:5:\"admin\";s:4:\"type\";s:4:\"page\";s:8:\"language\";s:0:\"\";s:4:\"body\";N;s:5:\"title\";N;s:6:\"format\";N;s:6:\"status\";b:1;s:7:\"promote\";b:0;s:6:\"sticky\";b:0;s:7:\"created\";i:1285711845;s:8:\"revision\";b:0;s:7:\"comment\";i: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:13:\"primary-links\";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:22:\"pathauto_perform_alias\";b:1;}s:20:\"revision_information\";a:7:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:20:\"Revision information\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:7:\"#weight\";i:20;s:8:\"revision\";a:4:{s:7:\"#access\";b:1;s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:19:\"Create new revision\";s:14:\"#default_value\";b:0;}s:3:\"log\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:11:\"Log message\";s:14:\"#default_value\";s:0:\"\";s:5:\"#rows\";i:2;s:12:\"#description\";s:104:\"An explanation of the additions or updates being made to help other authors understand your motivations.\";}}s:6:\"author\";a:8:{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:7:\"#weight\";i:20;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:35:\"Leave blank for <em>Anonymous</em>.\";}s:4:\"date\";a:4:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:11:\"Authored on\";s:10:\"#maxlength\";i:25;s:12:\"#description\";s:91:\"Format: <em>2010-09-29 06:10:45 +0800</em>. Leave blank to use the time of form submission.\";}}s:7:\"options\";a:9:{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:7:\"#weight\";i:25;s:6:\"status\";a:3:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:9:\"Published\";s:14:\"#default_value\";b: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\";b: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\";b:0;}}s:7:\"buttons\";a:2:{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:16:\"node_form_submit\";}}s:7:\"preview\";a:4:{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:6:\"#theme\";a:2:{i:0;s:14:\"page_node_form\";i:1;s:9:\"node_form\";}s:11:\"#parameters\";a:3:{i:0;s:14:\"page_node_form\";i:1;a:3:{s:7:\"storage\";N;s:9:\"submitted\";b:0;s:4:\"post\";a:0:{}}i:2;a:4:{s:3:\"uid\";s:1:\"1\";s:4:\"name\";s:5:\"admin\";s:4:\"type\";s:4:\"page\";s:8:\"language\";s:0:\"\";}}s:9:\"#build_id\";s:37:\"form-94a37c4162d1865e4c9296466dad95da\";s:5:\"#type\";s:4:\"form\";s:11:\"#programmed\";b:0;s:13:\"form_build_id\";a:4:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:37:\"form-94a37c4162d1865e4c9296466dad95da\";s:3:\"#id\";s:37:\"form-94a37c4162d1865e4c9296466dad95da\";s:5:\"#name\";s:13:\"form_build_id\";}s:6:\"#token\";s:14:\"page_node_form\";s:10:\"form_token\";a:3:{s:3:\"#id\";s:30:\"edit-page-node-form-form-token\";s:5:\"#type\";s:5:\"token\";s:14:\"#default_value\";s:32:\"69ee9cfa6b6366390575effcb3429c15\";}s:7:\"form_id\";a:3:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:14:\"page_node_form\";s:3:\"#id\";s:19:\"edit-page-node-form\";}s:12:\"#description\";N;s:11:\"#attributes\";a:0:{}s:9:\"#required\";b:0;s:5:\"#tree\";b:0;s:8:\"#parents\";a:0:{}s:7:\"#method\";s:4:\"post\";s:7:\"#action\";s:29:\"/~uspvinc/main2/node/add/page\";s:16:\"comment_settings\";a:7:{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:7:\"#weight\";i:30;s:7:\"comment\";a:4:{s:5:\"#type\";s:6:\"radios\";s:8:\"#parents\";a:1:{i:0;s:7:\"comment\";}s:14:\"#default_value\";i:0;s:8:\"#options\";a:3:{i:0;s:8:\"Disabled\";i:1;s:9:\"Read only\";i:2;s:10:\"Read/Write\";}}}s:6:\"#cache\";b:1;s:4:\"menu\";a:20:{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:5:\"#tree\";b:1;s:7:\"#weight\";i:-2;s:11:\"#attributes\";a:1:{s:5:\"class\";s:14:\"menu-item-form\";}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:0;}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:5:\"#item\";a:12:{s:10:\"link_title\";s:0:\"\";s:4:\"mlid\";i:0;s:4:\"plid\";i:0;s:9:\"menu_name\";s:13:\"primary-links\";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:10:\"link_title\";a:5:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:15:\"Menu link title\";s:14:\"#default_value\";s:0:\"\";s:12:\"#description\";s:133:\"The link text corresponding to this item that should appear in the menu. Leave blank if you do not wish to add this post to the menu.\";s:9:\"#required\";b:0;}s:6:\"parent\";a:6:{s:5:\"#type\";s:6:\"select\";s:6:\"#title\";s:11:\"Parent item\";s:14:\"#default_value\";s:15:\"primary-links:0\";s:8:\"#options\";a:96:{s:16:\"menu-main-menu:0\";s:11:\"<Main Menu>\";s:18:\"menu-main-menu:283\";s:8:\"-- about\";s:18:\"menu-main-menu:284\";s:12:\"-- resources\";s:18:\"menu-main-menu:285\";s:11:\"-- services\";s:18:\"menu-main-menu:286\";s:17:\"-- special offers\";s:12:\"navigation:0\";s:12:\"<Navigation>\";s:12:\"navigation:9\";s:26:\"-- Compose tips (disabled)\";s:14:\"navigation:461\";s:29:\"-- Image galleries (disabled)\";s:13:\"navigation:21\";s:13:\"-- My account\";s:14:\"navigation:114\";s:20:\"-- Search (disabled)\";s:14:\"navigation:244\";s:22:\"-- Site map (disabled)\";s:13:\"navigation:11\";s:17:\"-- Create content\";s:14:\"navigation:476\";s:11:\"---- Banner\";s:14:\"navigation:441\";s:10:\"---- Image\";s:14:\"navigation:289\";s:21:\"---- Newsletter issue\";s:14:\"navigation:106\";s:9:\"---- Page\";s:14:\"navigation:388\";s:10:\"---- Panel\";s:14:\"navigation:107\";s:10:\"---- Story\";s:12:\"navigation:2\";s:13:\"-- Administer\";s:13:\"navigation:10\";s:23:\"---- Content management\";s:13:\"navigation:27\";s:15:\"------ Comments\";s:13:\"navigation:28\";s:14:\"------ Content\";s:13:\"navigation:29\";s:20:\"------ Content types\";s:14:\"navigation:462\";s:22:\"------ Image galleries\";s:14:\"navigation:463\";s:19:\"------ Image import\";s:14:\"navigation:538\";s:18:\"------ Newsletters\";s:14:\"navigation:546\";s:20:\"-------- Sent issues\";s:14:\"navigation:541\";s:21:\"-------- Draft issues\";s:14:\"navigation:544\";s:20:\"-------- Newsletters\";s:14:\"navigation:548\";s:22:\"-------- Subscriptions\";s:13:\"navigation:42\";s:20:\"------ Post settings\";s:13:\"navigation:43\";s:21:\"------ RSS publishing\";s:13:\"navigation:94\";s:15:\"------ Taxonomy\";s:13:\"navigation:17\";s:18:\"---- Site building\";s:13:\"navigation:25\";s:13:\"------ Blocks\";s:14:\"navigation:424\";s:20:\"------ Bulk Exporter\";s:13:\"navigation:38\";s:12:\"------ Menus\";s:14:\"navigation:282\";s:18:\"-------- Main Menu\";s:13:\"navigation:89\";s:19:\"-------- Navigation\";s:13:\"navigation:90\";s:22:\"-------- Primary links\";s:14:\"navigation:495\";s:19:\"-------- Right Menu\";s:13:\"navigation:91\";s:24:\"-------- Secondary links\";s:14:\"navigation:387\";s:18:\"------ Mini panels\";s:13:\"navigation:39\";s:14:\"------ Modules\";s:14:\"navigation:412\";s:12:\"------ Pages\";s:14:\"navigation:360\";s:13:\"------ Panels\";s:13:\"navigation:49\";s:13:\"------ Themes\";s:14:\"navigation:335\";s:15:\"------ Triggers\";s:14:\"navigation:501\";s:18:\"------ URL aliases\";s:14:\"navigation:257\";s:12:\"------ Views\";s:13:\"navigation:18\";s:23:\"---- Site configuration\";s:13:\"navigation:23\";s:14:\"------ Actions\";s:14:\"navigation:119\";s:26:\"------ Administration menu\";s:13:\"navigation:24\";s:27:\"------ Administration theme\";s:13:\"navigation:26\";s:17:\"------ Clean URLs\";s:13:\"navigation:30\";s:20:\"------ Date and time\";s:13:\"navigation:33\";s:22:\"------ Error reporting\";s:13:\"navigation:34\";s:18:\"------ File system\";s:13:\"navigation:35\";s:20:\"------ Image toolkit\";s:14:\"navigation:442\";s:13:\"------ Images\";s:13:\"navigation:36\";s:20:\"------ Input formats\";s:13:\"navigation:37\";s:25:\"------ Logging and alerts\";s:14:\"navigation:100\";s:25:\"-------- Database logging\";s:14:\"navigation:245\";s:17:\"------ Nice Menus\";s:13:\"navigation:40\";s:18:\"------ Performance\";s:14:\"navigation:120\";s:22:\"------ Search settings\";s:14:\"navigation:539\";s:17:\"------ Simplenews\";s:14:\"navigation:542\";s:16:\"-------- General\";s:14:\"navigation:543\";s:19:\"-------- Newsletter\";s:14:\"navigation:547\";s:21:\"-------- Subscription\";s:14:\"navigation:545\";s:18:\"-------- Send mail\";s:13:\"navigation:46\";s:23:\"------ Site information\";s:13:\"navigation:47\";s:23:\"------ Site maintenance\";s:14:\"navigation:246\";s:15:\"------ Site map\";s:13:\"navigation:20\";s:20:\"---- User management\";s:13:\"navigation:22\";s:19:\"------ Access rules\";s:13:\"navigation:41\";s:18:\"------ Permissions\";s:13:\"navigation:45\";s:12:\"------ Roles\";s:13:\"navigation:50\";s:20:\"------ User settings\";s:13:\"navigation:51\";s:12:\"------ Users\";s:13:\"navigation:16\";s:12:\"---- Reports\";s:13:\"navigation:93\";s:25:\"------ Recent log entries\";s:13:\"navigation:96\";s:33:\"------ Top \'access denied\' errors\";s:13:\"navigation:97\";s:34:\"------ Top \'page not found\' errors\";s:14:\"navigation:121\";s:25:\"------ Top search phrases\";s:14:\"navigation:105\";s:24:\"------ Available updates\";s:13:\"navigation:48\";s:20:\"------ Status report\";s:13:\"navigation:15\";s:9:\"---- Help\";s:12:\"navigation:4\";s:10:\"-- Log out\";s:15:\"primary-links:0\";s:15:\"<Primary links>\";s:17:\"menu-right-menu:0\";s:12:\"<Right Menu>\";s:19:\"menu-right-menu:496\";s:28:\"-- Financial Calculator Tool\";s:19:\"menu-right-menu:497\";s:21:\"-- News Story Library\";s:19:\"menu-right-menu:498\";s:14:\"-- Latest News\";s:19:\"menu-right-menu:499\";s:25:\"-- SREC Management Portal\";s:17:\"secondary-links:0\";s:17:\"<Secondary links>\";}s:12:\"#description\";s:156:\"The maximum depth for an item and all its children is fixed at 9. Some menu items may not be available as parents if selecting them would exceed this limit.\";s:11:\"#attributes\";a:1:{s:5:\"class\";s:17:\"menu-title-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:107:\"Optional. In the menu, the heavier items will sink and the lighter items will be positioned nearer the top.\";}}s:7:\"#submit\";a:1:{i:0;s:21:\"menu_node_form_submit\";}s:4:\"path\";a:8:{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:7:\"#access\";b:1;s:7:\"#weight\";i:30;s:4:\"path\";a:6:{s:5:\"#type\";s:9:\"textfield\";s:14:\"#default_value\";N;s:10:\"#maxlength\";i:128;s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:12:\"#description\";s:207:\"Optionally specify an alternative URL by which this node 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:22:\"pathauto_perform_alias\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:15:\"Automatic alias\";s:14:\"#default_value\";b:1;s:12:\"#description\";s:238:\"An alias will be generated for you. If you wish to create your own alias below, uncheck this option. To control the format of the generated aliases, see the <a href=\"/~uspvinc/main2/admin/build/path/pathauto\">automated alias settings</a>.\";s:7:\"#weight\";i:-1;}}s:11:\"#pre_render\";a:1:{i:0;s:27:\"content_alter_extra_weights\";}s:21:\"#content_extra_fields\";a:6:{s:5:\"title\";a:3:{s:5:\"label\";s:5:\"Title\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:-5;}s:10:\"body_field\";a:4:{s:5:\"label\";s:4:\"Body\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:0;s:4:\"view\";s:4:\"body\";}s:20:\"revision_information\";a:3:{s:5:\"label\";s:20:\"Revision information\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:20;}s:16:\"comment_settings\";a:3:{s:5:\"label\";s:16:\"Comment settings\";s:11:\"description\";s:20:\"Comment module form.\";s:6:\"weight\";i:30;}s:4:\"menu\";a:3:{s:5:\"label\";s:13:\"Menu settings\";s:11:\"description\";s:17:\"Menu module form.\";s:6:\"weight\";i:-2;}s:4:\"path\";a:3:{s:5:\"label\";s:13:\"Path settings\";s:11:\"description\";s:17:\"Path module form.\";s:6:\"weight\";i:30;}}s:12:\"#cache_token\";s:32:\"ea05954e6208c2bed552f97e30d1dad3\";}',1285733445,1285711845,'',1),('form_form-9c1c0507f0cd190e47cbd911a54a2590','a:40:{s:3:\"#id\";s:9:\"node-form\";s:3:\"nid\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:2:\"11\";}s:3:\"vid\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:2:\"11\";}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:\"1285703167\";}s:4:\"type\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:4:\"page\";}s:8:\"language\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:0:\"\";}s:7:\"changed\";a:2:{s:5:\"#type\";s:6:\"hidden\";s:14:\"#default_value\";s:10:\"1285703167\";}s:5:\"title\";a:6:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:5:\"Title\";s:9:\"#required\";b:1;s:14:\"#default_value\";s:69:\"Renewable Energy Credit (REC) Management Program for PV System Owners\";s:10:\"#maxlength\";i:255;s:7:\"#weight\";i:-5;}s:10:\"body_field\";a:7:{s:12:\"#after_build\";a:2:{i:0;s:14:\"node_teaser_js\";i:1;s:26:\"node_teaser_include_verify\";}s:7:\"#prefix\";s:32:\"<div class=\"body-field-wrapper\">\";s:7:\"#suffix\";s:6:\"</div>\";s:9:\"teaser_js\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:5:\"#rows\";i:10;s:7:\"#teaser\";s:9:\"edit-body\";s:16:\"#teaser_checkbox\";s:19:\"edit-teaser-include\";s:9:\"#disabled\";b:1;}s:14:\"teaser_include\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:25:\"Show summary in full view\";s:14:\"#default_value\";b:1;s:7:\"#prefix\";s:29:\"<div class=\"teaser-checkbox\">\";s:7:\"#suffix\";s:6:\"</div>\";}s:4:\"body\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:4:\"Body\";s:14:\"#default_value\";s:225:\"Sign-up for USPV\'s REC Management Program today.  No up-front or out-of-pocket costs.  Don\'t miss out on this opportunity to participate in the Renewable Energy Credit markets and earn hundreds or even thousands of dollars!  \";s:5:\"#rows\";i:20;s:9:\"#required\";b:0;}s:6:\"format\";a:9:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:12:\"Input format\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:7:\"#weight\";N;s:17:\"#element_validate\";a:1:{i:0;s:20:\"filter_form_validate\";}i:1;a:7:{s:5:\"#type\";s:5:\"radio\";s:6:\"#title\";s:13:\"Filtered HTML\";s:14:\"#default_value\";s:1:\"1\";s:13:\"#return_value\";s:1:\"1\";s:8:\"#parents\";a:1:{i:0;s:6:\"format\";}s:12:\"#description\";s:306:\"<ul class=\"tips\"><li>Web page addresses and e-mail addresses turn into links automatically.</li><li>Allowed HTML tags: &lt;a&gt; &lt;em&gt; &lt;strong&gt; &lt;cite&gt; &lt;code&gt; &lt;ul&gt; &lt;ol&gt; &lt;li&gt; &lt;dl&gt; &lt;dt&gt; &lt;dd&gt;</li><li>Lines and paragraphs break automatically.</li></ul>\";s:3:\"#id\";s:13:\"edit-format-1\";}i:2;a:7:{s:5:\"#type\";s:5:\"radio\";s:6:\"#title\";s:9:\"Full HTML\";s:14:\"#default_value\";s:1:\"1\";s:13:\"#return_value\";s:1:\"2\";s:8:\"#parents\";a:1:{i:0;s:6:\"format\";}s:12:\"#description\";s:151:\"<ul class=\"tips\"><li>Web page addresses and e-mail addresses turn into links automatically.</li><li>Lines and paragraphs break automatically.</li></ul>\";s:3:\"#id\";s:13:\"edit-format-2\";}i:3;a:1:{s:6:\"#value\";s:90:\"<p><a href=\"/~uspvinc/main2/filter/tips\">More information about formatting options</a></p>\";}}}s:5:\"#node\";O:8:\"stdClass\":33:{s:3:\"nid\";s:2:\"11\";s:4:\"type\";s:4:\"page\";s:8:\"language\";s:0:\"\";s:3:\"uid\";s:1:\"1\";s:6:\"status\";s:1:\"1\";s:7:\"created\";s:10:\"1285703167\";s:7:\"changed\";s:10:\"1285703167\";s:7:\"comment\";s:1:\"0\";s:7:\"promote\";s:1:\"0\";s:8:\"moderate\";s:1:\"0\";s:6:\"sticky\";s:1:\"0\";s:4:\"tnid\";s:1:\"0\";s:9:\"translate\";s:1:\"0\";s:3:\"vid\";s:2:\"11\";s:12:\"revision_uid\";s:1:\"1\";s:5:\"title\";s:69:\"Renewable Energy Credit (REC) Management Program for PV System Owners\";s:4:\"body\";s:225:\"Sign-up for USPV\'s REC Management Program today.  No up-front or out-of-pocket costs.  Don\'t miss out on this opportunity to participate in the Renewable Energy Credit markets and earn hundreds or even thousands of dollars!  \";s:6:\"teaser\";s:225:\"Sign-up for USPV\'s REC Management Program today.  No up-front or out-of-pocket costs.  Don\'t miss out on this opportunity to participate in the Renewable Energy Credit markets and earn hundreds or even thousands of dollars!  \";s:3:\"log\";N;s:18:\"revision_timestamp\";s:10:\"1285703167\";s:6:\"format\";s:1:\"1\";s:4:\"name\";s:5:\"admin\";s:7:\"picture\";s:0:\"\";s:4:\"data\";s:6:\"a:0:{}\";s:4:\"path\";s:63:\"renewable-energy-credit-rec-management-program-pv-system-owners\";s:22:\"last_comment_timestamp\";s:10:\"1285703167\";s:17:\"last_comment_name\";N;s:13:\"comment_count\";s:1:\"0\";s:8:\"taxonomy\";a:0:{}s:4:\"date\";s:25:\"2010-09-29 03:46:07 +0800\";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:13:\"primary-links\";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:22:\"pathauto_perform_alias\";b:1;}s:20:\"revision_information\";a:7:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:20:\"Revision information\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:7:\"#weight\";i:20;s:8:\"revision\";a:4:{s:7:\"#access\";b:1;s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:19:\"Create new revision\";s:14:\"#default_value\";b:0;}s:3:\"log\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:11:\"Log message\";s:14:\"#default_value\";s:0:\"\";s:5:\"#rows\";i:2;s:12:\"#description\";s:104:\"An explanation of the additions or updates being made to help other authors understand your motivations.\";}}s:6:\"author\";a:8:{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:7:\"#weight\";i:20;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:35:\"Leave blank for <em>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:91:\"Format: <em>2010-09-29 03:46:07 +0800</em>. Leave blank to use the time of form submission.\";s:14:\"#default_value\";s:25:\"2010-09-29 03:46:07 +0800\";}}s:7:\"options\";a:9:{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:7:\"#weight\";i:25;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:\"buttons\";a:3:{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:16:\"node_form_submit\";}}s:7:\"preview\";a:4:{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:6:\"#theme\";a:2:{i:0;s:14:\"page_node_form\";i:1;s:9:\"node_form\";}s:11:\"#parameters\";a:3:{i:0;s:14:\"page_node_form\";i:1;a:3:{s:7:\"storage\";N;s:9:\"submitted\";b:0;s:4:\"post\";a:0:{}}i:2;r:83;}s:9:\"#build_id\";s:37:\"form-9c1c0507f0cd190e47cbd911a54a2590\";s:5:\"#type\";s:4:\"form\";s:11:\"#programmed\";b:0;s:13:\"form_build_id\";a:4:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:37:\"form-9c1c0507f0cd190e47cbd911a54a2590\";s:3:\"#id\";s:37:\"form-9c1c0507f0cd190e47cbd911a54a2590\";s:5:\"#name\";s:13:\"form_build_id\";}s:6:\"#token\";s:14:\"page_node_form\";s:10:\"form_token\";a:3:{s:3:\"#id\";s:30:\"edit-page-node-form-form-token\";s:5:\"#type\";s:5:\"token\";s:14:\"#default_value\";s:32:\"69ee9cfa6b6366390575effcb3429c15\";}s:7:\"form_id\";a:3:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:14:\"page_node_form\";s:3:\"#id\";s:19:\"edit-page-node-form\";}s:12:\"#description\";N;s:11:\"#attributes\";a:0:{}s:9:\"#required\";b:0;s:5:\"#tree\";b:0;s:8:\"#parents\";a:0:{}s:7:\"#method\";s:4:\"post\";s:7:\"#action\";s:28:\"/~uspvinc/main2/node/11/edit\";s:16:\"comment_settings\";a:7:{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:7:\"#weight\";i:30;s:7:\"comment\";a:4:{s:5:\"#type\";s:6:\"radios\";s:8:\"#parents\";a:1:{i:0;s:7:\"comment\";}s:14:\"#default_value\";s:1:\"0\";s:8:\"#options\";a:3:{i:0;s:8:\"Disabled\";i:1;s:9:\"Read only\";i:2;s:10:\"Read/Write\";}}}s:6:\"#cache\";b:1;s:4:\"menu\";a:20:{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:5:\"#tree\";b:1;s:7:\"#weight\";i:-2;s:11:\"#attributes\";a:1:{s:5:\"class\";s:14:\"menu-item-form\";}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:0;}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:5:\"#item\";a:12:{s:10:\"link_title\";s:0:\"\";s:4:\"mlid\";i:0;s:4:\"plid\";i:0;s:9:\"menu_name\";s:13:\"primary-links\";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:10:\"link_title\";a:5:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:15:\"Menu link title\";s:14:\"#default_value\";s:0:\"\";s:12:\"#description\";s:133:\"The link text corresponding to this item that should appear in the menu. Leave blank if you do not wish to add this post to the menu.\";s:9:\"#required\";b:0;}s:6:\"parent\";a:6:{s:5:\"#type\";s:6:\"select\";s:6:\"#title\";s:11:\"Parent item\";s:14:\"#default_value\";s:15:\"primary-links:0\";s:8:\"#options\";a:96:{s:16:\"menu-main-menu:0\";s:11:\"<Main Menu>\";s:18:\"menu-main-menu:283\";s:8:\"-- about\";s:18:\"menu-main-menu:284\";s:12:\"-- resources\";s:18:\"menu-main-menu:285\";s:11:\"-- services\";s:18:\"menu-main-menu:286\";s:17:\"-- special offers\";s:12:\"navigation:0\";s:12:\"<Navigation>\";s:12:\"navigation:9\";s:26:\"-- Compose tips (disabled)\";s:14:\"navigation:461\";s:29:\"-- Image galleries (disabled)\";s:13:\"navigation:21\";s:13:\"-- My account\";s:14:\"navigation:114\";s:20:\"-- Search (disabled)\";s:14:\"navigation:244\";s:22:\"-- Site map (disabled)\";s:13:\"navigation:11\";s:17:\"-- Create content\";s:14:\"navigation:476\";s:11:\"---- Banner\";s:14:\"navigation:441\";s:10:\"---- Image\";s:14:\"navigation:289\";s:21:\"---- Newsletter issue\";s:14:\"navigation:106\";s:9:\"---- Page\";s:14:\"navigation:388\";s:10:\"---- Panel\";s:14:\"navigation:107\";s:10:\"---- Story\";s:12:\"navigation:2\";s:13:\"-- Administer\";s:13:\"navigation:10\";s:23:\"---- Content management\";s:13:\"navigation:27\";s:15:\"------ Comments\";s:13:\"navigation:28\";s:14:\"------ Content\";s:13:\"navigation:29\";s:20:\"------ Content types\";s:14:\"navigation:462\";s:22:\"------ Image galleries\";s:14:\"navigation:463\";s:19:\"------ Image import\";s:14:\"navigation:538\";s:18:\"------ Newsletters\";s:14:\"navigation:546\";s:20:\"-------- Sent issues\";s:14:\"navigation:541\";s:21:\"-------- Draft issues\";s:14:\"navigation:544\";s:20:\"-------- Newsletters\";s:14:\"navigation:548\";s:22:\"-------- Subscriptions\";s:13:\"navigation:42\";s:20:\"------ Post settings\";s:13:\"navigation:43\";s:21:\"------ RSS publishing\";s:13:\"navigation:94\";s:15:\"------ Taxonomy\";s:13:\"navigation:17\";s:18:\"---- Site building\";s:13:\"navigation:25\";s:13:\"------ Blocks\";s:14:\"navigation:424\";s:20:\"------ Bulk Exporter\";s:13:\"navigation:38\";s:12:\"------ Menus\";s:14:\"navigation:282\";s:18:\"-------- Main Menu\";s:13:\"navigation:89\";s:19:\"-------- Navigation\";s:13:\"navigation:90\";s:22:\"-------- Primary links\";s:14:\"navigation:495\";s:19:\"-------- Right Menu\";s:13:\"navigation:91\";s:24:\"-------- Secondary links\";s:14:\"navigation:387\";s:18:\"------ Mini panels\";s:13:\"navigation:39\";s:14:\"------ Modules\";s:14:\"navigation:412\";s:12:\"------ Pages\";s:14:\"navigation:360\";s:13:\"------ Panels\";s:13:\"navigation:49\";s:13:\"------ Themes\";s:14:\"navigation:335\";s:15:\"------ Triggers\";s:14:\"navigation:501\";s:18:\"------ URL aliases\";s:14:\"navigation:257\";s:12:\"------ Views\";s:13:\"navigation:18\";s:23:\"---- Site configuration\";s:13:\"navigation:23\";s:14:\"------ Actions\";s:14:\"navigation:119\";s:26:\"------ Administration menu\";s:13:\"navigation:24\";s:27:\"------ Administration theme\";s:13:\"navigation:26\";s:17:\"------ Clean URLs\";s:13:\"navigation:30\";s:20:\"------ Date and time\";s:13:\"navigation:33\";s:22:\"------ Error reporting\";s:13:\"navigation:34\";s:18:\"------ File system\";s:13:\"navigation:35\";s:20:\"------ Image toolkit\";s:14:\"navigation:442\";s:13:\"------ Images\";s:13:\"navigation:36\";s:20:\"------ Input formats\";s:13:\"navigation:37\";s:25:\"------ Logging and alerts\";s:14:\"navigation:100\";s:25:\"-------- Database logging\";s:14:\"navigation:245\";s:17:\"------ Nice Menus\";s:13:\"navigation:40\";s:18:\"------ Performance\";s:14:\"navigation:120\";s:22:\"------ Search settings\";s:14:\"navigation:539\";s:17:\"------ Simplenews\";s:14:\"navigation:542\";s:16:\"-------- General\";s:14:\"navigation:543\";s:19:\"-------- Newsletter\";s:14:\"navigation:547\";s:21:\"-------- Subscription\";s:14:\"navigation:545\";s:18:\"-------- Send mail\";s:13:\"navigation:46\";s:23:\"------ Site information\";s:13:\"navigation:47\";s:23:\"------ Site maintenance\";s:14:\"navigation:246\";s:15:\"------ Site map\";s:13:\"navigation:20\";s:20:\"---- User management\";s:13:\"navigation:22\";s:19:\"------ Access rules\";s:13:\"navigation:41\";s:18:\"------ Permissions\";s:13:\"navigation:45\";s:12:\"------ Roles\";s:13:\"navigation:50\";s:20:\"------ User settings\";s:13:\"navigation:51\";s:12:\"------ Users\";s:13:\"navigation:16\";s:12:\"---- Reports\";s:13:\"navigation:93\";s:25:\"------ Recent log entries\";s:13:\"navigation:96\";s:33:\"------ Top \'access denied\' errors\";s:13:\"navigation:97\";s:34:\"------ Top \'page not found\' errors\";s:14:\"navigation:121\";s:25:\"------ Top search phrases\";s:14:\"navigation:105\";s:24:\"------ Available updates\";s:13:\"navigation:48\";s:20:\"------ Status report\";s:13:\"navigation:15\";s:9:\"---- Help\";s:12:\"navigation:4\";s:10:\"-- Log out\";s:15:\"primary-links:0\";s:15:\"<Primary links>\";s:17:\"menu-right-menu:0\";s:12:\"<Right Menu>\";s:19:\"menu-right-menu:496\";s:28:\"-- Financial Calculator Tool\";s:19:\"menu-right-menu:497\";s:21:\"-- News Story Library\";s:19:\"menu-right-menu:498\";s:14:\"-- Latest News\";s:19:\"menu-right-menu:499\";s:25:\"-- SREC Management Portal\";s:17:\"secondary-links:0\";s:17:\"<Secondary links>\";}s:12:\"#description\";s:156:\"The maximum depth for an item and all its children is fixed at 9. Some menu items may not be available as parents if selecting them would exceed this limit.\";s:11:\"#attributes\";a:1:{s:5:\"class\";s:17:\"menu-title-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:107:\"Optional. In the menu, the heavier items will sink and the lighter items will be positioned nearer the top.\";}}s:7:\"#submit\";a:1:{i:0;s:21:\"menu_node_form_submit\";}s:4:\"path\";a:10:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:17:\"URL path settings\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:0;s:7:\"#access\";b:1;s:7:\"#weight\";i:30;s:4:\"path\";a:6:{s:5:\"#type\";s:9:\"textfield\";s:14:\"#default_value\";s:63:\"renewable-energy-credit-rec-management-program-pv-system-owners\";s:10:\"#maxlength\";i:128;s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:12:\"#description\";s:207:\"Optionally specify an alternative URL by which this node 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\";s:2:\"11\";}s:22:\"pathauto_perform_alias\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:15:\"Automatic alias\";s:14:\"#default_value\";b:1;s:12:\"#description\";s:238:\"An alias will be generated for you. If you wish to create your own alias below, uncheck this option. To control the format of the generated aliases, see the <a href=\"/~uspvinc/main2/admin/build/path/pathauto\">automated alias settings</a>.\";s:7:\"#weight\";i:-1;}s:9:\"old_alias\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:63:\"renewable-energy-credit-rec-management-program-pv-system-owners\";}}s:11:\"#pre_render\";a:1:{i:0;s:27:\"content_alter_extra_weights\";}s:21:\"#content_extra_fields\";a:6:{s:5:\"title\";a:3:{s:5:\"label\";s:5:\"Title\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:-5;}s:10:\"body_field\";a:4:{s:5:\"label\";s:4:\"Body\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:0;s:4:\"view\";s:4:\"body\";}s:20:\"revision_information\";a:3:{s:5:\"label\";s:20:\"Revision information\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:20;}s:16:\"comment_settings\";a:3:{s:5:\"label\";s:16:\"Comment settings\";s:11:\"description\";s:20:\"Comment module form.\";s:6:\"weight\";i:30;}s:4:\"menu\";a:3:{s:5:\"label\";s:13:\"Menu settings\";s:11:\"description\";s:17:\"Menu module form.\";s:6:\"weight\";i:-2;}s:4:\"path\";a:3:{s:5:\"label\";s:13:\"Path settings\";s:11:\"description\";s:17:\"Path module form.\";s:6:\"weight\";i:30;}}s:12:\"#cache_token\";s:32:\"ea05954e6208c2bed552f97e30d1dad3\";}',1285733678,1285712078,'',1),('form_form-ab53a3fd2e4c556e3052256ca679f26c','a:40:{s:3:\"#id\";s:9:\"node-form\";s:3:\"nid\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:1:\"6\";}s:3:\"vid\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:1:\"6\";}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:\"1265202590\";}s:4:\"type\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:4:\"page\";}s:8:\"language\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:0:\"\";}s:7:\"changed\";a:2:{s:5:\"#type\";s:6:\"hidden\";s:14:\"#default_value\";s:10:\"1285703305\";}s:5:\"title\";a:6:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:5:\"Title\";s:9:\"#required\";b:1;s:14:\"#default_value\";s:34:\"Special Offer for PV System Owners\";s:10:\"#maxlength\";i:255;s:7:\"#weight\";i:-5;}s:10:\"body_field\";a:7:{s:12:\"#after_build\";a:2:{i:0;s:14:\"node_teaser_js\";i:1;s:26:\"node_teaser_include_verify\";}s:7:\"#prefix\";s:32:\"<div class=\"body-field-wrapper\">\";s:7:\"#suffix\";s:6:\"</div>\";s:9:\"teaser_js\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:5:\"#rows\";i:10;s:7:\"#teaser\";s:9:\"edit-body\";s:16:\"#teaser_checkbox\";s:19:\"edit-teaser-include\";s:9:\"#disabled\";b:1;}s:14:\"teaser_include\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:25:\"Show summary in full view\";s:14:\"#default_value\";b:1;s:7:\"#prefix\";s:29:\"<div class=\"teaser-checkbox\">\";s:7:\"#suffix\";s:6:\"</div>\";}s:4:\"body\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:4:\"Body\";s:14:\"#default_value\";s:234:\"<p>\r\nSign-up for USPV\'s REC Management Program today. No up-front or out-of-pocket costs. Don\'t miss out on this opportunity to participate in the Renewable Energy Credit markets and earn hundreds or even thousands of dollars!\r\n</p>\r\n\";s:5:\"#rows\";i:20;s:9:\"#required\";b:0;}s:6:\"format\";a:9:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:12:\"Input format\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:7:\"#weight\";N;s:17:\"#element_validate\";a:1:{i:0;s:20:\"filter_form_validate\";}i:1;a:7:{s:5:\"#type\";s:5:\"radio\";s:6:\"#title\";s:13:\"Filtered HTML\";s:14:\"#default_value\";s:1:\"2\";s:13:\"#return_value\";s:1:\"1\";s:8:\"#parents\";a:1:{i:0;s:6:\"format\";}s:12:\"#description\";s:306:\"<ul class=\"tips\"><li>Web page addresses and e-mail addresses turn into links automatically.</li><li>Allowed HTML tags: &lt;a&gt; &lt;em&gt; &lt;strong&gt; &lt;cite&gt; &lt;code&gt; &lt;ul&gt; &lt;ol&gt; &lt;li&gt; &lt;dl&gt; &lt;dt&gt; &lt;dd&gt;</li><li>Lines and paragraphs break automatically.</li></ul>\";s:3:\"#id\";s:13:\"edit-format-1\";}i:2;a:7:{s:5:\"#type\";s:5:\"radio\";s:6:\"#title\";s:9:\"Full HTML\";s:14:\"#default_value\";s:1:\"2\";s:13:\"#return_value\";s:1:\"2\";s:8:\"#parents\";a:1:{i:0;s:6:\"format\";}s:12:\"#description\";s:151:\"<ul class=\"tips\"><li>Web page addresses and e-mail addresses turn into links automatically.</li><li>Lines and paragraphs break automatically.</li></ul>\";s:3:\"#id\";s:13:\"edit-format-2\";}i:3;a:1:{s:6:\"#value\";s:90:\"<p><a href=\"/~uspvinc/main2/filter/tips\">More information about formatting options</a></p>\";}}}s:5:\"#node\";O:8:\"stdClass\":33:{s:3:\"nid\";s:1:\"6\";s:4:\"type\";s:4:\"page\";s:8:\"language\";s:0:\"\";s:3:\"uid\";s:1:\"1\";s:6:\"status\";s:1:\"1\";s:7:\"created\";s:10:\"1265202590\";s:7:\"changed\";s:10:\"1285703305\";s:7:\"comment\";s:1:\"0\";s:7:\"promote\";s:1:\"0\";s:8:\"moderate\";s:1:\"0\";s:6:\"sticky\";s:1:\"0\";s:4:\"tnid\";s:1:\"0\";s:9:\"translate\";s:1:\"0\";s:3:\"vid\";s:1:\"6\";s:12:\"revision_uid\";s:1:\"1\";s:5:\"title\";s:34:\"Special Offer for PV System Owners\";s:4:\"body\";s:234:\"<p>\r\nSign-up for USPV\'s REC Management Program today. No up-front or out-of-pocket costs. Don\'t miss out on this opportunity to participate in the Renewable Energy Credit markets and earn hundreds or even thousands of dollars!\r\n</p>\r\n\";s:6:\"teaser\";s:234:\"<p>\r\nSign-up for USPV\'s REC Management Program today. No up-front or out-of-pocket costs. Don\'t miss out on this opportunity to participate in the Renewable Energy Credit markets and earn hundreds or even thousands of dollars!\r\n</p>\r\n\";s:3:\"log\";N;s:18:\"revision_timestamp\";s:10:\"1285703305\";s:6:\"format\";s:1:\"2\";s:4:\"name\";s:5:\"admin\";s:7:\"picture\";s:0:\"\";s:4:\"data\";s:6:\"a:0:{}\";s:4:\"path\";s:30:\"special-offer-pv-system-owners\";s:22:\"last_comment_timestamp\";s:10:\"1265202590\";s:17:\"last_comment_name\";N;s:13:\"comment_count\";s:1:\"0\";s:8:\"taxonomy\";a:0:{}s:4:\"date\";s:25:\"2010-02-03 21:09:50 +0800\";s:8:\"revision\";b:0;s:4:\"menu\";a:48:{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:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:3:\"fit\";s:1:\"2\";s:12:\"number_parts\";s:1:\"2\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:14:\"special offers\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:4:\"type\";s:1:\"4\";s:14:\"block_callback\";s:0:\"\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"0\";s:4:\"file\";s:0:\"\";s:9:\"menu_name\";s:14:\"menu-main-menu\";s:4:\"mlid\";s:3:\"286\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/6\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:14:\"special offers\";s:7:\"options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:14:\"special offers\";}}s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"286\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:4:\"href\";s:6:\"node/6\";s:6:\"access\";b:1;s:17:\"localized_options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:14:\"special offers\";}}s:18:\"parent_depth_limit\";i:8;}s:22:\"pathauto_perform_alias\";b:1;}s:20:\"revision_information\";a:7:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:20:\"Revision information\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:7:\"#weight\";i:20;s:8:\"revision\";a:4:{s:7:\"#access\";b:1;s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:19:\"Create new revision\";s:14:\"#default_value\";b:0;}s:3:\"log\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:11:\"Log message\";s:14:\"#default_value\";s:0:\"\";s:5:\"#rows\";i:2;s:12:\"#description\";s:104:\"An explanation of the additions or updates being made to help other authors understand your motivations.\";}}s:6:\"author\";a:8:{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:7:\"#weight\";i:20;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:35:\"Leave blank for <em>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:91:\"Format: <em>2010-02-03 21:09:50 +0800</em>. Leave blank to use the time of form submission.\";s:14:\"#default_value\";s:25:\"2010-02-03 21:09:50 +0800\";}}s:7:\"options\";a:9:{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:7:\"#weight\";i:25;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:\"buttons\";a:3:{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:16:\"node_form_submit\";}}s:7:\"preview\";a:4:{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:6:\"#theme\";a:2:{i:0;s:14:\"page_node_form\";i:1;s:9:\"node_form\";}s:11:\"#parameters\";a:3:{i:0;s:14:\"page_node_form\";i:1;a:3:{s:7:\"storage\";N;s:9:\"submitted\";b:0;s:4:\"post\";a:0:{}}i:2;r:83;}s:9:\"#build_id\";s:37:\"form-ab53a3fd2e4c556e3052256ca679f26c\";s:5:\"#type\";s:4:\"form\";s:11:\"#programmed\";b:0;s:13:\"form_build_id\";a:4:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:37:\"form-ab53a3fd2e4c556e3052256ca679f26c\";s:3:\"#id\";s:37:\"form-ab53a3fd2e4c556e3052256ca679f26c\";s:5:\"#name\";s:13:\"form_build_id\";}s:6:\"#token\";s:14:\"page_node_form\";s:10:\"form_token\";a:3:{s:3:\"#id\";s:30:\"edit-page-node-form-form-token\";s:5:\"#type\";s:5:\"token\";s:14:\"#default_value\";s:32:\"69ee9cfa6b6366390575effcb3429c15\";}s:7:\"form_id\";a:3:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:14:\"page_node_form\";s:3:\"#id\";s:19:\"edit-page-node-form\";}s:12:\"#description\";N;s:11:\"#attributes\";a:0:{}s:9:\"#required\";b:0;s:5:\"#tree\";b:0;s:8:\"#parents\";a:0:{}s:7:\"#method\";s:4:\"post\";s:7:\"#action\";s:27:\"/~uspvinc/main2/node/6/edit\";s:16:\"comment_settings\";a:7:{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:7:\"#weight\";i:30;s:7:\"comment\";a:4:{s:5:\"#type\";s:6:\"radios\";s:8:\"#parents\";a:1:{i:0;s:7:\"comment\";}s:14:\"#default_value\";s:1:\"0\";s:8:\"#options\";a:3:{i:0;s:8:\"Disabled\";i:1;s:9:\"Read only\";i:2;s:10:\"Read/Write\";}}}s:6:\"#cache\";b:1;s:4:\"menu\";a:21:{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:5:\"#tree\";b:1;s:7:\"#weight\";i:-2;s:11:\"#attributes\";a:1:{s:5:\"class\";s:14:\"menu-item-form\";}s:6:\"delete\";a:2:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:22:\"Delete this menu item.\";}s:4:\"mlid\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:3:\"286\";}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\";s:1:\"1\";}s:7:\"options\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:14:\"special offers\";}}}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:5:\"#item\";a:48:{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:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:3:\"fit\";s:1:\"2\";s:12:\"number_parts\";s:1:\"2\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:14:\"special offers\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:4:\"type\";s:1:\"4\";s:14:\"block_callback\";s:0:\"\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"0\";s:4:\"file\";s:0:\"\";s:9:\"menu_name\";s:14:\"menu-main-menu\";s:4:\"mlid\";s:3:\"286\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/6\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:14:\"special offers\";s:7:\"options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:14:\"special offers\";}}s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"286\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:4:\"href\";s:6:\"node/6\";s:6:\"access\";b:1;s:17:\"localized_options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:14:\"special offers\";}}s:18:\"parent_depth_limit\";i:8;}s:10:\"link_title\";a:5:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:15:\"Menu link title\";s:14:\"#default_value\";s:14:\"special offers\";s:12:\"#description\";s:133:\"The link text corresponding to this item that should appear in the menu. Leave blank if you do not wish to add this post to the menu.\";s:9:\"#required\";b:0;}s:6:\"parent\";a:6:{s:5:\"#type\";s:6:\"select\";s:6:\"#title\";s:11:\"Parent item\";s:14:\"#default_value\";s:16:\"menu-main-menu:0\";s:8:\"#options\";a:95:{s:16:\"menu-main-menu:0\";s:11:\"<Main Menu>\";s:18:\"menu-main-menu:283\";s:8:\"-- about\";s:18:\"menu-main-menu:284\";s:12:\"-- resources\";s:18:\"menu-main-menu:285\";s:11:\"-- services\";s:12:\"navigation:0\";s:12:\"<Navigation>\";s:12:\"navigation:9\";s:26:\"-- Compose tips (disabled)\";s:14:\"navigation:461\";s:29:\"-- Image galleries (disabled)\";s:13:\"navigation:21\";s:13:\"-- My account\";s:14:\"navigation:114\";s:20:\"-- Search (disabled)\";s:14:\"navigation:244\";s:22:\"-- Site map (disabled)\";s:13:\"navigation:11\";s:17:\"-- Create content\";s:14:\"navigation:476\";s:11:\"---- Banner\";s:14:\"navigation:441\";s:10:\"---- Image\";s:14:\"navigation:289\";s:21:\"---- Newsletter issue\";s:14:\"navigation:106\";s:9:\"---- Page\";s:14:\"navigation:388\";s:10:\"---- Panel\";s:14:\"navigation:107\";s:10:\"---- Story\";s:12:\"navigation:2\";s:13:\"-- Administer\";s:13:\"navigation:10\";s:23:\"---- Content management\";s:13:\"navigation:27\";s:15:\"------ Comments\";s:13:\"navigation:28\";s:14:\"------ Content\";s:13:\"navigation:29\";s:20:\"------ Content types\";s:14:\"navigation:462\";s:22:\"------ Image galleries\";s:14:\"navigation:463\";s:19:\"------ Image import\";s:14:\"navigation:538\";s:18:\"------ Newsletters\";s:14:\"navigation:546\";s:20:\"-------- Sent issues\";s:14:\"navigation:541\";s:21:\"-------- Draft issues\";s:14:\"navigation:544\";s:20:\"-------- Newsletters\";s:14:\"navigation:548\";s:22:\"-------- Subscriptions\";s:13:\"navigation:42\";s:20:\"------ Post settings\";s:13:\"navigation:43\";s:21:\"------ RSS publishing\";s:13:\"navigation:94\";s:15:\"------ Taxonomy\";s:13:\"navigation:17\";s:18:\"---- Site building\";s:13:\"navigation:25\";s:13:\"------ Blocks\";s:14:\"navigation:424\";s:20:\"------ Bulk Exporter\";s:13:\"navigation:38\";s:12:\"------ Menus\";s:14:\"navigation:282\";s:18:\"-------- Main Menu\";s:13:\"navigation:89\";s:19:\"-------- Navigation\";s:13:\"navigation:90\";s:22:\"-------- Primary links\";s:14:\"navigation:495\";s:19:\"-------- Right Menu\";s:13:\"navigation:91\";s:24:\"-------- Secondary links\";s:14:\"navigation:387\";s:18:\"------ Mini panels\";s:13:\"navigation:39\";s:14:\"------ Modules\";s:14:\"navigation:412\";s:12:\"------ Pages\";s:14:\"navigation:360\";s:13:\"------ Panels\";s:13:\"navigation:49\";s:13:\"------ Themes\";s:14:\"navigation:335\";s:15:\"------ Triggers\";s:14:\"navigation:501\";s:18:\"------ URL aliases\";s:14:\"navigation:257\";s:12:\"------ Views\";s:13:\"navigation:18\";s:23:\"---- Site configuration\";s:13:\"navigation:23\";s:14:\"------ Actions\";s:14:\"navigation:119\";s:26:\"------ Administration menu\";s:13:\"navigation:24\";s:27:\"------ Administration theme\";s:13:\"navigation:26\";s:17:\"------ Clean URLs\";s:13:\"navigation:30\";s:20:\"------ Date and time\";s:13:\"navigation:33\";s:22:\"------ Error reporting\";s:13:\"navigation:34\";s:18:\"------ File system\";s:13:\"navigation:35\";s:20:\"------ Image toolkit\";s:14:\"navigation:442\";s:13:\"------ Images\";s:13:\"navigation:36\";s:20:\"------ Input formats\";s:13:\"navigation:37\";s:25:\"------ Logging and alerts\";s:14:\"navigation:100\";s:25:\"-------- Database logging\";s:14:\"navigation:245\";s:17:\"------ Nice Menus\";s:13:\"navigation:40\";s:18:\"------ Performance\";s:14:\"navigation:120\";s:22:\"------ Search settings\";s:14:\"navigation:539\";s:17:\"------ Simplenews\";s:14:\"navigation:542\";s:16:\"-------- General\";s:14:\"navigation:543\";s:19:\"-------- Newsletter\";s:14:\"navigation:547\";s:21:\"-------- Subscription\";s:14:\"navigation:545\";s:18:\"-------- Send mail\";s:13:\"navigation:46\";s:23:\"------ Site information\";s:13:\"navigation:47\";s:23:\"------ Site maintenance\";s:14:\"navigation:246\";s:15:\"------ Site map\";s:13:\"navigation:20\";s:20:\"---- User management\";s:13:\"navigation:22\";s:19:\"------ Access rules\";s:13:\"navigation:41\";s:18:\"------ Permissions\";s:13:\"navigation:45\";s:12:\"------ Roles\";s:13:\"navigation:50\";s:20:\"------ User settings\";s:13:\"navigation:51\";s:12:\"------ Users\";s:13:\"navigation:16\";s:12:\"---- Reports\";s:13:\"navigation:93\";s:25:\"------ Recent log entries\";s:13:\"navigation:96\";s:33:\"------ Top \'access denied\' errors\";s:13:\"navigation:97\";s:34:\"------ Top \'page not found\' errors\";s:14:\"navigation:121\";s:25:\"------ Top search phrases\";s:14:\"navigation:105\";s:24:\"------ Available updates\";s:13:\"navigation:48\";s:20:\"------ Status report\";s:13:\"navigation:15\";s:9:\"---- Help\";s:12:\"navigation:4\";s:10:\"-- Log out\";s:15:\"primary-links:0\";s:15:\"<Primary links>\";s:17:\"menu-right-menu:0\";s:12:\"<Right Menu>\";s:19:\"menu-right-menu:496\";s:28:\"-- Financial Calculator Tool\";s:19:\"menu-right-menu:497\";s:21:\"-- News Story Library\";s:19:\"menu-right-menu:498\";s:14:\"-- Latest News\";s:19:\"menu-right-menu:499\";s:25:\"-- SREC Management Portal\";s:17:\"secondary-links:0\";s:17:\"<Secondary links>\";}s:12:\"#description\";s:156:\"The maximum depth for an item and all its children is fixed at 9. Some menu items may not be available as parents if selecting them would exceed this limit.\";s:11:\"#attributes\";a:1:{s:5:\"class\";s:17:\"menu-title-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:1:\"0\";s:12:\"#description\";s:107:\"Optional. In the menu, the heavier items will sink and the lighter items will be positioned nearer the top.\";}}s:7:\"#submit\";a:1:{i:0;s:21:\"menu_node_form_submit\";}s:4:\"path\";a:10:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:17:\"URL path settings\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:0;s:7:\"#access\";b:1;s:7:\"#weight\";i:30;s:4:\"path\";a:6:{s:5:\"#type\";s:9:\"textfield\";s:14:\"#default_value\";s:30:\"special-offer-pv-system-owners\";s:10:\"#maxlength\";i:128;s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:12:\"#description\";s:207:\"Optionally specify an alternative URL by which this node 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\";s:1:\"6\";}s:22:\"pathauto_perform_alias\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:15:\"Automatic alias\";s:14:\"#default_value\";b:1;s:12:\"#description\";s:238:\"An alias will be generated for you. If you wish to create your own alias below, uncheck this option. To control the format of the generated aliases, see the <a href=\"/~uspvinc/main2/admin/build/path/pathauto\">automated alias settings</a>.\";s:7:\"#weight\";i:-1;}s:9:\"old_alias\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:30:\"special-offer-pv-system-owners\";}}s:11:\"#pre_render\";a:1:{i:0;s:27:\"content_alter_extra_weights\";}s:21:\"#content_extra_fields\";a:6:{s:5:\"title\";a:3:{s:5:\"label\";s:5:\"Title\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:-5;}s:10:\"body_field\";a:4:{s:5:\"label\";s:4:\"Body\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:0;s:4:\"view\";s:4:\"body\";}s:20:\"revision_information\";a:3:{s:5:\"label\";s:20:\"Revision information\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:20;}s:16:\"comment_settings\";a:3:{s:5:\"label\";s:16:\"Comment settings\";s:11:\"description\";s:20:\"Comment module form.\";s:6:\"weight\";i:30;}s:4:\"menu\";a:3:{s:5:\"label\";s:13:\"Menu settings\";s:11:\"description\";s:17:\"Menu module form.\";s:6:\"weight\";i:-2;}s:4:\"path\";a:3:{s:5:\"label\";s:13:\"Path settings\";s:11:\"description\";s:17:\"Path module form.\";s:6:\"weight\";i:30;}}s:12:\"#cache_token\";s:32:\"ea05954e6208c2bed552f97e30d1dad3\";}',1285802602,1285781002,'',1),('form_form-8c1cae705b74c8edfc80cc8b2785df00','a:40:{s:3:\"#id\";s:9:\"node-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:\"1265202538\";}s:4:\"type\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:4:\"page\";}s:8:\"language\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:0:\"\";}s:7:\"changed\";a:2:{s:5:\"#type\";s:6:\"hidden\";s:14:\"#default_value\";s:10:\"1285702357\";}s:5:\"title\";a:6:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:5:\"Title\";s:9:\"#required\";b:1;s:14:\"#default_value\";s:9:\"resources\";s:10:\"#maxlength\";i:255;s:7:\"#weight\";i:-5;}s:10:\"body_field\";a:7:{s:12:\"#after_build\";a:2:{i:0;s:14:\"node_teaser_js\";i:1;s:26:\"node_teaser_include_verify\";}s:7:\"#prefix\";s:32:\"<div class=\"body-field-wrapper\">\";s:7:\"#suffix\";s:6:\"</div>\";s:9:\"teaser_js\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:5:\"#rows\";i:10;s:7:\"#teaser\";s:9:\"edit-body\";s:16:\"#teaser_checkbox\";s:19:\"edit-teaser-include\";s:9:\"#disabled\";b:1;}s:14:\"teaser_include\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:25:\"Show summary in full view\";s:14:\"#default_value\";b:1;s:7:\"#prefix\";s:29:\"<div class=\"teaser-checkbox\">\";s:7:\"#suffix\";s:6:\"</div>\";}s:4:\"body\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:4:\"Body\";s:14:\"#default_value\";s:1245:\"<h2>Internet Resources</h2>\r\n \r\nFrom the Database of State Incentives for Renewables and Efficiency (DSIRE.org):\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/statesearch2.cfm?State=US&back=fintab&CurrentPageID=7&Search=TableState&EE=1&RE=1\">Federal Incentives for Solar PV</a>\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&State=MD&RE=1&EE=1\">Maryland Incentives for Solar PV</a>\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&State=DC&RE=1&EE=1\">District of Columbia Incentives for Solar PV</a>\r\n\r\n<h2>Industry Organizations</h2>\r\n\r\n<a href=\"http://www.ases.org/\">American Solar Energy Society</a> Professional Member\r\n<img src=\"/~uspvinc/main2/sites/default/files/images/ases-logo.jpg\"/> \r\n\r\n<a href=\"http://www.mdv-seia.org/\">Maryland-DC-Virginia Solar Energy Industries Association</a>   Professional Member\r\n\r\n<img src=\"/~uspvinc/main2/sites/default/files/images/MDVSEIA.jpg\"/>\r\n\r\n  \r\n<h2>Contact Us</h2>\r\n<p>\r\nTelephone: 240-344-2657\r\n</p>\r\n<p>\r\nEmail:\r\n\r\n          Sales: sales@uspvinc.com\r\n\r\n          Customer Service: support@uspvinc.com\r\n\r\n          Other Inquiries:  info@uspvinc.com\r\n</p>\r\n<p>\r\nPostal Address: 4539 Metropolitan Court, Frederick MD  21704\r\n</p>\";s:5:\"#rows\";i:20;s:9:\"#required\";b:0;}s:6:\"format\";a:9:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:12:\"Input format\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:7:\"#weight\";N;s:17:\"#element_validate\";a:1:{i:0;s:20:\"filter_form_validate\";}i:1;a:7:{s:5:\"#type\";s:5:\"radio\";s:6:\"#title\";s:13:\"Filtered HTML\";s:14:\"#default_value\";s:1:\"2\";s:13:\"#return_value\";s:1:\"1\";s:8:\"#parents\";a:1:{i:0;s:6:\"format\";}s:12:\"#description\";s:306:\"<ul class=\"tips\"><li>Web page addresses and e-mail addresses turn into links automatically.</li><li>Allowed HTML tags: &lt;a&gt; &lt;em&gt; &lt;strong&gt; &lt;cite&gt; &lt;code&gt; &lt;ul&gt; &lt;ol&gt; &lt;li&gt; &lt;dl&gt; &lt;dt&gt; &lt;dd&gt;</li><li>Lines and paragraphs break automatically.</li></ul>\";s:3:\"#id\";s:13:\"edit-format-1\";}i:2;a:7:{s:5:\"#type\";s:5:\"radio\";s:6:\"#title\";s:9:\"Full HTML\";s:14:\"#default_value\";s:1:\"2\";s:13:\"#return_value\";s:1:\"2\";s:8:\"#parents\";a:1:{i:0;s:6:\"format\";}s:12:\"#description\";s:151:\"<ul class=\"tips\"><li>Web page addresses and e-mail addresses turn into links automatically.</li><li>Lines and paragraphs break automatically.</li></ul>\";s:3:\"#id\";s:13:\"edit-format-2\";}i:3;a:1:{s:6:\"#value\";s:90:\"<p><a href=\"/~uspvinc/main2/filter/tips\">More information about formatting options</a></p>\";}}}s:5:\"#node\";O:8:\"stdClass\":33:{s:3:\"nid\";s:1:\"4\";s:4:\"type\";s:4:\"page\";s:8:\"language\";s:0:\"\";s:3:\"uid\";s:1:\"1\";s:6:\"status\";s:1:\"1\";s:7:\"created\";s:10:\"1265202538\";s:7:\"changed\";s:10:\"1285702357\";s:7:\"comment\";s:1:\"0\";s:7:\"promote\";s:1:\"0\";s:8:\"moderate\";s:1:\"0\";s:6:\"sticky\";s:1:\"0\";s:4:\"tnid\";s:1:\"0\";s:9:\"translate\";s:1:\"0\";s:3:\"vid\";s:1:\"4\";s:12:\"revision_uid\";s:1:\"1\";s:5:\"title\";s:9:\"resources\";s:4:\"body\";s:1245:\"<h2>Internet Resources</h2>\r\n \r\nFrom the Database of State Incentives for Renewables and Efficiency (DSIRE.org):\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/statesearch2.cfm?State=US&back=fintab&CurrentPageID=7&Search=TableState&EE=1&RE=1\">Federal Incentives for Solar PV</a>\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&State=MD&RE=1&EE=1\">Maryland Incentives for Solar PV</a>\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&State=DC&RE=1&EE=1\">District of Columbia Incentives for Solar PV</a>\r\n\r\n<h2>Industry Organizations</h2>\r\n\r\n<a href=\"http://www.ases.org/\">American Solar Energy Society</a> Professional Member\r\n<img src=\"/~uspvinc/main2/sites/default/files/images/ases-logo.jpg\"/> \r\n\r\n<a href=\"http://www.mdv-seia.org/\">Maryland-DC-Virginia Solar Energy Industries Association</a>   Professional Member\r\n\r\n<img src=\"/~uspvinc/main2/sites/default/files/images/MDVSEIA.jpg\"/>\r\n\r\n  \r\n<h2>Contact Us</h2>\r\n<p>\r\nTelephone: 240-344-2657\r\n</p>\r\n<p>\r\nEmail:\r\n\r\n          Sales: sales@uspvinc.com\r\n\r\n          Customer Service: support@uspvinc.com\r\n\r\n          Other Inquiries:  info@uspvinc.com\r\n</p>\r\n<p>\r\nPostal Address: 4539 Metropolitan Court, Frederick MD  21704\r\n</p>\";s:6:\"teaser\";s:569:\"<h2>Internet Resources</h2>\r\n \r\nFrom the Database of State Incentives for Renewables and Efficiency (DSIRE.org):\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/statesearch2.cfm?State=US&back=fintab&CurrentPageID=7&Search=TableState&EE=1&RE=1\">Federal Incentives for Solar PV</a>\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&State=MD&RE=1&EE=1\">Maryland Incentives for Solar PV</a>\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&State=DC&RE=1&EE=1\">District of Columbia Incentives for Solar PV</a>\r\n\r\";s:3:\"log\";N;s:18:\"revision_timestamp\";s:10:\"1285702357\";s:6:\"format\";s:1:\"2\";s:4:\"name\";s:5:\"admin\";s:7:\"picture\";s:0:\"\";s:4:\"data\";s:6:\"a:0:{}\";s:4:\"path\";s:9:\"resources\";s:22:\"last_comment_timestamp\";s:10:\"1265202538\";s:17:\"last_comment_name\";N;s:13:\"comment_count\";s:1:\"0\";s:8:\"taxonomy\";a:0:{}s:4:\"date\";s:25:\"2010-02-03 21:08:58 +0800\";s:8:\"revision\";b:0;s:4:\"menu\";a:48:{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:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:3:\"fit\";s:1:\"2\";s:12:\"number_parts\";s:1:\"2\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:9:\"resources\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:4:\"type\";s:1:\"4\";s:14:\"block_callback\";s:0:\"\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"0\";s:4:\"file\";s:0:\"\";s:9:\"menu_name\";s:14:\"menu-main-menu\";s:4:\"mlid\";s:3:\"284\";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:9:\"resources\";s:7:\"options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:9:\"resources\";}}s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"284\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:4:\"href\";s:6:\"node/4\";s:6:\"access\";b:1;s:17:\"localized_options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:9:\"resources\";}}s:18:\"parent_depth_limit\";i:8;}s:22:\"pathauto_perform_alias\";b:1;}s:20:\"revision_information\";a:7:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:20:\"Revision information\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:7:\"#weight\";i:20;s:8:\"revision\";a:4:{s:7:\"#access\";b:1;s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:19:\"Create new revision\";s:14:\"#default_value\";b:0;}s:3:\"log\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:11:\"Log message\";s:14:\"#default_value\";s:0:\"\";s:5:\"#rows\";i:2;s:12:\"#description\";s:104:\"An explanation of the additions or updates being made to help other authors understand your motivations.\";}}s:6:\"author\";a:8:{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:7:\"#weight\";i:20;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:35:\"Leave blank for <em>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:91:\"Format: <em>2010-02-03 21:08:58 +0800</em>. Leave blank to use the time of form submission.\";s:14:\"#default_value\";s:25:\"2010-02-03 21:08:58 +0800\";}}s:7:\"options\";a:9:{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:7:\"#weight\";i:25;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:\"buttons\";a:3:{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:16:\"node_form_submit\";}}s:7:\"preview\";a:4:{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:6:\"#theme\";a:2:{i:0;s:14:\"page_node_form\";i:1;s:9:\"node_form\";}s:11:\"#parameters\";a:3:{i:0;s:14:\"page_node_form\";i:1;a:3:{s:7:\"storage\";N;s:9:\"submitted\";b:0;s:4:\"post\";a:0:{}}i:2;r:83;}s:9:\"#build_id\";s:37:\"form-8c1cae705b74c8edfc80cc8b2785df00\";s:5:\"#type\";s:4:\"form\";s:11:\"#programmed\";b:0;s:13:\"form_build_id\";a:4:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:37:\"form-8c1cae705b74c8edfc80cc8b2785df00\";s:3:\"#id\";s:37:\"form-8c1cae705b74c8edfc80cc8b2785df00\";s:5:\"#name\";s:13:\"form_build_id\";}s:6:\"#token\";s:14:\"page_node_form\";s:10:\"form_token\";a:3:{s:3:\"#id\";s:30:\"edit-page-node-form-form-token\";s:5:\"#type\";s:5:\"token\";s:14:\"#default_value\";s:32:\"69ee9cfa6b6366390575effcb3429c15\";}s:7:\"form_id\";a:3:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:14:\"page_node_form\";s:3:\"#id\";s:19:\"edit-page-node-form\";}s:12:\"#description\";N;s:11:\"#attributes\";a:0:{}s:9:\"#required\";b:0;s:5:\"#tree\";b:0;s:8:\"#parents\";a:0:{}s:7:\"#method\";s:4:\"post\";s:7:\"#action\";s:27:\"/~uspvinc/main2/node/4/edit\";s:16:\"comment_settings\";a:7:{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:7:\"#weight\";i:30;s:7:\"comment\";a:4:{s:5:\"#type\";s:6:\"radios\";s:8:\"#parents\";a:1:{i:0;s:7:\"comment\";}s:14:\"#default_value\";s:1:\"0\";s:8:\"#options\";a:3:{i:0;s:8:\"Disabled\";i:1;s:9:\"Read only\";i:2;s:10:\"Read/Write\";}}}s:6:\"#cache\";b:1;s:4:\"menu\";a:21:{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:5:\"#tree\";b:1;s:7:\"#weight\";i:-2;s:11:\"#attributes\";a:1:{s:5:\"class\";s:14:\"menu-item-form\";}s:6:\"delete\";a:2:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:22:\"Delete this menu item.\";}s:4:\"mlid\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:3:\"284\";}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\";s:1:\"1\";}s:7:\"options\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:9:\"resources\";}}}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:5:\"#item\";a:48:{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:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:3:\"fit\";s:1:\"2\";s:12:\"number_parts\";s:1:\"2\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:9:\"resources\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:4:\"type\";s:1:\"4\";s:14:\"block_callback\";s:0:\"\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"0\";s:4:\"file\";s:0:\"\";s:9:\"menu_name\";s:14:\"menu-main-menu\";s:4:\"mlid\";s:3:\"284\";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:9:\"resources\";s:7:\"options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:9:\"resources\";}}s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"284\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:4:\"href\";s:6:\"node/4\";s:6:\"access\";b:1;s:17:\"localized_options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:9:\"resources\";}}s:18:\"parent_depth_limit\";i:8;}s:10:\"link_title\";a:5:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:15:\"Menu link title\";s:14:\"#default_value\";s:9:\"resources\";s:12:\"#description\";s:133:\"The link text corresponding to this item that should appear in the menu. Leave blank if you do not wish to add this post to the menu.\";s:9:\"#required\";b:0;}s:6:\"parent\";a:6:{s:5:\"#type\";s:6:\"select\";s:6:\"#title\";s:11:\"Parent item\";s:14:\"#default_value\";s:16:\"menu-main-menu:0\";s:8:\"#options\";a:95:{s:16:\"menu-main-menu:0\";s:11:\"<Main Menu>\";s:18:\"menu-main-menu:283\";s:8:\"-- about\";s:18:\"menu-main-menu:285\";s:11:\"-- services\";s:18:\"menu-main-menu:286\";s:17:\"-- special offers\";s:12:\"navigation:0\";s:12:\"<Navigation>\";s:12:\"navigation:9\";s:26:\"-- Compose tips (disabled)\";s:14:\"navigation:461\";s:29:\"-- Image galleries (disabled)\";s:13:\"navigation:21\";s:13:\"-- My account\";s:14:\"navigation:114\";s:20:\"-- Search (disabled)\";s:14:\"navigation:244\";s:22:\"-- Site map (disabled)\";s:13:\"navigation:11\";s:17:\"-- Create content\";s:14:\"navigation:476\";s:11:\"---- Banner\";s:14:\"navigation:441\";s:10:\"---- Image\";s:14:\"navigation:289\";s:21:\"---- Newsletter issue\";s:14:\"navigation:106\";s:9:\"---- Page\";s:14:\"navigation:388\";s:10:\"---- Panel\";s:14:\"navigation:107\";s:10:\"---- Story\";s:12:\"navigation:2\";s:13:\"-- Administer\";s:13:\"navigation:10\";s:23:\"---- Content management\";s:13:\"navigation:27\";s:15:\"------ Comments\";s:13:\"navigation:28\";s:14:\"------ Content\";s:13:\"navigation:29\";s:20:\"------ Content types\";s:14:\"navigation:462\";s:22:\"------ Image galleries\";s:14:\"navigation:463\";s:19:\"------ Image import\";s:14:\"navigation:538\";s:18:\"------ Newsletters\";s:14:\"navigation:546\";s:20:\"-------- Sent issues\";s:14:\"navigation:541\";s:21:\"-------- Draft issues\";s:14:\"navigation:544\";s:20:\"-------- Newsletters\";s:14:\"navigation:548\";s:22:\"-------- Subscriptions\";s:13:\"navigation:42\";s:20:\"------ Post settings\";s:13:\"navigation:43\";s:21:\"------ RSS publishing\";s:13:\"navigation:94\";s:15:\"------ Taxonomy\";s:13:\"navigation:17\";s:18:\"---- Site building\";s:13:\"navigation:25\";s:13:\"------ Blocks\";s:14:\"navigation:424\";s:20:\"------ Bulk Exporter\";s:13:\"navigation:38\";s:12:\"------ Menus\";s:14:\"navigation:282\";s:18:\"-------- Main Menu\";s:13:\"navigation:89\";s:19:\"-------- Navigation\";s:13:\"navigation:90\";s:22:\"-------- Primary links\";s:14:\"navigation:495\";s:19:\"-------- Right Menu\";s:13:\"navigation:91\";s:24:\"-------- Secondary links\";s:14:\"navigation:387\";s:18:\"------ Mini panels\";s:13:\"navigation:39\";s:14:\"------ Modules\";s:14:\"navigation:412\";s:12:\"------ Pages\";s:14:\"navigation:360\";s:13:\"------ Panels\";s:13:\"navigation:49\";s:13:\"------ Themes\";s:14:\"navigation:335\";s:15:\"------ Triggers\";s:14:\"navigation:501\";s:18:\"------ URL aliases\";s:14:\"navigation:257\";s:12:\"------ Views\";s:13:\"navigation:18\";s:23:\"---- Site configuration\";s:13:\"navigation:23\";s:14:\"------ Actions\";s:14:\"navigation:119\";s:26:\"------ Administration menu\";s:13:\"navigation:24\";s:27:\"------ Administration theme\";s:13:\"navigation:26\";s:17:\"------ Clean URLs\";s:13:\"navigation:30\";s:20:\"------ Date and time\";s:13:\"navigation:33\";s:22:\"------ Error reporting\";s:13:\"navigation:34\";s:18:\"------ File system\";s:13:\"navigation:35\";s:20:\"------ Image toolkit\";s:14:\"navigation:442\";s:13:\"------ Images\";s:13:\"navigation:36\";s:20:\"------ Input formats\";s:13:\"navigation:37\";s:25:\"------ Logging and alerts\";s:14:\"navigation:100\";s:25:\"-------- Database logging\";s:14:\"navigation:245\";s:17:\"------ Nice Menus\";s:13:\"navigation:40\";s:18:\"------ Performance\";s:14:\"navigation:120\";s:22:\"------ Search settings\";s:14:\"navigation:539\";s:17:\"------ Simplenews\";s:14:\"navigation:542\";s:16:\"-------- General\";s:14:\"navigation:543\";s:19:\"-------- Newsletter\";s:14:\"navigation:547\";s:21:\"-------- Subscription\";s:14:\"navigation:545\";s:18:\"-------- Send mail\";s:13:\"navigation:46\";s:23:\"------ Site information\";s:13:\"navigation:47\";s:23:\"------ Site maintenance\";s:14:\"navigation:246\";s:15:\"------ Site map\";s:13:\"navigation:20\";s:20:\"---- User management\";s:13:\"navigation:22\";s:19:\"------ Access rules\";s:13:\"navigation:41\";s:18:\"------ Permissions\";s:13:\"navigation:45\";s:12:\"------ Roles\";s:13:\"navigation:50\";s:20:\"------ User settings\";s:13:\"navigation:51\";s:12:\"------ Users\";s:13:\"navigation:16\";s:12:\"---- Reports\";s:13:\"navigation:93\";s:25:\"------ Recent log entries\";s:13:\"navigation:96\";s:33:\"------ Top \'access denied\' errors\";s:13:\"navigation:97\";s:34:\"------ Top \'page not found\' errors\";s:14:\"navigation:121\";s:25:\"------ Top search phrases\";s:14:\"navigation:105\";s:24:\"------ Available updates\";s:13:\"navigation:48\";s:20:\"------ Status report\";s:13:\"navigation:15\";s:9:\"---- Help\";s:12:\"navigation:4\";s:10:\"-- Log out\";s:15:\"primary-links:0\";s:15:\"<Primary links>\";s:17:\"menu-right-menu:0\";s:12:\"<Right Menu>\";s:19:\"menu-right-menu:496\";s:28:\"-- Financial Calculator Tool\";s:19:\"menu-right-menu:497\";s:21:\"-- News Story Library\";s:19:\"menu-right-menu:498\";s:14:\"-- Latest News\";s:19:\"menu-right-menu:499\";s:25:\"-- SREC Management Portal\";s:17:\"secondary-links:0\";s:17:\"<Secondary links>\";}s:12:\"#description\";s:156:\"The maximum depth for an item and all its children is fixed at 9. Some menu items may not be available as parents if selecting them would exceed this limit.\";s:11:\"#attributes\";a:1:{s:5:\"class\";s:17:\"menu-title-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:1:\"0\";s:12:\"#description\";s:107:\"Optional. In the menu, the heavier items will sink and the lighter items will be positioned nearer the top.\";}}s:7:\"#submit\";a:1:{i:0;s:21:\"menu_node_form_submit\";}s:4:\"path\";a:10:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:17:\"URL path settings\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:0;s:7:\"#access\";b:1;s:7:\"#weight\";i:30;s:4:\"path\";a:6:{s:5:\"#type\";s:9:\"textfield\";s:14:\"#default_value\";s:9:\"resources\";s:10:\"#maxlength\";i:128;s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:12:\"#description\";s:207:\"Optionally specify an alternative URL by which this node 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\";s:1:\"4\";}s:22:\"pathauto_perform_alias\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:15:\"Automatic alias\";s:14:\"#default_value\";b:1;s:12:\"#description\";s:238:\"An alias will be generated for you. If you wish to create your own alias below, uncheck this option. To control the format of the generated aliases, see the <a href=\"/~uspvinc/main2/admin/build/path/pathauto\">automated alias settings</a>.\";s:7:\"#weight\";i:-1;}s:9:\"old_alias\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:9:\"resources\";}}s:11:\"#pre_render\";a:1:{i:0;s:27:\"content_alter_extra_weights\";}s:21:\"#content_extra_fields\";a:6:{s:5:\"title\";a:3:{s:5:\"label\";s:5:\"Title\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:-5;}s:10:\"body_field\";a:4:{s:5:\"label\";s:4:\"Body\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:0;s:4:\"view\";s:4:\"body\";}s:20:\"revision_information\";a:3:{s:5:\"label\";s:20:\"Revision information\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:20;}s:16:\"comment_settings\";a:3:{s:5:\"label\";s:16:\"Comment settings\";s:11:\"description\";s:20:\"Comment module form.\";s:6:\"weight\";i:30;}s:4:\"menu\";a:3:{s:5:\"label\";s:13:\"Menu settings\";s:11:\"description\";s:17:\"Menu module form.\";s:6:\"weight\";i:-2;}s:4:\"path\";a:3:{s:5:\"label\";s:13:\"Path settings\";s:11:\"description\";s:17:\"Path module form.\";s:6:\"weight\";i:30;}}s:12:\"#cache_token\";s:32:\"ea05954e6208c2bed552f97e30d1dad3\";}',1285734461,1285712861,'',1),('form_form-725ec36bc49b50593e85658f6a54cd02','a:40:{s:3:\"#id\";s:9:\"node-form\";s:3:\"nid\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:1:\"6\";}s:3:\"vid\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:1:\"6\";}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:\"1265202590\";}s:4:\"type\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:4:\"page\";}s:8:\"language\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:0:\"\";}s:7:\"changed\";a:2:{s:5:\"#type\";s:6:\"hidden\";s:14:\"#default_value\";s:10:\"1285703305\";}s:5:\"title\";a:6:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:5:\"Title\";s:9:\"#required\";b:1;s:14:\"#default_value\";s:34:\"Special Offer for PV System Owners\";s:10:\"#maxlength\";i:255;s:7:\"#weight\";i:-5;}s:10:\"body_field\";a:7:{s:12:\"#after_build\";a:2:{i:0;s:14:\"node_teaser_js\";i:1;s:26:\"node_teaser_include_verify\";}s:7:\"#prefix\";s:32:\"<div class=\"body-field-wrapper\">\";s:7:\"#suffix\";s:6:\"</div>\";s:9:\"teaser_js\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:5:\"#rows\";i:10;s:7:\"#teaser\";s:9:\"edit-body\";s:16:\"#teaser_checkbox\";s:19:\"edit-teaser-include\";s:9:\"#disabled\";b:1;}s:14:\"teaser_include\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:25:\"Show summary in full view\";s:14:\"#default_value\";b:1;s:7:\"#prefix\";s:29:\"<div class=\"teaser-checkbox\">\";s:7:\"#suffix\";s:6:\"</div>\";}s:4:\"body\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:4:\"Body\";s:14:\"#default_value\";s:234:\"<p>\r\nSign-up for USPV\'s REC Management Program today. No up-front or out-of-pocket costs. Don\'t miss out on this opportunity to participate in the Renewable Energy Credit markets and earn hundreds or even thousands of dollars!\r\n</p>\r\n\";s:5:\"#rows\";i:20;s:9:\"#required\";b:0;}s:6:\"format\";a:9:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:12:\"Input format\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:7:\"#weight\";N;s:17:\"#element_validate\";a:1:{i:0;s:20:\"filter_form_validate\";}i:1;a:7:{s:5:\"#type\";s:5:\"radio\";s:6:\"#title\";s:13:\"Filtered HTML\";s:14:\"#default_value\";s:1:\"2\";s:13:\"#return_value\";s:1:\"1\";s:8:\"#parents\";a:1:{i:0;s:6:\"format\";}s:12:\"#description\";s:306:\"<ul class=\"tips\"><li>Web page addresses and e-mail addresses turn into links automatically.</li><li>Allowed HTML tags: &lt;a&gt; &lt;em&gt; &lt;strong&gt; &lt;cite&gt; &lt;code&gt; &lt;ul&gt; &lt;ol&gt; &lt;li&gt; &lt;dl&gt; &lt;dt&gt; &lt;dd&gt;</li><li>Lines and paragraphs break automatically.</li></ul>\";s:3:\"#id\";s:13:\"edit-format-1\";}i:2;a:7:{s:5:\"#type\";s:5:\"radio\";s:6:\"#title\";s:9:\"Full HTML\";s:14:\"#default_value\";s:1:\"2\";s:13:\"#return_value\";s:1:\"2\";s:8:\"#parents\";a:1:{i:0;s:6:\"format\";}s:12:\"#description\";s:151:\"<ul class=\"tips\"><li>Web page addresses and e-mail addresses turn into links automatically.</li><li>Lines and paragraphs break automatically.</li></ul>\";s:3:\"#id\";s:13:\"edit-format-2\";}i:3;a:1:{s:6:\"#value\";s:90:\"<p><a href=\"/~uspvinc/main2/filter/tips\">More information about formatting options</a></p>\";}}}s:5:\"#node\";O:8:\"stdClass\":33:{s:3:\"nid\";s:1:\"6\";s:4:\"type\";s:4:\"page\";s:8:\"language\";s:0:\"\";s:3:\"uid\";s:1:\"1\";s:6:\"status\";s:1:\"1\";s:7:\"created\";s:10:\"1265202590\";s:7:\"changed\";s:10:\"1285703305\";s:7:\"comment\";s:1:\"0\";s:7:\"promote\";s:1:\"0\";s:8:\"moderate\";s:1:\"0\";s:6:\"sticky\";s:1:\"0\";s:4:\"tnid\";s:1:\"0\";s:9:\"translate\";s:1:\"0\";s:3:\"vid\";s:1:\"6\";s:12:\"revision_uid\";s:1:\"1\";s:5:\"title\";s:34:\"Special Offer for PV System Owners\";s:4:\"body\";s:234:\"<p>\r\nSign-up for USPV\'s REC Management Program today. No up-front or out-of-pocket costs. Don\'t miss out on this opportunity to participate in the Renewable Energy Credit markets and earn hundreds or even thousands of dollars!\r\n</p>\r\n\";s:6:\"teaser\";s:234:\"<p>\r\nSign-up for USPV\'s REC Management Program today. No up-front or out-of-pocket costs. Don\'t miss out on this opportunity to participate in the Renewable Energy Credit markets and earn hundreds or even thousands of dollars!\r\n</p>\r\n\";s:3:\"log\";N;s:18:\"revision_timestamp\";s:10:\"1285703305\";s:6:\"format\";s:1:\"2\";s:4:\"name\";s:5:\"admin\";s:7:\"picture\";s:0:\"\";s:4:\"data\";s:6:\"a:0:{}\";s:4:\"path\";s:30:\"special-offer-pv-system-owners\";s:22:\"last_comment_timestamp\";s:10:\"1265202590\";s:17:\"last_comment_name\";N;s:13:\"comment_count\";s:1:\"0\";s:8:\"taxonomy\";a:0:{}s:4:\"date\";s:25:\"2010-02-03 21:09:50 +0800\";s:8:\"revision\";b:0;s:4:\"menu\";a:48:{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:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:3:\"fit\";s:1:\"2\";s:12:\"number_parts\";s:1:\"2\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:14:\"special offers\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:4:\"type\";s:1:\"4\";s:14:\"block_callback\";s:0:\"\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"0\";s:4:\"file\";s:0:\"\";s:9:\"menu_name\";s:14:\"menu-main-menu\";s:4:\"mlid\";s:3:\"286\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/6\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:14:\"special offers\";s:7:\"options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:14:\"special offers\";}}s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"286\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:4:\"href\";s:6:\"node/6\";s:6:\"access\";b:1;s:17:\"localized_options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:14:\"special offers\";}}s:18:\"parent_depth_limit\";i:8;}s:22:\"pathauto_perform_alias\";b:1;}s:20:\"revision_information\";a:7:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:20:\"Revision information\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:7:\"#weight\";i:20;s:8:\"revision\";a:4:{s:7:\"#access\";b:1;s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:19:\"Create new revision\";s:14:\"#default_value\";b:0;}s:3:\"log\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:11:\"Log message\";s:14:\"#default_value\";s:0:\"\";s:5:\"#rows\";i:2;s:12:\"#description\";s:104:\"An explanation of the additions or updates being made to help other authors understand your motivations.\";}}s:6:\"author\";a:8:{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:7:\"#weight\";i:20;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:35:\"Leave blank for <em>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:91:\"Format: <em>2010-02-03 21:09:50 +0800</em>. Leave blank to use the time of form submission.\";s:14:\"#default_value\";s:25:\"2010-02-03 21:09:50 +0800\";}}s:7:\"options\";a:9:{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:7:\"#weight\";i:25;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:\"buttons\";a:3:{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:16:\"node_form_submit\";}}s:7:\"preview\";a:4:{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:6:\"#theme\";a:2:{i:0;s:14:\"page_node_form\";i:1;s:9:\"node_form\";}s:11:\"#parameters\";a:3:{i:0;s:14:\"page_node_form\";i:1;a:3:{s:7:\"storage\";N;s:9:\"submitted\";b:0;s:4:\"post\";a:0:{}}i:2;r:83;}s:9:\"#build_id\";s:37:\"form-725ec36bc49b50593e85658f6a54cd02\";s:5:\"#type\";s:4:\"form\";s:11:\"#programmed\";b:0;s:13:\"form_build_id\";a:4:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:37:\"form-725ec36bc49b50593e85658f6a54cd02\";s:3:\"#id\";s:37:\"form-725ec36bc49b50593e85658f6a54cd02\";s:5:\"#name\";s:13:\"form_build_id\";}s:6:\"#token\";s:14:\"page_node_form\";s:10:\"form_token\";a:3:{s:3:\"#id\";s:30:\"edit-page-node-form-form-token\";s:5:\"#type\";s:5:\"token\";s:14:\"#default_value\";s:32:\"69ee9cfa6b6366390575effcb3429c15\";}s:7:\"form_id\";a:3:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:14:\"page_node_form\";s:3:\"#id\";s:19:\"edit-page-node-form\";}s:12:\"#description\";N;s:11:\"#attributes\";a:0:{}s:9:\"#required\";b:0;s:5:\"#tree\";b:0;s:8:\"#parents\";a:0:{}s:7:\"#method\";s:4:\"post\";s:7:\"#action\";s:27:\"/~uspvinc/main2/node/6/edit\";s:16:\"comment_settings\";a:7:{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:7:\"#weight\";i:30;s:7:\"comment\";a:4:{s:5:\"#type\";s:6:\"radios\";s:8:\"#parents\";a:1:{i:0;s:7:\"comment\";}s:14:\"#default_value\";s:1:\"0\";s:8:\"#options\";a:3:{i:0;s:8:\"Disabled\";i:1;s:9:\"Read only\";i:2;s:10:\"Read/Write\";}}}s:6:\"#cache\";b:1;s:4:\"menu\";a:21:{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:5:\"#tree\";b:1;s:7:\"#weight\";i:-2;s:11:\"#attributes\";a:1:{s:5:\"class\";s:14:\"menu-item-form\";}s:6:\"delete\";a:2:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:22:\"Delete this menu item.\";}s:4:\"mlid\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:3:\"286\";}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\";s:1:\"1\";}s:7:\"options\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:14:\"special offers\";}}}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:5:\"#item\";a:48:{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:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:3:\"fit\";s:1:\"2\";s:12:\"number_parts\";s:1:\"2\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:14:\"special offers\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:4:\"type\";s:1:\"4\";s:14:\"block_callback\";s:0:\"\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"0\";s:4:\"file\";s:0:\"\";s:9:\"menu_name\";s:14:\"menu-main-menu\";s:4:\"mlid\";s:3:\"286\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/6\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:14:\"special offers\";s:7:\"options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:14:\"special offers\";}}s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"286\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:4:\"href\";s:6:\"node/6\";s:6:\"access\";b:1;s:17:\"localized_options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:14:\"special offers\";}}s:18:\"parent_depth_limit\";i:8;}s:10:\"link_title\";a:5:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:15:\"Menu link title\";s:14:\"#default_value\";s:14:\"special offers\";s:12:\"#description\";s:133:\"The link text corresponding to this item that should appear in the menu. Leave blank if you do not wish to add this post to the menu.\";s:9:\"#required\";b:0;}s:6:\"parent\";a:6:{s:5:\"#type\";s:6:\"select\";s:6:\"#title\";s:11:\"Parent item\";s:14:\"#default_value\";s:16:\"menu-main-menu:0\";s:8:\"#options\";a:95:{s:16:\"menu-main-menu:0\";s:11:\"<Main Menu>\";s:18:\"menu-main-menu:283\";s:8:\"-- about\";s:18:\"menu-main-menu:284\";s:12:\"-- resources\";s:18:\"menu-main-menu:285\";s:11:\"-- services\";s:12:\"navigation:0\";s:12:\"<Navigation>\";s:12:\"navigation:9\";s:26:\"-- Compose tips (disabled)\";s:14:\"navigation:461\";s:29:\"-- Image galleries (disabled)\";s:13:\"navigation:21\";s:13:\"-- My account\";s:14:\"navigation:114\";s:20:\"-- Search (disabled)\";s:14:\"navigation:244\";s:22:\"-- Site map (disabled)\";s:13:\"navigation:11\";s:17:\"-- Create content\";s:14:\"navigation:476\";s:11:\"---- Banner\";s:14:\"navigation:441\";s:10:\"---- Image\";s:14:\"navigation:289\";s:21:\"---- Newsletter issue\";s:14:\"navigation:106\";s:9:\"---- Page\";s:14:\"navigation:388\";s:10:\"---- Panel\";s:14:\"navigation:107\";s:10:\"---- Story\";s:12:\"navigation:2\";s:13:\"-- Administer\";s:13:\"navigation:10\";s:23:\"---- Content management\";s:13:\"navigation:27\";s:15:\"------ Comments\";s:13:\"navigation:28\";s:14:\"------ Content\";s:13:\"navigation:29\";s:20:\"------ Content types\";s:14:\"navigation:462\";s:22:\"------ Image galleries\";s:14:\"navigation:463\";s:19:\"------ Image import\";s:14:\"navigation:538\";s:18:\"------ Newsletters\";s:14:\"navigation:546\";s:20:\"-------- Sent issues\";s:14:\"navigation:541\";s:21:\"-------- Draft issues\";s:14:\"navigation:544\";s:20:\"-------- Newsletters\";s:14:\"navigation:548\";s:22:\"-------- Subscriptions\";s:13:\"navigation:42\";s:20:\"------ Post settings\";s:13:\"navigation:43\";s:21:\"------ RSS publishing\";s:13:\"navigation:94\";s:15:\"------ Taxonomy\";s:13:\"navigation:17\";s:18:\"---- Site building\";s:13:\"navigation:25\";s:13:\"------ Blocks\";s:14:\"navigation:424\";s:20:\"------ Bulk Exporter\";s:13:\"navigation:38\";s:12:\"------ Menus\";s:14:\"navigation:282\";s:18:\"-------- Main Menu\";s:13:\"navigation:89\";s:19:\"-------- Navigation\";s:13:\"navigation:90\";s:22:\"-------- Primary links\";s:14:\"navigation:495\";s:19:\"-------- Right Menu\";s:13:\"navigation:91\";s:24:\"-------- Secondary links\";s:14:\"navigation:387\";s:18:\"------ Mini panels\";s:13:\"navigation:39\";s:14:\"------ Modules\";s:14:\"navigation:412\";s:12:\"------ Pages\";s:14:\"navigation:360\";s:13:\"------ Panels\";s:13:\"navigation:49\";s:13:\"------ Themes\";s:14:\"navigation:335\";s:15:\"------ Triggers\";s:14:\"navigation:501\";s:18:\"------ URL aliases\";s:14:\"navigation:257\";s:12:\"------ Views\";s:13:\"navigation:18\";s:23:\"---- Site configuration\";s:13:\"navigation:23\";s:14:\"------ Actions\";s:14:\"navigation:119\";s:26:\"------ Administration menu\";s:13:\"navigation:24\";s:27:\"------ Administration theme\";s:13:\"navigation:26\";s:17:\"------ Clean URLs\";s:13:\"navigation:30\";s:20:\"------ Date and time\";s:13:\"navigation:33\";s:22:\"------ Error reporting\";s:13:\"navigation:34\";s:18:\"------ File system\";s:13:\"navigation:35\";s:20:\"------ Image toolkit\";s:14:\"navigation:442\";s:13:\"------ Images\";s:13:\"navigation:36\";s:20:\"------ Input formats\";s:13:\"navigation:37\";s:25:\"------ Logging and alerts\";s:14:\"navigation:100\";s:25:\"-------- Database logging\";s:14:\"navigation:245\";s:17:\"------ Nice Menus\";s:13:\"navigation:40\";s:18:\"------ Performance\";s:14:\"navigation:120\";s:22:\"------ Search settings\";s:14:\"navigation:539\";s:17:\"------ Simplenews\";s:14:\"navigation:542\";s:16:\"-------- General\";s:14:\"navigation:543\";s:19:\"-------- Newsletter\";s:14:\"navigation:547\";s:21:\"-------- Subscription\";s:14:\"navigation:545\";s:18:\"-------- Send mail\";s:13:\"navigation:46\";s:23:\"------ Site information\";s:13:\"navigation:47\";s:23:\"------ Site maintenance\";s:14:\"navigation:246\";s:15:\"------ Site map\";s:13:\"navigation:20\";s:20:\"---- User management\";s:13:\"navigation:22\";s:19:\"------ Access rules\";s:13:\"navigation:41\";s:18:\"------ Permissions\";s:13:\"navigation:45\";s:12:\"------ Roles\";s:13:\"navigation:50\";s:20:\"------ User settings\";s:13:\"navigation:51\";s:12:\"------ Users\";s:13:\"navigation:16\";s:12:\"---- Reports\";s:13:\"navigation:93\";s:25:\"------ Recent log entries\";s:13:\"navigation:96\";s:33:\"------ Top \'access denied\' errors\";s:13:\"navigation:97\";s:34:\"------ Top \'page not found\' errors\";s:14:\"navigation:121\";s:25:\"------ Top search phrases\";s:14:\"navigation:105\";s:24:\"------ Available updates\";s:13:\"navigation:48\";s:20:\"------ Status report\";s:13:\"navigation:15\";s:9:\"---- Help\";s:12:\"navigation:4\";s:10:\"-- Log out\";s:15:\"primary-links:0\";s:15:\"<Primary links>\";s:17:\"menu-right-menu:0\";s:12:\"<Right Menu>\";s:19:\"menu-right-menu:496\";s:28:\"-- Financial Calculator Tool\";s:19:\"menu-right-menu:497\";s:21:\"-- News Story Library\";s:19:\"menu-right-menu:498\";s:14:\"-- Latest News\";s:19:\"menu-right-menu:499\";s:25:\"-- SREC Management Portal\";s:17:\"secondary-links:0\";s:17:\"<Secondary links>\";}s:12:\"#description\";s:156:\"The maximum depth for an item and all its children is fixed at 9. Some menu items may not be available as parents if selecting them would exceed this limit.\";s:11:\"#attributes\";a:1:{s:5:\"class\";s:17:\"menu-title-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:1:\"0\";s:12:\"#description\";s:107:\"Optional. In the menu, the heavier items will sink and the lighter items will be positioned nearer the top.\";}}s:7:\"#submit\";a:1:{i:0;s:21:\"menu_node_form_submit\";}s:4:\"path\";a:10:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:17:\"URL path settings\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:0;s:7:\"#access\";b:1;s:7:\"#weight\";i:30;s:4:\"path\";a:6:{s:5:\"#type\";s:9:\"textfield\";s:14:\"#default_value\";s:30:\"special-offer-pv-system-owners\";s:10:\"#maxlength\";i:128;s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:12:\"#description\";s:207:\"Optionally specify an alternative URL by which this node 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\";s:1:\"6\";}s:22:\"pathauto_perform_alias\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:15:\"Automatic alias\";s:14:\"#default_value\";b:1;s:12:\"#description\";s:238:\"An alias will be generated for you. If you wish to create your own alias below, uncheck this option. To control the format of the generated aliases, see the <a href=\"/~uspvinc/main2/admin/build/path/pathauto\">automated alias settings</a>.\";s:7:\"#weight\";i:-1;}s:9:\"old_alias\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:30:\"special-offer-pv-system-owners\";}}s:11:\"#pre_render\";a:1:{i:0;s:27:\"content_alter_extra_weights\";}s:21:\"#content_extra_fields\";a:6:{s:5:\"title\";a:3:{s:5:\"label\";s:5:\"Title\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:-5;}s:10:\"body_field\";a:4:{s:5:\"label\";s:4:\"Body\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:0;s:4:\"view\";s:4:\"body\";}s:20:\"revision_information\";a:3:{s:5:\"label\";s:20:\"Revision information\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:20;}s:16:\"comment_settings\";a:3:{s:5:\"label\";s:16:\"Comment settings\";s:11:\"description\";s:20:\"Comment module form.\";s:6:\"weight\";i:30;}s:4:\"menu\";a:3:{s:5:\"label\";s:13:\"Menu settings\";s:11:\"description\";s:17:\"Menu module form.\";s:6:\"weight\";i:-2;}s:4:\"path\";a:3:{s:5:\"label\";s:13:\"Path settings\";s:11:\"description\";s:17:\"Path module form.\";s:6:\"weight\";i:30;}}s:12:\"#cache_token\";s:32:\"ea05954e6208c2bed552f97e30d1dad3\";}',1285802198,1285780598,'',1);
INSERT INTO `cache_form` VALUES ('form_form-452ffbb2ad3fe123e9569d0e9336cd36','a:40:{s:3:\"#id\";s:9:\"node-form\";s:3:\"nid\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:1:\"6\";}s:3:\"vid\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:1:\"6\";}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:\"1265202590\";}s:4:\"type\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:4:\"page\";}s:8:\"language\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:0:\"\";}s:7:\"changed\";a:2:{s:5:\"#type\";s:6:\"hidden\";s:14:\"#default_value\";s:10:\"1285703305\";}s:5:\"title\";a:6:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:5:\"Title\";s:9:\"#required\";b:1;s:14:\"#default_value\";s:34:\"Special Offer for PV System Owners\";s:10:\"#maxlength\";i:255;s:7:\"#weight\";i:-5;}s:10:\"body_field\";a:7:{s:12:\"#after_build\";a:2:{i:0;s:14:\"node_teaser_js\";i:1;s:26:\"node_teaser_include_verify\";}s:7:\"#prefix\";s:32:\"<div class=\"body-field-wrapper\">\";s:7:\"#suffix\";s:6:\"</div>\";s:9:\"teaser_js\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:5:\"#rows\";i:10;s:7:\"#teaser\";s:9:\"edit-body\";s:16:\"#teaser_checkbox\";s:19:\"edit-teaser-include\";s:9:\"#disabled\";b:1;}s:14:\"teaser_include\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:25:\"Show summary in full view\";s:14:\"#default_value\";b:1;s:7:\"#prefix\";s:29:\"<div class=\"teaser-checkbox\">\";s:7:\"#suffix\";s:6:\"</div>\";}s:4:\"body\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:4:\"Body\";s:14:\"#default_value\";s:234:\"<p>\r\nSign-up for USPV\'s REC Management Program today. No up-front or out-of-pocket costs. Don\'t miss out on this opportunity to participate in the Renewable Energy Credit markets and earn hundreds or even thousands of dollars!\r\n</p>\r\n\";s:5:\"#rows\";i:20;s:9:\"#required\";b:0;}s:6:\"format\";a:9:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:12:\"Input format\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:7:\"#weight\";N;s:17:\"#element_validate\";a:1:{i:0;s:20:\"filter_form_validate\";}i:1;a:7:{s:5:\"#type\";s:5:\"radio\";s:6:\"#title\";s:13:\"Filtered HTML\";s:14:\"#default_value\";s:1:\"2\";s:13:\"#return_value\";s:1:\"1\";s:8:\"#parents\";a:1:{i:0;s:6:\"format\";}s:12:\"#description\";s:306:\"<ul class=\"tips\"><li>Web page addresses and e-mail addresses turn into links automatically.</li><li>Allowed HTML tags: &lt;a&gt; &lt;em&gt; &lt;strong&gt; &lt;cite&gt; &lt;code&gt; &lt;ul&gt; &lt;ol&gt; &lt;li&gt; &lt;dl&gt; &lt;dt&gt; &lt;dd&gt;</li><li>Lines and paragraphs break automatically.</li></ul>\";s:3:\"#id\";s:13:\"edit-format-1\";}i:2;a:7:{s:5:\"#type\";s:5:\"radio\";s:6:\"#title\";s:9:\"Full HTML\";s:14:\"#default_value\";s:1:\"2\";s:13:\"#return_value\";s:1:\"2\";s:8:\"#parents\";a:1:{i:0;s:6:\"format\";}s:12:\"#description\";s:151:\"<ul class=\"tips\"><li>Web page addresses and e-mail addresses turn into links automatically.</li><li>Lines and paragraphs break automatically.</li></ul>\";s:3:\"#id\";s:13:\"edit-format-2\";}i:3;a:1:{s:6:\"#value\";s:90:\"<p><a href=\"/~uspvinc/main2/filter/tips\">More information about formatting options</a></p>\";}}}s:5:\"#node\";O:8:\"stdClass\":33:{s:3:\"nid\";s:1:\"6\";s:4:\"type\";s:4:\"page\";s:8:\"language\";s:0:\"\";s:3:\"uid\";s:1:\"1\";s:6:\"status\";s:1:\"1\";s:7:\"created\";s:10:\"1265202590\";s:7:\"changed\";s:10:\"1285703305\";s:7:\"comment\";s:1:\"0\";s:7:\"promote\";s:1:\"0\";s:8:\"moderate\";s:1:\"0\";s:6:\"sticky\";s:1:\"0\";s:4:\"tnid\";s:1:\"0\";s:9:\"translate\";s:1:\"0\";s:3:\"vid\";s:1:\"6\";s:12:\"revision_uid\";s:1:\"1\";s:5:\"title\";s:34:\"Special Offer for PV System Owners\";s:4:\"body\";s:234:\"<p>\r\nSign-up for USPV\'s REC Management Program today. No up-front or out-of-pocket costs. Don\'t miss out on this opportunity to participate in the Renewable Energy Credit markets and earn hundreds or even thousands of dollars!\r\n</p>\r\n\";s:6:\"teaser\";s:234:\"<p>\r\nSign-up for USPV\'s REC Management Program today. No up-front or out-of-pocket costs. Don\'t miss out on this opportunity to participate in the Renewable Energy Credit markets and earn hundreds or even thousands of dollars!\r\n</p>\r\n\";s:3:\"log\";N;s:18:\"revision_timestamp\";s:10:\"1285703305\";s:6:\"format\";s:1:\"2\";s:4:\"name\";s:5:\"admin\";s:7:\"picture\";s:0:\"\";s:4:\"data\";s:6:\"a:0:{}\";s:4:\"path\";s:30:\"special-offer-pv-system-owners\";s:22:\"last_comment_timestamp\";s:10:\"1265202590\";s:17:\"last_comment_name\";N;s:13:\"comment_count\";s:1:\"0\";s:8:\"taxonomy\";a:0:{}s:4:\"date\";s:25:\"2010-02-03 21:09:50 +0800\";s:8:\"revision\";b:0;s:4:\"menu\";a:48:{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:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:3:\"fit\";s:1:\"2\";s:12:\"number_parts\";s:1:\"2\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:14:\"special offers\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:4:\"type\";s:1:\"4\";s:14:\"block_callback\";s:0:\"\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"0\";s:4:\"file\";s:0:\"\";s:9:\"menu_name\";s:14:\"menu-main-menu\";s:4:\"mlid\";s:3:\"286\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/6\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:14:\"special offers\";s:7:\"options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:14:\"special offers\";}}s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"286\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:4:\"href\";s:6:\"node/6\";s:6:\"access\";b:1;s:17:\"localized_options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:14:\"special offers\";}}s:18:\"parent_depth_limit\";i:8;}s:22:\"pathauto_perform_alias\";b:1;}s:20:\"revision_information\";a:7:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:20:\"Revision information\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:7:\"#weight\";i:20;s:8:\"revision\";a:4:{s:7:\"#access\";b:1;s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:19:\"Create new revision\";s:14:\"#default_value\";b:0;}s:3:\"log\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:11:\"Log message\";s:14:\"#default_value\";s:0:\"\";s:5:\"#rows\";i:2;s:12:\"#description\";s:104:\"An explanation of the additions or updates being made to help other authors understand your motivations.\";}}s:6:\"author\";a:8:{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:7:\"#weight\";i:20;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:35:\"Leave blank for <em>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:91:\"Format: <em>2010-02-03 21:09:50 +0800</em>. Leave blank to use the time of form submission.\";s:14:\"#default_value\";s:25:\"2010-02-03 21:09:50 +0800\";}}s:7:\"options\";a:9:{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:7:\"#weight\";i:25;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:\"buttons\";a:3:{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:16:\"node_form_submit\";}}s:7:\"preview\";a:4:{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:6:\"#theme\";a:2:{i:0;s:14:\"page_node_form\";i:1;s:9:\"node_form\";}s:11:\"#parameters\";a:3:{i:0;s:14:\"page_node_form\";i:1;a:3:{s:7:\"storage\";N;s:9:\"submitted\";b:0;s:4:\"post\";a:0:{}}i:2;r:83;}s:9:\"#build_id\";s:37:\"form-452ffbb2ad3fe123e9569d0e9336cd36\";s:5:\"#type\";s:4:\"form\";s:11:\"#programmed\";b:0;s:13:\"form_build_id\";a:4:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:37:\"form-452ffbb2ad3fe123e9569d0e9336cd36\";s:3:\"#id\";s:37:\"form-452ffbb2ad3fe123e9569d0e9336cd36\";s:5:\"#name\";s:13:\"form_build_id\";}s:6:\"#token\";s:14:\"page_node_form\";s:10:\"form_token\";a:3:{s:3:\"#id\";s:30:\"edit-page-node-form-form-token\";s:5:\"#type\";s:5:\"token\";s:14:\"#default_value\";s:32:\"69ee9cfa6b6366390575effcb3429c15\";}s:7:\"form_id\";a:3:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:14:\"page_node_form\";s:3:\"#id\";s:19:\"edit-page-node-form\";}s:12:\"#description\";N;s:11:\"#attributes\";a:0:{}s:9:\"#required\";b:0;s:5:\"#tree\";b:0;s:8:\"#parents\";a:0:{}s:7:\"#method\";s:4:\"post\";s:7:\"#action\";s:27:\"/~uspvinc/main2/node/6/edit\";s:16:\"comment_settings\";a:7:{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:7:\"#weight\";i:30;s:7:\"comment\";a:4:{s:5:\"#type\";s:6:\"radios\";s:8:\"#parents\";a:1:{i:0;s:7:\"comment\";}s:14:\"#default_value\";s:1:\"0\";s:8:\"#options\";a:3:{i:0;s:8:\"Disabled\";i:1;s:9:\"Read only\";i:2;s:10:\"Read/Write\";}}}s:6:\"#cache\";b:1;s:4:\"menu\";a:21:{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:5:\"#tree\";b:1;s:7:\"#weight\";i:-2;s:11:\"#attributes\";a:1:{s:5:\"class\";s:14:\"menu-item-form\";}s:6:\"delete\";a:2:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:22:\"Delete this menu item.\";}s:4:\"mlid\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:3:\"286\";}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\";s:1:\"1\";}s:7:\"options\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:14:\"special offers\";}}}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:5:\"#item\";a:48:{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:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:3:\"fit\";s:1:\"2\";s:12:\"number_parts\";s:1:\"2\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:14:\"special offers\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:4:\"type\";s:1:\"4\";s:14:\"block_callback\";s:0:\"\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"0\";s:4:\"file\";s:0:\"\";s:9:\"menu_name\";s:14:\"menu-main-menu\";s:4:\"mlid\";s:3:\"286\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/6\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:14:\"special offers\";s:7:\"options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:14:\"special offers\";}}s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"286\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:4:\"href\";s:6:\"node/6\";s:6:\"access\";b:1;s:17:\"localized_options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:14:\"special offers\";}}s:18:\"parent_depth_limit\";i:8;}s:10:\"link_title\";a:5:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:15:\"Menu link title\";s:14:\"#default_value\";s:14:\"special offers\";s:12:\"#description\";s:133:\"The link text corresponding to this item that should appear in the menu. Leave blank if you do not wish to add this post to the menu.\";s:9:\"#required\";b:0;}s:6:\"parent\";a:6:{s:5:\"#type\";s:6:\"select\";s:6:\"#title\";s:11:\"Parent item\";s:14:\"#default_value\";s:16:\"menu-main-menu:0\";s:8:\"#options\";a:95:{s:16:\"menu-main-menu:0\";s:11:\"<Main Menu>\";s:18:\"menu-main-menu:283\";s:8:\"-- about\";s:18:\"menu-main-menu:284\";s:12:\"-- resources\";s:18:\"menu-main-menu:285\";s:11:\"-- services\";s:12:\"navigation:0\";s:12:\"<Navigation>\";s:12:\"navigation:9\";s:26:\"-- Compose tips (disabled)\";s:14:\"navigation:461\";s:29:\"-- Image galleries (disabled)\";s:13:\"navigation:21\";s:13:\"-- My account\";s:14:\"navigation:114\";s:20:\"-- Search (disabled)\";s:14:\"navigation:244\";s:22:\"-- Site map (disabled)\";s:13:\"navigation:11\";s:17:\"-- Create content\";s:14:\"navigation:476\";s:11:\"---- Banner\";s:14:\"navigation:441\";s:10:\"---- Image\";s:14:\"navigation:289\";s:21:\"---- Newsletter issue\";s:14:\"navigation:106\";s:9:\"---- Page\";s:14:\"navigation:388\";s:10:\"---- Panel\";s:14:\"navigation:107\";s:10:\"---- Story\";s:12:\"navigation:2\";s:13:\"-- Administer\";s:13:\"navigation:10\";s:23:\"---- Content management\";s:13:\"navigation:27\";s:15:\"------ Comments\";s:13:\"navigation:28\";s:14:\"------ Content\";s:13:\"navigation:29\";s:20:\"------ Content types\";s:14:\"navigation:462\";s:22:\"------ Image galleries\";s:14:\"navigation:463\";s:19:\"------ Image import\";s:14:\"navigation:538\";s:18:\"------ Newsletters\";s:14:\"navigation:546\";s:20:\"-------- Sent issues\";s:14:\"navigation:541\";s:21:\"-------- Draft issues\";s:14:\"navigation:544\";s:20:\"-------- Newsletters\";s:14:\"navigation:548\";s:22:\"-------- Subscriptions\";s:13:\"navigation:42\";s:20:\"------ Post settings\";s:13:\"navigation:43\";s:21:\"------ RSS publishing\";s:13:\"navigation:94\";s:15:\"------ Taxonomy\";s:13:\"navigation:17\";s:18:\"---- Site building\";s:13:\"navigation:25\";s:13:\"------ Blocks\";s:14:\"navigation:424\";s:20:\"------ Bulk Exporter\";s:13:\"navigation:38\";s:12:\"------ Menus\";s:14:\"navigation:282\";s:18:\"-------- Main Menu\";s:13:\"navigation:89\";s:19:\"-------- Navigation\";s:13:\"navigation:90\";s:22:\"-------- Primary links\";s:14:\"navigation:495\";s:19:\"-------- Right Menu\";s:13:\"navigation:91\";s:24:\"-------- Secondary links\";s:14:\"navigation:387\";s:18:\"------ Mini panels\";s:13:\"navigation:39\";s:14:\"------ Modules\";s:14:\"navigation:412\";s:12:\"------ Pages\";s:14:\"navigation:360\";s:13:\"------ Panels\";s:13:\"navigation:49\";s:13:\"------ Themes\";s:14:\"navigation:335\";s:15:\"------ Triggers\";s:14:\"navigation:501\";s:18:\"------ URL aliases\";s:14:\"navigation:257\";s:12:\"------ Views\";s:13:\"navigation:18\";s:23:\"---- Site configuration\";s:13:\"navigation:23\";s:14:\"------ Actions\";s:14:\"navigation:119\";s:26:\"------ Administration menu\";s:13:\"navigation:24\";s:27:\"------ Administration theme\";s:13:\"navigation:26\";s:17:\"------ Clean URLs\";s:13:\"navigation:30\";s:20:\"------ Date and time\";s:13:\"navigation:33\";s:22:\"------ Error reporting\";s:13:\"navigation:34\";s:18:\"------ File system\";s:13:\"navigation:35\";s:20:\"------ Image toolkit\";s:14:\"navigation:442\";s:13:\"------ Images\";s:13:\"navigation:36\";s:20:\"------ Input formats\";s:13:\"navigation:37\";s:25:\"------ Logging and alerts\";s:14:\"navigation:100\";s:25:\"-------- Database logging\";s:14:\"navigation:245\";s:17:\"------ Nice Menus\";s:13:\"navigation:40\";s:18:\"------ Performance\";s:14:\"navigation:120\";s:22:\"------ Search settings\";s:14:\"navigation:539\";s:17:\"------ Simplenews\";s:14:\"navigation:542\";s:16:\"-------- General\";s:14:\"navigation:543\";s:19:\"-------- Newsletter\";s:14:\"navigation:547\";s:21:\"-------- Subscription\";s:14:\"navigation:545\";s:18:\"-------- Send mail\";s:13:\"navigation:46\";s:23:\"------ Site information\";s:13:\"navigation:47\";s:23:\"------ Site maintenance\";s:14:\"navigation:246\";s:15:\"------ Site map\";s:13:\"navigation:20\";s:20:\"---- User management\";s:13:\"navigation:22\";s:19:\"------ Access rules\";s:13:\"navigation:41\";s:18:\"------ Permissions\";s:13:\"navigation:45\";s:12:\"------ Roles\";s:13:\"navigation:50\";s:20:\"------ User settings\";s:13:\"navigation:51\";s:12:\"------ Users\";s:13:\"navigation:16\";s:12:\"---- Reports\";s:13:\"navigation:93\";s:25:\"------ Recent log entries\";s:13:\"navigation:96\";s:33:\"------ Top \'access denied\' errors\";s:13:\"navigation:97\";s:34:\"------ Top \'page not found\' errors\";s:14:\"navigation:121\";s:25:\"------ Top search phrases\";s:14:\"navigation:105\";s:24:\"------ Available updates\";s:13:\"navigation:48\";s:20:\"------ Status report\";s:13:\"navigation:15\";s:9:\"---- Help\";s:12:\"navigation:4\";s:10:\"-- Log out\";s:15:\"primary-links:0\";s:15:\"<Primary links>\";s:17:\"menu-right-menu:0\";s:12:\"<Right Menu>\";s:19:\"menu-right-menu:496\";s:28:\"-- Financial Calculator Tool\";s:19:\"menu-right-menu:497\";s:21:\"-- News Story Library\";s:19:\"menu-right-menu:498\";s:14:\"-- Latest News\";s:19:\"menu-right-menu:499\";s:25:\"-- SREC Management Portal\";s:17:\"secondary-links:0\";s:17:\"<Secondary links>\";}s:12:\"#description\";s:156:\"The maximum depth for an item and all its children is fixed at 9. Some menu items may not be available as parents if selecting them would exceed this limit.\";s:11:\"#attributes\";a:1:{s:5:\"class\";s:17:\"menu-title-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:1:\"0\";s:12:\"#description\";s:107:\"Optional. In the menu, the heavier items will sink and the lighter items will be positioned nearer the top.\";}}s:7:\"#submit\";a:1:{i:0;s:21:\"menu_node_form_submit\";}s:4:\"path\";a:10:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:17:\"URL path settings\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:0;s:7:\"#access\";b:1;s:7:\"#weight\";i:30;s:4:\"path\";a:6:{s:5:\"#type\";s:9:\"textfield\";s:14:\"#default_value\";s:30:\"special-offer-pv-system-owners\";s:10:\"#maxlength\";i:128;s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:12:\"#description\";s:207:\"Optionally specify an alternative URL by which this node 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\";s:1:\"6\";}s:22:\"pathauto_perform_alias\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:15:\"Automatic alias\";s:14:\"#default_value\";b:1;s:12:\"#description\";s:238:\"An alias will be generated for you. If you wish to create your own alias below, uncheck this option. To control the format of the generated aliases, see the <a href=\"/~uspvinc/main2/admin/build/path/pathauto\">automated alias settings</a>.\";s:7:\"#weight\";i:-1;}s:9:\"old_alias\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:30:\"special-offer-pv-system-owners\";}}s:11:\"#pre_render\";a:1:{i:0;s:27:\"content_alter_extra_weights\";}s:21:\"#content_extra_fields\";a:6:{s:5:\"title\";a:3:{s:5:\"label\";s:5:\"Title\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:-5;}s:10:\"body_field\";a:4:{s:5:\"label\";s:4:\"Body\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:0;s:4:\"view\";s:4:\"body\";}s:20:\"revision_information\";a:3:{s:5:\"label\";s:20:\"Revision information\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:20;}s:16:\"comment_settings\";a:3:{s:5:\"label\";s:16:\"Comment settings\";s:11:\"description\";s:20:\"Comment module form.\";s:6:\"weight\";i:30;}s:4:\"menu\";a:3:{s:5:\"label\";s:13:\"Menu settings\";s:11:\"description\";s:17:\"Menu module form.\";s:6:\"weight\";i:-2;}s:4:\"path\";a:3:{s:5:\"label\";s:13:\"Path settings\";s:11:\"description\";s:17:\"Path module form.\";s:6:\"weight\";i:30;}}s:12:\"#cache_token\";s:32:\"ea05954e6208c2bed552f97e30d1dad3\";}',1285803368,1285781768,'',1),('form_form-3a7dc4bdf2e2e9e8e98e534f20fee266','a:40:{s:3:\"#id\";s:9:\"node-form\";s:3:\"nid\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:1:\"6\";}s:3:\"vid\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:1:\"6\";}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:\"1265202590\";}s:4:\"type\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:4:\"page\";}s:8:\"language\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:0:\"\";}s:7:\"changed\";a:2:{s:5:\"#type\";s:6:\"hidden\";s:14:\"#default_value\";s:10:\"1285703305\";}s:5:\"title\";a:6:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:5:\"Title\";s:9:\"#required\";b:1;s:14:\"#default_value\";s:34:\"Special Offer for PV System Owners\";s:10:\"#maxlength\";i:255;s:7:\"#weight\";i:-5;}s:10:\"body_field\";a:7:{s:12:\"#after_build\";a:2:{i:0;s:14:\"node_teaser_js\";i:1;s:26:\"node_teaser_include_verify\";}s:7:\"#prefix\";s:32:\"<div class=\"body-field-wrapper\">\";s:7:\"#suffix\";s:6:\"</div>\";s:9:\"teaser_js\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:5:\"#rows\";i:10;s:7:\"#teaser\";s:9:\"edit-body\";s:16:\"#teaser_checkbox\";s:19:\"edit-teaser-include\";s:9:\"#disabled\";b:1;}s:14:\"teaser_include\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:25:\"Show summary in full view\";s:14:\"#default_value\";b:1;s:7:\"#prefix\";s:29:\"<div class=\"teaser-checkbox\">\";s:7:\"#suffix\";s:6:\"</div>\";}s:4:\"body\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:4:\"Body\";s:14:\"#default_value\";s:234:\"<p>\r\nSign-up for USPV\'s REC Management Program today. No up-front or out-of-pocket costs. Don\'t miss out on this opportunity to participate in the Renewable Energy Credit markets and earn hundreds or even thousands of dollars!\r\n</p>\r\n\";s:5:\"#rows\";i:20;s:9:\"#required\";b:0;}s:6:\"format\";a:9:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:12:\"Input format\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:7:\"#weight\";N;s:17:\"#element_validate\";a:1:{i:0;s:20:\"filter_form_validate\";}i:1;a:7:{s:5:\"#type\";s:5:\"radio\";s:6:\"#title\";s:13:\"Filtered HTML\";s:14:\"#default_value\";s:1:\"2\";s:13:\"#return_value\";s:1:\"1\";s:8:\"#parents\";a:1:{i:0;s:6:\"format\";}s:12:\"#description\";s:306:\"<ul class=\"tips\"><li>Web page addresses and e-mail addresses turn into links automatically.</li><li>Allowed HTML tags: &lt;a&gt; &lt;em&gt; &lt;strong&gt; &lt;cite&gt; &lt;code&gt; &lt;ul&gt; &lt;ol&gt; &lt;li&gt; &lt;dl&gt; &lt;dt&gt; &lt;dd&gt;</li><li>Lines and paragraphs break automatically.</li></ul>\";s:3:\"#id\";s:13:\"edit-format-1\";}i:2;a:7:{s:5:\"#type\";s:5:\"radio\";s:6:\"#title\";s:9:\"Full HTML\";s:14:\"#default_value\";s:1:\"2\";s:13:\"#return_value\";s:1:\"2\";s:8:\"#parents\";a:1:{i:0;s:6:\"format\";}s:12:\"#description\";s:151:\"<ul class=\"tips\"><li>Web page addresses and e-mail addresses turn into links automatically.</li><li>Lines and paragraphs break automatically.</li></ul>\";s:3:\"#id\";s:13:\"edit-format-2\";}i:3;a:1:{s:6:\"#value\";s:90:\"<p><a href=\"/~uspvinc/main2/filter/tips\">More information about formatting options</a></p>\";}}}s:5:\"#node\";O:8:\"stdClass\":33:{s:3:\"nid\";s:1:\"6\";s:4:\"type\";s:4:\"page\";s:8:\"language\";s:0:\"\";s:3:\"uid\";s:1:\"1\";s:6:\"status\";s:1:\"1\";s:7:\"created\";s:10:\"1265202590\";s:7:\"changed\";s:10:\"1285703305\";s:7:\"comment\";s:1:\"0\";s:7:\"promote\";s:1:\"0\";s:8:\"moderate\";s:1:\"0\";s:6:\"sticky\";s:1:\"0\";s:4:\"tnid\";s:1:\"0\";s:9:\"translate\";s:1:\"0\";s:3:\"vid\";s:1:\"6\";s:12:\"revision_uid\";s:1:\"1\";s:5:\"title\";s:34:\"Special Offer for PV System Owners\";s:4:\"body\";s:234:\"<p>\r\nSign-up for USPV\'s REC Management Program today. No up-front or out-of-pocket costs. Don\'t miss out on this opportunity to participate in the Renewable Energy Credit markets and earn hundreds or even thousands of dollars!\r\n</p>\r\n\";s:6:\"teaser\";s:234:\"<p>\r\nSign-up for USPV\'s REC Management Program today. No up-front or out-of-pocket costs. Don\'t miss out on this opportunity to participate in the Renewable Energy Credit markets and earn hundreds or even thousands of dollars!\r\n</p>\r\n\";s:3:\"log\";N;s:18:\"revision_timestamp\";s:10:\"1285703305\";s:6:\"format\";s:1:\"2\";s:4:\"name\";s:5:\"admin\";s:7:\"picture\";s:0:\"\";s:4:\"data\";s:6:\"a:0:{}\";s:4:\"path\";s:30:\"special-offer-pv-system-owners\";s:22:\"last_comment_timestamp\";s:10:\"1265202590\";s:17:\"last_comment_name\";N;s:13:\"comment_count\";s:1:\"0\";s:8:\"taxonomy\";a:0:{}s:4:\"date\";s:25:\"2010-02-03 21:09:50 +0800\";s:8:\"revision\";b:0;s:4:\"menu\";a:48:{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:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:3:\"fit\";s:1:\"2\";s:12:\"number_parts\";s:1:\"2\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:14:\"special offers\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:4:\"type\";s:1:\"4\";s:14:\"block_callback\";s:0:\"\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"0\";s:4:\"file\";s:0:\"\";s:9:\"menu_name\";s:14:\"menu-main-menu\";s:4:\"mlid\";s:3:\"286\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/6\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:14:\"special offers\";s:7:\"options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:14:\"special offers\";}}s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"286\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:4:\"href\";s:6:\"node/6\";s:6:\"access\";b:1;s:17:\"localized_options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:14:\"special offers\";}}s:18:\"parent_depth_limit\";i:8;}s:22:\"pathauto_perform_alias\";b:1;}s:20:\"revision_information\";a:7:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:20:\"Revision information\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:7:\"#weight\";i:20;s:8:\"revision\";a:4:{s:7:\"#access\";b:1;s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:19:\"Create new revision\";s:14:\"#default_value\";b:0;}s:3:\"log\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:11:\"Log message\";s:14:\"#default_value\";s:0:\"\";s:5:\"#rows\";i:2;s:12:\"#description\";s:104:\"An explanation of the additions or updates being made to help other authors understand your motivations.\";}}s:6:\"author\";a:8:{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:7:\"#weight\";i:20;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:35:\"Leave blank for <em>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:91:\"Format: <em>2010-02-03 21:09:50 +0800</em>. Leave blank to use the time of form submission.\";s:14:\"#default_value\";s:25:\"2010-02-03 21:09:50 +0800\";}}s:7:\"options\";a:9:{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:7:\"#weight\";i:25;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:\"buttons\";a:3:{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:16:\"node_form_submit\";}}s:7:\"preview\";a:4:{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:6:\"#theme\";a:2:{i:0;s:14:\"page_node_form\";i:1;s:9:\"node_form\";}s:11:\"#parameters\";a:3:{i:0;s:14:\"page_node_form\";i:1;a:3:{s:7:\"storage\";N;s:9:\"submitted\";b:0;s:4:\"post\";a:0:{}}i:2;r:83;}s:9:\"#build_id\";s:37:\"form-3a7dc4bdf2e2e9e8e98e534f20fee266\";s:5:\"#type\";s:4:\"form\";s:11:\"#programmed\";b:0;s:13:\"form_build_id\";a:4:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:37:\"form-3a7dc4bdf2e2e9e8e98e534f20fee266\";s:3:\"#id\";s:37:\"form-3a7dc4bdf2e2e9e8e98e534f20fee266\";s:5:\"#name\";s:13:\"form_build_id\";}s:6:\"#token\";s:14:\"page_node_form\";s:10:\"form_token\";a:3:{s:3:\"#id\";s:30:\"edit-page-node-form-form-token\";s:5:\"#type\";s:5:\"token\";s:14:\"#default_value\";s:32:\"69ee9cfa6b6366390575effcb3429c15\";}s:7:\"form_id\";a:3:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:14:\"page_node_form\";s:3:\"#id\";s:19:\"edit-page-node-form\";}s:12:\"#description\";N;s:11:\"#attributes\";a:0:{}s:9:\"#required\";b:0;s:5:\"#tree\";b:0;s:8:\"#parents\";a:0:{}s:7:\"#method\";s:4:\"post\";s:7:\"#action\";s:27:\"/~uspvinc/main2/node/6/edit\";s:16:\"comment_settings\";a:7:{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:7:\"#weight\";i:30;s:7:\"comment\";a:4:{s:5:\"#type\";s:6:\"radios\";s:8:\"#parents\";a:1:{i:0;s:7:\"comment\";}s:14:\"#default_value\";s:1:\"0\";s:8:\"#options\";a:3:{i:0;s:8:\"Disabled\";i:1;s:9:\"Read only\";i:2;s:10:\"Read/Write\";}}}s:6:\"#cache\";b:1;s:4:\"menu\";a:21:{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:5:\"#tree\";b:1;s:7:\"#weight\";i:-2;s:11:\"#attributes\";a:1:{s:5:\"class\";s:14:\"menu-item-form\";}s:6:\"delete\";a:2:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:22:\"Delete this menu item.\";}s:4:\"mlid\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:3:\"286\";}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\";s:1:\"1\";}s:7:\"options\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:14:\"special offers\";}}}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:5:\"#item\";a:48:{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:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:3:\"fit\";s:1:\"2\";s:12:\"number_parts\";s:1:\"2\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:14:\"special offers\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:4:\"type\";s:1:\"4\";s:14:\"block_callback\";s:0:\"\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"0\";s:4:\"file\";s:0:\"\";s:9:\"menu_name\";s:14:\"menu-main-menu\";s:4:\"mlid\";s:3:\"286\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/6\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:14:\"special offers\";s:7:\"options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:14:\"special offers\";}}s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"286\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:4:\"href\";s:6:\"node/6\";s:6:\"access\";b:1;s:17:\"localized_options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:14:\"special offers\";}}s:18:\"parent_depth_limit\";i:8;}s:10:\"link_title\";a:5:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:15:\"Menu link title\";s:14:\"#default_value\";s:14:\"special offers\";s:12:\"#description\";s:133:\"The link text corresponding to this item that should appear in the menu. Leave blank if you do not wish to add this post to the menu.\";s:9:\"#required\";b:0;}s:6:\"parent\";a:6:{s:5:\"#type\";s:6:\"select\";s:6:\"#title\";s:11:\"Parent item\";s:14:\"#default_value\";s:16:\"menu-main-menu:0\";s:8:\"#options\";a:95:{s:16:\"menu-main-menu:0\";s:11:\"<Main Menu>\";s:18:\"menu-main-menu:283\";s:8:\"-- about\";s:18:\"menu-main-menu:284\";s:12:\"-- resources\";s:18:\"menu-main-menu:285\";s:11:\"-- services\";s:12:\"navigation:0\";s:12:\"<Navigation>\";s:12:\"navigation:9\";s:26:\"-- Compose tips (disabled)\";s:14:\"navigation:461\";s:29:\"-- Image galleries (disabled)\";s:13:\"navigation:21\";s:13:\"-- My account\";s:14:\"navigation:114\";s:20:\"-- Search (disabled)\";s:14:\"navigation:244\";s:22:\"-- Site map (disabled)\";s:13:\"navigation:11\";s:17:\"-- Create content\";s:14:\"navigation:476\";s:11:\"---- Banner\";s:14:\"navigation:441\";s:10:\"---- Image\";s:14:\"navigation:289\";s:21:\"---- Newsletter issue\";s:14:\"navigation:106\";s:9:\"---- Page\";s:14:\"navigation:388\";s:10:\"---- Panel\";s:14:\"navigation:107\";s:10:\"---- Story\";s:12:\"navigation:2\";s:13:\"-- Administer\";s:13:\"navigation:10\";s:23:\"---- Content management\";s:13:\"navigation:27\";s:15:\"------ Comments\";s:13:\"navigation:28\";s:14:\"------ Content\";s:13:\"navigation:29\";s:20:\"------ Content types\";s:14:\"navigation:462\";s:22:\"------ Image galleries\";s:14:\"navigation:463\";s:19:\"------ Image import\";s:14:\"navigation:538\";s:18:\"------ Newsletters\";s:14:\"navigation:546\";s:20:\"-------- Sent issues\";s:14:\"navigation:541\";s:21:\"-------- Draft issues\";s:14:\"navigation:544\";s:20:\"-------- Newsletters\";s:14:\"navigation:548\";s:22:\"-------- Subscriptions\";s:13:\"navigation:42\";s:20:\"------ Post settings\";s:13:\"navigation:43\";s:21:\"------ RSS publishing\";s:13:\"navigation:94\";s:15:\"------ Taxonomy\";s:13:\"navigation:17\";s:18:\"---- Site building\";s:13:\"navigation:25\";s:13:\"------ Blocks\";s:14:\"navigation:424\";s:20:\"------ Bulk Exporter\";s:13:\"navigation:38\";s:12:\"------ Menus\";s:14:\"navigation:282\";s:18:\"-------- Main Menu\";s:13:\"navigation:89\";s:19:\"-------- Navigation\";s:13:\"navigation:90\";s:22:\"-------- Primary links\";s:14:\"navigation:495\";s:19:\"-------- Right Menu\";s:13:\"navigation:91\";s:24:\"-------- Secondary links\";s:14:\"navigation:387\";s:18:\"------ Mini panels\";s:13:\"navigation:39\";s:14:\"------ Modules\";s:14:\"navigation:412\";s:12:\"------ Pages\";s:14:\"navigation:360\";s:13:\"------ Panels\";s:13:\"navigation:49\";s:13:\"------ Themes\";s:14:\"navigation:335\";s:15:\"------ Triggers\";s:14:\"navigation:501\";s:18:\"------ URL aliases\";s:14:\"navigation:257\";s:12:\"------ Views\";s:13:\"navigation:18\";s:23:\"---- Site configuration\";s:13:\"navigation:23\";s:14:\"------ Actions\";s:14:\"navigation:119\";s:26:\"------ Administration menu\";s:13:\"navigation:24\";s:27:\"------ Administration theme\";s:13:\"navigation:26\";s:17:\"------ Clean URLs\";s:13:\"navigation:30\";s:20:\"------ Date and time\";s:13:\"navigation:33\";s:22:\"------ Error reporting\";s:13:\"navigation:34\";s:18:\"------ File system\";s:13:\"navigation:35\";s:20:\"------ Image toolkit\";s:14:\"navigation:442\";s:13:\"------ Images\";s:13:\"navigation:36\";s:20:\"------ Input formats\";s:13:\"navigation:37\";s:25:\"------ Logging and alerts\";s:14:\"navigation:100\";s:25:\"-------- Database logging\";s:14:\"navigation:245\";s:17:\"------ Nice Menus\";s:13:\"navigation:40\";s:18:\"------ Performance\";s:14:\"navigation:120\";s:22:\"------ Search settings\";s:14:\"navigation:539\";s:17:\"------ Simplenews\";s:14:\"navigation:542\";s:16:\"-------- General\";s:14:\"navigation:543\";s:19:\"-------- Newsletter\";s:14:\"navigation:547\";s:21:\"-------- Subscription\";s:14:\"navigation:545\";s:18:\"-------- Send mail\";s:13:\"navigation:46\";s:23:\"------ Site information\";s:13:\"navigation:47\";s:23:\"------ Site maintenance\";s:14:\"navigation:246\";s:15:\"------ Site map\";s:13:\"navigation:20\";s:20:\"---- User management\";s:13:\"navigation:22\";s:19:\"------ Access rules\";s:13:\"navigation:41\";s:18:\"------ Permissions\";s:13:\"navigation:45\";s:12:\"------ Roles\";s:13:\"navigation:50\";s:20:\"------ User settings\";s:13:\"navigation:51\";s:12:\"------ Users\";s:13:\"navigation:16\";s:12:\"---- Reports\";s:13:\"navigation:93\";s:25:\"------ Recent log entries\";s:13:\"navigation:96\";s:33:\"------ Top \'access denied\' errors\";s:13:\"navigation:97\";s:34:\"------ Top \'page not found\' errors\";s:14:\"navigation:121\";s:25:\"------ Top search phrases\";s:14:\"navigation:105\";s:24:\"------ Available updates\";s:13:\"navigation:48\";s:20:\"------ Status report\";s:13:\"navigation:15\";s:9:\"---- Help\";s:12:\"navigation:4\";s:10:\"-- Log out\";s:15:\"primary-links:0\";s:15:\"<Primary links>\";s:17:\"menu-right-menu:0\";s:12:\"<Right Menu>\";s:19:\"menu-right-menu:496\";s:28:\"-- Financial Calculator Tool\";s:19:\"menu-right-menu:497\";s:21:\"-- News Story Library\";s:19:\"menu-right-menu:498\";s:14:\"-- Latest News\";s:19:\"menu-right-menu:499\";s:25:\"-- SREC Management Portal\";s:17:\"secondary-links:0\";s:17:\"<Secondary links>\";}s:12:\"#description\";s:156:\"The maximum depth for an item and all its children is fixed at 9. Some menu items may not be available as parents if selecting them would exceed this limit.\";s:11:\"#attributes\";a:1:{s:5:\"class\";s:17:\"menu-title-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:1:\"0\";s:12:\"#description\";s:107:\"Optional. In the menu, the heavier items will sink and the lighter items will be positioned nearer the top.\";}}s:7:\"#submit\";a:1:{i:0;s:21:\"menu_node_form_submit\";}s:4:\"path\";a:10:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:17:\"URL path settings\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:0;s:7:\"#access\";b:1;s:7:\"#weight\";i:30;s:4:\"path\";a:6:{s:5:\"#type\";s:9:\"textfield\";s:14:\"#default_value\";s:30:\"special-offer-pv-system-owners\";s:10:\"#maxlength\";i:128;s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:12:\"#description\";s:207:\"Optionally specify an alternative URL by which this node 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\";s:1:\"6\";}s:22:\"pathauto_perform_alias\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:15:\"Automatic alias\";s:14:\"#default_value\";b:1;s:12:\"#description\";s:238:\"An alias will be generated for you. If you wish to create your own alias below, uncheck this option. To control the format of the generated aliases, see the <a href=\"/~uspvinc/main2/admin/build/path/pathauto\">automated alias settings</a>.\";s:7:\"#weight\";i:-1;}s:9:\"old_alias\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:30:\"special-offer-pv-system-owners\";}}s:11:\"#pre_render\";a:1:{i:0;s:27:\"content_alter_extra_weights\";}s:21:\"#content_extra_fields\";a:6:{s:5:\"title\";a:3:{s:5:\"label\";s:5:\"Title\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:-5;}s:10:\"body_field\";a:4:{s:5:\"label\";s:4:\"Body\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:0;s:4:\"view\";s:4:\"body\";}s:20:\"revision_information\";a:3:{s:5:\"label\";s:20:\"Revision information\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:20;}s:16:\"comment_settings\";a:3:{s:5:\"label\";s:16:\"Comment settings\";s:11:\"description\";s:20:\"Comment module form.\";s:6:\"weight\";i:30;}s:4:\"menu\";a:3:{s:5:\"label\";s:13:\"Menu settings\";s:11:\"description\";s:17:\"Menu module form.\";s:6:\"weight\";i:-2;}s:4:\"path\";a:3:{s:5:\"label\";s:13:\"Path settings\";s:11:\"description\";s:17:\"Path module form.\";s:6:\"weight\";i:30;}}s:12:\"#cache_token\";s:32:\"ea05954e6208c2bed552f97e30d1dad3\";}',1285803385,1285781785,'',1),('form_form-64d16783e98b435270cb52a49f07b521','a:40:{s:3:\"#id\";s:9:\"node-form\";s:3:\"nid\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:1:\"6\";}s:3:\"vid\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:1:\"6\";}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:\"1265202590\";}s:4:\"type\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:4:\"page\";}s:8:\"language\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:0:\"\";}s:7:\"changed\";a:2:{s:5:\"#type\";s:6:\"hidden\";s:14:\"#default_value\";s:10:\"1285703305\";}s:5:\"title\";a:6:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:5:\"Title\";s:9:\"#required\";b:1;s:14:\"#default_value\";s:34:\"Special Offer for PV System Owners\";s:10:\"#maxlength\";i:255;s:7:\"#weight\";i:-5;}s:10:\"body_field\";a:7:{s:12:\"#after_build\";a:2:{i:0;s:14:\"node_teaser_js\";i:1;s:26:\"node_teaser_include_verify\";}s:7:\"#prefix\";s:32:\"<div class=\"body-field-wrapper\">\";s:7:\"#suffix\";s:6:\"</div>\";s:9:\"teaser_js\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:5:\"#rows\";i:10;s:7:\"#teaser\";s:9:\"edit-body\";s:16:\"#teaser_checkbox\";s:19:\"edit-teaser-include\";s:9:\"#disabled\";b:1;}s:14:\"teaser_include\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:25:\"Show summary in full view\";s:14:\"#default_value\";b:1;s:7:\"#prefix\";s:29:\"<div class=\"teaser-checkbox\">\";s:7:\"#suffix\";s:6:\"</div>\";}s:4:\"body\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:4:\"Body\";s:14:\"#default_value\";s:234:\"<p>\r\nSign-up for USPV\'s REC Management Program today. No up-front or out-of-pocket costs. Don\'t miss out on this opportunity to participate in the Renewable Energy Credit markets and earn hundreds or even thousands of dollars!\r\n</p>\r\n\";s:5:\"#rows\";i:20;s:9:\"#required\";b:0;}s:6:\"format\";a:9:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:12:\"Input format\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:7:\"#weight\";N;s:17:\"#element_validate\";a:1:{i:0;s:20:\"filter_form_validate\";}i:1;a:7:{s:5:\"#type\";s:5:\"radio\";s:6:\"#title\";s:13:\"Filtered HTML\";s:14:\"#default_value\";s:1:\"2\";s:13:\"#return_value\";s:1:\"1\";s:8:\"#parents\";a:1:{i:0;s:6:\"format\";}s:12:\"#description\";s:306:\"<ul class=\"tips\"><li>Web page addresses and e-mail addresses turn into links automatically.</li><li>Allowed HTML tags: &lt;a&gt; &lt;em&gt; &lt;strong&gt; &lt;cite&gt; &lt;code&gt; &lt;ul&gt; &lt;ol&gt; &lt;li&gt; &lt;dl&gt; &lt;dt&gt; &lt;dd&gt;</li><li>Lines and paragraphs break automatically.</li></ul>\";s:3:\"#id\";s:13:\"edit-format-1\";}i:2;a:7:{s:5:\"#type\";s:5:\"radio\";s:6:\"#title\";s:9:\"Full HTML\";s:14:\"#default_value\";s:1:\"2\";s:13:\"#return_value\";s:1:\"2\";s:8:\"#parents\";a:1:{i:0;s:6:\"format\";}s:12:\"#description\";s:151:\"<ul class=\"tips\"><li>Web page addresses and e-mail addresses turn into links automatically.</li><li>Lines and paragraphs break automatically.</li></ul>\";s:3:\"#id\";s:13:\"edit-format-2\";}i:3;a:1:{s:6:\"#value\";s:90:\"<p><a href=\"/~uspvinc/main2/filter/tips\">More information about formatting options</a></p>\";}}}s:5:\"#node\";O:8:\"stdClass\":33:{s:3:\"nid\";s:1:\"6\";s:4:\"type\";s:4:\"page\";s:8:\"language\";s:0:\"\";s:3:\"uid\";s:1:\"1\";s:6:\"status\";s:1:\"1\";s:7:\"created\";s:10:\"1265202590\";s:7:\"changed\";s:10:\"1285703305\";s:7:\"comment\";s:1:\"0\";s:7:\"promote\";s:1:\"0\";s:8:\"moderate\";s:1:\"0\";s:6:\"sticky\";s:1:\"0\";s:4:\"tnid\";s:1:\"0\";s:9:\"translate\";s:1:\"0\";s:3:\"vid\";s:1:\"6\";s:12:\"revision_uid\";s:1:\"1\";s:5:\"title\";s:34:\"Special Offer for PV System Owners\";s:4:\"body\";s:234:\"<p>\r\nSign-up for USPV\'s REC Management Program today. No up-front or out-of-pocket costs. Don\'t miss out on this opportunity to participate in the Renewable Energy Credit markets and earn hundreds or even thousands of dollars!\r\n</p>\r\n\";s:6:\"teaser\";s:234:\"<p>\r\nSign-up for USPV\'s REC Management Program today. No up-front or out-of-pocket costs. Don\'t miss out on this opportunity to participate in the Renewable Energy Credit markets and earn hundreds or even thousands of dollars!\r\n</p>\r\n\";s:3:\"log\";N;s:18:\"revision_timestamp\";s:10:\"1285703305\";s:6:\"format\";s:1:\"2\";s:4:\"name\";s:5:\"admin\";s:7:\"picture\";s:0:\"\";s:4:\"data\";s:6:\"a:0:{}\";s:4:\"path\";s:30:\"special-offer-pv-system-owners\";s:22:\"last_comment_timestamp\";s:10:\"1265202590\";s:17:\"last_comment_name\";N;s:13:\"comment_count\";s:1:\"0\";s:8:\"taxonomy\";a:0:{}s:4:\"date\";s:25:\"2010-02-03 21:09:50 +0800\";s:8:\"revision\";b:0;s:4:\"menu\";a:48:{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:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:3:\"fit\";s:1:\"2\";s:12:\"number_parts\";s:1:\"2\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:14:\"special offers\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:4:\"type\";s:1:\"4\";s:14:\"block_callback\";s:0:\"\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"0\";s:4:\"file\";s:0:\"\";s:9:\"menu_name\";s:14:\"menu-main-menu\";s:4:\"mlid\";s:3:\"286\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/6\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:14:\"special offers\";s:7:\"options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:14:\"special offers\";}}s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"286\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:4:\"href\";s:6:\"node/6\";s:6:\"access\";b:1;s:17:\"localized_options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:14:\"special offers\";}}s:18:\"parent_depth_limit\";i:8;}s:22:\"pathauto_perform_alias\";b:1;}s:20:\"revision_information\";a:7:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:20:\"Revision information\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:7:\"#weight\";i:20;s:8:\"revision\";a:4:{s:7:\"#access\";b:1;s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:19:\"Create new revision\";s:14:\"#default_value\";b:0;}s:3:\"log\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:11:\"Log message\";s:14:\"#default_value\";s:0:\"\";s:5:\"#rows\";i:2;s:12:\"#description\";s:104:\"An explanation of the additions or updates being made to help other authors understand your motivations.\";}}s:6:\"author\";a:8:{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:7:\"#weight\";i:20;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:35:\"Leave blank for <em>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:91:\"Format: <em>2010-02-03 21:09:50 +0800</em>. Leave blank to use the time of form submission.\";s:14:\"#default_value\";s:25:\"2010-02-03 21:09:50 +0800\";}}s:7:\"options\";a:9:{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:7:\"#weight\";i:25;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:\"buttons\";a:3:{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:16:\"node_form_submit\";}}s:7:\"preview\";a:4:{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:6:\"#theme\";a:2:{i:0;s:14:\"page_node_form\";i:1;s:9:\"node_form\";}s:11:\"#parameters\";a:3:{i:0;s:14:\"page_node_form\";i:1;a:3:{s:7:\"storage\";N;s:9:\"submitted\";b:0;s:4:\"post\";a:0:{}}i:2;r:83;}s:9:\"#build_id\";s:37:\"form-64d16783e98b435270cb52a49f07b521\";s:5:\"#type\";s:4:\"form\";s:11:\"#programmed\";b:0;s:13:\"form_build_id\";a:4:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:37:\"form-64d16783e98b435270cb52a49f07b521\";s:3:\"#id\";s:37:\"form-64d16783e98b435270cb52a49f07b521\";s:5:\"#name\";s:13:\"form_build_id\";}s:6:\"#token\";s:14:\"page_node_form\";s:10:\"form_token\";a:3:{s:3:\"#id\";s:30:\"edit-page-node-form-form-token\";s:5:\"#type\";s:5:\"token\";s:14:\"#default_value\";s:32:\"69ee9cfa6b6366390575effcb3429c15\";}s:7:\"form_id\";a:3:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:14:\"page_node_form\";s:3:\"#id\";s:19:\"edit-page-node-form\";}s:12:\"#description\";N;s:11:\"#attributes\";a:0:{}s:9:\"#required\";b:0;s:5:\"#tree\";b:0;s:8:\"#parents\";a:0:{}s:7:\"#method\";s:4:\"post\";s:7:\"#action\";s:27:\"/~uspvinc/main2/node/6/edit\";s:16:\"comment_settings\";a:7:{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:7:\"#weight\";i:30;s:7:\"comment\";a:4:{s:5:\"#type\";s:6:\"radios\";s:8:\"#parents\";a:1:{i:0;s:7:\"comment\";}s:14:\"#default_value\";s:1:\"0\";s:8:\"#options\";a:3:{i:0;s:8:\"Disabled\";i:1;s:9:\"Read only\";i:2;s:10:\"Read/Write\";}}}s:6:\"#cache\";b:1;s:4:\"menu\";a:21:{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:5:\"#tree\";b:1;s:7:\"#weight\";i:-2;s:11:\"#attributes\";a:1:{s:5:\"class\";s:14:\"menu-item-form\";}s:6:\"delete\";a:2:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:22:\"Delete this menu item.\";}s:4:\"mlid\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:3:\"286\";}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\";s:1:\"1\";}s:7:\"options\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:14:\"special offers\";}}}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:5:\"#item\";a:48:{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:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:3:\"fit\";s:1:\"2\";s:12:\"number_parts\";s:1:\"2\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:14:\"special offers\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:4:\"type\";s:1:\"4\";s:14:\"block_callback\";s:0:\"\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"0\";s:4:\"file\";s:0:\"\";s:9:\"menu_name\";s:14:\"menu-main-menu\";s:4:\"mlid\";s:3:\"286\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/6\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:14:\"special offers\";s:7:\"options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:14:\"special offers\";}}s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"286\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:4:\"href\";s:6:\"node/6\";s:6:\"access\";b:1;s:17:\"localized_options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:14:\"special offers\";}}s:18:\"parent_depth_limit\";i:8;}s:10:\"link_title\";a:5:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:15:\"Menu link title\";s:14:\"#default_value\";s:14:\"special offers\";s:12:\"#description\";s:133:\"The link text corresponding to this item that should appear in the menu. Leave blank if you do not wish to add this post to the menu.\";s:9:\"#required\";b:0;}s:6:\"parent\";a:6:{s:5:\"#type\";s:6:\"select\";s:6:\"#title\";s:11:\"Parent item\";s:14:\"#default_value\";s:16:\"menu-main-menu:0\";s:8:\"#options\";a:95:{s:16:\"menu-main-menu:0\";s:11:\"<Main Menu>\";s:18:\"menu-main-menu:283\";s:8:\"-- about\";s:18:\"menu-main-menu:284\";s:12:\"-- resources\";s:18:\"menu-main-menu:285\";s:11:\"-- services\";s:12:\"navigation:0\";s:12:\"<Navigation>\";s:12:\"navigation:9\";s:26:\"-- Compose tips (disabled)\";s:14:\"navigation:461\";s:29:\"-- Image galleries (disabled)\";s:13:\"navigation:21\";s:13:\"-- My account\";s:14:\"navigation:114\";s:20:\"-- Search (disabled)\";s:14:\"navigation:244\";s:22:\"-- Site map (disabled)\";s:13:\"navigation:11\";s:17:\"-- Create content\";s:14:\"navigation:476\";s:11:\"---- Banner\";s:14:\"navigation:441\";s:10:\"---- Image\";s:14:\"navigation:289\";s:21:\"---- Newsletter issue\";s:14:\"navigation:106\";s:9:\"---- Page\";s:14:\"navigation:388\";s:10:\"---- Panel\";s:14:\"navigation:107\";s:10:\"---- Story\";s:12:\"navigation:2\";s:13:\"-- Administer\";s:13:\"navigation:10\";s:23:\"---- Content management\";s:13:\"navigation:27\";s:15:\"------ Comments\";s:13:\"navigation:28\";s:14:\"------ Content\";s:13:\"navigation:29\";s:20:\"------ Content types\";s:14:\"navigation:462\";s:22:\"------ Image galleries\";s:14:\"navigation:463\";s:19:\"------ Image import\";s:14:\"navigation:538\";s:18:\"------ Newsletters\";s:14:\"navigation:546\";s:20:\"-------- Sent issues\";s:14:\"navigation:541\";s:21:\"-------- Draft issues\";s:14:\"navigation:544\";s:20:\"-------- Newsletters\";s:14:\"navigation:548\";s:22:\"-------- Subscriptions\";s:13:\"navigation:42\";s:20:\"------ Post settings\";s:13:\"navigation:43\";s:21:\"------ RSS publishing\";s:13:\"navigation:94\";s:15:\"------ Taxonomy\";s:13:\"navigation:17\";s:18:\"---- Site building\";s:13:\"navigation:25\";s:13:\"------ Blocks\";s:14:\"navigation:424\";s:20:\"------ Bulk Exporter\";s:13:\"navigation:38\";s:12:\"------ Menus\";s:14:\"navigation:282\";s:18:\"-------- Main Menu\";s:13:\"navigation:89\";s:19:\"-------- Navigation\";s:13:\"navigation:90\";s:22:\"-------- Primary links\";s:14:\"navigation:495\";s:19:\"-------- Right Menu\";s:13:\"navigation:91\";s:24:\"-------- Secondary links\";s:14:\"navigation:387\";s:18:\"------ Mini panels\";s:13:\"navigation:39\";s:14:\"------ Modules\";s:14:\"navigation:412\";s:12:\"------ Pages\";s:14:\"navigation:360\";s:13:\"------ Panels\";s:13:\"navigation:49\";s:13:\"------ Themes\";s:14:\"navigation:335\";s:15:\"------ Triggers\";s:14:\"navigation:501\";s:18:\"------ URL aliases\";s:14:\"navigation:257\";s:12:\"------ Views\";s:13:\"navigation:18\";s:23:\"---- Site configuration\";s:13:\"navigation:23\";s:14:\"------ Actions\";s:14:\"navigation:119\";s:26:\"------ Administration menu\";s:13:\"navigation:24\";s:27:\"------ Administration theme\";s:13:\"navigation:26\";s:17:\"------ Clean URLs\";s:13:\"navigation:30\";s:20:\"------ Date and time\";s:13:\"navigation:33\";s:22:\"------ Error reporting\";s:13:\"navigation:34\";s:18:\"------ File system\";s:13:\"navigation:35\";s:20:\"------ Image toolkit\";s:14:\"navigation:442\";s:13:\"------ Images\";s:13:\"navigation:36\";s:20:\"------ Input formats\";s:13:\"navigation:37\";s:25:\"------ Logging and alerts\";s:14:\"navigation:100\";s:25:\"-------- Database logging\";s:14:\"navigation:245\";s:17:\"------ Nice Menus\";s:13:\"navigation:40\";s:18:\"------ Performance\";s:14:\"navigation:120\";s:22:\"------ Search settings\";s:14:\"navigation:539\";s:17:\"------ Simplenews\";s:14:\"navigation:542\";s:16:\"-------- General\";s:14:\"navigation:543\";s:19:\"-------- Newsletter\";s:14:\"navigation:547\";s:21:\"-------- Subscription\";s:14:\"navigation:545\";s:18:\"-------- Send mail\";s:13:\"navigation:46\";s:23:\"------ Site information\";s:13:\"navigation:47\";s:23:\"------ Site maintenance\";s:14:\"navigation:246\";s:15:\"------ Site map\";s:13:\"navigation:20\";s:20:\"---- User management\";s:13:\"navigation:22\";s:19:\"------ Access rules\";s:13:\"navigation:41\";s:18:\"------ Permissions\";s:13:\"navigation:45\";s:12:\"------ Roles\";s:13:\"navigation:50\";s:20:\"------ User settings\";s:13:\"navigation:51\";s:12:\"------ Users\";s:13:\"navigation:16\";s:12:\"---- Reports\";s:13:\"navigation:93\";s:25:\"------ Recent log entries\";s:13:\"navigation:96\";s:33:\"------ Top \'access denied\' errors\";s:13:\"navigation:97\";s:34:\"------ Top \'page not found\' errors\";s:14:\"navigation:121\";s:25:\"------ Top search phrases\";s:14:\"navigation:105\";s:24:\"------ Available updates\";s:13:\"navigation:48\";s:20:\"------ Status report\";s:13:\"navigation:15\";s:9:\"---- Help\";s:12:\"navigation:4\";s:10:\"-- Log out\";s:15:\"primary-links:0\";s:15:\"<Primary links>\";s:17:\"menu-right-menu:0\";s:12:\"<Right Menu>\";s:19:\"menu-right-menu:496\";s:28:\"-- Financial Calculator Tool\";s:19:\"menu-right-menu:497\";s:21:\"-- News Story Library\";s:19:\"menu-right-menu:498\";s:14:\"-- Latest News\";s:19:\"menu-right-menu:499\";s:25:\"-- SREC Management Portal\";s:17:\"secondary-links:0\";s:17:\"<Secondary links>\";}s:12:\"#description\";s:156:\"The maximum depth for an item and all its children is fixed at 9. Some menu items may not be available as parents if selecting them would exceed this limit.\";s:11:\"#attributes\";a:1:{s:5:\"class\";s:17:\"menu-title-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:1:\"0\";s:12:\"#description\";s:107:\"Optional. In the menu, the heavier items will sink and the lighter items will be positioned nearer the top.\";}}s:7:\"#submit\";a:1:{i:0;s:21:\"menu_node_form_submit\";}s:4:\"path\";a:10:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:17:\"URL path settings\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:0;s:7:\"#access\";b:1;s:7:\"#weight\";i:30;s:4:\"path\";a:6:{s:5:\"#type\";s:9:\"textfield\";s:14:\"#default_value\";s:30:\"special-offer-pv-system-owners\";s:10:\"#maxlength\";i:128;s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:12:\"#description\";s:207:\"Optionally specify an alternative URL by which this node 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\";s:1:\"6\";}s:22:\"pathauto_perform_alias\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:15:\"Automatic alias\";s:14:\"#default_value\";b:1;s:12:\"#description\";s:238:\"An alias will be generated for you. If you wish to create your own alias below, uncheck this option. To control the format of the generated aliases, see the <a href=\"/~uspvinc/main2/admin/build/path/pathauto\">automated alias settings</a>.\";s:7:\"#weight\";i:-1;}s:9:\"old_alias\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:30:\"special-offer-pv-system-owners\";}}s:11:\"#pre_render\";a:1:{i:0;s:27:\"content_alter_extra_weights\";}s:21:\"#content_extra_fields\";a:6:{s:5:\"title\";a:3:{s:5:\"label\";s:5:\"Title\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:-5;}s:10:\"body_field\";a:4:{s:5:\"label\";s:4:\"Body\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:0;s:4:\"view\";s:4:\"body\";}s:20:\"revision_information\";a:3:{s:5:\"label\";s:20:\"Revision information\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:20;}s:16:\"comment_settings\";a:3:{s:5:\"label\";s:16:\"Comment settings\";s:11:\"description\";s:20:\"Comment module form.\";s:6:\"weight\";i:30;}s:4:\"menu\";a:3:{s:5:\"label\";s:13:\"Menu settings\";s:11:\"description\";s:17:\"Menu module form.\";s:6:\"weight\";i:-2;}s:4:\"path\";a:3:{s:5:\"label\";s:13:\"Path settings\";s:11:\"description\";s:17:\"Path module form.\";s:6:\"weight\";i:30;}}s:12:\"#cache_token\";s:32:\"ea05954e6208c2bed552f97e30d1dad3\";}',1285803395,1285781795,'',1),('form_form-ef204368f920e357cf6d2f5fd5db87ce','a:40:{s:3:\"#id\";s:9:\"node-form\";s:3:\"nid\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:1:\"6\";}s:3:\"vid\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:1:\"6\";}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:\"1265202590\";}s:4:\"type\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:4:\"page\";}s:8:\"language\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:0:\"\";}s:7:\"changed\";a:2:{s:5:\"#type\";s:6:\"hidden\";s:14:\"#default_value\";s:10:\"1285703305\";}s:5:\"title\";a:6:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:5:\"Title\";s:9:\"#required\";b:1;s:14:\"#default_value\";s:34:\"Special Offer for PV System Owners\";s:10:\"#maxlength\";i:255;s:7:\"#weight\";i:-5;}s:10:\"body_field\";a:7:{s:12:\"#after_build\";a:2:{i:0;s:14:\"node_teaser_js\";i:1;s:26:\"node_teaser_include_verify\";}s:7:\"#prefix\";s:32:\"<div class=\"body-field-wrapper\">\";s:7:\"#suffix\";s:6:\"</div>\";s:9:\"teaser_js\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:5:\"#rows\";i:10;s:7:\"#teaser\";s:9:\"edit-body\";s:16:\"#teaser_checkbox\";s:19:\"edit-teaser-include\";s:9:\"#disabled\";b:1;}s:14:\"teaser_include\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:25:\"Show summary in full view\";s:14:\"#default_value\";b:1;s:7:\"#prefix\";s:29:\"<div class=\"teaser-checkbox\">\";s:7:\"#suffix\";s:6:\"</div>\";}s:4:\"body\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:4:\"Body\";s:14:\"#default_value\";s:234:\"<p>\r\nSign-up for USPV\'s REC Management Program today. No up-front or out-of-pocket costs. Don\'t miss out on this opportunity to participate in the Renewable Energy Credit markets and earn hundreds or even thousands of dollars!\r\n</p>\r\n\";s:5:\"#rows\";i:20;s:9:\"#required\";b:0;}s:6:\"format\";a:9:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:12:\"Input format\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:7:\"#weight\";N;s:17:\"#element_validate\";a:1:{i:0;s:20:\"filter_form_validate\";}i:1;a:7:{s:5:\"#type\";s:5:\"radio\";s:6:\"#title\";s:13:\"Filtered HTML\";s:14:\"#default_value\";s:1:\"2\";s:13:\"#return_value\";s:1:\"1\";s:8:\"#parents\";a:1:{i:0;s:6:\"format\";}s:12:\"#description\";s:306:\"<ul class=\"tips\"><li>Web page addresses and e-mail addresses turn into links automatically.</li><li>Allowed HTML tags: &lt;a&gt; &lt;em&gt; &lt;strong&gt; &lt;cite&gt; &lt;code&gt; &lt;ul&gt; &lt;ol&gt; &lt;li&gt; &lt;dl&gt; &lt;dt&gt; &lt;dd&gt;</li><li>Lines and paragraphs break automatically.</li></ul>\";s:3:\"#id\";s:13:\"edit-format-1\";}i:2;a:7:{s:5:\"#type\";s:5:\"radio\";s:6:\"#title\";s:9:\"Full HTML\";s:14:\"#default_value\";s:1:\"2\";s:13:\"#return_value\";s:1:\"2\";s:8:\"#parents\";a:1:{i:0;s:6:\"format\";}s:12:\"#description\";s:151:\"<ul class=\"tips\"><li>Web page addresses and e-mail addresses turn into links automatically.</li><li>Lines and paragraphs break automatically.</li></ul>\";s:3:\"#id\";s:13:\"edit-format-2\";}i:3;a:1:{s:6:\"#value\";s:90:\"<p><a href=\"/~uspvinc/main2/filter/tips\">More information about formatting options</a></p>\";}}}s:5:\"#node\";O:8:\"stdClass\":33:{s:3:\"nid\";s:1:\"6\";s:4:\"type\";s:4:\"page\";s:8:\"language\";s:0:\"\";s:3:\"uid\";s:1:\"1\";s:6:\"status\";s:1:\"1\";s:7:\"created\";s:10:\"1265202590\";s:7:\"changed\";s:10:\"1285703305\";s:7:\"comment\";s:1:\"0\";s:7:\"promote\";s:1:\"0\";s:8:\"moderate\";s:1:\"0\";s:6:\"sticky\";s:1:\"0\";s:4:\"tnid\";s:1:\"0\";s:9:\"translate\";s:1:\"0\";s:3:\"vid\";s:1:\"6\";s:12:\"revision_uid\";s:1:\"1\";s:5:\"title\";s:34:\"Special Offer for PV System Owners\";s:4:\"body\";s:234:\"<p>\r\nSign-up for USPV\'s REC Management Program today. No up-front or out-of-pocket costs. Don\'t miss out on this opportunity to participate in the Renewable Energy Credit markets and earn hundreds or even thousands of dollars!\r\n</p>\r\n\";s:6:\"teaser\";s:234:\"<p>\r\nSign-up for USPV\'s REC Management Program today. No up-front or out-of-pocket costs. Don\'t miss out on this opportunity to participate in the Renewable Energy Credit markets and earn hundreds or even thousands of dollars!\r\n</p>\r\n\";s:3:\"log\";N;s:18:\"revision_timestamp\";s:10:\"1285703305\";s:6:\"format\";s:1:\"2\";s:4:\"name\";s:5:\"admin\";s:7:\"picture\";s:0:\"\";s:4:\"data\";s:6:\"a:0:{}\";s:4:\"path\";s:30:\"special-offer-pv-system-owners\";s:22:\"last_comment_timestamp\";s:10:\"1265202590\";s:17:\"last_comment_name\";N;s:13:\"comment_count\";s:1:\"0\";s:8:\"taxonomy\";a:0:{}s:4:\"date\";s:25:\"2010-02-03 21:09:50 +0800\";s:8:\"revision\";b:0;s:4:\"menu\";a:48:{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:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:3:\"fit\";s:1:\"2\";s:12:\"number_parts\";s:1:\"2\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:14:\"special offers\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:4:\"type\";s:1:\"4\";s:14:\"block_callback\";s:0:\"\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"0\";s:4:\"file\";s:0:\"\";s:9:\"menu_name\";s:14:\"menu-main-menu\";s:4:\"mlid\";s:3:\"286\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/6\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:14:\"special offers\";s:7:\"options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:14:\"special offers\";}}s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"286\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:4:\"href\";s:6:\"node/6\";s:6:\"access\";b:1;s:17:\"localized_options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:14:\"special offers\";}}s:18:\"parent_depth_limit\";i:8;}s:22:\"pathauto_perform_alias\";b:1;}s:20:\"revision_information\";a:7:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:20:\"Revision information\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:7:\"#weight\";i:20;s:8:\"revision\";a:4:{s:7:\"#access\";b:1;s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:19:\"Create new revision\";s:14:\"#default_value\";b:0;}s:3:\"log\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:11:\"Log message\";s:14:\"#default_value\";s:0:\"\";s:5:\"#rows\";i:2;s:12:\"#description\";s:104:\"An explanation of the additions or updates being made to help other authors understand your motivations.\";}}s:6:\"author\";a:8:{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:7:\"#weight\";i:20;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:35:\"Leave blank for <em>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:91:\"Format: <em>2010-02-03 21:09:50 +0800</em>. Leave blank to use the time of form submission.\";s:14:\"#default_value\";s:25:\"2010-02-03 21:09:50 +0800\";}}s:7:\"options\";a:9:{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:7:\"#weight\";i:25;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:\"buttons\";a:3:{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:16:\"node_form_submit\";}}s:7:\"preview\";a:4:{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:6:\"#theme\";a:2:{i:0;s:14:\"page_node_form\";i:1;s:9:\"node_form\";}s:11:\"#parameters\";a:3:{i:0;s:14:\"page_node_form\";i:1;a:3:{s:7:\"storage\";N;s:9:\"submitted\";b:0;s:4:\"post\";a:0:{}}i:2;r:83;}s:9:\"#build_id\";s:37:\"form-ef204368f920e357cf6d2f5fd5db87ce\";s:5:\"#type\";s:4:\"form\";s:11:\"#programmed\";b:0;s:13:\"form_build_id\";a:4:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:37:\"form-ef204368f920e357cf6d2f5fd5db87ce\";s:3:\"#id\";s:37:\"form-ef204368f920e357cf6d2f5fd5db87ce\";s:5:\"#name\";s:13:\"form_build_id\";}s:6:\"#token\";s:14:\"page_node_form\";s:10:\"form_token\";a:3:{s:3:\"#id\";s:30:\"edit-page-node-form-form-token\";s:5:\"#type\";s:5:\"token\";s:14:\"#default_value\";s:32:\"69ee9cfa6b6366390575effcb3429c15\";}s:7:\"form_id\";a:3:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:14:\"page_node_form\";s:3:\"#id\";s:19:\"edit-page-node-form\";}s:12:\"#description\";N;s:11:\"#attributes\";a:0:{}s:9:\"#required\";b:0;s:5:\"#tree\";b:0;s:8:\"#parents\";a:0:{}s:7:\"#method\";s:4:\"post\";s:7:\"#action\";s:27:\"/~uspvinc/main2/node/6/edit\";s:16:\"comment_settings\";a:7:{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:7:\"#weight\";i:30;s:7:\"comment\";a:4:{s:5:\"#type\";s:6:\"radios\";s:8:\"#parents\";a:1:{i:0;s:7:\"comment\";}s:14:\"#default_value\";s:1:\"0\";s:8:\"#options\";a:3:{i:0;s:8:\"Disabled\";i:1;s:9:\"Read only\";i:2;s:10:\"Read/Write\";}}}s:6:\"#cache\";b:1;s:4:\"menu\";a:21:{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:5:\"#tree\";b:1;s:7:\"#weight\";i:-2;s:11:\"#attributes\";a:1:{s:5:\"class\";s:14:\"menu-item-form\";}s:6:\"delete\";a:2:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:22:\"Delete this menu item.\";}s:4:\"mlid\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:3:\"286\";}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\";s:1:\"1\";}s:7:\"options\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:14:\"special offers\";}}}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:5:\"#item\";a:48:{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:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:3:\"fit\";s:1:\"2\";s:12:\"number_parts\";s:1:\"2\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:14:\"special offers\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:4:\"type\";s:1:\"4\";s:14:\"block_callback\";s:0:\"\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"0\";s:4:\"file\";s:0:\"\";s:9:\"menu_name\";s:14:\"menu-main-menu\";s:4:\"mlid\";s:3:\"286\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/6\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:14:\"special offers\";s:7:\"options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:14:\"special offers\";}}s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"286\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:4:\"href\";s:6:\"node/6\";s:6:\"access\";b:1;s:17:\"localized_options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:14:\"special offers\";}}s:18:\"parent_depth_limit\";i:8;}s:10:\"link_title\";a:5:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:15:\"Menu link title\";s:14:\"#default_value\";s:14:\"special offers\";s:12:\"#description\";s:133:\"The link text corresponding to this item that should appear in the menu. Leave blank if you do not wish to add this post to the menu.\";s:9:\"#required\";b:0;}s:6:\"parent\";a:6:{s:5:\"#type\";s:6:\"select\";s:6:\"#title\";s:11:\"Parent item\";s:14:\"#default_value\";s:16:\"menu-main-menu:0\";s:8:\"#options\";a:95:{s:16:\"menu-main-menu:0\";s:11:\"<Main Menu>\";s:18:\"menu-main-menu:283\";s:8:\"-- about\";s:18:\"menu-main-menu:284\";s:12:\"-- resources\";s:18:\"menu-main-menu:285\";s:11:\"-- services\";s:12:\"navigation:0\";s:12:\"<Navigation>\";s:12:\"navigation:9\";s:26:\"-- Compose tips (disabled)\";s:14:\"navigation:461\";s:29:\"-- Image galleries (disabled)\";s:13:\"navigation:21\";s:13:\"-- My account\";s:14:\"navigation:114\";s:20:\"-- Search (disabled)\";s:14:\"navigation:244\";s:22:\"-- Site map (disabled)\";s:13:\"navigation:11\";s:17:\"-- Create content\";s:14:\"navigation:476\";s:11:\"---- Banner\";s:14:\"navigation:441\";s:10:\"---- Image\";s:14:\"navigation:289\";s:21:\"---- Newsletter issue\";s:14:\"navigation:106\";s:9:\"---- Page\";s:14:\"navigation:388\";s:10:\"---- Panel\";s:14:\"navigation:107\";s:10:\"---- Story\";s:12:\"navigation:2\";s:13:\"-- Administer\";s:13:\"navigation:10\";s:23:\"---- Content management\";s:13:\"navigation:27\";s:15:\"------ Comments\";s:13:\"navigation:28\";s:14:\"------ Content\";s:13:\"navigation:29\";s:20:\"------ Content types\";s:14:\"navigation:462\";s:22:\"------ Image galleries\";s:14:\"navigation:463\";s:19:\"------ Image import\";s:14:\"navigation:538\";s:18:\"------ Newsletters\";s:14:\"navigation:546\";s:20:\"-------- Sent issues\";s:14:\"navigation:541\";s:21:\"-------- Draft issues\";s:14:\"navigation:544\";s:20:\"-------- Newsletters\";s:14:\"navigation:548\";s:22:\"-------- Subscriptions\";s:13:\"navigation:42\";s:20:\"------ Post settings\";s:13:\"navigation:43\";s:21:\"------ RSS publishing\";s:13:\"navigation:94\";s:15:\"------ Taxonomy\";s:13:\"navigation:17\";s:18:\"---- Site building\";s:13:\"navigation:25\";s:13:\"------ Blocks\";s:14:\"navigation:424\";s:20:\"------ Bulk Exporter\";s:13:\"navigation:38\";s:12:\"------ Menus\";s:14:\"navigation:282\";s:18:\"-------- Main Menu\";s:13:\"navigation:89\";s:19:\"-------- Navigation\";s:13:\"navigation:90\";s:22:\"-------- Primary links\";s:14:\"navigation:495\";s:19:\"-------- Right Menu\";s:13:\"navigation:91\";s:24:\"-------- Secondary links\";s:14:\"navigation:387\";s:18:\"------ Mini panels\";s:13:\"navigation:39\";s:14:\"------ Modules\";s:14:\"navigation:412\";s:12:\"------ Pages\";s:14:\"navigation:360\";s:13:\"------ Panels\";s:13:\"navigation:49\";s:13:\"------ Themes\";s:14:\"navigation:335\";s:15:\"------ Triggers\";s:14:\"navigation:501\";s:18:\"------ URL aliases\";s:14:\"navigation:257\";s:12:\"------ Views\";s:13:\"navigation:18\";s:23:\"---- Site configuration\";s:13:\"navigation:23\";s:14:\"------ Actions\";s:14:\"navigation:119\";s:26:\"------ Administration menu\";s:13:\"navigation:24\";s:27:\"------ Administration theme\";s:13:\"navigation:26\";s:17:\"------ Clean URLs\";s:13:\"navigation:30\";s:20:\"------ Date and time\";s:13:\"navigation:33\";s:22:\"------ Error reporting\";s:13:\"navigation:34\";s:18:\"------ File system\";s:13:\"navigation:35\";s:20:\"------ Image toolkit\";s:14:\"navigation:442\";s:13:\"------ Images\";s:13:\"navigation:36\";s:20:\"------ Input formats\";s:13:\"navigation:37\";s:25:\"------ Logging and alerts\";s:14:\"navigation:100\";s:25:\"-------- Database logging\";s:14:\"navigation:245\";s:17:\"------ Nice Menus\";s:13:\"navigation:40\";s:18:\"------ Performance\";s:14:\"navigation:120\";s:22:\"------ Search settings\";s:14:\"navigation:539\";s:17:\"------ Simplenews\";s:14:\"navigation:542\";s:16:\"-------- General\";s:14:\"navigation:543\";s:19:\"-------- Newsletter\";s:14:\"navigation:547\";s:21:\"-------- Subscription\";s:14:\"navigation:545\";s:18:\"-------- Send mail\";s:13:\"navigation:46\";s:23:\"------ Site information\";s:13:\"navigation:47\";s:23:\"------ Site maintenance\";s:14:\"navigation:246\";s:15:\"------ Site map\";s:13:\"navigation:20\";s:20:\"---- User management\";s:13:\"navigation:22\";s:19:\"------ Access rules\";s:13:\"navigation:41\";s:18:\"------ Permissions\";s:13:\"navigation:45\";s:12:\"------ Roles\";s:13:\"navigation:50\";s:20:\"------ User settings\";s:13:\"navigation:51\";s:12:\"------ Users\";s:13:\"navigation:16\";s:12:\"---- Reports\";s:13:\"navigation:93\";s:25:\"------ Recent log entries\";s:13:\"navigation:96\";s:33:\"------ Top \'access denied\' errors\";s:13:\"navigation:97\";s:34:\"------ Top \'page not found\' errors\";s:14:\"navigation:121\";s:25:\"------ Top search phrases\";s:14:\"navigation:105\";s:24:\"------ Available updates\";s:13:\"navigation:48\";s:20:\"------ Status report\";s:13:\"navigation:15\";s:9:\"---- Help\";s:12:\"navigation:4\";s:10:\"-- Log out\";s:15:\"primary-links:0\";s:15:\"<Primary links>\";s:17:\"menu-right-menu:0\";s:12:\"<Right Menu>\";s:19:\"menu-right-menu:496\";s:28:\"-- Financial Calculator Tool\";s:19:\"menu-right-menu:497\";s:21:\"-- News Story Library\";s:19:\"menu-right-menu:498\";s:14:\"-- Latest News\";s:19:\"menu-right-menu:499\";s:25:\"-- SREC Management Portal\";s:17:\"secondary-links:0\";s:17:\"<Secondary links>\";}s:12:\"#description\";s:156:\"The maximum depth for an item and all its children is fixed at 9. Some menu items may not be available as parents if selecting them would exceed this limit.\";s:11:\"#attributes\";a:1:{s:5:\"class\";s:17:\"menu-title-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:1:\"0\";s:12:\"#description\";s:107:\"Optional. In the menu, the heavier items will sink and the lighter items will be positioned nearer the top.\";}}s:7:\"#submit\";a:1:{i:0;s:21:\"menu_node_form_submit\";}s:4:\"path\";a:10:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:17:\"URL path settings\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:0;s:7:\"#access\";b:1;s:7:\"#weight\";i:30;s:4:\"path\";a:6:{s:5:\"#type\";s:9:\"textfield\";s:14:\"#default_value\";s:30:\"special-offer-pv-system-owners\";s:10:\"#maxlength\";i:128;s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:12:\"#description\";s:207:\"Optionally specify an alternative URL by which this node 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\";s:1:\"6\";}s:22:\"pathauto_perform_alias\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:15:\"Automatic alias\";s:14:\"#default_value\";b:1;s:12:\"#description\";s:238:\"An alias will be generated for you. If you wish to create your own alias below, uncheck this option. To control the format of the generated aliases, see the <a href=\"/~uspvinc/main2/admin/build/path/pathauto\">automated alias settings</a>.\";s:7:\"#weight\";i:-1;}s:9:\"old_alias\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:30:\"special-offer-pv-system-owners\";}}s:11:\"#pre_render\";a:1:{i:0;s:27:\"content_alter_extra_weights\";}s:21:\"#content_extra_fields\";a:6:{s:5:\"title\";a:3:{s:5:\"label\";s:5:\"Title\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:-5;}s:10:\"body_field\";a:4:{s:5:\"label\";s:4:\"Body\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:0;s:4:\"view\";s:4:\"body\";}s:20:\"revision_information\";a:3:{s:5:\"label\";s:20:\"Revision information\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:20;}s:16:\"comment_settings\";a:3:{s:5:\"label\";s:16:\"Comment settings\";s:11:\"description\";s:20:\"Comment module form.\";s:6:\"weight\";i:30;}s:4:\"menu\";a:3:{s:5:\"label\";s:13:\"Menu settings\";s:11:\"description\";s:17:\"Menu module form.\";s:6:\"weight\";i:-2;}s:4:\"path\";a:3:{s:5:\"label\";s:13:\"Path settings\";s:11:\"description\";s:17:\"Path module form.\";s:6:\"weight\";i:30;}}s:12:\"#cache_token\";s:32:\"ea05954e6208c2bed552f97e30d1dad3\";}',1285803401,1285781801,'',1),('form_form-991fdde0747f1b92dbf339749b6f281e','a:40:{s:3:\"#id\";s:9:\"node-form\";s:3:\"nid\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:1:\"6\";}s:3:\"vid\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:1:\"6\";}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:\"1265202590\";}s:4:\"type\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:4:\"page\";}s:8:\"language\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:0:\"\";}s:7:\"changed\";a:2:{s:5:\"#type\";s:6:\"hidden\";s:14:\"#default_value\";s:10:\"1285703305\";}s:5:\"title\";a:6:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:5:\"Title\";s:9:\"#required\";b:1;s:14:\"#default_value\";s:34:\"Special Offer for PV System Owners\";s:10:\"#maxlength\";i:255;s:7:\"#weight\";i:-5;}s:10:\"body_field\";a:7:{s:12:\"#after_build\";a:2:{i:0;s:14:\"node_teaser_js\";i:1;s:26:\"node_teaser_include_verify\";}s:7:\"#prefix\";s:32:\"<div class=\"body-field-wrapper\">\";s:7:\"#suffix\";s:6:\"</div>\";s:9:\"teaser_js\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:5:\"#rows\";i:10;s:7:\"#teaser\";s:9:\"edit-body\";s:16:\"#teaser_checkbox\";s:19:\"edit-teaser-include\";s:9:\"#disabled\";b:1;}s:14:\"teaser_include\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:25:\"Show summary in full view\";s:14:\"#default_value\";b:1;s:7:\"#prefix\";s:29:\"<div class=\"teaser-checkbox\">\";s:7:\"#suffix\";s:6:\"</div>\";}s:4:\"body\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:4:\"Body\";s:14:\"#default_value\";s:234:\"<p>\r\nSign-up for USPV\'s REC Management Program today. No up-front or out-of-pocket costs. Don\'t miss out on this opportunity to participate in the Renewable Energy Credit markets and earn hundreds or even thousands of dollars!\r\n</p>\r\n\";s:5:\"#rows\";i:20;s:9:\"#required\";b:0;}s:6:\"format\";a:9:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:12:\"Input format\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:7:\"#weight\";N;s:17:\"#element_validate\";a:1:{i:0;s:20:\"filter_form_validate\";}i:1;a:7:{s:5:\"#type\";s:5:\"radio\";s:6:\"#title\";s:13:\"Filtered HTML\";s:14:\"#default_value\";s:1:\"2\";s:13:\"#return_value\";s:1:\"1\";s:8:\"#parents\";a:1:{i:0;s:6:\"format\";}s:12:\"#description\";s:306:\"<ul class=\"tips\"><li>Web page addresses and e-mail addresses turn into links automatically.</li><li>Allowed HTML tags: &lt;a&gt; &lt;em&gt; &lt;strong&gt; &lt;cite&gt; &lt;code&gt; &lt;ul&gt; &lt;ol&gt; &lt;li&gt; &lt;dl&gt; &lt;dt&gt; &lt;dd&gt;</li><li>Lines and paragraphs break automatically.</li></ul>\";s:3:\"#id\";s:13:\"edit-format-1\";}i:2;a:7:{s:5:\"#type\";s:5:\"radio\";s:6:\"#title\";s:9:\"Full HTML\";s:14:\"#default_value\";s:1:\"2\";s:13:\"#return_value\";s:1:\"2\";s:8:\"#parents\";a:1:{i:0;s:6:\"format\";}s:12:\"#description\";s:151:\"<ul class=\"tips\"><li>Web page addresses and e-mail addresses turn into links automatically.</li><li>Lines and paragraphs break automatically.</li></ul>\";s:3:\"#id\";s:13:\"edit-format-2\";}i:3;a:1:{s:6:\"#value\";s:90:\"<p><a href=\"/~uspvinc/main2/filter/tips\">More information about formatting options</a></p>\";}}}s:5:\"#node\";O:8:\"stdClass\":33:{s:3:\"nid\";s:1:\"6\";s:4:\"type\";s:4:\"page\";s:8:\"language\";s:0:\"\";s:3:\"uid\";s:1:\"1\";s:6:\"status\";s:1:\"1\";s:7:\"created\";s:10:\"1265202590\";s:7:\"changed\";s:10:\"1285703305\";s:7:\"comment\";s:1:\"0\";s:7:\"promote\";s:1:\"0\";s:8:\"moderate\";s:1:\"0\";s:6:\"sticky\";s:1:\"0\";s:4:\"tnid\";s:1:\"0\";s:9:\"translate\";s:1:\"0\";s:3:\"vid\";s:1:\"6\";s:12:\"revision_uid\";s:1:\"1\";s:5:\"title\";s:34:\"Special Offer for PV System Owners\";s:4:\"body\";s:234:\"<p>\r\nSign-up for USPV\'s REC Management Program today. No up-front or out-of-pocket costs. Don\'t miss out on this opportunity to participate in the Renewable Energy Credit markets and earn hundreds or even thousands of dollars!\r\n</p>\r\n\";s:6:\"teaser\";s:234:\"<p>\r\nSign-up for USPV\'s REC Management Program today. No up-front or out-of-pocket costs. Don\'t miss out on this opportunity to participate in the Renewable Energy Credit markets and earn hundreds or even thousands of dollars!\r\n</p>\r\n\";s:3:\"log\";N;s:18:\"revision_timestamp\";s:10:\"1285703305\";s:6:\"format\";s:1:\"2\";s:4:\"name\";s:5:\"admin\";s:7:\"picture\";s:0:\"\";s:4:\"data\";s:6:\"a:0:{}\";s:4:\"path\";s:30:\"special-offer-pv-system-owners\";s:22:\"last_comment_timestamp\";s:10:\"1265202590\";s:17:\"last_comment_name\";N;s:13:\"comment_count\";s:1:\"0\";s:8:\"taxonomy\";a:0:{}s:4:\"date\";s:25:\"2010-02-03 21:09:50 +0800\";s:8:\"revision\";b:0;s:4:\"menu\";a:48:{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:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:3:\"fit\";s:1:\"2\";s:12:\"number_parts\";s:1:\"2\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:14:\"special offers\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:4:\"type\";s:1:\"4\";s:14:\"block_callback\";s:0:\"\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"0\";s:4:\"file\";s:0:\"\";s:9:\"menu_name\";s:14:\"menu-main-menu\";s:4:\"mlid\";s:3:\"286\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/6\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:14:\"special offers\";s:7:\"options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:14:\"special offers\";}}s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"286\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:4:\"href\";s:6:\"node/6\";s:6:\"access\";b:1;s:17:\"localized_options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:14:\"special offers\";}}s:18:\"parent_depth_limit\";i:8;}s:22:\"pathauto_perform_alias\";b:1;}s:20:\"revision_information\";a:7:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:20:\"Revision information\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:7:\"#weight\";i:20;s:8:\"revision\";a:4:{s:7:\"#access\";b:1;s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:19:\"Create new revision\";s:14:\"#default_value\";b:0;}s:3:\"log\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:11:\"Log message\";s:14:\"#default_value\";s:0:\"\";s:5:\"#rows\";i:2;s:12:\"#description\";s:104:\"An explanation of the additions or updates being made to help other authors understand your motivations.\";}}s:6:\"author\";a:8:{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:7:\"#weight\";i:20;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:35:\"Leave blank for <em>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:91:\"Format: <em>2010-02-03 21:09:50 +0800</em>. Leave blank to use the time of form submission.\";s:14:\"#default_value\";s:25:\"2010-02-03 21:09:50 +0800\";}}s:7:\"options\";a:9:{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:7:\"#weight\";i:25;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:\"buttons\";a:3:{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:16:\"node_form_submit\";}}s:7:\"preview\";a:4:{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:6:\"#theme\";a:2:{i:0;s:14:\"page_node_form\";i:1;s:9:\"node_form\";}s:11:\"#parameters\";a:3:{i:0;s:14:\"page_node_form\";i:1;a:3:{s:7:\"storage\";N;s:9:\"submitted\";b:0;s:4:\"post\";a:0:{}}i:2;r:83;}s:9:\"#build_id\";s:37:\"form-991fdde0747f1b92dbf339749b6f281e\";s:5:\"#type\";s:4:\"form\";s:11:\"#programmed\";b:0;s:13:\"form_build_id\";a:4:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:37:\"form-991fdde0747f1b92dbf339749b6f281e\";s:3:\"#id\";s:37:\"form-991fdde0747f1b92dbf339749b6f281e\";s:5:\"#name\";s:13:\"form_build_id\";}s:6:\"#token\";s:14:\"page_node_form\";s:10:\"form_token\";a:3:{s:3:\"#id\";s:30:\"edit-page-node-form-form-token\";s:5:\"#type\";s:5:\"token\";s:14:\"#default_value\";s:32:\"69ee9cfa6b6366390575effcb3429c15\";}s:7:\"form_id\";a:3:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:14:\"page_node_form\";s:3:\"#id\";s:19:\"edit-page-node-form\";}s:12:\"#description\";N;s:11:\"#attributes\";a:0:{}s:9:\"#required\";b:0;s:5:\"#tree\";b:0;s:8:\"#parents\";a:0:{}s:7:\"#method\";s:4:\"post\";s:7:\"#action\";s:27:\"/~uspvinc/main2/node/6/edit\";s:16:\"comment_settings\";a:7:{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:7:\"#weight\";i:30;s:7:\"comment\";a:4:{s:5:\"#type\";s:6:\"radios\";s:8:\"#parents\";a:1:{i:0;s:7:\"comment\";}s:14:\"#default_value\";s:1:\"0\";s:8:\"#options\";a:3:{i:0;s:8:\"Disabled\";i:1;s:9:\"Read only\";i:2;s:10:\"Read/Write\";}}}s:6:\"#cache\";b:1;s:4:\"menu\";a:21:{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:5:\"#tree\";b:1;s:7:\"#weight\";i:-2;s:11:\"#attributes\";a:1:{s:5:\"class\";s:14:\"menu-item-form\";}s:6:\"delete\";a:2:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:22:\"Delete this menu item.\";}s:4:\"mlid\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:3:\"286\";}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\";s:1:\"1\";}s:7:\"options\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:14:\"special offers\";}}}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:5:\"#item\";a:48:{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:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:3:\"fit\";s:1:\"2\";s:12:\"number_parts\";s:1:\"2\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:14:\"special offers\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:4:\"type\";s:1:\"4\";s:14:\"block_callback\";s:0:\"\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"0\";s:4:\"file\";s:0:\"\";s:9:\"menu_name\";s:14:\"menu-main-menu\";s:4:\"mlid\";s:3:\"286\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/6\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:14:\"special offers\";s:7:\"options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:14:\"special offers\";}}s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"286\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:4:\"href\";s:6:\"node/6\";s:6:\"access\";b:1;s:17:\"localized_options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:14:\"special offers\";}}s:18:\"parent_depth_limit\";i:8;}s:10:\"link_title\";a:5:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:15:\"Menu link title\";s:14:\"#default_value\";s:14:\"special offers\";s:12:\"#description\";s:133:\"The link text corresponding to this item that should appear in the menu. Leave blank if you do not wish to add this post to the menu.\";s:9:\"#required\";b:0;}s:6:\"parent\";a:6:{s:5:\"#type\";s:6:\"select\";s:6:\"#title\";s:11:\"Parent item\";s:14:\"#default_value\";s:16:\"menu-main-menu:0\";s:8:\"#options\";a:95:{s:16:\"menu-main-menu:0\";s:11:\"<Main Menu>\";s:18:\"menu-main-menu:283\";s:8:\"-- about\";s:18:\"menu-main-menu:284\";s:12:\"-- resources\";s:18:\"menu-main-menu:285\";s:11:\"-- services\";s:12:\"navigation:0\";s:12:\"<Navigation>\";s:12:\"navigation:9\";s:26:\"-- Compose tips (disabled)\";s:14:\"navigation:461\";s:29:\"-- Image galleries (disabled)\";s:13:\"navigation:21\";s:13:\"-- My account\";s:14:\"navigation:114\";s:20:\"-- Search (disabled)\";s:14:\"navigation:244\";s:22:\"-- Site map (disabled)\";s:13:\"navigation:11\";s:17:\"-- Create content\";s:14:\"navigation:476\";s:11:\"---- Banner\";s:14:\"navigation:441\";s:10:\"---- Image\";s:14:\"navigation:289\";s:21:\"---- Newsletter issue\";s:14:\"navigation:106\";s:9:\"---- Page\";s:14:\"navigation:388\";s:10:\"---- Panel\";s:14:\"navigation:107\";s:10:\"---- Story\";s:12:\"navigation:2\";s:13:\"-- Administer\";s:13:\"navigation:10\";s:23:\"---- Content management\";s:13:\"navigation:27\";s:15:\"------ Comments\";s:13:\"navigation:28\";s:14:\"------ Content\";s:13:\"navigation:29\";s:20:\"------ Content types\";s:14:\"navigation:462\";s:22:\"------ Image galleries\";s:14:\"navigation:463\";s:19:\"------ Image import\";s:14:\"navigation:538\";s:18:\"------ Newsletters\";s:14:\"navigation:546\";s:20:\"-------- Sent issues\";s:14:\"navigation:541\";s:21:\"-------- Draft issues\";s:14:\"navigation:544\";s:20:\"-------- Newsletters\";s:14:\"navigation:548\";s:22:\"-------- Subscriptions\";s:13:\"navigation:42\";s:20:\"------ Post settings\";s:13:\"navigation:43\";s:21:\"------ RSS publishing\";s:13:\"navigation:94\";s:15:\"------ Taxonomy\";s:13:\"navigation:17\";s:18:\"---- Site building\";s:13:\"navigation:25\";s:13:\"------ Blocks\";s:14:\"navigation:424\";s:20:\"------ Bulk Exporter\";s:13:\"navigation:38\";s:12:\"------ Menus\";s:14:\"navigation:282\";s:18:\"-------- Main Menu\";s:13:\"navigation:89\";s:19:\"-------- Navigation\";s:13:\"navigation:90\";s:22:\"-------- Primary links\";s:14:\"navigation:495\";s:19:\"-------- Right Menu\";s:13:\"navigation:91\";s:24:\"-------- Secondary links\";s:14:\"navigation:387\";s:18:\"------ Mini panels\";s:13:\"navigation:39\";s:14:\"------ Modules\";s:14:\"navigation:412\";s:12:\"------ Pages\";s:14:\"navigation:360\";s:13:\"------ Panels\";s:13:\"navigation:49\";s:13:\"------ Themes\";s:14:\"navigation:335\";s:15:\"------ Triggers\";s:14:\"navigation:501\";s:18:\"------ URL aliases\";s:14:\"navigation:257\";s:12:\"------ Views\";s:13:\"navigation:18\";s:23:\"---- Site configuration\";s:13:\"navigation:23\";s:14:\"------ Actions\";s:14:\"navigation:119\";s:26:\"------ Administration menu\";s:13:\"navigation:24\";s:27:\"------ Administration theme\";s:13:\"navigation:26\";s:17:\"------ Clean URLs\";s:13:\"navigation:30\";s:20:\"------ Date and time\";s:13:\"navigation:33\";s:22:\"------ Error reporting\";s:13:\"navigation:34\";s:18:\"------ File system\";s:13:\"navigation:35\";s:20:\"------ Image toolkit\";s:14:\"navigation:442\";s:13:\"------ Images\";s:13:\"navigation:36\";s:20:\"------ Input formats\";s:13:\"navigation:37\";s:25:\"------ Logging and alerts\";s:14:\"navigation:100\";s:25:\"-------- Database logging\";s:14:\"navigation:245\";s:17:\"------ Nice Menus\";s:13:\"navigation:40\";s:18:\"------ Performance\";s:14:\"navigation:120\";s:22:\"------ Search settings\";s:14:\"navigation:539\";s:17:\"------ Simplenews\";s:14:\"navigation:542\";s:16:\"-------- General\";s:14:\"navigation:543\";s:19:\"-------- Newsletter\";s:14:\"navigation:547\";s:21:\"-------- Subscription\";s:14:\"navigation:545\";s:18:\"-------- Send mail\";s:13:\"navigation:46\";s:23:\"------ Site information\";s:13:\"navigation:47\";s:23:\"------ Site maintenance\";s:14:\"navigation:246\";s:15:\"------ Site map\";s:13:\"navigation:20\";s:20:\"---- User management\";s:13:\"navigation:22\";s:19:\"------ Access rules\";s:13:\"navigation:41\";s:18:\"------ Permissions\";s:13:\"navigation:45\";s:12:\"------ Roles\";s:13:\"navigation:50\";s:20:\"------ User settings\";s:13:\"navigation:51\";s:12:\"------ Users\";s:13:\"navigation:16\";s:12:\"---- Reports\";s:13:\"navigation:93\";s:25:\"------ Recent log entries\";s:13:\"navigation:96\";s:33:\"------ Top \'access denied\' errors\";s:13:\"navigation:97\";s:34:\"------ Top \'page not found\' errors\";s:14:\"navigation:121\";s:25:\"------ Top search phrases\";s:14:\"navigation:105\";s:24:\"------ Available updates\";s:13:\"navigation:48\";s:20:\"------ Status report\";s:13:\"navigation:15\";s:9:\"---- Help\";s:12:\"navigation:4\";s:10:\"-- Log out\";s:15:\"primary-links:0\";s:15:\"<Primary links>\";s:17:\"menu-right-menu:0\";s:12:\"<Right Menu>\";s:19:\"menu-right-menu:496\";s:28:\"-- Financial Calculator Tool\";s:19:\"menu-right-menu:497\";s:21:\"-- News Story Library\";s:19:\"menu-right-menu:498\";s:14:\"-- Latest News\";s:19:\"menu-right-menu:499\";s:25:\"-- SREC Management Portal\";s:17:\"secondary-links:0\";s:17:\"<Secondary links>\";}s:12:\"#description\";s:156:\"The maximum depth for an item and all its children is fixed at 9. Some menu items may not be available as parents if selecting them would exceed this limit.\";s:11:\"#attributes\";a:1:{s:5:\"class\";s:17:\"menu-title-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:1:\"0\";s:12:\"#description\";s:107:\"Optional. In the menu, the heavier items will sink and the lighter items will be positioned nearer the top.\";}}s:7:\"#submit\";a:1:{i:0;s:21:\"menu_node_form_submit\";}s:4:\"path\";a:10:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:17:\"URL path settings\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:0;s:7:\"#access\";b:1;s:7:\"#weight\";i:30;s:4:\"path\";a:6:{s:5:\"#type\";s:9:\"textfield\";s:14:\"#default_value\";s:30:\"special-offer-pv-system-owners\";s:10:\"#maxlength\";i:128;s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:12:\"#description\";s:207:\"Optionally specify an alternative URL by which this node 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\";s:1:\"6\";}s:22:\"pathauto_perform_alias\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:15:\"Automatic alias\";s:14:\"#default_value\";b:1;s:12:\"#description\";s:238:\"An alias will be generated for you. If you wish to create your own alias below, uncheck this option. To control the format of the generated aliases, see the <a href=\"/~uspvinc/main2/admin/build/path/pathauto\">automated alias settings</a>.\";s:7:\"#weight\";i:-1;}s:9:\"old_alias\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:30:\"special-offer-pv-system-owners\";}}s:11:\"#pre_render\";a:1:{i:0;s:27:\"content_alter_extra_weights\";}s:21:\"#content_extra_fields\";a:6:{s:5:\"title\";a:3:{s:5:\"label\";s:5:\"Title\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:-5;}s:10:\"body_field\";a:4:{s:5:\"label\";s:4:\"Body\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:0;s:4:\"view\";s:4:\"body\";}s:20:\"revision_information\";a:3:{s:5:\"label\";s:20:\"Revision information\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:20;}s:16:\"comment_settings\";a:3:{s:5:\"label\";s:16:\"Comment settings\";s:11:\"description\";s:20:\"Comment module form.\";s:6:\"weight\";i:30;}s:4:\"menu\";a:3:{s:5:\"label\";s:13:\"Menu settings\";s:11:\"description\";s:17:\"Menu module form.\";s:6:\"weight\";i:-2;}s:4:\"path\";a:3:{s:5:\"label\";s:13:\"Path settings\";s:11:\"description\";s:17:\"Path module form.\";s:6:\"weight\";i:30;}}s:12:\"#cache_token\";s:32:\"ea05954e6208c2bed552f97e30d1dad3\";}',1285808685,1285787085,'',1),('form_form-ffaa830d5613765bb6653d6bfdf4e19c','a:40:{s:3:\"#id\";s:9:\"node-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:1285788522;}s:4:\"type\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:4:\"page\";}s:8:\"language\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:0:\"\";}s:7:\"changed\";a:2:{s:5:\"#type\";s:6:\"hidden\";s:14:\"#default_value\";N;}s:5:\"title\";a:6:{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:10:\"body_field\";a:7:{s:12:\"#after_build\";a:2:{i:0;s:14:\"node_teaser_js\";i:1;s:26:\"node_teaser_include_verify\";}s:7:\"#prefix\";s:32:\"<div class=\"body-field-wrapper\">\";s:7:\"#suffix\";s:6:\"</div>\";s:9:\"teaser_js\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:5:\"#rows\";i:10;s:7:\"#teaser\";s:9:\"edit-body\";s:16:\"#teaser_checkbox\";s:19:\"edit-teaser-include\";s:9:\"#disabled\";b:1;}s:14:\"teaser_include\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:25:\"Show summary in full view\";s:14:\"#default_value\";b:1;s:7:\"#prefix\";s:29:\"<div class=\"teaser-checkbox\">\";s:7:\"#suffix\";s:6:\"</div>\";}s:4:\"body\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:4:\"Body\";s:14:\"#default_value\";N;s:5:\"#rows\";i:20;s:9:\"#required\";b:0;}s:6:\"format\";a:9:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:12:\"Input format\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:7:\"#weight\";N;s:17:\"#element_validate\";a:1:{i:0;s:20:\"filter_form_validate\";}i:1;a:7:{s:5:\"#type\";s:5:\"radio\";s:6:\"#title\";s:13:\"Filtered HTML\";s:14:\"#default_value\";i:1;s:13:\"#return_value\";s:1:\"1\";s:8:\"#parents\";a:1:{i:0;s:6:\"format\";}s:12:\"#description\";s:306:\"<ul class=\"tips\"><li>Web page addresses and e-mail addresses turn into links automatically.</li><li>Allowed HTML tags: &lt;a&gt; &lt;em&gt; &lt;strong&gt; &lt;cite&gt; &lt;code&gt; &lt;ul&gt; &lt;ol&gt; &lt;li&gt; &lt;dl&gt; &lt;dt&gt; &lt;dd&gt;</li><li>Lines and paragraphs break automatically.</li></ul>\";s:3:\"#id\";s:13:\"edit-format-1\";}i:2;a:7:{s:5:\"#type\";s:5:\"radio\";s:6:\"#title\";s:9:\"Full HTML\";s:14:\"#default_value\";i:1;s:13:\"#return_value\";s:1:\"2\";s:8:\"#parents\";a:1:{i:0;s:6:\"format\";}s:12:\"#description\";s:151:\"<ul class=\"tips\"><li>Web page addresses and e-mail addresses turn into links automatically.</li><li>Lines and paragraphs break automatically.</li></ul>\";s:3:\"#id\";s:13:\"edit-format-2\";}i:3;a:1:{s:6:\"#value\";s:90:\"<p><a href=\"/~uspvinc/main2/filter/tips\">More information about formatting options</a></p>\";}}}s:5:\"#node\";O:8:\"stdClass\":15:{s:3:\"uid\";s:1:\"1\";s:4:\"name\";s:5:\"admin\";s:4:\"type\";s:4:\"page\";s:8:\"language\";s:0:\"\";s:4:\"body\";N;s:5:\"title\";N;s:6:\"format\";N;s:6:\"status\";b:1;s:7:\"promote\";b:0;s:6:\"sticky\";b:0;s:7:\"created\";i:1285788522;s:8:\"revision\";b:0;s:7:\"comment\";i: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:13:\"primary-links\";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:22:\"pathauto_perform_alias\";b:1;}s:20:\"revision_information\";a:7:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:20:\"Revision information\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:7:\"#weight\";i:20;s:8:\"revision\";a:4:{s:7:\"#access\";b:1;s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:19:\"Create new revision\";s:14:\"#default_value\";b:0;}s:3:\"log\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:11:\"Log message\";s:14:\"#default_value\";s:0:\"\";s:5:\"#rows\";i:2;s:12:\"#description\";s:104:\"An explanation of the additions or updates being made to help other authors understand your motivations.\";}}s:6:\"author\";a:8:{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:7:\"#weight\";i:20;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:35:\"Leave blank for <em>Anonymous</em>.\";}s:4:\"date\";a:4:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:11:\"Authored on\";s:10:\"#maxlength\";i:25;s:12:\"#description\";s:91:\"Format: <em>2010-09-30 03:28:42 +0800</em>. Leave blank to use the time of form submission.\";}}s:7:\"options\";a:9:{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:7:\"#weight\";i:25;s:6:\"status\";a:3:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:9:\"Published\";s:14:\"#default_value\";b: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\";b: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\";b:0;}}s:7:\"buttons\";a:2:{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:16:\"node_form_submit\";}}s:7:\"preview\";a:4:{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:6:\"#theme\";a:2:{i:0;s:14:\"page_node_form\";i:1;s:9:\"node_form\";}s:11:\"#parameters\";a:3:{i:0;s:14:\"page_node_form\";i:1;a:3:{s:7:\"storage\";N;s:9:\"submitted\";b:0;s:4:\"post\";a:0:{}}i:2;a:4:{s:3:\"uid\";s:1:\"1\";s:4:\"name\";s:5:\"admin\";s:4:\"type\";s:4:\"page\";s:8:\"language\";s:0:\"\";}}s:9:\"#build_id\";s:37:\"form-ffaa830d5613765bb6653d6bfdf4e19c\";s:5:\"#type\";s:4:\"form\";s:11:\"#programmed\";b:0;s:13:\"form_build_id\";a:4:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:37:\"form-ffaa830d5613765bb6653d6bfdf4e19c\";s:3:\"#id\";s:37:\"form-ffaa830d5613765bb6653d6bfdf4e19c\";s:5:\"#name\";s:13:\"form_build_id\";}s:6:\"#token\";s:14:\"page_node_form\";s:10:\"form_token\";a:3:{s:3:\"#id\";s:30:\"edit-page-node-form-form-token\";s:5:\"#type\";s:5:\"token\";s:14:\"#default_value\";s:32:\"69ee9cfa6b6366390575effcb3429c15\";}s:7:\"form_id\";a:3:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:14:\"page_node_form\";s:3:\"#id\";s:19:\"edit-page-node-form\";}s:12:\"#description\";N;s:11:\"#attributes\";a:0:{}s:9:\"#required\";b:0;s:5:\"#tree\";b:0;s:8:\"#parents\";a:0:{}s:7:\"#method\";s:4:\"post\";s:7:\"#action\";s:29:\"/~uspvinc/main2/node/add/page\";s:16:\"comment_settings\";a:7:{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:7:\"#weight\";i:30;s:7:\"comment\";a:4:{s:5:\"#type\";s:6:\"radios\";s:8:\"#parents\";a:1:{i:0;s:7:\"comment\";}s:14:\"#default_value\";i:0;s:8:\"#options\";a:3:{i:0;s:8:\"Disabled\";i:1;s:9:\"Read only\";i:2;s:10:\"Read/Write\";}}}s:6:\"#cache\";b:1;s:4:\"menu\";a:20:{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:5:\"#tree\";b:1;s:7:\"#weight\";i:-2;s:11:\"#attributes\";a:1:{s:5:\"class\";s:14:\"menu-item-form\";}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:0;}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:5:\"#item\";a:12:{s:10:\"link_title\";s:0:\"\";s:4:\"mlid\";i:0;s:4:\"plid\";i:0;s:9:\"menu_name\";s:13:\"primary-links\";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:10:\"link_title\";a:5:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:15:\"Menu link title\";s:14:\"#default_value\";s:0:\"\";s:12:\"#description\";s:133:\"The link text corresponding to this item that should appear in the menu. Leave blank if you do not wish to add this post to the menu.\";s:9:\"#required\";b:0;}s:6:\"parent\";a:6:{s:5:\"#type\";s:6:\"select\";s:6:\"#title\";s:11:\"Parent item\";s:14:\"#default_value\";s:15:\"primary-links:0\";s:8:\"#options\";a:96:{s:16:\"menu-main-menu:0\";s:11:\"<Main Menu>\";s:18:\"menu-main-menu:283\";s:8:\"-- about\";s:18:\"menu-main-menu:284\";s:12:\"-- resources\";s:18:\"menu-main-menu:285\";s:11:\"-- services\";s:18:\"menu-main-menu:286\";s:17:\"-- special offers\";s:12:\"navigation:0\";s:12:\"<Navigation>\";s:12:\"navigation:9\";s:26:\"-- Compose tips (disabled)\";s:14:\"navigation:461\";s:29:\"-- Image galleries (disabled)\";s:13:\"navigation:21\";s:13:\"-- My account\";s:14:\"navigation:114\";s:20:\"-- Search (disabled)\";s:14:\"navigation:244\";s:22:\"-- Site map (disabled)\";s:13:\"navigation:11\";s:17:\"-- Create content\";s:14:\"navigation:476\";s:11:\"---- Banner\";s:14:\"navigation:441\";s:10:\"---- Image\";s:14:\"navigation:289\";s:21:\"---- Newsletter issue\";s:14:\"navigation:106\";s:9:\"---- Page\";s:14:\"navigation:388\";s:10:\"---- Panel\";s:14:\"navigation:107\";s:10:\"---- Story\";s:12:\"navigation:2\";s:13:\"-- Administer\";s:13:\"navigation:10\";s:23:\"---- Content management\";s:13:\"navigation:27\";s:15:\"------ Comments\";s:13:\"navigation:28\";s:14:\"------ Content\";s:13:\"navigation:29\";s:20:\"------ Content types\";s:14:\"navigation:462\";s:22:\"------ Image galleries\";s:14:\"navigation:463\";s:19:\"------ Image import\";s:14:\"navigation:538\";s:18:\"------ Newsletters\";s:14:\"navigation:546\";s:20:\"-------- Sent issues\";s:14:\"navigation:541\";s:21:\"-------- Draft issues\";s:14:\"navigation:544\";s:20:\"-------- Newsletters\";s:14:\"navigation:548\";s:22:\"-------- Subscriptions\";s:13:\"navigation:42\";s:20:\"------ Post settings\";s:13:\"navigation:43\";s:21:\"------ RSS publishing\";s:13:\"navigation:94\";s:15:\"------ Taxonomy\";s:13:\"navigation:17\";s:18:\"---- Site building\";s:13:\"navigation:25\";s:13:\"------ Blocks\";s:14:\"navigation:424\";s:20:\"------ Bulk Exporter\";s:13:\"navigation:38\";s:12:\"------ Menus\";s:14:\"navigation:282\";s:18:\"-------- Main Menu\";s:13:\"navigation:89\";s:19:\"-------- Navigation\";s:13:\"navigation:90\";s:22:\"-------- Primary links\";s:14:\"navigation:495\";s:19:\"-------- Right Menu\";s:13:\"navigation:91\";s:24:\"-------- Secondary links\";s:14:\"navigation:387\";s:18:\"------ Mini panels\";s:13:\"navigation:39\";s:14:\"------ Modules\";s:14:\"navigation:412\";s:12:\"------ Pages\";s:14:\"navigation:360\";s:13:\"------ Panels\";s:13:\"navigation:49\";s:13:\"------ Themes\";s:14:\"navigation:335\";s:15:\"------ Triggers\";s:14:\"navigation:501\";s:18:\"------ URL aliases\";s:14:\"navigation:257\";s:12:\"------ Views\";s:13:\"navigation:18\";s:23:\"---- Site configuration\";s:13:\"navigation:23\";s:14:\"------ Actions\";s:14:\"navigation:119\";s:26:\"------ Administration menu\";s:13:\"navigation:24\";s:27:\"------ Administration theme\";s:13:\"navigation:26\";s:17:\"------ Clean URLs\";s:13:\"navigation:30\";s:20:\"------ Date and time\";s:13:\"navigation:33\";s:22:\"------ Error reporting\";s:13:\"navigation:34\";s:18:\"------ File system\";s:13:\"navigation:35\";s:20:\"------ Image toolkit\";s:14:\"navigation:442\";s:13:\"------ Images\";s:13:\"navigation:36\";s:20:\"------ Input formats\";s:13:\"navigation:37\";s:25:\"------ Logging and alerts\";s:14:\"navigation:100\";s:25:\"-------- Database logging\";s:14:\"navigation:245\";s:17:\"------ Nice Menus\";s:13:\"navigation:40\";s:18:\"------ Performance\";s:14:\"navigation:120\";s:22:\"------ Search settings\";s:14:\"navigation:539\";s:17:\"------ Simplenews\";s:14:\"navigation:542\";s:16:\"-------- General\";s:14:\"navigation:543\";s:19:\"-------- Newsletter\";s:14:\"navigation:547\";s:21:\"-------- Subscription\";s:14:\"navigation:545\";s:18:\"-------- Send mail\";s:13:\"navigation:46\";s:23:\"------ Site information\";s:13:\"navigation:47\";s:23:\"------ Site maintenance\";s:14:\"navigation:246\";s:15:\"------ Site map\";s:13:\"navigation:20\";s:20:\"---- User management\";s:13:\"navigation:22\";s:19:\"------ Access rules\";s:13:\"navigation:41\";s:18:\"------ Permissions\";s:13:\"navigation:45\";s:12:\"------ Roles\";s:13:\"navigation:50\";s:20:\"------ User settings\";s:13:\"navigation:51\";s:12:\"------ Users\";s:13:\"navigation:16\";s:12:\"---- Reports\";s:13:\"navigation:93\";s:25:\"------ Recent log entries\";s:13:\"navigation:96\";s:33:\"------ Top \'access denied\' errors\";s:13:\"navigation:97\";s:34:\"------ Top \'page not found\' errors\";s:14:\"navigation:121\";s:25:\"------ Top search phrases\";s:14:\"navigation:105\";s:24:\"------ Available updates\";s:13:\"navigation:48\";s:20:\"------ Status report\";s:13:\"navigation:15\";s:9:\"---- Help\";s:12:\"navigation:4\";s:10:\"-- Log out\";s:15:\"primary-links:0\";s:15:\"<Primary links>\";s:17:\"menu-right-menu:0\";s:12:\"<Right Menu>\";s:19:\"menu-right-menu:496\";s:28:\"-- Financial Calculator Tool\";s:19:\"menu-right-menu:497\";s:21:\"-- News Story Library\";s:19:\"menu-right-menu:498\";s:14:\"-- Latest News\";s:19:\"menu-right-menu:499\";s:25:\"-- SREC Management Portal\";s:17:\"secondary-links:0\";s:17:\"<Secondary links>\";}s:12:\"#description\";s:156:\"The maximum depth for an item and all its children is fixed at 9. Some menu items may not be available as parents if selecting them would exceed this limit.\";s:11:\"#attributes\";a:1:{s:5:\"class\";s:17:\"menu-title-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:107:\"Optional. In the menu, the heavier items will sink and the lighter items will be positioned nearer the top.\";}}s:7:\"#submit\";a:1:{i:0;s:21:\"menu_node_form_submit\";}s:4:\"path\";a:8:{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:7:\"#access\";b:1;s:7:\"#weight\";i:30;s:4:\"path\";a:6:{s:5:\"#type\";s:9:\"textfield\";s:14:\"#default_value\";N;s:10:\"#maxlength\";i:128;s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:12:\"#description\";s:207:\"Optionally specify an alternative URL by which this node 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:22:\"pathauto_perform_alias\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:15:\"Automatic alias\";s:14:\"#default_value\";b:1;s:12:\"#description\";s:238:\"An alias will be generated for you. If you wish to create your own alias below, uncheck this option. To control the format of the generated aliases, see the <a href=\"/~uspvinc/main2/admin/build/path/pathauto\">automated alias settings</a>.\";s:7:\"#weight\";i:-1;}}s:11:\"#pre_render\";a:1:{i:0;s:27:\"content_alter_extra_weights\";}s:21:\"#content_extra_fields\";a:6:{s:5:\"title\";a:3:{s:5:\"label\";s:5:\"Title\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:-5;}s:10:\"body_field\";a:4:{s:5:\"label\";s:4:\"Body\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:0;s:4:\"view\";s:4:\"body\";}s:20:\"revision_information\";a:3:{s:5:\"label\";s:20:\"Revision information\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:20;}s:16:\"comment_settings\";a:3:{s:5:\"label\";s:16:\"Comment settings\";s:11:\"description\";s:20:\"Comment module form.\";s:6:\"weight\";i:30;}s:4:\"menu\";a:3:{s:5:\"label\";s:13:\"Menu settings\";s:11:\"description\";s:17:\"Menu module form.\";s:6:\"weight\";i:-2;}s:4:\"path\";a:3:{s:5:\"label\";s:13:\"Path settings\";s:11:\"description\";s:17:\"Path module form.\";s:6:\"weight\";i:30;}}s:12:\"#cache_token\";s:32:\"ea05954e6208c2bed552f97e30d1dad3\";}',1285810122,1285788522,'',1),('form_form-5a8bd257177331e4742a989d405370aa','a:40:{s:3:\"#id\";s:9:\"node-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:1285788463;}s:4:\"type\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:4:\"page\";}s:8:\"language\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:0:\"\";}s:7:\"changed\";a:2:{s:5:\"#type\";s:6:\"hidden\";s:14:\"#default_value\";N;}s:5:\"title\";a:6:{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:10:\"body_field\";a:7:{s:12:\"#after_build\";a:2:{i:0;s:14:\"node_teaser_js\";i:1;s:26:\"node_teaser_include_verify\";}s:7:\"#prefix\";s:32:\"<div class=\"body-field-wrapper\">\";s:7:\"#suffix\";s:6:\"</div>\";s:9:\"teaser_js\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:5:\"#rows\";i:10;s:7:\"#teaser\";s:9:\"edit-body\";s:16:\"#teaser_checkbox\";s:19:\"edit-teaser-include\";s:9:\"#disabled\";b:1;}s:14:\"teaser_include\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:25:\"Show summary in full view\";s:14:\"#default_value\";b:1;s:7:\"#prefix\";s:29:\"<div class=\"teaser-checkbox\">\";s:7:\"#suffix\";s:6:\"</div>\";}s:4:\"body\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:4:\"Body\";s:14:\"#default_value\";N;s:5:\"#rows\";i:20;s:9:\"#required\";b:0;}s:6:\"format\";a:9:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:12:\"Input format\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:7:\"#weight\";N;s:17:\"#element_validate\";a:1:{i:0;s:20:\"filter_form_validate\";}i:1;a:7:{s:5:\"#type\";s:5:\"radio\";s:6:\"#title\";s:13:\"Filtered HTML\";s:14:\"#default_value\";i:1;s:13:\"#return_value\";s:1:\"1\";s:8:\"#parents\";a:1:{i:0;s:6:\"format\";}s:12:\"#description\";s:306:\"<ul class=\"tips\"><li>Web page addresses and e-mail addresses turn into links automatically.</li><li>Allowed HTML tags: &lt;a&gt; &lt;em&gt; &lt;strong&gt; &lt;cite&gt; &lt;code&gt; &lt;ul&gt; &lt;ol&gt; &lt;li&gt; &lt;dl&gt; &lt;dt&gt; &lt;dd&gt;</li><li>Lines and paragraphs break automatically.</li></ul>\";s:3:\"#id\";s:13:\"edit-format-1\";}i:2;a:7:{s:5:\"#type\";s:5:\"radio\";s:6:\"#title\";s:9:\"Full HTML\";s:14:\"#default_value\";i:1;s:13:\"#return_value\";s:1:\"2\";s:8:\"#parents\";a:1:{i:0;s:6:\"format\";}s:12:\"#description\";s:151:\"<ul class=\"tips\"><li>Web page addresses and e-mail addresses turn into links automatically.</li><li>Lines and paragraphs break automatically.</li></ul>\";s:3:\"#id\";s:13:\"edit-format-2\";}i:3;a:1:{s:6:\"#value\";s:90:\"<p><a href=\"/~uspvinc/main2/filter/tips\">More information about formatting options</a></p>\";}}}s:5:\"#node\";O:8:\"stdClass\":15:{s:3:\"uid\";s:1:\"1\";s:4:\"name\";s:5:\"admin\";s:4:\"type\";s:4:\"page\";s:8:\"language\";s:0:\"\";s:4:\"body\";N;s:5:\"title\";N;s:6:\"format\";N;s:6:\"status\";b:1;s:7:\"promote\";b:0;s:6:\"sticky\";b:0;s:7:\"created\";i:1285788463;s:8:\"revision\";b:0;s:7:\"comment\";i: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:13:\"primary-links\";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:22:\"pathauto_perform_alias\";b:1;}s:20:\"revision_information\";a:7:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:20:\"Revision information\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:7:\"#weight\";i:20;s:8:\"revision\";a:4:{s:7:\"#access\";b:1;s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:19:\"Create new revision\";s:14:\"#default_value\";b:0;}s:3:\"log\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:11:\"Log message\";s:14:\"#default_value\";s:0:\"\";s:5:\"#rows\";i:2;s:12:\"#description\";s:104:\"An explanation of the additions or updates being made to help other authors understand your motivations.\";}}s:6:\"author\";a:8:{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:7:\"#weight\";i:20;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:35:\"Leave blank for <em>Anonymous</em>.\";}s:4:\"date\";a:4:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:11:\"Authored on\";s:10:\"#maxlength\";i:25;s:12:\"#description\";s:91:\"Format: <em>2010-09-30 03:27:43 +0800</em>. Leave blank to use the time of form submission.\";}}s:7:\"options\";a:9:{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:7:\"#weight\";i:25;s:6:\"status\";a:3:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:9:\"Published\";s:14:\"#default_value\";b: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\";b: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\";b:0;}}s:7:\"buttons\";a:2:{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:16:\"node_form_submit\";}}s:7:\"preview\";a:4:{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:6:\"#theme\";a:2:{i:0;s:14:\"page_node_form\";i:1;s:9:\"node_form\";}s:11:\"#parameters\";a:3:{i:0;s:14:\"page_node_form\";i:1;a:3:{s:7:\"storage\";N;s:9:\"submitted\";b:0;s:4:\"post\";a:0:{}}i:2;a:4:{s:3:\"uid\";s:1:\"1\";s:4:\"name\";s:5:\"admin\";s:4:\"type\";s:4:\"page\";s:8:\"language\";s:0:\"\";}}s:9:\"#build_id\";s:37:\"form-5a8bd257177331e4742a989d405370aa\";s:5:\"#type\";s:4:\"form\";s:11:\"#programmed\";b:0;s:13:\"form_build_id\";a:4:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:37:\"form-5a8bd257177331e4742a989d405370aa\";s:3:\"#id\";s:37:\"form-5a8bd257177331e4742a989d405370aa\";s:5:\"#name\";s:13:\"form_build_id\";}s:6:\"#token\";s:14:\"page_node_form\";s:10:\"form_token\";a:3:{s:3:\"#id\";s:30:\"edit-page-node-form-form-token\";s:5:\"#type\";s:5:\"token\";s:14:\"#default_value\";s:32:\"69ee9cfa6b6366390575effcb3429c15\";}s:7:\"form_id\";a:3:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:14:\"page_node_form\";s:3:\"#id\";s:19:\"edit-page-node-form\";}s:12:\"#description\";N;s:11:\"#attributes\";a:0:{}s:9:\"#required\";b:0;s:5:\"#tree\";b:0;s:8:\"#parents\";a:0:{}s:7:\"#method\";s:4:\"post\";s:7:\"#action\";s:29:\"/~uspvinc/main2/node/add/page\";s:16:\"comment_settings\";a:7:{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:7:\"#weight\";i:30;s:7:\"comment\";a:4:{s:5:\"#type\";s:6:\"radios\";s:8:\"#parents\";a:1:{i:0;s:7:\"comment\";}s:14:\"#default_value\";i:0;s:8:\"#options\";a:3:{i:0;s:8:\"Disabled\";i:1;s:9:\"Read only\";i:2;s:10:\"Read/Write\";}}}s:6:\"#cache\";b:1;s:4:\"menu\";a:20:{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:5:\"#tree\";b:1;s:7:\"#weight\";i:-2;s:11:\"#attributes\";a:1:{s:5:\"class\";s:14:\"menu-item-form\";}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:0;}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:5:\"#item\";a:12:{s:10:\"link_title\";s:0:\"\";s:4:\"mlid\";i:0;s:4:\"plid\";i:0;s:9:\"menu_name\";s:13:\"primary-links\";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:10:\"link_title\";a:5:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:15:\"Menu link title\";s:14:\"#default_value\";s:0:\"\";s:12:\"#description\";s:133:\"The link text corresponding to this item that should appear in the menu. Leave blank if you do not wish to add this post to the menu.\";s:9:\"#required\";b:0;}s:6:\"parent\";a:6:{s:5:\"#type\";s:6:\"select\";s:6:\"#title\";s:11:\"Parent item\";s:14:\"#default_value\";s:15:\"primary-links:0\";s:8:\"#options\";a:96:{s:16:\"menu-main-menu:0\";s:11:\"<Main Menu>\";s:18:\"menu-main-menu:283\";s:8:\"-- about\";s:18:\"menu-main-menu:284\";s:12:\"-- resources\";s:18:\"menu-main-menu:285\";s:11:\"-- services\";s:18:\"menu-main-menu:286\";s:17:\"-- special offers\";s:12:\"navigation:0\";s:12:\"<Navigation>\";s:12:\"navigation:9\";s:26:\"-- Compose tips (disabled)\";s:14:\"navigation:461\";s:29:\"-- Image galleries (disabled)\";s:13:\"navigation:21\";s:13:\"-- My account\";s:14:\"navigation:114\";s:20:\"-- Search (disabled)\";s:14:\"navigation:244\";s:22:\"-- Site map (disabled)\";s:13:\"navigation:11\";s:17:\"-- Create content\";s:14:\"navigation:476\";s:11:\"---- Banner\";s:14:\"navigation:441\";s:10:\"---- Image\";s:14:\"navigation:289\";s:21:\"---- Newsletter issue\";s:14:\"navigation:106\";s:9:\"---- Page\";s:14:\"navigation:388\";s:10:\"---- Panel\";s:14:\"navigation:107\";s:10:\"---- Story\";s:12:\"navigation:2\";s:13:\"-- Administer\";s:13:\"navigation:10\";s:23:\"---- Content management\";s:13:\"navigation:27\";s:15:\"------ Comments\";s:13:\"navigation:28\";s:14:\"------ Content\";s:13:\"navigation:29\";s:20:\"------ Content types\";s:14:\"navigation:462\";s:22:\"------ Image galleries\";s:14:\"navigation:463\";s:19:\"------ Image import\";s:14:\"navigation:538\";s:18:\"------ Newsletters\";s:14:\"navigation:546\";s:20:\"-------- Sent issues\";s:14:\"navigation:541\";s:21:\"-------- Draft issues\";s:14:\"navigation:544\";s:20:\"-------- Newsletters\";s:14:\"navigation:548\";s:22:\"-------- Subscriptions\";s:13:\"navigation:42\";s:20:\"------ Post settings\";s:13:\"navigation:43\";s:21:\"------ RSS publishing\";s:13:\"navigation:94\";s:15:\"------ Taxonomy\";s:13:\"navigation:17\";s:18:\"---- Site building\";s:13:\"navigation:25\";s:13:\"------ Blocks\";s:14:\"navigation:424\";s:20:\"------ Bulk Exporter\";s:13:\"navigation:38\";s:12:\"------ Menus\";s:14:\"navigation:282\";s:18:\"-------- Main Menu\";s:13:\"navigation:89\";s:19:\"-------- Navigation\";s:13:\"navigation:90\";s:22:\"-------- Primary links\";s:14:\"navigation:495\";s:19:\"-------- Right Menu\";s:13:\"navigation:91\";s:24:\"-------- Secondary links\";s:14:\"navigation:387\";s:18:\"------ Mini panels\";s:13:\"navigation:39\";s:14:\"------ Modules\";s:14:\"navigation:412\";s:12:\"------ Pages\";s:14:\"navigation:360\";s:13:\"------ Panels\";s:13:\"navigation:49\";s:13:\"------ Themes\";s:14:\"navigation:335\";s:15:\"------ Triggers\";s:14:\"navigation:501\";s:18:\"------ URL aliases\";s:14:\"navigation:257\";s:12:\"------ Views\";s:13:\"navigation:18\";s:23:\"---- Site configuration\";s:13:\"navigation:23\";s:14:\"------ Actions\";s:14:\"navigation:119\";s:26:\"------ Administration menu\";s:13:\"navigation:24\";s:27:\"------ Administration theme\";s:13:\"navigation:26\";s:17:\"------ Clean URLs\";s:13:\"navigation:30\";s:20:\"------ Date and time\";s:13:\"navigation:33\";s:22:\"------ Error reporting\";s:13:\"navigation:34\";s:18:\"------ File system\";s:13:\"navigation:35\";s:20:\"------ Image toolkit\";s:14:\"navigation:442\";s:13:\"------ Images\";s:13:\"navigation:36\";s:20:\"------ Input formats\";s:13:\"navigation:37\";s:25:\"------ Logging and alerts\";s:14:\"navigation:100\";s:25:\"-------- Database logging\";s:14:\"navigation:245\";s:17:\"------ Nice Menus\";s:13:\"navigation:40\";s:18:\"------ Performance\";s:14:\"navigation:120\";s:22:\"------ Search settings\";s:14:\"navigation:539\";s:17:\"------ Simplenews\";s:14:\"navigation:542\";s:16:\"-------- General\";s:14:\"navigation:543\";s:19:\"-------- Newsletter\";s:14:\"navigation:547\";s:21:\"-------- Subscription\";s:14:\"navigation:545\";s:18:\"-------- Send mail\";s:13:\"navigation:46\";s:23:\"------ Site information\";s:13:\"navigation:47\";s:23:\"------ Site maintenance\";s:14:\"navigation:246\";s:15:\"------ Site map\";s:13:\"navigation:20\";s:20:\"---- User management\";s:13:\"navigation:22\";s:19:\"------ Access rules\";s:13:\"navigation:41\";s:18:\"------ Permissions\";s:13:\"navigation:45\";s:12:\"------ Roles\";s:13:\"navigation:50\";s:20:\"------ User settings\";s:13:\"navigation:51\";s:12:\"------ Users\";s:13:\"navigation:16\";s:12:\"---- Reports\";s:13:\"navigation:93\";s:25:\"------ Recent log entries\";s:13:\"navigation:96\";s:33:\"------ Top \'access denied\' errors\";s:13:\"navigation:97\";s:34:\"------ Top \'page not found\' errors\";s:14:\"navigation:121\";s:25:\"------ Top search phrases\";s:14:\"navigation:105\";s:24:\"------ Available updates\";s:13:\"navigation:48\";s:20:\"------ Status report\";s:13:\"navigation:15\";s:9:\"---- Help\";s:12:\"navigation:4\";s:10:\"-- Log out\";s:15:\"primary-links:0\";s:15:\"<Primary links>\";s:17:\"menu-right-menu:0\";s:12:\"<Right Menu>\";s:19:\"menu-right-menu:496\";s:28:\"-- Financial Calculator Tool\";s:19:\"menu-right-menu:497\";s:21:\"-- News Story Library\";s:19:\"menu-right-menu:498\";s:14:\"-- Latest News\";s:19:\"menu-right-menu:499\";s:25:\"-- SREC Management Portal\";s:17:\"secondary-links:0\";s:17:\"<Secondary links>\";}s:12:\"#description\";s:156:\"The maximum depth for an item and all its children is fixed at 9. Some menu items may not be available as parents if selecting them would exceed this limit.\";s:11:\"#attributes\";a:1:{s:5:\"class\";s:17:\"menu-title-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:107:\"Optional. In the menu, the heavier items will sink and the lighter items will be positioned nearer the top.\";}}s:7:\"#submit\";a:1:{i:0;s:21:\"menu_node_form_submit\";}s:4:\"path\";a:8:{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:7:\"#access\";b:1;s:7:\"#weight\";i:30;s:4:\"path\";a:6:{s:5:\"#type\";s:9:\"textfield\";s:14:\"#default_value\";N;s:10:\"#maxlength\";i:128;s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:12:\"#description\";s:207:\"Optionally specify an alternative URL by which this node 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:22:\"pathauto_perform_alias\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:15:\"Automatic alias\";s:14:\"#default_value\";b:1;s:12:\"#description\";s:238:\"An alias will be generated for you. If you wish to create your own alias below, uncheck this option. To control the format of the generated aliases, see the <a href=\"/~uspvinc/main2/admin/build/path/pathauto\">automated alias settings</a>.\";s:7:\"#weight\";i:-1;}}s:11:\"#pre_render\";a:1:{i:0;s:27:\"content_alter_extra_weights\";}s:21:\"#content_extra_fields\";a:6:{s:5:\"title\";a:3:{s:5:\"label\";s:5:\"Title\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:-5;}s:10:\"body_field\";a:4:{s:5:\"label\";s:4:\"Body\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:0;s:4:\"view\";s:4:\"body\";}s:20:\"revision_information\";a:3:{s:5:\"label\";s:20:\"Revision information\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:20;}s:16:\"comment_settings\";a:3:{s:5:\"label\";s:16:\"Comment settings\";s:11:\"description\";s:20:\"Comment module form.\";s:6:\"weight\";i:30;}s:4:\"menu\";a:3:{s:5:\"label\";s:13:\"Menu settings\";s:11:\"description\";s:17:\"Menu module form.\";s:6:\"weight\";i:-2;}s:4:\"path\";a:3:{s:5:\"label\";s:13:\"Path settings\";s:11:\"description\";s:17:\"Path module form.\";s:6:\"weight\";i:30;}}s:12:\"#cache_token\";s:32:\"ea05954e6208c2bed552f97e30d1dad3\";}',1285810063,1285788463,'',1),('form_form-1bd5285b039285b262209a5e41d54126','a:40:{s:3:\"#id\";s:9:\"node-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:\"1265202538\";}s:4:\"type\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:4:\"page\";}s:8:\"language\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:0:\"\";}s:7:\"changed\";a:2:{s:5:\"#type\";s:6:\"hidden\";s:14:\"#default_value\";s:10:\"1285702357\";}s:5:\"title\";a:6:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:5:\"Title\";s:9:\"#required\";b:1;s:14:\"#default_value\";s:9:\"resources\";s:10:\"#maxlength\";i:255;s:7:\"#weight\";i:-5;}s:10:\"body_field\";a:7:{s:12:\"#after_build\";a:2:{i:0;s:14:\"node_teaser_js\";i:1;s:26:\"node_teaser_include_verify\";}s:7:\"#prefix\";s:32:\"<div class=\"body-field-wrapper\">\";s:7:\"#suffix\";s:6:\"</div>\";s:9:\"teaser_js\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:5:\"#rows\";i:10;s:7:\"#teaser\";s:9:\"edit-body\";s:16:\"#teaser_checkbox\";s:19:\"edit-teaser-include\";s:9:\"#disabled\";b:1;}s:14:\"teaser_include\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:25:\"Show summary in full view\";s:14:\"#default_value\";b:1;s:7:\"#prefix\";s:29:\"<div class=\"teaser-checkbox\">\";s:7:\"#suffix\";s:6:\"</div>\";}s:4:\"body\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:4:\"Body\";s:14:\"#default_value\";s:1245:\"<h2>Internet Resources</h2>\r\n \r\nFrom the Database of State Incentives for Renewables and Efficiency (DSIRE.org):\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/statesearch2.cfm?State=US&back=fintab&CurrentPageID=7&Search=TableState&EE=1&RE=1\">Federal Incentives for Solar PV</a>\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&State=MD&RE=1&EE=1\">Maryland Incentives for Solar PV</a>\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&State=DC&RE=1&EE=1\">District of Columbia Incentives for Solar PV</a>\r\n\r\n<h2>Industry Organizations</h2>\r\n\r\n<a href=\"http://www.ases.org/\">American Solar Energy Society</a> Professional Member\r\n<img src=\"/~uspvinc/main2/sites/default/files/images/ases-logo.jpg\"/> \r\n\r\n<a href=\"http://www.mdv-seia.org/\">Maryland-DC-Virginia Solar Energy Industries Association</a>   Professional Member\r\n\r\n<img src=\"/~uspvinc/main2/sites/default/files/images/MDVSEIA.jpg\"/>\r\n\r\n  \r\n<h2>Contact Us</h2>\r\n<p>\r\nTelephone: 240-344-2657\r\n</p>\r\n<p>\r\nEmail:\r\n\r\n          Sales: sales@uspvinc.com\r\n\r\n          Customer Service: support@uspvinc.com\r\n\r\n          Other Inquiries:  info@uspvinc.com\r\n</p>\r\n<p>\r\nPostal Address: 4539 Metropolitan Court, Frederick MD  21704\r\n</p>\";s:5:\"#rows\";i:20;s:9:\"#required\";b:0;}s:6:\"format\";a:9:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:12:\"Input format\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:7:\"#weight\";N;s:17:\"#element_validate\";a:1:{i:0;s:20:\"filter_form_validate\";}i:1;a:7:{s:5:\"#type\";s:5:\"radio\";s:6:\"#title\";s:13:\"Filtered HTML\";s:14:\"#default_value\";s:1:\"2\";s:13:\"#return_value\";s:1:\"1\";s:8:\"#parents\";a:1:{i:0;s:6:\"format\";}s:12:\"#description\";s:306:\"<ul class=\"tips\"><li>Web page addresses and e-mail addresses turn into links automatically.</li><li>Allowed HTML tags: &lt;a&gt; &lt;em&gt; &lt;strong&gt; &lt;cite&gt; &lt;code&gt; &lt;ul&gt; &lt;ol&gt; &lt;li&gt; &lt;dl&gt; &lt;dt&gt; &lt;dd&gt;</li><li>Lines and paragraphs break automatically.</li></ul>\";s:3:\"#id\";s:13:\"edit-format-1\";}i:2;a:7:{s:5:\"#type\";s:5:\"radio\";s:6:\"#title\";s:9:\"Full HTML\";s:14:\"#default_value\";s:1:\"2\";s:13:\"#return_value\";s:1:\"2\";s:8:\"#parents\";a:1:{i:0;s:6:\"format\";}s:12:\"#description\";s:151:\"<ul class=\"tips\"><li>Web page addresses and e-mail addresses turn into links automatically.</li><li>Lines and paragraphs break automatically.</li></ul>\";s:3:\"#id\";s:13:\"edit-format-2\";}i:3;a:1:{s:6:\"#value\";s:90:\"<p><a href=\"/~uspvinc/main2/filter/tips\">More information about formatting options</a></p>\";}}}s:5:\"#node\";O:8:\"stdClass\":33:{s:3:\"nid\";s:1:\"4\";s:4:\"type\";s:4:\"page\";s:8:\"language\";s:0:\"\";s:3:\"uid\";s:1:\"1\";s:6:\"status\";s:1:\"1\";s:7:\"created\";s:10:\"1265202538\";s:7:\"changed\";s:10:\"1285702357\";s:7:\"comment\";s:1:\"0\";s:7:\"promote\";s:1:\"0\";s:8:\"moderate\";s:1:\"0\";s:6:\"sticky\";s:1:\"0\";s:4:\"tnid\";s:1:\"0\";s:9:\"translate\";s:1:\"0\";s:3:\"vid\";s:1:\"4\";s:12:\"revision_uid\";s:1:\"1\";s:5:\"title\";s:9:\"resources\";s:4:\"body\";s:1245:\"<h2>Internet Resources</h2>\r\n \r\nFrom the Database of State Incentives for Renewables and Efficiency (DSIRE.org):\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/statesearch2.cfm?State=US&back=fintab&CurrentPageID=7&Search=TableState&EE=1&RE=1\">Federal Incentives for Solar PV</a>\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&State=MD&RE=1&EE=1\">Maryland Incentives for Solar PV</a>\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&State=DC&RE=1&EE=1\">District of Columbia Incentives for Solar PV</a>\r\n\r\n<h2>Industry Organizations</h2>\r\n\r\n<a href=\"http://www.ases.org/\">American Solar Energy Society</a> Professional Member\r\n<img src=\"/~uspvinc/main2/sites/default/files/images/ases-logo.jpg\"/> \r\n\r\n<a href=\"http://www.mdv-seia.org/\">Maryland-DC-Virginia Solar Energy Industries Association</a>   Professional Member\r\n\r\n<img src=\"/~uspvinc/main2/sites/default/files/images/MDVSEIA.jpg\"/>\r\n\r\n  \r\n<h2>Contact Us</h2>\r\n<p>\r\nTelephone: 240-344-2657\r\n</p>\r\n<p>\r\nEmail:\r\n\r\n          Sales: sales@uspvinc.com\r\n\r\n          Customer Service: support@uspvinc.com\r\n\r\n          Other Inquiries:  info@uspvinc.com\r\n</p>\r\n<p>\r\nPostal Address: 4539 Metropolitan Court, Frederick MD  21704\r\n</p>\";s:6:\"teaser\";s:569:\"<h2>Internet Resources</h2>\r\n \r\nFrom the Database of State Incentives for Renewables and Efficiency (DSIRE.org):\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/statesearch2.cfm?State=US&back=fintab&CurrentPageID=7&Search=TableState&EE=1&RE=1\">Federal Incentives for Solar PV</a>\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&State=MD&RE=1&EE=1\">Maryland Incentives for Solar PV</a>\r\n\r\n<a href=\"http://www.dsireusa.org/library/includes/map2.cfm?CurrentPageID=1&State=DC&RE=1&EE=1\">District of Columbia Incentives for Solar PV</a>\r\n\r\";s:3:\"log\";N;s:18:\"revision_timestamp\";s:10:\"1285702357\";s:6:\"format\";s:1:\"2\";s:4:\"name\";s:5:\"admin\";s:7:\"picture\";s:0:\"\";s:4:\"data\";s:6:\"a:0:{}\";s:4:\"path\";s:9:\"resources\";s:22:\"last_comment_timestamp\";s:10:\"1265202538\";s:17:\"last_comment_name\";N;s:13:\"comment_count\";s:1:\"0\";s:8:\"taxonomy\";a:0:{}s:4:\"date\";s:25:\"2010-02-03 21:08:58 +0800\";s:8:\"revision\";b:0;s:4:\"menu\";a:48:{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:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:3:\"fit\";s:1:\"2\";s:12:\"number_parts\";s:1:\"2\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:9:\"resources\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:4:\"type\";s:1:\"4\";s:14:\"block_callback\";s:0:\"\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"0\";s:4:\"file\";s:0:\"\";s:9:\"menu_name\";s:14:\"menu-main-menu\";s:4:\"mlid\";s:3:\"284\";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:9:\"resources\";s:7:\"options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:9:\"resources\";}}s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"284\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:4:\"href\";s:6:\"node/4\";s:6:\"access\";b:1;s:17:\"localized_options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:9:\"resources\";}}s:18:\"parent_depth_limit\";i:8;}s:22:\"pathauto_perform_alias\";b:1;}s:20:\"revision_information\";a:7:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:20:\"Revision information\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:7:\"#weight\";i:20;s:8:\"revision\";a:4:{s:7:\"#access\";b:1;s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:19:\"Create new revision\";s:14:\"#default_value\";b:0;}s:3:\"log\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:11:\"Log message\";s:14:\"#default_value\";s:0:\"\";s:5:\"#rows\";i:2;s:12:\"#description\";s:104:\"An explanation of the additions or updates being made to help other authors understand your motivations.\";}}s:6:\"author\";a:8:{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:7:\"#weight\";i:20;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:35:\"Leave blank for <em>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:91:\"Format: <em>2010-02-03 21:08:58 +0800</em>. Leave blank to use the time of form submission.\";s:14:\"#default_value\";s:25:\"2010-02-03 21:08:58 +0800\";}}s:7:\"options\";a:9:{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:7:\"#weight\";i:25;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:\"buttons\";a:3:{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:16:\"node_form_submit\";}}s:7:\"preview\";a:4:{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:6:\"#theme\";a:2:{i:0;s:14:\"page_node_form\";i:1;s:9:\"node_form\";}s:11:\"#parameters\";a:3:{i:0;s:14:\"page_node_form\";i:1;a:3:{s:7:\"storage\";N;s:9:\"submitted\";b:0;s:4:\"post\";a:0:{}}i:2;r:83;}s:9:\"#build_id\";s:37:\"form-1bd5285b039285b262209a5e41d54126\";s:5:\"#type\";s:4:\"form\";s:11:\"#programmed\";b:0;s:13:\"form_build_id\";a:4:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:37:\"form-1bd5285b039285b262209a5e41d54126\";s:3:\"#id\";s:37:\"form-1bd5285b039285b262209a5e41d54126\";s:5:\"#name\";s:13:\"form_build_id\";}s:6:\"#token\";s:14:\"page_node_form\";s:10:\"form_token\";a:3:{s:3:\"#id\";s:30:\"edit-page-node-form-form-token\";s:5:\"#type\";s:5:\"token\";s:14:\"#default_value\";s:32:\"69ee9cfa6b6366390575effcb3429c15\";}s:7:\"form_id\";a:3:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:14:\"page_node_form\";s:3:\"#id\";s:19:\"edit-page-node-form\";}s:12:\"#description\";N;s:11:\"#attributes\";a:0:{}s:9:\"#required\";b:0;s:5:\"#tree\";b:0;s:8:\"#parents\";a:0:{}s:7:\"#method\";s:4:\"post\";s:7:\"#action\";s:27:\"/~uspvinc/main2/node/4/edit\";s:16:\"comment_settings\";a:7:{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:7:\"#weight\";i:30;s:7:\"comment\";a:4:{s:5:\"#type\";s:6:\"radios\";s:8:\"#parents\";a:1:{i:0;s:7:\"comment\";}s:14:\"#default_value\";s:1:\"0\";s:8:\"#options\";a:3:{i:0;s:8:\"Disabled\";i:1;s:9:\"Read only\";i:2;s:10:\"Read/Write\";}}}s:6:\"#cache\";b:1;s:4:\"menu\";a:21:{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:5:\"#tree\";b:1;s:7:\"#weight\";i:-2;s:11:\"#attributes\";a:1:{s:5:\"class\";s:14:\"menu-item-form\";}s:6:\"delete\";a:2:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:22:\"Delete this menu item.\";}s:4:\"mlid\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:3:\"284\";}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\";s:1:\"1\";}s:7:\"options\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:9:\"resources\";}}}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:5:\"#item\";a:48:{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:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:3:\"fit\";s:1:\"2\";s:12:\"number_parts\";s:1:\"2\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:9:\"resources\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:4:\"type\";s:1:\"4\";s:14:\"block_callback\";s:0:\"\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"0\";s:4:\"file\";s:0:\"\";s:9:\"menu_name\";s:14:\"menu-main-menu\";s:4:\"mlid\";s:3:\"284\";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:9:\"resources\";s:7:\"options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:9:\"resources\";}}s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"284\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:4:\"href\";s:6:\"node/4\";s:6:\"access\";b:1;s:17:\"localized_options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:9:\"resources\";}}s:18:\"parent_depth_limit\";i:8;}s:10:\"link_title\";a:5:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:15:\"Menu link title\";s:14:\"#default_value\";s:9:\"resources\";s:12:\"#description\";s:133:\"The link text corresponding to this item that should appear in the menu. Leave blank if you do not wish to add this post to the menu.\";s:9:\"#required\";b:0;}s:6:\"parent\";a:6:{s:5:\"#type\";s:6:\"select\";s:6:\"#title\";s:11:\"Parent item\";s:14:\"#default_value\";s:16:\"menu-main-menu:0\";s:8:\"#options\";a:95:{s:16:\"menu-main-menu:0\";s:11:\"<Main Menu>\";s:18:\"menu-main-menu:283\";s:8:\"-- about\";s:18:\"menu-main-menu:285\";s:11:\"-- services\";s:18:\"menu-main-menu:286\";s:17:\"-- special offers\";s:12:\"navigation:0\";s:12:\"<Navigation>\";s:12:\"navigation:9\";s:26:\"-- Compose tips (disabled)\";s:14:\"navigation:461\";s:29:\"-- Image galleries (disabled)\";s:13:\"navigation:21\";s:13:\"-- My account\";s:14:\"navigation:114\";s:20:\"-- Search (disabled)\";s:14:\"navigation:244\";s:22:\"-- Site map (disabled)\";s:13:\"navigation:11\";s:17:\"-- Create content\";s:14:\"navigation:476\";s:11:\"---- Banner\";s:14:\"navigation:441\";s:10:\"---- Image\";s:14:\"navigation:289\";s:21:\"---- Newsletter issue\";s:14:\"navigation:106\";s:9:\"---- Page\";s:14:\"navigation:388\";s:10:\"---- Panel\";s:14:\"navigation:107\";s:10:\"---- Story\";s:12:\"navigation:2\";s:13:\"-- Administer\";s:13:\"navigation:10\";s:23:\"---- Content management\";s:13:\"navigation:27\";s:15:\"------ Comments\";s:13:\"navigation:28\";s:14:\"------ Content\";s:13:\"navigation:29\";s:20:\"------ Content types\";s:14:\"navigation:462\";s:22:\"------ Image galleries\";s:14:\"navigation:463\";s:19:\"------ Image import\";s:14:\"navigation:538\";s:18:\"------ Newsletters\";s:14:\"navigation:546\";s:20:\"-------- Sent issues\";s:14:\"navigation:541\";s:21:\"-------- Draft issues\";s:14:\"navigation:544\";s:20:\"-------- Newsletters\";s:14:\"navigation:548\";s:22:\"-------- Subscriptions\";s:13:\"navigation:42\";s:20:\"------ Post settings\";s:13:\"navigation:43\";s:21:\"------ RSS publishing\";s:13:\"navigation:94\";s:15:\"------ Taxonomy\";s:13:\"navigation:17\";s:18:\"---- Site building\";s:13:\"navigation:25\";s:13:\"------ Blocks\";s:14:\"navigation:424\";s:20:\"------ Bulk Exporter\";s:13:\"navigation:38\";s:12:\"------ Menus\";s:14:\"navigation:282\";s:18:\"-------- Main Menu\";s:13:\"navigation:89\";s:19:\"-------- Navigation\";s:13:\"navigation:90\";s:22:\"-------- Primary links\";s:14:\"navigation:495\";s:19:\"-------- Right Menu\";s:13:\"navigation:91\";s:24:\"-------- Secondary links\";s:14:\"navigation:387\";s:18:\"------ Mini panels\";s:13:\"navigation:39\";s:14:\"------ Modules\";s:14:\"navigation:412\";s:12:\"------ Pages\";s:14:\"navigation:360\";s:13:\"------ Panels\";s:13:\"navigation:49\";s:13:\"------ Themes\";s:14:\"navigation:335\";s:15:\"------ Triggers\";s:14:\"navigation:501\";s:18:\"------ URL aliases\";s:14:\"navigation:257\";s:12:\"------ Views\";s:13:\"navigation:18\";s:23:\"---- Site configuration\";s:13:\"navigation:23\";s:14:\"------ Actions\";s:14:\"navigation:119\";s:26:\"------ Administration menu\";s:13:\"navigation:24\";s:27:\"------ Administration theme\";s:13:\"navigation:26\";s:17:\"------ Clean URLs\";s:13:\"navigation:30\";s:20:\"------ Date and time\";s:13:\"navigation:33\";s:22:\"------ Error reporting\";s:13:\"navigation:34\";s:18:\"------ File system\";s:13:\"navigation:35\";s:20:\"------ Image toolkit\";s:14:\"navigation:442\";s:13:\"------ Images\";s:13:\"navigation:36\";s:20:\"------ Input formats\";s:13:\"navigation:37\";s:25:\"------ Logging and alerts\";s:14:\"navigation:100\";s:25:\"-------- Database logging\";s:14:\"navigation:245\";s:17:\"------ Nice Menus\";s:13:\"navigation:40\";s:18:\"------ Performance\";s:14:\"navigation:120\";s:22:\"------ Search settings\";s:14:\"navigation:539\";s:17:\"------ Simplenews\";s:14:\"navigation:542\";s:16:\"-------- General\";s:14:\"navigation:543\";s:19:\"-------- Newsletter\";s:14:\"navigation:547\";s:21:\"-------- Subscription\";s:14:\"navigation:545\";s:18:\"-------- Send mail\";s:13:\"navigation:46\";s:23:\"------ Site information\";s:13:\"navigation:47\";s:23:\"------ Site maintenance\";s:14:\"navigation:246\";s:15:\"------ Site map\";s:13:\"navigation:20\";s:20:\"---- User management\";s:13:\"navigation:22\";s:19:\"------ Access rules\";s:13:\"navigation:41\";s:18:\"------ Permissions\";s:13:\"navigation:45\";s:12:\"------ Roles\";s:13:\"navigation:50\";s:20:\"------ User settings\";s:13:\"navigation:51\";s:12:\"------ Users\";s:13:\"navigation:16\";s:12:\"---- Reports\";s:13:\"navigation:93\";s:25:\"------ Recent log entries\";s:13:\"navigation:96\";s:33:\"------ Top \'access denied\' errors\";s:13:\"navigation:97\";s:34:\"------ Top \'page not found\' errors\";s:14:\"navigation:121\";s:25:\"------ Top search phrases\";s:14:\"navigation:105\";s:24:\"------ Available updates\";s:13:\"navigation:48\";s:20:\"------ Status report\";s:13:\"navigation:15\";s:9:\"---- Help\";s:12:\"navigation:4\";s:10:\"-- Log out\";s:15:\"primary-links:0\";s:15:\"<Primary links>\";s:17:\"menu-right-menu:0\";s:12:\"<Right Menu>\";s:19:\"menu-right-menu:496\";s:28:\"-- Financial Calculator Tool\";s:19:\"menu-right-menu:497\";s:21:\"-- News Story Library\";s:19:\"menu-right-menu:498\";s:14:\"-- Latest News\";s:19:\"menu-right-menu:499\";s:25:\"-- SREC Management Portal\";s:17:\"secondary-links:0\";s:17:\"<Secondary links>\";}s:12:\"#description\";s:156:\"The maximum depth for an item and all its children is fixed at 9. Some menu items may not be available as parents if selecting them would exceed this limit.\";s:11:\"#attributes\";a:1:{s:5:\"class\";s:17:\"menu-title-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:1:\"0\";s:12:\"#description\";s:107:\"Optional. In the menu, the heavier items will sink and the lighter items will be positioned nearer the top.\";}}s:7:\"#submit\";a:1:{i:0;s:21:\"menu_node_form_submit\";}s:4:\"path\";a:10:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:17:\"URL path settings\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:0;s:7:\"#access\";b:1;s:7:\"#weight\";i:30;s:4:\"path\";a:6:{s:5:\"#type\";s:9:\"textfield\";s:14:\"#default_value\";s:9:\"resources\";s:10:\"#maxlength\";i:128;s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:12:\"#description\";s:207:\"Optionally specify an alternative URL by which this node 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\";s:1:\"4\";}s:22:\"pathauto_perform_alias\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:15:\"Automatic alias\";s:14:\"#default_value\";b:1;s:12:\"#description\";s:238:\"An alias will be generated for you. If you wish to create your own alias below, uncheck this option. To control the format of the generated aliases, see the <a href=\"/~uspvinc/main2/admin/build/path/pathauto\">automated alias settings</a>.\";s:7:\"#weight\";i:-1;}s:9:\"old_alias\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:9:\"resources\";}}s:11:\"#pre_render\";a:1:{i:0;s:27:\"content_alter_extra_weights\";}s:21:\"#content_extra_fields\";a:6:{s:5:\"title\";a:3:{s:5:\"label\";s:5:\"Title\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:-5;}s:10:\"body_field\";a:4:{s:5:\"label\";s:4:\"Body\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:0;s:4:\"view\";s:4:\"body\";}s:20:\"revision_information\";a:3:{s:5:\"label\";s:20:\"Revision information\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:20;}s:16:\"comment_settings\";a:3:{s:5:\"label\";s:16:\"Comment settings\";s:11:\"description\";s:20:\"Comment module form.\";s:6:\"weight\";i:30;}s:4:\"menu\";a:3:{s:5:\"label\";s:13:\"Menu settings\";s:11:\"description\";s:17:\"Menu module form.\";s:6:\"weight\";i:-2;}s:4:\"path\";a:3:{s:5:\"label\";s:13:\"Path settings\";s:11:\"description\";s:17:\"Path module form.\";s:6:\"weight\";i:30;}}s:12:\"#cache_token\";s:32:\"ea05954e6208c2bed552f97e30d1dad3\";}',1285809482,1285787882,'',1),('form_form-4332a6a752ef201c97b7b7c1a81d7aaa','a:40:{s:3:\"#id\";s:9:\"node-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:1285788403;}s:4:\"type\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:4:\"page\";}s:8:\"language\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:0:\"\";}s:7:\"changed\";a:2:{s:5:\"#type\";s:6:\"hidden\";s:14:\"#default_value\";N;}s:5:\"title\";a:6:{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:10:\"body_field\";a:7:{s:12:\"#after_build\";a:2:{i:0;s:14:\"node_teaser_js\";i:1;s:26:\"node_teaser_include_verify\";}s:7:\"#prefix\";s:32:\"<div class=\"body-field-wrapper\">\";s:7:\"#suffix\";s:6:\"</div>\";s:9:\"teaser_js\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:5:\"#rows\";i:10;s:7:\"#teaser\";s:9:\"edit-body\";s:16:\"#teaser_checkbox\";s:19:\"edit-teaser-include\";s:9:\"#disabled\";b:1;}s:14:\"teaser_include\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:25:\"Show summary in full view\";s:14:\"#default_value\";b:1;s:7:\"#prefix\";s:29:\"<div class=\"teaser-checkbox\">\";s:7:\"#suffix\";s:6:\"</div>\";}s:4:\"body\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:4:\"Body\";s:14:\"#default_value\";N;s:5:\"#rows\";i:20;s:9:\"#required\";b:0;}s:6:\"format\";a:9:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:12:\"Input format\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:7:\"#weight\";N;s:17:\"#element_validate\";a:1:{i:0;s:20:\"filter_form_validate\";}i:1;a:7:{s:5:\"#type\";s:5:\"radio\";s:6:\"#title\";s:13:\"Filtered HTML\";s:14:\"#default_value\";i:1;s:13:\"#return_value\";s:1:\"1\";s:8:\"#parents\";a:1:{i:0;s:6:\"format\";}s:12:\"#description\";s:306:\"<ul class=\"tips\"><li>Web page addresses and e-mail addresses turn into links automatically.</li><li>Allowed HTML tags: &lt;a&gt; &lt;em&gt; &lt;strong&gt; &lt;cite&gt; &lt;code&gt; &lt;ul&gt; &lt;ol&gt; &lt;li&gt; &lt;dl&gt; &lt;dt&gt; &lt;dd&gt;</li><li>Lines and paragraphs break automatically.</li></ul>\";s:3:\"#id\";s:13:\"edit-format-1\";}i:2;a:7:{s:5:\"#type\";s:5:\"radio\";s:6:\"#title\";s:9:\"Full HTML\";s:14:\"#default_value\";i:1;s:13:\"#return_value\";s:1:\"2\";s:8:\"#parents\";a:1:{i:0;s:6:\"format\";}s:12:\"#description\";s:151:\"<ul class=\"tips\"><li>Web page addresses and e-mail addresses turn into links automatically.</li><li>Lines and paragraphs break automatically.</li></ul>\";s:3:\"#id\";s:13:\"edit-format-2\";}i:3;a:1:{s:6:\"#value\";s:90:\"<p><a href=\"/~uspvinc/main2/filter/tips\">More information about formatting options</a></p>\";}}}s:5:\"#node\";O:8:\"stdClass\":15:{s:3:\"uid\";s:1:\"1\";s:4:\"name\";s:5:\"admin\";s:4:\"type\";s:4:\"page\";s:8:\"language\";s:0:\"\";s:4:\"body\";N;s:5:\"title\";N;s:6:\"format\";N;s:6:\"status\";b:1;s:7:\"promote\";b:0;s:6:\"sticky\";b:0;s:7:\"created\";i:1285788403;s:8:\"revision\";b:0;s:7:\"comment\";i: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:13:\"primary-links\";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:22:\"pathauto_perform_alias\";b:1;}s:20:\"revision_information\";a:7:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:20:\"Revision information\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:7:\"#weight\";i:20;s:8:\"revision\";a:4:{s:7:\"#access\";b:1;s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:19:\"Create new revision\";s:14:\"#default_value\";b:0;}s:3:\"log\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:11:\"Log message\";s:14:\"#default_value\";s:0:\"\";s:5:\"#rows\";i:2;s:12:\"#description\";s:104:\"An explanation of the additions or updates being made to help other authors understand your motivations.\";}}s:6:\"author\";a:8:{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:7:\"#weight\";i:20;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:35:\"Leave blank for <em>Anonymous</em>.\";}s:4:\"date\";a:4:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:11:\"Authored on\";s:10:\"#maxlength\";i:25;s:12:\"#description\";s:91:\"Format: <em>2010-09-30 03:26:43 +0800</em>. Leave blank to use the time of form submission.\";}}s:7:\"options\";a:9:{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:7:\"#weight\";i:25;s:6:\"status\";a:3:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:9:\"Published\";s:14:\"#default_value\";b: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\";b: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\";b:0;}}s:7:\"buttons\";a:2:{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:16:\"node_form_submit\";}}s:7:\"preview\";a:4:{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:6:\"#theme\";a:2:{i:0;s:14:\"page_node_form\";i:1;s:9:\"node_form\";}s:11:\"#parameters\";a:3:{i:0;s:14:\"page_node_form\";i:1;a:3:{s:7:\"storage\";N;s:9:\"submitted\";b:0;s:4:\"post\";a:0:{}}i:2;a:4:{s:3:\"uid\";s:1:\"1\";s:4:\"name\";s:5:\"admin\";s:4:\"type\";s:4:\"page\";s:8:\"language\";s:0:\"\";}}s:9:\"#build_id\";s:37:\"form-4332a6a752ef201c97b7b7c1a81d7aaa\";s:5:\"#type\";s:4:\"form\";s:11:\"#programmed\";b:0;s:13:\"form_build_id\";a:4:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:37:\"form-4332a6a752ef201c97b7b7c1a81d7aaa\";s:3:\"#id\";s:37:\"form-4332a6a752ef201c97b7b7c1a81d7aaa\";s:5:\"#name\";s:13:\"form_build_id\";}s:6:\"#token\";s:14:\"page_node_form\";s:10:\"form_token\";a:3:{s:3:\"#id\";s:30:\"edit-page-node-form-form-token\";s:5:\"#type\";s:5:\"token\";s:14:\"#default_value\";s:32:\"69ee9cfa6b6366390575effcb3429c15\";}s:7:\"form_id\";a:3:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:14:\"page_node_form\";s:3:\"#id\";s:19:\"edit-page-node-form\";}s:12:\"#description\";N;s:11:\"#attributes\";a:0:{}s:9:\"#required\";b:0;s:5:\"#tree\";b:0;s:8:\"#parents\";a:0:{}s:7:\"#method\";s:4:\"post\";s:7:\"#action\";s:29:\"/~uspvinc/main2/node/add/page\";s:16:\"comment_settings\";a:7:{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:7:\"#weight\";i:30;s:7:\"comment\";a:4:{s:5:\"#type\";s:6:\"radios\";s:8:\"#parents\";a:1:{i:0;s:7:\"comment\";}s:14:\"#default_value\";i:0;s:8:\"#options\";a:3:{i:0;s:8:\"Disabled\";i:1;s:9:\"Read only\";i:2;s:10:\"Read/Write\";}}}s:6:\"#cache\";b:1;s:4:\"menu\";a:20:{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:5:\"#tree\";b:1;s:7:\"#weight\";i:-2;s:11:\"#attributes\";a:1:{s:5:\"class\";s:14:\"menu-item-form\";}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:0;}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:5:\"#item\";a:12:{s:10:\"link_title\";s:0:\"\";s:4:\"mlid\";i:0;s:4:\"plid\";i:0;s:9:\"menu_name\";s:13:\"primary-links\";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:10:\"link_title\";a:5:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:15:\"Menu link title\";s:14:\"#default_value\";s:0:\"\";s:12:\"#description\";s:133:\"The link text corresponding to this item that should appear in the menu. Leave blank if you do not wish to add this post to the menu.\";s:9:\"#required\";b:0;}s:6:\"parent\";a:6:{s:5:\"#type\";s:6:\"select\";s:6:\"#title\";s:11:\"Parent item\";s:14:\"#default_value\";s:15:\"primary-links:0\";s:8:\"#options\";a:96:{s:16:\"menu-main-menu:0\";s:11:\"<Main Menu>\";s:18:\"menu-main-menu:283\";s:8:\"-- about\";s:18:\"menu-main-menu:284\";s:12:\"-- resources\";s:18:\"menu-main-menu:285\";s:11:\"-- services\";s:18:\"menu-main-menu:286\";s:17:\"-- special offers\";s:12:\"navigation:0\";s:12:\"<Navigation>\";s:12:\"navigation:9\";s:26:\"-- Compose tips (disabled)\";s:14:\"navigation:461\";s:29:\"-- Image galleries (disabled)\";s:13:\"navigation:21\";s:13:\"-- My account\";s:14:\"navigation:114\";s:20:\"-- Search (disabled)\";s:14:\"navigation:244\";s:22:\"-- Site map (disabled)\";s:13:\"navigation:11\";s:17:\"-- Create content\";s:14:\"navigation:476\";s:11:\"---- Banner\";s:14:\"navigation:441\";s:10:\"---- Image\";s:14:\"navigation:289\";s:21:\"---- Newsletter issue\";s:14:\"navigation:106\";s:9:\"---- Page\";s:14:\"navigation:388\";s:10:\"---- Panel\";s:14:\"navigation:107\";s:10:\"---- Story\";s:12:\"navigation:2\";s:13:\"-- Administer\";s:13:\"navigation:10\";s:23:\"---- Content management\";s:13:\"navigation:27\";s:15:\"------ Comments\";s:13:\"navigation:28\";s:14:\"------ Content\";s:13:\"navigation:29\";s:20:\"------ Content types\";s:14:\"navigation:462\";s:22:\"------ Image galleries\";s:14:\"navigation:463\";s:19:\"------ Image import\";s:14:\"navigation:538\";s:18:\"------ Newsletters\";s:14:\"navigation:546\";s:20:\"-------- Sent issues\";s:14:\"navigation:541\";s:21:\"-------- Draft issues\";s:14:\"navigation:544\";s:20:\"-------- Newsletters\";s:14:\"navigation:548\";s:22:\"-------- Subscriptions\";s:13:\"navigation:42\";s:20:\"------ Post settings\";s:13:\"navigation:43\";s:21:\"------ RSS publishing\";s:13:\"navigation:94\";s:15:\"------ Taxonomy\";s:13:\"navigation:17\";s:18:\"---- Site building\";s:13:\"navigation:25\";s:13:\"------ Blocks\";s:14:\"navigation:424\";s:20:\"------ Bulk Exporter\";s:13:\"navigation:38\";s:12:\"------ Menus\";s:14:\"navigation:282\";s:18:\"-------- Main Menu\";s:13:\"navigation:89\";s:19:\"-------- Navigation\";s:13:\"navigation:90\";s:22:\"-------- Primary links\";s:14:\"navigation:495\";s:19:\"-------- Right Menu\";s:13:\"navigation:91\";s:24:\"-------- Secondary links\";s:14:\"navigation:387\";s:18:\"------ Mini panels\";s:13:\"navigation:39\";s:14:\"------ Modules\";s:14:\"navigation:412\";s:12:\"------ Pages\";s:14:\"navigation:360\";s:13:\"------ Panels\";s:13:\"navigation:49\";s:13:\"------ Themes\";s:14:\"navigation:335\";s:15:\"------ Triggers\";s:14:\"navigation:501\";s:18:\"------ URL aliases\";s:14:\"navigation:257\";s:12:\"------ Views\";s:13:\"navigation:18\";s:23:\"---- Site configuration\";s:13:\"navigation:23\";s:14:\"------ Actions\";s:14:\"navigation:119\";s:26:\"------ Administration menu\";s:13:\"navigation:24\";s:27:\"------ Administration theme\";s:13:\"navigation:26\";s:17:\"------ Clean URLs\";s:13:\"navigation:30\";s:20:\"------ Date and time\";s:13:\"navigation:33\";s:22:\"------ Error reporting\";s:13:\"navigation:34\";s:18:\"------ File system\";s:13:\"navigation:35\";s:20:\"------ Image toolkit\";s:14:\"navigation:442\";s:13:\"------ Images\";s:13:\"navigation:36\";s:20:\"------ Input formats\";s:13:\"navigation:37\";s:25:\"------ Logging and alerts\";s:14:\"navigation:100\";s:25:\"-------- Database logging\";s:14:\"navigation:245\";s:17:\"------ Nice Menus\";s:13:\"navigation:40\";s:18:\"------ Performance\";s:14:\"navigation:120\";s:22:\"------ Search settings\";s:14:\"navigation:539\";s:17:\"------ Simplenews\";s:14:\"navigation:542\";s:16:\"-------- General\";s:14:\"navigation:543\";s:19:\"-------- Newsletter\";s:14:\"navigation:547\";s:21:\"-------- Subscription\";s:14:\"navigation:545\";s:18:\"-------- Send mail\";s:13:\"navigation:46\";s:23:\"------ Site information\";s:13:\"navigation:47\";s:23:\"------ Site maintenance\";s:14:\"navigation:246\";s:15:\"------ Site map\";s:13:\"navigation:20\";s:20:\"---- User management\";s:13:\"navigation:22\";s:19:\"------ Access rules\";s:13:\"navigation:41\";s:18:\"------ Permissions\";s:13:\"navigation:45\";s:12:\"------ Roles\";s:13:\"navigation:50\";s:20:\"------ User settings\";s:13:\"navigation:51\";s:12:\"------ Users\";s:13:\"navigation:16\";s:12:\"---- Reports\";s:13:\"navigation:93\";s:25:\"------ Recent log entries\";s:13:\"navigation:96\";s:33:\"------ Top \'access denied\' errors\";s:13:\"navigation:97\";s:34:\"------ Top \'page not found\' errors\";s:14:\"navigation:121\";s:25:\"------ Top search phrases\";s:14:\"navigation:105\";s:24:\"------ Available updates\";s:13:\"navigation:48\";s:20:\"------ Status report\";s:13:\"navigation:15\";s:9:\"---- Help\";s:12:\"navigation:4\";s:10:\"-- Log out\";s:15:\"primary-links:0\";s:15:\"<Primary links>\";s:17:\"menu-right-menu:0\";s:12:\"<Right Menu>\";s:19:\"menu-right-menu:496\";s:28:\"-- Financial Calculator Tool\";s:19:\"menu-right-menu:497\";s:21:\"-- News Story Library\";s:19:\"menu-right-menu:498\";s:14:\"-- Latest News\";s:19:\"menu-right-menu:499\";s:25:\"-- SREC Management Portal\";s:17:\"secondary-links:0\";s:17:\"<Secondary links>\";}s:12:\"#description\";s:156:\"The maximum depth for an item and all its children is fixed at 9. Some menu items may not be available as parents if selecting them would exceed this limit.\";s:11:\"#attributes\";a:1:{s:5:\"class\";s:17:\"menu-title-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:107:\"Optional. In the menu, the heavier items will sink and the lighter items will be positioned nearer the top.\";}}s:7:\"#submit\";a:1:{i:0;s:21:\"menu_node_form_submit\";}s:4:\"path\";a:8:{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:7:\"#access\";b:1;s:7:\"#weight\";i:30;s:4:\"path\";a:6:{s:5:\"#type\";s:9:\"textfield\";s:14:\"#default_value\";N;s:10:\"#maxlength\";i:128;s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:12:\"#description\";s:207:\"Optionally specify an alternative URL by which this node 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:22:\"pathauto_perform_alias\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:15:\"Automatic alias\";s:14:\"#default_value\";b:1;s:12:\"#description\";s:238:\"An alias will be generated for you. If you wish to create your own alias below, uncheck this option. To control the format of the generated aliases, see the <a href=\"/~uspvinc/main2/admin/build/path/pathauto\">automated alias settings</a>.\";s:7:\"#weight\";i:-1;}}s:11:\"#pre_render\";a:1:{i:0;s:27:\"content_alter_extra_weights\";}s:21:\"#content_extra_fields\";a:6:{s:5:\"title\";a:3:{s:5:\"label\";s:5:\"Title\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:-5;}s:10:\"body_field\";a:4:{s:5:\"label\";s:4:\"Body\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:0;s:4:\"view\";s:4:\"body\";}s:20:\"revision_information\";a:3:{s:5:\"label\";s:20:\"Revision information\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:20;}s:16:\"comment_settings\";a:3:{s:5:\"label\";s:16:\"Comment settings\";s:11:\"description\";s:20:\"Comment module form.\";s:6:\"weight\";i:30;}s:4:\"menu\";a:3:{s:5:\"label\";s:13:\"Menu settings\";s:11:\"description\";s:17:\"Menu module form.\";s:6:\"weight\";i:-2;}s:4:\"path\";a:3:{s:5:\"label\";s:13:\"Path settings\";s:11:\"description\";s:17:\"Path module form.\";s:6:\"weight\";i:30;}}s:12:\"#cache_token\";s:32:\"ea05954e6208c2bed552f97e30d1dad3\";}',1285810003,1285788403,'',1),('form_form-afdd1ec0f5b1b28064fbf8222f569055','a:40:{s:3:\"#id\";s:9:\"node-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:1285789887;}s:4:\"type\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:4:\"page\";}s:8:\"language\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:0:\"\";}s:7:\"changed\";a:2:{s:5:\"#type\";s:6:\"hidden\";s:14:\"#default_value\";N;}s:5:\"title\";a:6:{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:10:\"body_field\";a:7:{s:12:\"#after_build\";a:2:{i:0;s:14:\"node_teaser_js\";i:1;s:26:\"node_teaser_include_verify\";}s:7:\"#prefix\";s:32:\"<div class=\"body-field-wrapper\">\";s:7:\"#suffix\";s:6:\"</div>\";s:9:\"teaser_js\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:5:\"#rows\";i:10;s:7:\"#teaser\";s:9:\"edit-body\";s:16:\"#teaser_checkbox\";s:19:\"edit-teaser-include\";s:9:\"#disabled\";b:1;}s:14:\"teaser_include\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:25:\"Show summary in full view\";s:14:\"#default_value\";b:1;s:7:\"#prefix\";s:29:\"<div class=\"teaser-checkbox\">\";s:7:\"#suffix\";s:6:\"</div>\";}s:4:\"body\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:4:\"Body\";s:14:\"#default_value\";N;s:5:\"#rows\";i:20;s:9:\"#required\";b:0;}s:6:\"format\";a:9:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:12:\"Input format\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:7:\"#weight\";N;s:17:\"#element_validate\";a:1:{i:0;s:20:\"filter_form_validate\";}i:1;a:7:{s:5:\"#type\";s:5:\"radio\";s:6:\"#title\";s:13:\"Filtered HTML\";s:14:\"#default_value\";i:1;s:13:\"#return_value\";s:1:\"1\";s:8:\"#parents\";a:1:{i:0;s:6:\"format\";}s:12:\"#description\";s:306:\"<ul class=\"tips\"><li>Web page addresses and e-mail addresses turn into links automatically.</li><li>Allowed HTML tags: &lt;a&gt; &lt;em&gt; &lt;strong&gt; &lt;cite&gt; &lt;code&gt; &lt;ul&gt; &lt;ol&gt; &lt;li&gt; &lt;dl&gt; &lt;dt&gt; &lt;dd&gt;</li><li>Lines and paragraphs break automatically.</li></ul>\";s:3:\"#id\";s:13:\"edit-format-1\";}i:2;a:7:{s:5:\"#type\";s:5:\"radio\";s:6:\"#title\";s:9:\"Full HTML\";s:14:\"#default_value\";i:1;s:13:\"#return_value\";s:1:\"2\";s:8:\"#parents\";a:1:{i:0;s:6:\"format\";}s:12:\"#description\";s:151:\"<ul class=\"tips\"><li>Web page addresses and e-mail addresses turn into links automatically.</li><li>Lines and paragraphs break automatically.</li></ul>\";s:3:\"#id\";s:13:\"edit-format-2\";}i:3;a:1:{s:6:\"#value\";s:90:\"<p><a href=\"/~uspvinc/main2/filter/tips\">More information about formatting options</a></p>\";}}}s:5:\"#node\";O:8:\"stdClass\":15:{s:3:\"uid\";s:1:\"1\";s:4:\"name\";s:5:\"admin\";s:4:\"type\";s:4:\"page\";s:8:\"language\";s:0:\"\";s:4:\"body\";N;s:5:\"title\";N;s:6:\"format\";N;s:6:\"status\";b:1;s:7:\"promote\";b:0;s:6:\"sticky\";b:0;s:7:\"created\";i:1285789887;s:8:\"revision\";b:0;s:7:\"comment\";i: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:13:\"primary-links\";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:22:\"pathauto_perform_alias\";b:1;}s:20:\"revision_information\";a:7:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:20:\"Revision information\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:7:\"#weight\";i:20;s:8:\"revision\";a:4:{s:7:\"#access\";b:1;s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:19:\"Create new revision\";s:14:\"#default_value\";b:0;}s:3:\"log\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:11:\"Log message\";s:14:\"#default_value\";s:0:\"\";s:5:\"#rows\";i:2;s:12:\"#description\";s:104:\"An explanation of the additions or updates being made to help other authors understand your motivations.\";}}s:6:\"author\";a:8:{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:7:\"#weight\";i:20;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:35:\"Leave blank for <em>Anonymous</em>.\";}s:4:\"date\";a:4:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:11:\"Authored on\";s:10:\"#maxlength\";i:25;s:12:\"#description\";s:91:\"Format: <em>2010-09-30 03:51:27 +0800</em>. Leave blank to use the time of form submission.\";}}s:7:\"options\";a:9:{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:7:\"#weight\";i:25;s:6:\"status\";a:3:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:9:\"Published\";s:14:\"#default_value\";b: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\";b: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\";b:0;}}s:7:\"buttons\";a:2:{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:16:\"node_form_submit\";}}s:7:\"preview\";a:4:{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:6:\"#theme\";a:2:{i:0;s:14:\"page_node_form\";i:1;s:9:\"node_form\";}s:11:\"#parameters\";a:3:{i:0;s:14:\"page_node_form\";i:1;a:3:{s:7:\"storage\";N;s:9:\"submitted\";b:0;s:4:\"post\";a:0:{}}i:2;a:4:{s:3:\"uid\";s:1:\"1\";s:4:\"name\";s:5:\"admin\";s:4:\"type\";s:4:\"page\";s:8:\"language\";s:0:\"\";}}s:9:\"#build_id\";s:37:\"form-afdd1ec0f5b1b28064fbf8222f569055\";s:5:\"#type\";s:4:\"form\";s:11:\"#programmed\";b:0;s:13:\"form_build_id\";a:4:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:37:\"form-afdd1ec0f5b1b28064fbf8222f569055\";s:3:\"#id\";s:37:\"form-afdd1ec0f5b1b28064fbf8222f569055\";s:5:\"#name\";s:13:\"form_build_id\";}s:6:\"#token\";s:14:\"page_node_form\";s:10:\"form_token\";a:3:{s:3:\"#id\";s:30:\"edit-page-node-form-form-token\";s:5:\"#type\";s:5:\"token\";s:14:\"#default_value\";s:32:\"69ee9cfa6b6366390575effcb3429c15\";}s:7:\"form_id\";a:3:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:14:\"page_node_form\";s:3:\"#id\";s:19:\"edit-page-node-form\";}s:12:\"#description\";N;s:11:\"#attributes\";a:0:{}s:9:\"#required\";b:0;s:5:\"#tree\";b:0;s:8:\"#parents\";a:0:{}s:7:\"#method\";s:4:\"post\";s:7:\"#action\";s:29:\"/~uspvinc/main2/node/add/page\";s:16:\"comment_settings\";a:7:{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:7:\"#weight\";i:30;s:7:\"comment\";a:4:{s:5:\"#type\";s:6:\"radios\";s:8:\"#parents\";a:1:{i:0;s:7:\"comment\";}s:14:\"#default_value\";i:0;s:8:\"#options\";a:3:{i:0;s:8:\"Disabled\";i:1;s:9:\"Read only\";i:2;s:10:\"Read/Write\";}}}s:6:\"#cache\";b:1;s:4:\"menu\";a:20:{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:5:\"#tree\";b:1;s:7:\"#weight\";i:-2;s:11:\"#attributes\";a:1:{s:5:\"class\";s:14:\"menu-item-form\";}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:0;}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:5:\"#item\";a:12:{s:10:\"link_title\";s:0:\"\";s:4:\"mlid\";i:0;s:4:\"plid\";i:0;s:9:\"menu_name\";s:13:\"primary-links\";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:10:\"link_title\";a:5:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:15:\"Menu link title\";s:14:\"#default_value\";s:0:\"\";s:12:\"#description\";s:133:\"The link text corresponding to this item that should appear in the menu. Leave blank if you do not wish to add this post to the menu.\";s:9:\"#required\";b:0;}s:6:\"parent\";a:6:{s:5:\"#type\";s:6:\"select\";s:6:\"#title\";s:11:\"Parent item\";s:14:\"#default_value\";s:15:\"primary-links:0\";s:8:\"#options\";a:96:{s:16:\"menu-main-menu:0\";s:11:\"<Main Menu>\";s:18:\"menu-main-menu:283\";s:8:\"-- about\";s:18:\"menu-main-menu:284\";s:12:\"-- resources\";s:18:\"menu-main-menu:285\";s:11:\"-- services\";s:18:\"menu-main-menu:286\";s:17:\"-- special offers\";s:12:\"navigation:0\";s:12:\"<Navigation>\";s:12:\"navigation:9\";s:26:\"-- Compose tips (disabled)\";s:14:\"navigation:461\";s:29:\"-- Image galleries (disabled)\";s:13:\"navigation:21\";s:13:\"-- My account\";s:14:\"navigation:114\";s:20:\"-- Search (disabled)\";s:14:\"navigation:244\";s:22:\"-- Site map (disabled)\";s:13:\"navigation:11\";s:17:\"-- Create content\";s:14:\"navigation:476\";s:11:\"---- Banner\";s:14:\"navigation:441\";s:10:\"---- Image\";s:14:\"navigation:289\";s:21:\"---- Newsletter issue\";s:14:\"navigation:106\";s:9:\"---- Page\";s:14:\"navigation:388\";s:10:\"---- Panel\";s:14:\"navigation:107\";s:10:\"---- Story\";s:12:\"navigation:2\";s:13:\"-- Administer\";s:13:\"navigation:10\";s:23:\"---- Content management\";s:13:\"navigation:27\";s:15:\"------ Comments\";s:13:\"navigation:28\";s:14:\"------ Content\";s:13:\"navigation:29\";s:20:\"------ Content types\";s:14:\"navigation:462\";s:22:\"------ Image galleries\";s:14:\"navigation:463\";s:19:\"------ Image import\";s:14:\"navigation:538\";s:18:\"------ Newsletters\";s:14:\"navigation:546\";s:20:\"-------- Sent issues\";s:14:\"navigation:541\";s:21:\"-------- Draft issues\";s:14:\"navigation:544\";s:20:\"-------- Newsletters\";s:14:\"navigation:548\";s:22:\"-------- Subscriptions\";s:13:\"navigation:42\";s:20:\"------ Post settings\";s:13:\"navigation:43\";s:21:\"------ RSS publishing\";s:13:\"navigation:94\";s:15:\"------ Taxonomy\";s:13:\"navigation:17\";s:18:\"---- Site building\";s:13:\"navigation:25\";s:13:\"------ Blocks\";s:14:\"navigation:424\";s:20:\"------ Bulk Exporter\";s:13:\"navigation:38\";s:12:\"------ Menus\";s:14:\"navigation:282\";s:18:\"-------- Main Menu\";s:13:\"navigation:89\";s:19:\"-------- Navigation\";s:13:\"navigation:90\";s:22:\"-------- Primary links\";s:14:\"navigation:495\";s:19:\"-------- Right Menu\";s:13:\"navigation:91\";s:24:\"-------- Secondary links\";s:14:\"navigation:387\";s:18:\"------ Mini panels\";s:13:\"navigation:39\";s:14:\"------ Modules\";s:14:\"navigation:412\";s:12:\"------ Pages\";s:14:\"navigation:360\";s:13:\"------ Panels\";s:13:\"navigation:49\";s:13:\"------ Themes\";s:14:\"navigation:335\";s:15:\"------ Triggers\";s:14:\"navigation:501\";s:18:\"------ URL aliases\";s:14:\"navigation:257\";s:12:\"------ Views\";s:13:\"navigation:18\";s:23:\"---- Site configuration\";s:13:\"navigation:23\";s:14:\"------ Actions\";s:14:\"navigation:119\";s:26:\"------ Administration menu\";s:13:\"navigation:24\";s:27:\"------ Administration theme\";s:13:\"navigation:26\";s:17:\"------ Clean URLs\";s:13:\"navigation:30\";s:20:\"------ Date and time\";s:13:\"navigation:33\";s:22:\"------ Error reporting\";s:13:\"navigation:34\";s:18:\"------ File system\";s:13:\"navigation:35\";s:20:\"------ Image toolkit\";s:14:\"navigation:442\";s:13:\"------ Images\";s:13:\"navigation:36\";s:20:\"------ Input formats\";s:13:\"navigation:37\";s:25:\"------ Logging and alerts\";s:14:\"navigation:100\";s:25:\"-------- Database logging\";s:14:\"navigation:245\";s:17:\"------ Nice Menus\";s:13:\"navigation:40\";s:18:\"------ Performance\";s:14:\"navigation:120\";s:22:\"------ Search settings\";s:14:\"navigation:539\";s:17:\"------ Simplenews\";s:14:\"navigation:542\";s:16:\"-------- General\";s:14:\"navigation:543\";s:19:\"-------- Newsletter\";s:14:\"navigation:547\";s:21:\"-------- Subscription\";s:14:\"navigation:545\";s:18:\"-------- Send mail\";s:13:\"navigation:46\";s:23:\"------ Site information\";s:13:\"navigation:47\";s:23:\"------ Site maintenance\";s:14:\"navigation:246\";s:15:\"------ Site map\";s:13:\"navigation:20\";s:20:\"---- User management\";s:13:\"navigation:22\";s:19:\"------ Access rules\";s:13:\"navigation:41\";s:18:\"------ Permissions\";s:13:\"navigation:45\";s:12:\"------ Roles\";s:13:\"navigation:50\";s:20:\"------ User settings\";s:13:\"navigation:51\";s:12:\"------ Users\";s:13:\"navigation:16\";s:12:\"---- Reports\";s:13:\"navigation:93\";s:25:\"------ Recent log entries\";s:13:\"navigation:96\";s:33:\"------ Top \'access denied\' errors\";s:13:\"navigation:97\";s:34:\"------ Top \'page not found\' errors\";s:14:\"navigation:121\";s:25:\"------ Top search phrases\";s:14:\"navigation:105\";s:24:\"------ Available updates\";s:13:\"navigation:48\";s:20:\"------ Status report\";s:13:\"navigation:15\";s:9:\"---- Help\";s:12:\"navigation:4\";s:10:\"-- Log out\";s:15:\"primary-links:0\";s:15:\"<Primary links>\";s:17:\"menu-right-menu:0\";s:12:\"<Right Menu>\";s:19:\"menu-right-menu:496\";s:28:\"-- Financial Calculator Tool\";s:19:\"menu-right-menu:497\";s:21:\"-- News Story Library\";s:19:\"menu-right-menu:498\";s:14:\"-- Latest News\";s:19:\"menu-right-menu:499\";s:25:\"-- SREC Management Portal\";s:17:\"secondary-links:0\";s:17:\"<Secondary links>\";}s:12:\"#description\";s:156:\"The maximum depth for an item and all its children is fixed at 9. Some menu items may not be available as parents if selecting them would exceed this limit.\";s:11:\"#attributes\";a:1:{s:5:\"class\";s:17:\"menu-title-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:107:\"Optional. In the menu, the heavier items will sink and the lighter items will be positioned nearer the top.\";}}s:7:\"#submit\";a:1:{i:0;s:21:\"menu_node_form_submit\";}s:4:\"path\";a:8:{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:7:\"#access\";b:1;s:7:\"#weight\";i:30;s:4:\"path\";a:6:{s:5:\"#type\";s:9:\"textfield\";s:14:\"#default_value\";N;s:10:\"#maxlength\";i:128;s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:12:\"#description\";s:207:\"Optionally specify an alternative URL by which this node 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:22:\"pathauto_perform_alias\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:15:\"Automatic alias\";s:14:\"#default_value\";b:1;s:12:\"#description\";s:238:\"An alias will be generated for you. If you wish to create your own alias below, uncheck this option. To control the format of the generated aliases, see the <a href=\"/~uspvinc/main2/admin/build/path/pathauto\">automated alias settings</a>.\";s:7:\"#weight\";i:-1;}}s:11:\"#pre_render\";a:1:{i:0;s:27:\"content_alter_extra_weights\";}s:21:\"#content_extra_fields\";a:6:{s:5:\"title\";a:3:{s:5:\"label\";s:5:\"Title\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:-5;}s:10:\"body_field\";a:4:{s:5:\"label\";s:4:\"Body\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:0;s:4:\"view\";s:4:\"body\";}s:20:\"revision_information\";a:3:{s:5:\"label\";s:20:\"Revision information\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:20;}s:16:\"comment_settings\";a:3:{s:5:\"label\";s:16:\"Comment settings\";s:11:\"description\";s:20:\"Comment module form.\";s:6:\"weight\";i:30;}s:4:\"menu\";a:3:{s:5:\"label\";s:13:\"Menu settings\";s:11:\"description\";s:17:\"Menu module form.\";s:6:\"weight\";i:-2;}s:4:\"path\";a:3:{s:5:\"label\";s:13:\"Path settings\";s:11:\"description\";s:17:\"Path module form.\";s:6:\"weight\";i:30;}}s:12:\"#cache_token\";s:32:\"ea05954e6208c2bed552f97e30d1dad3\";}',1285811487,1285789887,'',1),('form_form-9972880ddbe0b9cacbaeaed7a1a63ca3','a:40:{s:3:\"#id\";s:9:\"node-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:1285789925;}s:4:\"type\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:4:\"page\";}s:8:\"language\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:0:\"\";}s:7:\"changed\";a:2:{s:5:\"#type\";s:6:\"hidden\";s:14:\"#default_value\";N;}s:5:\"title\";a:6:{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:10:\"body_field\";a:7:{s:12:\"#after_build\";a:2:{i:0;s:14:\"node_teaser_js\";i:1;s:26:\"node_teaser_include_verify\";}s:7:\"#prefix\";s:32:\"<div class=\"body-field-wrapper\">\";s:7:\"#suffix\";s:6:\"</div>\";s:9:\"teaser_js\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:5:\"#rows\";i:10;s:7:\"#teaser\";s:9:\"edit-body\";s:16:\"#teaser_checkbox\";s:19:\"edit-teaser-include\";s:9:\"#disabled\";b:1;}s:14:\"teaser_include\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:25:\"Show summary in full view\";s:14:\"#default_value\";b:1;s:7:\"#prefix\";s:29:\"<div class=\"teaser-checkbox\">\";s:7:\"#suffix\";s:6:\"</div>\";}s:4:\"body\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:4:\"Body\";s:14:\"#default_value\";N;s:5:\"#rows\";i:20;s:9:\"#required\";b:0;}s:6:\"format\";a:9:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:12:\"Input format\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:7:\"#weight\";N;s:17:\"#element_validate\";a:1:{i:0;s:20:\"filter_form_validate\";}i:1;a:7:{s:5:\"#type\";s:5:\"radio\";s:6:\"#title\";s:13:\"Filtered HTML\";s:14:\"#default_value\";i:1;s:13:\"#return_value\";s:1:\"1\";s:8:\"#parents\";a:1:{i:0;s:6:\"format\";}s:12:\"#description\";s:306:\"<ul class=\"tips\"><li>Web page addresses and e-mail addresses turn into links automatically.</li><li>Allowed HTML tags: &lt;a&gt; &lt;em&gt; &lt;strong&gt; &lt;cite&gt; &lt;code&gt; &lt;ul&gt; &lt;ol&gt; &lt;li&gt; &lt;dl&gt; &lt;dt&gt; &lt;dd&gt;</li><li>Lines and paragraphs break automatically.</li></ul>\";s:3:\"#id\";s:13:\"edit-format-1\";}i:2;a:7:{s:5:\"#type\";s:5:\"radio\";s:6:\"#title\";s:9:\"Full HTML\";s:14:\"#default_value\";i:1;s:13:\"#return_value\";s:1:\"2\";s:8:\"#parents\";a:1:{i:0;s:6:\"format\";}s:12:\"#description\";s:151:\"<ul class=\"tips\"><li>Web page addresses and e-mail addresses turn into links automatically.</li><li>Lines and paragraphs break automatically.</li></ul>\";s:3:\"#id\";s:13:\"edit-format-2\";}i:3;a:1:{s:6:\"#value\";s:90:\"<p><a href=\"/~uspvinc/main2/filter/tips\">More information about formatting options</a></p>\";}}}s:5:\"#node\";O:8:\"stdClass\":15:{s:3:\"uid\";s:1:\"1\";s:4:\"name\";s:5:\"admin\";s:4:\"type\";s:4:\"page\";s:8:\"language\";s:0:\"\";s:4:\"body\";N;s:5:\"title\";N;s:6:\"format\";N;s:6:\"status\";b:1;s:7:\"promote\";b:0;s:6:\"sticky\";b:0;s:7:\"created\";i:1285789925;s:8:\"revision\";b:0;s:7:\"comment\";i: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:13:\"primary-links\";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:22:\"pathauto_perform_alias\";b:1;}s:20:\"revision_information\";a:7:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:20:\"Revision information\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:7:\"#weight\";i:20;s:8:\"revision\";a:4:{s:7:\"#access\";b:1;s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:19:\"Create new revision\";s:14:\"#default_value\";b:0;}s:3:\"log\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:11:\"Log message\";s:14:\"#default_value\";s:0:\"\";s:5:\"#rows\";i:2;s:12:\"#description\";s:104:\"An explanation of the additions or updates being made to help other authors understand your motivations.\";}}s:6:\"author\";a:8:{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:7:\"#weight\";i:20;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:35:\"Leave blank for <em>Anonymous</em>.\";}s:4:\"date\";a:4:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:11:\"Authored on\";s:10:\"#maxlength\";i:25;s:12:\"#description\";s:91:\"Format: <em>2010-09-30 03:52:05 +0800</em>. Leave blank to use the time of form submission.\";}}s:7:\"options\";a:9:{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:7:\"#weight\";i:25;s:6:\"status\";a:3:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:9:\"Published\";s:14:\"#default_value\";b: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\";b: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\";b:0;}}s:7:\"buttons\";a:2:{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:16:\"node_form_submit\";}}s:7:\"preview\";a:4:{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:6:\"#theme\";a:2:{i:0;s:14:\"page_node_form\";i:1;s:9:\"node_form\";}s:11:\"#parameters\";a:3:{i:0;s:14:\"page_node_form\";i:1;a:3:{s:7:\"storage\";N;s:9:\"submitted\";b:0;s:4:\"post\";a:0:{}}i:2;a:4:{s:3:\"uid\";s:1:\"1\";s:4:\"name\";s:5:\"admin\";s:4:\"type\";s:4:\"page\";s:8:\"language\";s:0:\"\";}}s:9:\"#build_id\";s:37:\"form-9972880ddbe0b9cacbaeaed7a1a63ca3\";s:5:\"#type\";s:4:\"form\";s:11:\"#programmed\";b:0;s:13:\"form_build_id\";a:4:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:37:\"form-9972880ddbe0b9cacbaeaed7a1a63ca3\";s:3:\"#id\";s:37:\"form-9972880ddbe0b9cacbaeaed7a1a63ca3\";s:5:\"#name\";s:13:\"form_build_id\";}s:6:\"#token\";s:14:\"page_node_form\";s:10:\"form_token\";a:3:{s:3:\"#id\";s:30:\"edit-page-node-form-form-token\";s:5:\"#type\";s:5:\"token\";s:14:\"#default_value\";s:32:\"69ee9cfa6b6366390575effcb3429c15\";}s:7:\"form_id\";a:3:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:14:\"page_node_form\";s:3:\"#id\";s:19:\"edit-page-node-form\";}s:12:\"#description\";N;s:11:\"#attributes\";a:0:{}s:9:\"#required\";b:0;s:5:\"#tree\";b:0;s:8:\"#parents\";a:0:{}s:7:\"#method\";s:4:\"post\";s:7:\"#action\";s:29:\"/~uspvinc/main2/node/add/page\";s:16:\"comment_settings\";a:7:{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:7:\"#weight\";i:30;s:7:\"comment\";a:4:{s:5:\"#type\";s:6:\"radios\";s:8:\"#parents\";a:1:{i:0;s:7:\"comment\";}s:14:\"#default_value\";i:0;s:8:\"#options\";a:3:{i:0;s:8:\"Disabled\";i:1;s:9:\"Read only\";i:2;s:10:\"Read/Write\";}}}s:6:\"#cache\";b:1;s:4:\"menu\";a:20:{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:5:\"#tree\";b:1;s:7:\"#weight\";i:-2;s:11:\"#attributes\";a:1:{s:5:\"class\";s:14:\"menu-item-form\";}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:0;}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:5:\"#item\";a:12:{s:10:\"link_title\";s:0:\"\";s:4:\"mlid\";i:0;s:4:\"plid\";i:0;s:9:\"menu_name\";s:13:\"primary-links\";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:10:\"link_title\";a:5:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:15:\"Menu link title\";s:14:\"#default_value\";s:0:\"\";s:12:\"#description\";s:133:\"The link text corresponding to this item that should appear in the menu. Leave blank if you do not wish to add this post to the menu.\";s:9:\"#required\";b:0;}s:6:\"parent\";a:6:{s:5:\"#type\";s:6:\"select\";s:6:\"#title\";s:11:\"Parent item\";s:14:\"#default_value\";s:15:\"primary-links:0\";s:8:\"#options\";a:96:{s:16:\"menu-main-menu:0\";s:11:\"<Main Menu>\";s:18:\"menu-main-menu:283\";s:8:\"-- about\";s:18:\"menu-main-menu:284\";s:12:\"-- resources\";s:18:\"menu-main-menu:285\";s:11:\"-- services\";s:18:\"menu-main-menu:286\";s:17:\"-- special offers\";s:12:\"navigation:0\";s:12:\"<Navigation>\";s:12:\"navigation:9\";s:26:\"-- Compose tips (disabled)\";s:14:\"navigation:461\";s:29:\"-- Image galleries (disabled)\";s:13:\"navigation:21\";s:13:\"-- My account\";s:14:\"navigation:114\";s:20:\"-- Search (disabled)\";s:14:\"navigation:244\";s:22:\"-- Site map (disabled)\";s:13:\"navigation:11\";s:17:\"-- Create content\";s:14:\"navigation:476\";s:11:\"---- Banner\";s:14:\"navigation:441\";s:10:\"---- Image\";s:14:\"navigation:289\";s:21:\"---- Newsletter issue\";s:14:\"navigation:106\";s:9:\"---- Page\";s:14:\"navigation:388\";s:10:\"---- Panel\";s:14:\"navigation:107\";s:10:\"---- Story\";s:12:\"navigation:2\";s:13:\"-- Administer\";s:13:\"navigation:10\";s:23:\"---- Content management\";s:13:\"navigation:27\";s:15:\"------ Comments\";s:13:\"navigation:28\";s:14:\"------ Content\";s:13:\"navigation:29\";s:20:\"------ Content types\";s:14:\"navigation:462\";s:22:\"------ Image galleries\";s:14:\"navigation:463\";s:19:\"------ Image import\";s:14:\"navigation:538\";s:18:\"------ Newsletters\";s:14:\"navigation:546\";s:20:\"-------- Sent issues\";s:14:\"navigation:541\";s:21:\"-------- Draft issues\";s:14:\"navigation:544\";s:20:\"-------- Newsletters\";s:14:\"navigation:548\";s:22:\"-------- Subscriptions\";s:13:\"navigation:42\";s:20:\"------ Post settings\";s:13:\"navigation:43\";s:21:\"------ RSS publishing\";s:13:\"navigation:94\";s:15:\"------ Taxonomy\";s:13:\"navigation:17\";s:18:\"---- Site building\";s:13:\"navigation:25\";s:13:\"------ Blocks\";s:14:\"navigation:424\";s:20:\"------ Bulk Exporter\";s:13:\"navigation:38\";s:12:\"------ Menus\";s:14:\"navigation:282\";s:18:\"-------- Main Menu\";s:13:\"navigation:89\";s:19:\"-------- Navigation\";s:13:\"navigation:90\";s:22:\"-------- Primary links\";s:14:\"navigation:495\";s:19:\"-------- Right Menu\";s:13:\"navigation:91\";s:24:\"-------- Secondary links\";s:14:\"navigation:387\";s:18:\"------ Mini panels\";s:13:\"navigation:39\";s:14:\"------ Modules\";s:14:\"navigation:412\";s:12:\"------ Pages\";s:14:\"navigation:360\";s:13:\"------ Panels\";s:13:\"navigation:49\";s:13:\"------ Themes\";s:14:\"navigation:335\";s:15:\"------ Triggers\";s:14:\"navigation:501\";s:18:\"------ URL aliases\";s:14:\"navigation:257\";s:12:\"------ Views\";s:13:\"navigation:18\";s:23:\"---- Site configuration\";s:13:\"navigation:23\";s:14:\"------ Actions\";s:14:\"navigation:119\";s:26:\"------ Administration menu\";s:13:\"navigation:24\";s:27:\"------ Administration theme\";s:13:\"navigation:26\";s:17:\"------ Clean URLs\";s:13:\"navigation:30\";s:20:\"------ Date and time\";s:13:\"navigation:33\";s:22:\"------ Error reporting\";s:13:\"navigation:34\";s:18:\"------ File system\";s:13:\"navigation:35\";s:20:\"------ Image toolkit\";s:14:\"navigation:442\";s:13:\"------ Images\";s:13:\"navigation:36\";s:20:\"------ Input formats\";s:13:\"navigation:37\";s:25:\"------ Logging and alerts\";s:14:\"navigation:100\";s:25:\"-------- Database logging\";s:14:\"navigation:245\";s:17:\"------ Nice Menus\";s:13:\"navigation:40\";s:18:\"------ Performance\";s:14:\"navigation:120\";s:22:\"------ Search settings\";s:14:\"navigation:539\";s:17:\"------ Simplenews\";s:14:\"navigation:542\";s:16:\"-------- General\";s:14:\"navigation:543\";s:19:\"-------- Newsletter\";s:14:\"navigation:547\";s:21:\"-------- Subscription\";s:14:\"navigation:545\";s:18:\"-------- Send mail\";s:13:\"navigation:46\";s:23:\"------ Site information\";s:13:\"navigation:47\";s:23:\"------ Site maintenance\";s:14:\"navigation:246\";s:15:\"------ Site map\";s:13:\"navigation:20\";s:20:\"---- User management\";s:13:\"navigation:22\";s:19:\"------ Access rules\";s:13:\"navigation:41\";s:18:\"------ Permissions\";s:13:\"navigation:45\";s:12:\"------ Roles\";s:13:\"navigation:50\";s:20:\"------ User settings\";s:13:\"navigation:51\";s:12:\"------ Users\";s:13:\"navigation:16\";s:12:\"---- Reports\";s:13:\"navigation:93\";s:25:\"------ Recent log entries\";s:13:\"navigation:96\";s:33:\"------ Top \'access denied\' errors\";s:13:\"navigation:97\";s:34:\"------ Top \'page not found\' errors\";s:14:\"navigation:121\";s:25:\"------ Top search phrases\";s:14:\"navigation:105\";s:24:\"------ Available updates\";s:13:\"navigation:48\";s:20:\"------ Status report\";s:13:\"navigation:15\";s:9:\"---- Help\";s:12:\"navigation:4\";s:10:\"-- Log out\";s:15:\"primary-links:0\";s:15:\"<Primary links>\";s:17:\"menu-right-menu:0\";s:12:\"<Right Menu>\";s:19:\"menu-right-menu:496\";s:28:\"-- Financial Calculator Tool\";s:19:\"menu-right-menu:497\";s:21:\"-- News Story Library\";s:19:\"menu-right-menu:498\";s:14:\"-- Latest News\";s:19:\"menu-right-menu:499\";s:25:\"-- SREC Management Portal\";s:17:\"secondary-links:0\";s:17:\"<Secondary links>\";}s:12:\"#description\";s:156:\"The maximum depth for an item and all its children is fixed at 9. Some menu items may not be available as parents if selecting them would exceed this limit.\";s:11:\"#attributes\";a:1:{s:5:\"class\";s:17:\"menu-title-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:107:\"Optional. In the menu, the heavier items will sink and the lighter items will be positioned nearer the top.\";}}s:7:\"#submit\";a:1:{i:0;s:21:\"menu_node_form_submit\";}s:4:\"path\";a:8:{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:7:\"#access\";b:1;s:7:\"#weight\";i:30;s:4:\"path\";a:6:{s:5:\"#type\";s:9:\"textfield\";s:14:\"#default_value\";N;s:10:\"#maxlength\";i:128;s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:12:\"#description\";s:207:\"Optionally specify an alternative URL by which this node 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:22:\"pathauto_perform_alias\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:15:\"Automatic alias\";s:14:\"#default_value\";b:1;s:12:\"#description\";s:238:\"An alias will be generated for you. If you wish to create your own alias below, uncheck this option. To control the format of the generated aliases, see the <a href=\"/~uspvinc/main2/admin/build/path/pathauto\">automated alias settings</a>.\";s:7:\"#weight\";i:-1;}}s:11:\"#pre_render\";a:1:{i:0;s:27:\"content_alter_extra_weights\";}s:21:\"#content_extra_fields\";a:6:{s:5:\"title\";a:3:{s:5:\"label\";s:5:\"Title\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:-5;}s:10:\"body_field\";a:4:{s:5:\"label\";s:4:\"Body\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:0;s:4:\"view\";s:4:\"body\";}s:20:\"revision_information\";a:3:{s:5:\"label\";s:20:\"Revision information\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:20;}s:16:\"comment_settings\";a:3:{s:5:\"label\";s:16:\"Comment settings\";s:11:\"description\";s:20:\"Comment module form.\";s:6:\"weight\";i:30;}s:4:\"menu\";a:3:{s:5:\"label\";s:13:\"Menu settings\";s:11:\"description\";s:17:\"Menu module form.\";s:6:\"weight\";i:-2;}s:4:\"path\";a:3:{s:5:\"label\";s:13:\"Path settings\";s:11:\"description\";s:17:\"Path module form.\";s:6:\"weight\";i:30;}}s:12:\"#cache_token\";s:32:\"ea05954e6208c2bed552f97e30d1dad3\";}',1285811525,1285789925,'',1),('form_form-783592be273fa029ccdecd0ddc27357e','a:40:{s:3:\"#id\";s:9:\"node-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:1285789931;}s:4:\"type\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:4:\"page\";}s:8:\"language\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:0:\"\";}s:7:\"changed\";a:2:{s:5:\"#type\";s:6:\"hidden\";s:14:\"#default_value\";N;}s:5:\"title\";a:6:{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:10:\"body_field\";a:7:{s:12:\"#after_build\";a:2:{i:0;s:14:\"node_teaser_js\";i:1;s:26:\"node_teaser_include_verify\";}s:7:\"#prefix\";s:32:\"<div class=\"body-field-wrapper\">\";s:7:\"#suffix\";s:6:\"</div>\";s:9:\"teaser_js\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:5:\"#rows\";i:10;s:7:\"#teaser\";s:9:\"edit-body\";s:16:\"#teaser_checkbox\";s:19:\"edit-teaser-include\";s:9:\"#disabled\";b:1;}s:14:\"teaser_include\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:25:\"Show summary in full view\";s:14:\"#default_value\";b:1;s:7:\"#prefix\";s:29:\"<div class=\"teaser-checkbox\">\";s:7:\"#suffix\";s:6:\"</div>\";}s:4:\"body\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:4:\"Body\";s:14:\"#default_value\";N;s:5:\"#rows\";i:20;s:9:\"#required\";b:0;}s:6:\"format\";a:9:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:12:\"Input format\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:7:\"#weight\";N;s:17:\"#element_validate\";a:1:{i:0;s:20:\"filter_form_validate\";}i:1;a:7:{s:5:\"#type\";s:5:\"radio\";s:6:\"#title\";s:13:\"Filtered HTML\";s:14:\"#default_value\";i:1;s:13:\"#return_value\";s:1:\"1\";s:8:\"#parents\";a:1:{i:0;s:6:\"format\";}s:12:\"#description\";s:306:\"<ul class=\"tips\"><li>Web page addresses and e-mail addresses turn into links automatically.</li><li>Allowed HTML tags: &lt;a&gt; &lt;em&gt; &lt;strong&gt; &lt;cite&gt; &lt;code&gt; &lt;ul&gt; &lt;ol&gt; &lt;li&gt; &lt;dl&gt; &lt;dt&gt; &lt;dd&gt;</li><li>Lines and paragraphs break automatically.</li></ul>\";s:3:\"#id\";s:13:\"edit-format-1\";}i:2;a:7:{s:5:\"#type\";s:5:\"radio\";s:6:\"#title\";s:9:\"Full HTML\";s:14:\"#default_value\";i:1;s:13:\"#return_value\";s:1:\"2\";s:8:\"#parents\";a:1:{i:0;s:6:\"format\";}s:12:\"#description\";s:151:\"<ul class=\"tips\"><li>Web page addresses and e-mail addresses turn into links automatically.</li><li>Lines and paragraphs break automatically.</li></ul>\";s:3:\"#id\";s:13:\"edit-format-2\";}i:3;a:1:{s:6:\"#value\";s:90:\"<p><a href=\"/~uspvinc/main2/filter/tips\">More information about formatting options</a></p>\";}}}s:5:\"#node\";O:8:\"stdClass\":15:{s:3:\"uid\";s:1:\"1\";s:4:\"name\";s:5:\"admin\";s:4:\"type\";s:4:\"page\";s:8:\"language\";s:0:\"\";s:4:\"body\";N;s:5:\"title\";N;s:6:\"format\";N;s:6:\"status\";b:1;s:7:\"promote\";b:0;s:6:\"sticky\";b:0;s:7:\"created\";i:1285789931;s:8:\"revision\";b:0;s:7:\"comment\";i: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:13:\"primary-links\";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:22:\"pathauto_perform_alias\";b:1;}s:20:\"revision_information\";a:7:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:20:\"Revision information\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:7:\"#weight\";i:20;s:8:\"revision\";a:4:{s:7:\"#access\";b:1;s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:19:\"Create new revision\";s:14:\"#default_value\";b:0;}s:3:\"log\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:11:\"Log message\";s:14:\"#default_value\";s:0:\"\";s:5:\"#rows\";i:2;s:12:\"#description\";s:104:\"An explanation of the additions or updates being made to help other authors understand your motivations.\";}}s:6:\"author\";a:8:{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:7:\"#weight\";i:20;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:35:\"Leave blank for <em>Anonymous</em>.\";}s:4:\"date\";a:4:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:11:\"Authored on\";s:10:\"#maxlength\";i:25;s:12:\"#description\";s:91:\"Format: <em>2010-09-30 03:52:11 +0800</em>. Leave blank to use the time of form submission.\";}}s:7:\"options\";a:9:{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:7:\"#weight\";i:25;s:6:\"status\";a:3:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:9:\"Published\";s:14:\"#default_value\";b: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\";b: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\";b:0;}}s:7:\"buttons\";a:2:{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:16:\"node_form_submit\";}}s:7:\"preview\";a:4:{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:6:\"#theme\";a:2:{i:0;s:14:\"page_node_form\";i:1;s:9:\"node_form\";}s:11:\"#parameters\";a:3:{i:0;s:14:\"page_node_form\";i:1;a:3:{s:7:\"storage\";N;s:9:\"submitted\";b:0;s:4:\"post\";a:0:{}}i:2;a:4:{s:3:\"uid\";s:1:\"1\";s:4:\"name\";s:5:\"admin\";s:4:\"type\";s:4:\"page\";s:8:\"language\";s:0:\"\";}}s:9:\"#build_id\";s:37:\"form-783592be273fa029ccdecd0ddc27357e\";s:5:\"#type\";s:4:\"form\";s:11:\"#programmed\";b:0;s:13:\"form_build_id\";a:4:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:37:\"form-783592be273fa029ccdecd0ddc27357e\";s:3:\"#id\";s:37:\"form-783592be273fa029ccdecd0ddc27357e\";s:5:\"#name\";s:13:\"form_build_id\";}s:6:\"#token\";s:14:\"page_node_form\";s:10:\"form_token\";a:3:{s:3:\"#id\";s:30:\"edit-page-node-form-form-token\";s:5:\"#type\";s:5:\"token\";s:14:\"#default_value\";s:32:\"69ee9cfa6b6366390575effcb3429c15\";}s:7:\"form_id\";a:3:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:14:\"page_node_form\";s:3:\"#id\";s:19:\"edit-page-node-form\";}s:12:\"#description\";N;s:11:\"#attributes\";a:0:{}s:9:\"#required\";b:0;s:5:\"#tree\";b:0;s:8:\"#parents\";a:0:{}s:7:\"#method\";s:4:\"post\";s:7:\"#action\";s:29:\"/~uspvinc/main2/node/add/page\";s:16:\"comment_settings\";a:7:{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:7:\"#weight\";i:30;s:7:\"comment\";a:4:{s:5:\"#type\";s:6:\"radios\";s:8:\"#parents\";a:1:{i:0;s:7:\"comment\";}s:14:\"#default_value\";i:0;s:8:\"#options\";a:3:{i:0;s:8:\"Disabled\";i:1;s:9:\"Read only\";i:2;s:10:\"Read/Write\";}}}s:6:\"#cache\";b:1;s:4:\"menu\";a:20:{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:5:\"#tree\";b:1;s:7:\"#weight\";i:-2;s:11:\"#attributes\";a:1:{s:5:\"class\";s:14:\"menu-item-form\";}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:0;}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:5:\"#item\";a:12:{s:10:\"link_title\";s:0:\"\";s:4:\"mlid\";i:0;s:4:\"plid\";i:0;s:9:\"menu_name\";s:13:\"primary-links\";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:10:\"link_title\";a:5:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:15:\"Menu link title\";s:14:\"#default_value\";s:0:\"\";s:12:\"#description\";s:133:\"The link text corresponding to this item that should appear in the menu. Leave blank if you do not wish to add this post to the menu.\";s:9:\"#required\";b:0;}s:6:\"parent\";a:6:{s:5:\"#type\";s:6:\"select\";s:6:\"#title\";s:11:\"Parent item\";s:14:\"#default_value\";s:15:\"primary-links:0\";s:8:\"#options\";a:96:{s:16:\"menu-main-menu:0\";s:11:\"<Main Menu>\";s:18:\"menu-main-menu:283\";s:8:\"-- about\";s:18:\"menu-main-menu:284\";s:12:\"-- resources\";s:18:\"menu-main-menu:285\";s:11:\"-- services\";s:18:\"menu-main-menu:286\";s:17:\"-- special offers\";s:12:\"navigation:0\";s:12:\"<Navigation>\";s:12:\"navigation:9\";s:26:\"-- Compose tips (disabled)\";s:14:\"navigation:461\";s:29:\"-- Image galleries (disabled)\";s:13:\"navigation:21\";s:13:\"-- My account\";s:14:\"navigation:114\";s:20:\"-- Search (disabled)\";s:14:\"navigation:244\";s:22:\"-- Site map (disabled)\";s:13:\"navigation:11\";s:17:\"-- Create content\";s:14:\"navigation:476\";s:11:\"---- Banner\";s:14:\"navigation:441\";s:10:\"---- Image\";s:14:\"navigation:289\";s:21:\"---- Newsletter issue\";s:14:\"navigation:106\";s:9:\"---- Page\";s:14:\"navigation:388\";s:10:\"---- Panel\";s:14:\"navigation:107\";s:10:\"---- Story\";s:12:\"navigation:2\";s:13:\"-- Administer\";s:13:\"navigation:10\";s:23:\"---- Content management\";s:13:\"navigation:27\";s:15:\"------ Comments\";s:13:\"navigation:28\";s:14:\"------ Content\";s:13:\"navigation:29\";s:20:\"------ Content types\";s:14:\"navigation:462\";s:22:\"------ Image galleries\";s:14:\"navigation:463\";s:19:\"------ Image import\";s:14:\"navigation:538\";s:18:\"------ Newsletters\";s:14:\"navigation:546\";s:20:\"-------- Sent issues\";s:14:\"navigation:541\";s:21:\"-------- Draft issues\";s:14:\"navigation:544\";s:20:\"-------- Newsletters\";s:14:\"navigation:548\";s:22:\"-------- Subscriptions\";s:13:\"navigation:42\";s:20:\"------ Post settings\";s:13:\"navigation:43\";s:21:\"------ RSS publishing\";s:13:\"navigation:94\";s:15:\"------ Taxonomy\";s:13:\"navigation:17\";s:18:\"---- Site building\";s:13:\"navigation:25\";s:13:\"------ Blocks\";s:14:\"navigation:424\";s:20:\"------ Bulk Exporter\";s:13:\"navigation:38\";s:12:\"------ Menus\";s:14:\"navigation:282\";s:18:\"-------- Main Menu\";s:13:\"navigation:89\";s:19:\"-------- Navigation\";s:13:\"navigation:90\";s:22:\"-------- Primary links\";s:14:\"navigation:495\";s:19:\"-------- Right Menu\";s:13:\"navigation:91\";s:24:\"-------- Secondary links\";s:14:\"navigation:387\";s:18:\"------ Mini panels\";s:13:\"navigation:39\";s:14:\"------ Modules\";s:14:\"navigation:412\";s:12:\"------ Pages\";s:14:\"navigation:360\";s:13:\"------ Panels\";s:13:\"navigation:49\";s:13:\"------ Themes\";s:14:\"navigation:335\";s:15:\"------ Triggers\";s:14:\"navigation:501\";s:18:\"------ URL aliases\";s:14:\"navigation:257\";s:12:\"------ Views\";s:13:\"navigation:18\";s:23:\"---- Site configuration\";s:13:\"navigation:23\";s:14:\"------ Actions\";s:14:\"navigation:119\";s:26:\"------ Administration menu\";s:13:\"navigation:24\";s:27:\"------ Administration theme\";s:13:\"navigation:26\";s:17:\"------ Clean URLs\";s:13:\"navigation:30\";s:20:\"------ Date and time\";s:13:\"navigation:33\";s:22:\"------ Error reporting\";s:13:\"navigation:34\";s:18:\"------ File system\";s:13:\"navigation:35\";s:20:\"------ Image toolkit\";s:14:\"navigation:442\";s:13:\"------ Images\";s:13:\"navigation:36\";s:20:\"------ Input formats\";s:13:\"navigation:37\";s:25:\"------ Logging and alerts\";s:14:\"navigation:100\";s:25:\"-------- Database logging\";s:14:\"navigation:245\";s:17:\"------ Nice Menus\";s:13:\"navigation:40\";s:18:\"------ Performance\";s:14:\"navigation:120\";s:22:\"------ Search settings\";s:14:\"navigation:539\";s:17:\"------ Simplenews\";s:14:\"navigation:542\";s:16:\"-------- General\";s:14:\"navigation:543\";s:19:\"-------- Newsletter\";s:14:\"navigation:547\";s:21:\"-------- Subscription\";s:14:\"navigation:545\";s:18:\"-------- Send mail\";s:13:\"navigation:46\";s:23:\"------ Site information\";s:13:\"navigation:47\";s:23:\"------ Site maintenance\";s:14:\"navigation:246\";s:15:\"------ Site map\";s:13:\"navigation:20\";s:20:\"---- User management\";s:13:\"navigation:22\";s:19:\"------ Access rules\";s:13:\"navigation:41\";s:18:\"------ Permissions\";s:13:\"navigation:45\";s:12:\"------ Roles\";s:13:\"navigation:50\";s:20:\"------ User settings\";s:13:\"navigation:51\";s:12:\"------ Users\";s:13:\"navigation:16\";s:12:\"---- Reports\";s:13:\"navigation:93\";s:25:\"------ Recent log entries\";s:13:\"navigation:96\";s:33:\"------ Top \'access denied\' errors\";s:13:\"navigation:97\";s:34:\"------ Top \'page not found\' errors\";s:14:\"navigation:121\";s:25:\"------ Top search phrases\";s:14:\"navigation:105\";s:24:\"------ Available updates\";s:13:\"navigation:48\";s:20:\"------ Status report\";s:13:\"navigation:15\";s:9:\"---- Help\";s:12:\"navigation:4\";s:10:\"-- Log out\";s:15:\"primary-links:0\";s:15:\"<Primary links>\";s:17:\"menu-right-menu:0\";s:12:\"<Right Menu>\";s:19:\"menu-right-menu:496\";s:28:\"-- Financial Calculator Tool\";s:19:\"menu-right-menu:497\";s:21:\"-- News Story Library\";s:19:\"menu-right-menu:498\";s:14:\"-- Latest News\";s:19:\"menu-right-menu:499\";s:25:\"-- SREC Management Portal\";s:17:\"secondary-links:0\";s:17:\"<Secondary links>\";}s:12:\"#description\";s:156:\"The maximum depth for an item and all its children is fixed at 9. Some menu items may not be available as parents if selecting them would exceed this limit.\";s:11:\"#attributes\";a:1:{s:5:\"class\";s:17:\"menu-title-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:107:\"Optional. In the menu, the heavier items will sink and the lighter items will be positioned nearer the top.\";}}s:7:\"#submit\";a:1:{i:0;s:21:\"menu_node_form_submit\";}s:4:\"path\";a:8:{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:7:\"#access\";b:1;s:7:\"#weight\";i:30;s:4:\"path\";a:6:{s:5:\"#type\";s:9:\"textfield\";s:14:\"#default_value\";N;s:10:\"#maxlength\";i:128;s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:12:\"#description\";s:207:\"Optionally specify an alternative URL by which this node 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:22:\"pathauto_perform_alias\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:15:\"Automatic alias\";s:14:\"#default_value\";b:1;s:12:\"#description\";s:238:\"An alias will be generated for you. If you wish to create your own alias below, uncheck this option. To control the format of the generated aliases, see the <a href=\"/~uspvinc/main2/admin/build/path/pathauto\">automated alias settings</a>.\";s:7:\"#weight\";i:-1;}}s:11:\"#pre_render\";a:1:{i:0;s:27:\"content_alter_extra_weights\";}s:21:\"#content_extra_fields\";a:6:{s:5:\"title\";a:3:{s:5:\"label\";s:5:\"Title\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:-5;}s:10:\"body_field\";a:4:{s:5:\"label\";s:4:\"Body\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:0;s:4:\"view\";s:4:\"body\";}s:20:\"revision_information\";a:3:{s:5:\"label\";s:20:\"Revision information\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:20;}s:16:\"comment_settings\";a:3:{s:5:\"label\";s:16:\"Comment settings\";s:11:\"description\";s:20:\"Comment module form.\";s:6:\"weight\";i:30;}s:4:\"menu\";a:3:{s:5:\"label\";s:13:\"Menu settings\";s:11:\"description\";s:17:\"Menu module form.\";s:6:\"weight\";i:-2;}s:4:\"path\";a:3:{s:5:\"label\";s:13:\"Path settings\";s:11:\"description\";s:17:\"Path module form.\";s:6:\"weight\";i:30;}}s:12:\"#cache_token\";s:32:\"ea05954e6208c2bed552f97e30d1dad3\";}',1285811531,1285789931,'',1),('form_form-15c4e222ddf22e7513f38d594b4bbd65','a:40:{s:3:\"#id\";s:9:\"node-form\";s:3:\"nid\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:1:\"6\";}s:3:\"vid\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:1:\"6\";}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:\"1265202590\";}s:4:\"type\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:4:\"page\";}s:8:\"language\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:0:\"\";}s:7:\"changed\";a:2:{s:5:\"#type\";s:6:\"hidden\";s:14:\"#default_value\";s:10:\"1285703305\";}s:5:\"title\";a:6:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:5:\"Title\";s:9:\"#required\";b:1;s:14:\"#default_value\";s:34:\"Special Offer for PV System Owners\";s:10:\"#maxlength\";i:255;s:7:\"#weight\";i:-5;}s:10:\"body_field\";a:7:{s:12:\"#after_build\";a:2:{i:0;s:14:\"node_teaser_js\";i:1;s:26:\"node_teaser_include_verify\";}s:7:\"#prefix\";s:32:\"<div class=\"body-field-wrapper\">\";s:7:\"#suffix\";s:6:\"</div>\";s:9:\"teaser_js\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:5:\"#rows\";i:10;s:7:\"#teaser\";s:9:\"edit-body\";s:16:\"#teaser_checkbox\";s:19:\"edit-teaser-include\";s:9:\"#disabled\";b:1;}s:14:\"teaser_include\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:25:\"Show summary in full view\";s:14:\"#default_value\";b:1;s:7:\"#prefix\";s:29:\"<div class=\"teaser-checkbox\">\";s:7:\"#suffix\";s:6:\"</div>\";}s:4:\"body\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:4:\"Body\";s:14:\"#default_value\";s:234:\"<p>\r\nSign-up for USPV\'s REC Management Program today. No up-front or out-of-pocket costs. Don\'t miss out on this opportunity to participate in the Renewable Energy Credit markets and earn hundreds or even thousands of dollars!\r\n</p>\r\n\";s:5:\"#rows\";i:20;s:9:\"#required\";b:0;}s:6:\"format\";a:9:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:12:\"Input format\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:7:\"#weight\";N;s:17:\"#element_validate\";a:1:{i:0;s:20:\"filter_form_validate\";}i:1;a:7:{s:5:\"#type\";s:5:\"radio\";s:6:\"#title\";s:13:\"Filtered HTML\";s:14:\"#default_value\";s:1:\"2\";s:13:\"#return_value\";s:1:\"1\";s:8:\"#parents\";a:1:{i:0;s:6:\"format\";}s:12:\"#description\";s:306:\"<ul class=\"tips\"><li>Web page addresses and e-mail addresses turn into links automatically.</li><li>Allowed HTML tags: &lt;a&gt; &lt;em&gt; &lt;strong&gt; &lt;cite&gt; &lt;code&gt; &lt;ul&gt; &lt;ol&gt; &lt;li&gt; &lt;dl&gt; &lt;dt&gt; &lt;dd&gt;</li><li>Lines and paragraphs break automatically.</li></ul>\";s:3:\"#id\";s:13:\"edit-format-1\";}i:2;a:7:{s:5:\"#type\";s:5:\"radio\";s:6:\"#title\";s:9:\"Full HTML\";s:14:\"#default_value\";s:1:\"2\";s:13:\"#return_value\";s:1:\"2\";s:8:\"#parents\";a:1:{i:0;s:6:\"format\";}s:12:\"#description\";s:151:\"<ul class=\"tips\"><li>Web page addresses and e-mail addresses turn into links automatically.</li><li>Lines and paragraphs break automatically.</li></ul>\";s:3:\"#id\";s:13:\"edit-format-2\";}i:3;a:1:{s:6:\"#value\";s:90:\"<p><a href=\"/~uspvinc/main2/filter/tips\">More information about formatting options</a></p>\";}}}s:5:\"#node\";O:8:\"stdClass\":33:{s:3:\"nid\";s:1:\"6\";s:4:\"type\";s:4:\"page\";s:8:\"language\";s:0:\"\";s:3:\"uid\";s:1:\"1\";s:6:\"status\";s:1:\"1\";s:7:\"created\";s:10:\"1265202590\";s:7:\"changed\";s:10:\"1285703305\";s:7:\"comment\";s:1:\"0\";s:7:\"promote\";s:1:\"0\";s:8:\"moderate\";s:1:\"0\";s:6:\"sticky\";s:1:\"0\";s:4:\"tnid\";s:1:\"0\";s:9:\"translate\";s:1:\"0\";s:3:\"vid\";s:1:\"6\";s:12:\"revision_uid\";s:1:\"1\";s:5:\"title\";s:34:\"Special Offer for PV System Owners\";s:4:\"body\";s:234:\"<p>\r\nSign-up for USPV\'s REC Management Program today. No up-front or out-of-pocket costs. Don\'t miss out on this opportunity to participate in the Renewable Energy Credit markets and earn hundreds or even thousands of dollars!\r\n</p>\r\n\";s:6:\"teaser\";s:234:\"<p>\r\nSign-up for USPV\'s REC Management Program today. No up-front or out-of-pocket costs. Don\'t miss out on this opportunity to participate in the Renewable Energy Credit markets and earn hundreds or even thousands of dollars!\r\n</p>\r\n\";s:3:\"log\";N;s:18:\"revision_timestamp\";s:10:\"1285703305\";s:6:\"format\";s:1:\"2\";s:4:\"name\";s:5:\"admin\";s:7:\"picture\";s:0:\"\";s:4:\"data\";s:6:\"a:0:{}\";s:4:\"path\";s:30:\"special-offer-pv-system-owners\";s:22:\"last_comment_timestamp\";s:10:\"1265202590\";s:17:\"last_comment_name\";N;s:13:\"comment_count\";s:1:\"0\";s:8:\"taxonomy\";a:0:{}s:4:\"date\";s:25:\"2010-02-03 21:09:50 +0800\";s:8:\"revision\";b:0;s:4:\"menu\";a:48:{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:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:3:\"fit\";s:1:\"2\";s:12:\"number_parts\";s:1:\"2\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:14:\"special offers\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:4:\"type\";s:1:\"4\";s:14:\"block_callback\";s:0:\"\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"0\";s:4:\"file\";s:0:\"\";s:9:\"menu_name\";s:14:\"menu-main-menu\";s:4:\"mlid\";s:3:\"286\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/6\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:14:\"special offers\";s:7:\"options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:14:\"special offers\";}}s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"286\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:4:\"href\";s:6:\"node/6\";s:6:\"access\";b:1;s:17:\"localized_options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:14:\"special offers\";}}s:18:\"parent_depth_limit\";i:8;}s:22:\"pathauto_perform_alias\";b:1;}s:20:\"revision_information\";a:7:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:20:\"Revision information\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:7:\"#weight\";i:20;s:8:\"revision\";a:4:{s:7:\"#access\";b:1;s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:19:\"Create new revision\";s:14:\"#default_value\";b:0;}s:3:\"log\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:11:\"Log message\";s:14:\"#default_value\";s:0:\"\";s:5:\"#rows\";i:2;s:12:\"#description\";s:104:\"An explanation of the additions or updates being made to help other authors understand your motivations.\";}}s:6:\"author\";a:8:{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:7:\"#weight\";i:20;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:35:\"Leave blank for <em>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:91:\"Format: <em>2010-02-03 21:09:50 +0800</em>. Leave blank to use the time of form submission.\";s:14:\"#default_value\";s:25:\"2010-02-03 21:09:50 +0800\";}}s:7:\"options\";a:9:{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:7:\"#weight\";i:25;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:\"buttons\";a:3:{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:16:\"node_form_submit\";}}s:7:\"preview\";a:4:{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:6:\"#theme\";a:2:{i:0;s:14:\"page_node_form\";i:1;s:9:\"node_form\";}s:11:\"#parameters\";a:3:{i:0;s:14:\"page_node_form\";i:1;a:3:{s:7:\"storage\";N;s:9:\"submitted\";b:0;s:4:\"post\";a:0:{}}i:2;r:83;}s:9:\"#build_id\";s:37:\"form-15c4e222ddf22e7513f38d594b4bbd65\";s:5:\"#type\";s:4:\"form\";s:11:\"#programmed\";b:0;s:13:\"form_build_id\";a:4:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:37:\"form-15c4e222ddf22e7513f38d594b4bbd65\";s:3:\"#id\";s:37:\"form-15c4e222ddf22e7513f38d594b4bbd65\";s:5:\"#name\";s:13:\"form_build_id\";}s:6:\"#token\";s:14:\"page_node_form\";s:10:\"form_token\";a:3:{s:3:\"#id\";s:30:\"edit-page-node-form-form-token\";s:5:\"#type\";s:5:\"token\";s:14:\"#default_value\";s:32:\"69ee9cfa6b6366390575effcb3429c15\";}s:7:\"form_id\";a:3:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:14:\"page_node_form\";s:3:\"#id\";s:19:\"edit-page-node-form\";}s:12:\"#description\";N;s:11:\"#attributes\";a:0:{}s:9:\"#required\";b:0;s:5:\"#tree\";b:0;s:8:\"#parents\";a:0:{}s:7:\"#method\";s:4:\"post\";s:7:\"#action\";s:27:\"/~uspvinc/main2/node/6/edit\";s:16:\"comment_settings\";a:7:{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:7:\"#weight\";i:30;s:7:\"comment\";a:4:{s:5:\"#type\";s:6:\"radios\";s:8:\"#parents\";a:1:{i:0;s:7:\"comment\";}s:14:\"#default_value\";s:1:\"0\";s:8:\"#options\";a:3:{i:0;s:8:\"Disabled\";i:1;s:9:\"Read only\";i:2;s:10:\"Read/Write\";}}}s:6:\"#cache\";b:1;s:4:\"menu\";a:21:{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:5:\"#tree\";b:1;s:7:\"#weight\";i:-2;s:11:\"#attributes\";a:1:{s:5:\"class\";s:14:\"menu-item-form\";}s:6:\"delete\";a:2:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:22:\"Delete this menu item.\";}s:4:\"mlid\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:3:\"286\";}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\";s:1:\"1\";}s:7:\"options\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:14:\"special offers\";}}}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:5:\"#item\";a:48:{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:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:3:\"fit\";s:1:\"2\";s:12:\"number_parts\";s:1:\"2\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:14:\"special offers\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:4:\"type\";s:1:\"4\";s:14:\"block_callback\";s:0:\"\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"0\";s:4:\"file\";s:0:\"\";s:9:\"menu_name\";s:14:\"menu-main-menu\";s:4:\"mlid\";s:3:\"286\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/6\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:14:\"special offers\";s:7:\"options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:14:\"special offers\";}}s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"286\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:4:\"href\";s:6:\"node/6\";s:6:\"access\";b:1;s:17:\"localized_options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:14:\"special offers\";}}s:18:\"parent_depth_limit\";i:8;}s:10:\"link_title\";a:5:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:15:\"Menu link title\";s:14:\"#default_value\";s:14:\"special offers\";s:12:\"#description\";s:133:\"The link text corresponding to this item that should appear in the menu. Leave blank if you do not wish to add this post to the menu.\";s:9:\"#required\";b:0;}s:6:\"parent\";a:6:{s:5:\"#type\";s:6:\"select\";s:6:\"#title\";s:11:\"Parent item\";s:14:\"#default_value\";s:16:\"menu-main-menu:0\";s:8:\"#options\";a:95:{s:16:\"menu-main-menu:0\";s:11:\"<Main Menu>\";s:18:\"menu-main-menu:283\";s:8:\"-- about\";s:18:\"menu-main-menu:284\";s:12:\"-- resources\";s:18:\"menu-main-menu:285\";s:11:\"-- services\";s:12:\"navigation:0\";s:12:\"<Navigation>\";s:12:\"navigation:9\";s:26:\"-- Compose tips (disabled)\";s:14:\"navigation:461\";s:29:\"-- Image galleries (disabled)\";s:13:\"navigation:21\";s:13:\"-- My account\";s:14:\"navigation:114\";s:20:\"-- Search (disabled)\";s:14:\"navigation:244\";s:22:\"-- Site map (disabled)\";s:13:\"navigation:11\";s:17:\"-- Create content\";s:14:\"navigation:476\";s:11:\"---- Banner\";s:14:\"navigation:441\";s:10:\"---- Image\";s:14:\"navigation:289\";s:21:\"---- Newsletter issue\";s:14:\"navigation:106\";s:9:\"---- Page\";s:14:\"navigation:388\";s:10:\"---- Panel\";s:14:\"navigation:107\";s:10:\"---- Story\";s:12:\"navigation:2\";s:13:\"-- Administer\";s:13:\"navigation:10\";s:23:\"---- Content management\";s:13:\"navigation:27\";s:15:\"------ Comments\";s:13:\"navigation:28\";s:14:\"------ Content\";s:13:\"navigation:29\";s:20:\"------ Content types\";s:14:\"navigation:462\";s:22:\"------ Image galleries\";s:14:\"navigation:463\";s:19:\"------ Image import\";s:14:\"navigation:538\";s:18:\"------ Newsletters\";s:14:\"navigation:546\";s:20:\"-------- Sent issues\";s:14:\"navigation:541\";s:21:\"-------- Draft issues\";s:14:\"navigation:544\";s:20:\"-------- Newsletters\";s:14:\"navigation:548\";s:22:\"-------- Subscriptions\";s:13:\"navigation:42\";s:20:\"------ Post settings\";s:13:\"navigation:43\";s:21:\"------ RSS publishing\";s:13:\"navigation:94\";s:15:\"------ Taxonomy\";s:13:\"navigation:17\";s:18:\"---- Site building\";s:13:\"navigation:25\";s:13:\"------ Blocks\";s:14:\"navigation:424\";s:20:\"------ Bulk Exporter\";s:13:\"navigation:38\";s:12:\"------ Menus\";s:14:\"navigation:282\";s:18:\"-------- Main Menu\";s:13:\"navigation:89\";s:19:\"-------- Navigation\";s:13:\"navigation:90\";s:22:\"-------- Primary links\";s:14:\"navigation:495\";s:19:\"-------- Right Menu\";s:13:\"navigation:91\";s:24:\"-------- Secondary links\";s:14:\"navigation:387\";s:18:\"------ Mini panels\";s:13:\"navigation:39\";s:14:\"------ Modules\";s:14:\"navigation:412\";s:12:\"------ Pages\";s:14:\"navigation:360\";s:13:\"------ Panels\";s:13:\"navigation:49\";s:13:\"------ Themes\";s:14:\"navigation:335\";s:15:\"------ Triggers\";s:14:\"navigation:501\";s:18:\"------ URL aliases\";s:14:\"navigation:257\";s:12:\"------ Views\";s:13:\"navigation:18\";s:23:\"---- Site configuration\";s:13:\"navigation:23\";s:14:\"------ Actions\";s:14:\"navigation:119\";s:26:\"------ Administration menu\";s:13:\"navigation:24\";s:27:\"------ Administration theme\";s:13:\"navigation:26\";s:17:\"------ Clean URLs\";s:13:\"navigation:30\";s:20:\"------ Date and time\";s:13:\"navigation:33\";s:22:\"------ Error reporting\";s:13:\"navigation:34\";s:18:\"------ File system\";s:13:\"navigation:35\";s:20:\"------ Image toolkit\";s:14:\"navigation:442\";s:13:\"------ Images\";s:13:\"navigation:36\";s:20:\"------ Input formats\";s:13:\"navigation:37\";s:25:\"------ Logging and alerts\";s:14:\"navigation:100\";s:25:\"-------- Database logging\";s:14:\"navigation:245\";s:17:\"------ Nice Menus\";s:13:\"navigation:40\";s:18:\"------ Performance\";s:14:\"navigation:120\";s:22:\"------ Search settings\";s:14:\"navigation:539\";s:17:\"------ Simplenews\";s:14:\"navigation:542\";s:16:\"-------- General\";s:14:\"navigation:543\";s:19:\"-------- Newsletter\";s:14:\"navigation:547\";s:21:\"-------- Subscription\";s:14:\"navigation:545\";s:18:\"-------- Send mail\";s:13:\"navigation:46\";s:23:\"------ Site information\";s:13:\"navigation:47\";s:23:\"------ Site maintenance\";s:14:\"navigation:246\";s:15:\"------ Site map\";s:13:\"navigation:20\";s:20:\"---- User management\";s:13:\"navigation:22\";s:19:\"------ Access rules\";s:13:\"navigation:41\";s:18:\"------ Permissions\";s:13:\"navigation:45\";s:12:\"------ Roles\";s:13:\"navigation:50\";s:20:\"------ User settings\";s:13:\"navigation:51\";s:12:\"------ Users\";s:13:\"navigation:16\";s:12:\"---- Reports\";s:13:\"navigation:93\";s:25:\"------ Recent log entries\";s:13:\"navigation:96\";s:33:\"------ Top \'access denied\' errors\";s:13:\"navigation:97\";s:34:\"------ Top \'page not found\' errors\";s:14:\"navigation:121\";s:25:\"------ Top search phrases\";s:14:\"navigation:105\";s:24:\"------ Available updates\";s:13:\"navigation:48\";s:20:\"------ Status report\";s:13:\"navigation:15\";s:9:\"---- Help\";s:12:\"navigation:4\";s:10:\"-- Log out\";s:15:\"primary-links:0\";s:15:\"<Primary links>\";s:17:\"menu-right-menu:0\";s:12:\"<Right Menu>\";s:19:\"menu-right-menu:496\";s:28:\"-- Financial Calculator Tool\";s:19:\"menu-right-menu:497\";s:21:\"-- News Story Library\";s:19:\"menu-right-menu:498\";s:14:\"-- Latest News\";s:19:\"menu-right-menu:499\";s:25:\"-- SREC Management Portal\";s:17:\"secondary-links:0\";s:17:\"<Secondary links>\";}s:12:\"#description\";s:156:\"The maximum depth for an item and all its children is fixed at 9. Some menu items may not be available as parents if selecting them would exceed this limit.\";s:11:\"#attributes\";a:1:{s:5:\"class\";s:17:\"menu-title-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:1:\"0\";s:12:\"#description\";s:107:\"Optional. In the menu, the heavier items will sink and the lighter items will be positioned nearer the top.\";}}s:7:\"#submit\";a:1:{i:0;s:21:\"menu_node_form_submit\";}s:4:\"path\";a:10:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:17:\"URL path settings\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:0;s:7:\"#access\";b:1;s:7:\"#weight\";i:30;s:4:\"path\";a:6:{s:5:\"#type\";s:9:\"textfield\";s:14:\"#default_value\";s:30:\"special-offer-pv-system-owners\";s:10:\"#maxlength\";i:128;s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:12:\"#description\";s:207:\"Optionally specify an alternative URL by which this node 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\";s:1:\"6\";}s:22:\"pathauto_perform_alias\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:15:\"Automatic alias\";s:14:\"#default_value\";b:1;s:12:\"#description\";s:238:\"An alias will be generated for you. If you wish to create your own alias below, uncheck this option. To control the format of the generated aliases, see the <a href=\"/~uspvinc/main2/admin/build/path/pathauto\">automated alias settings</a>.\";s:7:\"#weight\";i:-1;}s:9:\"old_alias\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:30:\"special-offer-pv-system-owners\";}}s:11:\"#pre_render\";a:1:{i:0;s:27:\"content_alter_extra_weights\";}s:21:\"#content_extra_fields\";a:6:{s:5:\"title\";a:3:{s:5:\"label\";s:5:\"Title\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:-5;}s:10:\"body_field\";a:4:{s:5:\"label\";s:4:\"Body\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:0;s:4:\"view\";s:4:\"body\";}s:20:\"revision_information\";a:3:{s:5:\"label\";s:20:\"Revision information\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:20;}s:16:\"comment_settings\";a:3:{s:5:\"label\";s:16:\"Comment settings\";s:11:\"description\";s:20:\"Comment module form.\";s:6:\"weight\";i:30;}s:4:\"menu\";a:3:{s:5:\"label\";s:13:\"Menu settings\";s:11:\"description\";s:17:\"Menu module form.\";s:6:\"weight\";i:-2;}s:4:\"path\";a:3:{s:5:\"label\";s:13:\"Path settings\";s:11:\"description\";s:17:\"Path module form.\";s:6:\"weight\";i:30;}}s:12:\"#cache_token\";s:32:\"ea05954e6208c2bed552f97e30d1dad3\";}',1285815675,1285794075,'',1),('form_form-f39fe41b3704a7a22edfe9a35d306cba','a:40:{s:3:\"#id\";s:9:\"node-form\";s:3:\"nid\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:1:\"6\";}s:3:\"vid\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:1:\"6\";}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:\"1265202590\";}s:4:\"type\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:4:\"page\";}s:8:\"language\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:0:\"\";}s:7:\"changed\";a:2:{s:5:\"#type\";s:6:\"hidden\";s:14:\"#default_value\";s:10:\"1285703305\";}s:5:\"title\";a:6:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:5:\"Title\";s:9:\"#required\";b:1;s:14:\"#default_value\";s:34:\"Special Offer for PV System Owners\";s:10:\"#maxlength\";i:255;s:7:\"#weight\";i:-5;}s:10:\"body_field\";a:7:{s:12:\"#after_build\";a:2:{i:0;s:14:\"node_teaser_js\";i:1;s:26:\"node_teaser_include_verify\";}s:7:\"#prefix\";s:32:\"<div class=\"body-field-wrapper\">\";s:7:\"#suffix\";s:6:\"</div>\";s:9:\"teaser_js\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:5:\"#rows\";i:10;s:7:\"#teaser\";s:9:\"edit-body\";s:16:\"#teaser_checkbox\";s:19:\"edit-teaser-include\";s:9:\"#disabled\";b:1;}s:14:\"teaser_include\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:25:\"Show summary in full view\";s:14:\"#default_value\";b:1;s:7:\"#prefix\";s:29:\"<div class=\"teaser-checkbox\">\";s:7:\"#suffix\";s:6:\"</div>\";}s:4:\"body\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:4:\"Body\";s:14:\"#default_value\";s:234:\"<p>\r\nSign-up for USPV\'s REC Management Program today. No up-front or out-of-pocket costs. Don\'t miss out on this opportunity to participate in the Renewable Energy Credit markets and earn hundreds or even thousands of dollars!\r\n</p>\r\n\";s:5:\"#rows\";i:20;s:9:\"#required\";b:0;}s:6:\"format\";a:9:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:12:\"Input format\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:7:\"#weight\";N;s:17:\"#element_validate\";a:1:{i:0;s:20:\"filter_form_validate\";}i:1;a:7:{s:5:\"#type\";s:5:\"radio\";s:6:\"#title\";s:13:\"Filtered HTML\";s:14:\"#default_value\";s:1:\"2\";s:13:\"#return_value\";s:1:\"1\";s:8:\"#parents\";a:1:{i:0;s:6:\"format\";}s:12:\"#description\";s:306:\"<ul class=\"tips\"><li>Web page addresses and e-mail addresses turn into links automatically.</li><li>Allowed HTML tags: &lt;a&gt; &lt;em&gt; &lt;strong&gt; &lt;cite&gt; &lt;code&gt; &lt;ul&gt; &lt;ol&gt; &lt;li&gt; &lt;dl&gt; &lt;dt&gt; &lt;dd&gt;</li><li>Lines and paragraphs break automatically.</li></ul>\";s:3:\"#id\";s:13:\"edit-format-1\";}i:2;a:7:{s:5:\"#type\";s:5:\"radio\";s:6:\"#title\";s:9:\"Full HTML\";s:14:\"#default_value\";s:1:\"2\";s:13:\"#return_value\";s:1:\"2\";s:8:\"#parents\";a:1:{i:0;s:6:\"format\";}s:12:\"#description\";s:151:\"<ul class=\"tips\"><li>Web page addresses and e-mail addresses turn into links automatically.</li><li>Lines and paragraphs break automatically.</li></ul>\";s:3:\"#id\";s:13:\"edit-format-2\";}i:3;a:1:{s:6:\"#value\";s:90:\"<p><a href=\"/~uspvinc/main2/filter/tips\">More information about formatting options</a></p>\";}}}s:5:\"#node\";O:8:\"stdClass\":33:{s:3:\"nid\";s:1:\"6\";s:4:\"type\";s:4:\"page\";s:8:\"language\";s:0:\"\";s:3:\"uid\";s:1:\"1\";s:6:\"status\";s:1:\"1\";s:7:\"created\";s:10:\"1265202590\";s:7:\"changed\";s:10:\"1285703305\";s:7:\"comment\";s:1:\"0\";s:7:\"promote\";s:1:\"0\";s:8:\"moderate\";s:1:\"0\";s:6:\"sticky\";s:1:\"0\";s:4:\"tnid\";s:1:\"0\";s:9:\"translate\";s:1:\"0\";s:3:\"vid\";s:1:\"6\";s:12:\"revision_uid\";s:1:\"1\";s:5:\"title\";s:34:\"Special Offer for PV System Owners\";s:4:\"body\";s:234:\"<p>\r\nSign-up for USPV\'s REC Management Program today. No up-front or out-of-pocket costs. Don\'t miss out on this opportunity to participate in the Renewable Energy Credit markets and earn hundreds or even thousands of dollars!\r\n</p>\r\n\";s:6:\"teaser\";s:234:\"<p>\r\nSign-up for USPV\'s REC Management Program today. No up-front or out-of-pocket costs. Don\'t miss out on this opportunity to participate in the Renewable Energy Credit markets and earn hundreds or even thousands of dollars!\r\n</p>\r\n\";s:3:\"log\";N;s:18:\"revision_timestamp\";s:10:\"1285703305\";s:6:\"format\";s:1:\"2\";s:4:\"name\";s:5:\"admin\";s:7:\"picture\";s:0:\"\";s:4:\"data\";s:6:\"a:0:{}\";s:4:\"path\";s:30:\"special-offer-pv-system-owners\";s:22:\"last_comment_timestamp\";s:10:\"1265202590\";s:17:\"last_comment_name\";N;s:13:\"comment_count\";s:1:\"0\";s:8:\"taxonomy\";a:0:{}s:4:\"date\";s:25:\"2010-02-03 21:09:50 +0800\";s:8:\"revision\";b:0;s:4:\"menu\";a:48:{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:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:3:\"fit\";s:1:\"2\";s:12:\"number_parts\";s:1:\"2\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:14:\"special offers\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:4:\"type\";s:1:\"4\";s:14:\"block_callback\";s:0:\"\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"0\";s:4:\"file\";s:0:\"\";s:9:\"menu_name\";s:14:\"menu-main-menu\";s:4:\"mlid\";s:3:\"286\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/6\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:14:\"special offers\";s:7:\"options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:14:\"special offers\";}}s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"286\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:4:\"href\";s:6:\"node/6\";s:6:\"access\";b:1;s:17:\"localized_options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:14:\"special offers\";}}s:18:\"parent_depth_limit\";i:8;}s:22:\"pathauto_perform_alias\";b:1;}s:20:\"revision_information\";a:7:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:20:\"Revision information\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:7:\"#weight\";i:20;s:8:\"revision\";a:4:{s:7:\"#access\";b:1;s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:19:\"Create new revision\";s:14:\"#default_value\";b:0;}s:3:\"log\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:11:\"Log message\";s:14:\"#default_value\";s:0:\"\";s:5:\"#rows\";i:2;s:12:\"#description\";s:104:\"An explanation of the additions or updates being made to help other authors understand your motivations.\";}}s:6:\"author\";a:8:{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:7:\"#weight\";i:20;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:35:\"Leave blank for <em>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:91:\"Format: <em>2010-02-03 21:09:50 +0800</em>. Leave blank to use the time of form submission.\";s:14:\"#default_value\";s:25:\"2010-02-03 21:09:50 +0800\";}}s:7:\"options\";a:9:{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:7:\"#weight\";i:25;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:\"buttons\";a:3:{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:16:\"node_form_submit\";}}s:7:\"preview\";a:4:{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:6:\"#theme\";a:2:{i:0;s:14:\"page_node_form\";i:1;s:9:\"node_form\";}s:11:\"#parameters\";a:3:{i:0;s:14:\"page_node_form\";i:1;a:3:{s:7:\"storage\";N;s:9:\"submitted\";b:0;s:4:\"post\";a:0:{}}i:2;r:83;}s:9:\"#build_id\";s:37:\"form-f39fe41b3704a7a22edfe9a35d306cba\";s:5:\"#type\";s:4:\"form\";s:11:\"#programmed\";b:0;s:13:\"form_build_id\";a:4:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:37:\"form-f39fe41b3704a7a22edfe9a35d306cba\";s:3:\"#id\";s:37:\"form-f39fe41b3704a7a22edfe9a35d306cba\";s:5:\"#name\";s:13:\"form_build_id\";}s:6:\"#token\";s:14:\"page_node_form\";s:10:\"form_token\";a:3:{s:3:\"#id\";s:30:\"edit-page-node-form-form-token\";s:5:\"#type\";s:5:\"token\";s:14:\"#default_value\";s:32:\"69ee9cfa6b6366390575effcb3429c15\";}s:7:\"form_id\";a:3:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:14:\"page_node_form\";s:3:\"#id\";s:19:\"edit-page-node-form\";}s:12:\"#description\";N;s:11:\"#attributes\";a:0:{}s:9:\"#required\";b:0;s:5:\"#tree\";b:0;s:8:\"#parents\";a:0:{}s:7:\"#method\";s:4:\"post\";s:7:\"#action\";s:27:\"/~uspvinc/main2/node/6/edit\";s:16:\"comment_settings\";a:7:{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:7:\"#weight\";i:30;s:7:\"comment\";a:4:{s:5:\"#type\";s:6:\"radios\";s:8:\"#parents\";a:1:{i:0;s:7:\"comment\";}s:14:\"#default_value\";s:1:\"0\";s:8:\"#options\";a:3:{i:0;s:8:\"Disabled\";i:1;s:9:\"Read only\";i:2;s:10:\"Read/Write\";}}}s:6:\"#cache\";b:1;s:4:\"menu\";a:21:{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:5:\"#tree\";b:1;s:7:\"#weight\";i:-2;s:11:\"#attributes\";a:1:{s:5:\"class\";s:14:\"menu-item-form\";}s:6:\"delete\";a:2:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:22:\"Delete this menu item.\";}s:4:\"mlid\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:3:\"286\";}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\";s:1:\"1\";}s:7:\"options\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:14:\"special offers\";}}}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:5:\"#item\";a:48:{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:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:3:\"fit\";s:1:\"2\";s:12:\"number_parts\";s:1:\"2\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:14:\"special offers\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:4:\"type\";s:1:\"4\";s:14:\"block_callback\";s:0:\"\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"0\";s:4:\"file\";s:0:\"\";s:9:\"menu_name\";s:14:\"menu-main-menu\";s:4:\"mlid\";s:3:\"286\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/6\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:14:\"special offers\";s:7:\"options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:14:\"special offers\";}}s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"286\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:4:\"href\";s:6:\"node/6\";s:6:\"access\";b:1;s:17:\"localized_options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:14:\"special offers\";}}s:18:\"parent_depth_limit\";i:8;}s:10:\"link_title\";a:5:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:15:\"Menu link title\";s:14:\"#default_value\";s:14:\"special offers\";s:12:\"#description\";s:133:\"The link text corresponding to this item that should appear in the menu. Leave blank if you do not wish to add this post to the menu.\";s:9:\"#required\";b:0;}s:6:\"parent\";a:6:{s:5:\"#type\";s:6:\"select\";s:6:\"#title\";s:11:\"Parent item\";s:14:\"#default_value\";s:16:\"menu-main-menu:0\";s:8:\"#options\";a:95:{s:16:\"menu-main-menu:0\";s:11:\"<Main Menu>\";s:18:\"menu-main-menu:283\";s:8:\"-- about\";s:18:\"menu-main-menu:284\";s:12:\"-- resources\";s:18:\"menu-main-menu:285\";s:11:\"-- services\";s:12:\"navigation:0\";s:12:\"<Navigation>\";s:12:\"navigation:9\";s:26:\"-- Compose tips (disabled)\";s:14:\"navigation:461\";s:29:\"-- Image galleries (disabled)\";s:13:\"navigation:21\";s:13:\"-- My account\";s:14:\"navigation:114\";s:20:\"-- Search (disabled)\";s:14:\"navigation:244\";s:22:\"-- Site map (disabled)\";s:13:\"navigation:11\";s:17:\"-- Create content\";s:14:\"navigation:476\";s:11:\"---- Banner\";s:14:\"navigation:441\";s:10:\"---- Image\";s:14:\"navigation:289\";s:21:\"---- Newsletter issue\";s:14:\"navigation:106\";s:9:\"---- Page\";s:14:\"navigation:388\";s:10:\"---- Panel\";s:14:\"navigation:107\";s:10:\"---- Story\";s:12:\"navigation:2\";s:13:\"-- Administer\";s:13:\"navigation:10\";s:23:\"---- Content management\";s:13:\"navigation:27\";s:15:\"------ Comments\";s:13:\"navigation:28\";s:14:\"------ Content\";s:13:\"navigation:29\";s:20:\"------ Content types\";s:14:\"navigation:462\";s:22:\"------ Image galleries\";s:14:\"navigation:463\";s:19:\"------ Image import\";s:14:\"navigation:538\";s:18:\"------ Newsletters\";s:14:\"navigation:546\";s:20:\"-------- Sent issues\";s:14:\"navigation:541\";s:21:\"-------- Draft issues\";s:14:\"navigation:544\";s:20:\"-------- Newsletters\";s:14:\"navigation:548\";s:22:\"-------- Subscriptions\";s:13:\"navigation:42\";s:20:\"------ Post settings\";s:13:\"navigation:43\";s:21:\"------ RSS publishing\";s:13:\"navigation:94\";s:15:\"------ Taxonomy\";s:13:\"navigation:17\";s:18:\"---- Site building\";s:13:\"navigation:25\";s:13:\"------ Blocks\";s:14:\"navigation:424\";s:20:\"------ Bulk Exporter\";s:13:\"navigation:38\";s:12:\"------ Menus\";s:14:\"navigation:282\";s:18:\"-------- Main Menu\";s:13:\"navigation:89\";s:19:\"-------- Navigation\";s:13:\"navigation:90\";s:22:\"-------- Primary links\";s:14:\"navigation:495\";s:19:\"-------- Right Menu\";s:13:\"navigation:91\";s:24:\"-------- Secondary links\";s:14:\"navigation:387\";s:18:\"------ Mini panels\";s:13:\"navigation:39\";s:14:\"------ Modules\";s:14:\"navigation:412\";s:12:\"------ Pages\";s:14:\"navigation:360\";s:13:\"------ Panels\";s:13:\"navigation:49\";s:13:\"------ Themes\";s:14:\"navigation:335\";s:15:\"------ Triggers\";s:14:\"navigation:501\";s:18:\"------ URL aliases\";s:14:\"navigation:257\";s:12:\"------ Views\";s:13:\"navigation:18\";s:23:\"---- Site configuration\";s:13:\"navigation:23\";s:14:\"------ Actions\";s:14:\"navigation:119\";s:26:\"------ Administration menu\";s:13:\"navigation:24\";s:27:\"------ Administration theme\";s:13:\"navigation:26\";s:17:\"------ Clean URLs\";s:13:\"navigation:30\";s:20:\"------ Date and time\";s:13:\"navigation:33\";s:22:\"------ Error reporting\";s:13:\"navigation:34\";s:18:\"------ File system\";s:13:\"navigation:35\";s:20:\"------ Image toolkit\";s:14:\"navigation:442\";s:13:\"------ Images\";s:13:\"navigation:36\";s:20:\"------ Input formats\";s:13:\"navigation:37\";s:25:\"------ Logging and alerts\";s:14:\"navigation:100\";s:25:\"-------- Database logging\";s:14:\"navigation:245\";s:17:\"------ Nice Menus\";s:13:\"navigation:40\";s:18:\"------ Performance\";s:14:\"navigation:120\";s:22:\"------ Search settings\";s:14:\"navigation:539\";s:17:\"------ Simplenews\";s:14:\"navigation:542\";s:16:\"-------- General\";s:14:\"navigation:543\";s:19:\"-------- Newsletter\";s:14:\"navigation:547\";s:21:\"-------- Subscription\";s:14:\"navigation:545\";s:18:\"-------- Send mail\";s:13:\"navigation:46\";s:23:\"------ Site information\";s:13:\"navigation:47\";s:23:\"------ Site maintenance\";s:14:\"navigation:246\";s:15:\"------ Site map\";s:13:\"navigation:20\";s:20:\"---- User management\";s:13:\"navigation:22\";s:19:\"------ Access rules\";s:13:\"navigation:41\";s:18:\"------ Permissions\";s:13:\"navigation:45\";s:12:\"------ Roles\";s:13:\"navigation:50\";s:20:\"------ User settings\";s:13:\"navigation:51\";s:12:\"------ Users\";s:13:\"navigation:16\";s:12:\"---- Reports\";s:13:\"navigation:93\";s:25:\"------ Recent log entries\";s:13:\"navigation:96\";s:33:\"------ Top \'access denied\' errors\";s:13:\"navigation:97\";s:34:\"------ Top \'page not found\' errors\";s:14:\"navigation:121\";s:25:\"------ Top search phrases\";s:14:\"navigation:105\";s:24:\"------ Available updates\";s:13:\"navigation:48\";s:20:\"------ Status report\";s:13:\"navigation:15\";s:9:\"---- Help\";s:12:\"navigation:4\";s:10:\"-- Log out\";s:15:\"primary-links:0\";s:15:\"<Primary links>\";s:17:\"menu-right-menu:0\";s:12:\"<Right Menu>\";s:19:\"menu-right-menu:496\";s:28:\"-- Financial Calculator Tool\";s:19:\"menu-right-menu:497\";s:21:\"-- News Story Library\";s:19:\"menu-right-menu:498\";s:14:\"-- Latest News\";s:19:\"menu-right-menu:499\";s:25:\"-- SREC Management Portal\";s:17:\"secondary-links:0\";s:17:\"<Secondary links>\";}s:12:\"#description\";s:156:\"The maximum depth for an item and all its children is fixed at 9. Some menu items may not be available as parents if selecting them would exceed this limit.\";s:11:\"#attributes\";a:1:{s:5:\"class\";s:17:\"menu-title-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:1:\"0\";s:12:\"#description\";s:107:\"Optional. In the menu, the heavier items will sink and the lighter items will be positioned nearer the top.\";}}s:7:\"#submit\";a:1:{i:0;s:21:\"menu_node_form_submit\";}s:4:\"path\";a:10:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:17:\"URL path settings\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:0;s:7:\"#access\";b:1;s:7:\"#weight\";i:30;s:4:\"path\";a:6:{s:5:\"#type\";s:9:\"textfield\";s:14:\"#default_value\";s:30:\"special-offer-pv-system-owners\";s:10:\"#maxlength\";i:128;s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:12:\"#description\";s:207:\"Optionally specify an alternative URL by which this node 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\";s:1:\"6\";}s:22:\"pathauto_perform_alias\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:15:\"Automatic alias\";s:14:\"#default_value\";b:1;s:12:\"#description\";s:238:\"An alias will be generated for you. If you wish to create your own alias below, uncheck this option. To control the format of the generated aliases, see the <a href=\"/~uspvinc/main2/admin/build/path/pathauto\">automated alias settings</a>.\";s:7:\"#weight\";i:-1;}s:9:\"old_alias\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:30:\"special-offer-pv-system-owners\";}}s:11:\"#pre_render\";a:1:{i:0;s:27:\"content_alter_extra_weights\";}s:21:\"#content_extra_fields\";a:6:{s:5:\"title\";a:3:{s:5:\"label\";s:5:\"Title\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:-5;}s:10:\"body_field\";a:4:{s:5:\"label\";s:4:\"Body\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:0;s:4:\"view\";s:4:\"body\";}s:20:\"revision_information\";a:3:{s:5:\"label\";s:20:\"Revision information\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:20;}s:16:\"comment_settings\";a:3:{s:5:\"label\";s:16:\"Comment settings\";s:11:\"description\";s:20:\"Comment module form.\";s:6:\"weight\";i:30;}s:4:\"menu\";a:3:{s:5:\"label\";s:13:\"Menu settings\";s:11:\"description\";s:17:\"Menu module form.\";s:6:\"weight\";i:-2;}s:4:\"path\";a:3:{s:5:\"label\";s:13:\"Path settings\";s:11:\"description\";s:17:\"Path module form.\";s:6:\"weight\";i:30;}}s:12:\"#cache_token\";s:32:\"ea05954e6208c2bed552f97e30d1dad3\";}',1285815690,1285794090,'',1),('form_form-90cca0c70d98cc5f353a41f40056cb58','a:40:{s:3:\"#id\";s:9:\"node-form\";s:3:\"nid\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:1:\"6\";}s:3:\"vid\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:1:\"6\";}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:\"1265202590\";}s:4:\"type\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:4:\"page\";}s:8:\"language\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:0:\"\";}s:7:\"changed\";a:2:{s:5:\"#type\";s:6:\"hidden\";s:14:\"#default_value\";s:10:\"1285703305\";}s:5:\"title\";a:6:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:5:\"Title\";s:9:\"#required\";b:1;s:14:\"#default_value\";s:34:\"Special Offer for PV System Owners\";s:10:\"#maxlength\";i:255;s:7:\"#weight\";i:-5;}s:10:\"body_field\";a:7:{s:12:\"#after_build\";a:2:{i:0;s:14:\"node_teaser_js\";i:1;s:26:\"node_teaser_include_verify\";}s:7:\"#prefix\";s:32:\"<div class=\"body-field-wrapper\">\";s:7:\"#suffix\";s:6:\"</div>\";s:9:\"teaser_js\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:5:\"#rows\";i:10;s:7:\"#teaser\";s:9:\"edit-body\";s:16:\"#teaser_checkbox\";s:19:\"edit-teaser-include\";s:9:\"#disabled\";b:1;}s:14:\"teaser_include\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:25:\"Show summary in full view\";s:14:\"#default_value\";b:1;s:7:\"#prefix\";s:29:\"<div class=\"teaser-checkbox\">\";s:7:\"#suffix\";s:6:\"</div>\";}s:4:\"body\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:4:\"Body\";s:14:\"#default_value\";s:234:\"<p>\r\nSign-up for USPV\'s REC Management Program today. No up-front or out-of-pocket costs. Don\'t miss out on this opportunity to participate in the Renewable Energy Credit markets and earn hundreds or even thousands of dollars!\r\n</p>\r\n\";s:5:\"#rows\";i:20;s:9:\"#required\";b:0;}s:6:\"format\";a:9:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:12:\"Input format\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:7:\"#weight\";N;s:17:\"#element_validate\";a:1:{i:0;s:20:\"filter_form_validate\";}i:1;a:7:{s:5:\"#type\";s:5:\"radio\";s:6:\"#title\";s:13:\"Filtered HTML\";s:14:\"#default_value\";s:1:\"2\";s:13:\"#return_value\";s:1:\"1\";s:8:\"#parents\";a:1:{i:0;s:6:\"format\";}s:12:\"#description\";s:306:\"<ul class=\"tips\"><li>Web page addresses and e-mail addresses turn into links automatically.</li><li>Allowed HTML tags: &lt;a&gt; &lt;em&gt; &lt;strong&gt; &lt;cite&gt; &lt;code&gt; &lt;ul&gt; &lt;ol&gt; &lt;li&gt; &lt;dl&gt; &lt;dt&gt; &lt;dd&gt;</li><li>Lines and paragraphs break automatically.</li></ul>\";s:3:\"#id\";s:13:\"edit-format-1\";}i:2;a:7:{s:5:\"#type\";s:5:\"radio\";s:6:\"#title\";s:9:\"Full HTML\";s:14:\"#default_value\";s:1:\"2\";s:13:\"#return_value\";s:1:\"2\";s:8:\"#parents\";a:1:{i:0;s:6:\"format\";}s:12:\"#description\";s:151:\"<ul class=\"tips\"><li>Web page addresses and e-mail addresses turn into links automatically.</li><li>Lines and paragraphs break automatically.</li></ul>\";s:3:\"#id\";s:13:\"edit-format-2\";}i:3;a:1:{s:6:\"#value\";s:90:\"<p><a href=\"/~uspvinc/main2/filter/tips\">More information about formatting options</a></p>\";}}}s:5:\"#node\";O:8:\"stdClass\":33:{s:3:\"nid\";s:1:\"6\";s:4:\"type\";s:4:\"page\";s:8:\"language\";s:0:\"\";s:3:\"uid\";s:1:\"1\";s:6:\"status\";s:1:\"1\";s:7:\"created\";s:10:\"1265202590\";s:7:\"changed\";s:10:\"1285703305\";s:7:\"comment\";s:1:\"0\";s:7:\"promote\";s:1:\"0\";s:8:\"moderate\";s:1:\"0\";s:6:\"sticky\";s:1:\"0\";s:4:\"tnid\";s:1:\"0\";s:9:\"translate\";s:1:\"0\";s:3:\"vid\";s:1:\"6\";s:12:\"revision_uid\";s:1:\"1\";s:5:\"title\";s:34:\"Special Offer for PV System Owners\";s:4:\"body\";s:234:\"<p>\r\nSign-up for USPV\'s REC Management Program today. No up-front or out-of-pocket costs. Don\'t miss out on this opportunity to participate in the Renewable Energy Credit markets and earn hundreds or even thousands of dollars!\r\n</p>\r\n\";s:6:\"teaser\";s:234:\"<p>\r\nSign-up for USPV\'s REC Management Program today. No up-front or out-of-pocket costs. Don\'t miss out on this opportunity to participate in the Renewable Energy Credit markets and earn hundreds or even thousands of dollars!\r\n</p>\r\n\";s:3:\"log\";N;s:18:\"revision_timestamp\";s:10:\"1285703305\";s:6:\"format\";s:1:\"2\";s:4:\"name\";s:5:\"admin\";s:7:\"picture\";s:0:\"\";s:4:\"data\";s:6:\"a:0:{}\";s:4:\"path\";s:30:\"special-offer-pv-system-owners\";s:22:\"last_comment_timestamp\";s:10:\"1265202590\";s:17:\"last_comment_name\";N;s:13:\"comment_count\";s:1:\"0\";s:8:\"taxonomy\";a:0:{}s:4:\"date\";s:25:\"2010-02-03 21:09:50 +0800\";s:8:\"revision\";b:0;s:4:\"menu\";a:48:{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:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:3:\"fit\";s:1:\"2\";s:12:\"number_parts\";s:1:\"2\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:14:\"special offers\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:4:\"type\";s:1:\"4\";s:14:\"block_callback\";s:0:\"\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"0\";s:4:\"file\";s:0:\"\";s:9:\"menu_name\";s:14:\"menu-main-menu\";s:4:\"mlid\";s:3:\"286\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/6\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:14:\"special offers\";s:7:\"options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:14:\"special offers\";}}s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"286\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:4:\"href\";s:6:\"node/6\";s:6:\"access\";b:1;s:17:\"localized_options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:14:\"special offers\";}}s:18:\"parent_depth_limit\";i:8;}s:22:\"pathauto_perform_alias\";b:1;}s:20:\"revision_information\";a:7:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:20:\"Revision information\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:7:\"#weight\";i:20;s:8:\"revision\";a:4:{s:7:\"#access\";b:1;s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:19:\"Create new revision\";s:14:\"#default_value\";b:0;}s:3:\"log\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:11:\"Log message\";s:14:\"#default_value\";s:0:\"\";s:5:\"#rows\";i:2;s:12:\"#description\";s:104:\"An explanation of the additions or updates being made to help other authors understand your motivations.\";}}s:6:\"author\";a:8:{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:7:\"#weight\";i:20;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:35:\"Leave blank for <em>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:91:\"Format: <em>2010-02-03 21:09:50 +0800</em>. Leave blank to use the time of form submission.\";s:14:\"#default_value\";s:25:\"2010-02-03 21:09:50 +0800\";}}s:7:\"options\";a:9:{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:7:\"#weight\";i:25;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:\"buttons\";a:3:{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:16:\"node_form_submit\";}}s:7:\"preview\";a:4:{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:6:\"#theme\";a:2:{i:0;s:14:\"page_node_form\";i:1;s:9:\"node_form\";}s:11:\"#parameters\";a:3:{i:0;s:14:\"page_node_form\";i:1;a:3:{s:7:\"storage\";N;s:9:\"submitted\";b:0;s:4:\"post\";a:0:{}}i:2;r:83;}s:9:\"#build_id\";s:37:\"form-90cca0c70d98cc5f353a41f40056cb58\";s:5:\"#type\";s:4:\"form\";s:11:\"#programmed\";b:0;s:13:\"form_build_id\";a:4:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:37:\"form-90cca0c70d98cc5f353a41f40056cb58\";s:3:\"#id\";s:37:\"form-90cca0c70d98cc5f353a41f40056cb58\";s:5:\"#name\";s:13:\"form_build_id\";}s:6:\"#token\";s:14:\"page_node_form\";s:10:\"form_token\";a:3:{s:3:\"#id\";s:30:\"edit-page-node-form-form-token\";s:5:\"#type\";s:5:\"token\";s:14:\"#default_value\";s:32:\"69ee9cfa6b6366390575effcb3429c15\";}s:7:\"form_id\";a:3:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:14:\"page_node_form\";s:3:\"#id\";s:19:\"edit-page-node-form\";}s:12:\"#description\";N;s:11:\"#attributes\";a:0:{}s:9:\"#required\";b:0;s:5:\"#tree\";b:0;s:8:\"#parents\";a:0:{}s:7:\"#method\";s:4:\"post\";s:7:\"#action\";s:27:\"/~uspvinc/main2/node/6/edit\";s:16:\"comment_settings\";a:7:{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:7:\"#weight\";i:30;s:7:\"comment\";a:4:{s:5:\"#type\";s:6:\"radios\";s:8:\"#parents\";a:1:{i:0;s:7:\"comment\";}s:14:\"#default_value\";s:1:\"0\";s:8:\"#options\";a:3:{i:0;s:8:\"Disabled\";i:1;s:9:\"Read only\";i:2;s:10:\"Read/Write\";}}}s:6:\"#cache\";b:1;s:4:\"menu\";a:21:{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:5:\"#tree\";b:1;s:7:\"#weight\";i:-2;s:11:\"#attributes\";a:1:{s:5:\"class\";s:14:\"menu-item-form\";}s:6:\"delete\";a:2:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:22:\"Delete this menu item.\";}s:4:\"mlid\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:3:\"286\";}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\";s:1:\"1\";}s:7:\"options\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:14:\"special offers\";}}}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:5:\"#item\";a:48:{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:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:3:\"fit\";s:1:\"2\";s:12:\"number_parts\";s:1:\"2\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:14:\"special offers\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:4:\"type\";s:1:\"4\";s:14:\"block_callback\";s:0:\"\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"0\";s:4:\"file\";s:0:\"\";s:9:\"menu_name\";s:14:\"menu-main-menu\";s:4:\"mlid\";s:3:\"286\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/6\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:14:\"special offers\";s:7:\"options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:14:\"special offers\";}}s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"286\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:4:\"href\";s:6:\"node/6\";s:6:\"access\";b:1;s:17:\"localized_options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:14:\"special offers\";}}s:18:\"parent_depth_limit\";i:8;}s:10:\"link_title\";a:5:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:15:\"Menu link title\";s:14:\"#default_value\";s:14:\"special offers\";s:12:\"#description\";s:133:\"The link text corresponding to this item that should appear in the menu. Leave blank if you do not wish to add this post to the menu.\";s:9:\"#required\";b:0;}s:6:\"parent\";a:6:{s:5:\"#type\";s:6:\"select\";s:6:\"#title\";s:11:\"Parent item\";s:14:\"#default_value\";s:16:\"menu-main-menu:0\";s:8:\"#options\";a:95:{s:16:\"menu-main-menu:0\";s:11:\"<Main Menu>\";s:18:\"menu-main-menu:283\";s:8:\"-- about\";s:18:\"menu-main-menu:284\";s:12:\"-- resources\";s:18:\"menu-main-menu:285\";s:11:\"-- services\";s:12:\"navigation:0\";s:12:\"<Navigation>\";s:12:\"navigation:9\";s:26:\"-- Compose tips (disabled)\";s:14:\"navigation:461\";s:29:\"-- Image galleries (disabled)\";s:13:\"navigation:21\";s:13:\"-- My account\";s:14:\"navigation:114\";s:20:\"-- Search (disabled)\";s:14:\"navigation:244\";s:22:\"-- Site map (disabled)\";s:13:\"navigation:11\";s:17:\"-- Create content\";s:14:\"navigation:476\";s:11:\"---- Banner\";s:14:\"navigation:441\";s:10:\"---- Image\";s:14:\"navigation:289\";s:21:\"---- Newsletter issue\";s:14:\"navigation:106\";s:9:\"---- Page\";s:14:\"navigation:388\";s:10:\"---- Panel\";s:14:\"navigation:107\";s:10:\"---- Story\";s:12:\"navigation:2\";s:13:\"-- Administer\";s:13:\"navigation:10\";s:23:\"---- Content management\";s:13:\"navigation:27\";s:15:\"------ Comments\";s:13:\"navigation:28\";s:14:\"------ Content\";s:13:\"navigation:29\";s:20:\"------ Content types\";s:14:\"navigation:462\";s:22:\"------ Image galleries\";s:14:\"navigation:463\";s:19:\"------ Image import\";s:14:\"navigation:538\";s:18:\"------ Newsletters\";s:14:\"navigation:546\";s:20:\"-------- Sent issues\";s:14:\"navigation:541\";s:21:\"-------- Draft issues\";s:14:\"navigation:544\";s:20:\"-------- Newsletters\";s:14:\"navigation:548\";s:22:\"-------- Subscriptions\";s:13:\"navigation:42\";s:20:\"------ Post settings\";s:13:\"navigation:43\";s:21:\"------ RSS publishing\";s:13:\"navigation:94\";s:15:\"------ Taxonomy\";s:13:\"navigation:17\";s:18:\"---- Site building\";s:13:\"navigation:25\";s:13:\"------ Blocks\";s:14:\"navigation:424\";s:20:\"------ Bulk Exporter\";s:13:\"navigation:38\";s:12:\"------ Menus\";s:14:\"navigation:282\";s:18:\"-------- Main Menu\";s:13:\"navigation:89\";s:19:\"-------- Navigation\";s:13:\"navigation:90\";s:22:\"-------- Primary links\";s:14:\"navigation:495\";s:19:\"-------- Right Menu\";s:13:\"navigation:91\";s:24:\"-------- Secondary links\";s:14:\"navigation:387\";s:18:\"------ Mini panels\";s:13:\"navigation:39\";s:14:\"------ Modules\";s:14:\"navigation:412\";s:12:\"------ Pages\";s:14:\"navigation:360\";s:13:\"------ Panels\";s:13:\"navigation:49\";s:13:\"------ Themes\";s:14:\"navigation:335\";s:15:\"------ Triggers\";s:14:\"navigation:501\";s:18:\"------ URL aliases\";s:14:\"navigation:257\";s:12:\"------ Views\";s:13:\"navigation:18\";s:23:\"---- Site configuration\";s:13:\"navigation:23\";s:14:\"------ Actions\";s:14:\"navigation:119\";s:26:\"------ Administration menu\";s:13:\"navigation:24\";s:27:\"------ Administration theme\";s:13:\"navigation:26\";s:17:\"------ Clean URLs\";s:13:\"navigation:30\";s:20:\"------ Date and time\";s:13:\"navigation:33\";s:22:\"------ Error reporting\";s:13:\"navigation:34\";s:18:\"------ File system\";s:13:\"navigation:35\";s:20:\"------ Image toolkit\";s:14:\"navigation:442\";s:13:\"------ Images\";s:13:\"navigation:36\";s:20:\"------ Input formats\";s:13:\"navigation:37\";s:25:\"------ Logging and alerts\";s:14:\"navigation:100\";s:25:\"-------- Database logging\";s:14:\"navigation:245\";s:17:\"------ Nice Menus\";s:13:\"navigation:40\";s:18:\"------ Performance\";s:14:\"navigation:120\";s:22:\"------ Search settings\";s:14:\"navigation:539\";s:17:\"------ Simplenews\";s:14:\"navigation:542\";s:16:\"-------- General\";s:14:\"navigation:543\";s:19:\"-------- Newsletter\";s:14:\"navigation:547\";s:21:\"-------- Subscription\";s:14:\"navigation:545\";s:18:\"-------- Send mail\";s:13:\"navigation:46\";s:23:\"------ Site information\";s:13:\"navigation:47\";s:23:\"------ Site maintenance\";s:14:\"navigation:246\";s:15:\"------ Site map\";s:13:\"navigation:20\";s:20:\"---- User management\";s:13:\"navigation:22\";s:19:\"------ Access rules\";s:13:\"navigation:41\";s:18:\"------ Permissions\";s:13:\"navigation:45\";s:12:\"------ Roles\";s:13:\"navigation:50\";s:20:\"------ User settings\";s:13:\"navigation:51\";s:12:\"------ Users\";s:13:\"navigation:16\";s:12:\"---- Reports\";s:13:\"navigation:93\";s:25:\"------ Recent log entries\";s:13:\"navigation:96\";s:33:\"------ Top \'access denied\' errors\";s:13:\"navigation:97\";s:34:\"------ Top \'page not found\' errors\";s:14:\"navigation:121\";s:25:\"------ Top search phrases\";s:14:\"navigation:105\";s:24:\"------ Available updates\";s:13:\"navigation:48\";s:20:\"------ Status report\";s:13:\"navigation:15\";s:9:\"---- Help\";s:12:\"navigation:4\";s:10:\"-- Log out\";s:15:\"primary-links:0\";s:15:\"<Primary links>\";s:17:\"menu-right-menu:0\";s:12:\"<Right Menu>\";s:19:\"menu-right-menu:496\";s:28:\"-- Financial Calculator Tool\";s:19:\"menu-right-menu:497\";s:21:\"-- News Story Library\";s:19:\"menu-right-menu:498\";s:14:\"-- Latest News\";s:19:\"menu-right-menu:499\";s:25:\"-- SREC Management Portal\";s:17:\"secondary-links:0\";s:17:\"<Secondary links>\";}s:12:\"#description\";s:156:\"The maximum depth for an item and all its children is fixed at 9. Some menu items may not be available as parents if selecting them would exceed this limit.\";s:11:\"#attributes\";a:1:{s:5:\"class\";s:17:\"menu-title-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:1:\"0\";s:12:\"#description\";s:107:\"Optional. In the menu, the heavier items will sink and the lighter items will be positioned nearer the top.\";}}s:7:\"#submit\";a:1:{i:0;s:21:\"menu_node_form_submit\";}s:4:\"path\";a:10:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:17:\"URL path settings\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:0;s:7:\"#access\";b:1;s:7:\"#weight\";i:30;s:4:\"path\";a:6:{s:5:\"#type\";s:9:\"textfield\";s:14:\"#default_value\";s:30:\"special-offer-pv-system-owners\";s:10:\"#maxlength\";i:128;s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:12:\"#description\";s:207:\"Optionally specify an alternative URL by which this node 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\";s:1:\"6\";}s:22:\"pathauto_perform_alias\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:15:\"Automatic alias\";s:14:\"#default_value\";b:1;s:12:\"#description\";s:238:\"An alias will be generated for you. If you wish to create your own alias below, uncheck this option. To control the format of the generated aliases, see the <a href=\"/~uspvinc/main2/admin/build/path/pathauto\">automated alias settings</a>.\";s:7:\"#weight\";i:-1;}s:9:\"old_alias\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:30:\"special-offer-pv-system-owners\";}}s:11:\"#pre_render\";a:1:{i:0;s:27:\"content_alter_extra_weights\";}s:21:\"#content_extra_fields\";a:6:{s:5:\"title\";a:3:{s:5:\"label\";s:5:\"Title\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:-5;}s:10:\"body_field\";a:4:{s:5:\"label\";s:4:\"Body\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:0;s:4:\"view\";s:4:\"body\";}s:20:\"revision_information\";a:3:{s:5:\"label\";s:20:\"Revision information\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:20;}s:16:\"comment_settings\";a:3:{s:5:\"label\";s:16:\"Comment settings\";s:11:\"description\";s:20:\"Comment module form.\";s:6:\"weight\";i:30;}s:4:\"menu\";a:3:{s:5:\"label\";s:13:\"Menu settings\";s:11:\"description\";s:17:\"Menu module form.\";s:6:\"weight\";i:-2;}s:4:\"path\";a:3:{s:5:\"label\";s:13:\"Path settings\";s:11:\"description\";s:17:\"Path module form.\";s:6:\"weight\";i:30;}}s:12:\"#cache_token\";s:32:\"ea05954e6208c2bed552f97e30d1dad3\";}',1285815690,1285794090,'',1),('form_form-fc79c544a43c9a075e0197c30e8d275b','a:40:{s:3:\"#id\";s:9:\"node-form\";s:3:\"nid\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:1:\"6\";}s:3:\"vid\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:1:\"6\";}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:\"1265202590\";}s:4:\"type\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:4:\"page\";}s:8:\"language\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:0:\"\";}s:7:\"changed\";a:2:{s:5:\"#type\";s:6:\"hidden\";s:14:\"#default_value\";s:10:\"1285703305\";}s:5:\"title\";a:6:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:5:\"Title\";s:9:\"#required\";b:1;s:14:\"#default_value\";s:34:\"Special Offer for PV System Owners\";s:10:\"#maxlength\";i:255;s:7:\"#weight\";i:-5;}s:10:\"body_field\";a:7:{s:12:\"#after_build\";a:2:{i:0;s:14:\"node_teaser_js\";i:1;s:26:\"node_teaser_include_verify\";}s:7:\"#prefix\";s:32:\"<div class=\"body-field-wrapper\">\";s:7:\"#suffix\";s:6:\"</div>\";s:9:\"teaser_js\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:5:\"#rows\";i:10;s:7:\"#teaser\";s:9:\"edit-body\";s:16:\"#teaser_checkbox\";s:19:\"edit-teaser-include\";s:9:\"#disabled\";b:1;}s:14:\"teaser_include\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:25:\"Show summary in full view\";s:14:\"#default_value\";b:1;s:7:\"#prefix\";s:29:\"<div class=\"teaser-checkbox\">\";s:7:\"#suffix\";s:6:\"</div>\";}s:4:\"body\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:4:\"Body\";s:14:\"#default_value\";s:234:\"<p>\r\nSign-up for USPV\'s REC Management Program today. No up-front or out-of-pocket costs. Don\'t miss out on this opportunity to participate in the Renewable Energy Credit markets and earn hundreds or even thousands of dollars!\r\n</p>\r\n\";s:5:\"#rows\";i:20;s:9:\"#required\";b:0;}s:6:\"format\";a:9:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:12:\"Input format\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:7:\"#weight\";N;s:17:\"#element_validate\";a:1:{i:0;s:20:\"filter_form_validate\";}i:1;a:7:{s:5:\"#type\";s:5:\"radio\";s:6:\"#title\";s:13:\"Filtered HTML\";s:14:\"#default_value\";s:1:\"2\";s:13:\"#return_value\";s:1:\"1\";s:8:\"#parents\";a:1:{i:0;s:6:\"format\";}s:12:\"#description\";s:306:\"<ul class=\"tips\"><li>Web page addresses and e-mail addresses turn into links automatically.</li><li>Allowed HTML tags: &lt;a&gt; &lt;em&gt; &lt;strong&gt; &lt;cite&gt; &lt;code&gt; &lt;ul&gt; &lt;ol&gt; &lt;li&gt; &lt;dl&gt; &lt;dt&gt; &lt;dd&gt;</li><li>Lines and paragraphs break automatically.</li></ul>\";s:3:\"#id\";s:13:\"edit-format-1\";}i:2;a:7:{s:5:\"#type\";s:5:\"radio\";s:6:\"#title\";s:9:\"Full HTML\";s:14:\"#default_value\";s:1:\"2\";s:13:\"#return_value\";s:1:\"2\";s:8:\"#parents\";a:1:{i:0;s:6:\"format\";}s:12:\"#description\";s:151:\"<ul class=\"tips\"><li>Web page addresses and e-mail addresses turn into links automatically.</li><li>Lines and paragraphs break automatically.</li></ul>\";s:3:\"#id\";s:13:\"edit-format-2\";}i:3;a:1:{s:6:\"#value\";s:90:\"<p><a href=\"/~uspvinc/main2/filter/tips\">More information about formatting options</a></p>\";}}}s:5:\"#node\";O:8:\"stdClass\":33:{s:3:\"nid\";s:1:\"6\";s:4:\"type\";s:4:\"page\";s:8:\"language\";s:0:\"\";s:3:\"uid\";s:1:\"1\";s:6:\"status\";s:1:\"1\";s:7:\"created\";s:10:\"1265202590\";s:7:\"changed\";s:10:\"1285703305\";s:7:\"comment\";s:1:\"0\";s:7:\"promote\";s:1:\"0\";s:8:\"moderate\";s:1:\"0\";s:6:\"sticky\";s:1:\"0\";s:4:\"tnid\";s:1:\"0\";s:9:\"translate\";s:1:\"0\";s:3:\"vid\";s:1:\"6\";s:12:\"revision_uid\";s:1:\"1\";s:5:\"title\";s:34:\"Special Offer for PV System Owners\";s:4:\"body\";s:234:\"<p>\r\nSign-up for USPV\'s REC Management Program today. No up-front or out-of-pocket costs. Don\'t miss out on this opportunity to participate in the Renewable Energy Credit markets and earn hundreds or even thousands of dollars!\r\n</p>\r\n\";s:6:\"teaser\";s:234:\"<p>\r\nSign-up for USPV\'s REC Management Program today. No up-front or out-of-pocket costs. Don\'t miss out on this opportunity to participate in the Renewable Energy Credit markets and earn hundreds or even thousands of dollars!\r\n</p>\r\n\";s:3:\"log\";N;s:18:\"revision_timestamp\";s:10:\"1285703305\";s:6:\"format\";s:1:\"2\";s:4:\"name\";s:5:\"admin\";s:7:\"picture\";s:0:\"\";s:4:\"data\";s:6:\"a:0:{}\";s:4:\"path\";s:30:\"special-offer-pv-system-owners\";s:22:\"last_comment_timestamp\";s:10:\"1265202590\";s:17:\"last_comment_name\";N;s:13:\"comment_count\";s:1:\"0\";s:8:\"taxonomy\";a:0:{}s:4:\"date\";s:25:\"2010-02-03 21:09:50 +0800\";s:8:\"revision\";b:0;s:4:\"menu\";a:48:{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:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:3:\"fit\";s:1:\"2\";s:12:\"number_parts\";s:1:\"2\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:14:\"special offers\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:4:\"type\";s:1:\"4\";s:14:\"block_callback\";s:0:\"\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"0\";s:4:\"file\";s:0:\"\";s:9:\"menu_name\";s:14:\"menu-main-menu\";s:4:\"mlid\";s:3:\"286\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/6\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:14:\"special offers\";s:7:\"options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:14:\"special offers\";}}s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"286\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:4:\"href\";s:6:\"node/6\";s:6:\"access\";b:1;s:17:\"localized_options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:14:\"special offers\";}}s:18:\"parent_depth_limit\";i:8;}s:22:\"pathauto_perform_alias\";b:1;}s:20:\"revision_information\";a:7:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:20:\"Revision information\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:7:\"#weight\";i:20;s:8:\"revision\";a:4:{s:7:\"#access\";b:1;s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:19:\"Create new revision\";s:14:\"#default_value\";b:0;}s:3:\"log\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:11:\"Log message\";s:14:\"#default_value\";s:0:\"\";s:5:\"#rows\";i:2;s:12:\"#description\";s:104:\"An explanation of the additions or updates being made to help other authors understand your motivations.\";}}s:6:\"author\";a:8:{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:7:\"#weight\";i:20;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:35:\"Leave blank for <em>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:91:\"Format: <em>2010-02-03 21:09:50 +0800</em>. Leave blank to use the time of form submission.\";s:14:\"#default_value\";s:25:\"2010-02-03 21:09:50 +0800\";}}s:7:\"options\";a:9:{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:7:\"#weight\";i:25;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:\"buttons\";a:3:{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:16:\"node_form_submit\";}}s:7:\"preview\";a:4:{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:6:\"#theme\";a:2:{i:0;s:14:\"page_node_form\";i:1;s:9:\"node_form\";}s:11:\"#parameters\";a:3:{i:0;s:14:\"page_node_form\";i:1;a:3:{s:7:\"storage\";N;s:9:\"submitted\";b:0;s:4:\"post\";a:0:{}}i:2;r:83;}s:9:\"#build_id\";s:37:\"form-fc79c544a43c9a075e0197c30e8d275b\";s:5:\"#type\";s:4:\"form\";s:11:\"#programmed\";b:0;s:13:\"form_build_id\";a:4:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:37:\"form-fc79c544a43c9a075e0197c30e8d275b\";s:3:\"#id\";s:37:\"form-fc79c544a43c9a075e0197c30e8d275b\";s:5:\"#name\";s:13:\"form_build_id\";}s:6:\"#token\";s:14:\"page_node_form\";s:10:\"form_token\";a:3:{s:3:\"#id\";s:30:\"edit-page-node-form-form-token\";s:5:\"#type\";s:5:\"token\";s:14:\"#default_value\";s:32:\"69ee9cfa6b6366390575effcb3429c15\";}s:7:\"form_id\";a:3:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:14:\"page_node_form\";s:3:\"#id\";s:19:\"edit-page-node-form\";}s:12:\"#description\";N;s:11:\"#attributes\";a:0:{}s:9:\"#required\";b:0;s:5:\"#tree\";b:0;s:8:\"#parents\";a:0:{}s:7:\"#method\";s:4:\"post\";s:7:\"#action\";s:27:\"/~uspvinc/main2/node/6/edit\";s:16:\"comment_settings\";a:7:{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:7:\"#weight\";i:30;s:7:\"comment\";a:4:{s:5:\"#type\";s:6:\"radios\";s:8:\"#parents\";a:1:{i:0;s:7:\"comment\";}s:14:\"#default_value\";s:1:\"0\";s:8:\"#options\";a:3:{i:0;s:8:\"Disabled\";i:1;s:9:\"Read only\";i:2;s:10:\"Read/Write\";}}}s:6:\"#cache\";b:1;s:4:\"menu\";a:21:{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:5:\"#tree\";b:1;s:7:\"#weight\";i:-2;s:11:\"#attributes\";a:1:{s:5:\"class\";s:14:\"menu-item-form\";}s:6:\"delete\";a:2:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:22:\"Delete this menu item.\";}s:4:\"mlid\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:3:\"286\";}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\";s:1:\"1\";}s:7:\"options\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:14:\"special offers\";}}}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:5:\"#item\";a:48:{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:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:3:\"fit\";s:1:\"2\";s:12:\"number_parts\";s:1:\"2\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:14:\"special offers\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:4:\"type\";s:1:\"4\";s:14:\"block_callback\";s:0:\"\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"0\";s:4:\"file\";s:0:\"\";s:9:\"menu_name\";s:14:\"menu-main-menu\";s:4:\"mlid\";s:3:\"286\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/6\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:14:\"special offers\";s:7:\"options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:14:\"special offers\";}}s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"286\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:4:\"href\";s:6:\"node/6\";s:6:\"access\";b:1;s:17:\"localized_options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:14:\"special offers\";}}s:18:\"parent_depth_limit\";i:8;}s:10:\"link_title\";a:5:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:15:\"Menu link title\";s:14:\"#default_value\";s:14:\"special offers\";s:12:\"#description\";s:133:\"The link text corresponding to this item that should appear in the menu. Leave blank if you do not wish to add this post to the menu.\";s:9:\"#required\";b:0;}s:6:\"parent\";a:6:{s:5:\"#type\";s:6:\"select\";s:6:\"#title\";s:11:\"Parent item\";s:14:\"#default_value\";s:16:\"menu-main-menu:0\";s:8:\"#options\";a:95:{s:16:\"menu-main-menu:0\";s:11:\"<Main Menu>\";s:18:\"menu-main-menu:283\";s:8:\"-- about\";s:18:\"menu-main-menu:284\";s:12:\"-- resources\";s:18:\"menu-main-menu:285\";s:11:\"-- services\";s:12:\"navigation:0\";s:12:\"<Navigation>\";s:12:\"navigation:9\";s:26:\"-- Compose tips (disabled)\";s:14:\"navigation:461\";s:29:\"-- Image galleries (disabled)\";s:13:\"navigation:21\";s:13:\"-- My account\";s:14:\"navigation:114\";s:20:\"-- Search (disabled)\";s:14:\"navigation:244\";s:22:\"-- Site map (disabled)\";s:13:\"navigation:11\";s:17:\"-- Create content\";s:14:\"navigation:476\";s:11:\"---- Banner\";s:14:\"navigation:441\";s:10:\"---- Image\";s:14:\"navigation:289\";s:21:\"---- Newsletter issue\";s:14:\"navigation:106\";s:9:\"---- Page\";s:14:\"navigation:388\";s:10:\"---- Panel\";s:14:\"navigation:107\";s:10:\"---- Story\";s:12:\"navigation:2\";s:13:\"-- Administer\";s:13:\"navigation:10\";s:23:\"---- Content management\";s:13:\"navigation:27\";s:15:\"------ Comments\";s:13:\"navigation:28\";s:14:\"------ Content\";s:13:\"navigation:29\";s:20:\"------ Content types\";s:14:\"navigation:462\";s:22:\"------ Image galleries\";s:14:\"navigation:463\";s:19:\"------ Image import\";s:14:\"navigation:538\";s:18:\"------ Newsletters\";s:14:\"navigation:546\";s:20:\"-------- Sent issues\";s:14:\"navigation:541\";s:21:\"-------- Draft issues\";s:14:\"navigation:544\";s:20:\"-------- Newsletters\";s:14:\"navigation:548\";s:22:\"-------- Subscriptions\";s:13:\"navigation:42\";s:20:\"------ Post settings\";s:13:\"navigation:43\";s:21:\"------ RSS publishing\";s:13:\"navigation:94\";s:15:\"------ Taxonomy\";s:13:\"navigation:17\";s:18:\"---- Site building\";s:13:\"navigation:25\";s:13:\"------ Blocks\";s:14:\"navigation:424\";s:20:\"------ Bulk Exporter\";s:13:\"navigation:38\";s:12:\"------ Menus\";s:14:\"navigation:282\";s:18:\"-------- Main Menu\";s:13:\"navigation:89\";s:19:\"-------- Navigation\";s:13:\"navigation:90\";s:22:\"-------- Primary links\";s:14:\"navigation:495\";s:19:\"-------- Right Menu\";s:13:\"navigation:91\";s:24:\"-------- Secondary links\";s:14:\"navigation:387\";s:18:\"------ Mini panels\";s:13:\"navigation:39\";s:14:\"------ Modules\";s:14:\"navigation:412\";s:12:\"------ Pages\";s:14:\"navigation:360\";s:13:\"------ Panels\";s:13:\"navigation:49\";s:13:\"------ Themes\";s:14:\"navigation:335\";s:15:\"------ Triggers\";s:14:\"navigation:501\";s:18:\"------ URL aliases\";s:14:\"navigation:257\";s:12:\"------ Views\";s:13:\"navigation:18\";s:23:\"---- Site configuration\";s:13:\"navigation:23\";s:14:\"------ Actions\";s:14:\"navigation:119\";s:26:\"------ Administration menu\";s:13:\"navigation:24\";s:27:\"------ Administration theme\";s:13:\"navigation:26\";s:17:\"------ Clean URLs\";s:13:\"navigation:30\";s:20:\"------ Date and time\";s:13:\"navigation:33\";s:22:\"------ Error reporting\";s:13:\"navigation:34\";s:18:\"------ File system\";s:13:\"navigation:35\";s:20:\"------ Image toolkit\";s:14:\"navigation:442\";s:13:\"------ Images\";s:13:\"navigation:36\";s:20:\"------ Input formats\";s:13:\"navigation:37\";s:25:\"------ Logging and alerts\";s:14:\"navigation:100\";s:25:\"-------- Database logging\";s:14:\"navigation:245\";s:17:\"------ Nice Menus\";s:13:\"navigation:40\";s:18:\"------ Performance\";s:14:\"navigation:120\";s:22:\"------ Search settings\";s:14:\"navigation:539\";s:17:\"------ Simplenews\";s:14:\"navigation:542\";s:16:\"-------- General\";s:14:\"navigation:543\";s:19:\"-------- Newsletter\";s:14:\"navigation:547\";s:21:\"-------- Subscription\";s:14:\"navigation:545\";s:18:\"-------- Send mail\";s:13:\"navigation:46\";s:23:\"------ Site information\";s:13:\"navigation:47\";s:23:\"------ Site maintenance\";s:14:\"navigation:246\";s:15:\"------ Site map\";s:13:\"navigation:20\";s:20:\"---- User management\";s:13:\"navigation:22\";s:19:\"------ Access rules\";s:13:\"navigation:41\";s:18:\"------ Permissions\";s:13:\"navigation:45\";s:12:\"------ Roles\";s:13:\"navigation:50\";s:20:\"------ User settings\";s:13:\"navigation:51\";s:12:\"------ Users\";s:13:\"navigation:16\";s:12:\"---- Reports\";s:13:\"navigation:93\";s:25:\"------ Recent log entries\";s:13:\"navigation:96\";s:33:\"------ Top \'access denied\' errors\";s:13:\"navigation:97\";s:34:\"------ Top \'page not found\' errors\";s:14:\"navigation:121\";s:25:\"------ Top search phrases\";s:14:\"navigation:105\";s:24:\"------ Available updates\";s:13:\"navigation:48\";s:20:\"------ Status report\";s:13:\"navigation:15\";s:9:\"---- Help\";s:12:\"navigation:4\";s:10:\"-- Log out\";s:15:\"primary-links:0\";s:15:\"<Primary links>\";s:17:\"menu-right-menu:0\";s:12:\"<Right Menu>\";s:19:\"menu-right-menu:496\";s:28:\"-- Financial Calculator Tool\";s:19:\"menu-right-menu:497\";s:21:\"-- News Story Library\";s:19:\"menu-right-menu:498\";s:14:\"-- Latest News\";s:19:\"menu-right-menu:499\";s:25:\"-- SREC Management Portal\";s:17:\"secondary-links:0\";s:17:\"<Secondary links>\";}s:12:\"#description\";s:156:\"The maximum depth for an item and all its children is fixed at 9. Some menu items may not be available as parents if selecting them would exceed this limit.\";s:11:\"#attributes\";a:1:{s:5:\"class\";s:17:\"menu-title-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:1:\"0\";s:12:\"#description\";s:107:\"Optional. In the menu, the heavier items will sink and the lighter items will be positioned nearer the top.\";}}s:7:\"#submit\";a:1:{i:0;s:21:\"menu_node_form_submit\";}s:4:\"path\";a:10:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:17:\"URL path settings\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:0;s:7:\"#access\";b:1;s:7:\"#weight\";i:30;s:4:\"path\";a:6:{s:5:\"#type\";s:9:\"textfield\";s:14:\"#default_value\";s:30:\"special-offer-pv-system-owners\";s:10:\"#maxlength\";i:128;s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:12:\"#description\";s:207:\"Optionally specify an alternative URL by which this node 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\";s:1:\"6\";}s:22:\"pathauto_perform_alias\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:15:\"Automatic alias\";s:14:\"#default_value\";b:1;s:12:\"#description\";s:238:\"An alias will be generated for you. If you wish to create your own alias below, uncheck this option. To control the format of the generated aliases, see the <a href=\"/~uspvinc/main2/admin/build/path/pathauto\">automated alias settings</a>.\";s:7:\"#weight\";i:-1;}s:9:\"old_alias\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:30:\"special-offer-pv-system-owners\";}}s:11:\"#pre_render\";a:1:{i:0;s:27:\"content_alter_extra_weights\";}s:21:\"#content_extra_fields\";a:6:{s:5:\"title\";a:3:{s:5:\"label\";s:5:\"Title\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:-5;}s:10:\"body_field\";a:4:{s:5:\"label\";s:4:\"Body\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:0;s:4:\"view\";s:4:\"body\";}s:20:\"revision_information\";a:3:{s:5:\"label\";s:20:\"Revision information\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:20;}s:16:\"comment_settings\";a:3:{s:5:\"label\";s:16:\"Comment settings\";s:11:\"description\";s:20:\"Comment module form.\";s:6:\"weight\";i:30;}s:4:\"menu\";a:3:{s:5:\"label\";s:13:\"Menu settings\";s:11:\"description\";s:17:\"Menu module form.\";s:6:\"weight\";i:-2;}s:4:\"path\";a:3:{s:5:\"label\";s:13:\"Path settings\";s:11:\"description\";s:17:\"Path module form.\";s:6:\"weight\";i:30;}}s:12:\"#cache_token\";s:32:\"ea05954e6208c2bed552f97e30d1dad3\";}',1285815691,1285794091,'',1),('form_form-dc60ca9c81fb53d858e9f4dec07cbdcb','a:40:{s:3:\"#id\";s:9:\"node-form\";s:3:\"nid\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:1:\"6\";}s:3:\"vid\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:1:\"6\";}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:\"1265202590\";}s:4:\"type\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:4:\"page\";}s:8:\"language\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:0:\"\";}s:7:\"changed\";a:2:{s:5:\"#type\";s:6:\"hidden\";s:14:\"#default_value\";s:10:\"1285703305\";}s:5:\"title\";a:6:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:5:\"Title\";s:9:\"#required\";b:1;s:14:\"#default_value\";s:34:\"Special Offer for PV System Owners\";s:10:\"#maxlength\";i:255;s:7:\"#weight\";i:-5;}s:10:\"body_field\";a:7:{s:12:\"#after_build\";a:2:{i:0;s:14:\"node_teaser_js\";i:1;s:26:\"node_teaser_include_verify\";}s:7:\"#prefix\";s:32:\"<div class=\"body-field-wrapper\">\";s:7:\"#suffix\";s:6:\"</div>\";s:9:\"teaser_js\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:5:\"#rows\";i:10;s:7:\"#teaser\";s:9:\"edit-body\";s:16:\"#teaser_checkbox\";s:19:\"edit-teaser-include\";s:9:\"#disabled\";b:1;}s:14:\"teaser_include\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:25:\"Show summary in full view\";s:14:\"#default_value\";b:1;s:7:\"#prefix\";s:29:\"<div class=\"teaser-checkbox\">\";s:7:\"#suffix\";s:6:\"</div>\";}s:4:\"body\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:4:\"Body\";s:14:\"#default_value\";s:234:\"<p>\r\nSign-up for USPV\'s REC Management Program today. No up-front or out-of-pocket costs. Don\'t miss out on this opportunity to participate in the Renewable Energy Credit markets and earn hundreds or even thousands of dollars!\r\n</p>\r\n\";s:5:\"#rows\";i:20;s:9:\"#required\";b:0;}s:6:\"format\";a:9:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:12:\"Input format\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:7:\"#weight\";N;s:17:\"#element_validate\";a:1:{i:0;s:20:\"filter_form_validate\";}i:1;a:7:{s:5:\"#type\";s:5:\"radio\";s:6:\"#title\";s:13:\"Filtered HTML\";s:14:\"#default_value\";s:1:\"2\";s:13:\"#return_value\";s:1:\"1\";s:8:\"#parents\";a:1:{i:0;s:6:\"format\";}s:12:\"#description\";s:306:\"<ul class=\"tips\"><li>Web page addresses and e-mail addresses turn into links automatically.</li><li>Allowed HTML tags: &lt;a&gt; &lt;em&gt; &lt;strong&gt; &lt;cite&gt; &lt;code&gt; &lt;ul&gt; &lt;ol&gt; &lt;li&gt; &lt;dl&gt; &lt;dt&gt; &lt;dd&gt;</li><li>Lines and paragraphs break automatically.</li></ul>\";s:3:\"#id\";s:13:\"edit-format-1\";}i:2;a:7:{s:5:\"#type\";s:5:\"radio\";s:6:\"#title\";s:9:\"Full HTML\";s:14:\"#default_value\";s:1:\"2\";s:13:\"#return_value\";s:1:\"2\";s:8:\"#parents\";a:1:{i:0;s:6:\"format\";}s:12:\"#description\";s:151:\"<ul class=\"tips\"><li>Web page addresses and e-mail addresses turn into links automatically.</li><li>Lines and paragraphs break automatically.</li></ul>\";s:3:\"#id\";s:13:\"edit-format-2\";}i:3;a:1:{s:6:\"#value\";s:90:\"<p><a href=\"/~uspvinc/main2/filter/tips\">More information about formatting options</a></p>\";}}}s:5:\"#node\";O:8:\"stdClass\":33:{s:3:\"nid\";s:1:\"6\";s:4:\"type\";s:4:\"page\";s:8:\"language\";s:0:\"\";s:3:\"uid\";s:1:\"1\";s:6:\"status\";s:1:\"1\";s:7:\"created\";s:10:\"1265202590\";s:7:\"changed\";s:10:\"1285703305\";s:7:\"comment\";s:1:\"0\";s:7:\"promote\";s:1:\"0\";s:8:\"moderate\";s:1:\"0\";s:6:\"sticky\";s:1:\"0\";s:4:\"tnid\";s:1:\"0\";s:9:\"translate\";s:1:\"0\";s:3:\"vid\";s:1:\"6\";s:12:\"revision_uid\";s:1:\"1\";s:5:\"title\";s:34:\"Special Offer for PV System Owners\";s:4:\"body\";s:234:\"<p>\r\nSign-up for USPV\'s REC Management Program today. No up-front or out-of-pocket costs. Don\'t miss out on this opportunity to participate in the Renewable Energy Credit markets and earn hundreds or even thousands of dollars!\r\n</p>\r\n\";s:6:\"teaser\";s:234:\"<p>\r\nSign-up for USPV\'s REC Management Program today. No up-front or out-of-pocket costs. Don\'t miss out on this opportunity to participate in the Renewable Energy Credit markets and earn hundreds or even thousands of dollars!\r\n</p>\r\n\";s:3:\"log\";N;s:18:\"revision_timestamp\";s:10:\"1285703305\";s:6:\"format\";s:1:\"2\";s:4:\"name\";s:5:\"admin\";s:7:\"picture\";s:0:\"\";s:4:\"data\";s:6:\"a:0:{}\";s:4:\"path\";s:30:\"special-offer-pv-system-owners\";s:22:\"last_comment_timestamp\";s:10:\"1265202590\";s:17:\"last_comment_name\";N;s:13:\"comment_count\";s:1:\"0\";s:8:\"taxonomy\";a:0:{}s:4:\"date\";s:25:\"2010-02-03 21:09:50 +0800\";s:8:\"revision\";b:0;s:4:\"menu\";a:48:{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:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:3:\"fit\";s:1:\"2\";s:12:\"number_parts\";s:1:\"2\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:14:\"special offers\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:4:\"type\";s:1:\"4\";s:14:\"block_callback\";s:0:\"\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"0\";s:4:\"file\";s:0:\"\";s:9:\"menu_name\";s:14:\"menu-main-menu\";s:4:\"mlid\";s:3:\"286\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/6\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:14:\"special offers\";s:7:\"options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:14:\"special offers\";}}s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"286\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:4:\"href\";s:6:\"node/6\";s:6:\"access\";b:1;s:17:\"localized_options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:14:\"special offers\";}}s:18:\"parent_depth_limit\";i:8;}s:22:\"pathauto_perform_alias\";b:1;}s:20:\"revision_information\";a:7:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:20:\"Revision information\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:7:\"#weight\";i:20;s:8:\"revision\";a:4:{s:7:\"#access\";b:1;s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:19:\"Create new revision\";s:14:\"#default_value\";b:0;}s:3:\"log\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:11:\"Log message\";s:14:\"#default_value\";s:0:\"\";s:5:\"#rows\";i:2;s:12:\"#description\";s:104:\"An explanation of the additions or updates being made to help other authors understand your motivations.\";}}s:6:\"author\";a:8:{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:7:\"#weight\";i:20;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:35:\"Leave blank for <em>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:91:\"Format: <em>2010-02-03 21:09:50 +0800</em>. Leave blank to use the time of form submission.\";s:14:\"#default_value\";s:25:\"2010-02-03 21:09:50 +0800\";}}s:7:\"options\";a:9:{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:7:\"#weight\";i:25;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:\"buttons\";a:3:{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:16:\"node_form_submit\";}}s:7:\"preview\";a:4:{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:6:\"#theme\";a:2:{i:0;s:14:\"page_node_form\";i:1;s:9:\"node_form\";}s:11:\"#parameters\";a:3:{i:0;s:14:\"page_node_form\";i:1;a:3:{s:7:\"storage\";N;s:9:\"submitted\";b:0;s:4:\"post\";a:0:{}}i:2;r:83;}s:9:\"#build_id\";s:37:\"form-dc60ca9c81fb53d858e9f4dec07cbdcb\";s:5:\"#type\";s:4:\"form\";s:11:\"#programmed\";b:0;s:13:\"form_build_id\";a:4:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:37:\"form-dc60ca9c81fb53d858e9f4dec07cbdcb\";s:3:\"#id\";s:37:\"form-dc60ca9c81fb53d858e9f4dec07cbdcb\";s:5:\"#name\";s:13:\"form_build_id\";}s:6:\"#token\";s:14:\"page_node_form\";s:10:\"form_token\";a:3:{s:3:\"#id\";s:30:\"edit-page-node-form-form-token\";s:5:\"#type\";s:5:\"token\";s:14:\"#default_value\";s:32:\"69ee9cfa6b6366390575effcb3429c15\";}s:7:\"form_id\";a:3:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:14:\"page_node_form\";s:3:\"#id\";s:19:\"edit-page-node-form\";}s:12:\"#description\";N;s:11:\"#attributes\";a:0:{}s:9:\"#required\";b:0;s:5:\"#tree\";b:0;s:8:\"#parents\";a:0:{}s:7:\"#method\";s:4:\"post\";s:7:\"#action\";s:27:\"/~uspvinc/main2/node/6/edit\";s:16:\"comment_settings\";a:7:{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:7:\"#weight\";i:30;s:7:\"comment\";a:4:{s:5:\"#type\";s:6:\"radios\";s:8:\"#parents\";a:1:{i:0;s:7:\"comment\";}s:14:\"#default_value\";s:1:\"0\";s:8:\"#options\";a:3:{i:0;s:8:\"Disabled\";i:1;s:9:\"Read only\";i:2;s:10:\"Read/Write\";}}}s:6:\"#cache\";b:1;s:4:\"menu\";a:21:{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:5:\"#tree\";b:1;s:7:\"#weight\";i:-2;s:11:\"#attributes\";a:1:{s:5:\"class\";s:14:\"menu-item-form\";}s:6:\"delete\";a:2:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:22:\"Delete this menu item.\";}s:4:\"mlid\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:3:\"286\";}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\";s:1:\"1\";}s:7:\"options\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:14:\"special offers\";}}}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:5:\"#item\";a:48:{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:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:3:\"fit\";s:1:\"2\";s:12:\"number_parts\";s:1:\"2\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:14:\"special offers\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:4:\"type\";s:1:\"4\";s:14:\"block_callback\";s:0:\"\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"0\";s:4:\"file\";s:0:\"\";s:9:\"menu_name\";s:14:\"menu-main-menu\";s:4:\"mlid\";s:3:\"286\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/6\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:14:\"special offers\";s:7:\"options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:14:\"special offers\";}}s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"286\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:4:\"href\";s:6:\"node/6\";s:6:\"access\";b:1;s:17:\"localized_options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:14:\"special offers\";}}s:18:\"parent_depth_limit\";i:8;}s:10:\"link_title\";a:5:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:15:\"Menu link title\";s:14:\"#default_value\";s:14:\"special offers\";s:12:\"#description\";s:133:\"The link text corresponding to this item that should appear in the menu. Leave blank if you do not wish to add this post to the menu.\";s:9:\"#required\";b:0;}s:6:\"parent\";a:6:{s:5:\"#type\";s:6:\"select\";s:6:\"#title\";s:11:\"Parent item\";s:14:\"#default_value\";s:16:\"menu-main-menu:0\";s:8:\"#options\";a:95:{s:16:\"menu-main-menu:0\";s:11:\"<Main Menu>\";s:18:\"menu-main-menu:283\";s:8:\"-- about\";s:18:\"menu-main-menu:284\";s:12:\"-- resources\";s:18:\"menu-main-menu:285\";s:11:\"-- services\";s:12:\"navigation:0\";s:12:\"<Navigation>\";s:12:\"navigation:9\";s:26:\"-- Compose tips (disabled)\";s:14:\"navigation:461\";s:29:\"-- Image galleries (disabled)\";s:13:\"navigation:21\";s:13:\"-- My account\";s:14:\"navigation:114\";s:20:\"-- Search (disabled)\";s:14:\"navigation:244\";s:22:\"-- Site map (disabled)\";s:13:\"navigation:11\";s:17:\"-- Create content\";s:14:\"navigation:476\";s:11:\"---- Banner\";s:14:\"navigation:441\";s:10:\"---- Image\";s:14:\"navigation:289\";s:21:\"---- Newsletter issue\";s:14:\"navigation:106\";s:9:\"---- Page\";s:14:\"navigation:388\";s:10:\"---- Panel\";s:14:\"navigation:107\";s:10:\"---- Story\";s:12:\"navigation:2\";s:13:\"-- Administer\";s:13:\"navigation:10\";s:23:\"---- Content management\";s:13:\"navigation:27\";s:15:\"------ Comments\";s:13:\"navigation:28\";s:14:\"------ Content\";s:13:\"navigation:29\";s:20:\"------ Content types\";s:14:\"navigation:462\";s:22:\"------ Image galleries\";s:14:\"navigation:463\";s:19:\"------ Image import\";s:14:\"navigation:538\";s:18:\"------ Newsletters\";s:14:\"navigation:546\";s:20:\"-------- Sent issues\";s:14:\"navigation:541\";s:21:\"-------- Draft issues\";s:14:\"navigation:544\";s:20:\"-------- Newsletters\";s:14:\"navigation:548\";s:22:\"-------- Subscriptions\";s:13:\"navigation:42\";s:20:\"------ Post settings\";s:13:\"navigation:43\";s:21:\"------ RSS publishing\";s:13:\"navigation:94\";s:15:\"------ Taxonomy\";s:13:\"navigation:17\";s:18:\"---- Site building\";s:13:\"navigation:25\";s:13:\"------ Blocks\";s:14:\"navigation:424\";s:20:\"------ Bulk Exporter\";s:13:\"navigation:38\";s:12:\"------ Menus\";s:14:\"navigation:282\";s:18:\"-------- Main Menu\";s:13:\"navigation:89\";s:19:\"-------- Navigation\";s:13:\"navigation:90\";s:22:\"-------- Primary links\";s:14:\"navigation:495\";s:19:\"-------- Right Menu\";s:13:\"navigation:91\";s:24:\"-------- Secondary links\";s:14:\"navigation:387\";s:18:\"------ Mini panels\";s:13:\"navigation:39\";s:14:\"------ Modules\";s:14:\"navigation:412\";s:12:\"------ Pages\";s:14:\"navigation:360\";s:13:\"------ Panels\";s:13:\"navigation:49\";s:13:\"------ Themes\";s:14:\"navigation:335\";s:15:\"------ Triggers\";s:14:\"navigation:501\";s:18:\"------ URL aliases\";s:14:\"navigation:257\";s:12:\"------ Views\";s:13:\"navigation:18\";s:23:\"---- Site configuration\";s:13:\"navigation:23\";s:14:\"------ Actions\";s:14:\"navigation:119\";s:26:\"------ Administration menu\";s:13:\"navigation:24\";s:27:\"------ Administration theme\";s:13:\"navigation:26\";s:17:\"------ Clean URLs\";s:13:\"navigation:30\";s:20:\"------ Date and time\";s:13:\"navigation:33\";s:22:\"------ Error reporting\";s:13:\"navigation:34\";s:18:\"------ File system\";s:13:\"navigation:35\";s:20:\"------ Image toolkit\";s:14:\"navigation:442\";s:13:\"------ Images\";s:13:\"navigation:36\";s:20:\"------ Input formats\";s:13:\"navigation:37\";s:25:\"------ Logging and alerts\";s:14:\"navigation:100\";s:25:\"-------- Database logging\";s:14:\"navigation:245\";s:17:\"------ Nice Menus\";s:13:\"navigation:40\";s:18:\"------ Performance\";s:14:\"navigation:120\";s:22:\"------ Search settings\";s:14:\"navigation:539\";s:17:\"------ Simplenews\";s:14:\"navigation:542\";s:16:\"-------- General\";s:14:\"navigation:543\";s:19:\"-------- Newsletter\";s:14:\"navigation:547\";s:21:\"-------- Subscription\";s:14:\"navigation:545\";s:18:\"-------- Send mail\";s:13:\"navigation:46\";s:23:\"------ Site information\";s:13:\"navigation:47\";s:23:\"------ Site maintenance\";s:14:\"navigation:246\";s:15:\"------ Site map\";s:13:\"navigation:20\";s:20:\"---- User management\";s:13:\"navigation:22\";s:19:\"------ Access rules\";s:13:\"navigation:41\";s:18:\"------ Permissions\";s:13:\"navigation:45\";s:12:\"------ Roles\";s:13:\"navigation:50\";s:20:\"------ User settings\";s:13:\"navigation:51\";s:12:\"------ Users\";s:13:\"navigation:16\";s:12:\"---- Reports\";s:13:\"navigation:93\";s:25:\"------ Recent log entries\";s:13:\"navigation:96\";s:33:\"------ Top \'access denied\' errors\";s:13:\"navigation:97\";s:34:\"------ Top \'page not found\' errors\";s:14:\"navigation:121\";s:25:\"------ Top search phrases\";s:14:\"navigation:105\";s:24:\"------ Available updates\";s:13:\"navigation:48\";s:20:\"------ Status report\";s:13:\"navigation:15\";s:9:\"---- Help\";s:12:\"navigation:4\";s:10:\"-- Log out\";s:15:\"primary-links:0\";s:15:\"<Primary links>\";s:17:\"menu-right-menu:0\";s:12:\"<Right Menu>\";s:19:\"menu-right-menu:496\";s:28:\"-- Financial Calculator Tool\";s:19:\"menu-right-menu:497\";s:21:\"-- News Story Library\";s:19:\"menu-right-menu:498\";s:14:\"-- Latest News\";s:19:\"menu-right-menu:499\";s:25:\"-- SREC Management Portal\";s:17:\"secondary-links:0\";s:17:\"<Secondary links>\";}s:12:\"#description\";s:156:\"The maximum depth for an item and all its children is fixed at 9. Some menu items may not be available as parents if selecting them would exceed this limit.\";s:11:\"#attributes\";a:1:{s:5:\"class\";s:17:\"menu-title-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:1:\"0\";s:12:\"#description\";s:107:\"Optional. In the menu, the heavier items will sink and the lighter items will be positioned nearer the top.\";}}s:7:\"#submit\";a:1:{i:0;s:21:\"menu_node_form_submit\";}s:4:\"path\";a:10:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:17:\"URL path settings\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:0;s:7:\"#access\";b:1;s:7:\"#weight\";i:30;s:4:\"path\";a:6:{s:5:\"#type\";s:9:\"textfield\";s:14:\"#default_value\";s:30:\"special-offer-pv-system-owners\";s:10:\"#maxlength\";i:128;s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:12:\"#description\";s:207:\"Optionally specify an alternative URL by which this node 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\";s:1:\"6\";}s:22:\"pathauto_perform_alias\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:15:\"Automatic alias\";s:14:\"#default_value\";b:1;s:12:\"#description\";s:238:\"An alias will be generated for you. If you wish to create your own alias below, uncheck this option. To control the format of the generated aliases, see the <a href=\"/~uspvinc/main2/admin/build/path/pathauto\">automated alias settings</a>.\";s:7:\"#weight\";i:-1;}s:9:\"old_alias\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:30:\"special-offer-pv-system-owners\";}}s:11:\"#pre_render\";a:1:{i:0;s:27:\"content_alter_extra_weights\";}s:21:\"#content_extra_fields\";a:6:{s:5:\"title\";a:3:{s:5:\"label\";s:5:\"Title\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:-5;}s:10:\"body_field\";a:4:{s:5:\"label\";s:4:\"Body\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:0;s:4:\"view\";s:4:\"body\";}s:20:\"revision_information\";a:3:{s:5:\"label\";s:20:\"Revision information\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:20;}s:16:\"comment_settings\";a:3:{s:5:\"label\";s:16:\"Comment settings\";s:11:\"description\";s:20:\"Comment module form.\";s:6:\"weight\";i:30;}s:4:\"menu\";a:3:{s:5:\"label\";s:13:\"Menu settings\";s:11:\"description\";s:17:\"Menu module form.\";s:6:\"weight\";i:-2;}s:4:\"path\";a:3:{s:5:\"label\";s:13:\"Path settings\";s:11:\"description\";s:17:\"Path module form.\";s:6:\"weight\";i:30;}}s:12:\"#cache_token\";s:32:\"ea05954e6208c2bed552f97e30d1dad3\";}',1285816111,1285794511,'',1),('form_form-a174beda2a9ff49cf9264040f7d976f9','a:40:{s:3:\"#id\";s:9:\"node-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:1285864742;}s:4:\"type\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:4:\"page\";}s:8:\"language\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:0:\"\";}s:7:\"changed\";a:2:{s:5:\"#type\";s:6:\"hidden\";s:14:\"#default_value\";N;}s:5:\"title\";a:6:{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:10:\"body_field\";a:7:{s:12:\"#after_build\";a:2:{i:0;s:14:\"node_teaser_js\";i:1;s:26:\"node_teaser_include_verify\";}s:7:\"#prefix\";s:32:\"<div class=\"body-field-wrapper\">\";s:7:\"#suffix\";s:6:\"</div>\";s:9:\"teaser_js\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:5:\"#rows\";i:10;s:7:\"#teaser\";s:9:\"edit-body\";s:16:\"#teaser_checkbox\";s:19:\"edit-teaser-include\";s:9:\"#disabled\";b:1;}s:14:\"teaser_include\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:25:\"Show summary in full view\";s:14:\"#default_value\";b:1;s:7:\"#prefix\";s:29:\"<div class=\"teaser-checkbox\">\";s:7:\"#suffix\";s:6:\"</div>\";}s:4:\"body\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:4:\"Body\";s:14:\"#default_value\";N;s:5:\"#rows\";i:20;s:9:\"#required\";b:0;}s:6:\"format\";a:9:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:12:\"Input format\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:7:\"#weight\";N;s:17:\"#element_validate\";a:1:{i:0;s:20:\"filter_form_validate\";}i:1;a:7:{s:5:\"#type\";s:5:\"radio\";s:6:\"#title\";s:13:\"Filtered HTML\";s:14:\"#default_value\";i:1;s:13:\"#return_value\";s:1:\"1\";s:8:\"#parents\";a:1:{i:0;s:6:\"format\";}s:12:\"#description\";s:306:\"<ul class=\"tips\"><li>Web page addresses and e-mail addresses turn into links automatically.</li><li>Allowed HTML tags: &lt;a&gt; &lt;em&gt; &lt;strong&gt; &lt;cite&gt; &lt;code&gt; &lt;ul&gt; &lt;ol&gt; &lt;li&gt; &lt;dl&gt; &lt;dt&gt; &lt;dd&gt;</li><li>Lines and paragraphs break automatically.</li></ul>\";s:3:\"#id\";s:13:\"edit-format-1\";}i:2;a:7:{s:5:\"#type\";s:5:\"radio\";s:6:\"#title\";s:9:\"Full HTML\";s:14:\"#default_value\";i:1;s:13:\"#return_value\";s:1:\"2\";s:8:\"#parents\";a:1:{i:0;s:6:\"format\";}s:12:\"#description\";s:151:\"<ul class=\"tips\"><li>Web page addresses and e-mail addresses turn into links automatically.</li><li>Lines and paragraphs break automatically.</li></ul>\";s:3:\"#id\";s:13:\"edit-format-2\";}i:3;a:1:{s:6:\"#value\";s:90:\"<p><a href=\"/~uspvinc/main2/filter/tips\">More information about formatting options</a></p>\";}}}s:5:\"#node\";O:8:\"stdClass\":15:{s:3:\"uid\";s:1:\"1\";s:4:\"name\";s:5:\"admin\";s:4:\"type\";s:4:\"page\";s:8:\"language\";s:0:\"\";s:4:\"body\";N;s:5:\"title\";N;s:6:\"format\";N;s:6:\"status\";b:1;s:7:\"promote\";b:0;s:6:\"sticky\";b:0;s:7:\"created\";i:1285864742;s:8:\"revision\";b:0;s:7:\"comment\";i: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:13:\"primary-links\";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:22:\"pathauto_perform_alias\";b:1;}s:20:\"revision_information\";a:7:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:20:\"Revision information\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:7:\"#weight\";i:20;s:8:\"revision\";a:4:{s:7:\"#access\";b:1;s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:19:\"Create new revision\";s:14:\"#default_value\";b:0;}s:3:\"log\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:11:\"Log message\";s:14:\"#default_value\";s:0:\"\";s:5:\"#rows\";i:2;s:12:\"#description\";s:104:\"An explanation of the additions or updates being made to help other authors understand your motivations.\";}}s:6:\"author\";a:8:{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:7:\"#weight\";i:20;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:35:\"Leave blank for <em>Anonymous</em>.\";}s:4:\"date\";a:4:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:11:\"Authored on\";s:10:\"#maxlength\";i:25;s:12:\"#description\";s:91:\"Format: <em>2010-10-01 00:39:02 +0800</em>. Leave blank to use the time of form submission.\";}}s:7:\"options\";a:9:{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:7:\"#weight\";i:25;s:6:\"status\";a:3:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:9:\"Published\";s:14:\"#default_value\";b: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\";b: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\";b:0;}}s:7:\"buttons\";a:2:{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:16:\"node_form_submit\";}}s:7:\"preview\";a:4:{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:6:\"#theme\";a:2:{i:0;s:14:\"page_node_form\";i:1;s:9:\"node_form\";}s:11:\"#parameters\";a:3:{i:0;s:14:\"page_node_form\";i:1;a:3:{s:7:\"storage\";N;s:9:\"submitted\";b:0;s:4:\"post\";a:0:{}}i:2;a:4:{s:3:\"uid\";s:1:\"1\";s:4:\"name\";s:5:\"admin\";s:4:\"type\";s:4:\"page\";s:8:\"language\";s:0:\"\";}}s:9:\"#build_id\";s:37:\"form-a174beda2a9ff49cf9264040f7d976f9\";s:5:\"#type\";s:4:\"form\";s:11:\"#programmed\";b:0;s:13:\"form_build_id\";a:4:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:37:\"form-a174beda2a9ff49cf9264040f7d976f9\";s:3:\"#id\";s:37:\"form-a174beda2a9ff49cf9264040f7d976f9\";s:5:\"#name\";s:13:\"form_build_id\";}s:6:\"#token\";s:14:\"page_node_form\";s:10:\"form_token\";a:3:{s:3:\"#id\";s:30:\"edit-page-node-form-form-token\";s:5:\"#type\";s:5:\"token\";s:14:\"#default_value\";s:32:\"c8cdf5cb91a9be027c7b394c3034a064\";}s:7:\"form_id\";a:3:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:14:\"page_node_form\";s:3:\"#id\";s:19:\"edit-page-node-form\";}s:12:\"#description\";N;s:11:\"#attributes\";a:0:{}s:9:\"#required\";b:0;s:5:\"#tree\";b:0;s:8:\"#parents\";a:0:{}s:7:\"#method\";s:4:\"post\";s:7:\"#action\";s:29:\"/~uspvinc/main2/node/add/page\";s:16:\"comment_settings\";a:7:{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:7:\"#weight\";i:30;s:7:\"comment\";a:4:{s:5:\"#type\";s:6:\"radios\";s:8:\"#parents\";a:1:{i:0;s:7:\"comment\";}s:14:\"#default_value\";i:0;s:8:\"#options\";a:3:{i:0;s:8:\"Disabled\";i:1;s:9:\"Read only\";i:2;s:10:\"Read/Write\";}}}s:6:\"#cache\";b:1;s:4:\"menu\";a:20:{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:5:\"#tree\";b:1;s:7:\"#weight\";i:-2;s:11:\"#attributes\";a:1:{s:5:\"class\";s:14:\"menu-item-form\";}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:0;}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:5:\"#item\";a:12:{s:10:\"link_title\";s:0:\"\";s:4:\"mlid\";i:0;s:4:\"plid\";i:0;s:9:\"menu_name\";s:13:\"primary-links\";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:10:\"link_title\";a:5:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:15:\"Menu link title\";s:14:\"#default_value\";s:0:\"\";s:12:\"#description\";s:133:\"The link text corresponding to this item that should appear in the menu. Leave blank if you do not wish to add this post to the menu.\";s:9:\"#required\";b:0;}s:6:\"parent\";a:6:{s:5:\"#type\";s:6:\"select\";s:6:\"#title\";s:11:\"Parent item\";s:14:\"#default_value\";s:15:\"primary-links:0\";s:8:\"#options\";a:96:{s:16:\"menu-main-menu:0\";s:11:\"<Main Menu>\";s:18:\"menu-main-menu:283\";s:8:\"-- about\";s:18:\"menu-main-menu:285\";s:11:\"-- services\";s:18:\"menu-main-menu:284\";s:12:\"-- resources\";s:18:\"menu-main-menu:286\";s:17:\"-- special offers\";s:12:\"navigation:0\";s:12:\"<Navigation>\";s:12:\"navigation:9\";s:26:\"-- Compose tips (disabled)\";s:14:\"navigation:461\";s:29:\"-- Image galleries (disabled)\";s:13:\"navigation:21\";s:13:\"-- My account\";s:14:\"navigation:114\";s:20:\"-- Search (disabled)\";s:14:\"navigation:244\";s:22:\"-- Site map (disabled)\";s:13:\"navigation:11\";s:17:\"-- Create content\";s:14:\"navigation:476\";s:11:\"---- Banner\";s:14:\"navigation:441\";s:10:\"---- Image\";s:14:\"navigation:289\";s:21:\"---- Newsletter issue\";s:14:\"navigation:106\";s:9:\"---- Page\";s:14:\"navigation:388\";s:10:\"---- Panel\";s:14:\"navigation:107\";s:10:\"---- Story\";s:12:\"navigation:2\";s:13:\"-- Administer\";s:13:\"navigation:10\";s:23:\"---- Content management\";s:13:\"navigation:27\";s:15:\"------ Comments\";s:13:\"navigation:28\";s:14:\"------ Content\";s:13:\"navigation:29\";s:20:\"------ Content types\";s:14:\"navigation:462\";s:22:\"------ Image galleries\";s:14:\"navigation:463\";s:19:\"------ Image import\";s:14:\"navigation:538\";s:18:\"------ Newsletters\";s:14:\"navigation:546\";s:20:\"-------- Sent issues\";s:14:\"navigation:541\";s:21:\"-------- Draft issues\";s:14:\"navigation:544\";s:20:\"-------- Newsletters\";s:14:\"navigation:548\";s:22:\"-------- Subscriptions\";s:13:\"navigation:42\";s:20:\"------ Post settings\";s:13:\"navigation:43\";s:21:\"------ RSS publishing\";s:13:\"navigation:94\";s:15:\"------ Taxonomy\";s:13:\"navigation:17\";s:18:\"---- Site building\";s:13:\"navigation:25\";s:13:\"------ Blocks\";s:14:\"navigation:424\";s:20:\"------ Bulk Exporter\";s:13:\"navigation:38\";s:12:\"------ Menus\";s:14:\"navigation:282\";s:18:\"-------- Main Menu\";s:13:\"navigation:89\";s:19:\"-------- Navigation\";s:13:\"navigation:90\";s:22:\"-------- Primary links\";s:14:\"navigation:495\";s:19:\"-------- Right Menu\";s:13:\"navigation:91\";s:24:\"-------- Secondary links\";s:14:\"navigation:387\";s:18:\"------ Mini panels\";s:13:\"navigation:39\";s:14:\"------ Modules\";s:14:\"navigation:412\";s:12:\"------ Pages\";s:14:\"navigation:360\";s:13:\"------ Panels\";s:13:\"navigation:49\";s:13:\"------ Themes\";s:14:\"navigation:335\";s:15:\"------ Triggers\";s:14:\"navigation:501\";s:18:\"------ URL aliases\";s:14:\"navigation:257\";s:12:\"------ Views\";s:13:\"navigation:18\";s:23:\"---- Site configuration\";s:13:\"navigation:23\";s:14:\"------ Actions\";s:14:\"navigation:119\";s:26:\"------ Administration menu\";s:13:\"navigation:24\";s:27:\"------ Administration theme\";s:13:\"navigation:26\";s:17:\"------ Clean URLs\";s:13:\"navigation:30\";s:20:\"------ Date and time\";s:13:\"navigation:33\";s:22:\"------ Error reporting\";s:13:\"navigation:34\";s:18:\"------ File system\";s:13:\"navigation:35\";s:20:\"------ Image toolkit\";s:14:\"navigation:442\";s:13:\"------ Images\";s:13:\"navigation:36\";s:20:\"------ Input formats\";s:13:\"navigation:37\";s:25:\"------ Logging and alerts\";s:14:\"navigation:100\";s:25:\"-------- Database logging\";s:14:\"navigation:245\";s:17:\"------ Nice Menus\";s:13:\"navigation:40\";s:18:\"------ Performance\";s:14:\"navigation:120\";s:22:\"------ Search settings\";s:14:\"navigation:539\";s:17:\"------ Simplenews\";s:14:\"navigation:542\";s:16:\"-------- General\";s:14:\"navigation:543\";s:19:\"-------- Newsletter\";s:14:\"navigation:547\";s:21:\"-------- Subscription\";s:14:\"navigation:545\";s:18:\"-------- Send mail\";s:13:\"navigation:46\";s:23:\"------ Site information\";s:13:\"navigation:47\";s:23:\"------ Site maintenance\";s:14:\"navigation:246\";s:15:\"------ Site map\";s:13:\"navigation:20\";s:20:\"---- User management\";s:13:\"navigation:22\";s:19:\"------ Access rules\";s:13:\"navigation:41\";s:18:\"------ Permissions\";s:13:\"navigation:45\";s:12:\"------ Roles\";s:13:\"navigation:50\";s:20:\"------ User settings\";s:13:\"navigation:51\";s:12:\"------ Users\";s:13:\"navigation:16\";s:12:\"---- Reports\";s:13:\"navigation:93\";s:25:\"------ Recent log entries\";s:13:\"navigation:96\";s:33:\"------ Top \'access denied\' errors\";s:13:\"navigation:97\";s:34:\"------ Top \'page not found\' errors\";s:14:\"navigation:121\";s:25:\"------ Top search phrases\";s:14:\"navigation:105\";s:24:\"------ Available updates\";s:13:\"navigation:48\";s:20:\"------ Status report\";s:13:\"navigation:15\";s:9:\"---- Help\";s:12:\"navigation:4\";s:10:\"-- Log out\";s:15:\"primary-links:0\";s:15:\"<Primary links>\";s:17:\"menu-right-menu:0\";s:12:\"<Right Menu>\";s:19:\"menu-right-menu:496\";s:28:\"-- Financial Calculator Tool\";s:19:\"menu-right-menu:497\";s:21:\"-- News Story Library\";s:19:\"menu-right-menu:498\";s:14:\"-- Latest News\";s:19:\"menu-right-menu:499\";s:25:\"-- SREC Management Portal\";s:17:\"secondary-links:0\";s:17:\"<Secondary links>\";}s:12:\"#description\";s:156:\"The maximum depth for an item and all its children is fixed at 9. Some menu items may not be available as parents if selecting them would exceed this limit.\";s:11:\"#attributes\";a:1:{s:5:\"class\";s:17:\"menu-title-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:107:\"Optional. In the menu, the heavier items will sink and the lighter items will be positioned nearer the top.\";}}s:7:\"#submit\";a:1:{i:0;s:21:\"menu_node_form_submit\";}s:4:\"path\";a:8:{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:7:\"#access\";b:1;s:7:\"#weight\";i:30;s:4:\"path\";a:6:{s:5:\"#type\";s:9:\"textfield\";s:14:\"#default_value\";N;s:10:\"#maxlength\";i:128;s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:12:\"#description\";s:207:\"Optionally specify an alternative URL by which this node 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:22:\"pathauto_perform_alias\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:15:\"Automatic alias\";s:14:\"#default_value\";b:1;s:12:\"#description\";s:238:\"An alias will be generated for you. If you wish to create your own alias below, uncheck this option. To control the format of the generated aliases, see the <a href=\"/~uspvinc/main2/admin/build/path/pathauto\">automated alias settings</a>.\";s:7:\"#weight\";i:-1;}}s:11:\"#pre_render\";a:1:{i:0;s:27:\"content_alter_extra_weights\";}s:21:\"#content_extra_fields\";a:6:{s:5:\"title\";a:3:{s:5:\"label\";s:5:\"Title\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:-5;}s:10:\"body_field\";a:4:{s:5:\"label\";s:4:\"Body\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:0;s:4:\"view\";s:4:\"body\";}s:20:\"revision_information\";a:3:{s:5:\"label\";s:20:\"Revision information\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:20;}s:16:\"comment_settings\";a:3:{s:5:\"label\";s:16:\"Comment settings\";s:11:\"description\";s:20:\"Comment module form.\";s:6:\"weight\";i:30;}s:4:\"menu\";a:3:{s:5:\"label\";s:13:\"Menu settings\";s:11:\"description\";s:17:\"Menu module form.\";s:6:\"weight\";i:-2;}s:4:\"path\";a:3:{s:5:\"label\";s:13:\"Path settings\";s:11:\"description\";s:17:\"Path module form.\";s:6:\"weight\";i:30;}}s:12:\"#cache_token\";s:32:\"9b1d41d03b74313ea2e88d42ffb9ee80\";}',1285886342,1285864742,'',1),('form_form-6816114fbdd0c9a1905673c13dcab937','a:40:{s:3:\"#id\";s:9:\"node-form\";s:3:\"nid\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:1:\"6\";}s:3:\"vid\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:1:\"6\";}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:\"1265202590\";}s:4:\"type\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:4:\"page\";}s:8:\"language\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:0:\"\";}s:7:\"changed\";a:2:{s:5:\"#type\";s:6:\"hidden\";s:14:\"#default_value\";s:10:\"1285703305\";}s:5:\"title\";a:6:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:5:\"Title\";s:9:\"#required\";b:1;s:14:\"#default_value\";s:34:\"Special Offer for PV System Owners\";s:10:\"#maxlength\";i:255;s:7:\"#weight\";i:-5;}s:10:\"body_field\";a:7:{s:12:\"#after_build\";a:2:{i:0;s:14:\"node_teaser_js\";i:1;s:26:\"node_teaser_include_verify\";}s:7:\"#prefix\";s:32:\"<div class=\"body-field-wrapper\">\";s:7:\"#suffix\";s:6:\"</div>\";s:9:\"teaser_js\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:5:\"#rows\";i:10;s:7:\"#teaser\";s:9:\"edit-body\";s:16:\"#teaser_checkbox\";s:19:\"edit-teaser-include\";s:9:\"#disabled\";b:1;}s:14:\"teaser_include\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:25:\"Show summary in full view\";s:14:\"#default_value\";b:1;s:7:\"#prefix\";s:29:\"<div class=\"teaser-checkbox\">\";s:7:\"#suffix\";s:6:\"</div>\";}s:4:\"body\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:4:\"Body\";s:14:\"#default_value\";s:234:\"<p>\r\nSign-up for USPV\'s REC Management Program today. No up-front or out-of-pocket costs. Don\'t miss out on this opportunity to participate in the Renewable Energy Credit markets and earn hundreds or even thousands of dollars!\r\n</p>\r\n\";s:5:\"#rows\";i:20;s:9:\"#required\";b:0;}s:6:\"format\";a:9:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:12:\"Input format\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:7:\"#weight\";N;s:17:\"#element_validate\";a:1:{i:0;s:20:\"filter_form_validate\";}i:1;a:7:{s:5:\"#type\";s:5:\"radio\";s:6:\"#title\";s:13:\"Filtered HTML\";s:14:\"#default_value\";s:1:\"2\";s:13:\"#return_value\";s:1:\"1\";s:8:\"#parents\";a:1:{i:0;s:6:\"format\";}s:12:\"#description\";s:306:\"<ul class=\"tips\"><li>Web page addresses and e-mail addresses turn into links automatically.</li><li>Allowed HTML tags: &lt;a&gt; &lt;em&gt; &lt;strong&gt; &lt;cite&gt; &lt;code&gt; &lt;ul&gt; &lt;ol&gt; &lt;li&gt; &lt;dl&gt; &lt;dt&gt; &lt;dd&gt;</li><li>Lines and paragraphs break automatically.</li></ul>\";s:3:\"#id\";s:13:\"edit-format-1\";}i:2;a:7:{s:5:\"#type\";s:5:\"radio\";s:6:\"#title\";s:9:\"Full HTML\";s:14:\"#default_value\";s:1:\"2\";s:13:\"#return_value\";s:1:\"2\";s:8:\"#parents\";a:1:{i:0;s:6:\"format\";}s:12:\"#description\";s:151:\"<ul class=\"tips\"><li>Web page addresses and e-mail addresses turn into links automatically.</li><li>Lines and paragraphs break automatically.</li></ul>\";s:3:\"#id\";s:13:\"edit-format-2\";}i:3;a:1:{s:6:\"#value\";s:90:\"<p><a href=\"/~uspvinc/main2/filter/tips\">More information about formatting options</a></p>\";}}}s:5:\"#node\";O:8:\"stdClass\":33:{s:3:\"nid\";s:1:\"6\";s:4:\"type\";s:4:\"page\";s:8:\"language\";s:0:\"\";s:3:\"uid\";s:1:\"1\";s:6:\"status\";s:1:\"1\";s:7:\"created\";s:10:\"1265202590\";s:7:\"changed\";s:10:\"1285703305\";s:7:\"comment\";s:1:\"0\";s:7:\"promote\";s:1:\"0\";s:8:\"moderate\";s:1:\"0\";s:6:\"sticky\";s:1:\"0\";s:4:\"tnid\";s:1:\"0\";s:9:\"translate\";s:1:\"0\";s:3:\"vid\";s:1:\"6\";s:12:\"revision_uid\";s:1:\"1\";s:5:\"title\";s:34:\"Special Offer for PV System Owners\";s:4:\"body\";s:234:\"<p>\r\nSign-up for USPV\'s REC Management Program today. No up-front or out-of-pocket costs. Don\'t miss out on this opportunity to participate in the Renewable Energy Credit markets and earn hundreds or even thousands of dollars!\r\n</p>\r\n\";s:6:\"teaser\";s:234:\"<p>\r\nSign-up for USPV\'s REC Management Program today. No up-front or out-of-pocket costs. Don\'t miss out on this opportunity to participate in the Renewable Energy Credit markets and earn hundreds or even thousands of dollars!\r\n</p>\r\n\";s:3:\"log\";N;s:18:\"revision_timestamp\";s:10:\"1285703305\";s:6:\"format\";s:1:\"2\";s:4:\"name\";s:5:\"admin\";s:7:\"picture\";s:0:\"\";s:4:\"data\";s:6:\"a:0:{}\";s:4:\"path\";s:30:\"special-offer-pv-system-owners\";s:22:\"last_comment_timestamp\";s:10:\"1265202590\";s:17:\"last_comment_name\";N;s:13:\"comment_count\";s:1:\"0\";s:8:\"taxonomy\";a:0:{}s:4:\"date\";s:25:\"2010-02-03 21:09:50 +0800\";s:8:\"revision\";b:0;s:4:\"menu\";a:48:{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:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:3:\"fit\";s:1:\"2\";s:12:\"number_parts\";s:1:\"2\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:14:\"special offers\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:4:\"type\";s:1:\"4\";s:14:\"block_callback\";s:0:\"\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:3:\"-47\";s:4:\"file\";s:0:\"\";s:9:\"menu_name\";s:14:\"menu-main-menu\";s:4:\"mlid\";s:3:\"286\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/6\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:14:\"special offers\";s:7:\"options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:14:\"special offers\";}}s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"286\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:4:\"href\";s:6:\"node/6\";s:6:\"access\";b:1;s:17:\"localized_options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:14:\"special offers\";}}s:18:\"parent_depth_limit\";i:8;}s:22:\"pathauto_perform_alias\";b:1;}s:20:\"revision_information\";a:7:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:20:\"Revision information\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:7:\"#weight\";i:20;s:8:\"revision\";a:4:{s:7:\"#access\";b:1;s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:19:\"Create new revision\";s:14:\"#default_value\";b:0;}s:3:\"log\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:11:\"Log message\";s:14:\"#default_value\";s:0:\"\";s:5:\"#rows\";i:2;s:12:\"#description\";s:104:\"An explanation of the additions or updates being made to help other authors understand your motivations.\";}}s:6:\"author\";a:8:{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:7:\"#weight\";i:20;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:35:\"Leave blank for <em>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:91:\"Format: <em>2010-02-03 21:09:50 +0800</em>. Leave blank to use the time of form submission.\";s:14:\"#default_value\";s:25:\"2010-02-03 21:09:50 +0800\";}}s:7:\"options\";a:9:{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:7:\"#weight\";i:25;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:\"buttons\";a:3:{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:16:\"node_form_submit\";}}s:7:\"preview\";a:4:{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:6:\"#theme\";a:2:{i:0;s:14:\"page_node_form\";i:1;s:9:\"node_form\";}s:11:\"#parameters\";a:3:{i:0;s:14:\"page_node_form\";i:1;a:3:{s:7:\"storage\";N;s:9:\"submitted\";b:0;s:4:\"post\";a:0:{}}i:2;r:83;}s:9:\"#build_id\";s:37:\"form-6816114fbdd0c9a1905673c13dcab937\";s:5:\"#type\";s:4:\"form\";s:11:\"#programmed\";b:0;s:13:\"form_build_id\";a:4:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:37:\"form-6816114fbdd0c9a1905673c13dcab937\";s:3:\"#id\";s:37:\"form-6816114fbdd0c9a1905673c13dcab937\";s:5:\"#name\";s:13:\"form_build_id\";}s:6:\"#token\";s:14:\"page_node_form\";s:10:\"form_token\";a:3:{s:3:\"#id\";s:30:\"edit-page-node-form-form-token\";s:5:\"#type\";s:5:\"token\";s:14:\"#default_value\";s:32:\"c8cdf5cb91a9be027c7b394c3034a064\";}s:7:\"form_id\";a:3:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:14:\"page_node_form\";s:3:\"#id\";s:19:\"edit-page-node-form\";}s:12:\"#description\";N;s:11:\"#attributes\";a:0:{}s:9:\"#required\";b:0;s:5:\"#tree\";b:0;s:8:\"#parents\";a:0:{}s:7:\"#method\";s:4:\"post\";s:7:\"#action\";s:27:\"/~uspvinc/main2/node/6/edit\";s:16:\"comment_settings\";a:7:{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:7:\"#weight\";i:30;s:7:\"comment\";a:4:{s:5:\"#type\";s:6:\"radios\";s:8:\"#parents\";a:1:{i:0;s:7:\"comment\";}s:14:\"#default_value\";s:1:\"0\";s:8:\"#options\";a:3:{i:0;s:8:\"Disabled\";i:1;s:9:\"Read only\";i:2;s:10:\"Read/Write\";}}}s:6:\"#cache\";b:1;s:4:\"menu\";a:21:{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:5:\"#tree\";b:1;s:7:\"#weight\";i:-2;s:11:\"#attributes\";a:1:{s:5:\"class\";s:14:\"menu-item-form\";}s:6:\"delete\";a:2:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:22:\"Delete this menu item.\";}s:4:\"mlid\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:3:\"286\";}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\";s:1:\"1\";}s:7:\"options\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:14:\"special offers\";}}}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:5:\"#item\";a:48:{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:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:3:\"fit\";s:1:\"2\";s:12:\"number_parts\";s:1:\"2\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:14:\"special offers\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:4:\"type\";s:1:\"4\";s:14:\"block_callback\";s:0:\"\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:3:\"-47\";s:4:\"file\";s:0:\"\";s:9:\"menu_name\";s:14:\"menu-main-menu\";s:4:\"mlid\";s:3:\"286\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/6\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:14:\"special offers\";s:7:\"options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:14:\"special offers\";}}s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"286\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:4:\"href\";s:6:\"node/6\";s:6:\"access\";b:1;s:17:\"localized_options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:14:\"special offers\";}}s:18:\"parent_depth_limit\";i:8;}s:10:\"link_title\";a:5:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:15:\"Menu link title\";s:14:\"#default_value\";s:14:\"special offers\";s:12:\"#description\";s:133:\"The link text corresponding to this item that should appear in the menu. Leave blank if you do not wish to add this post to the menu.\";s:9:\"#required\";b:0;}s:6:\"parent\";a:6:{s:5:\"#type\";s:6:\"select\";s:6:\"#title\";s:11:\"Parent item\";s:14:\"#default_value\";s:16:\"menu-main-menu:0\";s:8:\"#options\";a:95:{s:16:\"menu-main-menu:0\";s:11:\"<Main Menu>\";s:18:\"menu-main-menu:283\";s:8:\"-- about\";s:18:\"menu-main-menu:285\";s:11:\"-- services\";s:18:\"menu-main-menu:284\";s:12:\"-- resources\";s:12:\"navigation:0\";s:12:\"<Navigation>\";s:12:\"navigation:9\";s:26:\"-- Compose tips (disabled)\";s:14:\"navigation:461\";s:29:\"-- Image galleries (disabled)\";s:13:\"navigation:21\";s:13:\"-- My account\";s:14:\"navigation:114\";s:20:\"-- Search (disabled)\";s:14:\"navigation:244\";s:22:\"-- Site map (disabled)\";s:13:\"navigation:11\";s:17:\"-- Create content\";s:14:\"navigation:476\";s:11:\"---- Banner\";s:14:\"navigation:441\";s:10:\"---- Image\";s:14:\"navigation:289\";s:21:\"---- Newsletter issue\";s:14:\"navigation:106\";s:9:\"---- Page\";s:14:\"navigation:388\";s:10:\"---- Panel\";s:14:\"navigation:107\";s:10:\"---- Story\";s:12:\"navigation:2\";s:13:\"-- Administer\";s:13:\"navigation:10\";s:23:\"---- Content management\";s:13:\"navigation:27\";s:15:\"------ Comments\";s:13:\"navigation:28\";s:14:\"------ Content\";s:13:\"navigation:29\";s:20:\"------ Content types\";s:14:\"navigation:462\";s:22:\"------ Image galleries\";s:14:\"navigation:463\";s:19:\"------ Image import\";s:14:\"navigation:538\";s:18:\"------ Newsletters\";s:14:\"navigation:546\";s:20:\"-------- Sent issues\";s:14:\"navigation:541\";s:21:\"-------- Draft issues\";s:14:\"navigation:544\";s:20:\"-------- Newsletters\";s:14:\"navigation:548\";s:22:\"-------- Subscriptions\";s:13:\"navigation:42\";s:20:\"------ Post settings\";s:13:\"navigation:43\";s:21:\"------ RSS publishing\";s:13:\"navigation:94\";s:15:\"------ Taxonomy\";s:13:\"navigation:17\";s:18:\"---- Site building\";s:13:\"navigation:25\";s:13:\"------ Blocks\";s:14:\"navigation:424\";s:20:\"------ Bulk Exporter\";s:13:\"navigation:38\";s:12:\"------ Menus\";s:14:\"navigation:282\";s:18:\"-------- Main Menu\";s:13:\"navigation:89\";s:19:\"-------- Navigation\";s:13:\"navigation:90\";s:22:\"-------- Primary links\";s:14:\"navigation:495\";s:19:\"-------- Right Menu\";s:13:\"navigation:91\";s:24:\"-------- Secondary links\";s:14:\"navigation:387\";s:18:\"------ Mini panels\";s:13:\"navigation:39\";s:14:\"------ Modules\";s:14:\"navigation:412\";s:12:\"------ Pages\";s:14:\"navigation:360\";s:13:\"------ Panels\";s:13:\"navigation:49\";s:13:\"------ Themes\";s:14:\"navigation:335\";s:15:\"------ Triggers\";s:14:\"navigation:501\";s:18:\"------ URL aliases\";s:14:\"navigation:257\";s:12:\"------ Views\";s:13:\"navigation:18\";s:23:\"---- Site configuration\";s:13:\"navigation:23\";s:14:\"------ Actions\";s:14:\"navigation:119\";s:26:\"------ Administration menu\";s:13:\"navigation:24\";s:27:\"------ Administration theme\";s:13:\"navigation:26\";s:17:\"------ Clean URLs\";s:13:\"navigation:30\";s:20:\"------ Date and time\";s:13:\"navigation:33\";s:22:\"------ Error reporting\";s:13:\"navigation:34\";s:18:\"------ File system\";s:13:\"navigation:35\";s:20:\"------ Image toolkit\";s:14:\"navigation:442\";s:13:\"------ Images\";s:13:\"navigation:36\";s:20:\"------ Input formats\";s:13:\"navigation:37\";s:25:\"------ Logging and alerts\";s:14:\"navigation:100\";s:25:\"-------- Database logging\";s:14:\"navigation:245\";s:17:\"------ Nice Menus\";s:13:\"navigation:40\";s:18:\"------ Performance\";s:14:\"navigation:120\";s:22:\"------ Search settings\";s:14:\"navigation:539\";s:17:\"------ Simplenews\";s:14:\"navigation:542\";s:16:\"-------- General\";s:14:\"navigation:543\";s:19:\"-------- Newsletter\";s:14:\"navigation:547\";s:21:\"-------- Subscription\";s:14:\"navigation:545\";s:18:\"-------- Send mail\";s:13:\"navigation:46\";s:23:\"------ Site information\";s:13:\"navigation:47\";s:23:\"------ Site maintenance\";s:14:\"navigation:246\";s:15:\"------ Site map\";s:13:\"navigation:20\";s:20:\"---- User management\";s:13:\"navigation:22\";s:19:\"------ Access rules\";s:13:\"navigation:41\";s:18:\"------ Permissions\";s:13:\"navigation:45\";s:12:\"------ Roles\";s:13:\"navigation:50\";s:20:\"------ User settings\";s:13:\"navigation:51\";s:12:\"------ Users\";s:13:\"navigation:16\";s:12:\"---- Reports\";s:13:\"navigation:93\";s:25:\"------ Recent log entries\";s:13:\"navigation:96\";s:33:\"------ Top \'access denied\' errors\";s:13:\"navigation:97\";s:34:\"------ Top \'page not found\' errors\";s:14:\"navigation:121\";s:25:\"------ Top search phrases\";s:14:\"navigation:105\";s:24:\"------ Available updates\";s:13:\"navigation:48\";s:20:\"------ Status report\";s:13:\"navigation:15\";s:9:\"---- Help\";s:12:\"navigation:4\";s:10:\"-- Log out\";s:15:\"primary-links:0\";s:15:\"<Primary links>\";s:17:\"menu-right-menu:0\";s:12:\"<Right Menu>\";s:19:\"menu-right-menu:496\";s:28:\"-- Financial Calculator Tool\";s:19:\"menu-right-menu:497\";s:21:\"-- News Story Library\";s:19:\"menu-right-menu:498\";s:14:\"-- Latest News\";s:19:\"menu-right-menu:499\";s:25:\"-- SREC Management Portal\";s:17:\"secondary-links:0\";s:17:\"<Secondary links>\";}s:12:\"#description\";s:156:\"The maximum depth for an item and all its children is fixed at 9. Some menu items may not be available as parents if selecting them would exceed this limit.\";s:11:\"#attributes\";a:1:{s:5:\"class\";s:17:\"menu-title-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:\"-47\";s:12:\"#description\";s:107:\"Optional. In the menu, the heavier items will sink and the lighter items will be positioned nearer the top.\";}}s:7:\"#submit\";a:1:{i:0;s:21:\"menu_node_form_submit\";}s:4:\"path\";a:10:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:17:\"URL path settings\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:0;s:7:\"#access\";b:1;s:7:\"#weight\";i:30;s:4:\"path\";a:6:{s:5:\"#type\";s:9:\"textfield\";s:14:\"#default_value\";s:30:\"special-offer-pv-system-owners\";s:10:\"#maxlength\";i:128;s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:12:\"#description\";s:207:\"Optionally specify an alternative URL by which this node 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\";s:1:\"6\";}s:22:\"pathauto_perform_alias\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:15:\"Automatic alias\";s:14:\"#default_value\";b:1;s:12:\"#description\";s:238:\"An alias will be generated for you. If you wish to create your own alias below, uncheck this option. To control the format of the generated aliases, see the <a href=\"/~uspvinc/main2/admin/build/path/pathauto\">automated alias settings</a>.\";s:7:\"#weight\";i:-1;}s:9:\"old_alias\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:30:\"special-offer-pv-system-owners\";}}s:11:\"#pre_render\";a:1:{i:0;s:27:\"content_alter_extra_weights\";}s:21:\"#content_extra_fields\";a:6:{s:5:\"title\";a:3:{s:5:\"label\";s:5:\"Title\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:-5;}s:10:\"body_field\";a:4:{s:5:\"label\";s:4:\"Body\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:0;s:4:\"view\";s:4:\"body\";}s:20:\"revision_information\";a:3:{s:5:\"label\";s:20:\"Revision information\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:20;}s:16:\"comment_settings\";a:3:{s:5:\"label\";s:16:\"Comment settings\";s:11:\"description\";s:20:\"Comment module form.\";s:6:\"weight\";i:30;}s:4:\"menu\";a:3:{s:5:\"label\";s:13:\"Menu settings\";s:11:\"description\";s:17:\"Menu module form.\";s:6:\"weight\";i:-2;}s:4:\"path\";a:3:{s:5:\"label\";s:13:\"Path settings\";s:11:\"description\";s:17:\"Path module form.\";s:6:\"weight\";i:30;}}s:12:\"#cache_token\";s:32:\"9b1d41d03b74313ea2e88d42ffb9ee80\";}',1285887519,1285865919,'',1),('form_form-95e1a6d011e0b0867e2be18164bd173d','a:40:{s:3:\"#id\";s:9:\"node-form\";s:3:\"nid\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:1:\"6\";}s:3:\"vid\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:1:\"6\";}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:\"1265202590\";}s:4:\"type\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:4:\"page\";}s:8:\"language\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:0:\"\";}s:7:\"changed\";a:2:{s:5:\"#type\";s:6:\"hidden\";s:14:\"#default_value\";s:10:\"1285703305\";}s:5:\"title\";a:6:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:5:\"Title\";s:9:\"#required\";b:1;s:14:\"#default_value\";s:34:\"Special Offer for PV System Owners\";s:10:\"#maxlength\";i:255;s:7:\"#weight\";i:-5;}s:10:\"body_field\";a:7:{s:12:\"#after_build\";a:2:{i:0;s:14:\"node_teaser_js\";i:1;s:26:\"node_teaser_include_verify\";}s:7:\"#prefix\";s:32:\"<div class=\"body-field-wrapper\">\";s:7:\"#suffix\";s:6:\"</div>\";s:9:\"teaser_js\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:5:\"#rows\";i:10;s:7:\"#teaser\";s:9:\"edit-body\";s:16:\"#teaser_checkbox\";s:19:\"edit-teaser-include\";s:9:\"#disabled\";b:1;}s:14:\"teaser_include\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:25:\"Show summary in full view\";s:14:\"#default_value\";b:1;s:7:\"#prefix\";s:29:\"<div class=\"teaser-checkbox\">\";s:7:\"#suffix\";s:6:\"</div>\";}s:4:\"body\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:4:\"Body\";s:14:\"#default_value\";s:234:\"<p>\r\nSign-up for USPV\'s REC Management Program today. No up-front or out-of-pocket costs. Don\'t miss out on this opportunity to participate in the Renewable Energy Credit markets and earn hundreds or even thousands of dollars!\r\n</p>\r\n\";s:5:\"#rows\";i:20;s:9:\"#required\";b:0;}s:6:\"format\";a:9:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:12:\"Input format\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:7:\"#weight\";N;s:17:\"#element_validate\";a:1:{i:0;s:20:\"filter_form_validate\";}i:1;a:7:{s:5:\"#type\";s:5:\"radio\";s:6:\"#title\";s:13:\"Filtered HTML\";s:14:\"#default_value\";s:1:\"2\";s:13:\"#return_value\";s:1:\"1\";s:8:\"#parents\";a:1:{i:0;s:6:\"format\";}s:12:\"#description\";s:306:\"<ul class=\"tips\"><li>Web page addresses and e-mail addresses turn into links automatically.</li><li>Allowed HTML tags: &lt;a&gt; &lt;em&gt; &lt;strong&gt; &lt;cite&gt; &lt;code&gt; &lt;ul&gt; &lt;ol&gt; &lt;li&gt; &lt;dl&gt; &lt;dt&gt; &lt;dd&gt;</li><li>Lines and paragraphs break automatically.</li></ul>\";s:3:\"#id\";s:13:\"edit-format-1\";}i:2;a:7:{s:5:\"#type\";s:5:\"radio\";s:6:\"#title\";s:9:\"Full HTML\";s:14:\"#default_value\";s:1:\"2\";s:13:\"#return_value\";s:1:\"2\";s:8:\"#parents\";a:1:{i:0;s:6:\"format\";}s:12:\"#description\";s:151:\"<ul class=\"tips\"><li>Web page addresses and e-mail addresses turn into links automatically.</li><li>Lines and paragraphs break automatically.</li></ul>\";s:3:\"#id\";s:13:\"edit-format-2\";}i:3;a:1:{s:6:\"#value\";s:90:\"<p><a href=\"/~uspvinc/main2/filter/tips\">More information about formatting options</a></p>\";}}}s:5:\"#node\";O:8:\"stdClass\":33:{s:3:\"nid\";s:1:\"6\";s:4:\"type\";s:4:\"page\";s:8:\"language\";s:0:\"\";s:3:\"uid\";s:1:\"1\";s:6:\"status\";s:1:\"1\";s:7:\"created\";s:10:\"1265202590\";s:7:\"changed\";s:10:\"1285703305\";s:7:\"comment\";s:1:\"0\";s:7:\"promote\";s:1:\"0\";s:8:\"moderate\";s:1:\"0\";s:6:\"sticky\";s:1:\"0\";s:4:\"tnid\";s:1:\"0\";s:9:\"translate\";s:1:\"0\";s:3:\"vid\";s:1:\"6\";s:12:\"revision_uid\";s:1:\"1\";s:5:\"title\";s:34:\"Special Offer for PV System Owners\";s:4:\"body\";s:234:\"<p>\r\nSign-up for USPV\'s REC Management Program today. No up-front or out-of-pocket costs. Don\'t miss out on this opportunity to participate in the Renewable Energy Credit markets and earn hundreds or even thousands of dollars!\r\n</p>\r\n\";s:6:\"teaser\";s:234:\"<p>\r\nSign-up for USPV\'s REC Management Program today. No up-front or out-of-pocket costs. Don\'t miss out on this opportunity to participate in the Renewable Energy Credit markets and earn hundreds or even thousands of dollars!\r\n</p>\r\n\";s:3:\"log\";N;s:18:\"revision_timestamp\";s:10:\"1285703305\";s:6:\"format\";s:1:\"2\";s:4:\"name\";s:5:\"admin\";s:7:\"picture\";s:0:\"\";s:4:\"data\";s:6:\"a:0:{}\";s:4:\"path\";s:30:\"special-offer-pv-system-owners\";s:22:\"last_comment_timestamp\";s:10:\"1265202590\";s:17:\"last_comment_name\";N;s:13:\"comment_count\";s:1:\"0\";s:8:\"taxonomy\";a:0:{}s:4:\"date\";s:25:\"2010-02-03 21:09:50 +0800\";s:8:\"revision\";b:0;s:4:\"menu\";a:48:{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:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:3:\"fit\";s:1:\"2\";s:12:\"number_parts\";s:1:\"2\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:14:\"special offers\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:4:\"type\";s:1:\"4\";s:14:\"block_callback\";s:0:\"\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:3:\"-47\";s:4:\"file\";s:0:\"\";s:9:\"menu_name\";s:14:\"menu-main-menu\";s:4:\"mlid\";s:3:\"286\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/6\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:14:\"special offers\";s:7:\"options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:14:\"special offers\";}}s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"286\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:4:\"href\";s:6:\"node/6\";s:6:\"access\";b:1;s:17:\"localized_options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:14:\"special offers\";}}s:18:\"parent_depth_limit\";i:8;}s:22:\"pathauto_perform_alias\";b:1;}s:20:\"revision_information\";a:7:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:20:\"Revision information\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:7:\"#weight\";i:20;s:8:\"revision\";a:4:{s:7:\"#access\";b:1;s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:19:\"Create new revision\";s:14:\"#default_value\";b:0;}s:3:\"log\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:11:\"Log message\";s:14:\"#default_value\";s:0:\"\";s:5:\"#rows\";i:2;s:12:\"#description\";s:104:\"An explanation of the additions or updates being made to help other authors understand your motivations.\";}}s:6:\"author\";a:8:{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:7:\"#weight\";i:20;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:35:\"Leave blank for <em>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:91:\"Format: <em>2010-02-03 21:09:50 +0800</em>. Leave blank to use the time of form submission.\";s:14:\"#default_value\";s:25:\"2010-02-03 21:09:50 +0800\";}}s:7:\"options\";a:9:{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:7:\"#weight\";i:25;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:\"buttons\";a:3:{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:16:\"node_form_submit\";}}s:7:\"preview\";a:4:{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:6:\"#theme\";a:2:{i:0;s:14:\"page_node_form\";i:1;s:9:\"node_form\";}s:11:\"#parameters\";a:3:{i:0;s:14:\"page_node_form\";i:1;a:3:{s:7:\"storage\";N;s:9:\"submitted\";b:0;s:4:\"post\";a:0:{}}i:2;r:83;}s:9:\"#build_id\";s:37:\"form-95e1a6d011e0b0867e2be18164bd173d\";s:5:\"#type\";s:4:\"form\";s:11:\"#programmed\";b:0;s:13:\"form_build_id\";a:4:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:37:\"form-95e1a6d011e0b0867e2be18164bd173d\";s:3:\"#id\";s:37:\"form-95e1a6d011e0b0867e2be18164bd173d\";s:5:\"#name\";s:13:\"form_build_id\";}s:6:\"#token\";s:14:\"page_node_form\";s:10:\"form_token\";a:3:{s:3:\"#id\";s:30:\"edit-page-node-form-form-token\";s:5:\"#type\";s:5:\"token\";s:14:\"#default_value\";s:32:\"c8cdf5cb91a9be027c7b394c3034a064\";}s:7:\"form_id\";a:3:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:14:\"page_node_form\";s:3:\"#id\";s:19:\"edit-page-node-form\";}s:12:\"#description\";N;s:11:\"#attributes\";a:0:{}s:9:\"#required\";b:0;s:5:\"#tree\";b:0;s:8:\"#parents\";a:0:{}s:7:\"#method\";s:4:\"post\";s:7:\"#action\";s:27:\"/~uspvinc/main2/node/6/edit\";s:16:\"comment_settings\";a:7:{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:7:\"#weight\";i:30;s:7:\"comment\";a:4:{s:5:\"#type\";s:6:\"radios\";s:8:\"#parents\";a:1:{i:0;s:7:\"comment\";}s:14:\"#default_value\";s:1:\"0\";s:8:\"#options\";a:3:{i:0;s:8:\"Disabled\";i:1;s:9:\"Read only\";i:2;s:10:\"Read/Write\";}}}s:6:\"#cache\";b:1;s:4:\"menu\";a:21:{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:5:\"#tree\";b:1;s:7:\"#weight\";i:-2;s:11:\"#attributes\";a:1:{s:5:\"class\";s:14:\"menu-item-form\";}s:6:\"delete\";a:2:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:22:\"Delete this menu item.\";}s:4:\"mlid\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:3:\"286\";}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\";s:1:\"1\";}s:7:\"options\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:14:\"special offers\";}}}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:5:\"#item\";a:48:{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:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:3:\"fit\";s:1:\"2\";s:12:\"number_parts\";s:1:\"2\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:14:\"special offers\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:4:\"type\";s:1:\"4\";s:14:\"block_callback\";s:0:\"\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:3:\"-47\";s:4:\"file\";s:0:\"\";s:9:\"menu_name\";s:14:\"menu-main-menu\";s:4:\"mlid\";s:3:\"286\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/6\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:14:\"special offers\";s:7:\"options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:14:\"special offers\";}}s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"286\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:4:\"href\";s:6:\"node/6\";s:6:\"access\";b:1;s:17:\"localized_options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:14:\"special offers\";}}s:18:\"parent_depth_limit\";i:8;}s:10:\"link_title\";a:5:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:15:\"Menu link title\";s:14:\"#default_value\";s:14:\"special offers\";s:12:\"#description\";s:133:\"The link text corresponding to this item that should appear in the menu. Leave blank if you do not wish to add this post to the menu.\";s:9:\"#required\";b:0;}s:6:\"parent\";a:6:{s:5:\"#type\";s:6:\"select\";s:6:\"#title\";s:11:\"Parent item\";s:14:\"#default_value\";s:16:\"menu-main-menu:0\";s:8:\"#options\";a:95:{s:16:\"menu-main-menu:0\";s:11:\"<Main Menu>\";s:18:\"menu-main-menu:283\";s:8:\"-- about\";s:18:\"menu-main-menu:285\";s:11:\"-- services\";s:18:\"menu-main-menu:284\";s:12:\"-- resources\";s:12:\"navigation:0\";s:12:\"<Navigation>\";s:12:\"navigation:9\";s:26:\"-- Compose tips (disabled)\";s:14:\"navigation:461\";s:29:\"-- Image galleries (disabled)\";s:13:\"navigation:21\";s:13:\"-- My account\";s:14:\"navigation:114\";s:20:\"-- Search (disabled)\";s:14:\"navigation:244\";s:22:\"-- Site map (disabled)\";s:13:\"navigation:11\";s:17:\"-- Create content\";s:14:\"navigation:476\";s:11:\"---- Banner\";s:14:\"navigation:441\";s:10:\"---- Image\";s:14:\"navigation:289\";s:21:\"---- Newsletter issue\";s:14:\"navigation:106\";s:9:\"---- Page\";s:14:\"navigation:388\";s:10:\"---- Panel\";s:14:\"navigation:107\";s:10:\"---- Story\";s:12:\"navigation:2\";s:13:\"-- Administer\";s:13:\"navigation:10\";s:23:\"---- Content management\";s:13:\"navigation:27\";s:15:\"------ Comments\";s:13:\"navigation:28\";s:14:\"------ Content\";s:13:\"navigation:29\";s:20:\"------ Content types\";s:14:\"navigation:462\";s:22:\"------ Image galleries\";s:14:\"navigation:463\";s:19:\"------ Image import\";s:14:\"navigation:538\";s:18:\"------ Newsletters\";s:14:\"navigation:546\";s:20:\"-------- Sent issues\";s:14:\"navigation:541\";s:21:\"-------- Draft issues\";s:14:\"navigation:544\";s:20:\"-------- Newsletters\";s:14:\"navigation:548\";s:22:\"-------- Subscriptions\";s:13:\"navigation:42\";s:20:\"------ Post settings\";s:13:\"navigation:43\";s:21:\"------ RSS publishing\";s:13:\"navigation:94\";s:15:\"------ Taxonomy\";s:13:\"navigation:17\";s:18:\"---- Site building\";s:13:\"navigation:25\";s:13:\"------ Blocks\";s:14:\"navigation:424\";s:20:\"------ Bulk Exporter\";s:13:\"navigation:38\";s:12:\"------ Menus\";s:14:\"navigation:282\";s:18:\"-------- Main Menu\";s:13:\"navigation:89\";s:19:\"-------- Navigation\";s:13:\"navigation:90\";s:22:\"-------- Primary links\";s:14:\"navigation:495\";s:19:\"-------- Right Menu\";s:13:\"navigation:91\";s:24:\"-------- Secondary links\";s:14:\"navigation:387\";s:18:\"------ Mini panels\";s:13:\"navigation:39\";s:14:\"------ Modules\";s:14:\"navigation:412\";s:12:\"------ Pages\";s:14:\"navigation:360\";s:13:\"------ Panels\";s:13:\"navigation:49\";s:13:\"------ Themes\";s:14:\"navigation:335\";s:15:\"------ Triggers\";s:14:\"navigation:501\";s:18:\"------ URL aliases\";s:14:\"navigation:257\";s:12:\"------ Views\";s:13:\"navigation:18\";s:23:\"---- Site configuration\";s:13:\"navigation:23\";s:14:\"------ Actions\";s:14:\"navigation:119\";s:26:\"------ Administration menu\";s:13:\"navigation:24\";s:27:\"------ Administration theme\";s:13:\"navigation:26\";s:17:\"------ Clean URLs\";s:13:\"navigation:30\";s:20:\"------ Date and time\";s:13:\"navigation:33\";s:22:\"------ Error reporting\";s:13:\"navigation:34\";s:18:\"------ File system\";s:13:\"navigation:35\";s:20:\"------ Image toolkit\";s:14:\"navigation:442\";s:13:\"------ Images\";s:13:\"navigation:36\";s:20:\"------ Input formats\";s:13:\"navigation:37\";s:25:\"------ Logging and alerts\";s:14:\"navigation:100\";s:25:\"-------- Database logging\";s:14:\"navigation:245\";s:17:\"------ Nice Menus\";s:13:\"navigation:40\";s:18:\"------ Performance\";s:14:\"navigation:120\";s:22:\"------ Search settings\";s:14:\"navigation:539\";s:17:\"------ Simplenews\";s:14:\"navigation:542\";s:16:\"-------- General\";s:14:\"navigation:543\";s:19:\"-------- Newsletter\";s:14:\"navigation:547\";s:21:\"-------- Subscription\";s:14:\"navigation:545\";s:18:\"-------- Send mail\";s:13:\"navigation:46\";s:23:\"------ Site information\";s:13:\"navigation:47\";s:23:\"------ Site maintenance\";s:14:\"navigation:246\";s:15:\"------ Site map\";s:13:\"navigation:20\";s:20:\"---- User management\";s:13:\"navigation:22\";s:19:\"------ Access rules\";s:13:\"navigation:41\";s:18:\"------ Permissions\";s:13:\"navigation:45\";s:12:\"------ Roles\";s:13:\"navigation:50\";s:20:\"------ User settings\";s:13:\"navigation:51\";s:12:\"------ Users\";s:13:\"navigation:16\";s:12:\"---- Reports\";s:13:\"navigation:93\";s:25:\"------ Recent log entries\";s:13:\"navigation:96\";s:33:\"------ Top \'access denied\' errors\";s:13:\"navigation:97\";s:34:\"------ Top \'page not found\' errors\";s:14:\"navigation:121\";s:25:\"------ Top search phrases\";s:14:\"navigation:105\";s:24:\"------ Available updates\";s:13:\"navigation:48\";s:20:\"------ Status report\";s:13:\"navigation:15\";s:9:\"---- Help\";s:12:\"navigation:4\";s:10:\"-- Log out\";s:15:\"primary-links:0\";s:15:\"<Primary links>\";s:17:\"menu-right-menu:0\";s:12:\"<Right Menu>\";s:19:\"menu-right-menu:496\";s:28:\"-- Financial Calculator Tool\";s:19:\"menu-right-menu:497\";s:21:\"-- News Story Library\";s:19:\"menu-right-menu:498\";s:14:\"-- Latest News\";s:19:\"menu-right-menu:499\";s:25:\"-- SREC Management Portal\";s:17:\"secondary-links:0\";s:17:\"<Secondary links>\";}s:12:\"#description\";s:156:\"The maximum depth for an item and all its children is fixed at 9. Some menu items may not be available as parents if selecting them would exceed this limit.\";s:11:\"#attributes\";a:1:{s:5:\"class\";s:17:\"menu-title-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:\"-47\";s:12:\"#description\";s:107:\"Optional. In the menu, the heavier items will sink and the lighter items will be positioned nearer the top.\";}}s:7:\"#submit\";a:1:{i:0;s:21:\"menu_node_form_submit\";}s:4:\"path\";a:10:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:17:\"URL path settings\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:0;s:7:\"#access\";b:1;s:7:\"#weight\";i:30;s:4:\"path\";a:6:{s:5:\"#type\";s:9:\"textfield\";s:14:\"#default_value\";s:30:\"special-offer-pv-system-owners\";s:10:\"#maxlength\";i:128;s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:12:\"#description\";s:207:\"Optionally specify an alternative URL by which this node 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\";s:1:\"6\";}s:22:\"pathauto_perform_alias\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:15:\"Automatic alias\";s:14:\"#default_value\";b:1;s:12:\"#description\";s:238:\"An alias will be generated for you. If you wish to create your own alias below, uncheck this option. To control the format of the generated aliases, see the <a href=\"/~uspvinc/main2/admin/build/path/pathauto\">automated alias settings</a>.\";s:7:\"#weight\";i:-1;}s:9:\"old_alias\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:30:\"special-offer-pv-system-owners\";}}s:11:\"#pre_render\";a:1:{i:0;s:27:\"content_alter_extra_weights\";}s:21:\"#content_extra_fields\";a:6:{s:5:\"title\";a:3:{s:5:\"label\";s:5:\"Title\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:-5;}s:10:\"body_field\";a:4:{s:5:\"label\";s:4:\"Body\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:0;s:4:\"view\";s:4:\"body\";}s:20:\"revision_information\";a:3:{s:5:\"label\";s:20:\"Revision information\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:20;}s:16:\"comment_settings\";a:3:{s:5:\"label\";s:16:\"Comment settings\";s:11:\"description\";s:20:\"Comment module form.\";s:6:\"weight\";i:30;}s:4:\"menu\";a:3:{s:5:\"label\";s:13:\"Menu settings\";s:11:\"description\";s:17:\"Menu module form.\";s:6:\"weight\";i:-2;}s:4:\"path\";a:3:{s:5:\"label\";s:13:\"Path settings\";s:11:\"description\";s:17:\"Path module form.\";s:6:\"weight\";i:30;}}s:12:\"#cache_token\";s:32:\"9b1d41d03b74313ea2e88d42ffb9ee80\";}',1285887623,1285866023,'',1),('form_form-92f1bd4fe5422b569833640380398808','a:40:{s:3:\"#id\";s:9:\"node-form\";s:3:\"nid\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:2:\"11\";}s:3:\"vid\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:2:\"11\";}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:\"1285703167\";}s:4:\"type\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:4:\"page\";}s:8:\"language\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:0:\"\";}s:7:\"changed\";a:2:{s:5:\"#type\";s:6:\"hidden\";s:14:\"#default_value\";s:10:\"1285713075\";}s:5:\"title\";a:6:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:5:\"Title\";s:9:\"#required\";b:1;s:14:\"#default_value\";s:69:\"Renewable Energy Credit (REC) Management Program for PV System Owners\";s:10:\"#maxlength\";i:255;s:7:\"#weight\";i:-5;}s:10:\"body_field\";a:7:{s:12:\"#after_build\";a:2:{i:0;s:14:\"node_teaser_js\";i:1;s:26:\"node_teaser_include_verify\";}s:7:\"#prefix\";s:32:\"<div class=\"body-field-wrapper\">\";s:7:\"#suffix\";s:6:\"</div>\";s:9:\"teaser_js\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:5:\"#rows\";i:10;s:7:\"#teaser\";s:9:\"edit-body\";s:16:\"#teaser_checkbox\";s:19:\"edit-teaser-include\";s:9:\"#disabled\";b:1;}s:14:\"teaser_include\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:25:\"Show summary in full view\";s:14:\"#default_value\";b:1;s:7:\"#prefix\";s:29:\"<div class=\"teaser-checkbox\">\";s:7:\"#suffix\";s:6:\"</div>\";}s:4:\"body\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:4:\"Body\";s:14:\"#default_value\";s:1750:\"Sign-up for USPV\'s REC Management Program today.  No up-front or out-of-pocket costs.  Don\'t miss out on this opportunity to participate in the Renewable Energy Credit markets and earn hundreds or even thousands of dollars!  \r\n\r\nCongratulations on your decision to install a new photovoltaic system on your property.  You already know that your system will lower your electric bill, reduce your carbon footprint and demonstrate your commitment to the environment. \r\n\r\nWhat you may not know is that there is now a new way to use the electricity your system generates to create and sell Renewable Energy Certificates (REC) that can earn you hundreds, perhaps thousands, of dollars.  Previously, only relatively large PV generators could afford the time and expense required to profitably create and trade RECs--but now you can too.\r\n\r\n \r\n\r\nAt USPV, our mission is to Make Solar Simple.  We have developed a streamlined process to allow owners of PV systems as small as 1 kWp to participate and receive the benefits of this program.\r\n\r\n \r\n\r\nThere are no up-front expenses or out-of-pocket costs and virtually no time commitment on the part of the system owner.\r\n\r\n \r\n\r\nWe do all the work and our fees are strictly commission-based from the earnings on REC sales from your account.   \r\n\r\n<a href=\"/~uspvinc/main2/understanding-renewable-energy-credits-and-certificates-maryland-pv-system-owners\">Learn More about Renewable Energy Credits</a>\r\n\r\n  \r\n\r\nTo sign-up or learn more about this program, call Fred Ugast at 240-344-2657 or send an email to <a href=\"mailto:fred.ugast@uspvinc.com\">fred.ugast@uspvinc.com</a>\r\n\r\n \r\n\r\n<a href=\"/~uspvinc/main2/sites/default/files/pdf/md-agency.pdf\">Download a copy of our Renewable Energy Credit Agency Agreement</a>\";s:5:\"#rows\";i:20;s:9:\"#required\";b:0;}s:6:\"format\";a:9:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:12:\"Input format\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:7:\"#weight\";N;s:17:\"#element_validate\";a:1:{i:0;s:20:\"filter_form_validate\";}i:1;a:7:{s:5:\"#type\";s:5:\"radio\";s:6:\"#title\";s:13:\"Filtered HTML\";s:14:\"#default_value\";s:1:\"1\";s:13:\"#return_value\";s:1:\"1\";s:8:\"#parents\";a:1:{i:0;s:6:\"format\";}s:12:\"#description\";s:306:\"<ul class=\"tips\"><li>Web page addresses and e-mail addresses turn into links automatically.</li><li>Allowed HTML tags: &lt;a&gt; &lt;em&gt; &lt;strong&gt; &lt;cite&gt; &lt;code&gt; &lt;ul&gt; &lt;ol&gt; &lt;li&gt; &lt;dl&gt; &lt;dt&gt; &lt;dd&gt;</li><li>Lines and paragraphs break automatically.</li></ul>\";s:3:\"#id\";s:13:\"edit-format-1\";}i:2;a:7:{s:5:\"#type\";s:5:\"radio\";s:6:\"#title\";s:9:\"Full HTML\";s:14:\"#default_value\";s:1:\"1\";s:13:\"#return_value\";s:1:\"2\";s:8:\"#parents\";a:1:{i:0;s:6:\"format\";}s:12:\"#description\";s:151:\"<ul class=\"tips\"><li>Web page addresses and e-mail addresses turn into links automatically.</li><li>Lines and paragraphs break automatically.</li></ul>\";s:3:\"#id\";s:13:\"edit-format-2\";}i:3;a:1:{s:6:\"#value\";s:90:\"<p><a href=\"/~uspvinc/main2/filter/tips\">More information about formatting options</a></p>\";}}}s:5:\"#node\";O:8:\"stdClass\":33:{s:3:\"nid\";s:2:\"11\";s:4:\"type\";s:4:\"page\";s:8:\"language\";s:0:\"\";s:3:\"uid\";s:1:\"1\";s:6:\"status\";s:1:\"1\";s:7:\"created\";s:10:\"1285703167\";s:7:\"changed\";s:10:\"1285713075\";s:7:\"comment\";s:1:\"0\";s:7:\"promote\";s:1:\"0\";s:8:\"moderate\";s:1:\"0\";s:6:\"sticky\";s:1:\"0\";s:4:\"tnid\";s:1:\"0\";s:9:\"translate\";s:1:\"0\";s:3:\"vid\";s:2:\"11\";s:12:\"revision_uid\";s:1:\"1\";s:5:\"title\";s:69:\"Renewable Energy Credit (REC) Management Program for PV System Owners\";s:4:\"body\";s:1750:\"Sign-up for USPV\'s REC Management Program today.  No up-front or out-of-pocket costs.  Don\'t miss out on this opportunity to participate in the Renewable Energy Credit markets and earn hundreds or even thousands of dollars!  \r\n\r\nCongratulations on your decision to install a new photovoltaic system on your property.  You already know that your system will lower your electric bill, reduce your carbon footprint and demonstrate your commitment to the environment. \r\n\r\nWhat you may not know is that there is now a new way to use the electricity your system generates to create and sell Renewable Energy Certificates (REC) that can earn you hundreds, perhaps thousands, of dollars.  Previously, only relatively large PV generators could afford the time and expense required to profitably create and trade RECs--but now you can too.\r\n\r\n \r\n\r\nAt USPV, our mission is to Make Solar Simple.  We have developed a streamlined process to allow owners of PV systems as small as 1 kWp to participate and receive the benefits of this program.\r\n\r\n \r\n\r\nThere are no up-front expenses or out-of-pocket costs and virtually no time commitment on the part of the system owner.\r\n\r\n \r\n\r\nWe do all the work and our fees are strictly commission-based from the earnings on REC sales from your account.   \r\n\r\n<a href=\"/~uspvinc/main2/understanding-renewable-energy-credits-and-certificates-maryland-pv-system-owners\">Learn More about Renewable Energy Credits</a>\r\n\r\n  \r\n\r\nTo sign-up or learn more about this program, call Fred Ugast at 240-344-2657 or send an email to <a href=\"mailto:fred.ugast@uspvinc.com\">fred.ugast@uspvinc.com</a>\r\n\r\n \r\n\r\n<a href=\"/~uspvinc/main2/sites/default/files/pdf/md-agency.pdf\">Download a copy of our Renewable Energy Credit Agency Agreement</a>\";s:6:\"teaser\";s:467:\"Sign-up for USPV\'s REC Management Program today.  No up-front or out-of-pocket costs.  Don\'t miss out on this opportunity to participate in the Renewable Energy Credit markets and earn hundreds or even thousands of dollars!  \r\n\r\nCongratulations on your decision to install a new photovoltaic system on your property.  You already know that your system will lower your electric bill, reduce your carbon footprint and demonstrate your commitment to the environment. \r\n\r\";s:3:\"log\";N;s:18:\"revision_timestamp\";s:10:\"1285713075\";s:6:\"format\";s:1:\"1\";s:4:\"name\";s:5:\"admin\";s:7:\"picture\";s:0:\"\";s:4:\"data\";s:6:\"a:0:{}\";s:4:\"path\";s:63:\"renewable-energy-credit-rec-management-program-pv-system-owners\";s:22:\"last_comment_timestamp\";s:10:\"1285703167\";s:17:\"last_comment_name\";N;s:13:\"comment_count\";s:1:\"0\";s:8:\"taxonomy\";a:0:{}s:4:\"date\";s:25:\"2010-09-29 03:46:07 +0800\";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:13:\"primary-links\";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:22:\"pathauto_perform_alias\";b:1;}s:20:\"revision_information\";a:7:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:20:\"Revision information\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:7:\"#weight\";i:20;s:8:\"revision\";a:4:{s:7:\"#access\";b:1;s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:19:\"Create new revision\";s:14:\"#default_value\";b:0;}s:3:\"log\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:11:\"Log message\";s:14:\"#default_value\";s:0:\"\";s:5:\"#rows\";i:2;s:12:\"#description\";s:104:\"An explanation of the additions or updates being made to help other authors understand your motivations.\";}}s:6:\"author\";a:8:{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:7:\"#weight\";i:20;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:35:\"Leave blank for <em>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:91:\"Format: <em>2010-09-29 03:46:07 +0800</em>. Leave blank to use the time of form submission.\";s:14:\"#default_value\";s:25:\"2010-09-29 03:46:07 +0800\";}}s:7:\"options\";a:9:{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:7:\"#weight\";i:25;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:\"buttons\";a:3:{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:16:\"node_form_submit\";}}s:7:\"preview\";a:4:{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:6:\"#theme\";a:2:{i:0;s:14:\"page_node_form\";i:1;s:9:\"node_form\";}s:11:\"#parameters\";a:3:{i:0;s:14:\"page_node_form\";i:1;a:3:{s:7:\"storage\";N;s:9:\"submitted\";b:0;s:4:\"post\";a:0:{}}i:2;r:83;}s:9:\"#build_id\";s:37:\"form-92f1bd4fe5422b569833640380398808\";s:5:\"#type\";s:4:\"form\";s:11:\"#programmed\";b:0;s:13:\"form_build_id\";a:4:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:37:\"form-92f1bd4fe5422b569833640380398808\";s:3:\"#id\";s:37:\"form-92f1bd4fe5422b569833640380398808\";s:5:\"#name\";s:13:\"form_build_id\";}s:6:\"#token\";s:14:\"page_node_form\";s:10:\"form_token\";a:3:{s:3:\"#id\";s:30:\"edit-page-node-form-form-token\";s:5:\"#type\";s:5:\"token\";s:14:\"#default_value\";s:32:\"c8cdf5cb91a9be027c7b394c3034a064\";}s:7:\"form_id\";a:3:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:14:\"page_node_form\";s:3:\"#id\";s:19:\"edit-page-node-form\";}s:12:\"#description\";N;s:11:\"#attributes\";a:0:{}s:9:\"#required\";b:0;s:5:\"#tree\";b:0;s:8:\"#parents\";a:0:{}s:7:\"#method\";s:4:\"post\";s:7:\"#action\";s:28:\"/~uspvinc/main2/node/11/edit\";s:16:\"comment_settings\";a:7:{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:7:\"#weight\";i:30;s:7:\"comment\";a:4:{s:5:\"#type\";s:6:\"radios\";s:8:\"#parents\";a:1:{i:0;s:7:\"comment\";}s:14:\"#default_value\";s:1:\"0\";s:8:\"#options\";a:3:{i:0;s:8:\"Disabled\";i:1;s:9:\"Read only\";i:2;s:10:\"Read/Write\";}}}s:6:\"#cache\";b:1;s:4:\"menu\";a:20:{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:5:\"#tree\";b:1;s:7:\"#weight\";i:-2;s:11:\"#attributes\";a:1:{s:5:\"class\";s:14:\"menu-item-form\";}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:0;}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:5:\"#item\";a:12:{s:10:\"link_title\";s:0:\"\";s:4:\"mlid\";i:0;s:4:\"plid\";i:0;s:9:\"menu_name\";s:13:\"primary-links\";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:10:\"link_title\";a:5:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:15:\"Menu link title\";s:14:\"#default_value\";s:0:\"\";s:12:\"#description\";s:133:\"The link text corresponding to this item that should appear in the menu. Leave blank if you do not wish to add this post to the menu.\";s:9:\"#required\";b:0;}s:6:\"parent\";a:6:{s:5:\"#type\";s:6:\"select\";s:6:\"#title\";s:11:\"Parent item\";s:14:\"#default_value\";s:15:\"primary-links:0\";s:8:\"#options\";a:96:{s:16:\"menu-main-menu:0\";s:11:\"<Main Menu>\";s:18:\"menu-main-menu:283\";s:8:\"-- about\";s:18:\"menu-main-menu:285\";s:11:\"-- services\";s:18:\"menu-main-menu:284\";s:12:\"-- resources\";s:18:\"menu-main-menu:286\";s:17:\"-- special offers\";s:12:\"navigation:0\";s:12:\"<Navigation>\";s:12:\"navigation:9\";s:26:\"-- Compose tips (disabled)\";s:14:\"navigation:461\";s:29:\"-- Image galleries (disabled)\";s:13:\"navigation:21\";s:13:\"-- My account\";s:14:\"navigation:114\";s:20:\"-- Search (disabled)\";s:14:\"navigation:244\";s:22:\"-- Site map (disabled)\";s:13:\"navigation:11\";s:17:\"-- Create content\";s:14:\"navigation:476\";s:11:\"---- Banner\";s:14:\"navigation:441\";s:10:\"---- Image\";s:14:\"navigation:289\";s:21:\"---- Newsletter issue\";s:14:\"navigation:106\";s:9:\"---- Page\";s:14:\"navigation:388\";s:10:\"---- Panel\";s:14:\"navigation:107\";s:10:\"---- Story\";s:12:\"navigation:2\";s:13:\"-- Administer\";s:13:\"navigation:10\";s:23:\"---- Content management\";s:13:\"navigation:27\";s:15:\"------ Comments\";s:13:\"navigation:28\";s:14:\"------ Content\";s:13:\"navigation:29\";s:20:\"------ Content types\";s:14:\"navigation:462\";s:22:\"------ Image galleries\";s:14:\"navigation:463\";s:19:\"------ Image import\";s:14:\"navigation:538\";s:18:\"------ Newsletters\";s:14:\"navigation:546\";s:20:\"-------- Sent issues\";s:14:\"navigation:541\";s:21:\"-------- Draft issues\";s:14:\"navigation:544\";s:20:\"-------- Newsletters\";s:14:\"navigation:548\";s:22:\"-------- Subscriptions\";s:13:\"navigation:42\";s:20:\"------ Post settings\";s:13:\"navigation:43\";s:21:\"------ RSS publishing\";s:13:\"navigation:94\";s:15:\"------ Taxonomy\";s:13:\"navigation:17\";s:18:\"---- Site building\";s:13:\"navigation:25\";s:13:\"------ Blocks\";s:14:\"navigation:424\";s:20:\"------ Bulk Exporter\";s:13:\"navigation:38\";s:12:\"------ Menus\";s:14:\"navigation:282\";s:18:\"-------- Main Menu\";s:13:\"navigation:89\";s:19:\"-------- Navigation\";s:13:\"navigation:90\";s:22:\"-------- Primary links\";s:14:\"navigation:495\";s:19:\"-------- Right Menu\";s:13:\"navigation:91\";s:24:\"-------- Secondary links\";s:14:\"navigation:387\";s:18:\"------ Mini panels\";s:13:\"navigation:39\";s:14:\"------ Modules\";s:14:\"navigation:412\";s:12:\"------ Pages\";s:14:\"navigation:360\";s:13:\"------ Panels\";s:13:\"navigation:49\";s:13:\"------ Themes\";s:14:\"navigation:335\";s:15:\"------ Triggers\";s:14:\"navigation:501\";s:18:\"------ URL aliases\";s:14:\"navigation:257\";s:12:\"------ Views\";s:13:\"navigation:18\";s:23:\"---- Site configuration\";s:13:\"navigation:23\";s:14:\"------ Actions\";s:14:\"navigation:119\";s:26:\"------ Administration menu\";s:13:\"navigation:24\";s:27:\"------ Administration theme\";s:13:\"navigation:26\";s:17:\"------ Clean URLs\";s:13:\"navigation:30\";s:20:\"------ Date and time\";s:13:\"navigation:33\";s:22:\"------ Error reporting\";s:13:\"navigation:34\";s:18:\"------ File system\";s:13:\"navigation:35\";s:20:\"------ Image toolkit\";s:14:\"navigation:442\";s:13:\"------ Images\";s:13:\"navigation:36\";s:20:\"------ Input formats\";s:13:\"navigation:37\";s:25:\"------ Logging and alerts\";s:14:\"navigation:100\";s:25:\"-------- Database logging\";s:14:\"navigation:245\";s:17:\"------ Nice Menus\";s:13:\"navigation:40\";s:18:\"------ Performance\";s:14:\"navigation:120\";s:22:\"------ Search settings\";s:14:\"navigation:539\";s:17:\"------ Simplenews\";s:14:\"navigation:542\";s:16:\"-------- General\";s:14:\"navigation:543\";s:19:\"-------- Newsletter\";s:14:\"navigation:547\";s:21:\"-------- Subscription\";s:14:\"navigation:545\";s:18:\"-------- Send mail\";s:13:\"navigation:46\";s:23:\"------ Site information\";s:13:\"navigation:47\";s:23:\"------ Site maintenance\";s:14:\"navigation:246\";s:15:\"------ Site map\";s:13:\"navigation:20\";s:20:\"---- User management\";s:13:\"navigation:22\";s:19:\"------ Access rules\";s:13:\"navigation:41\";s:18:\"------ Permissions\";s:13:\"navigation:45\";s:12:\"------ Roles\";s:13:\"navigation:50\";s:20:\"------ User settings\";s:13:\"navigation:51\";s:12:\"------ Users\";s:13:\"navigation:16\";s:12:\"---- Reports\";s:13:\"navigation:93\";s:25:\"------ Recent log entries\";s:13:\"navigation:96\";s:33:\"------ Top \'access denied\' errors\";s:13:\"navigation:97\";s:34:\"------ Top \'page not found\' errors\";s:14:\"navigation:121\";s:25:\"------ Top search phrases\";s:14:\"navigation:105\";s:24:\"------ Available updates\";s:13:\"navigation:48\";s:20:\"------ Status report\";s:13:\"navigation:15\";s:9:\"---- Help\";s:12:\"navigation:4\";s:10:\"-- Log out\";s:15:\"primary-links:0\";s:15:\"<Primary links>\";s:17:\"menu-right-menu:0\";s:12:\"<Right Menu>\";s:19:\"menu-right-menu:496\";s:28:\"-- Financial Calculator Tool\";s:19:\"menu-right-menu:497\";s:21:\"-- News Story Library\";s:19:\"menu-right-menu:498\";s:14:\"-- Latest News\";s:19:\"menu-right-menu:499\";s:25:\"-- SREC Management Portal\";s:17:\"secondary-links:0\";s:17:\"<Secondary links>\";}s:12:\"#description\";s:156:\"The maximum depth for an item and all its children is fixed at 9. Some menu items may not be available as parents if selecting them would exceed this limit.\";s:11:\"#attributes\";a:1:{s:5:\"class\";s:17:\"menu-title-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:107:\"Optional. In the menu, the heavier items will sink and the lighter items will be positioned nearer the top.\";}}s:7:\"#submit\";a:1:{i:0;s:21:\"menu_node_form_submit\";}s:4:\"path\";a:10:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:17:\"URL path settings\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:0;s:7:\"#access\";b:1;s:7:\"#weight\";i:30;s:4:\"path\";a:6:{s:5:\"#type\";s:9:\"textfield\";s:14:\"#default_value\";s:63:\"renewable-energy-credit-rec-management-program-pv-system-owners\";s:10:\"#maxlength\";i:128;s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:12:\"#description\";s:207:\"Optionally specify an alternative URL by which this node 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\";s:2:\"11\";}s:22:\"pathauto_perform_alias\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:15:\"Automatic alias\";s:14:\"#default_value\";b:1;s:12:\"#description\";s:238:\"An alias will be generated for you. If you wish to create your own alias below, uncheck this option. To control the format of the generated aliases, see the <a href=\"/~uspvinc/main2/admin/build/path/pathauto\">automated alias settings</a>.\";s:7:\"#weight\";i:-1;}s:9:\"old_alias\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:63:\"renewable-energy-credit-rec-management-program-pv-system-owners\";}}s:11:\"#pre_render\";a:1:{i:0;s:27:\"content_alter_extra_weights\";}s:21:\"#content_extra_fields\";a:6:{s:5:\"title\";a:3:{s:5:\"label\";s:5:\"Title\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:-5;}s:10:\"body_field\";a:4:{s:5:\"label\";s:4:\"Body\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:0;s:4:\"view\";s:4:\"body\";}s:20:\"revision_information\";a:3:{s:5:\"label\";s:20:\"Revision information\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:20;}s:16:\"comment_settings\";a:3:{s:5:\"label\";s:16:\"Comment settings\";s:11:\"description\";s:20:\"Comment module form.\";s:6:\"weight\";i:30;}s:4:\"menu\";a:3:{s:5:\"label\";s:13:\"Menu settings\";s:11:\"description\";s:17:\"Menu module form.\";s:6:\"weight\";i:-2;}s:4:\"path\";a:3:{s:5:\"label\";s:13:\"Path settings\";s:11:\"description\";s:17:\"Path module form.\";s:6:\"weight\";i:30;}}s:12:\"#cache_token\";s:32:\"9b1d41d03b74313ea2e88d42ffb9ee80\";}',1285887643,1285866043,'',1),('form_form-bf30584a997a4b9040893c5b43c6f982','a:41:{s:7:\"#prefix\";s:2730:\"<div class=\"preview\"><h3>Preview trimmed version</h3>  <div class=\"node\">\n        <h2 class=\"title\"><a href=\"/~uspvinc/main2/feedback\">Feedback</a></h2>    <div class=\"submitted\"></div>\n    <div class=\"taxonomy\"></div>\n    <div class=\"content\"><p><FORM name=Feedback action=\"feedback-thank-you.php\" method=post ><br />\n	<TABLE border=0><br />\n		<THEAD><br />\n			<TR><br />\n				<TD COLSPAN=2><FONT size=2 >Please tell us what you think about our website, company, products, or services. If you provide us with your contact information, we will be able to reach you in case we have any questions.<br />\n</font></td><br />\n			</tr><br />\n		</thead><br />\n		<TBODY><br />\n			<TR><br />\n				<TD><FONT size=2 >Name</font></td><br />\n				<TD><INPUT name=Name /></td><br />\n			</tr><br />\n			<TR><br />\n				<TD><FONT size=2 >Email</font></td><br />\n				<TD><INPUT name=Email /></td><br />\n			</tr><br />\n			<TR> </tr></tbody></table></form></p>\n</div>\n      </div>\n<h3>Preview full version</h3>  <div class=\"node\">\n        <h2 class=\"title\"><a href=\"/~uspvinc/main2/feedback\">Feedback</a></h2>    <div class=\"submitted\"></div>\n    <div class=\"taxonomy\"></div>\n    <div class=\"content\"><p><FORM name=Feedback action=\"feedback-thank-you.php\" method=post ><br />\n	<TABLE border=0><br />\n		<THEAD><br />\n			<TR><br />\n				<TD COLSPAN=2><FONT size=2 >Please tell us what you think about our website, company, products, or services. If you provide us with your contact information, we will be able to reach you in case we have any questions.<br />\n</font></td><br />\n			</tr><br />\n		</thead><br />\n		<TBODY><br />\n			<TR><br />\n				<TD><FONT size=2 >Name</font></td><br />\n				<TD><INPUT name=Name /></td><br />\n			</tr><br />\n			<TR><br />\n				<TD><FONT size=2 >Email</font></td><br />\n				<TD><INPUT name=Email /></td><br />\n			</tr><br />\n			<TR><br />\n				<TD><FONT size=2 >Title</font></td><br />\n				<TD><INPUT name=Title /></td><br />\n			</tr><br />\n			<TR><br />\n				<TD><FONT size=2 >Company</font></td><br />\n				<TD><INPUT name=Company /></td><br />\n			</tr><br />\n			<TR><br />\n				<TD><FONT size=2 >Address</font></td><br />\n				<TD><TEXTAREA name=Address ></textarea></td><br />\n			</tr><br />\n			<TR><br />\n				<TD><FONT size=2 >Telephone</font></td><br />\n				<TD><INPUT name=Telephone /></td><br />\n			</tr><br />\n			<TR><br />\n				<TD><FONT size=2 >Fax</font></td><br />\n				<TD><INPUT name=Fax /></td><br />\n			</tr><br />\n			<TR><br />\n				<TD><FONT size=2 >Comments</font></td><br />\n				<TD><TEXTAREA name=Comments ></textarea></td><br />\n			</tr><br />\n			<TR><br />\n				<TD><INPUT type=submit value=Submit name=Submit /></td><br />\n			</tr><br />\n		</tbody><br />\n	</table><br />\n</form></p>\n</div>\n      </div>\n</div>\n\";s:3:\"#id\";s:9:\"node-form\";s:3:\"nid\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:2:\"16\";}s:3:\"vid\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:2:\"16\";}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:1285865424;}s:4:\"type\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:4:\"page\";}s:8:\"language\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:0:\"\";}s:7:\"changed\";a:2:{s:5:\"#type\";s:6:\"hidden\";s:14:\"#default_value\";s:10:\"1285867096\";}s:5:\"title\";a:6:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:5:\"Title\";s:9:\"#required\";b:1;s:14:\"#default_value\";s:8:\"Feedback\";s:10:\"#maxlength\";i:255;s:7:\"#weight\";i:-5;}s:10:\"body_field\";a:7:{s:12:\"#after_build\";a:2:{i:0;s:14:\"node_teaser_js\";i:1;s:26:\"node_teaser_include_verify\";}s:7:\"#prefix\";s:32:\"<div class=\"body-field-wrapper\">\";s:7:\"#suffix\";s:6:\"</div>\";s:9:\"teaser_js\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:5:\"#rows\";i:10;s:7:\"#teaser\";s:9:\"edit-body\";s:16:\"#teaser_checkbox\";s:19:\"edit-teaser-include\";s:9:\"#disabled\";b:1;}s:14:\"teaser_include\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:25:\"Show summary in full view\";s:14:\"#default_value\";b:1;s:7:\"#prefix\";s:29:\"<div class=\"teaser-checkbox\">\";s:7:\"#suffix\";s:6:\"</div>\";}s:4:\"body\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:4:\"Body\";s:14:\"#default_value\";s:1309:\"<FORM name=Feedback action=\"feedback-thank-you.php\" method=post > \r\n	<TABLE border=0>\r\n		<THEAD>\r\n			<TR> \r\n				<TD COLSPAN=2><FONT size=2 >Please tell us what you think about our website, company, products, or services. If you provide us with your contact information, we will be able to reach you in case we have any questions.\r\n</FONT></TD> \r\n			</TR>\r\n		</THEAD>\r\n		<TBODY> \r\n			<TR> \r\n				<TD><FONT size=2 >Name</FONT></TD> \r\n				<TD><INPUT name=Name ></TD>\r\n			</TR> \r\n			<TR> \r\n				<TD><FONT size=2 >Email</FONT></TD> \r\n				<TD><INPUT name=Email ></TD>\r\n			</TR> \r\n			<TR> \r\n				<TD><FONT size=2 >Title</FONT></TD> \r\n				<TD><INPUT name=Title ></TD>\r\n			</TR> \r\n			<TR> \r\n				<TD><FONT size=2 >Company</FONT></TD> \r\n				<TD><INPUT name=Company ></TD>\r\n			</TR> \r\n			<TR> \r\n				<TD><FONT size=2 >Address</FONT></TD> \r\n				<TD><TEXTAREA name=Address ></TEXTAREA></TD>\r\n			</TR> \r\n			<TR> \r\n				<TD><FONT size=2 >Telephone</FONT></TD> \r\n				<TD><INPUT name=Telephone ></TD>\r\n			</TR> \r\n			<TR> \r\n				<TD><FONT size=2 >Fax</FONT></TD> \r\n				<TD><INPUT name=Fax ></TD>\r\n			</TR> \r\n			<TR> \r\n				<TD><FONT size=2 >Comments</FONT></TD> \r\n				<TD><TEXTAREA name=Comments ></TEXTAREA></TD>\r\n			</TR> \r\n			<TR> \r\n				<TD><INPUT type=submit value=Submit name=Submit></TD>\r\n			</TR>\r\n		</TBODY>\r\n	</TABLE>\r\n</FORM>\";s:5:\"#rows\";i:20;s:9:\"#required\";b:0;}s:6:\"format\";a:9:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:12:\"Input format\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:7:\"#weight\";N;s:17:\"#element_validate\";a:1:{i:0;s:20:\"filter_form_validate\";}i:1;a:7:{s:5:\"#type\";s:5:\"radio\";s:6:\"#title\";s:13:\"Filtered HTML\";s:14:\"#default_value\";s:1:\"2\";s:13:\"#return_value\";s:1:\"1\";s:8:\"#parents\";a:1:{i:0;s:6:\"format\";}s:12:\"#description\";s:306:\"<ul class=\"tips\"><li>Web page addresses and e-mail addresses turn into links automatically.</li><li>Allowed HTML tags: &lt;a&gt; &lt;em&gt; &lt;strong&gt; &lt;cite&gt; &lt;code&gt; &lt;ul&gt; &lt;ol&gt; &lt;li&gt; &lt;dl&gt; &lt;dt&gt; &lt;dd&gt;</li><li>Lines and paragraphs break automatically.</li></ul>\";s:3:\"#id\";s:13:\"edit-format-1\";}i:2;a:7:{s:5:\"#type\";s:5:\"radio\";s:6:\"#title\";s:9:\"Full HTML\";s:14:\"#default_value\";s:1:\"2\";s:13:\"#return_value\";s:1:\"2\";s:8:\"#parents\";a:1:{i:0;s:6:\"format\";}s:12:\"#description\";s:151:\"<ul class=\"tips\"><li>Web page addresses and e-mail addresses turn into links automatically.</li><li>Lines and paragraphs break automatically.</li></ul>\";s:3:\"#id\";s:13:\"edit-format-2\";}i:3;a:1:{s:6:\"#value\";s:90:\"<p><a href=\"/~uspvinc/main2/filter/tips\">More information about formatting options</a></p>\";}}}s:5:\"#node\";O:8:\"stdClass\":45:{s:3:\"nid\";s:2:\"16\";s:3:\"vid\";s:2:\"16\";s:3:\"uid\";s:1:\"1\";s:7:\"created\";i:1285865424;s:4:\"type\";s:4:\"page\";s:8:\"language\";s:0:\"\";s:7:\"changed\";s:10:\"1285867096\";s:5:\"title\";s:8:\"Feedback\";s:9:\"teaser_js\";s:0:\"\";s:14:\"teaser_include\";i:1;s:4:\"body\";s:1309:\"<FORM name=Feedback action=\"feedback-thank-you.php\" method=post > \r\n	<TABLE border=0>\r\n		<THEAD>\r\n			<TR> \r\n				<TD COLSPAN=2><FONT size=2 >Please tell us what you think about our website, company, products, or services. If you provide us with your contact information, we will be able to reach you in case we have any questions.\r\n</FONT></TD> \r\n			</TR>\r\n		</THEAD>\r\n		<TBODY> \r\n			<TR> \r\n				<TD><FONT size=2 >Name</FONT></TD> \r\n				<TD><INPUT name=Name ></TD>\r\n			</TR> \r\n			<TR> \r\n				<TD><FONT size=2 >Email</FONT></TD> \r\n				<TD><INPUT name=Email ></TD>\r\n			</TR> \r\n			<TR> \r\n				<TD><FONT size=2 >Title</FONT></TD> \r\n				<TD><INPUT name=Title ></TD>\r\n			</TR> \r\n			<TR> \r\n				<TD><FONT size=2 >Company</FONT></TD> \r\n				<TD><INPUT name=Company ></TD>\r\n			</TR> \r\n			<TR> \r\n				<TD><FONT size=2 >Address</FONT></TD> \r\n				<TD><TEXTAREA name=Address ></TEXTAREA></TD>\r\n			</TR> \r\n			<TR> \r\n				<TD><FONT size=2 >Telephone</FONT></TD> \r\n				<TD><INPUT name=Telephone ></TD>\r\n			</TR> \r\n			<TR> \r\n				<TD><FONT size=2 >Fax</FONT></TD> \r\n				<TD><INPUT name=Fax ></TD>\r\n			</TR> \r\n			<TR> \r\n				<TD><FONT size=2 >Comments</FONT></TD> \r\n				<TD><TEXTAREA name=Comments ></TEXTAREA></TD>\r\n			</TR> \r\n			<TR> \r\n				<TD><INPUT type=submit value=Submit name=Submit></TD>\r\n			</TR>\r\n		</TBODY>\r\n	</TABLE>\r\n</FORM>\";s:6:\"format\";s:1:\"2\";s:8:\"revision\";i:0;s:3:\"log\";s:0:\"\";s:4:\"name\";s:5:\"admin\";s:4:\"date\";s:25:\"2010-10-01 00:50:24 +0800\";s:6:\"status\";i:1;s:7:\"promote\";i:0;s:6:\"sticky\";i:0;s:6:\"submit\";s:4:\"Save\";s:2:\"op\";s:7:\"Preview\";s:7:\"preview\";s:7:\"Preview\";s:6:\"delete\";s:6:\"Delete\";s:13:\"form_build_id\";s:37:\"form-a4e1524e5d588ba620fe3e0e78c4234a\";s:10:\"form_token\";s:32:\"c8cdf5cb91a9be027c7b394c3034a064\";s:7:\"form_id\";s:14:\"page_node_form\";s:7:\"comment\";s:1:\"0\";s:4:\"menu\";a:13:{s:4:\"mlid\";i:0;s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";i:0;s:12:\"has_children\";i:0;s:10:\"customized\";i:0;s:7:\"options\";a:0:{}s:8:\"expanded\";i:0;s:18:\"parent_depth_limit\";i:8;s:10:\"link_title\";s:0:\"\";s:6:\"parent\";s:15:\"primary-links:0\";s:6:\"weight\";s:1:\"0\";s:4:\"plid\";s:1:\"0\";s:9:\"menu_name\";s:13:\"primary-links\";}s:4:\"path\";s:8:\"feedback\";s:22:\"pathauto_perform_alias\";i:1;s:9:\"old_alias\";s:8:\"feedback\";s:6:\"teaser\";s:581:\"<FORM name=Feedback action=\"feedback-thank-you.php\" method=post > \r\n	<TABLE border=0>\r\n		<THEAD>\r\n			<TR> \r\n				<TD COLSPAN=2><FONT size=2 >Please tell us what you think about our website, company, products, or services. If you provide us with your contact information, we will be able to reach you in case we have any questions.\r\n</FONT></TD> \r\n			</TR>\r\n		</THEAD>\r\n		<TBODY> \r\n			<TR> \r\n				<TD><FONT size=2 >Name</FONT></TD> \r\n				<TD><INPUT name=Name ></TD>\r\n			</TR> \r\n			<TR> \r\n				<TD><FONT size=2 >Email</FONT></TD> \r\n				<TD><INPUT name=Email ></TD>\r\n			</TR> \r\n			<TR> \r\";s:9:\"validated\";b:1;s:8:\"moderate\";s:1:\"0\";s:4:\"tnid\";s:1:\"0\";s:9:\"translate\";s:1:\"0\";s:12:\"revision_uid\";s:1:\"1\";s:18:\"revision_timestamp\";s:10:\"1285867096\";s:7:\"picture\";s:0:\"\";s:4:\"data\";s:6:\"a:0:{}\";s:22:\"last_comment_timestamp\";s:10:\"1285865424\";s:17:\"last_comment_name\";N;s:13:\"comment_count\";s:1:\"0\";s:8:\"taxonomy\";a:0:{}s:10:\"build_mode\";i:1;}s:20:\"revision_information\";a:7:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:20:\"Revision information\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:7:\"#weight\";i:20;s:8:\"revision\";a:4:{s:7:\"#access\";b:1;s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:19:\"Create new revision\";s:14:\"#default_value\";i:0;}s:3:\"log\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:11:\"Log message\";s:14:\"#default_value\";s:0:\"\";s:5:\"#rows\";i:2;s:12:\"#description\";s:104:\"An explanation of the additions or updates being made to help other authors understand your motivations.\";}}s:6:\"author\";a:8:{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:7:\"#weight\";i:20;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:35:\"Leave blank for <em>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:91:\"Format: <em>2010-10-01 00:50:24 +0800</em>. Leave blank to use the time of form submission.\";s:14:\"#default_value\";s:25:\"2010-10-01 00:50:24 +0800\";}}s:7:\"options\";a:9:{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:7:\"#weight\";i:25;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: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\";i:0;}}s:7:\"buttons\";a:3:{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:16:\"node_form_submit\";}}s:7:\"preview\";a:4:{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:6:\"#theme\";a:2:{i:0;s:14:\"page_node_form\";i:1;s:9:\"node_form\";}s:11:\"#parameters\";a:3:{i:0;s:14:\"page_node_form\";i:1;a:8:{s:7:\"storage\";N;s:9:\"submitted\";b:1;s:6:\"values\";a:31:{s:3:\"nid\";s:2:\"16\";s:3:\"vid\";s:2:\"16\";s:3:\"uid\";s:1:\"1\";s:7:\"created\";i:1285865424;s:4:\"type\";s:4:\"page\";s:8:\"language\";s:0:\"\";s:7:\"changed\";s:10:\"1285867096\";s:5:\"title\";s:8:\"Feedback\";s:9:\"teaser_js\";s:0:\"\";s:14:\"teaser_include\";i:1;s:4:\"body\";s:1309:\"<FORM name=Feedback action=\"feedback-thank-you.php\" method=post > \r\n	<TABLE border=0>\r\n		<THEAD>\r\n			<TR> \r\n				<TD COLSPAN=2><FONT size=2 >Please tell us what you think about our website, company, products, or services. If you provide us with your contact information, we will be able to reach you in case we have any questions.\r\n</FONT></TD> \r\n			</TR>\r\n		</THEAD>\r\n		<TBODY> \r\n			<TR> \r\n				<TD><FONT size=2 >Name</FONT></TD> \r\n				<TD><INPUT name=Name ></TD>\r\n			</TR> \r\n			<TR> \r\n				<TD><FONT size=2 >Email</FONT></TD> \r\n				<TD><INPUT name=Email ></TD>\r\n			</TR> \r\n			<TR> \r\n				<TD><FONT size=2 >Title</FONT></TD> \r\n				<TD><INPUT name=Title ></TD>\r\n			</TR> \r\n			<TR> \r\n				<TD><FONT size=2 >Company</FONT></TD> \r\n				<TD><INPUT name=Company ></TD>\r\n			</TR> \r\n			<TR> \r\n				<TD><FONT size=2 >Address</FONT></TD> \r\n				<TD><TEXTAREA name=Address ></TEXTAREA></TD>\r\n			</TR> \r\n			<TR> \r\n				<TD><FONT size=2 >Telephone</FONT></TD> \r\n				<TD><INPUT name=Telephone ></TD>\r\n			</TR> \r\n			<TR> \r\n				<TD><FONT size=2 >Fax</FONT></TD> \r\n				<TD><INPUT name=Fax ></TD>\r\n			</TR> \r\n			<TR> \r\n				<TD><FONT size=2 >Comments</FONT></TD> \r\n				<TD><TEXTAREA name=Comments ></TEXTAREA></TD>\r\n			</TR> \r\n			<TR> \r\n				<TD><INPUT type=submit value=Submit name=Submit></TD>\r\n			</TR>\r\n		</TBODY>\r\n	</TABLE>\r\n</FORM>\";s:6:\"format\";s:1:\"2\";s:8:\"revision\";i:0;s:3:\"log\";s:0:\"\";s:4:\"name\";s:5:\"admin\";s:4:\"date\";s:25:\"2010-10-01 00:50:24 +0800\";s:6:\"status\";i:1;s:7:\"promote\";i:0;s:6:\"sticky\";i:0;s:6:\"submit\";s:4:\"Save\";s:2:\"op\";s:7:\"Preview\";s:7:\"preview\";s:7:\"Preview\";s:6:\"delete\";s:6:\"Delete\";s:13:\"form_build_id\";s:37:\"form-a4e1524e5d588ba620fe3e0e78c4234a\";s:10:\"form_token\";s:32:\"c8cdf5cb91a9be027c7b394c3034a064\";s:7:\"form_id\";s:14:\"page_node_form\";s:7:\"comment\";s:1:\"0\";s:4:\"menu\";a:13:{s:4:\"mlid\";i:0;s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";i:0;s:12:\"has_children\";i:0;s:10:\"customized\";i:0;s:7:\"options\";a:0:{}s:8:\"expanded\";i:0;s:18:\"parent_depth_limit\";i:8;s:10:\"link_title\";s:0:\"\";s:6:\"parent\";s:15:\"primary-links:0\";s:6:\"weight\";s:1:\"0\";s:4:\"plid\";s:1:\"0\";s:9:\"menu_name\";s:13:\"primary-links\";}s:4:\"path\";s:0:\"\";s:22:\"pathauto_perform_alias\";i:1;s:9:\"old_alias\";s:8:\"feedback\";}s:14:\"clicked_button\";a:19:{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:5:\"#post\";a:16:{s:5:\"title\";s:8:\"Feedback\";s:4:\"menu\";a:3:{s:10:\"link_title\";s:0:\"\";s:6:\"parent\";s:15:\"primary-links:0\";s:6:\"weight\";s:1:\"0\";}s:14:\"teaser_include\";s:1:\"1\";s:4:\"body\";s:1309:\"<FORM name=Feedback action=\"feedback-thank-you.php\" method=post > \r\n	<TABLE border=0>\r\n		<THEAD>\r\n			<TR> \r\n				<TD COLSPAN=2><FONT size=2 >Please tell us what you think about our website, company, products, or services. If you provide us with your contact information, we will be able to reach you in case we have any questions.\r\n</FONT></TD> \r\n			</TR>\r\n		</THEAD>\r\n		<TBODY> \r\n			<TR> \r\n				<TD><FONT size=2 >Name</FONT></TD> \r\n				<TD><INPUT name=Name ></TD>\r\n			</TR> \r\n			<TR> \r\n				<TD><FONT size=2 >Email</FONT></TD> \r\n				<TD><INPUT name=Email ></TD>\r\n			</TR> \r\n			<TR> \r\n				<TD><FONT size=2 >Title</FONT></TD> \r\n				<TD><INPUT name=Title ></TD>\r\n			</TR> \r\n			<TR> \r\n				<TD><FONT size=2 >Company</FONT></TD> \r\n				<TD><INPUT name=Company ></TD>\r\n			</TR> \r\n			<TR> \r\n				<TD><FONT size=2 >Address</FONT></TD> \r\n				<TD><TEXTAREA name=Address ></TEXTAREA></TD>\r\n			</TR> \r\n			<TR> \r\n				<TD><FONT size=2 >Telephone</FONT></TD> \r\n				<TD><INPUT name=Telephone ></TD>\r\n			</TR> \r\n			<TR> \r\n				<TD><FONT size=2 >Fax</FONT></TD> \r\n				<TD><INPUT name=Fax ></TD>\r\n			</TR> \r\n			<TR> \r\n				<TD><FONT size=2 >Comments</FONT></TD> \r\n				<TD><TEXTAREA name=Comments ></TEXTAREA></TD>\r\n			</TR> \r\n			<TR> \r\n				<TD><INPUT type=submit value=Submit name=Submit></TD>\r\n			</TR>\r\n		</TBODY>\r\n	</TABLE>\r\n</FORM>\";s:6:\"format\";s:1:\"2\";s:7:\"changed\";s:10:\"1285867096\";s:13:\"form_build_id\";s:37:\"form-a4e1524e5d588ba620fe3e0e78c4234a\";s:10:\"form_token\";s:32:\"c8cdf5cb91a9be027c7b394c3034a064\";s:7:\"form_id\";s:14:\"page_node_form\";s:3:\"log\";s:0:\"\";s:7:\"comment\";s:1:\"0\";s:22:\"pathauto_perform_alias\";s:1:\"1\";s:4:\"name\";s:5:\"admin\";s:4:\"date\";s:25:\"2010-10-01 00:50:24 +0800\";s:6:\"status\";s:1:\"1\";s:2:\"op\";s:7:\"Preview\";}s:11:\"#programmed\";b:0;s:5:\"#tree\";b:0;s:8:\"#parents\";a:1:{i:0;s:7:\"preview\";}s:14:\"#array_parents\";a:2:{i:0;s:7:\"buttons\";i:1;s:7:\"preview\";}s:10:\"#processed\";b:0;s:12:\"#description\";N;s:11:\"#attributes\";a:0:{}s:9:\"#required\";b:0;s:6:\"#input\";b:1;s:5:\"#name\";s:2:\"op\";s:12:\"#button_type\";s:6:\"submit\";s:25:\"#executes_submit_callback\";b:1;s:8:\"#process\";a:1:{i:0;s:16:\"form_expand_ahah\";}s:3:\"#id\";s:12:\"edit-preview\";}s:8:\"redirect\";N;s:4:\"node\";a:33:{s:3:\"nid\";s:2:\"16\";s:3:\"vid\";s:2:\"16\";s:3:\"uid\";s:1:\"1\";s:7:\"created\";i:1285865424;s:4:\"type\";s:4:\"page\";s:8:\"language\";s:0:\"\";s:7:\"changed\";s:10:\"1285867096\";s:5:\"title\";s:8:\"Feedback\";s:9:\"teaser_js\";s:0:\"\";s:14:\"teaser_include\";i:1;s:4:\"body\";s:1309:\"<FORM name=Feedback action=\"feedback-thank-you.php\" method=post > \r\n	<TABLE border=0>\r\n		<THEAD>\r\n			<TR> \r\n				<TD COLSPAN=2><FONT size=2 >Please tell us what you think about our website, company, products, or services. If you provide us with your contact information, we will be able to reach you in case we have any questions.\r\n</FONT></TD> \r\n			</TR>\r\n		</THEAD>\r\n		<TBODY> \r\n			<TR> \r\n				<TD><FONT size=2 >Name</FONT></TD> \r\n				<TD><INPUT name=Name ></TD>\r\n			</TR> \r\n			<TR> \r\n				<TD><FONT size=2 >Email</FONT></TD> \r\n				<TD><INPUT name=Email ></TD>\r\n			</TR> \r\n			<TR> \r\n				<TD><FONT size=2 >Title</FONT></TD> \r\n				<TD><INPUT name=Title ></TD>\r\n			</TR> \r\n			<TR> \r\n				<TD><FONT size=2 >Company</FONT></TD> \r\n				<TD><INPUT name=Company ></TD>\r\n			</TR> \r\n			<TR> \r\n				<TD><FONT size=2 >Address</FONT></TD> \r\n				<TD><TEXTAREA name=Address ></TEXTAREA></TD>\r\n			</TR> \r\n			<TR> \r\n				<TD><FONT size=2 >Telephone</FONT></TD> \r\n				<TD><INPUT name=Telephone ></TD>\r\n			</TR> \r\n			<TR> \r\n				<TD><FONT size=2 >Fax</FONT></TD> \r\n				<TD><INPUT name=Fax ></TD>\r\n			</TR> \r\n			<TR> \r\n				<TD><FONT size=2 >Comments</FONT></TD> \r\n				<TD><TEXTAREA name=Comments ></TEXTAREA></TD>\r\n			</TR> \r\n			<TR> \r\n				<TD><INPUT type=submit value=Submit name=Submit></TD>\r\n			</TR>\r\n		</TBODY>\r\n	</TABLE>\r\n</FORM>\";s:6:\"format\";s:1:\"2\";s:8:\"revision\";i:0;s:3:\"log\";s:0:\"\";s:4:\"name\";s:5:\"admin\";s:4:\"date\";s:25:\"2010-10-01 00:50:24 +0800\";s:6:\"status\";i:1;s:7:\"promote\";i:0;s:6:\"sticky\";i:0;s:6:\"submit\";s:4:\"Save\";s:2:\"op\";s:7:\"Preview\";s:7:\"preview\";s:7:\"Preview\";s:6:\"delete\";s:6:\"Delete\";s:13:\"form_build_id\";s:37:\"form-a4e1524e5d588ba620fe3e0e78c4234a\";s:10:\"form_token\";s:32:\"c8cdf5cb91a9be027c7b394c3034a064\";s:7:\"form_id\";s:14:\"page_node_form\";s:7:\"comment\";s:1:\"0\";s:4:\"menu\";a:13:{s:4:\"mlid\";i:0;s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";i:0;s:12:\"has_children\";i:0;s:10:\"customized\";i:0;s:7:\"options\";a:0:{}s:8:\"expanded\";i:0;s:18:\"parent_depth_limit\";i:8;s:10:\"link_title\";s:0:\"\";s:6:\"parent\";s:15:\"primary-links:0\";s:6:\"weight\";s:1:\"0\";s:4:\"plid\";s:1:\"0\";s:9:\"menu_name\";s:13:\"primary-links\";}s:4:\"path\";s:0:\"\";s:22:\"pathauto_perform_alias\";i:1;s:9:\"old_alias\";s:8:\"feedback\";s:6:\"teaser\";s:581:\"<FORM name=Feedback action=\"feedback-thank-you.php\" method=post > \r\n	<TABLE border=0>\r\n		<THEAD>\r\n			<TR> \r\n				<TD COLSPAN=2><FONT size=2 >Please tell us what you think about our website, company, products, or services. If you provide us with your contact information, we will be able to reach you in case we have any questions.\r\n</FONT></TD> \r\n			</TR>\r\n		</THEAD>\r\n		<TBODY> \r\n			<TR> \r\n				<TD><FONT size=2 >Name</FONT></TD> \r\n				<TD><INPUT name=Name ></TD>\r\n			</TR> \r\n			<TR> \r\n				<TD><FONT size=2 >Email</FONT></TD> \r\n				<TD><INPUT name=Email ></TD>\r\n			</TR> \r\n			<TR> \r\";s:9:\"validated\";b:1;}s:7:\"rebuild\";b:1;s:12:\"node_preview\";s:2730:\"<div class=\"preview\"><h3>Preview trimmed version</h3>  <div class=\"node\">\n        <h2 class=\"title\"><a href=\"/~uspvinc/main2/feedback\">Feedback</a></h2>    <div class=\"submitted\"></div>\n    <div class=\"taxonomy\"></div>\n    <div class=\"content\"><p><FORM name=Feedback action=\"feedback-thank-you.php\" method=post ><br />\n	<TABLE border=0><br />\n		<THEAD><br />\n			<TR><br />\n				<TD COLSPAN=2><FONT size=2 >Please tell us what you think about our website, company, products, or services. If you provide us with your contact information, we will be able to reach you in case we have any questions.<br />\n</font></td><br />\n			</tr><br />\n		</thead><br />\n		<TBODY><br />\n			<TR><br />\n				<TD><FONT size=2 >Name</font></td><br />\n				<TD><INPUT name=Name /></td><br />\n			</tr><br />\n			<TR><br />\n				<TD><FONT size=2 >Email</font></td><br />\n				<TD><INPUT name=Email /></td><br />\n			</tr><br />\n			<TR> </tr></tbody></table></form></p>\n</div>\n      </div>\n<h3>Preview full version</h3>  <div class=\"node\">\n        <h2 class=\"title\"><a href=\"/~uspvinc/main2/feedback\">Feedback</a></h2>    <div class=\"submitted\"></div>\n    <div class=\"taxonomy\"></div>\n    <div class=\"content\"><p><FORM name=Feedback action=\"feedback-thank-you.php\" method=post ><br />\n	<TABLE border=0><br />\n		<THEAD><br />\n			<TR><br />\n				<TD COLSPAN=2><FONT size=2 >Please tell us what you think about our website, company, products, or services. If you provide us with your contact information, we will be able to reach you in case we have any questions.<br />\n</font></td><br />\n			</tr><br />\n		</thead><br />\n		<TBODY><br />\n			<TR><br />\n				<TD><FONT size=2 >Name</font></td><br />\n				<TD><INPUT name=Name /></td><br />\n			</tr><br />\n			<TR><br />\n				<TD><FONT size=2 >Email</font></td><br />\n				<TD><INPUT name=Email /></td><br />\n			</tr><br />\n			<TR><br />\n				<TD><FONT size=2 >Title</font></td><br />\n				<TD><INPUT name=Title /></td><br />\n			</tr><br />\n			<TR><br />\n				<TD><FONT size=2 >Company</font></td><br />\n				<TD><INPUT name=Company /></td><br />\n			</tr><br />\n			<TR><br />\n				<TD><FONT size=2 >Address</font></td><br />\n				<TD><TEXTAREA name=Address ></textarea></td><br />\n			</tr><br />\n			<TR><br />\n				<TD><FONT size=2 >Telephone</font></td><br />\n				<TD><INPUT name=Telephone /></td><br />\n			</tr><br />\n			<TR><br />\n				<TD><FONT size=2 >Fax</font></td><br />\n				<TD><INPUT name=Fax /></td><br />\n			</tr><br />\n			<TR><br />\n				<TD><FONT size=2 >Comments</font></td><br />\n				<TD><TEXTAREA name=Comments ></textarea></td><br />\n			</tr><br />\n			<TR><br />\n				<TD><INPUT type=submit value=Submit name=Submit /></td><br />\n			</tr><br />\n		</tbody><br />\n	</table><br />\n</form></p>\n</div>\n      </div>\n</div>\n\";}i:2;O:8:\"stdClass\":29:{s:3:\"nid\";s:2:\"16\";s:4:\"type\";s:4:\"page\";s:8:\"language\";s:0:\"\";s:3:\"uid\";s:1:\"1\";s:6:\"status\";s:1:\"1\";s:7:\"created\";s:10:\"1285865424\";s:7:\"changed\";s:10:\"1285867096\";s:7:\"comment\";s:1:\"0\";s:7:\"promote\";s:1:\"0\";s:8:\"moderate\";s:1:\"0\";s:6:\"sticky\";s:1:\"0\";s:4:\"tnid\";s:1:\"0\";s:9:\"translate\";s:1:\"0\";s:3:\"vid\";s:2:\"16\";s:12:\"revision_uid\";s:1:\"1\";s:5:\"title\";s:8:\"Feedback\";s:4:\"body\";s:1362:\"Please tell us what you think about our website, company, products, or services. If you provide us with your contact information, we will be able to reach you in case we have any questions.\r\n<FORM name=Feedback action=\"feedback-thank-you.php\" method=post > \r\n<TABLE border=0> \r\n<TBODY> \r\n<TR> \r\n<TD> \r\n<P><FONT size=2 >Name</FONT></P></TD> \r\n<TD><INPUT name=Name ><FONT size=2 ></FONT></TD></TR> \r\n<TR> \r\n<TD> \r\n<P><FONT size=2 >Email</FONT></P></TD> \r\n<TD><INPUT name=Email ><FONT size=2 ></FONT></TD></TR> \r\n<TR> \r\n<TD> \r\n<P><FONT size=2 >Title</FONT></P></TD> \r\n<TD><INPUT name=Title ><FONT size=2 ></FONT></TD></TR> \r\n<TR> \r\n<TD> \r\n<P><FONT size=2 >Company</FONT></P></TD> \r\n<TD><INPUT name=Company ><FONT size=2 ></FONT></TD></TR> \r\n<TR> \r\n<TD> \r\n<P><FONT size=2 >Address</FONT></P></TD> \r\n<TD><TEXTAREA name=Address ></TEXTAREA><FONT size=2 ></FONT></TD></TR> \r\n<TR> \r\n<TD> \r\n<P><FONT size=2 >Telephone</FONT></P></TD> \r\n<TD><INPUT name=Telephone ><FONT size=2 ></FONT></TD></TR> \r\n<TR> \r\n<TD> \r\n<P><FONT size=2 >Fax</FONT></P></TD> \r\n<TD><INPUT name=Fax ><FONT size=2 ></FONT></TD></TR> \r\n<TR> \r\n<TD> \r\n<P><FONT size=2 >Comments</FONT></P></TD> \r\n<TD><TEXTAREA name=Comments ></TEXTAREA><FONT size=2 ></FONT></TD></TR> \r\n<TR> \r\n<TD align=middle colSpan=2 ><INPUT type=submit value=Submit name=Submit ><FONT size=2 ></FONT></TD></TR></TBODY></TABLE></FORM>\";s:6:\"teaser\";s:564:\"Please tell us what you think about our website, company, products, or services. If you provide us with your contact information, we will be able to reach you in case we have any questions.\r\n<FORM name=Feedback action=\"feedback-thank-you.php\" method=post > \r\n<TABLE border=0> \r\n<TBODY> \r\n<TR> \r\n<TD> \r\n<P><FONT size=2 >Name</FONT></P></TD> \r\n<TD><INPUT name=Name ><FONT size=2 ></FONT></TD></TR> \r\n<TR> \r\n<TD> \r\n<P><FONT size=2 >Email</FONT></P></TD> \r\n<TD><INPUT name=Email ><FONT size=2 ></FONT></TD></TR> \r\n<TR> \r\n<TD> \r\n<P><FONT size=2 >Title</FONT></P></TD> \r\";s:3:\"log\";s:0:\"\";s:18:\"revision_timestamp\";s:10:\"1285867096\";s:6:\"format\";s:1:\"2\";s:4:\"name\";s:5:\"admin\";s:7:\"picture\";s:0:\"\";s:4:\"data\";s:6:\"a:0:{}\";s:4:\"path\";s:8:\"feedback\";s:22:\"last_comment_timestamp\";s:10:\"1285865424\";s:17:\"last_comment_name\";N;s:13:\"comment_count\";s:1:\"0\";s:8:\"taxonomy\";a:0:{}}}s:9:\"#build_id\";s:37:\"form-bf30584a997a4b9040893c5b43c6f982\";s:5:\"#type\";s:4:\"form\";s:11:\"#programmed\";b:0;s:13:\"form_build_id\";a:4:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:37:\"form-bf30584a997a4b9040893c5b43c6f982\";s:3:\"#id\";s:37:\"form-bf30584a997a4b9040893c5b43c6f982\";s:5:\"#name\";s:13:\"form_build_id\";}s:6:\"#token\";s:14:\"page_node_form\";s:10:\"form_token\";a:3:{s:3:\"#id\";s:30:\"edit-page-node-form-form-token\";s:5:\"#type\";s:5:\"token\";s:14:\"#default_value\";s:32:\"c8cdf5cb91a9be027c7b394c3034a064\";}s:7:\"form_id\";a:3:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:14:\"page_node_form\";s:3:\"#id\";s:19:\"edit-page-node-form\";}s:12:\"#description\";N;s:11:\"#attributes\";a:0:{}s:9:\"#required\";b:0;s:5:\"#tree\";b:0;s:8:\"#parents\";a:0:{}s:7:\"#method\";s:4:\"post\";s:7:\"#action\";s:28:\"/~uspvinc/main2/node/16/edit\";s:16:\"comment_settings\";a:7:{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:7:\"#weight\";i:30;s:7:\"comment\";a:4:{s:5:\"#type\";s:6:\"radios\";s:8:\"#parents\";a:1:{i:0;s:7:\"comment\";}s:14:\"#default_value\";s:1:\"0\";s:8:\"#options\";a:3:{i:0;s:8:\"Disabled\";i:1;s:9:\"Read only\";i:2;s:10:\"Read/Write\";}}}s:6:\"#cache\";b:1;s:4:\"menu\";a:20:{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:5:\"#tree\";b:1;s:7:\"#weight\";i:-2;s:11:\"#attributes\";a:1:{s:5:\"class\";s:14:\"menu-item-form\";}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:0;}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:5:\"#item\";a:13:{s:4:\"mlid\";i:0;s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";i:0;s:12:\"has_children\";i:0;s:10:\"customized\";i:0;s:7:\"options\";a:0:{}s:8:\"expanded\";i:0;s:18:\"parent_depth_limit\";i:8;s:10:\"link_title\";s:0:\"\";s:6:\"parent\";s:15:\"primary-links:0\";s:6:\"weight\";s:1:\"0\";s:4:\"plid\";s:1:\"0\";s:9:\"menu_name\";s:13:\"primary-links\";}s:10:\"link_title\";a:5:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:15:\"Menu link title\";s:14:\"#default_value\";s:0:\"\";s:12:\"#description\";s:133:\"The link text corresponding to this item that should appear in the menu. Leave blank if you do not wish to add this post to the menu.\";s:9:\"#required\";b:0;}s:6:\"parent\";a:6:{s:5:\"#type\";s:6:\"select\";s:6:\"#title\";s:11:\"Parent item\";s:14:\"#default_value\";s:15:\"primary-links:0\";s:8:\"#options\";a:96:{s:16:\"menu-main-menu:0\";s:11:\"<Main Menu>\";s:18:\"menu-main-menu:283\";s:8:\"-- about\";s:18:\"menu-main-menu:285\";s:11:\"-- services\";s:18:\"menu-main-menu:284\";s:12:\"-- resources\";s:18:\"menu-main-menu:286\";s:17:\"-- special offers\";s:12:\"navigation:0\";s:12:\"<Navigation>\";s:12:\"navigation:9\";s:26:\"-- Compose tips (disabled)\";s:14:\"navigation:461\";s:29:\"-- Image galleries (disabled)\";s:13:\"navigation:21\";s:13:\"-- My account\";s:14:\"navigation:114\";s:20:\"-- Search (disabled)\";s:14:\"navigation:244\";s:22:\"-- Site map (disabled)\";s:13:\"navigation:11\";s:17:\"-- Create content\";s:14:\"navigation:476\";s:11:\"---- Banner\";s:14:\"navigation:441\";s:10:\"---- Image\";s:14:\"navigation:289\";s:21:\"---- Newsletter issue\";s:14:\"navigation:106\";s:9:\"---- Page\";s:14:\"navigation:388\";s:10:\"---- Panel\";s:14:\"navigation:107\";s:10:\"---- Story\";s:12:\"navigation:2\";s:13:\"-- Administer\";s:13:\"navigation:10\";s:23:\"---- Content management\";s:13:\"navigation:27\";s:15:\"------ Comments\";s:13:\"navigation:28\";s:14:\"------ Content\";s:13:\"navigation:29\";s:20:\"------ Content types\";s:14:\"navigation:462\";s:22:\"------ Image galleries\";s:14:\"navigation:463\";s:19:\"------ Image import\";s:14:\"navigation:538\";s:18:\"------ Newsletters\";s:14:\"navigation:546\";s:20:\"-------- Sent issues\";s:14:\"navigation:541\";s:21:\"-------- Draft issues\";s:14:\"navigation:544\";s:20:\"-------- Newsletters\";s:14:\"navigation:548\";s:22:\"-------- Subscriptions\";s:13:\"navigation:42\";s:20:\"------ Post settings\";s:13:\"navigation:43\";s:21:\"------ RSS publishing\";s:13:\"navigation:94\";s:15:\"------ Taxonomy\";s:13:\"navigation:17\";s:18:\"---- Site building\";s:13:\"navigation:25\";s:13:\"------ Blocks\";s:14:\"navigation:424\";s:20:\"------ Bulk Exporter\";s:13:\"navigation:38\";s:12:\"------ Menus\";s:14:\"navigation:282\";s:18:\"-------- Main Menu\";s:13:\"navigation:89\";s:19:\"-------- Navigation\";s:13:\"navigation:90\";s:22:\"-------- Primary links\";s:14:\"navigation:495\";s:19:\"-------- Right Menu\";s:13:\"navigation:91\";s:24:\"-------- Secondary links\";s:14:\"navigation:387\";s:18:\"------ Mini panels\";s:13:\"navigation:39\";s:14:\"------ Modules\";s:14:\"navigation:412\";s:12:\"------ Pages\";s:14:\"navigation:360\";s:13:\"------ Panels\";s:13:\"navigation:49\";s:13:\"------ Themes\";s:14:\"navigation:335\";s:15:\"------ Triggers\";s:14:\"navigation:501\";s:18:\"------ URL aliases\";s:14:\"navigation:257\";s:12:\"------ Views\";s:13:\"navigation:18\";s:23:\"---- Site configuration\";s:13:\"navigation:23\";s:14:\"------ Actions\";s:14:\"navigation:119\";s:26:\"------ Administration menu\";s:13:\"navigation:24\";s:27:\"------ Administration theme\";s:13:\"navigation:26\";s:17:\"------ Clean URLs\";s:13:\"navigation:30\";s:20:\"------ Date and time\";s:13:\"navigation:33\";s:22:\"------ Error reporting\";s:13:\"navigation:34\";s:18:\"------ File system\";s:13:\"navigation:35\";s:20:\"------ Image toolkit\";s:14:\"navigation:442\";s:13:\"------ Images\";s:13:\"navigation:36\";s:20:\"------ Input formats\";s:13:\"navigation:37\";s:25:\"------ Logging and alerts\";s:14:\"navigation:100\";s:25:\"-------- Database logging\";s:14:\"navigation:245\";s:17:\"------ Nice Menus\";s:13:\"navigation:40\";s:18:\"------ Performance\";s:14:\"navigation:120\";s:22:\"------ Search settings\";s:14:\"navigation:539\";s:17:\"------ Simplenews\";s:14:\"navigation:542\";s:16:\"-------- General\";s:14:\"navigation:543\";s:19:\"-------- Newsletter\";s:14:\"navigation:547\";s:21:\"-------- Subscription\";s:14:\"navigation:545\";s:18:\"-------- Send mail\";s:13:\"navigation:46\";s:23:\"------ Site information\";s:13:\"navigation:47\";s:23:\"------ Site maintenance\";s:14:\"navigation:246\";s:15:\"------ Site map\";s:13:\"navigation:20\";s:20:\"---- User management\";s:13:\"navigation:22\";s:19:\"------ Access rules\";s:13:\"navigation:41\";s:18:\"------ Permissions\";s:13:\"navigation:45\";s:12:\"------ Roles\";s:13:\"navigation:50\";s:20:\"------ User settings\";s:13:\"navigation:51\";s:12:\"------ Users\";s:13:\"navigation:16\";s:12:\"---- Reports\";s:13:\"navigation:93\";s:25:\"------ Recent log entries\";s:13:\"navigation:96\";s:33:\"------ Top \'access denied\' errors\";s:13:\"navigation:97\";s:34:\"------ Top \'page not found\' errors\";s:14:\"navigation:121\";s:25:\"------ Top search phrases\";s:14:\"navigation:105\";s:24:\"------ Available updates\";s:13:\"navigation:48\";s:20:\"------ Status report\";s:13:\"navigation:15\";s:9:\"---- Help\";s:12:\"navigation:4\";s:10:\"-- Log out\";s:15:\"primary-links:0\";s:15:\"<Primary links>\";s:17:\"menu-right-menu:0\";s:12:\"<Right Menu>\";s:19:\"menu-right-menu:496\";s:28:\"-- Financial Calculator Tool\";s:19:\"menu-right-menu:497\";s:21:\"-- News Story Library\";s:19:\"menu-right-menu:498\";s:14:\"-- Latest News\";s:19:\"menu-right-menu:499\";s:25:\"-- SREC Management Portal\";s:17:\"secondary-links:0\";s:17:\"<Secondary links>\";}s:12:\"#description\";s:156:\"The maximum depth for an item and all its children is fixed at 9. Some menu items may not be available as parents if selecting them would exceed this limit.\";s:11:\"#attributes\";a:1:{s:5:\"class\";s:17:\"menu-title-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:1:\"0\";s:12:\"#description\";s:107:\"Optional. In the menu, the heavier items will sink and the lighter items will be positioned nearer the top.\";}}s:7:\"#submit\";a:1:{i:0;s:21:\"menu_node_form_submit\";}s:4:\"path\";a:9:{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:7:\"#access\";b:1;s:7:\"#weight\";i:30;s:4:\"path\";a:6:{s:5:\"#type\";s:9:\"textfield\";s:14:\"#default_value\";s:8:\"feedback\";s:10:\"#maxlength\";i:128;s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:12:\"#description\";s:207:\"Optionally specify an alternative URL by which this node 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:22:\"pathauto_perform_alias\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:15:\"Automatic alias\";s:14:\"#default_value\";i:1;s:12:\"#description\";s:238:\"An alias will be generated for you. If you wish to create your own alias below, uncheck this option. To control the format of the generated aliases, see the <a href=\"/~uspvinc/main2/admin/build/path/pathauto\">automated alias settings</a>.\";s:7:\"#weight\";i:-1;}s:9:\"old_alias\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:8:\"feedback\";}}s:11:\"#pre_render\";a:1:{i:0;s:27:\"content_alter_extra_weights\";}s:21:\"#content_extra_fields\";a:6:{s:5:\"title\";a:3:{s:5:\"label\";s:5:\"Title\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:-5;}s:10:\"body_field\";a:4:{s:5:\"label\";s:4:\"Body\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:0;s:4:\"view\";s:4:\"body\";}s:20:\"revision_information\";a:3:{s:5:\"label\";s:20:\"Revision information\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:20;}s:16:\"comment_settings\";a:3:{s:5:\"label\";s:16:\"Comment settings\";s:11:\"description\";s:20:\"Comment module form.\";s:6:\"weight\";i:30;}s:4:\"menu\";a:3:{s:5:\"label\";s:13:\"Menu settings\";s:11:\"description\";s:17:\"Menu module form.\";s:6:\"weight\";i:-2;}s:4:\"path\";a:3:{s:5:\"label\";s:13:\"Path settings\";s:11:\"description\";s:17:\"Path module form.\";s:6:\"weight\";i:30;}}s:12:\"#cache_token\";s:32:\"9b1d41d03b74313ea2e88d42ffb9ee80\";}',1285890472,1285868872,'',1),('form_form-88c721de6ee4de9e6cd1fda8c867fd78','a:41:{s:7:\"#prefix\";s:3690:\"<div class=\"preview\"><h3>Preview trimmed version</h3>  <div class=\"node\">\n        <h2 class=\"title\"><a href=\"/~uspvinc/main2/our-services\">Our Services</a></h2>    <div class=\"submitted\"></div>\n    <div class=\"taxonomy\"></div>\n    <div class=\"content\"><div class=\"left\">\n<p>\nIf you have or are thinking about installing a PV system, give us a call for a free, no-obligation consultation. We’ll provide you with the information you need to understand the financial opportunities and variables that you should consider as you plan your system.\n</p>\n<p>\nAt USPV, your project’s success is our business.\n</p>\n<p>\nLearn more about our<br />\n<a href=\"/stesf/\"><br />\nRenewable Energy Credit (REC) Management Program<br />\n</a>\n</p>\n<p>\nTo learn more call us at 240-344-2657 or send an email to <strong>sales@uspvinc.com</strong>.\n</p>\n</div></div>\n      </div>\n<h3>Preview full version</h3>  <div class=\"node\">\n        <h2 class=\"title\"><a href=\"/~uspvinc/main2/our-services\">Our Services</a></h2>    <div class=\"submitted\"></div>\n    <div class=\"taxonomy\"></div>\n    <div class=\"content\"><div class=\"left\">\n<p>\nIf you have or are thinking about installing a PV system, give us a call for a free, no-obligation consultation. We’ll provide you with the information you need to understand the financial opportunities and variables that you should consider as you plan your system.\n</p>\n<p>\nAt USPV, your project’s success is our business.\n</p>\n<p>\nLearn more about our<br />\n<a href=\"/stesf/\"><br />\nRenewable Energy Credit (REC) Management Program<br />\n</a>\n</p>\n<p>\nTo learn more call us at 240-344-2657 or send an email to <strong>sales@uspvinc.com</strong>.\n</p>\n</div>\n<div class=\"left\">\n<h2>Pre-Bid Owner Agency Services</h2>\n<ul>\n<li>\nWe conduct a needs analysis, site survey and feasibility study to help you identify the system most appropriate for your project.\n</li>\n<li>\nWe develop a bid package with specifications,  identify qualified bidders, issue Requests For Quotes, respond to bidder inquiries and manage the bidding process.\n</li>\n<li>\nWe prepare applications for State and Federal grants and meet with your accountant to ensure your ability to utilize the available tax credits and deductions that will be available.\n</li>\n<li>\nWe provide you with a bid summary of each proposal along with a detailed financial analysis to help you complete the contractor selection process.\n</li>\n<li>\nWe negotiate on your behalf to ensure the final contract will provide appropriate protections and guarantees.\n</li>\n<li>\nWe provide financing assistance, identify funding strategies and provide support as required to secure final project financing.\n</li>\n</ul>\n</div>\n<div class=\"left\">\n<h2>Pre-Bid Owner Agency Services</h2>\n<ul>\n<li>\nWe act as your representative during the installation process to ensure satisfactory completion of the project.\n</li>\n<li>\nWe complete a commissioning checklist process to ensure the installed system meets the specifications and performance standards in the contract.\n</li>\n<li>\nWe complete any state, federal or local certifications required to secure the financial incentives your project qualifies for.\n</li>\n<li>\nWe provide agency services to certify your system as a Renewable Energy Facilitiy.\n</li>\n<li>\nWe act as your agent to establish an account at PJM-EIS GATS to enable your system to earn RECs. PJM-EIS is the state-designated entity that manages all Solar RECs in the program.\n</li>\n<li>\nWe create, manage, market, sell and fulfill Renewable Energy Credit Certificates on your behalf. We maintain records and fulfill reporting requirements as required under state laws and regulations.\n</li>\n</ul>\n</div>\n</div>\n      </div>\n</div>\n\";s:3:\"#id\";s:9:\"node-form\";s:3:\"nid\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:1:\"5\";}s:3:\"vid\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:1:\"5\";}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:1265202561;}s:4:\"type\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:4:\"page\";}s:8:\"language\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:0:\"\";}s:7:\"changed\";a:2:{s:5:\"#type\";s:6:\"hidden\";s:14:\"#default_value\";s:10:\"1285870989\";}s:5:\"title\";a:6:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:5:\"Title\";s:9:\"#required\";b:1;s:14:\"#default_value\";s:12:\"Our Services\";s:10:\"#maxlength\";i:255;s:7:\"#weight\";i:-5;}s:10:\"body_field\";a:7:{s:12:\"#after_build\";a:2:{i:0;s:14:\"node_teaser_js\";i:1;s:26:\"node_teaser_include_verify\";}s:7:\"#prefix\";s:32:\"<div class=\"body-field-wrapper\">\";s:7:\"#suffix\";s:6:\"</div>\";s:9:\"teaser_js\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:5:\"#rows\";i:10;s:7:\"#teaser\";s:9:\"edit-body\";s:16:\"#teaser_checkbox\";s:19:\"edit-teaser-include\";s:9:\"#disabled\";b:1;}s:14:\"teaser_include\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:25:\"Show summary in full view\";s:14:\"#default_value\";b:1;s:7:\"#prefix\";s:29:\"<div class=\"teaser-checkbox\">\";s:7:\"#suffix\";s:6:\"</div>\";}s:4:\"body\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:4:\"Body\";s:14:\"#default_value\";s:2624:\"<div class=\"left\">\r\n<p>\r\nIf you have or are thinking about installing a PV system, give us a call for a free, no-obligation consultation. We’ll provide you with the information you need to understand the financial opportunities and variables that you should consider as you plan your system.\r\n</p>\r\n<p>\r\nAt USPV, your project’s success is our business.\r\n</p>\r\n<p>\r\nLearn more about our \r\n<a href=\"/stesf/\">\r\nRenewable Energy Credit (REC) Management Program\r\n</a>\r\n</p>\r\n<p>\r\nTo learn more call us at 240-344-2657 or send an email to <strong>sales@uspvinc.com</strong>.\r\n</p>\r\n</div>\r\n\r\n<div class=\"left\">\r\n<h2>Pre-Bid Owner Agency Services</h2>\r\n<ul>\r\n<li>\r\nWe conduct a needs analysis, site survey and feasibility study to help you identify the system most appropriate for your project.\r\n</li>\r\n<li>\r\nWe develop a bid package with specifications,  identify qualified bidders, issue Requests For Quotes, respond to bidder inquiries and manage the bidding process.\r\n</li>\r\n<li>\r\nWe prepare applications for State and Federal grants and meet with your accountant to ensure your ability to utilize the available tax credits and deductions that will be available.\r\n</li>\r\n<li>\r\nWe provide you with a bid summary of each proposal along with a detailed financial analysis to help you complete the contractor selection process.\r\n</li>\r\n<li>\r\nWe negotiate on your behalf to ensure the final contract will provide appropriate protections and guarantees.\r\n</li>\r\n<li>\r\nWe provide financing assistance, identify funding strategies and provide support as required to secure final project financing.\r\n</li>\r\n</ul>\r\n</div>\r\n\r\n<div class=\"left\">\r\n<h2>Pre-Bid Owner Agency Services</h2>\r\n<ul>\r\n<li>\r\nWe act as your representative during the installation process to ensure satisfactory completion of the project.\r\n</li>\r\n<li>\r\nWe complete a commissioning checklist process to ensure the installed system meets the specifications and performance standards in the contract.\r\n</li>\r\n<li>\r\nWe complete any state, federal or local certifications required to secure the financial incentives your project qualifies for.\r\n</li>\r\n<li>\r\nWe provide agency services to certify your system as a Renewable Energy Facilitiy.\r\n</li>\r\n<li>\r\nWe act as your agent to establish an account at PJM-EIS GATS to enable your system to earn RECs. PJM-EIS is the state-designated entity that manages all Solar RECs in the program.\r\n</li>\r\n<li>\r\nWe create, manage, market, sell and fulfill Renewable Energy Credit Certificates on your behalf. We maintain records and fulfill reporting requirements as required under state laws and regulations.\r\n</li>\r\n</ul>\r\n</div>\";s:5:\"#rows\";i:20;s:9:\"#required\";b:0;}s:6:\"format\";a:9:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:12:\"Input format\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:7:\"#weight\";N;s:17:\"#element_validate\";a:1:{i:0;s:20:\"filter_form_validate\";}i:1;a:7:{s:5:\"#type\";s:5:\"radio\";s:6:\"#title\";s:13:\"Filtered HTML\";s:14:\"#default_value\";s:1:\"2\";s:13:\"#return_value\";s:1:\"1\";s:8:\"#parents\";a:1:{i:0;s:6:\"format\";}s:12:\"#description\";s:306:\"<ul class=\"tips\"><li>Web page addresses and e-mail addresses turn into links automatically.</li><li>Allowed HTML tags: &lt;a&gt; &lt;em&gt; &lt;strong&gt; &lt;cite&gt; &lt;code&gt; &lt;ul&gt; &lt;ol&gt; &lt;li&gt; &lt;dl&gt; &lt;dt&gt; &lt;dd&gt;</li><li>Lines and paragraphs break automatically.</li></ul>\";s:3:\"#id\";s:13:\"edit-format-1\";}i:2;a:7:{s:5:\"#type\";s:5:\"radio\";s:6:\"#title\";s:9:\"Full HTML\";s:14:\"#default_value\";s:1:\"2\";s:13:\"#return_value\";s:1:\"2\";s:8:\"#parents\";a:1:{i:0;s:6:\"format\";}s:12:\"#description\";s:151:\"<ul class=\"tips\"><li>Web page addresses and e-mail addresses turn into links automatically.</li><li>Lines and paragraphs break automatically.</li></ul>\";s:3:\"#id\";s:13:\"edit-format-2\";}i:3;a:1:{s:6:\"#value\";s:90:\"<p><a href=\"/~uspvinc/main2/filter/tips\">More information about formatting options</a></p>\";}}}s:5:\"#node\";O:8:\"stdClass\":46:{s:3:\"nid\";s:1:\"5\";s:3:\"vid\";s:1:\"5\";s:3:\"uid\";s:1:\"1\";s:7:\"created\";i:1265202561;s:4:\"type\";s:4:\"page\";s:8:\"language\";s:0:\"\";s:7:\"changed\";s:10:\"1285870989\";s:5:\"title\";s:12:\"Our Services\";s:9:\"teaser_js\";s:0:\"\";s:14:\"teaser_include\";i:1;s:4:\"body\";s:2624:\"<div class=\"left\">\r\n<p>\r\nIf you have or are thinking about installing a PV system, give us a call for a free, no-obligation consultation. We’ll provide you with the information you need to understand the financial opportunities and variables that you should consider as you plan your system.\r\n</p>\r\n<p>\r\nAt USPV, your project’s success is our business.\r\n</p>\r\n<p>\r\nLearn more about our \r\n<a href=\"/stesf/\">\r\nRenewable Energy Credit (REC) Management Program\r\n</a>\r\n</p>\r\n<p>\r\nTo learn more call us at 240-344-2657 or send an email to <strong>sales@uspvinc.com</strong>.\r\n</p>\r\n</div>\r\n\r\n<div class=\"left\">\r\n<h2>Pre-Bid Owner Agency Services</h2>\r\n<ul>\r\n<li>\r\nWe conduct a needs analysis, site survey and feasibility study to help you identify the system most appropriate for your project.\r\n</li>\r\n<li>\r\nWe develop a bid package with specifications,  identify qualified bidders, issue Requests For Quotes, respond to bidder inquiries and manage the bidding process.\r\n</li>\r\n<li>\r\nWe prepare applications for State and Federal grants and meet with your accountant to ensure your ability to utilize the available tax credits and deductions that will be available.\r\n</li>\r\n<li>\r\nWe provide you with a bid summary of each proposal along with a detailed financial analysis to help you complete the contractor selection process.\r\n</li>\r\n<li>\r\nWe negotiate on your behalf to ensure the final contract will provide appropriate protections and guarantees.\r\n</li>\r\n<li>\r\nWe provide financing assistance, identify funding strategies and provide support as required to secure final project financing.\r\n</li>\r\n</ul>\r\n</div>\r\n\r\n<div class=\"left\">\r\n<h2>Pre-Bid Owner Agency Services</h2>\r\n<ul>\r\n<li>\r\nWe act as your representative during the installation process to ensure satisfactory completion of the project.\r\n</li>\r\n<li>\r\nWe complete a commissioning checklist process to ensure the installed system meets the specifications and performance standards in the contract.\r\n</li>\r\n<li>\r\nWe complete any state, federal or local certifications required to secure the financial incentives your project qualifies for.\r\n</li>\r\n<li>\r\nWe provide agency services to certify your system as a Renewable Energy Facilitiy.\r\n</li>\r\n<li>\r\nWe act as your agent to establish an account at PJM-EIS GATS to enable your system to earn RECs. PJM-EIS is the state-designated entity that manages all Solar RECs in the program.\r\n</li>\r\n<li>\r\nWe create, manage, market, sell and fulfill Renewable Energy Credit Certificates on your behalf. We maintain records and fulfill reporting requirements as required under state laws and regulations.\r\n</li>\r\n</ul>\r\n</div>\";s:6:\"format\";s:1:\"2\";s:8:\"revision\";i:0;s:3:\"log\";s:0:\"\";s:4:\"name\";s:5:\"admin\";s:4:\"date\";s:25:\"2010-02-03 21:09:21 +0800\";s:6:\"status\";i:1;s:7:\"promote\";i:0;s:6:\"sticky\";i:0;s:6:\"submit\";s:4:\"Save\";s:2:\"op\";s:7:\"Preview\";s:7:\"preview\";s:7:\"Preview\";s:6:\"delete\";s:6:\"Delete\";s:13:\"form_build_id\";s:37:\"form-f10118307657ebd673b32c6788f43295\";s:10:\"form_token\";s:32:\"c8cdf5cb91a9be027c7b394c3034a064\";s:7:\"form_id\";s:14:\"page_node_form\";s:7:\"comment\";s:1:\"0\";s:4:\"menu\";a:14:{s:6:\"delete\";i:0;s:4:\"mlid\";s:3:\"285\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:10:\"customized\";s:1:\"1\";s:7:\"options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:8:\"services\";}}s:8:\"expanded\";s:1:\"0\";s:18:\"parent_depth_limit\";i:8;s:10:\"link_title\";s:8:\"services\";s:6:\"parent\";s:16:\"menu-main-menu:0\";s:6:\"weight\";s:3:\"-49\";s:4:\"plid\";s:1:\"0\";s:9:\"menu_name\";s:14:\"menu-main-menu\";}s:4:\"path\";s:12:\"our-services\";s:3:\"pid\";s:1:\"5\";s:22:\"pathauto_perform_alias\";i:1;s:9:\"old_alias\";s:12:\"our-services\";s:6:\"teaser\";s:578:\"<div class=\"left\">\r\n<p>\r\nIf you have or are thinking about installing a PV system, give us a call for a free, no-obligation consultation. We’ll provide you with the information you need to understand the financial opportunities and variables that you should consider as you plan your system.\r\n</p>\r\n<p>\r\nAt USPV, your project’s success is our business.\r\n</p>\r\n<p>\r\nLearn more about our \r\n<a href=\"/stesf/\">\r\nRenewable Energy Credit (REC) Management Program\r\n</a>\r\n</p>\r\n<p>\r\nTo learn more call us at 240-344-2657 or send an email to <strong>sales@uspvinc.com</strong>.\r\n</p>\";s:9:\"validated\";b:1;s:8:\"moderate\";s:1:\"0\";s:4:\"tnid\";s:1:\"0\";s:9:\"translate\";s:1:\"0\";s:12:\"revision_uid\";s:1:\"1\";s:18:\"revision_timestamp\";s:10:\"1285870989\";s:7:\"picture\";s:0:\"\";s:4:\"data\";s:6:\"a:0:{}\";s:22:\"last_comment_timestamp\";s:10:\"1265202561\";s:17:\"last_comment_name\";N;s:13:\"comment_count\";s:1:\"0\";s:8:\"taxonomy\";a:0:{}s:10:\"build_mode\";i:1;}s:20:\"revision_information\";a:7:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:20:\"Revision information\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:7:\"#weight\";i:20;s:8:\"revision\";a:4:{s:7:\"#access\";b:1;s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:19:\"Create new revision\";s:14:\"#default_value\";i:0;}s:3:\"log\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:11:\"Log message\";s:14:\"#default_value\";s:0:\"\";s:5:\"#rows\";i:2;s:12:\"#description\";s:104:\"An explanation of the additions or updates being made to help other authors understand your motivations.\";}}s:6:\"author\";a:8:{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:7:\"#weight\";i:20;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:35:\"Leave blank for <em>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:91:\"Format: <em>2010-02-03 21:09:21 +0800</em>. Leave blank to use the time of form submission.\";s:14:\"#default_value\";s:25:\"2010-02-03 21:09:21 +0800\";}}s:7:\"options\";a:9:{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:7:\"#weight\";i:25;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: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\";i:0;}}s:7:\"buttons\";a:3:{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:16:\"node_form_submit\";}}s:7:\"preview\";a:4:{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:6:\"#theme\";a:2:{i:0;s:14:\"page_node_form\";i:1;s:9:\"node_form\";}s:11:\"#parameters\";a:3:{i:0;s:14:\"page_node_form\";i:1;a:8:{s:7:\"storage\";N;s:9:\"submitted\";b:1;s:6:\"values\";a:32:{s:3:\"nid\";s:1:\"5\";s:3:\"vid\";s:1:\"5\";s:3:\"uid\";s:1:\"1\";s:7:\"created\";s:10:\"1265202561\";s:4:\"type\";s:4:\"page\";s:8:\"language\";s:0:\"\";s:7:\"changed\";s:10:\"1285870989\";s:5:\"title\";s:12:\"Our Services\";s:9:\"teaser_js\";s:0:\"\";s:14:\"teaser_include\";i:1;s:4:\"body\";s:2624:\"<div class=\"left\">\r\n<p>\r\nIf you have or are thinking about installing a PV system, give us a call for a free, no-obligation consultation. We’ll provide you with the information you need to understand the financial opportunities and variables that you should consider as you plan your system.\r\n</p>\r\n<p>\r\nAt USPV, your project’s success is our business.\r\n</p>\r\n<p>\r\nLearn more about our \r\n<a href=\"/stesf/\">\r\nRenewable Energy Credit (REC) Management Program\r\n</a>\r\n</p>\r\n<p>\r\nTo learn more call us at 240-344-2657 or send an email to <strong>sales@uspvinc.com</strong>.\r\n</p>\r\n</div>\r\n\r\n<div class=\"left\">\r\n<h2>Pre-Bid Owner Agency Services</h2>\r\n<ul>\r\n<li>\r\nWe conduct a needs analysis, site survey and feasibility study to help you identify the system most appropriate for your project.\r\n</li>\r\n<li>\r\nWe develop a bid package with specifications,  identify qualified bidders, issue Requests For Quotes, respond to bidder inquiries and manage the bidding process.\r\n</li>\r\n<li>\r\nWe prepare applications for State and Federal grants and meet with your accountant to ensure your ability to utilize the available tax credits and deductions that will be available.\r\n</li>\r\n<li>\r\nWe provide you with a bid summary of each proposal along with a detailed financial analysis to help you complete the contractor selection process.\r\n</li>\r\n<li>\r\nWe negotiate on your behalf to ensure the final contract will provide appropriate protections and guarantees.\r\n</li>\r\n<li>\r\nWe provide financing assistance, identify funding strategies and provide support as required to secure final project financing.\r\n</li>\r\n</ul>\r\n</div>\r\n\r\n<div class=\"left\">\r\n<h2>Pre-Bid Owner Agency Services</h2>\r\n<ul>\r\n<li>\r\nWe act as your representative during the installation process to ensure satisfactory completion of the project.\r\n</li>\r\n<li>\r\nWe complete a commissioning checklist process to ensure the installed system meets the specifications and performance standards in the contract.\r\n</li>\r\n<li>\r\nWe complete any state, federal or local certifications required to secure the financial incentives your project qualifies for.\r\n</li>\r\n<li>\r\nWe provide agency services to certify your system as a Renewable Energy Facilitiy.\r\n</li>\r\n<li>\r\nWe act as your agent to establish an account at PJM-EIS GATS to enable your system to earn RECs. PJM-EIS is the state-designated entity that manages all Solar RECs in the program.\r\n</li>\r\n<li>\r\nWe create, manage, market, sell and fulfill Renewable Energy Credit Certificates on your behalf. We maintain records and fulfill reporting requirements as required under state laws and regulations.\r\n</li>\r\n</ul>\r\n</div>\";s:6:\"format\";s:1:\"2\";s:8:\"revision\";i:0;s:3:\"log\";s:0:\"\";s:4:\"name\";s:5:\"admin\";s:4:\"date\";s:25:\"2010-02-03 21:09:21 +0800\";s:6:\"status\";i:1;s:7:\"promote\";i:0;s:6:\"sticky\";i:0;s:6:\"submit\";s:4:\"Save\";s:2:\"op\";s:7:\"Preview\";s:7:\"preview\";s:7:\"Preview\";s:6:\"delete\";s:6:\"Delete\";s:13:\"form_build_id\";s:37:\"form-f10118307657ebd673b32c6788f43295\";s:10:\"form_token\";s:32:\"c8cdf5cb91a9be027c7b394c3034a064\";s:7:\"form_id\";s:14:\"page_node_form\";s:7:\"comment\";s:1:\"0\";s:4:\"menu\";a:14:{s:6:\"delete\";i:0;s:4:\"mlid\";s:3:\"285\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:10:\"customized\";s:1:\"1\";s:7:\"options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:8:\"services\";}}s:8:\"expanded\";s:1:\"0\";s:18:\"parent_depth_limit\";i:8;s:10:\"link_title\";s:8:\"services\";s:6:\"parent\";s:16:\"menu-main-menu:0\";s:6:\"weight\";s:3:\"-49\";s:4:\"plid\";s:1:\"0\";s:9:\"menu_name\";s:14:\"menu-main-menu\";}s:4:\"path\";s:0:\"\";s:3:\"pid\";s:1:\"5\";s:22:\"pathauto_perform_alias\";i:1;s:9:\"old_alias\";s:12:\"our-services\";}s:14:\"clicked_button\";a:19:{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:5:\"#post\";a:16:{s:5:\"title\";s:12:\"Our Services\";s:4:\"menu\";a:3:{s:10:\"link_title\";s:8:\"services\";s:6:\"parent\";s:16:\"menu-main-menu:0\";s:6:\"weight\";s:3:\"-49\";}s:14:\"teaser_include\";s:1:\"1\";s:4:\"body\";s:2624:\"<div class=\"left\">\r\n<p>\r\nIf you have or are thinking about installing a PV system, give us a call for a free, no-obligation consultation. We’ll provide you with the information you need to understand the financial opportunities and variables that you should consider as you plan your system.\r\n</p>\r\n<p>\r\nAt USPV, your project’s success is our business.\r\n</p>\r\n<p>\r\nLearn more about our \r\n<a href=\"/stesf/\">\r\nRenewable Energy Credit (REC) Management Program\r\n</a>\r\n</p>\r\n<p>\r\nTo learn more call us at 240-344-2657 or send an email to <strong>sales@uspvinc.com</strong>.\r\n</p>\r\n</div>\r\n\r\n<div class=\"left\">\r\n<h2>Pre-Bid Owner Agency Services</h2>\r\n<ul>\r\n<li>\r\nWe conduct a needs analysis, site survey and feasibility study to help you identify the system most appropriate for your project.\r\n</li>\r\n<li>\r\nWe develop a bid package with specifications,  identify qualified bidders, issue Requests For Quotes, respond to bidder inquiries and manage the bidding process.\r\n</li>\r\n<li>\r\nWe prepare applications for State and Federal grants and meet with your accountant to ensure your ability to utilize the available tax credits and deductions that will be available.\r\n</li>\r\n<li>\r\nWe provide you with a bid summary of each proposal along with a detailed financial analysis to help you complete the contractor selection process.\r\n</li>\r\n<li>\r\nWe negotiate on your behalf to ensure the final contract will provide appropriate protections and guarantees.\r\n</li>\r\n<li>\r\nWe provide financing assistance, identify funding strategies and provide support as required to secure final project financing.\r\n</li>\r\n</ul>\r\n</div>\r\n\r\n<div class=\"left\">\r\n<h2>Pre-Bid Owner Agency Services</h2>\r\n<ul>\r\n<li>\r\nWe act as your representative during the installation process to ensure satisfactory completion of the project.\r\n</li>\r\n<li>\r\nWe complete a commissioning checklist process to ensure the installed system meets the specifications and performance standards in the contract.\r\n</li>\r\n<li>\r\nWe complete any state, federal or local certifications required to secure the financial incentives your project qualifies for.\r\n</li>\r\n<li>\r\nWe provide agency services to certify your system as a Renewable Energy Facilitiy.\r\n</li>\r\n<li>\r\nWe act as your agent to establish an account at PJM-EIS GATS to enable your system to earn RECs. PJM-EIS is the state-designated entity that manages all Solar RECs in the program.\r\n</li>\r\n<li>\r\nWe create, manage, market, sell and fulfill Renewable Energy Credit Certificates on your behalf. We maintain records and fulfill reporting requirements as required under state laws and regulations.\r\n</li>\r\n</ul>\r\n</div>\";s:6:\"format\";s:1:\"2\";s:7:\"changed\";s:10:\"1285870989\";s:13:\"form_build_id\";s:37:\"form-f10118307657ebd673b32c6788f43295\";s:10:\"form_token\";s:32:\"c8cdf5cb91a9be027c7b394c3034a064\";s:7:\"form_id\";s:14:\"page_node_form\";s:3:\"log\";s:0:\"\";s:7:\"comment\";s:1:\"0\";s:22:\"pathauto_perform_alias\";s:1:\"1\";s:4:\"name\";s:5:\"admin\";s:4:\"date\";s:25:\"2010-02-03 21:09:21 +0800\";s:6:\"status\";s:1:\"1\";s:2:\"op\";s:7:\"Preview\";}s:11:\"#programmed\";b:0;s:5:\"#tree\";b:0;s:8:\"#parents\";a:1:{i:0;s:7:\"preview\";}s:14:\"#array_parents\";a:2:{i:0;s:7:\"buttons\";i:1;s:7:\"preview\";}s:10:\"#processed\";b:0;s:12:\"#description\";N;s:11:\"#attributes\";a:0:{}s:9:\"#required\";b:0;s:6:\"#input\";b:1;s:5:\"#name\";s:2:\"op\";s:12:\"#button_type\";s:6:\"submit\";s:25:\"#executes_submit_callback\";b:1;s:8:\"#process\";a:1:{i:0;s:16:\"form_expand_ahah\";}s:3:\"#id\";s:12:\"edit-preview\";}s:8:\"redirect\";N;s:4:\"node\";a:34:{s:3:\"nid\";s:1:\"5\";s:3:\"vid\";s:1:\"5\";s:3:\"uid\";s:1:\"1\";s:7:\"created\";i:1265202561;s:4:\"type\";s:4:\"page\";s:8:\"language\";s:0:\"\";s:7:\"changed\";s:10:\"1285870989\";s:5:\"title\";s:12:\"Our Services\";s:9:\"teaser_js\";s:0:\"\";s:14:\"teaser_include\";i:1;s:4:\"body\";s:2624:\"<div class=\"left\">\r\n<p>\r\nIf you have or are thinking about installing a PV system, give us a call for a free, no-obligation consultation. We’ll provide you with the information you need to understand the financial opportunities and variables that you should consider as you plan your system.\r\n</p>\r\n<p>\r\nAt USPV, your project’s success is our business.\r\n</p>\r\n<p>\r\nLearn more about our \r\n<a href=\"/stesf/\">\r\nRenewable Energy Credit (REC) Management Program\r\n</a>\r\n</p>\r\n<p>\r\nTo learn more call us at 240-344-2657 or send an email to <strong>sales@uspvinc.com</strong>.\r\n</p>\r\n</div>\r\n\r\n<div class=\"left\">\r\n<h2>Pre-Bid Owner Agency Services</h2>\r\n<ul>\r\n<li>\r\nWe conduct a needs analysis, site survey and feasibility study to help you identify the system most appropriate for your project.\r\n</li>\r\n<li>\r\nWe develop a bid package with specifications,  identify qualified bidders, issue Requests For Quotes, respond to bidder inquiries and manage the bidding process.\r\n</li>\r\n<li>\r\nWe prepare applications for State and Federal grants and meet with your accountant to ensure your ability to utilize the available tax credits and deductions that will be available.\r\n</li>\r\n<li>\r\nWe provide you with a bid summary of each proposal along with a detailed financial analysis to help you complete the contractor selection process.\r\n</li>\r\n<li>\r\nWe negotiate on your behalf to ensure the final contract will provide appropriate protections and guarantees.\r\n</li>\r\n<li>\r\nWe provide financing assistance, identify funding strategies and provide support as required to secure final project financing.\r\n</li>\r\n</ul>\r\n</div>\r\n\r\n<div class=\"left\">\r\n<h2>Pre-Bid Owner Agency Services</h2>\r\n<ul>\r\n<li>\r\nWe act as your representative during the installation process to ensure satisfactory completion of the project.\r\n</li>\r\n<li>\r\nWe complete a commissioning checklist process to ensure the installed system meets the specifications and performance standards in the contract.\r\n</li>\r\n<li>\r\nWe complete any state, federal or local certifications required to secure the financial incentives your project qualifies for.\r\n</li>\r\n<li>\r\nWe provide agency services to certify your system as a Renewable Energy Facilitiy.\r\n</li>\r\n<li>\r\nWe act as your agent to establish an account at PJM-EIS GATS to enable your system to earn RECs. PJM-EIS is the state-designated entity that manages all Solar RECs in the program.\r\n</li>\r\n<li>\r\nWe create, manage, market, sell and fulfill Renewable Energy Credit Certificates on your behalf. We maintain records and fulfill reporting requirements as required under state laws and regulations.\r\n</li>\r\n</ul>\r\n</div>\";s:6:\"format\";s:1:\"2\";s:8:\"revision\";i:0;s:3:\"log\";s:0:\"\";s:4:\"name\";s:5:\"admin\";s:4:\"date\";s:25:\"2010-02-03 21:09:21 +0800\";s:6:\"status\";i:1;s:7:\"promote\";i:0;s:6:\"sticky\";i:0;s:6:\"submit\";s:4:\"Save\";s:2:\"op\";s:7:\"Preview\";s:7:\"preview\";s:7:\"Preview\";s:6:\"delete\";s:6:\"Delete\";s:13:\"form_build_id\";s:37:\"form-f10118307657ebd673b32c6788f43295\";s:10:\"form_token\";s:32:\"c8cdf5cb91a9be027c7b394c3034a064\";s:7:\"form_id\";s:14:\"page_node_form\";s:7:\"comment\";s:1:\"0\";s:4:\"menu\";a:14:{s:6:\"delete\";i:0;s:4:\"mlid\";s:3:\"285\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:10:\"customized\";s:1:\"1\";s:7:\"options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:8:\"services\";}}s:8:\"expanded\";s:1:\"0\";s:18:\"parent_depth_limit\";i:8;s:10:\"link_title\";s:8:\"services\";s:6:\"parent\";s:16:\"menu-main-menu:0\";s:6:\"weight\";s:3:\"-49\";s:4:\"plid\";s:1:\"0\";s:9:\"menu_name\";s:14:\"menu-main-menu\";}s:4:\"path\";s:0:\"\";s:3:\"pid\";s:1:\"5\";s:22:\"pathauto_perform_alias\";i:1;s:9:\"old_alias\";s:12:\"our-services\";s:6:\"teaser\";s:578:\"<div class=\"left\">\r\n<p>\r\nIf you have or are thinking about installing a PV system, give us a call for a free, no-obligation consultation. We’ll provide you with the information you need to understand the financial opportunities and variables that you should consider as you plan your system.\r\n</p>\r\n<p>\r\nAt USPV, your project’s success is our business.\r\n</p>\r\n<p>\r\nLearn more about our \r\n<a href=\"/stesf/\">\r\nRenewable Energy Credit (REC) Management Program\r\n</a>\r\n</p>\r\n<p>\r\nTo learn more call us at 240-344-2657 or send an email to <strong>sales@uspvinc.com</strong>.\r\n</p>\";s:9:\"validated\";b:1;}s:7:\"rebuild\";b:1;s:12:\"node_preview\";s:3690:\"<div class=\"preview\"><h3>Preview trimmed version</h3>  <div class=\"node\">\n        <h2 class=\"title\"><a href=\"/~uspvinc/main2/our-services\">Our Services</a></h2>    <div class=\"submitted\"></div>\n    <div class=\"taxonomy\"></div>\n    <div class=\"content\"><div class=\"left\">\n<p>\nIf you have or are thinking about installing a PV system, give us a call for a free, no-obligation consultation. We’ll provide you with the information you need to understand the financial opportunities and variables that you should consider as you plan your system.\n</p>\n<p>\nAt USPV, your project’s success is our business.\n</p>\n<p>\nLearn more about our<br />\n<a href=\"/stesf/\"><br />\nRenewable Energy Credit (REC) Management Program<br />\n</a>\n</p>\n<p>\nTo learn more call us at 240-344-2657 or send an email to <strong>sales@uspvinc.com</strong>.\n</p>\n</div></div>\n      </div>\n<h3>Preview full version</h3>  <div class=\"node\">\n        <h2 class=\"title\"><a href=\"/~uspvinc/main2/our-services\">Our Services</a></h2>    <div class=\"submitted\"></div>\n    <div class=\"taxonomy\"></div>\n    <div class=\"content\"><div class=\"left\">\n<p>\nIf you have or are thinking about installing a PV system, give us a call for a free, no-obligation consultation. We’ll provide you with the information you need to understand the financial opportunities and variables that you should consider as you plan your system.\n</p>\n<p>\nAt USPV, your project’s success is our business.\n</p>\n<p>\nLearn more about our<br />\n<a href=\"/stesf/\"><br />\nRenewable Energy Credit (REC) Management Program<br />\n</a>\n</p>\n<p>\nTo learn more call us at 240-344-2657 or send an email to <strong>sales@uspvinc.com</strong>.\n</p>\n</div>\n<div class=\"left\">\n<h2>Pre-Bid Owner Agency Services</h2>\n<ul>\n<li>\nWe conduct a needs analysis, site survey and feasibility study to help you identify the system most appropriate for your project.\n</li>\n<li>\nWe develop a bid package with specifications,  identify qualified bidders, issue Requests For Quotes, respond to bidder inquiries and manage the bidding process.\n</li>\n<li>\nWe prepare applications for State and Federal grants and meet with your accountant to ensure your ability to utilize the available tax credits and deductions that will be available.\n</li>\n<li>\nWe provide you with a bid summary of each proposal along with a detailed financial analysis to help you complete the contractor selection process.\n</li>\n<li>\nWe negotiate on your behalf to ensure the final contract will provide appropriate protections and guarantees.\n</li>\n<li>\nWe provide financing assistance, identify funding strategies and provide support as required to secure final project financing.\n</li>\n</ul>\n</div>\n<div class=\"left\">\n<h2>Pre-Bid Owner Agency Services</h2>\n<ul>\n<li>\nWe act as your representative during the installation process to ensure satisfactory completion of the project.\n</li>\n<li>\nWe complete a commissioning checklist process to ensure the installed system meets the specifications and performance standards in the contract.\n</li>\n<li>\nWe complete any state, federal or local certifications required to secure the financial incentives your project qualifies for.\n</li>\n<li>\nWe provide agency services to certify your system as a Renewable Energy Facilitiy.\n</li>\n<li>\nWe act as your agent to establish an account at PJM-EIS GATS to enable your system to earn RECs. PJM-EIS is the state-designated entity that manages all Solar RECs in the program.\n</li>\n<li>\nWe create, manage, market, sell and fulfill Renewable Energy Credit Certificates on your behalf. We maintain records and fulfill reporting requirements as required under state laws and regulations.\n</li>\n</ul>\n</div>\n</div>\n      </div>\n</div>\n\";}i:2;O:8:\"stdClass\":29:{s:3:\"nid\";s:1:\"5\";s:4:\"type\";s:4:\"page\";s:8:\"language\";s:0:\"\";s:3:\"uid\";s:1:\"1\";s:6:\"status\";s:1:\"1\";s:7:\"created\";s:10:\"1265202561\";s:7:\"changed\";s:10:\"1285870989\";s:7:\"comment\";s:1:\"0\";s:7:\"promote\";s:1:\"0\";s:8:\"moderate\";s:1:\"0\";s:6:\"sticky\";s:1:\"0\";s:4:\"tnid\";s:1:\"0\";s:9:\"translate\";s:1:\"0\";s:3:\"vid\";s:1:\"5\";s:12:\"revision_uid\";s:1:\"1\";s:5:\"title\";s:12:\"Our Services\";s:4:\"body\";s:2660:\"<div class=\"left\">\r\n<p>\r\nIf you have or are thinking about installing a PV system, give us a call for a free, no-obligation consultation. We’ll provide you with the information you need to understand the financial opportunities and variables that you should consider as you plan your system.\r\n</p>\r\n<p>\r\nAt USPV, your project’s success is our business.\r\n</p>\r\n<p>\r\nLearn more about our \r\n<a href=\"http://uspvinc.com/recmp-md.htm\">\r\nRenewable Energy Credit (REC) Management Program\r\n</a>\r\n</p>\r\n<p>\r\nTo learn more call us at 240-344-2657 or send an email to <strong>sales@uspvinc.com</strong>.\r\n</p>\r\n</div>\r\n<!--break-->\r\n<div class=\"left\">\r\n<h2>Pre-Bid Owner Agency Services</h2>\r\n<ul>\r\n<li>\r\nWe conduct a needs analysis, site survey and feasibility study to help you identify the system most appropriate for your project.\r\n</li>\r\n<li>\r\nWe develop a bid package with specifications,  identify qualified bidders, issue Requests For Quotes, respond to bidder inquiries and manage the bidding process.\r\n</li>\r\n<li>\r\nWe prepare applications for State and Federal grants and meet with your accountant to ensure your ability to utilize the available tax credits and deductions that will be available.\r\n</li>\r\n<li>\r\nWe provide you with a bid summary of each proposal along with a detailed financial analysis to help you complete the contractor selection process.\r\n</li>\r\n<li>\r\nWe negotiate on your behalf to ensure the final contract will provide appropriate protections and guarantees.\r\n</li>\r\n<li>\r\nWe provide financing assistance, identify funding strategies and provide support as required to secure final project financing.\r\n</li>\r\n</ul>\r\n</div>\r\n\r\n<div class=\"left\">\r\n<h2>Pre-Bid Owner Agency Services</h2>\r\n<ul>\r\n<li>\r\nWe act as your representative during the installation process to ensure satisfactory completion of the project.\r\n</li>\r\n<li>\r\nWe complete a commissioning checklist process to ensure the installed system meets the specifications and performance standards in the contract.\r\n</li>\r\n<li>\r\nWe complete any state, federal or local certifications required to secure the financial incentives your project qualifies for.\r\n</li>\r\n<li>\r\nWe provide agency services to certify your system as a Renewable Energy Facilitiy.\r\n</li>\r\n<li>\r\nWe act as your agent to establish an account at PJM-EIS GATS to enable your system to earn RECs. PJM-EIS is the state-designated entity that manages all Solar RECs in the program.\r\n</li>\r\n<li>\r\nWe create, manage, market, sell and fulfill Renewable Energy Credit Certificates on your behalf. We maintain records and fulfill reporting requirements as required under state laws and regulations.\r\n</li>\r\n</ul>\r\n</div>\";s:6:\"teaser\";s:612:\"<div class=\"left\">\r\n<p>\r\nIf you have or are thinking about installing a PV system, give us a call for a free, no-obligation consultation. We’ll provide you with the information you need to understand the financial opportunities and variables that you should consider as you plan your system.\r\n</p>\r\n<p>\r\nAt USPV, your project’s success is our business.\r\n</p>\r\n<p>\r\nLearn more about our \r\n<a href=\"http://uspvinc.com/recmp-md.htm\">\r\nRenewable Energy Credit (REC) Management Program\r\n</a>\r\n</p>\r\n<p>\r\nTo learn more call us at 240-344-2657 or send an email to <strong>sales@uspvinc.com</strong>.\r\n</p>\r\n</div>\r\n\";s:3:\"log\";s:0:\"\";s:18:\"revision_timestamp\";s:10:\"1285870989\";s:6:\"format\";s:1:\"2\";s:4:\"name\";s:5:\"admin\";s:7:\"picture\";s:0:\"\";s:4:\"data\";s:6:\"a:0:{}\";s:4:\"path\";s:12:\"our-services\";s:22:\"last_comment_timestamp\";s:10:\"1265202561\";s:17:\"last_comment_name\";N;s:13:\"comment_count\";s:1:\"0\";s:8:\"taxonomy\";a:0:{}}}s:9:\"#build_id\";s:37:\"form-88c721de6ee4de9e6cd1fda8c867fd78\";s:5:\"#type\";s:4:\"form\";s:11:\"#programmed\";b:0;s:13:\"form_build_id\";a:4:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:37:\"form-88c721de6ee4de9e6cd1fda8c867fd78\";s:3:\"#id\";s:37:\"form-88c721de6ee4de9e6cd1fda8c867fd78\";s:5:\"#name\";s:13:\"form_build_id\";}s:6:\"#token\";s:14:\"page_node_form\";s:10:\"form_token\";a:3:{s:3:\"#id\";s:30:\"edit-page-node-form-form-token\";s:5:\"#type\";s:5:\"token\";s:14:\"#default_value\";s:32:\"c8cdf5cb91a9be027c7b394c3034a064\";}s:7:\"form_id\";a:3:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:14:\"page_node_form\";s:3:\"#id\";s:19:\"edit-page-node-form\";}s:12:\"#description\";N;s:11:\"#attributes\";a:0:{}s:9:\"#required\";b:0;s:5:\"#tree\";b:0;s:8:\"#parents\";a:0:{}s:7:\"#method\";s:4:\"post\";s:7:\"#action\";s:27:\"/~uspvinc/main2/node/5/edit\";s:16:\"comment_settings\";a:7:{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:7:\"#weight\";i:30;s:7:\"comment\";a:4:{s:5:\"#type\";s:6:\"radios\";s:8:\"#parents\";a:1:{i:0;s:7:\"comment\";}s:14:\"#default_value\";s:1:\"0\";s:8:\"#options\";a:3:{i:0;s:8:\"Disabled\";i:1;s:9:\"Read only\";i:2;s:10:\"Read/Write\";}}}s:6:\"#cache\";b:1;s:4:\"menu\";a:21:{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:5:\"#tree\";b:1;s:7:\"#weight\";i:-2;s:11:\"#attributes\";a:1:{s:5:\"class\";s:14:\"menu-item-form\";}s:6:\"delete\";a:2:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:22:\"Delete this menu item.\";}s:4:\"mlid\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:3:\"285\";}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\";s:1:\"1\";}s:7:\"options\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:8:\"services\";}}}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:5:\"#item\";a:14:{s:6:\"delete\";i:0;s:4:\"mlid\";s:3:\"285\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:10:\"customized\";s:1:\"1\";s:7:\"options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:8:\"services\";}}s:8:\"expanded\";s:1:\"0\";s:18:\"parent_depth_limit\";i:8;s:10:\"link_title\";s:8:\"services\";s:6:\"parent\";s:16:\"menu-main-menu:0\";s:6:\"weight\";s:3:\"-49\";s:4:\"plid\";s:1:\"0\";s:9:\"menu_name\";s:14:\"menu-main-menu\";}s:10:\"link_title\";a:5:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:15:\"Menu link title\";s:14:\"#default_value\";s:8:\"services\";s:12:\"#description\";s:133:\"The link text corresponding to this item that should appear in the menu. Leave blank if you do not wish to add this post to the menu.\";s:9:\"#required\";b:0;}s:6:\"parent\";a:6:{s:5:\"#type\";s:6:\"select\";s:6:\"#title\";s:11:\"Parent item\";s:14:\"#default_value\";s:16:\"menu-main-menu:0\";s:8:\"#options\";a:95:{s:16:\"menu-main-menu:0\";s:11:\"<Main Menu>\";s:18:\"menu-main-menu:283\";s:8:\"-- about\";s:18:\"menu-main-menu:284\";s:12:\"-- resources\";s:18:\"menu-main-menu:286\";s:17:\"-- special offers\";s:12:\"navigation:0\";s:12:\"<Navigation>\";s:12:\"navigation:9\";s:26:\"-- Compose tips (disabled)\";s:14:\"navigation:461\";s:29:\"-- Image galleries (disabled)\";s:13:\"navigation:21\";s:13:\"-- My account\";s:14:\"navigation:114\";s:20:\"-- Search (disabled)\";s:14:\"navigation:244\";s:22:\"-- Site map (disabled)\";s:13:\"navigation:11\";s:17:\"-- Create content\";s:14:\"navigation:476\";s:11:\"---- Banner\";s:14:\"navigation:441\";s:10:\"---- Image\";s:14:\"navigation:289\";s:21:\"---- Newsletter issue\";s:14:\"navigation:106\";s:9:\"---- Page\";s:14:\"navigation:388\";s:10:\"---- Panel\";s:14:\"navigation:107\";s:10:\"---- Story\";s:12:\"navigation:2\";s:13:\"-- Administer\";s:13:\"navigation:10\";s:23:\"---- Content management\";s:13:\"navigation:27\";s:15:\"------ Comments\";s:13:\"navigation:28\";s:14:\"------ Content\";s:13:\"navigation:29\";s:20:\"------ Content types\";s:14:\"navigation:462\";s:22:\"------ Image galleries\";s:14:\"navigation:463\";s:19:\"------ Image import\";s:14:\"navigation:538\";s:18:\"------ Newsletters\";s:14:\"navigation:546\";s:20:\"-------- Sent issues\";s:14:\"navigation:541\";s:21:\"-------- Draft issues\";s:14:\"navigation:544\";s:20:\"-------- Newsletters\";s:14:\"navigation:548\";s:22:\"-------- Subscriptions\";s:13:\"navigation:42\";s:20:\"------ Post settings\";s:13:\"navigation:43\";s:21:\"------ RSS publishing\";s:13:\"navigation:94\";s:15:\"------ Taxonomy\";s:13:\"navigation:17\";s:18:\"---- Site building\";s:13:\"navigation:25\";s:13:\"------ Blocks\";s:14:\"navigation:424\";s:20:\"------ Bulk Exporter\";s:13:\"navigation:38\";s:12:\"------ Menus\";s:14:\"navigation:282\";s:18:\"-------- Main Menu\";s:13:\"navigation:89\";s:19:\"-------- Navigation\";s:13:\"navigation:90\";s:22:\"-------- Primary links\";s:14:\"navigation:495\";s:19:\"-------- Right Menu\";s:13:\"navigation:91\";s:24:\"-------- Secondary links\";s:14:\"navigation:387\";s:18:\"------ Mini panels\";s:13:\"navigation:39\";s:14:\"------ Modules\";s:14:\"navigation:412\";s:12:\"------ Pages\";s:14:\"navigation:360\";s:13:\"------ Panels\";s:13:\"navigation:49\";s:13:\"------ Themes\";s:14:\"navigation:335\";s:15:\"------ Triggers\";s:14:\"navigation:501\";s:18:\"------ URL aliases\";s:14:\"navigation:257\";s:12:\"------ Views\";s:13:\"navigation:18\";s:23:\"---- Site configuration\";s:13:\"navigation:23\";s:14:\"------ Actions\";s:14:\"navigation:119\";s:26:\"------ Administration menu\";s:13:\"navigation:24\";s:27:\"------ Administration theme\";s:13:\"navigation:26\";s:17:\"------ Clean URLs\";s:13:\"navigation:30\";s:20:\"------ Date and time\";s:13:\"navigation:33\";s:22:\"------ Error reporting\";s:13:\"navigation:34\";s:18:\"------ File system\";s:13:\"navigation:35\";s:20:\"------ Image toolkit\";s:14:\"navigation:442\";s:13:\"------ Images\";s:13:\"navigation:36\";s:20:\"------ Input formats\";s:13:\"navigation:37\";s:25:\"------ Logging and alerts\";s:14:\"navigation:100\";s:25:\"-------- Database logging\";s:14:\"navigation:245\";s:17:\"------ Nice Menus\";s:13:\"navigation:40\";s:18:\"------ Performance\";s:14:\"navigation:120\";s:22:\"------ Search settings\";s:14:\"navigation:539\";s:17:\"------ Simplenews\";s:14:\"navigation:542\";s:16:\"-------- General\";s:14:\"navigation:543\";s:19:\"-------- Newsletter\";s:14:\"navigation:547\";s:21:\"-------- Subscription\";s:14:\"navigation:545\";s:18:\"-------- Send mail\";s:13:\"navigation:46\";s:23:\"------ Site information\";s:13:\"navigation:47\";s:23:\"------ Site maintenance\";s:14:\"navigation:246\";s:15:\"------ Site map\";s:13:\"navigation:20\";s:20:\"---- User management\";s:13:\"navigation:22\";s:19:\"------ Access rules\";s:13:\"navigation:41\";s:18:\"------ Permissions\";s:13:\"navigation:45\";s:12:\"------ Roles\";s:13:\"navigation:50\";s:20:\"------ User settings\";s:13:\"navigation:51\";s:12:\"------ Users\";s:13:\"navigation:16\";s:12:\"---- Reports\";s:13:\"navigation:93\";s:25:\"------ Recent log entries\";s:13:\"navigation:96\";s:33:\"------ Top \'access denied\' errors\";s:13:\"navigation:97\";s:34:\"------ Top \'page not found\' errors\";s:14:\"navigation:121\";s:25:\"------ Top search phrases\";s:14:\"navigation:105\";s:24:\"------ Available updates\";s:13:\"navigation:48\";s:20:\"------ Status report\";s:13:\"navigation:15\";s:9:\"---- Help\";s:12:\"navigation:4\";s:10:\"-- Log out\";s:15:\"primary-links:0\";s:15:\"<Primary links>\";s:17:\"menu-right-menu:0\";s:12:\"<Right Menu>\";s:19:\"menu-right-menu:496\";s:28:\"-- Financial Calculator Tool\";s:19:\"menu-right-menu:497\";s:21:\"-- News Story Library\";s:19:\"menu-right-menu:498\";s:14:\"-- Latest News\";s:19:\"menu-right-menu:499\";s:25:\"-- SREC Management Portal\";s:17:\"secondary-links:0\";s:17:\"<Secondary links>\";}s:12:\"#description\";s:156:\"The maximum depth for an item and all its children is fixed at 9. Some menu items may not be available as parents if selecting them would exceed this limit.\";s:11:\"#attributes\";a:1:{s:5:\"class\";s:17:\"menu-title-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:\"-49\";s:12:\"#description\";s:107:\"Optional. In the menu, the heavier items will sink and the lighter items will be positioned nearer the top.\";}}s:7:\"#submit\";a:1:{i:0;s:21:\"menu_node_form_submit\";}s:4:\"path\";a:9:{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:7:\"#access\";b:1;s:7:\"#weight\";i:30;s:4:\"path\";a:6:{s:5:\"#type\";s:9:\"textfield\";s:14:\"#default_value\";s:12:\"our-services\";s:10:\"#maxlength\";i:128;s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:12:\"#description\";s:207:\"Optionally specify an alternative URL by which this node 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:22:\"pathauto_perform_alias\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:15:\"Automatic alias\";s:14:\"#default_value\";i:1;s:12:\"#description\";s:238:\"An alias will be generated for you. If you wish to create your own alias below, uncheck this option. To control the format of the generated aliases, see the <a href=\"/~uspvinc/main2/admin/build/path/pathauto\">automated alias settings</a>.\";s:7:\"#weight\";i:-1;}s:9:\"old_alias\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:12:\"our-services\";}}s:11:\"#pre_render\";a:1:{i:0;s:27:\"content_alter_extra_weights\";}s:21:\"#content_extra_fields\";a:6:{s:5:\"title\";a:3:{s:5:\"label\";s:5:\"Title\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:-5;}s:10:\"body_field\";a:4:{s:5:\"label\";s:4:\"Body\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:0;s:4:\"view\";s:4:\"body\";}s:20:\"revision_information\";a:3:{s:5:\"label\";s:20:\"Revision information\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:20;}s:16:\"comment_settings\";a:3:{s:5:\"label\";s:16:\"Comment settings\";s:11:\"description\";s:20:\"Comment module form.\";s:6:\"weight\";i:30;}s:4:\"menu\";a:3:{s:5:\"label\";s:13:\"Menu settings\";s:11:\"description\";s:17:\"Menu module form.\";s:6:\"weight\";i:-2;}s:4:\"path\";a:3:{s:5:\"label\";s:13:\"Path settings\";s:11:\"description\";s:17:\"Path module form.\";s:6:\"weight\";i:30;}}s:12:\"#cache_token\";s:32:\"9b1d41d03b74313ea2e88d42ffb9ee80\";}',1285892685,1285871085,'',1),('form_form-5266e5f09baa71f13781c9d4364db119','a:41:{s:7:\"#prefix\";s:3731:\"<div class=\"preview\"><h3>Preview trimmed version</h3>  <div class=\"node\">\n        <h2 class=\"title\"><a href=\"/~uspvinc/main2/our-services\">Our Services</a></h2>    <div class=\"submitted\"></div>\n    <div class=\"taxonomy\"></div>\n    <div class=\"content\"><div class=\"left\">\n<p>\nIf you have or are thinking about installing a PV system, give us a call for a free, no-obligation consultation. We’ll provide you with the information you need to understand the financial opportunities and variables that you should consider as you plan your system.\n</p>\n<p>\nAt USPV, your project’s success is our business.\n</p>\n<p>\nLearn more about our<br />\n<a href=\"/~uspvinc/main2/renewable-energy-credit-rec-management-program-pv-system-owners\"><br />\nRenewable Energy Credit (REC) Management Program<br />\n</a>\n</p>\n</div></div>\n      </div>\n<h3>Preview full version</h3>  <div class=\"node\">\n        <h2 class=\"title\"><a href=\"/~uspvinc/main2/our-services\">Our Services</a></h2>    <div class=\"submitted\"></div>\n    <div class=\"taxonomy\"></div>\n    <div class=\"content\"><div class=\"left\">\n<p>\nIf you have or are thinking about installing a PV system, give us a call for a free, no-obligation consultation. We’ll provide you with the information you need to understand the financial opportunities and variables that you should consider as you plan your system.\n</p>\n<p>\nAt USPV, your project’s success is our business.\n</p>\n<p>\nLearn more about our<br />\n<a href=\"/~uspvinc/main2/renewable-energy-credit-rec-management-program-pv-system-owners\"><br />\nRenewable Energy Credit (REC) Management Program<br />\n</a>\n</p>\n<p>\nTo learn more call us at 240-344-2657 or send an email to <strong>sales@uspvinc.com</strong>.\n</p>\n</div>\n<div class=\"left\">\n<h2>Pre-Bid Owner Agency Services</h2>\n<ul>\n<li>\nWe conduct a needs analysis, site survey and feasibility study to help you identify the system most appropriate for your project.\n</li>\n<li>\nWe develop a bid package with specifications,  identify qualified bidders, issue Requests For Quotes, respond to bidder inquiries and manage the bidding process.\n</li>\n<li>\nWe prepare applications for State and Federal grants and meet with your accountant to ensure your ability to utilize the available tax credits and deductions that will be available.\n</li>\n<li>\nWe provide you with a bid summary of each proposal along with a detailed financial analysis to help you complete the contractor selection process.\n</li>\n<li>\nWe negotiate on your behalf to ensure the final contract will provide appropriate protections and guarantees.\n</li>\n<li>\nWe provide financing assistance, identify funding strategies and provide support as required to secure final project financing.\n</li>\n</ul>\n</div>\n<div class=\"left\">\n<h2>Pre-Bid Owner Agency Services</h2>\n<ul>\n<li>\nWe act as your representative during the installation process to ensure satisfactory completion of the project.\n</li>\n<li>\nWe complete a commissioning checklist process to ensure the installed system meets the specifications and performance standards in the contract.\n</li>\n<li>\nWe complete any state, federal or local certifications required to secure the financial incentives your project qualifies for.\n</li>\n<li>\nWe provide agency services to certify your system as a Renewable Energy Facilitiy.\n</li>\n<li>\nWe act as your agent to establish an account at PJM-EIS GATS to enable your system to earn RECs. PJM-EIS is the state-designated entity that manages all Solar RECs in the program.\n</li>\n<li>\nWe create, manage, market, sell and fulfill Renewable Energy Credit Certificates on your behalf. We maintain records and fulfill reporting requirements as required under state laws and regulations.\n</li>\n</ul>\n</div>\n</div>\n      </div>\n</div>\n\";s:3:\"#id\";s:9:\"node-form\";s:3:\"nid\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:1:\"5\";}s:3:\"vid\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:1:\"5\";}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:1265202561;}s:4:\"type\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:4:\"page\";}s:8:\"language\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:0:\"\";}s:7:\"changed\";a:2:{s:5:\"#type\";s:6:\"hidden\";s:14:\"#default_value\";s:10:\"1285870989\";}s:5:\"title\";a:6:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:5:\"Title\";s:9:\"#required\";b:1;s:14:\"#default_value\";s:12:\"Our Services\";s:10:\"#maxlength\";i:255;s:7:\"#weight\";i:-5;}s:10:\"body_field\";a:7:{s:12:\"#after_build\";a:2:{i:0;s:14:\"node_teaser_js\";i:1;s:26:\"node_teaser_include_verify\";}s:7:\"#prefix\";s:32:\"<div class=\"body-field-wrapper\">\";s:7:\"#suffix\";s:6:\"</div>\";s:9:\"teaser_js\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:5:\"#rows\";i:10;s:7:\"#teaser\";s:9:\"edit-body\";s:16:\"#teaser_checkbox\";s:19:\"edit-teaser-include\";s:9:\"#disabled\";b:1;}s:14:\"teaser_include\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:25:\"Show summary in full view\";s:14:\"#default_value\";b:1;s:7:\"#prefix\";s:29:\"<div class=\"teaser-checkbox\">\";s:7:\"#suffix\";s:6:\"</div>\";}s:4:\"body\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:4:\"Body\";s:14:\"#default_value\";s:2696:\"<div class=\"left\">\r\n<p>\r\nIf you have or are thinking about installing a PV system, give us a call for a free, no-obligation consultation. We’ll provide you with the information you need to understand the financial opportunities and variables that you should consider as you plan your system.\r\n</p>\r\n<p>\r\nAt USPV, your project’s success is our business.\r\n</p>\r\n<p>\r\nLearn more about our \r\n<a href=\"/~uspvinc/main2/renewable-energy-credit-rec-management-program-pv-system-owners\">\r\nRenewable Energy Credit (REC) Management Program\r\n</a>\r\n</p>\r\n<p>\r\nTo learn more call us at 240-344-2657 or send an email to <strong>sales@uspvinc.com</strong>.\r\n</p>\r\n</div>\r\n\r\n<div class=\"left\">\r\n<h2>Pre-Bid Owner Agency Services</h2>\r\n<ul>\r\n<li>\r\nWe conduct a needs analysis, site survey and feasibility study to help you identify the system most appropriate for your project.\r\n</li>\r\n<li>\r\nWe develop a bid package with specifications,  identify qualified bidders, issue Requests For Quotes, respond to bidder inquiries and manage the bidding process.\r\n</li>\r\n<li>\r\nWe prepare applications for State and Federal grants and meet with your accountant to ensure your ability to utilize the available tax credits and deductions that will be available.\r\n</li>\r\n<li>\r\nWe provide you with a bid summary of each proposal along with a detailed financial analysis to help you complete the contractor selection process.\r\n</li>\r\n<li>\r\nWe negotiate on your behalf to ensure the final contract will provide appropriate protections and guarantees.\r\n</li>\r\n<li>\r\nWe provide financing assistance, identify funding strategies and provide support as required to secure final project financing.\r\n</li>\r\n</ul>\r\n</div>\r\n\r\n<div class=\"left\">\r\n<h2>Pre-Bid Owner Agency Services</h2>\r\n<ul>\r\n<li>\r\nWe act as your representative during the installation process to ensure satisfactory completion of the project.\r\n</li>\r\n<li>\r\nWe complete a commissioning checklist process to ensure the installed system meets the specifications and performance standards in the contract.\r\n</li>\r\n<li>\r\nWe complete any state, federal or local certifications required to secure the financial incentives your project qualifies for.\r\n</li>\r\n<li>\r\nWe provide agency services to certify your system as a Renewable Energy Facilitiy.\r\n</li>\r\n<li>\r\nWe act as your agent to establish an account at PJM-EIS GATS to enable your system to earn RECs. PJM-EIS is the state-designated entity that manages all Solar RECs in the program.\r\n</li>\r\n<li>\r\nWe create, manage, market, sell and fulfill Renewable Energy Credit Certificates on your behalf. We maintain records and fulfill reporting requirements as required under state laws and regulations.\r\n</li>\r\n</ul>\r\n</div>\";s:5:\"#rows\";i:20;s:9:\"#required\";b:0;}s:6:\"format\";a:9:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:12:\"Input format\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:7:\"#weight\";N;s:17:\"#element_validate\";a:1:{i:0;s:20:\"filter_form_validate\";}i:1;a:7:{s:5:\"#type\";s:5:\"radio\";s:6:\"#title\";s:13:\"Filtered HTML\";s:14:\"#default_value\";s:1:\"2\";s:13:\"#return_value\";s:1:\"1\";s:8:\"#parents\";a:1:{i:0;s:6:\"format\";}s:12:\"#description\";s:306:\"<ul class=\"tips\"><li>Web page addresses and e-mail addresses turn into links automatically.</li><li>Allowed HTML tags: &lt;a&gt; &lt;em&gt; &lt;strong&gt; &lt;cite&gt; &lt;code&gt; &lt;ul&gt; &lt;ol&gt; &lt;li&gt; &lt;dl&gt; &lt;dt&gt; &lt;dd&gt;</li><li>Lines and paragraphs break automatically.</li></ul>\";s:3:\"#id\";s:13:\"edit-format-1\";}i:2;a:7:{s:5:\"#type\";s:5:\"radio\";s:6:\"#title\";s:9:\"Full HTML\";s:14:\"#default_value\";s:1:\"2\";s:13:\"#return_value\";s:1:\"2\";s:8:\"#parents\";a:1:{i:0;s:6:\"format\";}s:12:\"#description\";s:151:\"<ul class=\"tips\"><li>Web page addresses and e-mail addresses turn into links automatically.</li><li>Lines and paragraphs break automatically.</li></ul>\";s:3:\"#id\";s:13:\"edit-format-2\";}i:3;a:1:{s:6:\"#value\";s:90:\"<p><a href=\"/~uspvinc/main2/filter/tips\">More information about formatting options</a></p>\";}}}s:5:\"#node\";O:8:\"stdClass\":46:{s:3:\"nid\";s:1:\"5\";s:3:\"vid\";s:1:\"5\";s:3:\"uid\";s:1:\"1\";s:7:\"created\";i:1265202561;s:4:\"type\";s:4:\"page\";s:8:\"language\";s:0:\"\";s:7:\"changed\";s:10:\"1285870989\";s:5:\"title\";s:12:\"Our Services\";s:9:\"teaser_js\";s:0:\"\";s:14:\"teaser_include\";i:1;s:4:\"body\";s:2696:\"<div class=\"left\">\r\n<p>\r\nIf you have or are thinking about installing a PV system, give us a call for a free, no-obligation consultation. We’ll provide you with the information you need to understand the financial opportunities and variables that you should consider as you plan your system.\r\n</p>\r\n<p>\r\nAt USPV, your project’s success is our business.\r\n</p>\r\n<p>\r\nLearn more about our \r\n<a href=\"/~uspvinc/main2/renewable-energy-credit-rec-management-program-pv-system-owners\">\r\nRenewable Energy Credit (REC) Management Program\r\n</a>\r\n</p>\r\n<p>\r\nTo learn more call us at 240-344-2657 or send an email to <strong>sales@uspvinc.com</strong>.\r\n</p>\r\n</div>\r\n\r\n<div class=\"left\">\r\n<h2>Pre-Bid Owner Agency Services</h2>\r\n<ul>\r\n<li>\r\nWe conduct a needs analysis, site survey and feasibility study to help you identify the system most appropriate for your project.\r\n</li>\r\n<li>\r\nWe develop a bid package with specifications,  identify qualified bidders, issue Requests For Quotes, respond to bidder inquiries and manage the bidding process.\r\n</li>\r\n<li>\r\nWe prepare applications for State and Federal grants and meet with your accountant to ensure your ability to utilize the available tax credits and deductions that will be available.\r\n</li>\r\n<li>\r\nWe provide you with a bid summary of each proposal along with a detailed financial analysis to help you complete the contractor selection process.\r\n</li>\r\n<li>\r\nWe negotiate on your behalf to ensure the final contract will provide appropriate protections and guarantees.\r\n</li>\r\n<li>\r\nWe provide financing assistance, identify funding strategies and provide support as required to secure final project financing.\r\n</li>\r\n</ul>\r\n</div>\r\n\r\n<div class=\"left\">\r\n<h2>Pre-Bid Owner Agency Services</h2>\r\n<ul>\r\n<li>\r\nWe act as your representative during the installation process to ensure satisfactory completion of the project.\r\n</li>\r\n<li>\r\nWe complete a commissioning checklist process to ensure the installed system meets the specifications and performance standards in the contract.\r\n</li>\r\n<li>\r\nWe complete any state, federal or local certifications required to secure the financial incentives your project qualifies for.\r\n</li>\r\n<li>\r\nWe provide agency services to certify your system as a Renewable Energy Facilitiy.\r\n</li>\r\n<li>\r\nWe act as your agent to establish an account at PJM-EIS GATS to enable your system to earn RECs. PJM-EIS is the state-designated entity that manages all Solar RECs in the program.\r\n</li>\r\n<li>\r\nWe create, manage, market, sell and fulfill Renewable Energy Credit Certificates on your behalf. We maintain records and fulfill reporting requirements as required under state laws and regulations.\r\n</li>\r\n</ul>\r\n</div>\";s:6:\"format\";s:1:\"2\";s:8:\"revision\";i:0;s:3:\"log\";s:0:\"\";s:4:\"name\";s:5:\"admin\";s:4:\"date\";s:25:\"2010-02-03 21:09:21 +0800\";s:6:\"status\";i:1;s:7:\"promote\";i:0;s:6:\"sticky\";i:0;s:6:\"submit\";s:4:\"Save\";s:2:\"op\";s:7:\"Preview\";s:7:\"preview\";s:7:\"Preview\";s:6:\"delete\";s:6:\"Delete\";s:13:\"form_build_id\";s:37:\"form-5b8cd15fc6a69ddb812292b45522e3ca\";s:10:\"form_token\";s:32:\"c8cdf5cb91a9be027c7b394c3034a064\";s:7:\"form_id\";s:14:\"page_node_form\";s:7:\"comment\";s:1:\"0\";s:4:\"menu\";a:14:{s:6:\"delete\";i:0;s:4:\"mlid\";s:3:\"285\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:10:\"customized\";s:1:\"1\";s:7:\"options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:8:\"services\";}}s:8:\"expanded\";s:1:\"0\";s:18:\"parent_depth_limit\";i:8;s:10:\"link_title\";s:8:\"services\";s:6:\"parent\";s:16:\"menu-main-menu:0\";s:6:\"weight\";s:3:\"-49\";s:4:\"plid\";s:1:\"0\";s:9:\"menu_name\";s:14:\"menu-main-menu\";}s:4:\"path\";s:12:\"our-services\";s:3:\"pid\";s:1:\"5\";s:22:\"pathauto_perform_alias\";i:1;s:9:\"old_alias\";s:12:\"our-services\";s:6:\"teaser\";s:544:\"<div class=\"left\">\r\n<p>\r\nIf you have or are thinking about installing a PV system, give us a call for a free, no-obligation consultation. We’ll provide you with the information you need to understand the financial opportunities and variables that you should consider as you plan your system.\r\n</p>\r\n<p>\r\nAt USPV, your project’s success is our business.\r\n</p>\r\n<p>\r\nLearn more about our \r\n<a href=\"/~uspvinc/main2/renewable-energy-credit-rec-management-program-pv-system-owners\">\r\nRenewable Energy Credit (REC) Management Program\r\n</a>\r\n</p>\";s:9:\"validated\";b:1;s:8:\"moderate\";s:1:\"0\";s:4:\"tnid\";s:1:\"0\";s:9:\"translate\";s:1:\"0\";s:12:\"revision_uid\";s:1:\"1\";s:18:\"revision_timestamp\";s:10:\"1285870989\";s:7:\"picture\";s:0:\"\";s:4:\"data\";s:6:\"a:0:{}\";s:22:\"last_comment_timestamp\";s:10:\"1265202561\";s:17:\"last_comment_name\";N;s:13:\"comment_count\";s:1:\"0\";s:8:\"taxonomy\";a:0:{}s:10:\"build_mode\";i:1;}s:20:\"revision_information\";a:7:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:20:\"Revision information\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:7:\"#weight\";i:20;s:8:\"revision\";a:4:{s:7:\"#access\";b:1;s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:19:\"Create new revision\";s:14:\"#default_value\";i:0;}s:3:\"log\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:11:\"Log message\";s:14:\"#default_value\";s:0:\"\";s:5:\"#rows\";i:2;s:12:\"#description\";s:104:\"An explanation of the additions or updates being made to help other authors understand your motivations.\";}}s:6:\"author\";a:8:{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:7:\"#weight\";i:20;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:35:\"Leave blank for <em>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:91:\"Format: <em>2010-02-03 21:09:21 +0800</em>. Leave blank to use the time of form submission.\";s:14:\"#default_value\";s:25:\"2010-02-03 21:09:21 +0800\";}}s:7:\"options\";a:9:{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:7:\"#weight\";i:25;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: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\";i:0;}}s:7:\"buttons\";a:3:{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:16:\"node_form_submit\";}}s:7:\"preview\";a:4:{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:6:\"#theme\";a:2:{i:0;s:14:\"page_node_form\";i:1;s:9:\"node_form\";}s:11:\"#parameters\";a:3:{i:0;s:14:\"page_node_form\";i:1;a:8:{s:7:\"storage\";N;s:9:\"submitted\";b:1;s:6:\"values\";a:32:{s:3:\"nid\";s:1:\"5\";s:3:\"vid\";s:1:\"5\";s:3:\"uid\";s:1:\"1\";s:7:\"created\";s:10:\"1265202561\";s:4:\"type\";s:4:\"page\";s:8:\"language\";s:0:\"\";s:7:\"changed\";s:10:\"1285870989\";s:5:\"title\";s:12:\"Our Services\";s:9:\"teaser_js\";s:0:\"\";s:14:\"teaser_include\";i:1;s:4:\"body\";s:2696:\"<div class=\"left\">\r\n<p>\r\nIf you have or are thinking about installing a PV system, give us a call for a free, no-obligation consultation. We’ll provide you with the information you need to understand the financial opportunities and variables that you should consider as you plan your system.\r\n</p>\r\n<p>\r\nAt USPV, your project’s success is our business.\r\n</p>\r\n<p>\r\nLearn more about our \r\n<a href=\"/~uspvinc/main2/renewable-energy-credit-rec-management-program-pv-system-owners\">\r\nRenewable Energy Credit (REC) Management Program\r\n</a>\r\n</p>\r\n<p>\r\nTo learn more call us at 240-344-2657 or send an email to <strong>sales@uspvinc.com</strong>.\r\n</p>\r\n</div>\r\n\r\n<div class=\"left\">\r\n<h2>Pre-Bid Owner Agency Services</h2>\r\n<ul>\r\n<li>\r\nWe conduct a needs analysis, site survey and feasibility study to help you identify the system most appropriate for your project.\r\n</li>\r\n<li>\r\nWe develop a bid package with specifications,  identify qualified bidders, issue Requests For Quotes, respond to bidder inquiries and manage the bidding process.\r\n</li>\r\n<li>\r\nWe prepare applications for State and Federal grants and meet with your accountant to ensure your ability to utilize the available tax credits and deductions that will be available.\r\n</li>\r\n<li>\r\nWe provide you with a bid summary of each proposal along with a detailed financial analysis to help you complete the contractor selection process.\r\n</li>\r\n<li>\r\nWe negotiate on your behalf to ensure the final contract will provide appropriate protections and guarantees.\r\n</li>\r\n<li>\r\nWe provide financing assistance, identify funding strategies and provide support as required to secure final project financing.\r\n</li>\r\n</ul>\r\n</div>\r\n\r\n<div class=\"left\">\r\n<h2>Pre-Bid Owner Agency Services</h2>\r\n<ul>\r\n<li>\r\nWe act as your representative during the installation process to ensure satisfactory completion of the project.\r\n</li>\r\n<li>\r\nWe complete a commissioning checklist process to ensure the installed system meets the specifications and performance standards in the contract.\r\n</li>\r\n<li>\r\nWe complete any state, federal or local certifications required to secure the financial incentives your project qualifies for.\r\n</li>\r\n<li>\r\nWe provide agency services to certify your system as a Renewable Energy Facilitiy.\r\n</li>\r\n<li>\r\nWe act as your agent to establish an account at PJM-EIS GATS to enable your system to earn RECs. PJM-EIS is the state-designated entity that manages all Solar RECs in the program.\r\n</li>\r\n<li>\r\nWe create, manage, market, sell and fulfill Renewable Energy Credit Certificates on your behalf. We maintain records and fulfill reporting requirements as required under state laws and regulations.\r\n</li>\r\n</ul>\r\n</div>\";s:6:\"format\";s:1:\"2\";s:8:\"revision\";i:0;s:3:\"log\";s:0:\"\";s:4:\"name\";s:5:\"admin\";s:4:\"date\";s:25:\"2010-02-03 21:09:21 +0800\";s:6:\"status\";i:1;s:7:\"promote\";i:0;s:6:\"sticky\";i:0;s:6:\"submit\";s:4:\"Save\";s:2:\"op\";s:7:\"Preview\";s:7:\"preview\";s:7:\"Preview\";s:6:\"delete\";s:6:\"Delete\";s:13:\"form_build_id\";s:37:\"form-5b8cd15fc6a69ddb812292b45522e3ca\";s:10:\"form_token\";s:32:\"c8cdf5cb91a9be027c7b394c3034a064\";s:7:\"form_id\";s:14:\"page_node_form\";s:7:\"comment\";s:1:\"0\";s:4:\"menu\";a:14:{s:6:\"delete\";i:0;s:4:\"mlid\";s:3:\"285\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:10:\"customized\";s:1:\"1\";s:7:\"options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:8:\"services\";}}s:8:\"expanded\";s:1:\"0\";s:18:\"parent_depth_limit\";i:8;s:10:\"link_title\";s:8:\"services\";s:6:\"parent\";s:16:\"menu-main-menu:0\";s:6:\"weight\";s:3:\"-49\";s:4:\"plid\";s:1:\"0\";s:9:\"menu_name\";s:14:\"menu-main-menu\";}s:4:\"path\";s:0:\"\";s:3:\"pid\";s:1:\"5\";s:22:\"pathauto_perform_alias\";i:1;s:9:\"old_alias\";s:12:\"our-services\";}s:14:\"clicked_button\";a:19:{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:5:\"#post\";a:16:{s:5:\"title\";s:12:\"Our Services\";s:4:\"menu\";a:3:{s:10:\"link_title\";s:8:\"services\";s:6:\"parent\";s:16:\"menu-main-menu:0\";s:6:\"weight\";s:3:\"-49\";}s:14:\"teaser_include\";s:1:\"1\";s:4:\"body\";s:2696:\"<div class=\"left\">\r\n<p>\r\nIf you have or are thinking about installing a PV system, give us a call for a free, no-obligation consultation. We’ll provide you with the information you need to understand the financial opportunities and variables that you should consider as you plan your system.\r\n</p>\r\n<p>\r\nAt USPV, your project’s success is our business.\r\n</p>\r\n<p>\r\nLearn more about our \r\n<a href=\"/~uspvinc/main2/renewable-energy-credit-rec-management-program-pv-system-owners\">\r\nRenewable Energy Credit (REC) Management Program\r\n</a>\r\n</p>\r\n<p>\r\nTo learn more call us at 240-344-2657 or send an email to <strong>sales@uspvinc.com</strong>.\r\n</p>\r\n</div>\r\n\r\n<div class=\"left\">\r\n<h2>Pre-Bid Owner Agency Services</h2>\r\n<ul>\r\n<li>\r\nWe conduct a needs analysis, site survey and feasibility study to help you identify the system most appropriate for your project.\r\n</li>\r\n<li>\r\nWe develop a bid package with specifications,  identify qualified bidders, issue Requests For Quotes, respond to bidder inquiries and manage the bidding process.\r\n</li>\r\n<li>\r\nWe prepare applications for State and Federal grants and meet with your accountant to ensure your ability to utilize the available tax credits and deductions that will be available.\r\n</li>\r\n<li>\r\nWe provide you with a bid summary of each proposal along with a detailed financial analysis to help you complete the contractor selection process.\r\n</li>\r\n<li>\r\nWe negotiate on your behalf to ensure the final contract will provide appropriate protections and guarantees.\r\n</li>\r\n<li>\r\nWe provide financing assistance, identify funding strategies and provide support as required to secure final project financing.\r\n</li>\r\n</ul>\r\n</div>\r\n\r\n<div class=\"left\">\r\n<h2>Pre-Bid Owner Agency Services</h2>\r\n<ul>\r\n<li>\r\nWe act as your representative during the installation process to ensure satisfactory completion of the project.\r\n</li>\r\n<li>\r\nWe complete a commissioning checklist process to ensure the installed system meets the specifications and performance standards in the contract.\r\n</li>\r\n<li>\r\nWe complete any state, federal or local certifications required to secure the financial incentives your project qualifies for.\r\n</li>\r\n<li>\r\nWe provide agency services to certify your system as a Renewable Energy Facilitiy.\r\n</li>\r\n<li>\r\nWe act as your agent to establish an account at PJM-EIS GATS to enable your system to earn RECs. PJM-EIS is the state-designated entity that manages all Solar RECs in the program.\r\n</li>\r\n<li>\r\nWe create, manage, market, sell and fulfill Renewable Energy Credit Certificates on your behalf. We maintain records and fulfill reporting requirements as required under state laws and regulations.\r\n</li>\r\n</ul>\r\n</div>\";s:6:\"format\";s:1:\"2\";s:7:\"changed\";s:10:\"1285870989\";s:13:\"form_build_id\";s:37:\"form-5b8cd15fc6a69ddb812292b45522e3ca\";s:10:\"form_token\";s:32:\"c8cdf5cb91a9be027c7b394c3034a064\";s:7:\"form_id\";s:14:\"page_node_form\";s:3:\"log\";s:0:\"\";s:7:\"comment\";s:1:\"0\";s:22:\"pathauto_perform_alias\";s:1:\"1\";s:4:\"name\";s:5:\"admin\";s:4:\"date\";s:25:\"2010-02-03 21:09:21 +0800\";s:6:\"status\";s:1:\"1\";s:2:\"op\";s:7:\"Preview\";}s:11:\"#programmed\";b:0;s:5:\"#tree\";b:0;s:8:\"#parents\";a:1:{i:0;s:7:\"preview\";}s:14:\"#array_parents\";a:2:{i:0;s:7:\"buttons\";i:1;s:7:\"preview\";}s:10:\"#processed\";b:0;s:12:\"#description\";N;s:11:\"#attributes\";a:0:{}s:9:\"#required\";b:0;s:6:\"#input\";b:1;s:5:\"#name\";s:2:\"op\";s:12:\"#button_type\";s:6:\"submit\";s:25:\"#executes_submit_callback\";b:1;s:8:\"#process\";a:1:{i:0;s:16:\"form_expand_ahah\";}s:3:\"#id\";s:12:\"edit-preview\";}s:8:\"redirect\";N;s:4:\"node\";a:34:{s:3:\"nid\";s:1:\"5\";s:3:\"vid\";s:1:\"5\";s:3:\"uid\";s:1:\"1\";s:7:\"created\";i:1265202561;s:4:\"type\";s:4:\"page\";s:8:\"language\";s:0:\"\";s:7:\"changed\";s:10:\"1285870989\";s:5:\"title\";s:12:\"Our Services\";s:9:\"teaser_js\";s:0:\"\";s:14:\"teaser_include\";i:1;s:4:\"body\";s:2696:\"<div class=\"left\">\r\n<p>\r\nIf you have or are thinking about installing a PV system, give us a call for a free, no-obligation consultation. We’ll provide you with the information you need to understand the financial opportunities and variables that you should consider as you plan your system.\r\n</p>\r\n<p>\r\nAt USPV, your project’s success is our business.\r\n</p>\r\n<p>\r\nLearn more about our \r\n<a href=\"/~uspvinc/main2/renewable-energy-credit-rec-management-program-pv-system-owners\">\r\nRenewable Energy Credit (REC) Management Program\r\n</a>\r\n</p>\r\n<p>\r\nTo learn more call us at 240-344-2657 or send an email to <strong>sales@uspvinc.com</strong>.\r\n</p>\r\n</div>\r\n\r\n<div class=\"left\">\r\n<h2>Pre-Bid Owner Agency Services</h2>\r\n<ul>\r\n<li>\r\nWe conduct a needs analysis, site survey and feasibility study to help you identify the system most appropriate for your project.\r\n</li>\r\n<li>\r\nWe develop a bid package with specifications,  identify qualified bidders, issue Requests For Quotes, respond to bidder inquiries and manage the bidding process.\r\n</li>\r\n<li>\r\nWe prepare applications for State and Federal grants and meet with your accountant to ensure your ability to utilize the available tax credits and deductions that will be available.\r\n</li>\r\n<li>\r\nWe provide you with a bid summary of each proposal along with a detailed financial analysis to help you complete the contractor selection process.\r\n</li>\r\n<li>\r\nWe negotiate on your behalf to ensure the final contract will provide appropriate protections and guarantees.\r\n</li>\r\n<li>\r\nWe provide financing assistance, identify funding strategies and provide support as required to secure final project financing.\r\n</li>\r\n</ul>\r\n</div>\r\n\r\n<div class=\"left\">\r\n<h2>Pre-Bid Owner Agency Services</h2>\r\n<ul>\r\n<li>\r\nWe act as your representative during the installation process to ensure satisfactory completion of the project.\r\n</li>\r\n<li>\r\nWe complete a commissioning checklist process to ensure the installed system meets the specifications and performance standards in the contract.\r\n</li>\r\n<li>\r\nWe complete any state, federal or local certifications required to secure the financial incentives your project qualifies for.\r\n</li>\r\n<li>\r\nWe provide agency services to certify your system as a Renewable Energy Facilitiy.\r\n</li>\r\n<li>\r\nWe act as your agent to establish an account at PJM-EIS GATS to enable your system to earn RECs. PJM-EIS is the state-designated entity that manages all Solar RECs in the program.\r\n</li>\r\n<li>\r\nWe create, manage, market, sell and fulfill Renewable Energy Credit Certificates on your behalf. We maintain records and fulfill reporting requirements as required under state laws and regulations.\r\n</li>\r\n</ul>\r\n</div>\";s:6:\"format\";s:1:\"2\";s:8:\"revision\";i:0;s:3:\"log\";s:0:\"\";s:4:\"name\";s:5:\"admin\";s:4:\"date\";s:25:\"2010-02-03 21:09:21 +0800\";s:6:\"status\";i:1;s:7:\"promote\";i:0;s:6:\"sticky\";i:0;s:6:\"submit\";s:4:\"Save\";s:2:\"op\";s:7:\"Preview\";s:7:\"preview\";s:7:\"Preview\";s:6:\"delete\";s:6:\"Delete\";s:13:\"form_build_id\";s:37:\"form-5b8cd15fc6a69ddb812292b45522e3ca\";s:10:\"form_token\";s:32:\"c8cdf5cb91a9be027c7b394c3034a064\";s:7:\"form_id\";s:14:\"page_node_form\";s:7:\"comment\";s:1:\"0\";s:4:\"menu\";a:14:{s:6:\"delete\";i:0;s:4:\"mlid\";s:3:\"285\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:10:\"customized\";s:1:\"1\";s:7:\"options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:8:\"services\";}}s:8:\"expanded\";s:1:\"0\";s:18:\"parent_depth_limit\";i:8;s:10:\"link_title\";s:8:\"services\";s:6:\"parent\";s:16:\"menu-main-menu:0\";s:6:\"weight\";s:3:\"-49\";s:4:\"plid\";s:1:\"0\";s:9:\"menu_name\";s:14:\"menu-main-menu\";}s:4:\"path\";s:0:\"\";s:3:\"pid\";s:1:\"5\";s:22:\"pathauto_perform_alias\";i:1;s:9:\"old_alias\";s:12:\"our-services\";s:6:\"teaser\";s:544:\"<div class=\"left\">\r\n<p>\r\nIf you have or are thinking about installing a PV system, give us a call for a free, no-obligation consultation. We’ll provide you with the information you need to understand the financial opportunities and variables that you should consider as you plan your system.\r\n</p>\r\n<p>\r\nAt USPV, your project’s success is our business.\r\n</p>\r\n<p>\r\nLearn more about our \r\n<a href=\"/~uspvinc/main2/renewable-energy-credit-rec-management-program-pv-system-owners\">\r\nRenewable Energy Credit (REC) Management Program\r\n</a>\r\n</p>\";s:9:\"validated\";b:1;}s:7:\"rebuild\";b:1;s:12:\"node_preview\";s:3731:\"<div class=\"preview\"><h3>Preview trimmed version</h3>  <div class=\"node\">\n        <h2 class=\"title\"><a href=\"/~uspvinc/main2/our-services\">Our Services</a></h2>    <div class=\"submitted\"></div>\n    <div class=\"taxonomy\"></div>\n    <div class=\"content\"><div class=\"left\">\n<p>\nIf you have or are thinking about installing a PV system, give us a call for a free, no-obligation consultation. We’ll provide you with the information you need to understand the financial opportunities and variables that you should consider as you plan your system.\n</p>\n<p>\nAt USPV, your project’s success is our business.\n</p>\n<p>\nLearn more about our<br />\n<a href=\"/~uspvinc/main2/renewable-energy-credit-rec-management-program-pv-system-owners\"><br />\nRenewable Energy Credit (REC) Management Program<br />\n</a>\n</p>\n</div></div>\n      </div>\n<h3>Preview full version</h3>  <div class=\"node\">\n        <h2 class=\"title\"><a href=\"/~uspvinc/main2/our-services\">Our Services</a></h2>    <div class=\"submitted\"></div>\n    <div class=\"taxonomy\"></div>\n    <div class=\"content\"><div class=\"left\">\n<p>\nIf you have or are thinking about installing a PV system, give us a call for a free, no-obligation consultation. We’ll provide you with the information you need to understand the financial opportunities and variables that you should consider as you plan your system.\n</p>\n<p>\nAt USPV, your project’s success is our business.\n</p>\n<p>\nLearn more about our<br />\n<a href=\"/~uspvinc/main2/renewable-energy-credit-rec-management-program-pv-system-owners\"><br />\nRenewable Energy Credit (REC) Management Program<br />\n</a>\n</p>\n<p>\nTo learn more call us at 240-344-2657 or send an email to <strong>sales@uspvinc.com</strong>.\n</p>\n</div>\n<div class=\"left\">\n<h2>Pre-Bid Owner Agency Services</h2>\n<ul>\n<li>\nWe conduct a needs analysis, site survey and feasibility study to help you identify the system most appropriate for your project.\n</li>\n<li>\nWe develop a bid package with specifications,  identify qualified bidders, issue Requests For Quotes, respond to bidder inquiries and manage the bidding process.\n</li>\n<li>\nWe prepare applications for State and Federal grants and meet with your accountant to ensure your ability to utilize the available tax credits and deductions that will be available.\n</li>\n<li>\nWe provide you with a bid summary of each proposal along with a detailed financial analysis to help you complete the contractor selection process.\n</li>\n<li>\nWe negotiate on your behalf to ensure the final contract will provide appropriate protections and guarantees.\n</li>\n<li>\nWe provide financing assistance, identify funding strategies and provide support as required to secure final project financing.\n</li>\n</ul>\n</div>\n<div class=\"left\">\n<h2>Pre-Bid Owner Agency Services</h2>\n<ul>\n<li>\nWe act as your representative during the installation process to ensure satisfactory completion of the project.\n</li>\n<li>\nWe complete a commissioning checklist process to ensure the installed system meets the specifications and performance standards in the contract.\n</li>\n<li>\nWe complete any state, federal or local certifications required to secure the financial incentives your project qualifies for.\n</li>\n<li>\nWe provide agency services to certify your system as a Renewable Energy Facilitiy.\n</li>\n<li>\nWe act as your agent to establish an account at PJM-EIS GATS to enable your system to earn RECs. PJM-EIS is the state-designated entity that manages all Solar RECs in the program.\n</li>\n<li>\nWe create, manage, market, sell and fulfill Renewable Energy Credit Certificates on your behalf. We maintain records and fulfill reporting requirements as required under state laws and regulations.\n</li>\n</ul>\n</div>\n</div>\n      </div>\n</div>\n\";}i:2;O:8:\"stdClass\":29:{s:3:\"nid\";s:1:\"5\";s:4:\"type\";s:4:\"page\";s:8:\"language\";s:0:\"\";s:3:\"uid\";s:1:\"1\";s:6:\"status\";s:1:\"1\";s:7:\"created\";s:10:\"1265202561\";s:7:\"changed\";s:10:\"1285870989\";s:7:\"comment\";s:1:\"0\";s:7:\"promote\";s:1:\"0\";s:8:\"moderate\";s:1:\"0\";s:6:\"sticky\";s:1:\"0\";s:4:\"tnid\";s:1:\"0\";s:9:\"translate\";s:1:\"0\";s:3:\"vid\";s:1:\"5\";s:12:\"revision_uid\";s:1:\"1\";s:5:\"title\";s:12:\"Our Services\";s:4:\"body\";s:2660:\"<div class=\"left\">\r\n<p>\r\nIf you have or are thinking about installing a PV system, give us a call for a free, no-obligation consultation. We’ll provide you with the information you need to understand the financial opportunities and variables that you should consider as you plan your system.\r\n</p>\r\n<p>\r\nAt USPV, your project’s success is our business.\r\n</p>\r\n<p>\r\nLearn more about our \r\n<a href=\"http://uspvinc.com/recmp-md.htm\">\r\nRenewable Energy Credit (REC) Management Program\r\n</a>\r\n</p>\r\n<p>\r\nTo learn more call us at 240-344-2657 or send an email to <strong>sales@uspvinc.com</strong>.\r\n</p>\r\n</div>\r\n<!--break-->\r\n<div class=\"left\">\r\n<h2>Pre-Bid Owner Agency Services</h2>\r\n<ul>\r\n<li>\r\nWe conduct a needs analysis, site survey and feasibility study to help you identify the system most appropriate for your project.\r\n</li>\r\n<li>\r\nWe develop a bid package with specifications,  identify qualified bidders, issue Requests For Quotes, respond to bidder inquiries and manage the bidding process.\r\n</li>\r\n<li>\r\nWe prepare applications for State and Federal grants and meet with your accountant to ensure your ability to utilize the available tax credits and deductions that will be available.\r\n</li>\r\n<li>\r\nWe provide you with a bid summary of each proposal along with a detailed financial analysis to help you complete the contractor selection process.\r\n</li>\r\n<li>\r\nWe negotiate on your behalf to ensure the final contract will provide appropriate protections and guarantees.\r\n</li>\r\n<li>\r\nWe provide financing assistance, identify funding strategies and provide support as required to secure final project financing.\r\n</li>\r\n</ul>\r\n</div>\r\n\r\n<div class=\"left\">\r\n<h2>Pre-Bid Owner Agency Services</h2>\r\n<ul>\r\n<li>\r\nWe act as your representative during the installation process to ensure satisfactory completion of the project.\r\n</li>\r\n<li>\r\nWe complete a commissioning checklist process to ensure the installed system meets the specifications and performance standards in the contract.\r\n</li>\r\n<li>\r\nWe complete any state, federal or local certifications required to secure the financial incentives your project qualifies for.\r\n</li>\r\n<li>\r\nWe provide agency services to certify your system as a Renewable Energy Facilitiy.\r\n</li>\r\n<li>\r\nWe act as your agent to establish an account at PJM-EIS GATS to enable your system to earn RECs. PJM-EIS is the state-designated entity that manages all Solar RECs in the program.\r\n</li>\r\n<li>\r\nWe create, manage, market, sell and fulfill Renewable Energy Credit Certificates on your behalf. We maintain records and fulfill reporting requirements as required under state laws and regulations.\r\n</li>\r\n</ul>\r\n</div>\";s:6:\"teaser\";s:612:\"<div class=\"left\">\r\n<p>\r\nIf you have or are thinking about installing a PV system, give us a call for a free, no-obligation consultation. We’ll provide you with the information you need to understand the financial opportunities and variables that you should consider as you plan your system.\r\n</p>\r\n<p>\r\nAt USPV, your project’s success is our business.\r\n</p>\r\n<p>\r\nLearn more about our \r\n<a href=\"http://uspvinc.com/recmp-md.htm\">\r\nRenewable Energy Credit (REC) Management Program\r\n</a>\r\n</p>\r\n<p>\r\nTo learn more call us at 240-344-2657 or send an email to <strong>sales@uspvinc.com</strong>.\r\n</p>\r\n</div>\r\n\";s:3:\"log\";s:0:\"\";s:18:\"revision_timestamp\";s:10:\"1285870989\";s:6:\"format\";s:1:\"2\";s:4:\"name\";s:5:\"admin\";s:7:\"picture\";s:0:\"\";s:4:\"data\";s:6:\"a:0:{}\";s:4:\"path\";s:12:\"our-services\";s:22:\"last_comment_timestamp\";s:10:\"1265202561\";s:17:\"last_comment_name\";N;s:13:\"comment_count\";s:1:\"0\";s:8:\"taxonomy\";a:0:{}}}s:9:\"#build_id\";s:37:\"form-5266e5f09baa71f13781c9d4364db119\";s:5:\"#type\";s:4:\"form\";s:11:\"#programmed\";b:0;s:13:\"form_build_id\";a:4:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:37:\"form-5266e5f09baa71f13781c9d4364db119\";s:3:\"#id\";s:37:\"form-5266e5f09baa71f13781c9d4364db119\";s:5:\"#name\";s:13:\"form_build_id\";}s:6:\"#token\";s:14:\"page_node_form\";s:10:\"form_token\";a:3:{s:3:\"#id\";s:30:\"edit-page-node-form-form-token\";s:5:\"#type\";s:5:\"token\";s:14:\"#default_value\";s:32:\"c8cdf5cb91a9be027c7b394c3034a064\";}s:7:\"form_id\";a:3:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:14:\"page_node_form\";s:3:\"#id\";s:19:\"edit-page-node-form\";}s:12:\"#description\";N;s:11:\"#attributes\";a:0:{}s:9:\"#required\";b:0;s:5:\"#tree\";b:0;s:8:\"#parents\";a:0:{}s:7:\"#method\";s:4:\"post\";s:7:\"#action\";s:27:\"/~uspvinc/main2/node/5/edit\";s:16:\"comment_settings\";a:7:{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:7:\"#weight\";i:30;s:7:\"comment\";a:4:{s:5:\"#type\";s:6:\"radios\";s:8:\"#parents\";a:1:{i:0;s:7:\"comment\";}s:14:\"#default_value\";s:1:\"0\";s:8:\"#options\";a:3:{i:0;s:8:\"Disabled\";i:1;s:9:\"Read only\";i:2;s:10:\"Read/Write\";}}}s:6:\"#cache\";b:1;s:4:\"menu\";a:21:{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:5:\"#tree\";b:1;s:7:\"#weight\";i:-2;s:11:\"#attributes\";a:1:{s:5:\"class\";s:14:\"menu-item-form\";}s:6:\"delete\";a:2:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:22:\"Delete this menu item.\";}s:4:\"mlid\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:3:\"285\";}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\";s:1:\"1\";}s:7:\"options\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:8:\"services\";}}}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:5:\"#item\";a:14:{s:6:\"delete\";i:0;s:4:\"mlid\";s:3:\"285\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:10:\"customized\";s:1:\"1\";s:7:\"options\";a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:8:\"services\";}}s:8:\"expanded\";s:1:\"0\";s:18:\"parent_depth_limit\";i:8;s:10:\"link_title\";s:8:\"services\";s:6:\"parent\";s:16:\"menu-main-menu:0\";s:6:\"weight\";s:3:\"-49\";s:4:\"plid\";s:1:\"0\";s:9:\"menu_name\";s:14:\"menu-main-menu\";}s:10:\"link_title\";a:5:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:15:\"Menu link title\";s:14:\"#default_value\";s:8:\"services\";s:12:\"#description\";s:133:\"The link text corresponding to this item that should appear in the menu. Leave blank if you do not wish to add this post to the menu.\";s:9:\"#required\";b:0;}s:6:\"parent\";a:6:{s:5:\"#type\";s:6:\"select\";s:6:\"#title\";s:11:\"Parent item\";s:14:\"#default_value\";s:16:\"menu-main-menu:0\";s:8:\"#options\";a:95:{s:16:\"menu-main-menu:0\";s:11:\"<Main Menu>\";s:18:\"menu-main-menu:283\";s:8:\"-- about\";s:18:\"menu-main-menu:284\";s:12:\"-- resources\";s:18:\"menu-main-menu:286\";s:17:\"-- special offers\";s:12:\"navigation:0\";s:12:\"<Navigation>\";s:12:\"navigation:9\";s:26:\"-- Compose tips (disabled)\";s:14:\"navigation:461\";s:29:\"-- Image galleries (disabled)\";s:13:\"navigation:21\";s:13:\"-- My account\";s:14:\"navigation:114\";s:20:\"-- Search (disabled)\";s:14:\"navigation:244\";s:22:\"-- Site map (disabled)\";s:13:\"navigation:11\";s:17:\"-- Create content\";s:14:\"navigation:476\";s:11:\"---- Banner\";s:14:\"navigation:441\";s:10:\"---- Image\";s:14:\"navigation:289\";s:21:\"---- Newsletter issue\";s:14:\"navigation:106\";s:9:\"---- Page\";s:14:\"navigation:388\";s:10:\"---- Panel\";s:14:\"navigation:107\";s:10:\"---- Story\";s:12:\"navigation:2\";s:13:\"-- Administer\";s:13:\"navigation:10\";s:23:\"---- Content management\";s:13:\"navigation:27\";s:15:\"------ Comments\";s:13:\"navigation:28\";s:14:\"------ Content\";s:13:\"navigation:29\";s:20:\"------ Content types\";s:14:\"navigation:462\";s:22:\"------ Image galleries\";s:14:\"navigation:463\";s:19:\"------ Image import\";s:14:\"navigation:538\";s:18:\"------ Newsletters\";s:14:\"navigation:546\";s:20:\"-------- Sent issues\";s:14:\"navigation:541\";s:21:\"-------- Draft issues\";s:14:\"navigation:544\";s:20:\"-------- Newsletters\";s:14:\"navigation:548\";s:22:\"-------- Subscriptions\";s:13:\"navigation:42\";s:20:\"------ Post settings\";s:13:\"navigation:43\";s:21:\"------ RSS publishing\";s:13:\"navigation:94\";s:15:\"------ Taxonomy\";s:13:\"navigation:17\";s:18:\"---- Site building\";s:13:\"navigation:25\";s:13:\"------ Blocks\";s:14:\"navigation:424\";s:20:\"------ Bulk Exporter\";s:13:\"navigation:38\";s:12:\"------ Menus\";s:14:\"navigation:282\";s:18:\"-------- Main Menu\";s:13:\"navigation:89\";s:19:\"-------- Navigation\";s:13:\"navigation:90\";s:22:\"-------- Primary links\";s:14:\"navigation:495\";s:19:\"-------- Right Menu\";s:13:\"navigation:91\";s:24:\"-------- Secondary links\";s:14:\"navigation:387\";s:18:\"------ Mini panels\";s:13:\"navigation:39\";s:14:\"------ Modules\";s:14:\"navigation:412\";s:12:\"------ Pages\";s:14:\"navigation:360\";s:13:\"------ Panels\";s:13:\"navigation:49\";s:13:\"------ Themes\";s:14:\"navigation:335\";s:15:\"------ Triggers\";s:14:\"navigation:501\";s:18:\"------ URL aliases\";s:14:\"navigation:257\";s:12:\"------ Views\";s:13:\"navigation:18\";s:23:\"---- Site configuration\";s:13:\"navigation:23\";s:14:\"------ Actions\";s:14:\"navigation:119\";s:26:\"------ Administration menu\";s:13:\"navigation:24\";s:27:\"------ Administration theme\";s:13:\"navigation:26\";s:17:\"------ Clean URLs\";s:13:\"navigation:30\";s:20:\"------ Date and time\";s:13:\"navigation:33\";s:22:\"------ Error reporting\";s:13:\"navigation:34\";s:18:\"------ File system\";s:13:\"navigation:35\";s:20:\"------ Image toolkit\";s:14:\"navigation:442\";s:13:\"------ Images\";s:13:\"navigation:36\";s:20:\"------ Input formats\";s:13:\"navigation:37\";s:25:\"------ Logging and alerts\";s:14:\"navigation:100\";s:25:\"-------- Database logging\";s:14:\"navigation:245\";s:17:\"------ Nice Menus\";s:13:\"navigation:40\";s:18:\"------ Performance\";s:14:\"navigation:120\";s:22:\"------ Search settings\";s:14:\"navigation:539\";s:17:\"------ Simplenews\";s:14:\"navigation:542\";s:16:\"-------- General\";s:14:\"navigation:543\";s:19:\"-------- Newsletter\";s:14:\"navigation:547\";s:21:\"-------- Subscription\";s:14:\"navigation:545\";s:18:\"-------- Send mail\";s:13:\"navigation:46\";s:23:\"------ Site information\";s:13:\"navigation:47\";s:23:\"------ Site maintenance\";s:14:\"navigation:246\";s:15:\"------ Site map\";s:13:\"navigation:20\";s:20:\"---- User management\";s:13:\"navigation:22\";s:19:\"------ Access rules\";s:13:\"navigation:41\";s:18:\"------ Permissions\";s:13:\"navigation:45\";s:12:\"------ Roles\";s:13:\"navigation:50\";s:20:\"------ User settings\";s:13:\"navigation:51\";s:12:\"------ Users\";s:13:\"navigation:16\";s:12:\"---- Reports\";s:13:\"navigation:93\";s:25:\"------ Recent log entries\";s:13:\"navigation:96\";s:33:\"------ Top \'access denied\' errors\";s:13:\"navigation:97\";s:34:\"------ Top \'page not found\' errors\";s:14:\"navigation:121\";s:25:\"------ Top search phrases\";s:14:\"navigation:105\";s:24:\"------ Available updates\";s:13:\"navigation:48\";s:20:\"------ Status report\";s:13:\"navigation:15\";s:9:\"---- Help\";s:12:\"navigation:4\";s:10:\"-- Log out\";s:15:\"primary-links:0\";s:15:\"<Primary links>\";s:17:\"menu-right-menu:0\";s:12:\"<Right Menu>\";s:19:\"menu-right-menu:496\";s:28:\"-- Financial Calculator Tool\";s:19:\"menu-right-menu:497\";s:21:\"-- News Story Library\";s:19:\"menu-right-menu:498\";s:14:\"-- Latest News\";s:19:\"menu-right-menu:499\";s:25:\"-- SREC Management Portal\";s:17:\"secondary-links:0\";s:17:\"<Secondary links>\";}s:12:\"#description\";s:156:\"The maximum depth for an item and all its children is fixed at 9. Some menu items may not be available as parents if selecting them would exceed this limit.\";s:11:\"#attributes\";a:1:{s:5:\"class\";s:17:\"menu-title-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:\"-49\";s:12:\"#description\";s:107:\"Optional. In the menu, the heavier items will sink and the lighter items will be positioned nearer the top.\";}}s:7:\"#submit\";a:1:{i:0;s:21:\"menu_node_form_submit\";}s:4:\"path\";a:9:{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:7:\"#access\";b:1;s:7:\"#weight\";i:30;s:4:\"path\";a:6:{s:5:\"#type\";s:9:\"textfield\";s:14:\"#default_value\";s:12:\"our-services\";s:10:\"#maxlength\";i:128;s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:12:\"#description\";s:207:\"Optionally specify an alternative URL by which this node 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:22:\"pathauto_perform_alias\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:15:\"Automatic alias\";s:14:\"#default_value\";i:1;s:12:\"#description\";s:238:\"An alias will be generated for you. If you wish to create your own alias below, uncheck this option. To control the format of the generated aliases, see the <a href=\"/~uspvinc/main2/admin/build/path/pathauto\">automated alias settings</a>.\";s:7:\"#weight\";i:-1;}s:9:\"old_alias\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:12:\"our-services\";}}s:11:\"#pre_render\";a:1:{i:0;s:27:\"content_alter_extra_weights\";}s:21:\"#content_extra_fields\";a:6:{s:5:\"title\";a:3:{s:5:\"label\";s:5:\"Title\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:-5;}s:10:\"body_field\";a:4:{s:5:\"label\";s:4:\"Body\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:0;s:4:\"view\";s:4:\"body\";}s:20:\"revision_information\";a:3:{s:5:\"label\";s:20:\"Revision information\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:20;}s:16:\"comment_settings\";a:3:{s:5:\"label\";s:16:\"Comment settings\";s:11:\"description\";s:20:\"Comment module form.\";s:6:\"weight\";i:30;}s:4:\"menu\";a:3:{s:5:\"label\";s:13:\"Menu settings\";s:11:\"description\";s:17:\"Menu module form.\";s:6:\"weight\";i:-2;}s:4:\"path\";a:3:{s:5:\"label\";s:13:\"Path settings\";s:11:\"description\";s:17:\"Path module form.\";s:6:\"weight\";i:30;}}s:12:\"#cache_token\";s:32:\"9b1d41d03b74313ea2e88d42ffb9ee80\";}',1285892838,1285871238,'',1),('form_form-ca1ce0ad36e1177f070d42e77a821282','a:40:{s:3:\"#id\";s:9:\"node-form\";s:3:\"nid\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:2:\"17\";}s:3:\"vid\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:2:\"17\";}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:\"1285871679\";}s:4:\"type\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:4:\"page\";}s:8:\"language\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:0:\"\";}s:7:\"changed\";a:2:{s:5:\"#type\";s:6:\"hidden\";s:14:\"#default_value\";s:10:\"1285871679\";}s:5:\"title\";a:6:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:5:\"Title\";s:9:\"#required\";b:1;s:14:\"#default_value\";s:55:\"Understanding Renewable Energy Credits and Certificates\";s:10:\"#maxlength\";i:255;s:7:\"#weight\";i:-5;}s:10:\"body_field\";a:7:{s:12:\"#after_build\";a:2:{i:0;s:14:\"node_teaser_js\";i:1;s:26:\"node_teaser_include_verify\";}s:7:\"#prefix\";s:32:\"<div class=\"body-field-wrapper\">\";s:7:\"#suffix\";s:6:\"</div>\";s:9:\"teaser_js\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:5:\"#rows\";i:10;s:7:\"#teaser\";s:9:\"edit-body\";s:16:\"#teaser_checkbox\";s:19:\"edit-teaser-include\";s:9:\"#disabled\";b:1;}s:14:\"teaser_include\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:25:\"Show summary in full view\";s:14:\"#default_value\";b:1;s:7:\"#prefix\";s:29:\"<div class=\"teaser-checkbox\">\";s:7:\"#suffix\";s:6:\"</div>\";}s:4:\"body\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:4:\"Body\";s:14:\"#default_value\";s:2630:\"Twenty-eight states plus the District of Columbia have enacted Renewable Energy Portfolio Standards (RPS) legislation to accelerate the adoption of renewable energy sources for the production of electricity.  Maryland’s program requires electricity suppliers to derive a defined percentage of their total electrical production from renewable sources.  Companies that fail to meet the Standard must either purchase Renewable Energy Credits (RECs) from state-certified Renewable Energy Facilities (REFs) sufficient to meet the requirement or pay Compliance Fees to a State fund that will be used to encourage production of additional renewable electricity capacity.\r\n\r\n \r\n\r\nUnlike many state RPS programs, Maryland requires that solar electrical production be a part of each electrical supplier’s portfolio.  In 2008, the first year with a specific solar requirement, suppliers must produce .005% of their electricity from solar.  The percentage to be provided by solar sources increases steadily each year through 2022 when a full 2% of Maryland’s electricity needs are to be met by solar production.  The Compliance Fee for companies that do not meet the standard or purchase RECs equal to the Standard is $0.45 per kWh in 2008 (equivalent to $450 per mWh or REC energy equivalent).  The Compliance Fee declines on a per kWh basis every other year by $0.05 per kWh while the amount of the solar production requirement increases.  Thus, in 2010 the Compliance Fee is $0.40 per kWh, $0.35 in 2012 and by 2023 is reduced to $0.05 per kWh, where it remains.  \r\n\r\n \r\n\r\nAny Solar REF in Maryland that wishes to create RECs based on its production must first offer the RECs to an electricity supplier subject to the RPS.  Suppliers who purchase RECs from Maryland solar producers must do so under a contract that covers the expected production of the REF for a minimum of 15 years, although the price per REC may vary.  However, REFs smaller than 10 kW must be paid the full value of the 15-year contract in a single advance payment under any such agreement.\r\n\r\n \r\n\r\nWhile the value of Solar RECs produced by Maryland facilities is unclear at this time and the willingness of electricity suppliers to pre-pay small facilities may be limited, the opportunity for small producers to monetize part of their investment is significant. \r\n\r\n \r\n\r\nThere is likely to be an advantage to producers who participate in the REC program earlier than others both because of the declining Compliance Fees contained in the legislation and the increased supply of available RECs from new facilities certain to come online in future months and years.\";s:5:\"#rows\";i:20;s:9:\"#required\";b:0;}s:6:\"format\";a:9:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:12:\"Input format\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:7:\"#weight\";N;s:17:\"#element_validate\";a:1:{i:0;s:20:\"filter_form_validate\";}i:1;a:7:{s:5:\"#type\";s:5:\"radio\";s:6:\"#title\";s:13:\"Filtered HTML\";s:14:\"#default_value\";s:1:\"1\";s:13:\"#return_value\";s:1:\"1\";s:8:\"#parents\";a:1:{i:0;s:6:\"format\";}s:12:\"#description\";s:306:\"<ul class=\"tips\"><li>Web page addresses and e-mail addresses turn into links automatically.</li><li>Allowed HTML tags: &lt;a&gt; &lt;em&gt; &lt;strong&gt; &lt;cite&gt; &lt;code&gt; &lt;ul&gt; &lt;ol&gt; &lt;li&gt; &lt;dl&gt; &lt;dt&gt; &lt;dd&gt;</li><li>Lines and paragraphs break automatically.</li></ul>\";s:3:\"#id\";s:13:\"edit-format-1\";}i:2;a:7:{s:5:\"#type\";s:5:\"radio\";s:6:\"#title\";s:9:\"Full HTML\";s:14:\"#default_value\";s:1:\"1\";s:13:\"#return_value\";s:1:\"2\";s:8:\"#parents\";a:1:{i:0;s:6:\"format\";}s:12:\"#description\";s:151:\"<ul class=\"tips\"><li>Web page addresses and e-mail addresses turn into links automatically.</li><li>Lines and paragraphs break automatically.</li></ul>\";s:3:\"#id\";s:13:\"edit-format-2\";}i:3;a:1:{s:6:\"#value\";s:90:\"<p><a href=\"/~uspvinc/main2/filter/tips\">More information about formatting options</a></p>\";}}}s:5:\"#node\";O:8:\"stdClass\":33:{s:3:\"nid\";s:2:\"17\";s:4:\"type\";s:4:\"page\";s:8:\"language\";s:0:\"\";s:3:\"uid\";s:1:\"1\";s:6:\"status\";s:1:\"1\";s:7:\"created\";s:10:\"1285871679\";s:7:\"changed\";s:10:\"1285871679\";s:7:\"comment\";s:1:\"0\";s:7:\"promote\";s:1:\"0\";s:8:\"moderate\";s:1:\"0\";s:6:\"sticky\";s:1:\"0\";s:4:\"tnid\";s:1:\"0\";s:9:\"translate\";s:1:\"0\";s:3:\"vid\";s:2:\"17\";s:12:\"revision_uid\";s:1:\"1\";s:5:\"title\";s:55:\"Understanding Renewable Energy Credits and Certificates\";s:4:\"body\";s:2630:\"Twenty-eight states plus the District of Columbia have enacted Renewable Energy Portfolio Standards (RPS) legislation to accelerate the adoption of renewable energy sources for the production of electricity.  Maryland’s program requires electricity suppliers to derive a defined percentage of their total electrical production from renewable sources.  Companies that fail to meet the Standard must either purchase Renewable Energy Credits (RECs) from state-certified Renewable Energy Facilities (REFs) sufficient to meet the requirement or pay Compliance Fees to a State fund that will be used to encourage production of additional renewable electricity capacity.\r\n\r\n \r\n\r\nUnlike many state RPS programs, Maryland requires that solar electrical production be a part of each electrical supplier’s portfolio.  In 2008, the first year with a specific solar requirement, suppliers must produce .005% of their electricity from solar.  The percentage to be provided by solar sources increases steadily each year through 2022 when a full 2% of Maryland’s electricity needs are to be met by solar production.  The Compliance Fee for companies that do not meet the standard or purchase RECs equal to the Standard is $0.45 per kWh in 2008 (equivalent to $450 per mWh or REC energy equivalent).  The Compliance Fee declines on a per kWh basis every other year by $0.05 per kWh while the amount of the solar production requirement increases.  Thus, in 2010 the Compliance Fee is $0.40 per kWh, $0.35 in 2012 and by 2023 is reduced to $0.05 per kWh, where it remains.  \r\n\r\n \r\n\r\nAny Solar REF in Maryland that wishes to create RECs based on its production must first offer the RECs to an electricity supplier subject to the RPS.  Suppliers who purchase RECs from Maryland solar producers must do so under a contract that covers the expected production of the REF for a minimum of 15 years, although the price per REC may vary.  However, REFs smaller than 10 kW must be paid the full value of the 15-year contract in a single advance payment under any such agreement.\r\n\r\n \r\n\r\nWhile the value of Solar RECs produced by Maryland facilities is unclear at this time and the willingness of electricity suppliers to pre-pay small facilities may be limited, the opportunity for small producers to monetize part of their investment is significant. \r\n\r\n \r\n\r\nThere is likely to be an advantage to producers who participate in the REC program earlier than others both because of the declining Compliance Fees contained in the legislation and the increased supply of available RECs from new facilities certain to come online in future months and years.\";s:6:\"teaser\";s:352:\"Twenty-eight states plus the District of Columbia have enacted Renewable Energy Portfolio Standards (RPS) legislation to accelerate the adoption of renewable energy sources for the production of electricity.  Maryland’s program requires electricity suppliers to derive a defined percentage of their total electrical production from renewable sources.\";s:3:\"log\";N;s:18:\"revision_timestamp\";s:10:\"1285871679\";s:6:\"format\";s:1:\"1\";s:4:\"name\";s:5:\"admin\";s:7:\"picture\";s:0:\"\";s:4:\"data\";s:6:\"a:0:{}\";s:4:\"path\";s:57:\"understanding-renewable-energy-credits-and-certificates-0\";s:22:\"last_comment_timestamp\";s:10:\"1285871679\";s:17:\"last_comment_name\";N;s:13:\"comment_count\";s:1:\"0\";s:8:\"taxonomy\";a:0:{}s:4:\"date\";s:25:\"2010-10-01 02:34:39 +0800\";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:13:\"primary-links\";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:22:\"pathauto_perform_alias\";b:1;}s:20:\"revision_information\";a:7:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:20:\"Revision information\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:7:\"#weight\";i:20;s:8:\"revision\";a:4:{s:7:\"#access\";b:1;s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:19:\"Create new revision\";s:14:\"#default_value\";b:0;}s:3:\"log\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:11:\"Log message\";s:14:\"#default_value\";s:0:\"\";s:5:\"#rows\";i:2;s:12:\"#description\";s:104:\"An explanation of the additions or updates being made to help other authors understand your motivations.\";}}s:6:\"author\";a:8:{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:7:\"#weight\";i:20;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:35:\"Leave blank for <em>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:91:\"Format: <em>2010-10-01 02:34:39 +0800</em>. Leave blank to use the time of form submission.\";s:14:\"#default_value\";s:25:\"2010-10-01 02:34:39 +0800\";}}s:7:\"options\";a:9:{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:7:\"#weight\";i:25;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:\"buttons\";a:3:{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:16:\"node_form_submit\";}}s:7:\"preview\";a:4:{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:6:\"#theme\";a:2:{i:0;s:14:\"page_node_form\";i:1;s:9:\"node_form\";}s:11:\"#parameters\";a:3:{i:0;s:14:\"page_node_form\";i:1;a:3:{s:7:\"storage\";N;s:9:\"submitted\";b:0;s:4:\"post\";a:0:{}}i:2;r:83;}s:9:\"#build_id\";s:37:\"form-ca1ce0ad36e1177f070d42e77a821282\";s:5:\"#type\";s:4:\"form\";s:11:\"#programmed\";b:0;s:13:\"form_build_id\";a:4:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:37:\"form-ca1ce0ad36e1177f070d42e77a821282\";s:3:\"#id\";s:37:\"form-ca1ce0ad36e1177f070d42e77a821282\";s:5:\"#name\";s:13:\"form_build_id\";}s:6:\"#token\";s:14:\"page_node_form\";s:10:\"form_token\";a:3:{s:3:\"#id\";s:30:\"edit-page-node-form-form-token\";s:5:\"#type\";s:5:\"token\";s:14:\"#default_value\";s:32:\"69ee9cfa6b6366390575effcb3429c15\";}s:7:\"form_id\";a:3:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:14:\"page_node_form\";s:3:\"#id\";s:19:\"edit-page-node-form\";}s:12:\"#description\";N;s:11:\"#attributes\";a:0:{}s:9:\"#required\";b:0;s:5:\"#tree\";b:0;s:8:\"#parents\";a:0:{}s:7:\"#method\";s:4:\"post\";s:7:\"#action\";s:28:\"/~uspvinc/main2/node/17/edit\";s:16:\"comment_settings\";a:7:{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:7:\"#weight\";i:30;s:7:\"comment\";a:4:{s:5:\"#type\";s:6:\"radios\";s:8:\"#parents\";a:1:{i:0;s:7:\"comment\";}s:14:\"#default_value\";s:1:\"0\";s:8:\"#options\";a:3:{i:0;s:8:\"Disabled\";i:1;s:9:\"Read only\";i:2;s:10:\"Read/Write\";}}}s:6:\"#cache\";b:1;s:4:\"menu\";a:20:{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:5:\"#tree\";b:1;s:7:\"#weight\";i:-2;s:11:\"#attributes\";a:1:{s:5:\"class\";s:14:\"menu-item-form\";}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:0;}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:5:\"#item\";a:12:{s:10:\"link_title\";s:0:\"\";s:4:\"mlid\";i:0;s:4:\"plid\";i:0;s:9:\"menu_name\";s:13:\"primary-links\";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:10:\"link_title\";a:5:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:15:\"Menu link title\";s:14:\"#default_value\";s:0:\"\";s:12:\"#description\";s:133:\"The link text corresponding to this item that should appear in the menu. Leave blank if you do not wish to add this post to the menu.\";s:9:\"#required\";b:0;}s:6:\"parent\";a:6:{s:5:\"#type\";s:6:\"select\";s:6:\"#title\";s:11:\"Parent item\";s:14:\"#default_value\";s:15:\"primary-links:0\";s:8:\"#options\";a:96:{s:16:\"menu-main-menu:0\";s:11:\"<Main Menu>\";s:18:\"menu-main-menu:283\";s:8:\"-- about\";s:18:\"menu-main-menu:285\";s:11:\"-- services\";s:18:\"menu-main-menu:284\";s:12:\"-- resources\";s:18:\"menu-main-menu:286\";s:17:\"-- special offers\";s:12:\"navigation:0\";s:12:\"<Navigation>\";s:12:\"navigation:9\";s:26:\"-- Compose tips (disabled)\";s:14:\"navigation:461\";s:29:\"-- Image galleries (disabled)\";s:13:\"navigation:21\";s:13:\"-- My account\";s:14:\"navigation:114\";s:20:\"-- Search (disabled)\";s:14:\"navigation:244\";s:22:\"-- Site map (disabled)\";s:13:\"navigation:11\";s:17:\"-- Create content\";s:14:\"navigation:476\";s:11:\"---- Banner\";s:14:\"navigation:441\";s:10:\"---- Image\";s:14:\"navigation:289\";s:21:\"---- Newsletter issue\";s:14:\"navigation:106\";s:9:\"---- Page\";s:14:\"navigation:388\";s:10:\"---- Panel\";s:14:\"navigation:107\";s:10:\"---- Story\";s:12:\"navigation:2\";s:13:\"-- Administer\";s:13:\"navigation:10\";s:23:\"---- Content management\";s:13:\"navigation:27\";s:15:\"------ Comments\";s:13:\"navigation:28\";s:14:\"------ Content\";s:13:\"navigation:29\";s:20:\"------ Content types\";s:14:\"navigation:462\";s:22:\"------ Image galleries\";s:14:\"navigation:463\";s:19:\"------ Image import\";s:14:\"navigation:538\";s:18:\"------ Newsletters\";s:14:\"navigation:546\";s:20:\"-------- Sent issues\";s:14:\"navigation:541\";s:21:\"-------- Draft issues\";s:14:\"navigation:544\";s:20:\"-------- Newsletters\";s:14:\"navigation:548\";s:22:\"-------- Subscriptions\";s:13:\"navigation:42\";s:20:\"------ Post settings\";s:13:\"navigation:43\";s:21:\"------ RSS publishing\";s:13:\"navigation:94\";s:15:\"------ Taxonomy\";s:13:\"navigation:17\";s:18:\"---- Site building\";s:13:\"navigation:25\";s:13:\"------ Blocks\";s:14:\"navigation:424\";s:20:\"------ Bulk Exporter\";s:13:\"navigation:38\";s:12:\"------ Menus\";s:14:\"navigation:282\";s:18:\"-------- Main Menu\";s:13:\"navigation:89\";s:19:\"-------- Navigation\";s:13:\"navigation:90\";s:22:\"-------- Primary links\";s:14:\"navigation:495\";s:19:\"-------- Right Menu\";s:13:\"navigation:91\";s:24:\"-------- Secondary links\";s:14:\"navigation:387\";s:18:\"------ Mini panels\";s:13:\"navigation:39\";s:14:\"------ Modules\";s:14:\"navigation:412\";s:12:\"------ Pages\";s:14:\"navigation:360\";s:13:\"------ Panels\";s:13:\"navigation:49\";s:13:\"------ Themes\";s:14:\"navigation:335\";s:15:\"------ Triggers\";s:14:\"navigation:501\";s:18:\"------ URL aliases\";s:14:\"navigation:257\";s:12:\"------ Views\";s:13:\"navigation:18\";s:23:\"---- Site configuration\";s:13:\"navigation:23\";s:14:\"------ Actions\";s:14:\"navigation:119\";s:26:\"------ Administration menu\";s:13:\"navigation:24\";s:27:\"------ Administration theme\";s:13:\"navigation:26\";s:17:\"------ Clean URLs\";s:13:\"navigation:30\";s:20:\"------ Date and time\";s:13:\"navigation:33\";s:22:\"------ Error reporting\";s:13:\"navigation:34\";s:18:\"------ File system\";s:13:\"navigation:35\";s:20:\"------ Image toolkit\";s:14:\"navigation:442\";s:13:\"------ Images\";s:13:\"navigation:36\";s:20:\"------ Input formats\";s:13:\"navigation:37\";s:25:\"------ Logging and alerts\";s:14:\"navigation:100\";s:25:\"-------- Database logging\";s:14:\"navigation:245\";s:17:\"------ Nice Menus\";s:13:\"navigation:40\";s:18:\"------ Performance\";s:14:\"navigation:120\";s:22:\"------ Search settings\";s:14:\"navigation:539\";s:17:\"------ Simplenews\";s:14:\"navigation:542\";s:16:\"-------- General\";s:14:\"navigation:543\";s:19:\"-------- Newsletter\";s:14:\"navigation:547\";s:21:\"-------- Subscription\";s:14:\"navigation:545\";s:18:\"-------- Send mail\";s:13:\"navigation:46\";s:23:\"------ Site information\";s:13:\"navigation:47\";s:23:\"------ Site maintenance\";s:14:\"navigation:246\";s:15:\"------ Site map\";s:13:\"navigation:20\";s:20:\"---- User management\";s:13:\"navigation:22\";s:19:\"------ Access rules\";s:13:\"navigation:41\";s:18:\"------ Permissions\";s:13:\"navigation:45\";s:12:\"------ Roles\";s:13:\"navigation:50\";s:20:\"------ User settings\";s:13:\"navigation:51\";s:12:\"------ Users\";s:13:\"navigation:16\";s:12:\"---- Reports\";s:13:\"navigation:93\";s:25:\"------ Recent log entries\";s:13:\"navigation:96\";s:33:\"------ Top \'access denied\' errors\";s:13:\"navigation:97\";s:34:\"------ Top \'page not found\' errors\";s:14:\"navigation:121\";s:25:\"------ Top search phrases\";s:14:\"navigation:105\";s:24:\"------ Available updates\";s:13:\"navigation:48\";s:20:\"------ Status report\";s:13:\"navigation:15\";s:9:\"---- Help\";s:12:\"navigation:4\";s:10:\"-- Log out\";s:15:\"primary-links:0\";s:15:\"<Primary links>\";s:17:\"menu-right-menu:0\";s:12:\"<Right Menu>\";s:19:\"menu-right-menu:496\";s:28:\"-- Financial Calculator Tool\";s:19:\"menu-right-menu:497\";s:21:\"-- News Story Library\";s:19:\"menu-right-menu:498\";s:14:\"-- Latest News\";s:19:\"menu-right-menu:499\";s:25:\"-- SREC Management Portal\";s:17:\"secondary-links:0\";s:17:\"<Secondary links>\";}s:12:\"#description\";s:156:\"The maximum depth for an item and all its children is fixed at 9. Some menu items may not be available as parents if selecting them would exceed this limit.\";s:11:\"#attributes\";a:1:{s:5:\"class\";s:17:\"menu-title-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:107:\"Optional. In the menu, the heavier items will sink and the lighter items will be positioned nearer the top.\";}}s:7:\"#submit\";a:1:{i:0;s:21:\"menu_node_form_submit\";}s:4:\"path\";a:10:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:17:\"URL path settings\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:0;s:7:\"#access\";b:1;s:7:\"#weight\";i:30;s:4:\"path\";a:6:{s:5:\"#type\";s:9:\"textfield\";s:14:\"#default_value\";s:57:\"understanding-renewable-energy-credits-and-certificates-0\";s:10:\"#maxlength\";i:128;s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:12:\"#description\";s:207:\"Optionally specify an alternative URL by which this node 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\";s:2:\"17\";}s:22:\"pathauto_perform_alias\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:15:\"Automatic alias\";s:14:\"#default_value\";b:1;s:12:\"#description\";s:238:\"An alias will be generated for you. If you wish to create your own alias below, uncheck this option. To control the format of the generated aliases, see the <a href=\"/~uspvinc/main2/admin/build/path/pathauto\">automated alias settings</a>.\";s:7:\"#weight\";i:-1;}s:9:\"old_alias\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:57:\"understanding-renewable-energy-credits-and-certificates-0\";}}s:11:\"#pre_render\";a:1:{i:0;s:27:\"content_alter_extra_weights\";}s:21:\"#content_extra_fields\";a:6:{s:5:\"title\";a:3:{s:5:\"label\";s:5:\"Title\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:-5;}s:10:\"body_field\";a:4:{s:5:\"label\";s:4:\"Body\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:0;s:4:\"view\";s:4:\"body\";}s:20:\"revision_information\";a:3:{s:5:\"label\";s:20:\"Revision information\";s:11:\"description\";s:17:\"Node module form.\";s:6:\"weight\";i:20;}s:16:\"comment_settings\";a:3:{s:5:\"label\";s:16:\"Comment settings\";s:11:\"description\";s:20:\"Comment module form.\";s:6:\"weight\";i:30;}s:4:\"menu\";a:3:{s:5:\"label\";s:13:\"Menu settings\";s:11:\"description\";s:17:\"Menu module form.\";s:6:\"weight\";i:-2;}s:4:\"path\";a:3:{s:5:\"label\";s:13:\"Path settings\";s:11:\"description\";s:17:\"Path module form.\";s:6:\"weight\";i:30;}}s:12:\"#cache_token\";s:32:\"ea05954e6208c2bed552f97e30d1dad3\";}',1285893288,1285871688,'',1),('form_form-378a7e73845dc228d8bcfe7e98680749','a:41:{s:7:\"#prefix\";s:3869:\"<div class=\"preview\"><h3>Preview trimmed version</h3>  <div class=\"node\">\n        <h2 class=\"title\"><a href=\"/~uspvinc/main2/understanding-renewable-energy-credits-and-certificates-0\">Understanding Renewable Energy Credits and Certificates</a></h2>    <div class=\"submitted\"></div>\n    <div class=\"taxonomy\"></div>\n    <div class=\"content\"><p>Twenty-eight states plus the District of Columbia have enacted Renewable Energy Portfolio Standards (RPS) legislation to accelerate the adoption of renewable energy sources for the production of electricity.  Maryland’s program requires electricity suppliers to derive a defined percentage of their total electrical production from renewable sources.</p>\n</div>\n      </div>\n<h3>Preview full version</h3>  <div class=\"node\">\n        <h2 class=\"title\"><a href=\"/~uspvinc/main2/understanding-renewable-energy-credits-and-certificates-0\">Understanding Renewable Energy Credits and Certificates</a></h2>    <div class=\"submitted\"></div>\n    <div class=\"taxonomy\"></div>\n    <div class=\"content\"><p>Twenty-eight states plus the District of Columbia have enacted Renewable Energy Portfolio Standards (RPS) legislation to accelerate the adoption of renewable energy sources for the production of electricity.  Maryland’s program requires electricity suppliers to derive a defined percentage of their total electrical production from renewable sources.  Companies that fail to meet the Standard must either purchase Renewable Energy Credits (RECs) from state-certified Renewable Energy Facilities (REFs) sufficient to meet the requirement or pay Compliance Fees to a State fund that will be used to encourage production of additional renewable electricity capacity.</p>\n<p>Unlike many state RPS programs, Maryland requires that solar electrical production be a part of each electrical supplier’s portfolio.  In 2008, the first year with a specific solar requirement, suppliers must produce .005% of their electricity from solar.  The percentage to be provided by solar sources increases steadily each year through 2022 when a full 2% of Maryland’s electricity needs are to be met by solar production.  The Compliance Fee for companies that do not meet the standard or purchase RECs equal to the Standard is $0.45 per kWh in 2008 (equivalent to $450 per mWh or REC energy equivalent).  The Compliance Fee declines on a per kWh basis every other year by $0.05 per kWh while the amount of the solar production requirement increases.  Thus, in 2010 the Compliance Fee is $0.40 per kWh, $0.35 in 2012 and by 2023 is reduced to $0.05 per kWh, where it remains.  </p>\n<p>Any Solar REF in Maryland that wishes to create RECs based on its production must first offer the RECs to an electricity supplier subject to the RPS.  Suppliers who purchase RECs from Maryland solar producers must do so under a contract that covers the expected production of the REF for a minimum of 15 years, although the price per REC may vary.  However, REFs smaller than 10 kW must be paid the full value of the 15-year contract in a single advance payment under any such agreement.</p>\n<p>While the value of Solar RECs produced by Maryland facilities is unclear at this time and the willingness of electricity suppliers to pre-pay small facilities may be limited, the opportunity for small producers to monetize part of their investment is significant. </p>\n<p>There is likely to be an advantage to producers who participate in the REC program earlier than others both because of the declining Compliance Fees contained in the legislation and the increased supply of available RECs from new facilities certain to come online in future months and years.</p>\n<p>To sign-up or learn more about this program, call Fred Ugast at 240-344-2657 or send an email to <a href=\"mailto:fred.ugast@uspvinc.com\">fred.ugast@uspvinc.com</a>.</p>\n</div>\n      </div>\n</div>\n\";s:3:\"#id\";s:9:\"node-form\";s:3:\"nid\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:2:\"17\";}s:3:\"vid\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:2:\"17\";}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:1285871679;}s:4:\"type\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:4:\"page\";}s:8:\"language\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:0:\"\";}s:7:\"changed\";a:2:{s:5:\"#type\";s:6:\"hidden\";s:14:\"#default_value\";s:10:\"1285871679\";}s:5:\"title\";a:6:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:5:\"Title\";s:9:\"#required\";b:1;s:14:\"#default_value\";s:55:\"Understanding Renewable Energy Credits and Certificates\";s:10:\"#maxlength\";i:255;s:7:\"#weight\";i:-5;}s:10:\"body_field\";a:7:{s:12:\"#after_build\";a:2:{i:0;s:14:\"node_teaser_js\";i:1;s:26:\"node_teaser_include_verify\";}s:7:\"#prefix\";s:32:\"<div class=\"body-field-wrapper\">\";s:7:\"#suffix\";s:6:\"</div>\";s:9:\"teaser_js\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:5:\"#rows\";i:10;s:7:\"#teaser\";s:9:\"edit-body\";s:16:\"#teaser_checkbox\";s:19:\"edit-teaser-include\";s:9:\"#disabled\";b:1;}s:14:\"teaser_include\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:25:\"Show summary in full view\";s:14:\"#default_value\";b:1;s:7:\"#prefix\";s:29:\"<div class=\"teaser-checkbox\">\";s:7:\"#suffix\";s:6:\"</div>\";}s:4:\"body\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:4:\"Body\";s:14:\"#default_value\";s:2758:\"Twenty-eight states plus the District of Columbia have enacted Renewable Energy Portfolio Standards (RPS) legislation to accelerate the adoption of renewable energy sources for the production of electricity.  Maryland’s program requires electricity suppliers to derive a defined percentage of their total electrical production from renewable sources.  Companies that fail to meet the Standard must either purchase Renewable Energy Credits (RECs) from state-certified Renewable Energy Facilities (REFs) sufficient to meet the requirement or pay Compliance Fees to a State fund that will be used to encourage production of additional renewable electricity capacity.\r\n\r\n \r\n\r\nUnlike many state RPS programs, Maryland requires that solar electrical production be a part of each electrical supplier’s portfolio.  In 2008, the first year with a specific solar requirement, suppliers must produce .005% of their electricity from solar.  The percentage to be provided by solar sources increases steadily each year through 2022 when a full 2% of Maryland’s electricity needs are to be met by solar production.  The Compliance Fee for companies that do not meet the standard or purchase RECs equal to the Standard is $0.45 per kWh in 2008 (equivalent to $450 per mWh or REC energy equivalent).  The Compliance Fee declines on a per kWh basis every other year by $0.05 per kWh while the amount of the solar production requirement increases.  Thus, in 2010 the Compliance Fee is $0.40 per kWh, $0.35 in 2012 and by 2023 is reduced to $0.05 per kWh, where it remains.  \r\n\r\n \r\n\r\nAny Solar REF in Maryland that wishes to create RECs based on its production must first offer the RECs to an electricity supplier subject to the RPS.  Suppliers who purchase RECs from Maryland solar producers must do so under a contract that covers the expected production of the REF for a minimum of 15 years, although the price per REC may vary.  However, REFs smaller than 10 kW must be paid the full value of the 15-year contract in a single advance payment under any such agreement.\r\n\r\n \r\n\r\nWhile the value of Solar RECs produced by Maryland facilities is unclear at this time and the willingness of electricity suppliers to pre-pay small facilities may be limited, the opportunity for small producers to monetize part of their investment is significant. \r\n\r\n \r\n\r\nThere is likely to be an advantage to producers who participate in the REC program earlier than others both because of the declining Compliance Fees contained in the legislation and the increased supply of available RECs from new facilities certain to come online in future months and years.\r\n<hr>\r\nTo sign-up or learn more about this program, call Fred Ugast at 240-344-2657 or send an email to fred.ugast@uspvinc.com.\";s:5:\"#rows\";i:20;s:9:\"#required\";b:0;}s:6:\"format\";a:9:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:12:\"Input format\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:7:\"#weight\";N;s:17:\"#element_validate\";a:1:{i:0;s:20:\"filter_form_validate\";}i:1;a:7:{s:5:\"#type\";s:5:\"radio\";s:6:\"#title\";s:13:\"Filtered HTML\";s:14:\"#default_value\";s:1:\"1\";s:13:\"#return_value\";s:1:\"1\";s:8:\"#parents\";a:1:{i:0;s:6:\"format\";}s:12:\"#description\";s:306:\"<ul class=\"tips\"><li>Web page addresses and e-mail addresses turn into links automatically.</li><li>Allowed HTML tags: &lt;a&gt; &lt;em&gt; &lt;strong&gt; &lt;cite&gt; &lt;code&gt; &lt;ul&gt; &lt;ol&gt; &lt;li&gt; &lt;dl&gt; &lt;dt&gt; &lt;dd&gt;</li><li>Lines and paragraphs break automatically.</li></ul>\";s:3:\"#id\";s:13:\"edit-format-1\";}i:2;a:7:{s:5:\"#type\";s:5:\"radio\";s:6:\"#title\";s:9:\"Full HTML\";s:14:\"#default_value\";s:1:\"1\";s:13:\"#return_value\";s:1:\"2\";s:8:\"#parents\";a:1:{i:0;s:6:\"format\";}s:12:\"#description\";s:151:\"<ul class=\"tips\"><li>Web page addresses and e-mail addresses turn into links automatically.</li><li>Lines and paragraphs break automatically.</li></ul>\";s:3:\"#id\";s:13:\"edit-format-2\";}i:3;a:1:{s:6:\"#value\";s:90:\"<p><a href=\"/~uspvinc/main2/filter/tips\">More information about formatting options</a></p>\";}}}s:5:\"#node\";O:8:\"stdClass\":46:{s:3:\"nid\";s:2:\"17\";s:3:\"vid\";s:2:\"17\";s:3:\"uid\";s:1:\"1\";s:7:\"created\";i:1285871679;s:4:\"type\";s:4:\"page\";s:8:\"language\";s:0:\"\";s:7:\"changed\";s:10:\"1285871679\";s:5:\"title\";s:55:\"Understanding Renewable Energy Credits and Certificates\";s:9:\"teaser_js\";s:0:\"\";s:14:\"teaser_include\";i:1;s:4:\"body\";s:2758:\"Twenty-eight states plus the District of Columbia have enacted Renewable Energy Portfolio Standards (RPS) legislation to accelerate the adoption of renewable energy sources for the production of electricity.  Maryland’s program requires electricity suppliers to derive a defined percentage of their total electrical production from renewable sources.  Companies that fail to meet the Standard must either purchase Renewable Energy Credits (RECs) from state-certified Renewable Energy Facilities (REFs) sufficient to meet the requirement or pay Compliance Fees to a State fund that will be used to encourage production of additional renewable electricity capacity.\r\n\r\n \r\n\r\nUnlike many state RPS programs, Maryland requires that solar electrical production be a part of each electrical supplier’s portfolio.  In 2008, the first year with a specific solar requirement, suppliers must produce .005% of their electricity from solar.  The percentage to be provided by solar sources increases steadily each year through 2022 when a full 2% of Maryland’s electricity needs are to be met by solar production.  The Compliance Fee for companies that do not meet the standard or purchase RECs equal to the Standard is $0.45 per kWh in 2008 (equivalent to $450 per mWh or REC energy equivalent).  The Compliance Fee declines on a per kWh basis every other year by $0.05 per kWh while the amount of the solar production requirement increases.  Thus, in 2010 the Compliance Fee is $0.40 per kWh, $0.35 in 2012 and by 2023 is reduced to $0.05 per kWh, where it remains.  \r\n\r\n \r\n\r\nAny Solar REF in Maryland that wishes to create RECs based on its production must first offer the RECs to an electricity supplier subject to the RPS.  Suppliers who purchase RECs from Maryland solar producers must do so under a contract that covers the expected production of the REF for a minimum of 15 years, although the price per REC may vary.  However, REFs smaller than 10 kW must be paid the full value of the 15-year contract in a single advance payment under any such agreement.\r\n\r\n \r\n\r\nWhile the value of Solar RECs produced by Maryland facilities is unclear at this time and the willingness of electricity suppliers to pre-pay small facilities may be limited, the opportunity for small producers to monetize part of their investment is significant. \r\n\r\n \r\n\r\nThere is likely to be an advantage to producers who participate in the REC program earlier than others both because of the declining Compliance Fees contained in the legislation and the increased supply of available RECs from new facilities certain to come online in future months and years.\r\n<hr>\r\nTo sign-up or learn more about this program, call Fred Ugast at 240-344-2657 or send an email to fred.ugast@uspvinc.com.\";s:6:\"format\";s:1:\"1\";s:8:\"revision\";i:0;s:3:\"log\";s:0:\"\";s:4:\"name\";s:5:\"admin\";s:4:\"date\";s:25:\"2010-10-01 02:34:39 +0800\";s:6:\"status\";i:1;s:7:\"promote\";i:0;s:6:\"sticky\";i:0;s:6:\"submit\";s:4:\"Save\";s:2:\"op\";s:7:\"Preview\";s:7:\"preview\";s:7:\"Preview\";s:6:\"delete\";s:6:\"Delete\";s:13:\"form_build_id\";s:37:\"form-b3236144e5e719a4016714762159e9b9\";s:10:\"form_token\";s:32:\"69ee9cfa6b6366390575effcb3429c15\";s:7:\"form_id\";s:14:\"page_node_form\";s:7:\"comment\";s:1:\"0\";s:4:\"menu\";a:13:{s:4:\"mlid\";i:0;s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";i:0;s:12:\"has_children\";i:0;s:10:\"customized\";i:0;s:7:\"options\";a:0:{}s:8:\"expanded\";i:0;s:18:\"parent_depth_limit\";i:8;s:10:\"link_title\";s:0:\"\";s:6:\"parent\";s:15:\"primary-links:0\";s:6:\"weight\";s:1:\"0\";s:4:\"plid\";s:1:\"0\";s:9:\"menu_name\";s:13:\"primary-links\";}s:4:\"path\";s:57:\"understanding-renewable-energy-credits-and-certificates-0\";s:3:\"pid\";s:2:\"17\";s:22:\"pathauto_perform_alias\";i:1;s:9:\"old_alias\";s:57:\"understanding-renewable-energy-credits-and-certificates-0\";s:6:\"teaser\";s:352:\"Twenty-eight states plus the District of Columbia have enacted Renewable Energy Portfolio Standards (RPS) legislation to accelerate the adoption of renewable energy sources for the production of electricity.  Maryland’s program requires electricity suppliers to derive a defined percentage of their total electrical production from renewable sources.\";s:9:\"validated\";b:1;s:8:\"moderate\";s:1:\"0\";s:4:\"tnid\";s:1:\"0\";s:9:\"translate\";s:1:\"0\";s:12:\"revision_uid\";s:1:\"1\";s:18:\"revision_timestamp\";s:10:\"1285871679\";s:7:\"picture\";s:0:\"\";s:4:\"data\";s:6:\"a:0:{}\";s:22:\"last_comment_timestamp\";s:10:\"1285871679\";s:17:\"last_comment_name\";N;s:13:\"comment_count\";s:1:\"0\";s:8:\"taxonomy\";a:0:{}s:10:\"build_mode\";i:1;}s:20:\"revision_information\";a:7:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:20:\"Revision information\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:7:\"#weight\";i:20;s:8:\"revision\";a:4:{s:7:\"#access\";b:1;s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:19:\"Create new revision\";s:14:\"#default_value\";i:0;}s:3:\"log\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:11:\"Log message\";s:14:\"#default_value\";s:0:\"\";s:5:\"#rows\";i:2;s:12:\"#description\";s:104:\"An explanation of the additions or updates being made to help other authors understand your motivations.\";}}s:6:\"author\";a:8:{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:7:\"#weight\";i:20;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:35:\"Leave blank for <em>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:91:\"Format: <em>2010-10-01 02:34:39 +0800</em>. Leave blank to use the time of form submission.\";s:14:\"#default_value\";s:25:\"2010-10-01 02:34:39 +0800\";}}s:7:\"options\";a:9:{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:7:\"#weight\";i:25;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: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\";i:0;}}s:7:\"buttons\";a:3:{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:16:\"node_form_submit\";}}s:7:\"preview\";a:4:{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:6:\"#theme\";a:2:{i:0;s:14:\"page_node_form\";i:1;s:9:\"node_form\";}s:11:\"#parameters\";a:3:{i:0;s:14:\"page_node_form\";i:1;a:8:{s:7:\"storage\";N;s:9:\"submitted\";b:1;s:6:\"values\";a:32:{s:3:\"nid\";s:2:\"17\";s:3:\"vid\";s:2:\"17\";s:3:\"uid\";s:1:\"1\";s:7:\"created\";s:10:\"1285871679\";s:4:\"type\";s:4:\"page\";s:8:\"language\";s:0:\"\";s:7:\"changed\";s:10:\"1285871679\";s:5:\"title\";s:55:\"Understanding Renewable Energy Credits and Certificates\";s:9:\"teaser_js\";s:0:\"\";s:14:\"teaser_include\";i:1;s:4:\"body\";s:2758:\"Twenty-eight states plus the District of Columbia have enacted Renewable Energy Portfolio Standards (RPS) legislation to accelerate the adoption of renewable energy sources for the production of electricity.  Maryland’s program requires electricity suppliers to derive a defined percentage of their total electrical production from renewable sources.  Companies that fail to meet the Standard must either purchase Renewable Energy Credits (RECs) from state-certified Renewable Energy Facilities (REFs) sufficient to meet the requirement or pay Compliance Fees to a State fund that will be used to encourage production of additional renewable electricity capacity.\r\n\r\n \r\n\r\nUnlike many state RPS programs, Maryland requires that solar electrical production be a part of each electrical supplier’s portfolio.  In 2008, the first year with a specific solar requirement, suppliers must produce .005% of their electricity from solar.  The percentage to be provided by solar sources increases steadily each year through 2022 when a full 2% of Maryland’s electricity needs are to be met by solar production.  The Compliance Fee for companies that do not meet the standard or purchase RECs equal to the Standard is $0.45 per kWh in 2008 (equivalent to $450 per mWh or REC energy equivalent).  The Compliance Fee declines on a per kWh basis every other year by $0.05 per kWh while the amount of the solar production requirement increases.  Thus, in 2010 the Compliance Fee is $0.40 per kWh, $0.35 in 2012 and by 2023 is reduced to $0.05 per kWh, where it remains.  \r\n\r\n \r\n\r\nAny Solar REF in Maryland that wishes to create RECs based on its production must first offer the RECs to an electricity supplier subject to the RPS.  Suppliers who purchase RECs from Maryland solar producers must do so under a contract that covers the expected production of the REF for a minimum of 15 years, although the price per REC may vary.  However, REFs smaller than 10 kW must be paid the full value of the 15-year contract in a single advance payment under any such agreement.\r\n\r\n \r\n\r\nWhile the value of Solar RECs produced by Maryland facilities is unclear at this time and the willingness of electricity suppliers to pre-pay small facilities may be limited, the opportunity for small producers to monetize part of their investment is significant. \r\n\r\n \r\n\r\nThere is likely to be an advantage to producers who participate in the REC program earlier than others both because of the declining Compliance Fees contained in the legislation and the increased supply of available RECs from new facilities certain to come online in future months and years.\r\n<hr>\r\nTo sign-up or learn more about this program, call Fred Ugast at 240-344-2657 or send an email to fred.ugast@uspvinc.com.\";s:6:\"format\";s:1:\"1\";s:8:\"revision\";i:0;s:3:\"log\";s:0:\"\";s:4:\"name\";s:5:\"admin\";s:4:\"date\";s:25:\"2010-10-01 02:34:39 +0800\";s:6:\"status\";i:1;s:7:\"promote\";i:0;s:6:\"sticky\";i:0;s:6:\"submit\";s:4:\"Save\";s:2:\"op\";s:7:\"Preview\";s:7:\"preview\";s:7:\"Preview\";s:6:\"delete\";s:6:\"Delete\";s:13:\"form_build_id\";s:37:\"form-b3236144e5e719a4016714762159e9b9\";s:10:\"form_token\";s:32:\"69ee9cfa6b6366390575effcb3429c15\";s:7:\"form_id\";s:14:\"page_node_form\";s:7:\"comment\";s:1:\"0\";s:4:\"menu\";a:13:{s:4:\"mlid\";i:0;s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";i:0;s:12:\"has_children\";i:0;s:10:\"customized\";i:0;s:7:\"options\";a:0:{}s:8:\"expanded\";i:0;s:18:\"parent_depth_limit\";i:8;s:10:\"link_title\";s:0:\"\";s:6:\"parent\";s:15:\"primary-links:0\";s:6:\"weight\";s:1:\"0\";s:4:\"plid\";s:1:\"0\";s:9:\"menu_name\";s:13:\"primary-links\";}s:4:\"path\";s:0:\"\";s:3:\"pid\";s:2:\"17\";s:22:\"pathauto_perform_alias\";i:1;s:9:\"old_alias\";s:57:\"understanding-renewable-energy-credits-and-certificates-0\";}s:14:\"clicked_button\";a:19:{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:5:\"#post\";a:16:{s:5:\"title\";s:55:\"Understanding Renewable Energy Credits and Certificates\";s:4:\"menu\";a:3:{s:10:\"link_title\";s:0:\"\";s:6:\"parent\";s:15:\"primary-links:0\";s:6:\"weight\";s:1:\"0\";}s:14:\"teaser_include\";s:1:\"1\";s:4:\"body\";s:2758:\"Twenty-eight states plus the District of Columbia have enacted Renewable Energy Portfolio Standards (RPS) legislation to accelerate the adoption of renewable energy sources for the production of electricity.  Maryland’s program requires electricity suppliers to derive a defined percentage of their total electrical production from renewable sources.  Companies that fail to meet the Standard must either purchase Renewable Energy Credits (RECs) from state-certified Renewable Energy Facilities (REFs) sufficient to meet the requirement or pay Compliance Fees to a State fund that will be used to encourage production of additional renewable electricity capacity.\r\n\r\n \r\n\r\nUnlike many state RPS programs, Maryland requires that solar electrical production be a part of each electrical supplier’s portfolio.  In 2008, the first year with a specific solar requirement, suppliers must produce .005% of their electricity from solar.  The percentage to be provided by solar sources increases steadily each year through 2022 when a full 2% of Maryland’s electricity needs are to be met by solar production.  The Compliance Fee for companies that do not meet the standard or purchase RECs equal to the Standard is $0.45 per kWh in 2008 (equivalent to $450 per mWh or REC energy equivalent).  The Compliance Fee declines on a per kWh basis every other year by $0.05 per kWh while the amount of the solar production requirement increases.  Thus, in 2010 the Compliance Fee is $0.40 per kWh, $0.35 in 2012 and by 2023 is reduced to $0.05 per kWh, where it remains.  \r\n\r\n \r\n\r\nAny Solar REF in Maryland that wishes to create RECs based on its production must first offer the RECs to an electricity supplier subject to the RPS.  Suppliers who purchase RECs from Maryland solar producers must do so under a contract that covers the expected production of the REF for a minimum of 15 years, although the price per REC may vary.  However, REFs smaller than 10 kW must be paid the full value of the 15-year contract in a single advance payment under any such agreement.\r\n\r\n \r\n\r\nWhile the value of Solar RECs produced by Maryland facilities is unclear at this time and the willingness of electricity suppliers to pre-pay small facilities may be limited, the opportunity for small producers to monetize part of their investment is significant. \r\n\r\n \r\n\r\nThere is likely to be an advantage to producers who participate in the REC program earlier than others both because of the declining Compliance Fees contained in the legislation and the increased supply of available RECs from new facilities certain to come online in future months and years.\r\n<hr>\r\nTo sign-up or learn more about this program, call Fred Ugast at 240-344-2657 or send an email to fred.ugast@uspvinc.com.\";s:6:\"format\";s:1:\"1\";s:7:\"changed\";s:10:\"1285871679\";s:13:\"form_build_id\";s:37:\"form-b3236144e5e719a4016714762159e9b9\";s:10:\"form_token\";s:32:\"69ee9cfa6b6366390575effcb3429c15\";s:7:\"form_id\";s:14:\"page_node_form\";s:3:\"log\";s:0:\"\";s:7:\"comment\";s:1:\"0\";s:22:\"pathauto_perform_alias\";s:1:\"1\";s:4:\"name\";s:5:\"admin\";s:4:\"date\";s:25:\"2010-10-01 02:34:39 +0800\";s:6:\"status\";s:1:\"1\";s:2:\"op\";s:7:\"Preview\";}s:11:\"#programmed\";b:0;s:5:\"#tree\";b:0;s:8:\"#parents\";a:1:{i:0;s:7:\"preview\";}s:14:\"#array_parents\";a:2:{i:0;s:7:\"buttons\";i:1;s:7:\"preview\";}s:10:\"#processed\";b:0;s:12:\"#description\";N;s:11:\"#attributes\";a:0:{}s:9:\"#required\";b:0;s:6:\"#input\";b:1;s:5:\"#name\";s:2:\"op\";s:12:\"#button_type\";s:6:\"submit\";s:25:\"#executes_submit_callback\";b:1;s:8:\"#process\";a:1:{i:0;s:16:\"form_expand_ahah\";}s:3:\"#id\";s:12:\"edit-preview\";}s:8:\"redirect\";N;s:4:\"node\";a:34:{s:3:\"nid\";s:2:\"17\";s:3:\"vid\";s:2:\"17\";s:3:\"uid\";s:1:\"1\";s:7:\"created\";i:1285871679;s:4:\"type\";s:4:\"page\";s:8:\"language\";s:0:\"\";s:7:\"changed\";s:10:\"1285871679\";s:5:\"title\";s:55:\"Understanding Renewable Energy Credits and Certificates\";s:9:\"teaser_js\";s:0:\"\";s:14:\"teaser_include\";i:1;s:4:\"body\";s:2758:\"Twenty-eight states plus the District of Columbia have enacted Renewable Energy Portfolio Standards (RPS) legislation to accelerate the adoption of renewable energy sources for the production of electricity.  Maryland’s program requires electricity suppliers to derive a defined percentage of their total electrical production from renewable sources.  Companies that fail to meet the Standard must either purchase Renewable Energy Credits (RECs) from state-certified Renewable Energy Facilities (REFs) sufficient to meet the requirement or pay Compliance Fees to a State fund that will be used to encourage production of additional renewable electricity capacity.\r\n\r\n \r\n\r\nUnlike many state RPS programs, Maryland requires that solar electrical production be a part of each electrical supplier’s portfolio.  In 2008, the first year with a specific solar requirement, suppliers must produce .005% of their electricity from solar.  The percentage to be provided by solar sources increases steadily each year through 2022 when a full 2% of Maryland’s electricity needs are to be met by solar production.  The Compliance Fee for companies that do not meet the standard or purchase RECs equal to the Standard is $0.45 per kWh in 2008 (equivalent to $450 per mWh or REC energy equivalent).  The Compliance Fee declines on a per kWh basis every other year by $0.05 per kWh while the amount of the solar production requirement increases.  Thus, in 2010 the Compliance Fee is $0.40 per kWh, $0.35 in 2012 and by 2023 is reduced to $0.05 per kWh, where it remains.  \r\n\r\n \r\n\r\nAny Solar REF in Maryland that wishes to create RECs based on its production must first offer the RECs to an electricity supplier subject to the RPS.  Suppliers who purchase RECs from Maryland solar producers must do so under a contract that covers the expected production of the REF for a minimum of 15 years, although the price per REC may vary.  However, REFs smaller than 10 kW must be paid the full value of the 15-year contract in a single advance payment under any such agreement.\r\n\r\n \r\n\r\nWhile the value of Solar RECs produced by Maryland facilities is unclear at this time and the willingness of electricity suppliers to pre-pay small facilities may be limited, the opportunity for small producers to monetize part of their investment is significant. \r\n\r\n \r\n\r\nThere is likely to be an advantage to producers who participate in the REC program earlier than others both because of the declining Compliance Fees contained in the legislation and the increased supply of available RECs from new facilities certain to come online in future months and years.\r\n<hr>\r\nTo sign-up or learn more about this program, call Fred Ugast at 240-344-2657 or send an email to fred.ugast@uspvinc.com.\";s:6:\"format\";s:1:\"1\";s:8:\"revision\";i:0;s:3:\"log\";s:0:\"\";s:4:\"name\";s:5:\"admin\";s:4:\"date\";s:25:\"2010-10-01 02:34:39 +0800\";s:6:\"status\";i:1;s:7:\"promote\";i:0;s:6:\"sticky\";i:0;s:6:\"submit\";s:4:\"Save\";s:2:\"op\";s:7:\"Preview\";s:7:\"preview\";s:7:\"Preview\";s:6:\"delete\";s:6:\"Delete\";s:13:\"form_build_id\";s:37:\"form-b3236144e5e719a4016714762159e9b9\";s:10:\"form_token\";s:32:\"69ee9cfa6b6366390575effcb3429c15\";s:7:\"form_id\";s:14:\"page_node_form\";s:7:\"comment\";s:1:\"0\";s:4:\"menu\";a:13:{s:4:\"mlid\";i:0;s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";i:0;s:12:\"has_children\";i:0;s:10:\"customized\";i:0;s:7:\"options\";a:0:{}s:8:\"expanded\";i:0;s:18:\"parent_depth_limit\";i:8;s:10:\"link_title\";s:0:\"\";s:6:\"parent\";s:15:\"primary-links:0\";s:6:\"weight\";s:1:\"0\";s:4:\"plid\";s:1:\"0\";s:9:\"menu_name\";s:13:\"primary-links\";}s:4:\"path\";s:0:\"\";s:3:\"pid\";s:2:\"17\";s:22:\"pathauto_perform_alias\";i:1;s:9:\"old_alias\";s:57:\"understanding-renewable-energy-credits-and-certificates-0\";s:6:\"teaser\";s:352:\"Twenty-eight states plus the District of Columbia have enacted Renewable Energy Portfolio Standards (RPS) legislation to accelerate the adoption of renewable energy sources for the production of electricity.  Maryland’s program requires electricity suppliers to derive a defined percentage of their total electrical production from renewable sources.\";s:9:\"validated\";b:1;}s:7:\"rebuild\";b:1;s:12:\"node_preview\";s:3869:\"<div class=\"preview\"><h3>Preview trimmed version</h3>  <div class=\"node\">\n        <h2 class=\"title\"><a href=\"/~uspvinc/main2/understanding-renewable-energy-credits-and-certificates-0\">Understanding Renewable Energy Credits and Certificates</a></h2>    <div class=\"submitted\"></div>\n    <div class=\"taxonomy\"></div>\n    <div class=\"content\"><p>Twenty-eight states plus the District of Columbia have enacted Renewable Energy Portfolio Standards (RPS) legislation to accelerate the adoption of renewable energy sources for the production of electricity.  Maryland’s program requires electricity suppliers to derive a defined percentage of their total electrical production from renewable sources.</p>\n</div>\n      </div>\n<h3>Preview full version</h3>  <div class=\"node\">\n        <h2 class=\"title\"><a href=\"/~uspvinc/main2/understanding-renewable-energy-credits-and-certificates-0\">Understanding Renewable Energy Credits and Certificates</a></h2>    <div class=\"submitted\"></div>\n    <div class=\"taxonomy\"></div>\n    <div class=\"content\"><p>Twenty-eight states plus the District of Columbia have enacted Renewable Energy Portfolio Standards (RPS) legislation to accelerate the adoption of renewable energy sources for the production of electricity.  Maryland’s program requires electricity suppliers to derive a defined percentage of their total electrical production from renewable sources.  Companies that fail to meet the Standard must either purchase Renewable Energy Credits (RECs) from state-certified Renewable Energy Facilities (REFs) sufficient to meet the requirement or pay Compliance Fees to a State fund that will be used to encourage production of additional renewable electricity capacity.</p>\n<p>Unlike many state RPS programs, Maryland requires that solar electrical production be a part of each electrical supplier’s portfolio.  In 2008, the first year with a specific solar requirement, suppliers must produce .005% of their electricity from solar.  The percentage to be provided by solar sources increases steadily each year through 2022 when a full 2% of Maryland’s electricity needs are to be met by solar production.  The Compliance Fee for companies that do not meet the standard or purchase RECs equal to the Standard is $0.45 per kWh in 2008 (equivalent to $450 per mWh or REC energy equivalent).  The Compliance Fee declines on a per kWh basis every other year by $0.05 per kWh while the amount of the solar production requirement increases.  Thus, in 2010 the Compliance Fee is $0.40 per kWh, $0.35 in 2012 and by 2023 is reduced to $0.05 per kWh, where it remains.  </p>\n<p>Any Solar REF in Maryland that wishes to create RECs based on its production must first offer the RECs to an electricity supplier subject to the RPS.  Suppliers who purchase RECs from Maryland solar producers must do so under a contract that covers the expected production of the REF for a minimum of 15 years, although the price per REC may vary.  However, REFs smaller than 10 kW must be paid the full value of the 15-year contract in a single advance payment under any such agreement.</p>\n<p>While the value of Solar RECs produced by Maryland facilities is unclear at this time and the willingness of electricity suppliers to pre-pay small facilities may be limited, the opportunity for small producers to monetize part of their investment is significant. </p>\n<p>There is likely to be an advantage to producers who participate in the REC program earlier than others both because of the declining Compliance Fees contained in the legislation and the increased supply of available RECs from new facilities certain to come online in future months and years.</p>\n<p>To sign-up or learn more about this program, call Fred Ugast at 240-344-2657 or send an email to <a href=\"mailto:fred.ugast@uspvinc.com\">fred.ugast@uspvinc.com</a>.</p>\n</div>\n      </div>\n</div>\n\";}i:2;O:8:\"stdClass\":29:{s:3:\"nid\";s:2:\"17\";s:4:\"type\";s:4:\"page\";s:8:\"language\";s:0:\"\";s:3:\"uid\";s:1:\"1\";s:6:\"status\";s:1:\"1\";s:7:\"created\";s:10:\"1285871679\";s:7:\"changed\";s:10:\"1285871679\";s:7:\"comment\";s:1:\"0\";s:7:\"promote\";s:1:\"0\";s:8:\"moderate\";s:1:\"0\";s:6:\"sticky\";s:1:\"0\";s:4:\"tnid\";s:1:\"0\";s:9:\"translate\";s:1:\"0\";s:3:\"vid\";s:2:\"17\";s:12:\"revision_uid\";s:1:\"1\";s:5:\"title\";s:55:\"Understanding Renewable Energy Credits and Certificates\";s:4:\"body\";s:2630:\"Twenty-eight states plus the District of Columbia have enacted Renewable Energy Portfolio Standards (RPS) legislation to accelerate the adoption of renewable energy sources for the production of electricity.  Maryland’s program requires electricity suppliers to derive a defined percentage of their total electrical production from renewable sources.  Companies that fail to meet the Standard must either purchase Renewable Energy Credits (RECs) from state-certified Renewable Energy Facilities (REFs) sufficient to meet the requirement or pay Compliance Fees to a State fund that will be used to encourage production of additional renewable electricity capacity.\r\n\r\n \r\n\r\nUnlike many state RPS programs, Maryland requires that solar electrical production be a part of each electrical supplier’s portfolio.  In 2008, the first year with a specific solar requirement, suppliers must produce .005% of their electricity from solar.  The percentage to be provided by solar sources increases steadily each year through 2022 when a full 2% of Maryland’s electricity needs are to be met by solar production.  The Compliance Fee for companies that do not meet the standard or purchase RECs equal to the Standard is $0.45 per kWh in 2008 (equivalent to $450 per mWh or REC energy equivalent).  The Compliance Fee declines on a per kWh basis every other year by $0.05 per kWh while the amount of the solar production requirement increases.  Thus, in 2010 the Compliance Fee is $0.40 per kWh, $0.35 in 2012 and by 2023 is reduced to $0.05 per kWh, where it remains.  \r\n\r\n \r\n\r\nAny Solar REF in Maryland that wishes to create RECs based on its production must first offer the RECs to an electricity supplier subject to the RPS.  Suppliers who purchase RECs from Maryland solar producers must do so under a contract that covers the expected production of the REF for a minimum of 15 years, although the price per REC may vary.  However, REFs smaller than 10 kW must be paid the full value of the 15-year contract in a single advance payment under any such agreement.\r\n\r\n \r\n\r\nWhile the value of Solar RECs produced by Maryland facilities is unclear at this time and the willingness of electricity suppliers to pre-pay small facilities may be limited, the opportunity for small producers to monetize part of their investment is significant. \r\n\r\n \r\n\r\nThere is likely to be an advantage to producers who participate in the REC program earlier than others both because of the declining Compliance Fees contained in the legislation and the increased supply of available RECs from new facilities certain to come online in future months and years.\";s:6:\"teaser\";s:352:\"Twenty-eight states plus the District of Columbia have enacted Renewable Energy Portfolio Standards (RPS) legislation to accelerate the adoption of renewable energy sources for the production of electricity.  Maryland’s program requires electricity suppliers to derive a defined percentage of their total electrical production from renewable sources.\";s:3:\"log\";s:0:\"\";s:18:\"revision_timestamp\";s:10:\"1285871679\";s:6:\"format\";s:1:\"1\";s:4:\"name\";s:5:\"admin\";s:7:\"picture\";s:0:\"\";s:4:\"data\";s:6:\"a:0:{}\";s:4:\"path\";s:57:\"understanding-renewable-energy-credits-and-certificates-0\";s:22:\"last_comment_timestamp\";s:10:\"1285871679\";s:17:\"last_comment_name\";N;s:13:\"comment_count\";s:1:\"0\";s:8:\"taxonomy\";a:0:{}}}s:9:\"#build_id\";s:37:\"form-378a7e73845dc228d8bcfe7e98680749\";s:5:\"#type\";s:4:\"form\";s:11:\"#programmed\";b:0;s:13:\"form_build_id\";a:4:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:37:\"form-378a7e73845dc228d8bcfe7e98680749\";s:3:\"#id\";s:37:\"form-378a7e73845dc228d8bcfe7e98680749\";s:5:\"#name\";s:13:\"form_build_id\";}s:6:\"#token\";s:14:\"page_node_form\";s:10:\"form_token\";a:3:{s:3:\"#id\";s:30:\"edit-page-node-form-form-token\";s:5:\"#type\";s:5:\"token\";s:14:\"#default_value\";s:32:\"69ee9cfa6b6366390575effcb3429c15\";}s:7:\"form_id\";a:3:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:14:\"page_node_form\";s:3:\"#id\";s:19:\"edit-page-node-form\";}s:12:\"#description\";N;s:11:\"#attributes\";a:0:{}s:9:\"#required\";b:0;s:5:\"#tree\";b:0;s:8:\"#parents\";a:0:{}s:7:\"#method\";s:4:\"post\";s:7:\"#action\";s:28:\"/~uspvinc/main2/node/17/edit\";s:16:\"comment_settings\";a:7:{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:7:\"#weight\";i:30;s:7:\"comment\";a:4:{s:5:\"#type\";s:6:\"radios\";s:8:\"#parents\";a:1:{i:0;s:7:\"comment\";}s:14:\"#default_value\";s:1:\"0\";s:8:\"#options\";a:3:{i:0;s:8:\"Disabled\";i:1;s:9:\"Read only\";i:2;s:10:\"Read/Write\";}}}s:6:\"#cache\";b:1;s:4:\"menu\";a:20:{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:5:\"#tree\";b:1;s:7:\"#weight\";i:-2;s:11:\"#attributes\";a:1:{s:5:\"class\";s:14:\"menu-item-form\";}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:0;}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:5:\"#item\";a:13:{s:4:\"mlid\";i:0;s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";i:0;s:12:\"has_children\";i:0;s:10:\"customized\";i:0;s:7:\"options\";a:0:{}s:8:\"expanded\";i:0;s:18:\"parent_depth_limit\";i:8;s:10:\"link_title\";s:0:\"\";s:6:\"parent\";s:15:\"primary-links:0\";s:6:\"weight\";s:1:\"0\";s:4:\"plid\";s:1:\"0\";s:9:\"menu_name\";s:13:\"primary-links\";}s:10:\"link_title\";a:5:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:15:\"Menu link title\";s:14:\"#default_value\";s:0:\"\";s:12:\"#description\";s:133:\"The link text corresponding to this item that should appear in the menu. Leave blank if you do not wish to add this post to the menu.\";s:9:\"#required\";b:0;}s:6:\"parent\";a:6:{s:5:\"#type\";s:6:\"select\";s:6:\"#title\";s:11:\"Parent item\";s:14:\"#default_value\";s:15:\"primary-links:0\";s:8:\"#options\";a:96:{s:16:\"menu-main-menu:0\";s:11:\"<Main Menu>\";s:18:\"menu-main-menu:283\";s:8:\"-- about\";s:18:\"menu-main-menu:285\";s:11:\"-- services\";s:18:\"menu-main-menu:284\";s:12:\"-- resources\";s:18:\"menu-main-menu:286\";s:17:\"-- special offers\";s:12:\"navigation:0\";s:12:\"<Navigation>\";s:12:\"navigation:9\";s:26:\"-- Compose tips (disabled)\";s:14:\"navigation:461\";s:29:\"-- Image galleries (disabled)\";s:13:\"navigation:21\";s:13:\"-- My account\";s:14:\"navigation:114\";s:20:\"-- Search (disabled)\";s:14:\"navigation:244\";s:22:\"-- Site map (disabled)\";s:13:\"navigation:11\";s:17:\"-- Create content\";s:14:\"navigation:476\";s:11:\"---- Banner\";s:14:\"navigation:441\";s:10:\"---- Image\";s:14:\"navigation:289\";s:21:\"---- Newsletter issue\";s:14:\"navigation:106\";s:9:\"---- Page\";s:14:\"navigation:388\";s:10:\"---- Panel\";s:14:\"navigation:107\";s:10:\"---- Story\";s:12:\"navigation:2\";s:13:\"-- Administer\";s:13:\"navigation:10\";s:23:\"---- Content management\";s:13:\"navigation:27\";s:15:\"------ Comments\";s:13:\"navigation:28\";s:14:\"------ Content\";s:13:\"navigation:29\";s:20:\"------ Content types\";s:14:\"navigation:462\";s:22:\"------ Image galleries\";s:14:\"navigation:463\";s:19:\"------ Image import\";s:14:\"navigation:538\";s:18:\"------ Newsletters\";s:14:\"navigation:546\";s:20:\"-------- Sent issues\";s:14:\"navigation:541\";s:2
