diff --git a/CRM/Core/BAO/File.php b/CRM/Core/BAO/File.php index 424d40682f71..360a1b24ce08 100644 --- a/CRM/Core/BAO/File.php +++ b/CRM/Core/BAO/File.php @@ -40,6 +40,27 @@ class CRM_Core_BAO_File extends CRM_Core_DAO_File { static $_signableFields = array('entityTable', 'entityID', 'fileID'); + /** + * Takes an associative array and creates a File object. + * + * @param array $params + * (reference ) an assoc array of name/value pairs. + * + * @return CRM_Core_BAO_File + */ + public static function create($params) { + $fileDAO = new CRM_Core_DAO_File(); + $fileDAO->copyValues($params); + + if (empty($params['id']) && empty($params['created_id'])) { + $fileDAO->created_id = CRM_Core_Session::getLoggedInContactID(); + } + + $fileDAO->save(); + + return $fileDAO; + } + /** * @param int $fileID * @param int $entityID diff --git a/CRM/Core/DAO/AllCoreTables.data.php b/CRM/Core/DAO/AllCoreTables.data.php index e420a2d2264d..4f25998aa3d2 100644 --- a/CRM/Core/DAO/AllCoreTables.data.php +++ b/CRM/Core/DAO/AllCoreTables.data.php @@ -11,8 +11,8 @@ 'name' => 'Extension', 'class' => 'CRM_Core_DAO_Extension', 'table' => 'civicrm_extension', - ) , - 'CRM_Core_DAO_LocationType' => array( + ], + 'CRM_Core_DAO_LocationType' => [ 'name' => 'LocationType', 'class' => 'CRM_Core_DAO_LocationType', 'table' => 'civicrm_location_type', @@ -286,13 +286,13 @@ 'name' => 'Email', 'class' => 'CRM_Core_DAO_Email', 'table' => 'civicrm_email', - ) , - 'CRM_Core_DAO_File' => array( + ], + 'CRM_Core_DAO_File' => [ 'name' => 'File', 'class' => 'CRM_Core_DAO_File', 'table' => 'civicrm_file', - ) , - 'CRM_Core_DAO_IM' => array( + ], + 'CRM_Core_DAO_IM' => [ 'name' => 'IM', 'class' => 'CRM_Core_DAO_IM', 'table' => 'civicrm_im', @@ -526,13 +526,13 @@ 'name' => 'Discount', 'class' => 'CRM_Core_DAO_Discount', 'table' => 'civicrm_discount', - ) , - 'CRM_Core_DAO_EntityFile' => array( + ], + 'CRM_Core_DAO_EntityFile' => [ 'name' => 'EntityFile', 'class' => 'CRM_Core_DAO_EntityFile', 'table' => 'civicrm_entity_file', - ) , - 'CRM_Core_DAO_EntityTag' => array( + ], + 'CRM_Core_DAO_EntityTag' => [ 'name' => 'EntityTag', 'class' => 'CRM_Core_DAO_EntityTag', 'table' => 'civicrm_entity_tag', diff --git a/CRM/Core/DAO/File.php b/CRM/Core/DAO/File.php index 107d9aad9b25..6aacb72d49ba 100644 --- a/CRM/Core/DAO/File.php +++ b/CRM/Core/DAO/File.php @@ -6,7 +6,7 @@ * * Generated from xml/schema/CRM/Core/File.xml * DO NOT EDIT. Generated by CRM_Core_CodeGen - * (GenCodeChecksum:c0230af2b9234e9f83dca829a0490cf3) + * (GenCodeChecksum:7fd8d2643aa05e33a38983f719c09111) */ /** @@ -83,6 +83,7 @@ class CRM_Core_DAO_File extends CRM_Core_DAO { * @var int unsigned */ public $created_id; + /** * Class constructor. */ @@ -97,14 +98,15 @@ public function __construct() { * @return array * [CRM_Core_Reference_Interface] */ - static function getReferenceColumns() { + public static function getReferenceColumns() { if (!isset(Civi::$statics[__CLASS__]['links'])) { Civi::$statics[__CLASS__]['links'] = static ::createReferenceColumns(__CLASS__); - Civi::$statics[__CLASS__]['links'][] = new CRM_Core_Reference_Basic(self::getTableName() , 'created_id', 'civicrm_contact', 'id'); + Civi::$statics[__CLASS__]['links'][] = new CRM_Core_Reference_Basic(self::getTableName(), 'created_id', 'civicrm_contact', 'id'); CRM_Core_DAO_AllCoreTables::invoke(__CLASS__, 'links_callback', Civi::$statics[__CLASS__]['links']); } return Civi::$statics[__CLASS__]['links']; } + /** * Returns all the column names of this table * @@ -193,11 +195,12 @@ public static function &fields() { 'created_id' => [ 'name' => 'created_id', 'type' => CRM_Utils_Type::T_INT, - 'title' => ts('Created By Contact ID') , + 'title' => ts('Created By Contact ID'), 'description' => 'FK to civicrm_contact, who uploaded this file', 'table_name' => 'civicrm_file', 'entity' => 'File', 'bao' => 'CRM_Core_BAO_File', + 'localizable' => 0, 'FKClassName' => 'CRM_Contact_DAO_Contact', ], ]; diff --git a/CRM/Upgrade/Incremental/php/FiveThree.php b/CRM/Upgrade/Incremental/php/FiveThree.php index 3be83e574220..95a737919cc3 100644 --- a/CRM/Upgrade/Incremental/php/FiveThree.php +++ b/CRM/Upgrade/Incremental/php/FiveThree.php @@ -61,6 +61,32 @@ public function setPostUpgradeMessage(&$postUpgradeMessage, $rev) { // } } + /** + * Upgrade function. + * + * @param string $rev + */ + public function upgrade_5_3_alpha1($rev) { + $this->addTask('CRM-19948 - Add created_id column to civicrm_file', 'addFileCreatedIdColumn'); + } + + public static function addFileCreatedIdColumn(CRM_Queue_TaskContext $ctx) { + self::addColumn($ctx, 'civicrm_file', 'created_id', "int unsigned COMMENT 'FK to civicrm_contact, who uploaded this file'"); + + CRM_Core_BAO_SchemaHandler::safeRemoveFK('civicrm_file', 'FK_civicrm_file_created_id'); + + CRM_Core_DAO::executeQuery(" + ALTER TABLE `civicrm_file` + ADD CONSTRAINT `FK_civicrm_file_created_id` + FOREIGN KEY (`created_id`) + REFERENCES `civicrm_contact`(`id`) + ON DELETE SET NULL + ON UPDATE CASCADE; + "); + + return TRUE; + } + /* * Important! All upgrade functions MUST add a 'runSql' task. * Uncomment and use the following template for a new upgrade version diff --git a/CRM/Upgrade/Incremental/php/FourSeven.php b/CRM/Upgrade/Incremental/php/FourSeven.php index d45078e584ca..0f667a7c919f 100644 --- a/CRM/Upgrade/Incremental/php/FourSeven.php +++ b/CRM/Upgrade/Incremental/php/FourSeven.php @@ -507,7 +507,6 @@ public function upgrade_4_7_32($rev) { $this->addTask('CRM-21733: Add status_override_end_date field to civicrm_membership table', 'addColumn', 'civicrm_membership', 'status_override_end_date', "date DEFAULT NULL COMMENT 'The end date of membership status override if (Override until selected date) override type is selected.'"); - $this->addTask('CRM-19948 - Add created_id column to civicrm_file', 'addFileCreatedIdColumn'); } /* @@ -1411,27 +1410,6 @@ public static function civiMailingCreatedDateNull(CRM_Queue_TaskContext $ctx) { $dataType = 'datetime'; } CRM_Core_DAO::executeQuery("ALTER TABLE civicrm_mailing CHANGE created_date created_date {$dataType} NULL DEFAULT NULL COMMENT 'Date and time this mailing was created.'"); - - return TRUE; - } - - public static function addFileCreatedIdColumn(CRM_Queue_TaskContext $ctx) { - self::addColumn($ctx, 'civicrm_file', 'created_id', "int unsigned COMMENT 'FK to civicrm_contact, who uploaded this file'"); - - $fileTable = 'civicrm_file'; - $fkName = 'FK_civicrm_file_created_id'; - - CRM_Core_BAO_SchemaHandler::safeRemoveFK($fileTable, $fkName); - - CRM_Core_DAO::executeQuery(" - ALTER TABLE `{$fileTable}` - ADD CONSTRAINT `{$fkName}` - FOREIGN KEY (`created_id`) - REFERENCES `civicrm_contact`(`id`) - ON DELETE SET NULL - ON UPDATE CASCADE; - "); - return TRUE; } diff --git a/api/v3/Attachment.php b/api/v3/Attachment.php index b58fda4aa100..70aa4c6a72aa 100644 --- a/api/v3/Attachment.php +++ b/api/v3/Attachment.php @@ -117,7 +117,8 @@ function civicrm_api3_attachment_create($params) { $entityFileDao = new CRM_Core_DAO_EntityFile(); if ($id) { - $fileDao->id = $id; + $file['id'] = $fileDao->id = $id; + if (!$fileDao->find(TRUE)) { throw new API_Exception("Invalid ID"); } @@ -144,12 +145,11 @@ function civicrm_api3_attachment_create($params) { throw new API_Exception("Cannot modify name"); } - $fileDao->copyValues($file); if (!$id) { - $fileDao->uri = CRM_Utils_File::makeFileName($name); - $fileDao->created_id = CRM_Core_Session::getLoggedInContactID(); + $file['uri'] = CRM_Utils_File::makeFileName($name); } - $fileDao->save(); + $fileDao = CRM_Core_BAO_File::create($file); + $fileDao->find(TRUE); $entityFileDao->copyValues($entityFile); $entityFileDao->file_id = $fileDao->id; @@ -496,6 +496,11 @@ function _civicrm_api3_attachment_getfields() { 'description' => 'File content (not searchable, not returned by default)', 'type' => CRM_Utils_Type::T_STRING, ); + $spec['created_id'] = array( + 'title' => 'Created By Contact ID', + 'type' => CRM_Utils_Type::T_INT, + 'description' => 'FK to civicrm_contact, who uploaded this file', + ); return $spec; } diff --git a/sql/civicrm_generated.mysql b/sql/civicrm_generated.mysql index 39abe9859efa..a527b02b1337 100644 --- a/sql/civicrm_generated.mysql +++ b/sql/civicrm_generated.mysql @@ -1,8 +1,8 @@ --- MySQL dump 10.13 Distrib 5.7.22, for Linux (x86_64) +-- MySQL dump 10.13 Distrib 5.5.42, for osx10.6 (i386) -- --- Host: 127.0.0.1 Database: 47democivi_idrpw +-- Host: 127.0.0.1 Database: civicrm_master -- ------------------------------------------------------ --- Server version 5.7.22-0ubuntu18.04.1-log +-- Server version 5.5.42 /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; @@ -87,7 +87,7 @@ UNLOCK TABLES; LOCK TABLES `civicrm_activity` WRITE; /*!40000 ALTER TABLE `civicrm_activity` DISABLE KEYS */; -INSERT INTO `civicrm_activity` (`id`, `source_record_id`, `activity_type_id`, `subject`, `activity_date_time`, `duration`, `location`, `phone_id`, `phone_number`, `details`, `status_id`, `priority_id`, `parent_id`, `is_test`, `medium_id`, `is_auto`, `relationship_id`, `is_current_revision`, `original_id`, `result`, `is_deleted`, `campaign_id`, `engagement_level`, `weight`, `is_star`, `created_date`, `modified_date`) VALUES (1,NULL,10,'Subject for Pledge Acknowledgment','2018-01-03 05:12:45',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:44','2018-05-19 05:31:44'),(2,NULL,9,'Subject for Tell a Friend','2017-12-23 09:12:57',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:44','2018-05-19 05:31:44'),(3,NULL,9,'Subject for Tell a Friend','2017-06-19 00:38:19',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:44','2018-05-19 05:31:44'),(4,NULL,9,'Subject for Tell a Friend','2017-11-05 16:08:25',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:44','2018-05-19 05:31:44'),(5,NULL,10,'Subject for Pledge Acknowledgment','2017-07-23 14:24:22',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:44','2018-05-19 05:31:44'),(6,NULL,10,'Subject for Pledge Acknowledgment','2017-10-13 12:56:31',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:44','2018-05-19 05:31:44'),(7,NULL,10,'Subject for Pledge Acknowledgment','2018-03-28 22:25:01',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:44','2018-05-19 05:31:44'),(8,NULL,9,'Subject for Tell a Friend','2017-08-23 22:30:01',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:44','2018-05-19 05:31:44'),(9,NULL,9,'Subject for Tell a Friend','2017-08-28 11:50:19',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:44','2018-05-19 05:31:44'),(10,NULL,10,'Subject for Pledge Acknowledgment','2017-10-16 12:58:21',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:44','2018-05-19 05:31:44'),(11,NULL,9,'Subject for Tell a Friend','2017-12-18 02:16:29',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:44','2018-05-19 05:31:44'),(12,NULL,10,'Subject for Pledge Acknowledgment','2017-06-05 16:41:13',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:44','2018-05-19 05:31:44'),(13,NULL,10,'Subject for Pledge Acknowledgment','2017-10-15 11:35:06',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:44','2018-05-19 05:31:44'),(14,NULL,9,'Subject for Tell a Friend','2018-01-15 17:06:27',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:44','2018-05-19 05:31:44'),(15,NULL,9,'Subject for Tell a Friend','2018-04-04 00:04:23',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:45','2018-05-19 05:31:45'),(16,NULL,9,'Subject for Tell a Friend','2017-12-14 07:12:26',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:45','2018-05-19 05:31:45'),(17,NULL,10,'Subject for Pledge Acknowledgment','2017-07-29 15:21:29',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:45','2018-05-19 05:31:45'),(18,NULL,9,'Subject for Tell a Friend','2017-08-17 08:28:53',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:45','2018-05-19 05:31:45'),(19,NULL,10,'Subject for Pledge Acknowledgment','2017-10-01 22:04:33',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:45','2018-05-19 05:31:45'),(20,NULL,9,'Subject for Tell a Friend','2018-02-18 23:52:58',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:45','2018-05-19 05:31:45'),(21,NULL,9,'Subject for Tell a Friend','2018-05-03 19:29:25',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:45','2018-05-19 05:31:45'),(22,NULL,10,'Subject for Pledge Acknowledgment','2018-02-11 10:13:33',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:45','2018-05-19 05:31:45'),(23,NULL,10,'Subject for Pledge Acknowledgment','2018-03-25 10:21:38',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:45','2018-05-19 05:31:45'),(24,NULL,10,'Subject for Pledge Acknowledgment','2017-07-23 06:18:27',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:45','2018-05-19 05:31:45'),(25,NULL,9,'Subject for Tell a Friend','2018-01-27 11:55:18',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:45','2018-05-19 05:31:45'),(26,NULL,9,'Subject for Tell a Friend','2018-05-18 19:11:42',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:45','2018-05-19 05:31:45'),(27,NULL,9,'Subject for Tell a Friend','2017-10-14 05:26:45',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:45','2018-05-19 05:31:45'),(28,NULL,10,'Subject for Pledge Acknowledgment','2017-06-22 09:47:42',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:45','2018-05-19 05:31:45'),(29,NULL,10,'Subject for Pledge Acknowledgment','2018-02-26 15:18:19',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:45','2018-05-19 05:31:45'),(30,NULL,10,'Subject for Pledge Acknowledgment','2017-06-22 22:36:06',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:45','2018-05-19 05:31:45'),(31,NULL,10,'Subject for Pledge Acknowledgment','2017-06-21 06:37:54',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:45','2018-05-19 05:31:45'),(32,NULL,9,'Subject for Tell a Friend','2017-07-08 18:01:18',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:45','2018-05-19 05:31:45'),(33,NULL,10,'Subject for Pledge Acknowledgment','2017-07-20 04:08:26',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:45','2018-05-19 05:31:45'),(34,NULL,9,'Subject for Tell a Friend','2017-09-30 01:24:06',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:45','2018-05-19 05:31:45'),(35,NULL,10,'Subject for Pledge Acknowledgment','2018-01-14 19:27:52',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:45','2018-05-19 05:31:45'),(36,NULL,10,'Subject for Pledge Acknowledgment','2017-12-30 04:13:50',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:45','2018-05-19 05:31:45'),(37,NULL,9,'Subject for Tell a Friend','2018-05-19 05:04:52',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:45','2018-05-19 05:31:45'),(38,NULL,9,'Subject for Tell a Friend','2017-06-30 14:17:08',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:45','2018-05-19 05:31:45'),(39,NULL,9,'Subject for Tell a Friend','2018-03-14 01:29:40',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:45','2018-05-19 05:31:45'),(40,NULL,10,'Subject for Pledge Acknowledgment','2018-05-05 09:29:18',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:45','2018-05-19 05:31:45'),(41,NULL,9,'Subject for Tell a Friend','2018-04-29 20:42:04',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:45','2018-05-19 05:31:45'),(42,NULL,9,'Subject for Tell a Friend','2018-05-08 11:19:38',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:45','2018-05-19 05:31:45'),(43,NULL,9,'Subject for Tell a Friend','2017-06-15 03:50:39',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:45','2018-05-19 05:31:45'),(44,NULL,9,'Subject for Tell a Friend','2017-06-09 07:17:31',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:45','2018-05-19 05:31:45'),(45,NULL,9,'Subject for Tell a Friend','2018-04-20 11:27:10',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:45','2018-05-19 05:31:45'),(46,NULL,9,'Subject for Tell a Friend','2018-03-26 06:26:52',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:45','2018-05-19 05:31:45'),(47,NULL,9,'Subject for Tell a Friend','2017-09-29 21:31:45',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:45','2018-05-19 05:31:45'),(48,NULL,10,'Subject for Pledge Acknowledgment','2017-06-26 22:50:26',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:45','2018-05-19 05:31:45'),(49,NULL,10,'Subject for Pledge Acknowledgment','2017-08-25 07:52:53',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:45','2018-05-19 05:31:45'),(50,NULL,9,'Subject for Tell a Friend','2017-08-30 20:52:15',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:45','2018-05-19 05:31:45'),(51,NULL,10,'Subject for Pledge Acknowledgment','2017-07-19 17:44:52',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:45','2018-05-19 05:31:45'),(52,NULL,9,'Subject for Tell a Friend','2017-11-24 01:59:06',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:45','2018-05-19 05:31:45'),(53,NULL,10,'Subject for Pledge Acknowledgment','2017-10-11 05:39:49',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:45','2018-05-19 05:31:45'),(54,NULL,10,'Subject for Pledge Acknowledgment','2017-07-07 21:33:12',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:45','2018-05-19 05:31:45'),(55,NULL,9,'Subject for Tell a Friend','2017-08-20 10:32:50',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:45','2018-05-19 05:31:45'),(56,NULL,9,'Subject for Tell a Friend','2017-08-25 07:45:27',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:45','2018-05-19 05:31:45'),(57,NULL,10,'Subject for Pledge Acknowledgment','2017-10-18 13:15:24',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:45','2018-05-19 05:31:45'),(58,NULL,10,'Subject for Pledge Acknowledgment','2018-03-14 06:15:03',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:45','2018-05-19 05:31:45'),(59,NULL,10,'Subject for Pledge Acknowledgment','2017-06-21 23:52:31',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:45','2018-05-19 05:31:45'),(60,NULL,10,'Subject for Pledge Acknowledgment','2017-12-28 16:35:18',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:45','2018-05-19 05:31:45'),(61,NULL,10,'Subject for Pledge Acknowledgment','2017-10-09 12:40:45',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:45','2018-05-19 05:31:45'),(62,NULL,10,'Subject for Pledge Acknowledgment','2017-11-15 19:13:57',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:45','2018-05-19 05:31:45'),(63,NULL,9,'Subject for Tell a Friend','2017-06-13 15:10:21',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:45','2018-05-19 05:31:45'),(64,NULL,9,'Subject for Tell a Friend','2017-07-01 04:06:13',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:46','2018-05-19 05:31:46'),(65,NULL,9,'Subject for Tell a Friend','2017-09-28 19:53:57',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:46','2018-05-19 05:31:46'),(66,NULL,10,'Subject for Pledge Acknowledgment','2018-04-17 20:09:49',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:46','2018-05-19 05:31:46'),(67,NULL,9,'Subject for Tell a Friend','2017-07-15 14:40:17',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:46','2018-05-19 05:31:46'),(68,NULL,10,'Subject for Pledge Acknowledgment','2017-05-20 14:29:51',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:46','2018-05-19 05:31:46'),(69,NULL,10,'Subject for Pledge Acknowledgment','2018-03-06 07:34:50',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:46','2018-05-19 05:31:46'),(70,NULL,10,'Subject for Pledge Acknowledgment','2017-09-16 22:29:03',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:46','2018-05-19 05:31:46'),(71,NULL,10,'Subject for Pledge Acknowledgment','2018-04-19 01:04:10',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:46','2018-05-19 05:31:46'),(72,NULL,9,'Subject for Tell a Friend','2018-05-04 21:40:06',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:46','2018-05-19 05:31:46'),(73,NULL,10,'Subject for Pledge Acknowledgment','2018-01-11 11:01:26',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:46','2018-05-19 05:31:46'),(74,NULL,10,'Subject for Pledge Acknowledgment','2018-03-21 03:47:13',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:46','2018-05-19 05:31:46'),(75,NULL,10,'Subject for Pledge Acknowledgment','2017-11-08 14:32:10',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:46','2018-05-19 05:31:46'),(76,NULL,10,'Subject for Pledge Acknowledgment','2018-01-25 17:58:11',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:46','2018-05-19 05:31:46'),(77,NULL,9,'Subject for Tell a Friend','2018-02-11 06:06:04',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:46','2018-05-19 05:31:46'),(78,NULL,9,'Subject for Tell a Friend','2017-09-12 05:53:31',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:46','2018-05-19 05:31:46'),(79,NULL,9,'Subject for Tell a Friend','2018-01-19 09:02:29',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:46','2018-05-19 05:31:46'),(80,NULL,9,'Subject for Tell a Friend','2018-01-03 03:53:33',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:46','2018-05-19 05:31:46'),(81,NULL,10,'Subject for Pledge Acknowledgment','2017-08-20 18:29:12',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:46','2018-05-19 05:31:46'),(82,NULL,10,'Subject for Pledge Acknowledgment','2018-01-11 12:05:43',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:46','2018-05-19 05:31:46'),(83,NULL,10,'Subject for Pledge Acknowledgment','2018-03-12 13:27:20',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:46','2018-05-19 05:31:46'),(84,NULL,9,'Subject for Tell a Friend','2018-05-17 12:03:08',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:46','2018-05-19 05:31:46'),(85,NULL,9,'Subject for Tell a Friend','2017-09-30 03:44:05',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:46','2018-05-19 05:31:46'),(86,NULL,9,'Subject for Tell a Friend','2017-07-16 02:03:37',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:46','2018-05-19 05:31:46'),(87,NULL,10,'Subject for Pledge Acknowledgment','2018-01-01 08:47:02',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:46','2018-05-19 05:31:46'),(88,NULL,9,'Subject for Tell a Friend','2017-09-11 05:25:53',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:46','2018-05-19 05:31:46'),(89,NULL,9,'Subject for Tell a Friend','2018-04-25 06:22:42',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:46','2018-05-19 05:31:46'),(90,NULL,10,'Subject for Pledge Acknowledgment','2017-07-02 07:40:37',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:46','2018-05-19 05:31:46'),(91,NULL,9,'Subject for Tell a Friend','2017-06-26 12:26:23',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:46','2018-05-19 05:31:46'),(92,NULL,10,'Subject for Pledge Acknowledgment','2018-01-31 00:58:57',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:46','2018-05-19 05:31:46'),(93,NULL,10,'Subject for Pledge Acknowledgment','2017-09-03 17:24:51',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:46','2018-05-19 05:31:46'),(94,NULL,9,'Subject for Tell a Friend','2018-02-11 05:51:58',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:46','2018-05-19 05:31:46'),(95,NULL,9,'Subject for Tell a Friend','2017-08-19 08:09:08',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:46','2018-05-19 05:31:46'),(96,NULL,9,'Subject for Tell a Friend','2018-01-08 06:09:39',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:46','2018-05-19 05:31:46'),(97,NULL,10,'Subject for Pledge Acknowledgment','2017-06-01 15:47:32',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:46','2018-05-19 05:31:46'),(98,NULL,10,'Subject for Pledge Acknowledgment','2017-11-26 01:01:47',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:46','2018-05-19 05:31:46'),(99,NULL,9,'Subject for Tell a Friend','2017-09-01 04:55:57',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:46','2018-05-19 05:31:46'),(100,NULL,9,'Subject for Tell a Friend','2017-12-19 17:25:03',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:46','2018-05-19 05:31:46'),(101,NULL,10,'Subject for Pledge Acknowledgment','2018-03-30 08:12:20',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:46','2018-05-19 05:31:46'),(102,NULL,9,'Subject for Tell a Friend','2017-11-21 08:18:09',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:46','2018-05-19 05:31:46'),(103,NULL,9,'Subject for Tell a Friend','2018-01-29 00:49:50',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:46','2018-05-19 05:31:46'),(104,NULL,10,'Subject for Pledge Acknowledgment','2017-12-16 09:39:39',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:46','2018-05-19 05:31:46'),(105,NULL,10,'Subject for Pledge Acknowledgment','2017-09-20 22:14:40',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:46','2018-05-19 05:31:46'),(106,NULL,9,'Subject for Tell a Friend','2018-03-18 16:10:50',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:46','2018-05-19 05:31:46'),(107,NULL,10,'Subject for Pledge Acknowledgment','2018-01-07 07:54:25',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:46','2018-05-19 05:31:46'),(108,NULL,9,'Subject for Tell a Friend','2018-01-30 10:18:29',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:46','2018-05-19 05:31:46'),(109,NULL,10,'Subject for Pledge Acknowledgment','2018-05-08 00:26:25',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:46','2018-05-19 05:31:46'),(110,NULL,9,'Subject for Tell a Friend','2017-12-27 15:23:14',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:46','2018-05-19 05:31:46'),(111,NULL,9,'Subject for Tell a Friend','2018-01-31 19:58:02',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:46','2018-05-19 05:31:46'),(112,NULL,10,'Subject for Pledge Acknowledgment','2017-09-28 15:29:17',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:46','2018-05-19 05:31:46'),(113,NULL,9,'Subject for Tell a Friend','2017-12-13 02:37:19',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:46','2018-05-19 05:31:46'),(114,NULL,10,'Subject for Pledge Acknowledgment','2017-12-21 16:27:08',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:46','2018-05-19 05:31:46'),(115,NULL,10,'Subject for Pledge Acknowledgment','2018-03-21 05:31:05',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:46','2018-05-19 05:31:46'),(116,NULL,9,'Subject for Tell a Friend','2017-12-30 11:54:34',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:46','2018-05-19 05:31:46'),(117,NULL,10,'Subject for Pledge Acknowledgment','2018-02-12 08:50:33',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:46','2018-05-19 05:31:46'),(118,NULL,10,'Subject for Pledge Acknowledgment','2017-09-30 03:00:08',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:46','2018-05-19 05:31:46'),(119,NULL,10,'Subject for Pledge Acknowledgment','2017-07-19 23:21:48',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:47','2018-05-19 05:31:47'),(120,NULL,9,'Subject for Tell a Friend','2017-09-06 18:27:39',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:47','2018-05-19 05:31:47'),(121,NULL,10,'Subject for Pledge Acknowledgment','2018-02-25 05:32:20',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:47','2018-05-19 05:31:47'),(122,NULL,9,'Subject for Tell a Friend','2017-10-05 11:47:25',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:47','2018-05-19 05:31:47'),(123,NULL,9,'Subject for Tell a Friend','2018-03-16 05:12:34',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:47','2018-05-19 05:31:47'),(124,NULL,9,'Subject for Tell a Friend','2017-06-08 22:47:23',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:47','2018-05-19 05:31:47'),(125,NULL,10,'Subject for Pledge Acknowledgment','2017-08-23 15:34:06',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:47','2018-05-19 05:31:47'),(126,NULL,9,'Subject for Tell a Friend','2018-03-01 22:30:28',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:47','2018-05-19 05:31:47'),(127,NULL,9,'Subject for Tell a Friend','2017-07-31 15:50:48',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:47','2018-05-19 05:31:47'),(128,NULL,9,'Subject for Tell a Friend','2017-06-22 22:42:02',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:47','2018-05-19 05:31:47'),(129,NULL,9,'Subject for Tell a Friend','2017-09-27 13:10:44',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:47','2018-05-19 05:31:47'),(130,NULL,10,'Subject for Pledge Acknowledgment','2018-01-08 14:27:59',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:47','2018-05-19 05:31:47'),(131,NULL,10,'Subject for Pledge Acknowledgment','2017-09-21 10:34:46',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:47','2018-05-19 05:31:47'),(132,NULL,9,'Subject for Tell a Friend','2017-09-13 12:11:28',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:47','2018-05-19 05:31:47'),(133,NULL,10,'Subject for Pledge Acknowledgment','2017-07-31 00:19:31',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:47','2018-05-19 05:31:47'),(134,NULL,10,'Subject for Pledge Acknowledgment','2017-07-21 07:23:51',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:47','2018-05-19 05:31:47'),(135,NULL,9,'Subject for Tell a Friend','2017-05-26 20:35:58',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:47','2018-05-19 05:31:47'),(136,NULL,9,'Subject for Tell a Friend','2018-01-20 09:27:54',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:47','2018-05-19 05:31:47'),(137,NULL,9,'Subject for Tell a Friend','2017-12-15 23:18:34',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:47','2018-05-19 05:31:47'),(138,NULL,9,'Subject for Tell a Friend','2017-09-22 21:20:30',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:47','2018-05-19 05:31:47'),(139,NULL,10,'Subject for Pledge Acknowledgment','2017-09-04 10:53:07',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:47','2018-05-19 05:31:47'),(140,NULL,9,'Subject for Tell a Friend','2017-10-09 03:33:31',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:47','2018-05-19 05:31:47'),(141,NULL,10,'Subject for Pledge Acknowledgment','2017-08-11 21:15:39',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:47','2018-05-19 05:31:47'),(142,NULL,9,'Subject for Tell a Friend','2017-10-25 07:17:11',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:47','2018-05-19 05:31:47'),(143,NULL,9,'Subject for Tell a Friend','2018-03-04 02:03:51',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:47','2018-05-19 05:31:47'),(144,NULL,9,'Subject for Tell a Friend','2018-01-11 21:42:51',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:47','2018-05-19 05:31:47'),(145,NULL,10,'Subject for Pledge Acknowledgment','2018-01-12 20:43:17',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:47','2018-05-19 05:31:47'),(146,NULL,9,'Subject for Tell a Friend','2017-11-19 15:04:49',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:47','2018-05-19 05:31:47'),(147,NULL,10,'Subject for Pledge Acknowledgment','2018-04-23 20:16:30',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:47','2018-05-19 05:31:47'),(148,NULL,10,'Subject for Pledge Acknowledgment','2018-04-07 17:52:34',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:47','2018-05-19 05:31:47'),(149,NULL,9,'Subject for Tell a Friend','2018-04-05 23:31:16',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:47','2018-05-19 05:31:47'),(150,NULL,10,'Subject for Pledge Acknowledgment','2017-09-17 00:40:57',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:47','2018-05-19 05:31:47'),(151,NULL,10,'Subject for Pledge Acknowledgment','2018-04-23 14:18:24',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:47','2018-05-19 05:31:47'),(152,NULL,9,'Subject for Tell a Friend','2017-12-17 12:51:49',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:47','2018-05-19 05:31:47'),(153,NULL,10,'Subject for Pledge Acknowledgment','2017-07-19 11:26:28',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:47','2018-05-19 05:31:47'),(154,NULL,10,'Subject for Pledge Acknowledgment','2018-02-25 16:28:05',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:47','2018-05-19 05:31:47'),(155,NULL,10,'Subject for Pledge Acknowledgment','2017-08-08 14:59:57',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:47','2018-05-19 05:31:47'),(156,NULL,9,'Subject for Tell a Friend','2017-08-01 13:46:48',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:47','2018-05-19 05:31:47'),(157,NULL,10,'Subject for Pledge Acknowledgment','2017-05-24 22:41:56',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:47','2018-05-19 05:31:47'),(158,NULL,10,'Subject for Pledge Acknowledgment','2017-07-29 19:15:43',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:47','2018-05-19 05:31:47'),(159,NULL,10,'Subject for Pledge Acknowledgment','2018-01-17 16:24:31',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:47','2018-05-19 05:31:47'),(160,NULL,10,'Subject for Pledge Acknowledgment','2017-11-25 03:05:25',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:47','2018-05-19 05:31:47'),(161,NULL,10,'Subject for Pledge Acknowledgment','2017-12-21 05:43:45',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:47','2018-05-19 05:31:47'),(162,NULL,10,'Subject for Pledge Acknowledgment','2017-05-21 15:58:13',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:47','2018-05-19 05:31:47'),(163,NULL,9,'Subject for Tell a Friend','2018-05-02 17:13:10',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:47','2018-05-19 05:31:47'),(164,NULL,9,'Subject for Tell a Friend','2017-11-23 11:07:33',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:47','2018-05-19 05:31:47'),(165,NULL,10,'Subject for Pledge Acknowledgment','2018-03-31 12:42:22',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:47','2018-05-19 05:31:47'),(166,NULL,9,'Subject for Tell a Friend','2018-04-03 00:44:13',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:47','2018-05-19 05:31:47'),(167,NULL,10,'Subject for Pledge Acknowledgment','2017-10-06 05:49:14',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:47','2018-05-19 05:31:47'),(168,NULL,9,'Subject for Tell a Friend','2017-11-28 15:32:40',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:47','2018-05-19 05:31:47'),(169,NULL,10,'Subject for Pledge Acknowledgment','2018-05-13 07:23:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:47','2018-05-19 05:31:47'),(170,NULL,10,'Subject for Pledge Acknowledgment','2017-12-05 01:20:34',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:47','2018-05-19 05:31:47'),(171,NULL,10,'Subject for Pledge Acknowledgment','2017-06-29 05:45:53',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:47','2018-05-19 05:31:47'),(172,NULL,10,'Subject for Pledge Acknowledgment','2018-04-17 04:25:54',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:47','2018-05-19 05:31:47'),(173,NULL,10,'Subject for Pledge Acknowledgment','2017-09-23 00:05:56',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:47','2018-05-19 05:31:47'),(174,NULL,9,'Subject for Tell a Friend','2018-04-30 08:58:30',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:47','2018-05-19 05:31:47'),(175,NULL,10,'Subject for Pledge Acknowledgment','2017-07-17 09:11:25',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:47','2018-05-19 05:31:47'),(176,NULL,9,'Subject for Tell a Friend','2017-12-14 14:42:41',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:47','2018-05-19 05:31:47'),(177,NULL,9,'Subject for Tell a Friend','2017-08-27 22:53:41',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:47','2018-05-19 05:31:47'),(178,NULL,10,'Subject for Pledge Acknowledgment','2018-01-25 00:28:54',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:47','2018-05-19 05:31:47'),(179,NULL,9,'Subject for Tell a Friend','2018-01-20 21:33:55',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:47','2018-05-19 05:31:47'),(180,NULL,10,'Subject for Pledge Acknowledgment','2017-10-21 21:55:54',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:47','2018-05-19 05:31:47'),(181,NULL,10,'Subject for Pledge Acknowledgment','2017-07-05 01:42:58',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:47','2018-05-19 05:31:47'),(182,NULL,9,'Subject for Tell a Friend','2017-07-25 17:29:12',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:47','2018-05-19 05:31:47'),(183,NULL,9,'Subject for Tell a Friend','2017-08-10 01:48:40',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:47','2018-05-19 05:31:47'),(184,NULL,9,'Subject for Tell a Friend','2018-01-13 00:31:51',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:47','2018-05-19 05:31:47'),(185,NULL,9,'Subject for Tell a Friend','2017-05-25 11:51:12',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:47','2018-05-19 05:31:47'),(186,NULL,10,'Subject for Pledge Acknowledgment','2018-03-23 21:42:15',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:47','2018-05-19 05:31:47'),(187,NULL,10,'Subject for Pledge Acknowledgment','2017-10-15 18:24:24',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:47','2018-05-19 05:31:47'),(188,NULL,9,'Subject for Tell a Friend','2018-03-16 10:17:12',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:47','2018-05-19 05:31:47'),(189,NULL,10,'Subject for Pledge Acknowledgment','2017-10-25 16:22:27',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:47','2018-05-19 05:31:47'),(190,NULL,10,'Subject for Pledge Acknowledgment','2017-06-26 14:55:32',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:47','2018-05-19 05:31:47'),(191,NULL,9,'Subject for Tell a Friend','2017-06-29 08:57:04',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:47','2018-05-19 05:31:47'),(192,NULL,10,'Subject for Pledge Acknowledgment','2017-07-19 08:39:40',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:47','2018-05-19 05:31:47'),(193,NULL,10,'Subject for Pledge Acknowledgment','2017-10-19 17:42:37',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:47','2018-05-19 05:31:47'),(194,NULL,9,'Subject for Tell a Friend','2018-04-27 23:16:33',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:47','2018-05-19 05:31:47'),(195,NULL,9,'Subject for Tell a Friend','2017-08-06 19:12:39',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:47','2018-05-19 05:31:47'),(196,NULL,9,'Subject for Tell a Friend','2017-07-17 04:45:10',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:47','2018-05-19 05:31:47'),(197,NULL,10,'Subject for Pledge Acknowledgment','2018-04-04 22:54:33',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:48','2018-05-19 05:31:48'),(198,NULL,10,'Subject for Pledge Acknowledgment','2017-06-28 05:59:15',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:48','2018-05-19 05:31:48'),(199,NULL,10,'Subject for Pledge Acknowledgment','2017-05-24 16:32:21',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:48','2018-05-19 05:31:48'),(200,NULL,10,'Subject for Pledge Acknowledgment','2018-03-15 03:36:52',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:48','2018-05-19 05:31:48'),(201,NULL,9,'Subject for Tell a Friend','2018-05-01 23:53:07',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:48','2018-05-19 05:31:48'),(202,NULL,9,'Subject for Tell a Friend','2017-06-30 13:47:57',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:48','2018-05-19 05:31:48'),(203,NULL,10,'Subject for Pledge Acknowledgment','2017-07-22 19:26:27',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:48','2018-05-19 05:31:48'),(204,NULL,9,'Subject for Tell a Friend','2018-03-22 10:22:40',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:48','2018-05-19 05:31:48'),(205,NULL,10,'Subject for Pledge Acknowledgment','2018-02-16 10:34:35',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:48','2018-05-19 05:31:48'),(206,NULL,10,'Subject for Pledge Acknowledgment','2018-02-16 15:15:44',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:48','2018-05-19 05:31:48'),(207,NULL,9,'Subject for Tell a Friend','2018-04-15 23:55:22',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:48','2018-05-19 05:31:48'),(208,NULL,10,'Subject for Pledge Acknowledgment','2018-03-11 18:47:19',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:48','2018-05-19 05:31:48'),(209,NULL,10,'Subject for Pledge Acknowledgment','2018-05-07 21:14:38',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:48','2018-05-19 05:31:48'),(210,NULL,10,'Subject for Pledge Acknowledgment','2017-05-27 04:46:59',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:48','2018-05-19 05:31:48'),(211,NULL,10,'Subject for Pledge Acknowledgment','2018-01-19 07:20:02',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:48','2018-05-19 05:31:48'),(212,NULL,9,'Subject for Tell a Friend','2017-05-25 04:34:44',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:48','2018-05-19 05:31:48'),(213,NULL,10,'Subject for Pledge Acknowledgment','2017-12-22 13:36:37',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:48','2018-05-19 05:31:48'),(214,NULL,9,'Subject for Tell a Friend','2017-08-27 12:59:36',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:48','2018-05-19 05:31:48'),(215,NULL,10,'Subject for Pledge Acknowledgment','2018-01-11 15:35:06',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:48','2018-05-19 05:31:48'),(216,NULL,10,'Subject for Pledge Acknowledgment','2017-12-26 09:30:10',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:48','2018-05-19 05:31:48'),(217,NULL,9,'Subject for Tell a Friend','2017-12-30 11:16:52',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:48','2018-05-19 05:31:48'),(218,NULL,10,'Subject for Pledge Acknowledgment','2017-08-13 23:07:23',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:48','2018-05-19 05:31:48'),(219,NULL,9,'Subject for Tell a Friend','2017-10-04 00:43:33',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:48','2018-05-19 05:31:48'),(220,NULL,10,'Subject for Pledge Acknowledgment','2017-05-25 16:29:29',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:48','2018-05-19 05:31:48'),(221,NULL,9,'Subject for Tell a Friend','2017-11-03 06:18:01',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:48','2018-05-19 05:31:48'),(222,NULL,10,'Subject for Pledge Acknowledgment','2017-11-07 13:15:54',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:48','2018-05-19 05:31:48'),(223,NULL,9,'Subject for Tell a Friend','2017-12-27 19:59:41',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:48','2018-05-19 05:31:48'),(224,NULL,10,'Subject for Pledge Acknowledgment','2018-01-23 22:12:17',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:48','2018-05-19 05:31:48'),(225,NULL,9,'Subject for Tell a Friend','2017-10-20 14:38:09',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:48','2018-05-19 05:31:48'),(226,NULL,9,'Subject for Tell a Friend','2017-08-28 21:26:22',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:48','2018-05-19 05:31:48'),(227,NULL,10,'Subject for Pledge Acknowledgment','2017-08-07 10:01:03',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:48','2018-05-19 05:31:48'),(228,NULL,9,'Subject for Tell a Friend','2018-04-28 00:34:52',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:48','2018-05-19 05:31:48'),(229,NULL,10,'Subject for Pledge Acknowledgment','2017-08-21 11:02:19',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:48','2018-05-19 05:31:48'),(230,NULL,9,'Subject for Tell a Friend','2017-12-14 17:30:24',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:48','2018-05-19 05:31:48'),(231,NULL,9,'Subject for Tell a Friend','2017-07-16 00:06:33',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:48','2018-05-19 05:31:48'),(232,NULL,9,'Subject for Tell a Friend','2017-08-19 18:08:58',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:48','2018-05-19 05:31:48'),(233,NULL,10,'Subject for Pledge Acknowledgment','2017-12-20 07:01:37',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:48','2018-05-19 05:31:48'),(234,NULL,9,'Subject for Tell a Friend','2018-02-26 14:31:34',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:48','2018-05-19 05:31:48'),(235,NULL,10,'Subject for Pledge Acknowledgment','2017-10-14 08:41:04',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:48','2018-05-19 05:31:48'),(236,NULL,10,'Subject for Pledge Acknowledgment','2017-12-02 22:08:43',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:48','2018-05-19 05:31:48'),(237,NULL,9,'Subject for Tell a Friend','2017-08-09 18:31:56',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:48','2018-05-19 05:31:48'),(238,NULL,9,'Subject for Tell a Friend','2017-10-09 08:33:31',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:48','2018-05-19 05:31:48'),(239,NULL,9,'Subject for Tell a Friend','2017-08-20 20:22:18',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:48','2018-05-19 05:31:48'),(240,NULL,9,'Subject for Tell a Friend','2018-01-01 06:28:50',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:48','2018-05-19 05:31:48'),(241,NULL,10,'Subject for Pledge Acknowledgment','2017-07-05 03:57:01',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:48','2018-05-19 05:31:48'),(242,NULL,10,'Subject for Pledge Acknowledgment','2017-12-14 15:19:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:48','2018-05-19 05:31:48'),(243,NULL,10,'Subject for Pledge Acknowledgment','2018-01-13 07:58:47',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:48','2018-05-19 05:31:48'),(244,NULL,10,'Subject for Pledge Acknowledgment','2017-12-14 00:03:12',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:48','2018-05-19 05:31:48'),(245,NULL,10,'Subject for Pledge Acknowledgment','2018-04-02 17:37:54',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:48','2018-05-19 05:31:48'),(246,NULL,9,'Subject for Tell a Friend','2017-07-27 20:08:54',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:48','2018-05-19 05:31:48'),(247,NULL,9,'Subject for Tell a Friend','2017-08-09 12:12:35',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:48','2018-05-19 05:31:48'),(248,NULL,10,'Subject for Pledge Acknowledgment','2017-07-21 15:00:27',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:48','2018-05-19 05:31:48'),(249,NULL,9,'Subject for Tell a Friend','2017-09-05 08:40:11',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:48','2018-05-19 05:31:48'),(250,NULL,10,'Subject for Pledge Acknowledgment','2017-08-23 14:25:47',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:48','2018-05-19 05:31:48'),(251,NULL,9,'Subject for Tell a Friend','2017-08-27 03:40:16',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:48','2018-05-19 05:31:48'),(252,NULL,9,'Subject for Tell a Friend','2017-09-20 12:46:14',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:48','2018-05-19 05:31:48'),(253,NULL,9,'Subject for Tell a Friend','2017-07-10 16:35:11',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:48','2018-05-19 05:31:48'),(254,NULL,10,'Subject for Pledge Acknowledgment','2018-02-13 07:28:27',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:48','2018-05-19 05:31:48'),(255,NULL,10,'Subject for Pledge Acknowledgment','2018-02-19 03:10:08',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:48','2018-05-19 05:31:48'),(256,NULL,9,'Subject for Tell a Friend','2018-03-19 01:33:25',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:48','2018-05-19 05:31:48'),(257,NULL,10,'Subject for Pledge Acknowledgment','2018-05-12 00:01:15',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:48','2018-05-19 05:31:48'),(258,NULL,9,'Subject for Tell a Friend','2017-08-31 15:39:40',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:48','2018-05-19 05:31:48'),(259,NULL,9,'Subject for Tell a Friend','2018-03-26 11:03:35',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:48','2018-05-19 05:31:48'),(260,NULL,10,'Subject for Pledge Acknowledgment','2018-03-24 05:22:01',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:48','2018-05-19 05:31:48'),(261,NULL,9,'Subject for Tell a Friend','2018-01-14 11:53:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:48','2018-05-19 05:31:48'),(262,NULL,10,'Subject for Pledge Acknowledgment','2018-03-31 12:51:09',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:48','2018-05-19 05:31:48'),(263,NULL,9,'Subject for Tell a Friend','2017-06-27 22:52:13',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:48','2018-05-19 05:31:48'),(264,NULL,9,'Subject for Tell a Friend','2017-05-26 22:51:49',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:48','2018-05-19 05:31:48'),(265,NULL,9,'Subject for Tell a Friend','2017-07-11 12:10:57',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:48','2018-05-19 05:31:48'),(266,NULL,10,'Subject for Pledge Acknowledgment','2017-12-17 06:17:50',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:48','2018-05-19 05:31:48'),(267,NULL,10,'Subject for Pledge Acknowledgment','2017-08-11 06:34:34',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:48','2018-05-19 05:31:48'),(268,NULL,9,'Subject for Tell a Friend','2018-01-09 04:20:46',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:48','2018-05-19 05:31:48'),(269,NULL,9,'Subject for Tell a Friend','2018-02-26 15:45:50',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:48','2018-05-19 05:31:48'),(270,NULL,10,'Subject for Pledge Acknowledgment','2018-03-22 08:09:16',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:48','2018-05-19 05:31:48'),(271,NULL,10,'Subject for Pledge Acknowledgment','2017-05-30 05:07:13',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:48','2018-05-19 05:31:48'),(272,NULL,10,'Subject for Pledge Acknowledgment','2017-08-19 00:41:25',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:48','2018-05-19 05:31:48'),(273,NULL,10,'Subject for Pledge Acknowledgment','2018-04-16 14:52:42',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:48','2018-05-19 05:31:48'),(274,NULL,10,'Subject for Pledge Acknowledgment','2017-07-30 08:07:10',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:48','2018-05-19 05:31:48'),(275,NULL,9,'Subject for Tell a Friend','2018-03-01 12:02:50',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:48','2018-05-19 05:31:48'),(276,NULL,10,'Subject for Pledge Acknowledgment','2018-04-30 16:21:33',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:48','2018-05-19 05:31:48'),(277,NULL,10,'Subject for Pledge Acknowledgment','2017-09-14 21:03:25',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:49','2018-05-19 05:31:49'),(278,NULL,9,'Subject for Tell a Friend','2018-04-09 01:45:17',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:49','2018-05-19 05:31:49'),(279,NULL,9,'Subject for Tell a Friend','2017-12-28 13:51:22',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:49','2018-05-19 05:31:49'),(280,NULL,10,'Subject for Pledge Acknowledgment','2017-09-22 06:03:52',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:49','2018-05-19 05:31:49'),(281,NULL,9,'Subject for Tell a Friend','2017-07-13 21:51:27',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:49','2018-05-19 05:31:49'),(282,NULL,9,'Subject for Tell a Friend','2017-09-30 10:41:28',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:49','2018-05-19 05:31:49'),(283,NULL,9,'Subject for Tell a Friend','2017-05-26 13:18:31',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:49','2018-05-19 05:31:49'),(284,NULL,10,'Subject for Pledge Acknowledgment','2018-01-30 17:53:27',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:49','2018-05-19 05:31:49'),(285,NULL,9,'Subject for Tell a Friend','2018-04-08 17:59:33',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:49','2018-05-19 05:31:49'),(286,NULL,10,'Subject for Pledge Acknowledgment','2017-09-04 18:31:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:49','2018-05-19 05:31:49'),(287,NULL,10,'Subject for Pledge Acknowledgment','2017-12-05 10:39:02',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:49','2018-05-19 05:31:49'),(288,NULL,9,'Subject for Tell a Friend','2018-04-18 20:19:07',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:49','2018-05-19 05:31:49'),(289,NULL,9,'Subject for Tell a Friend','2017-12-26 06:03:12',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:49','2018-05-19 05:31:49'),(290,NULL,9,'Subject for Tell a Friend','2018-03-26 05:55:39',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:49','2018-05-19 05:31:49'),(291,NULL,9,'Subject for Tell a Friend','2018-01-13 05:28:26',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:49','2018-05-19 05:31:49'),(292,NULL,9,'Subject for Tell a Friend','2017-10-14 01:17:31',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:49','2018-05-19 05:31:49'),(293,NULL,10,'Subject for Pledge Acknowledgment','2017-12-02 06:02:20',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:49','2018-05-19 05:31:49'),(294,NULL,9,'Subject for Tell a Friend','2018-01-14 08:34:17',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:49','2018-05-19 05:31:49'),(295,NULL,10,'Subject for Pledge Acknowledgment','2017-10-26 03:36:35',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:49','2018-05-19 05:31:49'),(296,NULL,9,'Subject for Tell a Friend','2017-07-12 05:57:15',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:49','2018-05-19 05:31:49'),(297,NULL,9,'Subject for Tell a Friend','2018-05-11 12:08:38',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:49','2018-05-19 05:31:49'),(298,NULL,10,'Subject for Pledge Acknowledgment','2018-02-05 15:28:45',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:49','2018-05-19 05:31:49'),(299,NULL,9,'Subject for Tell a Friend','2017-06-15 05:47:02',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:49','2018-05-19 05:31:49'),(300,NULL,9,'Subject for Tell a Friend','2017-11-23 02:19:19',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:49','2018-05-19 05:31:49'),(301,NULL,9,'Subject for Tell a Friend','2017-06-25 08:33:59',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:49','2018-05-19 05:31:49'),(302,NULL,9,'Subject for Tell a Friend','2018-01-21 07:33:52',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:49','2018-05-19 05:31:49'),(303,NULL,10,'Subject for Pledge Acknowledgment','2017-12-19 02:11:37',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:49','2018-05-19 05:31:49'),(304,NULL,10,'Subject for Pledge Acknowledgment','2017-08-05 22:52:23',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:49','2018-05-19 05:31:49'),(305,NULL,10,'Subject for Pledge Acknowledgment','2018-02-04 02:50:50',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:49','2018-05-19 05:31:49'),(306,NULL,9,'Subject for Tell a Friend','2018-04-08 13:10:11',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:49','2018-05-19 05:31:49'),(307,NULL,9,'Subject for Tell a Friend','2018-03-19 21:49:21',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:49','2018-05-19 05:31:49'),(308,NULL,10,'Subject for Pledge Acknowledgment','2017-07-28 08:04:22',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:49','2018-05-19 05:31:49'),(309,NULL,10,'Subject for Pledge Acknowledgment','2017-09-06 15:35:50',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:49','2018-05-19 05:31:49'),(310,NULL,9,'Subject for Tell a Friend','2017-09-27 03:55:06',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:49','2018-05-19 05:31:49'),(311,NULL,9,'Subject for Tell a Friend','2018-05-01 14:50:47',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:49','2018-05-19 05:31:49'),(312,NULL,9,'Subject for Tell a Friend','2017-11-21 15:39:14',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:49','2018-05-19 05:31:49'),(313,NULL,9,'Subject for Tell a Friend','2017-10-01 12:34:10',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:49','2018-05-19 05:31:49'),(314,NULL,9,'Subject for Tell a Friend','2018-01-28 12:03:11',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:49','2018-05-19 05:31:49'),(315,NULL,10,'Subject for Pledge Acknowledgment','2017-09-11 05:14:13',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:49','2018-05-19 05:31:49'),(316,NULL,10,'Subject for Pledge Acknowledgment','2017-07-23 01:02:17',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:49','2018-05-19 05:31:49'),(317,NULL,10,'Subject for Pledge Acknowledgment','2018-01-27 19:18:23',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:49','2018-05-19 05:31:49'),(318,NULL,10,'Subject for Pledge Acknowledgment','2017-12-04 12:09:35',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:49','2018-05-19 05:31:49'),(319,NULL,9,'Subject for Tell a Friend','2017-12-25 16:08:01',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:49','2018-05-19 05:31:49'),(320,NULL,9,'Subject for Tell a Friend','2017-07-23 19:15:56',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:49','2018-05-19 05:31:49'),(321,NULL,10,'Subject for Pledge Acknowledgment','2017-08-15 03:29:34',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:49','2018-05-19 05:31:49'),(322,NULL,9,'Subject for Tell a Friend','2017-07-01 16:22:37',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:49','2018-05-19 05:31:49'),(323,NULL,10,'Subject for Pledge Acknowledgment','2018-03-27 05:24:18',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:49','2018-05-19 05:31:49'),(324,NULL,10,'Subject for Pledge Acknowledgment','2017-08-15 22:55:41',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:49','2018-05-19 05:31:49'),(325,NULL,9,'Subject for Tell a Friend','2018-01-13 13:59:10',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:49','2018-05-19 05:31:49'),(326,NULL,10,'Subject for Pledge Acknowledgment','2017-07-04 19:25:45',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:49','2018-05-19 05:31:49'),(327,NULL,9,'Subject for Tell a Friend','2017-10-14 15:55:24',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:49','2018-05-19 05:31:49'),(328,NULL,10,'Subject for Pledge Acknowledgment','2017-12-08 22:22:27',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:49','2018-05-19 05:31:49'),(329,NULL,9,'Subject for Tell a Friend','2017-12-03 18:24:56',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:49','2018-05-19 05:31:49'),(330,NULL,10,'Subject for Pledge Acknowledgment','2017-09-17 05:08:15',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:49','2018-05-19 05:31:49'),(331,NULL,9,'Subject for Tell a Friend','2018-02-24 11:40:45',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:49','2018-05-19 05:31:49'),(332,NULL,9,'Subject for Tell a Friend','2017-12-20 21:29:16',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:49','2018-05-19 05:31:49'),(333,NULL,10,'Subject for Pledge Acknowledgment','2017-12-09 04:49:45',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:49','2018-05-19 05:31:49'),(334,NULL,9,'Subject for Tell a Friend','2018-04-05 13:54:14',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:49','2018-05-19 05:31:49'),(335,NULL,9,'Subject for Tell a Friend','2017-06-18 14:22:47',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:49','2018-05-19 05:31:49'),(336,NULL,9,'Subject for Tell a Friend','2017-06-16 17:43:39',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:49','2018-05-19 05:31:49'),(337,NULL,9,'Subject for Tell a Friend','2018-03-08 14:29:35',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:49','2018-05-19 05:31:49'),(338,NULL,10,'Subject for Pledge Acknowledgment','2017-06-29 00:21:46',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:49','2018-05-19 05:31:49'),(339,NULL,10,'Subject for Pledge Acknowledgment','2018-04-29 22:56:54',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:49','2018-05-19 05:31:49'),(340,NULL,10,'Subject for Pledge Acknowledgment','2017-05-29 12:15:52',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:49','2018-05-19 05:31:49'),(341,NULL,10,'Subject for Pledge Acknowledgment','2018-03-22 06:28:48',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:49','2018-05-19 05:31:49'),(342,NULL,10,'Subject for Pledge Acknowledgment','2017-12-09 16:00:08',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:49','2018-05-19 05:31:49'),(343,NULL,10,'Subject for Pledge Acknowledgment','2017-11-24 17:29:19',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:49','2018-05-19 05:31:49'),(344,NULL,10,'Subject for Pledge Acknowledgment','2018-02-17 12:48:04',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:49','2018-05-19 05:31:49'),(345,NULL,9,'Subject for Tell a Friend','2018-02-12 01:07:49',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:49','2018-05-19 05:31:49'),(346,NULL,10,'Subject for Pledge Acknowledgment','2017-11-14 19:27:36',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:50','2018-05-19 05:31:50'),(347,NULL,10,'Subject for Pledge Acknowledgment','2017-09-14 12:50:19',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:50','2018-05-19 05:31:50'),(348,NULL,10,'Subject for Pledge Acknowledgment','2018-02-02 03:50:43',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:50','2018-05-19 05:31:50'),(349,NULL,10,'Subject for Pledge Acknowledgment','2017-12-22 06:39:50',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:50','2018-05-19 05:31:50'),(350,NULL,9,'Subject for Tell a Friend','2017-08-17 07:45:56',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:50','2018-05-19 05:31:50'),(351,NULL,10,'Subject for Pledge Acknowledgment','2017-06-02 05:03:57',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:50','2018-05-19 05:31:50'),(352,NULL,10,'Subject for Pledge Acknowledgment','2017-11-12 11:04:10',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:50','2018-05-19 05:31:50'),(353,NULL,10,'Subject for Pledge Acknowledgment','2018-04-19 06:13:33',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:50','2018-05-19 05:31:50'),(354,NULL,9,'Subject for Tell a Friend','2017-12-15 15:44:16',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:50','2018-05-19 05:31:50'),(355,NULL,10,'Subject for Pledge Acknowledgment','2017-12-06 19:09:28',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:50','2018-05-19 05:31:50'),(356,NULL,10,'Subject for Pledge Acknowledgment','2018-05-05 17:37:57',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:50','2018-05-19 05:31:50'),(357,NULL,9,'Subject for Tell a Friend','2017-07-16 14:32:45',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:50','2018-05-19 05:31:50'),(358,NULL,10,'Subject for Pledge Acknowledgment','2017-08-19 14:34:28',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:50','2018-05-19 05:31:50'),(359,NULL,10,'Subject for Pledge Acknowledgment','2018-01-24 10:25:49',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:50','2018-05-19 05:31:50'),(360,NULL,9,'Subject for Tell a Friend','2017-09-16 18:39:27',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:50','2018-05-19 05:31:50'),(361,NULL,9,'Subject for Tell a Friend','2017-11-12 10:35:41',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:50','2018-05-19 05:31:50'),(362,NULL,9,'Subject for Tell a Friend','2017-09-02 06:31:50',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:50','2018-05-19 05:31:50'),(363,NULL,10,'Subject for Pledge Acknowledgment','2018-04-06 16:14:09',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:50','2018-05-19 05:31:50'),(364,NULL,10,'Subject for Pledge Acknowledgment','2017-10-17 11:00:59',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:50','2018-05-19 05:31:50'),(365,NULL,10,'Subject for Pledge Acknowledgment','2017-10-16 17:27:48',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:50','2018-05-19 05:31:50'),(366,NULL,9,'Subject for Tell a Friend','2017-09-25 01:48:34',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:50','2018-05-19 05:31:50'),(367,NULL,10,'Subject for Pledge Acknowledgment','2018-03-29 21:32:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:50','2018-05-19 05:31:50'),(368,NULL,10,'Subject for Pledge Acknowledgment','2017-06-10 03:42:49',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:50','2018-05-19 05:31:50'),(369,NULL,10,'Subject for Pledge Acknowledgment','2017-12-12 22:04:32',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:50','2018-05-19 05:31:50'),(370,NULL,9,'Subject for Tell a Friend','2017-05-23 20:17:29',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:50','2018-05-19 05:31:50'),(371,NULL,9,'Subject for Tell a Friend','2017-07-22 07:19:57',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:50','2018-05-19 05:31:50'),(372,NULL,9,'Subject for Tell a Friend','2017-07-18 00:22:45',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:50','2018-05-19 05:31:50'),(373,NULL,10,'Subject for Pledge Acknowledgment','2017-09-23 20:16:04',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:50','2018-05-19 05:31:50'),(374,NULL,10,'Subject for Pledge Acknowledgment','2018-04-28 15:24:20',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:50','2018-05-19 05:31:50'),(375,NULL,10,'Subject for Pledge Acknowledgment','2018-04-20 18:00:09',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:50','2018-05-19 05:31:50'),(376,NULL,10,'Subject for Pledge Acknowledgment','2018-03-17 20:36:57',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:50','2018-05-19 05:31:50'),(377,NULL,10,'Subject for Pledge Acknowledgment','2017-11-22 20:19:16',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:50','2018-05-19 05:31:50'),(378,NULL,10,'Subject for Pledge Acknowledgment','2018-05-05 16:56:30',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:50','2018-05-19 05:31:50'),(379,NULL,9,'Subject for Tell a Friend','2017-09-04 23:53:47',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:50','2018-05-19 05:31:50'),(380,NULL,10,'Subject for Pledge Acknowledgment','2017-07-20 13:38:57',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:50','2018-05-19 05:31:50'),(381,NULL,10,'Subject for Pledge Acknowledgment','2017-11-27 07:19:47',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:50','2018-05-19 05:31:50'),(382,NULL,9,'Subject for Tell a Friend','2018-02-28 11:09:53',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:50','2018-05-19 05:31:50'),(383,NULL,9,'Subject for Tell a Friend','2017-12-10 18:42:46',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:50','2018-05-19 05:31:50'),(384,NULL,9,'Subject for Tell a Friend','2017-12-28 19:37:31',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:50','2018-05-19 05:31:50'),(385,NULL,9,'Subject for Tell a Friend','2017-08-13 05:04:54',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:50','2018-05-19 05:31:50'),(386,NULL,10,'Subject for Pledge Acknowledgment','2018-03-11 15:24:47',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:50','2018-05-19 05:31:50'),(387,NULL,9,'Subject for Tell a Friend','2018-05-13 06:49:30',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:50','2018-05-19 05:31:50'),(388,NULL,10,'Subject for Pledge Acknowledgment','2017-07-17 17:53:24',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:50','2018-05-19 05:31:50'),(389,NULL,10,'Subject for Pledge Acknowledgment','2018-01-17 03:32:20',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:50','2018-05-19 05:31:50'),(390,NULL,9,'Subject for Tell a Friend','2017-08-06 12:18:24',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:50','2018-05-19 05:31:50'),(391,NULL,10,'Subject for Pledge Acknowledgment','2017-09-13 18:08:24',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:50','2018-05-19 05:31:50'),(392,NULL,9,'Subject for Tell a Friend','2017-10-07 13:32:04',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:50','2018-05-19 05:31:50'),(393,NULL,10,'Subject for Pledge Acknowledgment','2017-07-09 14:10:01',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:50','2018-05-19 05:31:50'),(394,NULL,10,'Subject for Pledge Acknowledgment','2018-04-01 20:32:46',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:50','2018-05-19 05:31:50'),(395,NULL,10,'Subject for Pledge Acknowledgment','2017-09-03 06:17:40',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:50','2018-05-19 05:31:50'),(396,NULL,10,'Subject for Pledge Acknowledgment','2018-01-19 07:41:21',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:50','2018-05-19 05:31:50'),(397,NULL,10,'Subject for Pledge Acknowledgment','2018-05-05 06:20:48',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:50','2018-05-19 05:31:50'),(398,NULL,9,'Subject for Tell a Friend','2018-01-26 17:58:18',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:50','2018-05-19 05:31:50'),(399,NULL,9,'Subject for Tell a Friend','2017-11-22 05:22:04',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:50','2018-05-19 05:31:50'),(400,NULL,9,'Subject for Tell a Friend','2018-02-18 01:39:13',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:50','2018-05-19 05:31:50'),(401,NULL,10,'Subject for Pledge Acknowledgment','2017-12-06 17:05:18',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:50','2018-05-19 05:31:50'),(402,NULL,10,'Subject for Pledge Acknowledgment','2018-03-17 09:00:31',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:50','2018-05-19 05:31:50'),(403,NULL,10,'Subject for Pledge Acknowledgment','2018-01-01 08:52:14',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:50','2018-05-19 05:31:50'),(404,NULL,10,'Subject for Pledge Acknowledgment','2017-12-08 12:59:38',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:50','2018-05-19 05:31:50'),(405,NULL,10,'Subject for Pledge Acknowledgment','2017-11-03 16:30:40',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:50','2018-05-19 05:31:50'),(406,NULL,9,'Subject for Tell a Friend','2017-07-26 18:36:04',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:50','2018-05-19 05:31:50'),(407,NULL,9,'Subject for Tell a Friend','2017-10-15 14:50:27',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:51','2018-05-19 05:31:51'),(408,NULL,9,'Subject for Tell a Friend','2017-10-15 13:46:47',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:51','2018-05-19 05:31:51'),(409,NULL,10,'Subject for Pledge Acknowledgment','2018-02-18 10:03:09',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:51','2018-05-19 05:31:51'),(410,NULL,10,'Subject for Pledge Acknowledgment','2018-02-06 05:28:27',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:51','2018-05-19 05:31:51'),(411,NULL,10,'Subject for Pledge Acknowledgment','2017-07-09 16:37:12',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:51','2018-05-19 05:31:51'),(412,NULL,10,'Subject for Pledge Acknowledgment','2018-04-29 23:02:47',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:51','2018-05-19 05:31:51'),(413,NULL,9,'Subject for Tell a Friend','2017-08-29 05:09:40',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:51','2018-05-19 05:31:51'),(414,NULL,9,'Subject for Tell a Friend','2018-04-24 14:42:10',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:51','2018-05-19 05:31:51'),(415,NULL,10,'Subject for Pledge Acknowledgment','2017-07-04 11:35:22',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:51','2018-05-19 05:31:51'),(416,NULL,9,'Subject for Tell a Friend','2017-05-29 23:26:50',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:51','2018-05-19 05:31:51'),(417,NULL,9,'Subject for Tell a Friend','2018-04-01 21:40:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:51','2018-05-19 05:31:51'),(418,NULL,9,'Subject for Tell a Friend','2017-12-05 05:57:30',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:51','2018-05-19 05:31:51'),(419,NULL,10,'Subject for Pledge Acknowledgment','2017-12-12 03:02:22',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:51','2018-05-19 05:31:51'),(420,NULL,10,'Subject for Pledge Acknowledgment','2018-01-08 17:45:33',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:51','2018-05-19 05:31:51'),(421,NULL,9,'Subject for Tell a Friend','2017-06-02 04:16:03',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:51','2018-05-19 05:31:51'),(422,NULL,9,'Subject for Tell a Friend','2017-11-21 16:56:17',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:51','2018-05-19 05:31:51'),(423,NULL,9,'Subject for Tell a Friend','2017-10-28 15:35:38',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:51','2018-05-19 05:31:51'),(424,NULL,9,'Subject for Tell a Friend','2018-01-31 10:46:50',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:51','2018-05-19 05:31:51'),(425,NULL,9,'Subject for Tell a Friend','2017-06-30 19:15:17',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:51','2018-05-19 05:31:51'),(426,NULL,9,'Subject for Tell a Friend','2018-03-11 01:01:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:51','2018-05-19 05:31:51'),(427,NULL,10,'Subject for Pledge Acknowledgment','2018-04-18 17:23:56',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:51','2018-05-19 05:31:51'),(428,NULL,10,'Subject for Pledge Acknowledgment','2018-01-10 12:43:10',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:51','2018-05-19 05:31:51'),(429,NULL,9,'Subject for Tell a Friend','2017-05-24 12:51:33',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:51','2018-05-19 05:31:51'),(430,NULL,10,'Subject for Pledge Acknowledgment','2017-07-24 11:33:47',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:51','2018-05-19 05:31:51'),(431,NULL,10,'Subject for Pledge Acknowledgment','2017-11-01 09:18:52',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:51','2018-05-19 05:31:51'),(432,NULL,9,'Subject for Tell a Friend','2018-05-02 14:27:37',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:51','2018-05-19 05:31:51'),(433,NULL,9,'Subject for Tell a Friend','2018-03-01 13:56:53',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:51','2018-05-19 05:31:51'),(434,NULL,9,'Subject for Tell a Friend','2017-07-30 19:05:16',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:51','2018-05-19 05:31:51'),(435,NULL,9,'Subject for Tell a Friend','2017-10-13 03:31:58',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:51','2018-05-19 05:31:51'),(436,NULL,9,'Subject for Tell a Friend','2017-07-11 07:52:57',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:51','2018-05-19 05:31:51'),(437,NULL,10,'Subject for Pledge Acknowledgment','2018-02-25 00:30:03',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:51','2018-05-19 05:31:51'),(438,NULL,10,'Subject for Pledge Acknowledgment','2018-05-06 02:28:28',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:51','2018-05-19 05:31:51'),(439,NULL,10,'Subject for Pledge Acknowledgment','2017-08-10 01:41:39',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:51','2018-05-19 05:31:51'),(440,NULL,9,'Subject for Tell a Friend','2018-05-15 00:32:34',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:51','2018-05-19 05:31:51'),(441,NULL,10,'Subject for Pledge Acknowledgment','2017-07-19 14:16:07',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:51','2018-05-19 05:31:51'),(442,NULL,9,'Subject for Tell a Friend','2018-02-16 12:25:21',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:51','2018-05-19 05:31:51'),(443,NULL,10,'Subject for Pledge Acknowledgment','2018-01-22 02:10:52',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:51','2018-05-19 05:31:51'),(444,NULL,10,'Subject for Pledge Acknowledgment','2018-02-25 17:06:16',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:51','2018-05-19 05:31:51'),(445,NULL,9,'Subject for Tell a Friend','2017-10-26 10:38:31',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:51','2018-05-19 05:31:51'),(446,NULL,10,'Subject for Pledge Acknowledgment','2017-12-23 07:15:33',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:51','2018-05-19 05:31:51'),(447,NULL,9,'Subject for Tell a Friend','2018-04-06 22:10:05',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:51','2018-05-19 05:31:51'),(448,NULL,9,'Subject for Tell a Friend','2017-11-07 15:03:39',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:51','2018-05-19 05:31:51'),(449,NULL,9,'Subject for Tell a Friend','2017-10-17 18:43:14',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:51','2018-05-19 05:31:51'),(450,NULL,9,'Subject for Tell a Friend','2017-07-22 19:01:01',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:51','2018-05-19 05:31:51'),(451,1,6,'$ 125.00-Apr 2007 Mailer 1','2010-04-11 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:51','2018-05-19 05:31:51'),(452,2,6,'$ 50.00-Online: Save the Penguins','2010-03-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:51','2018-05-19 05:31:51'),(453,3,6,'$ 25.00-Apr 2007 Mailer 1','2010-04-29 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:51','2018-05-19 05:31:51'),(454,4,6,'$ 50.00-Apr 2007 Mailer 1','2010-04-11 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:51','2018-05-19 05:31:51'),(455,5,6,'$ 500.00-Apr 2007 Mailer 1','2010-04-15 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:51','2018-05-19 05:31:51'),(456,6,6,'$ 175.00-Apr 2007 Mailer 1','2010-04-11 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:51','2018-05-19 05:31:51'),(457,7,6,'$ 50.00-Online: Save the Penguins','2010-03-27 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:51','2018-05-19 05:31:51'),(458,8,6,'$ 10.00-Online: Save the Penguins','2010-03-08 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:51','2018-05-19 05:31:51'),(459,9,6,'$ 250.00-Online: Save the Penguins','2010-04-22 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:51','2018-05-19 05:31:51'),(460,10,6,NULL,'2009-07-01 11:53:50',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:51','2018-05-19 05:31:51'),(461,11,6,NULL,'2009-07-01 12:55:41',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:51','2018-05-19 05:31:51'),(462,12,6,NULL,'2009-10-01 11:53:50',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:51','2018-05-19 05:31:51'),(463,13,6,NULL,'2009-12-01 12:55:41',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:51','2018-05-19 05:31:51'),(464,1,7,'General','2018-05-19 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:51','2018-05-19 05:31:51'),(465,2,7,'Student','2018-05-18 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:51','2018-05-19 05:31:51'),(466,3,7,'General','2018-05-17 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:51','2018-05-19 05:31:51'),(467,4,7,'Student','2018-05-16 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:51','2018-05-19 05:31:51'),(468,5,7,'General','2016-04-17 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:51','2018-05-19 05:31:51'),(469,6,7,'Student','2018-05-14 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:51','2018-05-19 05:31:51'),(470,7,7,'General','2018-05-13 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:51','2018-05-19 05:31:51'),(471,8,7,'Student','2018-05-12 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:51','2018-05-19 05:31:51'),(472,9,7,'General','2018-05-11 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:51','2018-05-19 05:31:51'),(473,10,7,'General','2016-03-08 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:51','2018-05-19 05:31:51'),(474,11,7,'Lifetime','2018-05-09 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:51','2018-05-19 05:31:51'),(475,12,7,'Student','2018-05-08 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:51','2018-05-19 05:31:51'),(476,13,7,'General','2018-05-07 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:51','2018-05-19 05:31:51'),(477,14,7,'Student','2018-05-06 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:51','2018-05-19 05:31:51'),(478,15,7,'General','2016-01-28 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:51','2018-05-19 05:31:51'),(479,16,7,'Student','2018-05-04 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:51','2018-05-19 05:31:51'),(480,17,7,'General','2018-05-03 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:51','2018-05-19 05:31:51'),(481,18,7,'Student','2018-05-02 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:51','2018-05-19 05:31:51'),(482,19,7,'General','2018-05-01 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:51','2018-05-19 05:31:51'),(483,20,7,'General','2015-12-19 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:51','2018-05-19 05:31:51'),(484,21,7,'General','2018-04-29 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:51','2018-05-19 05:31:51'),(485,22,7,'Lifetime','2018-04-28 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:51','2018-05-19 05:31:51'),(486,23,7,'General','2018-04-27 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:51','2018-05-19 05:31:51'),(487,24,7,'Student','2018-04-26 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:51','2018-05-19 05:31:51'),(488,25,7,'General','2015-11-09 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:51','2018-05-19 05:31:51'),(489,26,7,'Student','2018-04-24 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:51','2018-05-19 05:31:51'),(490,27,7,'General','2018-04-23 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:51','2018-05-19 05:31:51'),(491,28,7,'Student','2018-04-22 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:51','2018-05-19 05:31:51'),(492,29,7,'General','2018-04-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:51','2018-05-19 05:31:51'),(493,30,7,'General','2015-09-30 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:51','2018-05-19 05:31:51'),(494,14,6,'$ 100.00 - General Membership: Offline signup','2018-05-19 15:31:51',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:51','2018-05-19 05:31:51'),(495,15,6,'$ 100.00 - General Membership: Offline signup','2018-05-19 15:31:51',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:51','2018-05-19 05:31:51'),(496,16,6,'$ 100.00 - General Membership: Offline signup','2018-05-19 15:31:51',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:51','2018-05-19 05:31:51'),(497,17,6,'$ 100.00 - General Membership: Offline signup','2018-05-19 15:31:51',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:51','2018-05-19 05:31:51'),(498,18,6,'$ 100.00 - General Membership: Offline signup','2018-05-19 15:31:51',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:51','2018-05-19 05:31:51'),(499,19,6,'$ 100.00 - General Membership: Offline signup','2018-05-19 15:31:51',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:51','2018-05-19 05:31:51'),(500,20,6,'$ 100.00 - General Membership: Offline signup','2018-05-19 15:31:51',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:51','2018-05-19 05:31:51'),(501,21,6,'$ 100.00 - General Membership: Offline signup','2018-05-19 15:31:51',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:51','2018-05-19 05:31:51'),(502,22,6,'$ 100.00 - General Membership: Offline signup','2018-05-19 15:31:51',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:51','2018-05-19 05:31:51'),(503,23,6,'$ 100.00 - General Membership: Offline signup','2018-05-19 15:31:51',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:51','2018-05-19 05:31:51'),(504,24,6,'$ 100.00 - General Membership: Offline signup','2018-05-19 15:31:51',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:51','2018-05-19 05:31:51'),(505,25,6,'$ 100.00 - General Membership: Offline signup','2018-05-19 15:31:51',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:51','2018-05-19 05:31:51'),(506,26,6,'$ 100.00 - General Membership: Offline signup','2018-05-19 15:31:51',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:51','2018-05-19 05:31:51'),(507,27,6,'$ 100.00 - General Membership: Offline signup','2018-05-19 15:31:51',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:51','2018-05-19 05:31:51'),(508,28,6,'$ 100.00 - General Membership: Offline signup','2018-05-19 15:31:51',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:51','2018-05-19 05:31:51'),(509,29,6,'$ 100.00 - General Membership: Offline signup','2018-05-19 15:31:51',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:51','2018-05-19 05:31:51'),(510,30,6,'$ 100.00 - General Membership: Offline signup','2018-05-19 15:31:51',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:51','2018-05-19 05:31:51'),(511,31,6,'$ 50.00 - Student Membership: Offline signup','2018-05-19 15:31:51',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:51','2018-05-19 05:31:51'),(512,32,6,'$ 50.00 - Student Membership: Offline signup','2018-05-19 15:31:51',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:51','2018-05-19 05:31:51'),(513,33,6,'$ 50.00 - Student Membership: Offline signup','2018-05-19 15:31:51',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:51','2018-05-19 05:31:51'),(514,34,6,'$ 50.00 - Student Membership: Offline signup','2018-05-19 15:31:51',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:51','2018-05-19 05:31:51'),(515,35,6,'$ 50.00 - Student Membership: Offline signup','2018-05-19 15:31:51',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:51','2018-05-19 05:31:51'),(516,36,6,'$ 50.00 - Student Membership: Offline signup','2018-05-19 15:31:51',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:51','2018-05-19 05:31:51'),(517,37,6,'$ 50.00 - Student Membership: Offline signup','2018-05-19 15:31:51',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:51','2018-05-19 05:31:51'),(518,38,6,'$ 50.00 - Student Membership: Offline signup','2018-05-19 15:31:51',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:51','2018-05-19 05:31:51'),(519,39,6,'$ 50.00 - Student Membership: Offline signup','2018-05-19 15:31:51',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:51','2018-05-19 05:31:51'),(520,40,6,'$ 50.00 - Student Membership: Offline signup','2018-05-19 15:31:51',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:51','2018-05-19 05:31:51'),(521,41,6,'$ 50.00 - Student Membership: Offline signup','2018-05-19 15:31:51',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:51','2018-05-19 05:31:51'),(522,42,6,'$ 1200.00 - Lifetime Membership: Offline signup','2018-05-19 15:31:51',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:51','2018-05-19 05:31:51'),(523,43,6,'$ 1200.00 - Lifetime Membership: Offline signup','2018-05-19 15:31:51',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:51','2018-05-19 05:31:51'),(525,1,5,'NULL','2009-01-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:52','2018-05-19 05:31:52'),(526,2,5,'NULL','2008-05-07 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:52','2018-05-19 05:31:52'),(527,3,5,'NULL','2008-05-05 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:52','2018-05-19 05:31:52'),(528,4,5,'NULL','2008-10-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:52','2018-05-19 05:31:52'),(529,5,5,'NULL','2008-01-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:52','2018-05-19 05:31:52'),(530,6,5,'NULL','2008-03-05 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:52','2018-05-19 05:31:52'),(531,7,5,'NULL','2009-07-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:52','2018-05-19 05:31:52'),(532,8,5,'NULL','2009-03-07 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:52','2018-05-19 05:31:52'),(533,9,5,'NULL','2008-02-05 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:52','2018-05-19 05:31:52'),(534,10,5,'NULL','2008-02-01 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:52','2018-05-19 05:31:52'),(535,11,5,'NULL','2009-01-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:52','2018-05-19 05:31:52'),(536,12,5,'NULL','2009-03-06 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:52','2018-05-19 05:31:52'),(537,13,5,'NULL','2008-06-04 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:52','2018-05-19 05:31:52'),(538,14,5,'NULL','2008-01-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:52','2018-05-19 05:31:52'),(539,15,5,'NULL','2008-07-04 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:52','2018-05-19 05:31:52'),(540,16,5,'NULL','2009-01-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:52','2018-05-19 05:31:52'),(541,17,5,'NULL','2008-01-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:52','2018-05-19 05:31:52'),(542,18,5,'NULL','2009-03-05 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:52','2018-05-19 05:31:52'),(543,19,5,'NULL','2008-10-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:52','2018-05-19 05:31:52'),(544,20,5,'NULL','2009-01-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:52','2018-05-19 05:31:52'),(545,21,5,'NULL','2008-03-25 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:52','2018-05-19 05:31:52'),(546,22,5,'NULL','2009-10-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:52','2018-05-19 05:31:52'),(547,23,5,'NULL','2008-01-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:52','2018-05-19 05:31:52'),(548,24,5,'NULL','2008-03-11 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:52','2018-05-19 05:31:52'),(549,25,5,'NULL','2008-04-05 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:52','2018-05-19 05:31:52'),(550,26,5,'NULL','2009-01-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:52','2018-05-19 05:31:52'),(551,27,5,'NULL','2008-05-07 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:52','2018-05-19 05:31:52'),(552,28,5,'NULL','2009-12-12 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:52','2018-05-19 05:31:52'),(553,29,5,'NULL','2009-12-13 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:52','2018-05-19 05:31:52'),(554,30,5,'NULL','2009-12-14 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:52','2018-05-19 05:31:52'),(555,31,5,'NULL','2009-12-15 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:52','2018-05-19 05:31:52'),(556,32,5,'NULL','2009-07-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:52','2018-05-19 05:31:52'),(557,33,5,'NULL','2009-03-07 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:52','2018-05-19 05:31:52'),(558,34,5,'NULL','2009-12-15 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:52','2018-05-19 05:31:52'),(559,35,5,'NULL','2009-12-13 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:52','2018-05-19 05:31:52'),(560,36,5,'NULL','2009-01-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:52','2018-05-19 05:31:52'),(561,37,5,'NULL','2009-03-06 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:52','2018-05-19 05:31:52'),(562,38,5,'NULL','2009-12-13 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:52','2018-05-19 05:31:52'),(563,39,5,'NULL','2008-01-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:52','2018-05-19 05:31:52'),(564,40,5,'NULL','2009-12-14 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:52','2018-05-19 05:31:52'),(565,41,5,'NULL','2009-01-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:52','2018-05-19 05:31:52'),(566,42,5,'NULL','2009-12-15 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:52','2018-05-19 05:31:52'),(567,43,5,'NULL','2009-03-05 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:52','2018-05-19 05:31:52'),(568,44,5,'NULL','2009-12-13 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:52','2018-05-19 05:31:52'),(569,45,5,'NULL','2009-01-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:52','2018-05-19 05:31:52'),(570,46,5,'NULL','2009-12-13 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:52','2018-05-19 05:31:52'),(571,47,5,'NULL','2009-10-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:52','2018-05-19 05:31:52'),(572,48,5,'NULL','2009-12-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:52','2018-05-19 05:31:52'),(573,49,5,'NULL','2009-03-11 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:52','2018-05-19 05:31:52'),(574,50,5,'NULL','2009-04-05 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:52','2018-05-19 05:31:52'),(575,45,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2018-05-19 15:31:52',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:52','2018-05-19 05:31:52'),(576,46,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2018-05-19 15:31:52',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:52','2018-05-19 05:31:52'),(577,47,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2018-05-19 15:31:52',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:52','2018-05-19 05:31:52'),(578,48,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2018-05-19 15:31:52',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:52','2018-05-19 05:31:52'),(579,49,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2018-05-19 15:31:52',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:52','2018-05-19 05:31:52'),(580,50,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2018-05-19 15:31:52',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:52','2018-05-19 05:31:52'),(581,51,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2018-05-19 15:31:52',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:52','2018-05-19 05:31:52'),(582,52,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2018-05-19 15:31:52',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:52','2018-05-19 05:31:52'),(583,53,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2018-05-19 15:31:52',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:52','2018-05-19 05:31:52'),(584,54,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2018-05-19 15:31:52',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:52','2018-05-19 05:31:52'),(585,55,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2018-05-19 15:31:52',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:52','2018-05-19 05:31:52'),(586,56,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2018-05-19 15:31:52',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:52','2018-05-19 05:31:52'),(587,57,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2018-05-19 15:31:52',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:52','2018-05-19 05:31:52'),(588,58,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2018-05-19 15:31:52',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:52','2018-05-19 05:31:52'),(589,59,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2018-05-19 15:31:52',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:52','2018-05-19 05:31:52'),(590,60,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2018-05-19 15:31:52',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:52','2018-05-19 05:31:52'),(591,61,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2018-05-19 15:31:52',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:52','2018-05-19 05:31:52'),(592,62,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2018-05-19 15:31:52',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:52','2018-05-19 05:31:52'),(593,63,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2018-05-19 15:31:52',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:52','2018-05-19 05:31:52'),(594,64,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2018-05-19 15:31:52',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:52','2018-05-19 05:31:52'),(595,65,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2018-05-19 15:31:52',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:52','2018-05-19 05:31:52'),(596,66,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2018-05-19 15:31:52',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:52','2018-05-19 05:31:52'),(597,67,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2018-05-19 15:31:52',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:52','2018-05-19 05:31:52'),(598,68,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2018-05-19 15:31:52',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:52','2018-05-19 05:31:52'),(599,69,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2018-05-19 15:31:52',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:52','2018-05-19 05:31:52'),(600,70,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2018-05-19 15:31:52',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:52','2018-05-19 05:31:52'),(601,71,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2018-05-19 15:31:52',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:52','2018-05-19 05:31:52'),(602,72,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2018-05-19 15:31:52',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:52','2018-05-19 05:31:52'),(603,73,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2018-05-19 15:31:52',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:52','2018-05-19 05:31:52'),(604,74,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2018-05-19 15:31:52',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:52','2018-05-19 05:31:52'),(605,75,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2018-05-19 15:31:52',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:52','2018-05-19 05:31:52'),(606,76,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2018-05-19 15:31:52',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:52','2018-05-19 05:31:52'),(607,77,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2018-05-19 15:31:52',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:52','2018-05-19 05:31:52'),(608,78,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2018-05-19 15:31:52',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:52','2018-05-19 05:31:52'),(609,79,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2018-05-19 15:31:52',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:52','2018-05-19 05:31:52'),(610,80,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2018-05-19 15:31:52',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:52','2018-05-19 05:31:52'),(611,81,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2018-05-19 15:31:52',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:52','2018-05-19 05:31:52'),(612,82,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2018-05-19 15:31:52',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:52','2018-05-19 05:31:52'),(613,83,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2018-05-19 15:31:52',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:52','2018-05-19 05:31:52'),(614,84,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2018-05-19 15:31:52',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:52','2018-05-19 05:31:52'),(615,85,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2018-05-19 15:31:52',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:52','2018-05-19 05:31:52'),(616,86,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2018-05-19 15:31:52',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:52','2018-05-19 05:31:52'),(617,87,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2018-05-19 15:31:52',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:52','2018-05-19 05:31:52'),(618,88,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2018-05-19 15:31:52',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:52','2018-05-19 05:31:52'),(619,89,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2018-05-19 15:31:52',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:52','2018-05-19 05:31:52'),(620,90,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2018-05-19 15:31:52',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:52','2018-05-19 05:31:52'),(621,91,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2018-05-19 15:31:52',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:52','2018-05-19 05:31:52'),(622,92,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2018-05-19 15:31:52',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:52','2018-05-19 05:31:52'),(623,93,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2018-05-19 15:31:52',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:52','2018-05-19 05:31:52'),(624,94,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2018-05-19 15:31:52',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-19 05:31:52','2018-05-19 05:31:52'); +INSERT INTO `civicrm_activity` (`id`, `source_record_id`, `activity_type_id`, `subject`, `activity_date_time`, `duration`, `location`, `phone_id`, `phone_number`, `details`, `status_id`, `priority_id`, `parent_id`, `is_test`, `medium_id`, `is_auto`, `relationship_id`, `is_current_revision`, `original_id`, `result`, `is_deleted`, `campaign_id`, `engagement_level`, `weight`, `is_star`, `created_date`, `modified_date`) VALUES (1,NULL,10,'Subject for Pledge Acknowledgment','2018-01-17 11:37:44',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(2,NULL,9,'Subject for Tell a Friend','2017-10-19 07:43:35',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(3,NULL,10,'Subject for Pledge Acknowledgment','2018-04-30 00:35:39',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(4,NULL,9,'Subject for Tell a Friend','2018-01-05 09:28:42',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(5,NULL,9,'Subject for Tell a Friend','2018-05-15 06:15:40',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(6,NULL,10,'Subject for Pledge Acknowledgment','2017-10-06 18:30:52',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(7,NULL,10,'Subject for Pledge Acknowledgment','2018-05-10 14:31:15',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(8,NULL,10,'Subject for Pledge Acknowledgment','2018-02-22 15:57:38',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(9,NULL,10,'Subject for Pledge Acknowledgment','2018-05-19 08:37:36',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(10,NULL,10,'Subject for Pledge Acknowledgment','2018-02-12 08:46:06',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(11,NULL,9,'Subject for Tell a Friend','2017-10-19 10:01:45',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(12,NULL,9,'Subject for Tell a Friend','2017-11-19 10:51:40',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(13,NULL,9,'Subject for Tell a Friend','2017-11-30 05:22:38',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(14,NULL,9,'Subject for Tell a Friend','2017-06-05 01:18:11',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(15,NULL,10,'Subject for Pledge Acknowledgment','2018-05-14 16:59:33',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(16,NULL,9,'Subject for Tell a Friend','2018-01-29 23:35:19',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(17,NULL,10,'Subject for Pledge Acknowledgment','2018-05-07 10:32:35',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(18,NULL,10,'Subject for Pledge Acknowledgment','2017-09-23 00:36:48',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(19,NULL,9,'Subject for Tell a Friend','2017-05-22 05:08:49',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(20,NULL,10,'Subject for Pledge Acknowledgment','2018-03-11 06:02:48',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(21,NULL,9,'Subject for Tell a Friend','2017-11-21 21:07:25',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(22,NULL,9,'Subject for Tell a Friend','2017-11-06 01:43:46',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(23,NULL,9,'Subject for Tell a Friend','2018-01-07 23:10:08',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(24,NULL,10,'Subject for Pledge Acknowledgment','2018-05-10 23:45:49',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(25,NULL,10,'Subject for Pledge Acknowledgment','2018-03-30 21:28:08',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(26,NULL,10,'Subject for Pledge Acknowledgment','2017-09-09 08:53:41',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(27,NULL,10,'Subject for Pledge Acknowledgment','2017-09-18 09:21:39',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(28,NULL,10,'Subject for Pledge Acknowledgment','2018-01-05 07:32:52',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(29,NULL,10,'Subject for Pledge Acknowledgment','2017-11-10 12:32:22',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(30,NULL,10,'Subject for Pledge Acknowledgment','2018-03-13 13:42:47',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(31,NULL,9,'Subject for Tell a Friend','2018-04-02 04:56:51',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(32,NULL,10,'Subject for Pledge Acknowledgment','2017-10-25 04:18:42',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(33,NULL,9,'Subject for Tell a Friend','2017-09-09 19:20:53',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(34,NULL,9,'Subject for Tell a Friend','2017-06-30 12:20:30',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(35,NULL,10,'Subject for Pledge Acknowledgment','2018-02-27 07:39:16',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(36,NULL,9,'Subject for Tell a Friend','2017-09-22 04:36:32',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(37,NULL,10,'Subject for Pledge Acknowledgment','2018-02-10 19:29:14',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(38,NULL,9,'Subject for Tell a Friend','2017-09-03 14:34:34',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(39,NULL,10,'Subject for Pledge Acknowledgment','2017-11-02 15:14:52',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(40,NULL,9,'Subject for Tell a Friend','2018-02-01 02:15:21',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(41,NULL,9,'Subject for Tell a Friend','2017-10-06 04:14:18',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(42,NULL,10,'Subject for Pledge Acknowledgment','2018-02-05 03:03:39',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(43,NULL,9,'Subject for Tell a Friend','2018-04-16 15:50:25',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(44,NULL,9,'Subject for Tell a Friend','2017-08-05 23:44:58',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(45,NULL,10,'Subject for Pledge Acknowledgment','2018-04-09 11:25:22',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(46,NULL,10,'Subject for Pledge Acknowledgment','2018-03-19 06:46:35',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(47,NULL,9,'Subject for Tell a Friend','2018-04-24 13:44:52',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(48,NULL,9,'Subject for Tell a Friend','2018-04-23 08:22:42',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(49,NULL,10,'Subject for Pledge Acknowledgment','2018-01-27 21:37:36',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(50,NULL,10,'Subject for Pledge Acknowledgment','2018-03-18 19:00:43',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(51,NULL,9,'Subject for Tell a Friend','2017-08-22 02:17:13',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(52,NULL,9,'Subject for Tell a Friend','2017-08-31 20:40:57',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(53,NULL,9,'Subject for Tell a Friend','2017-09-10 08:12:45',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(54,NULL,9,'Subject for Tell a Friend','2017-11-23 10:54:37',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(55,NULL,9,'Subject for Tell a Friend','2017-08-17 21:14:40',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(56,NULL,9,'Subject for Tell a Friend','2017-10-05 21:00:28',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(57,NULL,10,'Subject for Pledge Acknowledgment','2017-08-16 19:10:35',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(58,NULL,9,'Subject for Tell a Friend','2017-09-08 21:36:30',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(59,NULL,9,'Subject for Tell a Friend','2017-10-28 07:08:53',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(60,NULL,10,'Subject for Pledge Acknowledgment','2017-06-20 15:03:58',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(61,NULL,10,'Subject for Pledge Acknowledgment','2018-03-13 08:31:35',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(62,NULL,9,'Subject for Tell a Friend','2018-01-11 05:26:32',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(63,NULL,10,'Subject for Pledge Acknowledgment','2018-05-04 14:44:33',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(64,NULL,9,'Subject for Tell a Friend','2017-06-15 06:48:33',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(65,NULL,10,'Subject for Pledge Acknowledgment','2017-08-01 07:01:21',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(66,NULL,10,'Subject for Pledge Acknowledgment','2017-08-13 10:11:36',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(67,NULL,10,'Subject for Pledge Acknowledgment','2017-08-06 09:59:48',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(68,NULL,9,'Subject for Tell a Friend','2018-02-12 23:34:02',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(69,NULL,9,'Subject for Tell a Friend','2018-02-08 08:24:34',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(70,NULL,9,'Subject for Tell a Friend','2017-10-03 04:40:46',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(71,NULL,10,'Subject for Pledge Acknowledgment','2018-02-13 12:45:16',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(72,NULL,10,'Subject for Pledge Acknowledgment','2017-11-02 06:02:31',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(73,NULL,10,'Subject for Pledge Acknowledgment','2018-02-13 12:35:51',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(74,NULL,9,'Subject for Tell a Friend','2018-05-17 02:10:29',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(75,NULL,10,'Subject for Pledge Acknowledgment','2017-12-01 04:19:14',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(76,NULL,9,'Subject for Tell a Friend','2017-06-18 09:03:20',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(77,NULL,9,'Subject for Tell a Friend','2017-08-29 16:57:01',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(78,NULL,9,'Subject for Tell a Friend','2017-07-14 15:33:35',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(79,NULL,10,'Subject for Pledge Acknowledgment','2018-04-28 13:56:25',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(80,NULL,10,'Subject for Pledge Acknowledgment','2018-02-09 09:07:59',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(81,NULL,10,'Subject for Pledge Acknowledgment','2017-07-27 14:20:44',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(82,NULL,9,'Subject for Tell a Friend','2017-11-19 06:58:26',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(83,NULL,9,'Subject for Tell a Friend','2018-01-04 22:01:09',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(84,NULL,10,'Subject for Pledge Acknowledgment','2018-05-14 14:49:46',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(85,NULL,10,'Subject for Pledge Acknowledgment','2017-09-15 01:56:46',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(86,NULL,9,'Subject for Tell a Friend','2018-04-20 00:11:40',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(87,NULL,10,'Subject for Pledge Acknowledgment','2017-07-02 06:10:46',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(88,NULL,9,'Subject for Tell a Friend','2017-06-07 20:41:29',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(89,NULL,10,'Subject for Pledge Acknowledgment','2017-09-26 11:33:02',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(90,NULL,10,'Subject for Pledge Acknowledgment','2017-10-04 03:18:27',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(91,NULL,10,'Subject for Pledge Acknowledgment','2018-04-15 14:26:44',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(92,NULL,10,'Subject for Pledge Acknowledgment','2017-10-01 00:24:26',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(93,NULL,10,'Subject for Pledge Acknowledgment','2018-02-01 10:00:40',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(94,NULL,9,'Subject for Tell a Friend','2017-12-13 07:16:15',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(95,NULL,10,'Subject for Pledge Acknowledgment','2018-02-22 18:32:19',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(96,NULL,9,'Subject for Tell a Friend','2018-05-15 17:22:33',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(97,NULL,9,'Subject for Tell a Friend','2018-01-16 08:59:55',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(98,NULL,10,'Subject for Pledge Acknowledgment','2017-10-17 00:36:01',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(99,NULL,9,'Subject for Tell a Friend','2017-08-22 18:15:10',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(100,NULL,10,'Subject for Pledge Acknowledgment','2018-03-21 16:30:55',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(101,NULL,9,'Subject for Tell a Friend','2018-04-04 21:36:38',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(102,NULL,9,'Subject for Tell a Friend','2017-06-30 07:28:07',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(103,NULL,9,'Subject for Tell a Friend','2018-02-23 19:16:05',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(104,NULL,10,'Subject for Pledge Acknowledgment','2018-01-07 11:31:23',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(105,NULL,10,'Subject for Pledge Acknowledgment','2018-03-05 04:22:19',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(106,NULL,9,'Subject for Tell a Friend','2018-05-20 05:25:53',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(107,NULL,10,'Subject for Pledge Acknowledgment','2018-04-28 07:31:48',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(108,NULL,9,'Subject for Tell a Friend','2017-05-22 13:14:23',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(109,NULL,10,'Subject for Pledge Acknowledgment','2017-08-25 12:50:32',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(110,NULL,9,'Subject for Tell a Friend','2017-12-04 21:05:13',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(111,NULL,10,'Subject for Pledge Acknowledgment','2017-08-13 14:55:56',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(112,NULL,10,'Subject for Pledge Acknowledgment','2017-06-05 09:20:26',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(113,NULL,10,'Subject for Pledge Acknowledgment','2018-04-18 22:14:01',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(114,NULL,9,'Subject for Tell a Friend','2018-01-05 01:53:35',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(115,NULL,9,'Subject for Tell a Friend','2018-01-21 13:54:41',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(116,NULL,10,'Subject for Pledge Acknowledgment','2018-05-09 17:06:06',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(117,NULL,10,'Subject for Pledge Acknowledgment','2017-08-07 23:56:29',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(118,NULL,9,'Subject for Tell a Friend','2018-03-22 10:19:02',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(119,NULL,9,'Subject for Tell a Friend','2018-02-26 16:33:32',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(120,NULL,10,'Subject for Pledge Acknowledgment','2017-06-09 02:46:57',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(121,NULL,9,'Subject for Tell a Friend','2018-02-14 16:56:09',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(122,NULL,9,'Subject for Tell a Friend','2018-01-06 23:32:09',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(123,NULL,10,'Subject for Pledge Acknowledgment','2018-04-25 12:04:22',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(124,NULL,9,'Subject for Tell a Friend','2018-02-08 16:44:08',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(125,NULL,9,'Subject for Tell a Friend','2018-03-12 08:12:38',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(126,NULL,9,'Subject for Tell a Friend','2017-09-05 23:58:15',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(127,NULL,10,'Subject for Pledge Acknowledgment','2018-04-19 03:28:40',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(128,NULL,10,'Subject for Pledge Acknowledgment','2018-02-02 05:29:53',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(129,NULL,10,'Subject for Pledge Acknowledgment','2017-10-02 00:25:59',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(130,NULL,9,'Subject for Tell a Friend','2017-12-23 03:27:29',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(131,NULL,10,'Subject for Pledge Acknowledgment','2017-06-11 11:48:19',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(132,NULL,9,'Subject for Tell a Friend','2018-05-18 06:05:07',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(133,NULL,9,'Subject for Tell a Friend','2017-11-02 08:29:50',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(134,NULL,10,'Subject for Pledge Acknowledgment','2018-04-07 11:46:54',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(135,NULL,10,'Subject for Pledge Acknowledgment','2017-10-16 15:06:04',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(136,NULL,9,'Subject for Tell a Friend','2018-05-17 19:32:16',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(137,NULL,10,'Subject for Pledge Acknowledgment','2018-05-05 07:38:11',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(138,NULL,9,'Subject for Tell a Friend','2017-08-27 17:18:23',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(139,NULL,9,'Subject for Tell a Friend','2018-04-20 08:56:15',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(140,NULL,10,'Subject for Pledge Acknowledgment','2018-01-17 16:03:01',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(141,NULL,9,'Subject for Tell a Friend','2017-09-30 13:54:58',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(142,NULL,9,'Subject for Tell a Friend','2017-06-22 22:49:56',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(143,NULL,9,'Subject for Tell a Friend','2018-05-09 11:13:25',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(144,NULL,9,'Subject for Tell a Friend','2017-05-29 09:37:49',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(145,NULL,9,'Subject for Tell a Friend','2017-06-19 09:20:16',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(146,NULL,9,'Subject for Tell a Friend','2018-04-14 01:59:08',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(147,NULL,9,'Subject for Tell a Friend','2017-12-18 20:35:28',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(148,NULL,9,'Subject for Tell a Friend','2017-09-14 03:14:28',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(149,NULL,9,'Subject for Tell a Friend','2018-01-31 03:57:07',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(150,NULL,10,'Subject for Pledge Acknowledgment','2018-01-23 00:56:15',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(151,NULL,9,'Subject for Tell a Friend','2017-06-24 13:28:55',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(152,NULL,9,'Subject for Tell a Friend','2018-03-21 05:04:20',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(153,NULL,9,'Subject for Tell a Friend','2017-11-23 14:54:07',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(154,NULL,10,'Subject for Pledge Acknowledgment','2017-09-02 03:28:27',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(155,NULL,10,'Subject for Pledge Acknowledgment','2018-03-25 18:51:47',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(156,NULL,9,'Subject for Tell a Friend','2017-07-06 23:14:36',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(157,NULL,10,'Subject for Pledge Acknowledgment','2018-03-31 19:35:32',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(158,NULL,10,'Subject for Pledge Acknowledgment','2017-11-10 13:52:35',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(159,NULL,10,'Subject for Pledge Acknowledgment','2018-02-25 10:13:59',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(160,NULL,9,'Subject for Tell a Friend','2017-11-09 22:18:04',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(161,NULL,9,'Subject for Tell a Friend','2017-11-18 14:49:37',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(162,NULL,9,'Subject for Tell a Friend','2017-11-15 12:06:58',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(163,NULL,10,'Subject for Pledge Acknowledgment','2017-12-24 08:03:02',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(164,NULL,10,'Subject for Pledge Acknowledgment','2017-10-27 12:57:42',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(165,NULL,9,'Subject for Tell a Friend','2018-01-27 12:44:06',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(166,NULL,10,'Subject for Pledge Acknowledgment','2018-02-19 10:51:53',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(167,NULL,9,'Subject for Tell a Friend','2017-11-13 00:38:50',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(168,NULL,10,'Subject for Pledge Acknowledgment','2018-05-16 17:29:31',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(169,NULL,10,'Subject for Pledge Acknowledgment','2018-04-06 23:33:05',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(170,NULL,9,'Subject for Tell a Friend','2017-08-08 05:26:41',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(171,NULL,10,'Subject for Pledge Acknowledgment','2017-05-27 10:59:14',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(172,NULL,9,'Subject for Tell a Friend','2017-07-27 06:53:08',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(173,NULL,9,'Subject for Tell a Friend','2018-02-09 19:12:28',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(174,NULL,9,'Subject for Tell a Friend','2018-01-19 13:17:01',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(175,NULL,9,'Subject for Tell a Friend','2017-10-07 09:36:05',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(176,NULL,9,'Subject for Tell a Friend','2017-12-09 15:55:13',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(177,NULL,9,'Subject for Tell a Friend','2018-04-13 05:37:45',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(178,NULL,10,'Subject for Pledge Acknowledgment','2017-08-01 22:28:31',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(179,NULL,9,'Subject for Tell a Friend','2017-12-18 13:24:58',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(180,NULL,9,'Subject for Tell a Friend','2018-03-26 03:42:09',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(181,NULL,9,'Subject for Tell a Friend','2018-04-24 18:26:01',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(182,NULL,9,'Subject for Tell a Friend','2017-08-30 10:59:16',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(183,NULL,10,'Subject for Pledge Acknowledgment','2018-03-04 19:56:09',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(184,NULL,9,'Subject for Tell a Friend','2018-02-21 19:46:48',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(185,NULL,10,'Subject for Pledge Acknowledgment','2017-11-13 22:57:57',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(186,NULL,10,'Subject for Pledge Acknowledgment','2018-01-13 20:53:46',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(187,NULL,9,'Subject for Tell a Friend','2017-06-11 19:08:20',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(188,NULL,9,'Subject for Tell a Friend','2017-09-19 08:38:45',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(189,NULL,10,'Subject for Pledge Acknowledgment','2018-05-16 10:40:07',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(190,NULL,9,'Subject for Tell a Friend','2018-05-14 00:10:52',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(191,NULL,10,'Subject for Pledge Acknowledgment','2017-08-07 21:07:43',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(192,NULL,10,'Subject for Pledge Acknowledgment','2017-10-18 01:49:16',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(193,NULL,10,'Subject for Pledge Acknowledgment','2017-12-17 17:24:03',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(194,NULL,10,'Subject for Pledge Acknowledgment','2017-11-11 20:38:29',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(195,NULL,9,'Subject for Tell a Friend','2017-08-10 12:18:58',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(196,NULL,9,'Subject for Tell a Friend','2018-02-15 13:41:23',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(197,NULL,10,'Subject for Pledge Acknowledgment','2017-10-02 21:56:18',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(198,NULL,9,'Subject for Tell a Friend','2017-05-31 02:38:02',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(199,NULL,9,'Subject for Tell a Friend','2017-10-29 06:07:20',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(200,NULL,10,'Subject for Pledge Acknowledgment','2017-06-25 17:09:35',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(201,NULL,9,'Subject for Tell a Friend','2018-05-01 20:06:50',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(202,NULL,9,'Subject for Tell a Friend','2017-07-19 07:27:50',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(203,NULL,9,'Subject for Tell a Friend','2018-05-01 21:35:22',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(204,NULL,9,'Subject for Tell a Friend','2017-12-19 13:46:10',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(205,NULL,9,'Subject for Tell a Friend','2017-09-09 12:15:10',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(206,NULL,10,'Subject for Pledge Acknowledgment','2018-05-13 12:37:59',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(207,NULL,10,'Subject for Pledge Acknowledgment','2017-07-26 21:33:40',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(208,NULL,10,'Subject for Pledge Acknowledgment','2017-10-03 20:28:53',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(209,NULL,10,'Subject for Pledge Acknowledgment','2017-12-22 15:43:50',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(210,NULL,9,'Subject for Tell a Friend','2018-02-26 17:07:28',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(211,NULL,9,'Subject for Tell a Friend','2017-07-22 20:05:28',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(212,NULL,10,'Subject for Pledge Acknowledgment','2017-11-27 22:58:31',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(213,NULL,9,'Subject for Tell a Friend','2017-11-22 00:39:44',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(214,NULL,10,'Subject for Pledge Acknowledgment','2017-06-16 07:04:24',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(215,NULL,9,'Subject for Tell a Friend','2017-05-23 10:58:20',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(216,NULL,9,'Subject for Tell a Friend','2018-03-08 23:56:35',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(217,NULL,10,'Subject for Pledge Acknowledgment','2017-12-25 08:44:36',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(218,NULL,9,'Subject for Tell a Friend','2017-06-11 22:28:15',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(219,NULL,9,'Subject for Tell a Friend','2018-05-03 11:32:54',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(220,NULL,9,'Subject for Tell a Friend','2018-03-11 00:25:38',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(221,NULL,9,'Subject for Tell a Friend','2018-04-25 17:15:06',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(222,NULL,10,'Subject for Pledge Acknowledgment','2017-07-09 06:28:37',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(223,NULL,10,'Subject for Pledge Acknowledgment','2018-04-28 17:20:13',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(224,NULL,9,'Subject for Tell a Friend','2017-06-30 04:15:09',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(225,NULL,9,'Subject for Tell a Friend','2017-11-24 14:30:55',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(226,NULL,9,'Subject for Tell a Friend','2018-01-19 08:10:07',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(227,NULL,9,'Subject for Tell a Friend','2017-07-10 00:38:45',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(228,NULL,9,'Subject for Tell a Friend','2018-01-14 19:24:11',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(229,NULL,9,'Subject for Tell a Friend','2017-08-01 08:56:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(230,NULL,10,'Subject for Pledge Acknowledgment','2017-06-27 22:36:16',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(231,NULL,10,'Subject for Pledge Acknowledgment','2017-12-29 23:38:06',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(232,NULL,10,'Subject for Pledge Acknowledgment','2017-12-03 20:18:56',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(233,NULL,9,'Subject for Tell a Friend','2017-08-11 22:44:55',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(234,NULL,10,'Subject for Pledge Acknowledgment','2017-06-07 00:23:56',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(235,NULL,9,'Subject for Tell a Friend','2017-06-28 04:07:22',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(236,NULL,9,'Subject for Tell a Friend','2017-10-11 10:19:08',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(237,NULL,9,'Subject for Tell a Friend','2017-12-05 03:50:14',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(238,NULL,10,'Subject for Pledge Acknowledgment','2017-12-20 06:04:20',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(239,NULL,10,'Subject for Pledge Acknowledgment','2017-08-04 00:35:54',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(240,NULL,9,'Subject for Tell a Friend','2017-06-22 02:29:47',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(241,NULL,10,'Subject for Pledge Acknowledgment','2018-04-29 03:41:23',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(242,NULL,10,'Subject for Pledge Acknowledgment','2018-04-11 20:20:23',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(243,NULL,9,'Subject for Tell a Friend','2017-09-07 03:23:25',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(244,NULL,9,'Subject for Tell a Friend','2018-02-15 02:55:05',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(245,NULL,10,'Subject for Pledge Acknowledgment','2017-08-31 19:29:44',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(246,NULL,9,'Subject for Tell a Friend','2017-11-18 00:53:55',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(247,NULL,10,'Subject for Pledge Acknowledgment','2017-05-31 22:40:07',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(248,NULL,10,'Subject for Pledge Acknowledgment','2017-06-03 21:33:23',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(249,NULL,10,'Subject for Pledge Acknowledgment','2017-09-24 05:22:20',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(250,NULL,9,'Subject for Tell a Friend','2018-01-09 23:51:29',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(251,NULL,9,'Subject for Tell a Friend','2017-10-04 04:05:51',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(252,NULL,10,'Subject for Pledge Acknowledgment','2017-12-05 11:32:31',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(253,NULL,9,'Subject for Tell a Friend','2017-06-21 05:36:10',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(254,NULL,9,'Subject for Tell a Friend','2017-09-02 19:49:16',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(255,NULL,9,'Subject for Tell a Friend','2017-08-12 07:06:56',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(256,NULL,9,'Subject for Tell a Friend','2018-04-07 07:28:05',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(257,NULL,9,'Subject for Tell a Friend','2018-02-23 09:01:29',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(258,NULL,10,'Subject for Pledge Acknowledgment','2017-06-30 08:59:53',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(259,NULL,10,'Subject for Pledge Acknowledgment','2017-11-10 16:13:21',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(260,NULL,10,'Subject for Pledge Acknowledgment','2017-07-04 13:40:53',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(261,NULL,9,'Subject for Tell a Friend','2017-09-11 03:21:57',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(262,NULL,9,'Subject for Tell a Friend','2018-03-04 23:03:53',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(263,NULL,10,'Subject for Pledge Acknowledgment','2017-10-04 00:26:05',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(264,NULL,10,'Subject for Pledge Acknowledgment','2017-10-29 08:04:43',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(265,NULL,9,'Subject for Tell a Friend','2017-08-14 02:10:54',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(266,NULL,9,'Subject for Tell a Friend','2018-01-05 22:11:16',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(267,NULL,9,'Subject for Tell a Friend','2017-12-30 14:37:34',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(268,NULL,9,'Subject for Tell a Friend','2018-05-06 01:05:21',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(269,NULL,9,'Subject for Tell a Friend','2017-06-19 19:39:20',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(270,NULL,10,'Subject for Pledge Acknowledgment','2018-05-06 18:42:06',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(271,NULL,10,'Subject for Pledge Acknowledgment','2017-05-25 10:09:05',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(272,NULL,10,'Subject for Pledge Acknowledgment','2018-01-20 09:00:39',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(273,NULL,9,'Subject for Tell a Friend','2017-06-24 08:53:09',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(274,NULL,10,'Subject for Pledge Acknowledgment','2017-11-05 20:48:56',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(275,NULL,9,'Subject for Tell a Friend','2018-05-06 19:52:32',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(276,NULL,9,'Subject for Tell a Friend','2017-12-08 09:21:20',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(277,NULL,9,'Subject for Tell a Friend','2017-12-17 15:30:37',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(278,NULL,10,'Subject for Pledge Acknowledgment','2017-12-17 20:42:01',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(279,NULL,10,'Subject for Pledge Acknowledgment','2017-10-07 17:15:23',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(280,NULL,9,'Subject for Tell a Friend','2017-09-25 08:17:37',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(281,NULL,9,'Subject for Tell a Friend','2018-03-25 12:52:13',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(282,NULL,10,'Subject for Pledge Acknowledgment','2017-07-14 22:16:02',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(283,NULL,9,'Subject for Tell a Friend','2018-04-12 18:30:30',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(284,NULL,10,'Subject for Pledge Acknowledgment','2018-02-19 02:21:35',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(285,NULL,10,'Subject for Pledge Acknowledgment','2018-01-04 15:26:38',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(286,NULL,9,'Subject for Tell a Friend','2017-11-28 13:09:33',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(287,NULL,9,'Subject for Tell a Friend','2018-01-08 12:59:55',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(288,NULL,9,'Subject for Tell a Friend','2017-08-14 16:25:32',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(289,NULL,10,'Subject for Pledge Acknowledgment','2017-09-14 05:50:46',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(290,NULL,9,'Subject for Tell a Friend','2018-01-02 08:38:40',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(291,NULL,9,'Subject for Tell a Friend','2017-11-09 04:32:22',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(292,NULL,10,'Subject for Pledge Acknowledgment','2018-04-28 16:39:30',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(293,NULL,9,'Subject for Tell a Friend','2017-12-21 10:17:05',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(294,NULL,9,'Subject for Tell a Friend','2017-09-03 23:31:39',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(295,NULL,9,'Subject for Tell a Friend','2018-02-01 12:52:57',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(296,NULL,10,'Subject for Pledge Acknowledgment','2018-03-20 10:32:08',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(297,NULL,10,'Subject for Pledge Acknowledgment','2017-11-24 18:53:44',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(298,NULL,10,'Subject for Pledge Acknowledgment','2017-07-08 06:14:10',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(299,NULL,10,'Subject for Pledge Acknowledgment','2018-03-23 02:33:29',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(300,NULL,10,'Subject for Pledge Acknowledgment','2018-04-17 00:24:54',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(301,NULL,9,'Subject for Tell a Friend','2017-09-26 03:03:42',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(302,NULL,9,'Subject for Tell a Friend','2017-09-08 16:29:23',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(303,NULL,10,'Subject for Pledge Acknowledgment','2017-10-02 16:47:28',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(304,NULL,10,'Subject for Pledge Acknowledgment','2018-01-02 00:10:22',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(305,NULL,10,'Subject for Pledge Acknowledgment','2017-11-27 18:30:58',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(306,NULL,9,'Subject for Tell a Friend','2017-08-06 22:58:37',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(307,NULL,10,'Subject for Pledge Acknowledgment','2017-10-28 16:44:24',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(308,NULL,10,'Subject for Pledge Acknowledgment','2017-10-08 21:24:43',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(309,NULL,10,'Subject for Pledge Acknowledgment','2018-04-04 17:22:22',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(310,NULL,9,'Subject for Tell a Friend','2018-04-28 22:13:33',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(311,NULL,9,'Subject for Tell a Friend','2017-11-11 20:18:38',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(312,NULL,10,'Subject for Pledge Acknowledgment','2018-05-04 13:03:01',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(313,NULL,10,'Subject for Pledge Acknowledgment','2017-12-16 07:18:02',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(314,NULL,10,'Subject for Pledge Acknowledgment','2017-08-19 19:19:05',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(315,NULL,9,'Subject for Tell a Friend','2017-09-23 15:14:41',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(316,NULL,10,'Subject for Pledge Acknowledgment','2018-01-13 06:41:24',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(317,NULL,10,'Subject for Pledge Acknowledgment','2017-09-24 04:30:21',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(318,NULL,10,'Subject for Pledge Acknowledgment','2017-07-07 21:57:59',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(319,NULL,9,'Subject for Tell a Friend','2017-10-01 16:13:04',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(320,NULL,10,'Subject for Pledge Acknowledgment','2017-05-23 04:54:13',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(321,NULL,10,'Subject for Pledge Acknowledgment','2017-11-02 20:36:44',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(322,NULL,10,'Subject for Pledge Acknowledgment','2017-11-07 12:47:11',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(323,NULL,10,'Subject for Pledge Acknowledgment','2017-08-15 12:20:38',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(324,NULL,9,'Subject for Tell a Friend','2018-04-12 03:02:50',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(325,NULL,9,'Subject for Tell a Friend','2017-06-22 22:51:40',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(326,NULL,10,'Subject for Pledge Acknowledgment','2017-06-11 22:01:16',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(327,NULL,10,'Subject for Pledge Acknowledgment','2017-07-25 04:51:33',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(328,NULL,10,'Subject for Pledge Acknowledgment','2018-02-16 11:58:02',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(329,NULL,10,'Subject for Pledge Acknowledgment','2018-04-10 20:01:20',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(330,NULL,10,'Subject for Pledge Acknowledgment','2017-08-23 09:01:25',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(331,NULL,10,'Subject for Pledge Acknowledgment','2017-10-31 01:47:13',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(332,NULL,9,'Subject for Tell a Friend','2017-10-18 16:39:36',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(333,NULL,10,'Subject for Pledge Acknowledgment','2017-08-24 22:19:31',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(334,NULL,9,'Subject for Tell a Friend','2017-12-28 18:48:41',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(335,NULL,9,'Subject for Tell a Friend','2017-07-21 05:40:09',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(336,NULL,10,'Subject for Pledge Acknowledgment','2018-04-25 01:27:05',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(337,NULL,10,'Subject for Pledge Acknowledgment','2018-02-20 14:09:46',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(338,NULL,10,'Subject for Pledge Acknowledgment','2017-07-14 09:55:18',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(339,NULL,9,'Subject for Tell a Friend','2017-12-03 03:54:54',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(340,NULL,10,'Subject for Pledge Acknowledgment','2017-11-13 02:03:36',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(341,NULL,9,'Subject for Tell a Friend','2017-05-31 06:02:10',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(342,NULL,9,'Subject for Tell a Friend','2017-11-03 02:32:27',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(343,NULL,10,'Subject for Pledge Acknowledgment','2017-06-18 10:55:31',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(344,NULL,10,'Subject for Pledge Acknowledgment','2017-12-31 23:48:28',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(345,NULL,10,'Subject for Pledge Acknowledgment','2017-10-23 10:54:56',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(346,NULL,9,'Subject for Tell a Friend','2018-01-07 01:51:52',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(347,NULL,10,'Subject for Pledge Acknowledgment','2017-07-22 14:18:20',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(348,NULL,10,'Subject for Pledge Acknowledgment','2017-05-30 14:51:39',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(349,NULL,9,'Subject for Tell a Friend','2017-10-06 07:02:10',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(350,NULL,10,'Subject for Pledge Acknowledgment','2017-08-05 20:00:30',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(351,NULL,9,'Subject for Tell a Friend','2017-09-16 11:44:39',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(352,NULL,9,'Subject for Tell a Friend','2017-10-25 09:30:04',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(353,NULL,10,'Subject for Pledge Acknowledgment','2018-03-14 22:25:20',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(354,NULL,10,'Subject for Pledge Acknowledgment','2018-04-25 06:30:46',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(355,NULL,9,'Subject for Tell a Friend','2018-05-11 04:01:09',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(356,NULL,9,'Subject for Tell a Friend','2017-07-20 08:38:45',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(357,NULL,10,'Subject for Pledge Acknowledgment','2017-11-06 13:36:22',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(358,NULL,10,'Subject for Pledge Acknowledgment','2017-08-14 23:58:15',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(359,NULL,9,'Subject for Tell a Friend','2017-09-05 09:19:26',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(360,NULL,9,'Subject for Tell a Friend','2018-03-27 17:06:41',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(361,NULL,9,'Subject for Tell a Friend','2018-01-22 11:07:11',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(362,NULL,9,'Subject for Tell a Friend','2017-11-23 12:21:37',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(363,NULL,9,'Subject for Tell a Friend','2017-07-02 07:52:35',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(364,NULL,9,'Subject for Tell a Friend','2018-03-20 01:40:34',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(365,NULL,10,'Subject for Pledge Acknowledgment','2018-01-21 15:19:45',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(366,NULL,9,'Subject for Tell a Friend','2017-11-04 20:17:50',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(367,NULL,9,'Subject for Tell a Friend','2017-12-08 02:44:35',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(368,NULL,9,'Subject for Tell a Friend','2017-11-01 12:20:36',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(369,NULL,9,'Subject for Tell a Friend','2018-01-10 16:47:01',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(370,NULL,9,'Subject for Tell a Friend','2017-10-26 18:13:06',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(371,NULL,9,'Subject for Tell a Friend','2017-06-09 06:55:15',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(372,NULL,9,'Subject for Tell a Friend','2018-01-13 02:21:36',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(373,NULL,10,'Subject for Pledge Acknowledgment','2017-11-21 22:51:32',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(374,NULL,10,'Subject for Pledge Acknowledgment','2017-12-31 12:17:27',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(375,NULL,9,'Subject for Tell a Friend','2017-05-26 21:51:05',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(376,NULL,9,'Subject for Tell a Friend','2018-02-25 18:30:18',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(377,NULL,9,'Subject for Tell a Friend','2018-04-29 10:09:49',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(378,NULL,9,'Subject for Tell a Friend','2018-03-26 07:39:23',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(379,NULL,10,'Subject for Pledge Acknowledgment','2017-09-15 11:55:11',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(380,NULL,9,'Subject for Tell a Friend','2017-08-04 15:08:58',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(381,NULL,10,'Subject for Pledge Acknowledgment','2017-12-26 11:39:59',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(382,NULL,9,'Subject for Tell a Friend','2017-08-22 12:33:18',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(383,NULL,9,'Subject for Tell a Friend','2017-06-20 10:22:50',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(384,NULL,9,'Subject for Tell a Friend','2018-04-11 10:10:25',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(385,NULL,9,'Subject for Tell a Friend','2017-07-11 14:25:46',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(386,NULL,10,'Subject for Pledge Acknowledgment','2018-04-09 19:53:24',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(387,NULL,9,'Subject for Tell a Friend','2018-04-12 10:12:14',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:22','2018-05-21 20:27:22'),(388,NULL,9,'Subject for Tell a Friend','2017-10-25 19:08:02',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(389,NULL,9,'Subject for Tell a Friend','2018-01-02 15:30:50',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(390,NULL,9,'Subject for Tell a Friend','2018-03-19 03:38:30',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(391,NULL,10,'Subject for Pledge Acknowledgment','2018-03-21 05:41:27',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(392,NULL,10,'Subject for Pledge Acknowledgment','2018-05-02 00:43:07',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(393,NULL,10,'Subject for Pledge Acknowledgment','2017-11-18 13:14:01',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(394,NULL,9,'Subject for Tell a Friend','2018-01-08 22:36:03',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(395,NULL,10,'Subject for Pledge Acknowledgment','2018-04-28 12:22:50',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(396,NULL,9,'Subject for Tell a Friend','2018-04-25 07:21:15',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(397,NULL,9,'Subject for Tell a Friend','2017-06-14 16:40:55',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(398,NULL,9,'Subject for Tell a Friend','2018-04-19 15:32:25',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(399,NULL,10,'Subject for Pledge Acknowledgment','2017-06-11 23:37:11',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(400,NULL,9,'Subject for Tell a Friend','2017-10-24 14:31:44',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(401,NULL,10,'Subject for Pledge Acknowledgment','2017-07-07 18:34:24',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(402,NULL,10,'Subject for Pledge Acknowledgment','2017-10-23 14:01:21',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(403,NULL,10,'Subject for Pledge Acknowledgment','2018-03-15 17:28:52',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(404,NULL,9,'Subject for Tell a Friend','2018-05-11 15:47:10',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(405,NULL,10,'Subject for Pledge Acknowledgment','2017-08-28 06:00:29',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(406,NULL,9,'Subject for Tell a Friend','2018-02-22 22:01:23',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(407,NULL,10,'Subject for Pledge Acknowledgment','2017-08-12 14:51:30',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(408,NULL,9,'Subject for Tell a Friend','2017-06-19 16:56:56',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(409,NULL,10,'Subject for Pledge Acknowledgment','2017-07-24 06:26:15',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(410,NULL,10,'Subject for Pledge Acknowledgment','2017-09-01 22:42:29',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(411,NULL,9,'Subject for Tell a Friend','2017-08-11 09:09:35',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(412,NULL,9,'Subject for Tell a Friend','2018-01-26 19:53:57',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(413,NULL,10,'Subject for Pledge Acknowledgment','2017-11-24 08:25:44',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(414,NULL,10,'Subject for Pledge Acknowledgment','2017-08-01 04:35:07',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(415,NULL,10,'Subject for Pledge Acknowledgment','2017-11-25 06:41:08',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(416,NULL,10,'Subject for Pledge Acknowledgment','2017-10-10 20:17:33',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(417,NULL,10,'Subject for Pledge Acknowledgment','2017-07-29 11:04:28',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(418,NULL,9,'Subject for Tell a Friend','2017-06-16 07:24:36',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(419,NULL,9,'Subject for Tell a Friend','2018-03-27 15:55:55',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(420,NULL,10,'Subject for Pledge Acknowledgment','2017-12-15 15:39:23',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(421,NULL,10,'Subject for Pledge Acknowledgment','2018-03-30 04:40:46',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(422,NULL,10,'Subject for Pledge Acknowledgment','2017-11-12 00:33:52',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(423,NULL,10,'Subject for Pledge Acknowledgment','2017-08-18 09:21:27',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(424,NULL,9,'Subject for Tell a Friend','2017-10-22 02:35:20',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(425,NULL,9,'Subject for Tell a Friend','2018-03-22 01:50:28',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(426,NULL,10,'Subject for Pledge Acknowledgment','2017-10-20 21:45:21',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(427,NULL,10,'Subject for Pledge Acknowledgment','2018-03-21 11:08:57',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(428,NULL,10,'Subject for Pledge Acknowledgment','2017-10-22 14:41:33',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(429,NULL,10,'Subject for Pledge Acknowledgment','2017-10-11 11:29:57',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(430,NULL,9,'Subject for Tell a Friend','2018-01-13 02:53:58',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(431,NULL,9,'Subject for Tell a Friend','2017-07-25 07:40:21',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(432,NULL,10,'Subject for Pledge Acknowledgment','2017-09-02 16:51:21',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(433,NULL,10,'Subject for Pledge Acknowledgment','2017-11-24 23:52:41',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(434,NULL,10,'Subject for Pledge Acknowledgment','2017-06-20 14:52:04',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(435,NULL,9,'Subject for Tell a Friend','2018-04-25 23:18:26',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(436,NULL,9,'Subject for Tell a Friend','2018-05-07 08:57:30',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(437,NULL,10,'Subject for Pledge Acknowledgment','2017-07-30 08:27:41',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(438,NULL,9,'Subject for Tell a Friend','2017-07-09 07:14:18',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(439,NULL,9,'Subject for Tell a Friend','2017-07-10 11:49:04',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(440,NULL,10,'Subject for Pledge Acknowledgment','2017-06-08 11:13:13',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(441,NULL,9,'Subject for Tell a Friend','2018-01-29 08:25:16',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(442,NULL,10,'Subject for Pledge Acknowledgment','2018-02-17 04:28:10',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(443,NULL,9,'Subject for Tell a Friend','2017-06-07 19:59:05',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(444,NULL,10,'Subject for Pledge Acknowledgment','2018-02-02 15:33:42',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(445,NULL,10,'Subject for Pledge Acknowledgment','2018-03-09 19:47:14',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(446,NULL,10,'Subject for Pledge Acknowledgment','2018-04-20 01:27:33',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(447,NULL,10,'Subject for Pledge Acknowledgment','2018-03-02 21:47:22',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(448,NULL,9,'Subject for Tell a Friend','2018-02-11 05:19:24',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(449,NULL,9,'Subject for Tell a Friend','2018-02-24 07:09:35',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(450,NULL,10,'Subject for Pledge Acknowledgment','2017-06-12 00:30:12',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(451,1,6,'$ 125.00-Apr 2007 Mailer 1','2010-04-11 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(452,2,6,'$ 50.00-Online: Save the Penguins','2010-03-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(453,3,6,'$ 25.00-Apr 2007 Mailer 1','2010-04-29 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(454,4,6,'$ 50.00-Apr 2007 Mailer 1','2010-04-11 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(455,5,6,'$ 500.00-Apr 2007 Mailer 1','2010-04-15 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(456,6,6,'$ 175.00-Apr 2007 Mailer 1','2010-04-11 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(457,7,6,'$ 50.00-Online: Save the Penguins','2010-03-27 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(458,8,6,'$ 10.00-Online: Save the Penguins','2010-03-08 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(459,9,6,'$ 250.00-Online: Save the Penguins','2010-04-22 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(460,10,6,NULL,'2009-07-01 11:53:50',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(461,11,6,NULL,'2009-07-01 12:55:41',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(462,12,6,NULL,'2009-10-01 11:53:50',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(463,13,6,NULL,'2009-12-01 12:55:41',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(464,1,7,'General','2018-05-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(465,2,7,'Student','2018-05-20 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(466,3,7,'General','2018-05-19 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(467,4,7,'Student','2018-05-18 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(468,5,7,'General','2016-04-19 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(469,6,7,'Student','2018-05-16 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(470,7,7,'General','2018-05-15 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(471,8,7,'Student','2018-05-14 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(472,9,7,'General','2018-05-13 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(473,10,7,'Student','2017-05-12 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(474,11,7,'Lifetime','2018-05-11 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(475,12,7,'Student','2018-05-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(476,13,7,'General','2018-05-09 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(477,14,7,'Student','2018-05-08 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(478,15,7,'Student','2017-05-07 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(479,16,7,'Student','2018-05-06 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(480,17,7,'General','2018-05-05 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(481,18,7,'Student','2018-05-04 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(482,19,7,'General','2018-05-03 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(483,20,7,'General','2015-12-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(484,21,7,'General','2018-05-01 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(485,22,7,'Lifetime','2018-04-30 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(486,23,7,'General','2018-04-29 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(487,24,7,'Student','2018-04-28 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(488,25,7,'Student','2017-04-27 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(489,26,7,'Student','2018-04-26 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(490,27,7,'General','2018-04-25 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(491,28,7,'Student','2018-04-24 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(492,29,7,'General','2018-04-23 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(493,30,7,'Student','2017-04-22 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(494,14,6,'$ 100.00 - General Membership: Offline signup','2018-05-22 01:57:23',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(495,15,6,'$ 50.00 - Student Membership: Offline signup','2018-05-22 01:57:23',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(496,16,6,'$ 100.00 - General Membership: Offline signup','2018-05-22 01:57:23',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(497,17,6,'$ 50.00 - Student Membership: Offline signup','2018-05-22 01:57:23',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(498,18,6,'$ 100.00 - General Membership: Offline signup','2018-05-22 01:57:23',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(499,19,6,'$ 50.00 - Student Membership: Offline signup','2018-05-22 01:57:23',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(500,20,6,'$ 100.00 - General Membership: Offline signup','2018-05-22 01:57:23',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(501,21,6,'$ 50.00 - Student Membership: Offline signup','2018-05-22 01:57:23',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(502,22,6,'$ 100.00 - General Membership: Offline signup','2018-05-22 01:57:23',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(503,23,6,'$ 50.00 - Student Membership: Offline signup','2018-05-22 01:57:23',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(504,24,6,'$ 1200.00 - Lifetime Membership: Offline signup','2018-05-22 01:57:23',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(505,25,6,'$ 50.00 - Student Membership: Offline signup','2018-05-22 01:57:23',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(506,26,6,'$ 100.00 - General Membership: Offline signup','2018-05-22 01:57:23',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(507,27,6,'$ 50.00 - Student Membership: Offline signup','2018-05-22 01:57:23',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(508,28,6,'$ 50.00 - Student Membership: Offline signup','2018-05-22 01:57:23',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(509,29,6,'$ 50.00 - Student Membership: Offline signup','2018-05-22 01:57:23',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(510,30,6,'$ 100.00 - General Membership: Offline signup','2018-05-22 01:57:23',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(511,31,6,'$ 50.00 - Student Membership: Offline signup','2018-05-22 01:57:23',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(512,32,6,'$ 100.00 - General Membership: Offline signup','2018-05-22 01:57:23',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(513,33,6,'$ 100.00 - General Membership: Offline signup','2018-05-22 01:57:23',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(514,34,6,'$ 100.00 - General Membership: Offline signup','2018-05-22 01:57:23',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(515,35,6,'$ 1200.00 - Lifetime Membership: Offline signup','2018-05-22 01:57:23',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(516,36,6,'$ 100.00 - General Membership: Offline signup','2018-05-22 01:57:23',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(517,37,6,'$ 50.00 - Student Membership: Offline signup','2018-05-22 01:57:23',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(518,38,6,'$ 50.00 - Student Membership: Offline signup','2018-05-22 01:57:23',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(519,39,6,'$ 50.00 - Student Membership: Offline signup','2018-05-22 01:57:23',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(520,40,6,'$ 100.00 - General Membership: Offline signup','2018-05-22 01:57:23',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(521,41,6,'$ 50.00 - Student Membership: Offline signup','2018-05-22 01:57:23',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(522,42,6,'$ 100.00 - General Membership: Offline signup','2018-05-22 01:57:23',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(523,43,6,'$ 50.00 - Student Membership: Offline signup','2018-05-22 01:57:23',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(525,1,5,'NULL','2009-01-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(526,2,5,'NULL','2008-05-07 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(527,3,5,'NULL','2008-05-05 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(528,4,5,'NULL','2008-10-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(529,5,5,'NULL','2008-01-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(530,6,5,'NULL','2008-03-05 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(531,7,5,'NULL','2009-07-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(532,8,5,'NULL','2009-03-07 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(533,9,5,'NULL','2008-02-05 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(534,10,5,'NULL','2008-02-01 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(535,11,5,'NULL','2009-01-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(536,12,5,'NULL','2009-03-06 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(537,13,5,'NULL','2008-06-04 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(538,14,5,'NULL','2008-01-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(539,15,5,'NULL','2008-07-04 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(540,16,5,'NULL','2009-01-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(541,17,5,'NULL','2008-01-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(542,18,5,'NULL','2009-03-05 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(543,19,5,'NULL','2008-10-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(544,20,5,'NULL','2009-01-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(545,21,5,'NULL','2008-03-25 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(546,22,5,'NULL','2009-10-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(547,23,5,'NULL','2008-01-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(548,24,5,'NULL','2008-03-11 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(549,25,5,'NULL','2008-04-05 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(550,26,5,'NULL','2009-01-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(551,27,5,'NULL','2008-05-07 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(552,28,5,'NULL','2009-12-12 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(553,29,5,'NULL','2009-12-13 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(554,30,5,'NULL','2009-12-14 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(555,31,5,'NULL','2009-12-15 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(556,32,5,'NULL','2009-07-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(557,33,5,'NULL','2009-03-07 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(558,34,5,'NULL','2009-12-15 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(559,35,5,'NULL','2009-12-13 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(560,36,5,'NULL','2009-01-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(561,37,5,'NULL','2009-03-06 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(562,38,5,'NULL','2009-12-13 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(563,39,5,'NULL','2008-01-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(564,40,5,'NULL','2009-12-14 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(565,41,5,'NULL','2009-01-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(566,42,5,'NULL','2009-12-15 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(567,43,5,'NULL','2009-03-05 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(568,44,5,'NULL','2009-12-13 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(569,45,5,'NULL','2009-01-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(570,46,5,'NULL','2009-12-13 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(571,47,5,'NULL','2009-10-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(572,48,5,'NULL','2009-12-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(573,49,5,'NULL','2009-03-11 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(574,50,5,'NULL','2009-04-05 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(575,45,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2018-05-22 01:57:23',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(576,46,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2018-05-22 01:57:23',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(577,47,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2018-05-22 01:57:23',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(578,48,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2018-05-22 01:57:23',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(579,49,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2018-05-22 01:57:23',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(580,50,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2018-05-22 01:57:23',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(581,51,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2018-05-22 01:57:23',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(582,52,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2018-05-22 01:57:23',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(583,53,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2018-05-22 01:57:23',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(584,54,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2018-05-22 01:57:23',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(585,55,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2018-05-22 01:57:23',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(586,56,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2018-05-22 01:57:23',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(587,57,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2018-05-22 01:57:23',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(588,58,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2018-05-22 01:57:23',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(589,59,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2018-05-22 01:57:23',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(590,60,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2018-05-22 01:57:23',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(591,61,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2018-05-22 01:57:23',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(592,62,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2018-05-22 01:57:23',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(593,63,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2018-05-22 01:57:23',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(594,64,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2018-05-22 01:57:23',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(595,65,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2018-05-22 01:57:23',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(596,66,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2018-05-22 01:57:23',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(597,67,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2018-05-22 01:57:23',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(598,68,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2018-05-22 01:57:23',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(599,69,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2018-05-22 01:57:23',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(600,70,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2018-05-22 01:57:23',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(601,71,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2018-05-22 01:57:23',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(602,72,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2018-05-22 01:57:23',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(603,73,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2018-05-22 01:57:23',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(604,74,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2018-05-22 01:57:23',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(605,75,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2018-05-22 01:57:23',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(606,76,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2018-05-22 01:57:23',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(607,77,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2018-05-22 01:57:23',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(608,78,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2018-05-22 01:57:23',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(609,79,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2018-05-22 01:57:23',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(610,80,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2018-05-22 01:57:23',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(611,81,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2018-05-22 01:57:23',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(612,82,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2018-05-22 01:57:23',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(613,83,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2018-05-22 01:57:23',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(614,84,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2018-05-22 01:57:23',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(615,85,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2018-05-22 01:57:23',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(616,86,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2018-05-22 01:57:23',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(617,87,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2018-05-22 01:57:23',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(618,88,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2018-05-22 01:57:23',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(619,89,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2018-05-22 01:57:23',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(620,90,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2018-05-22 01:57:23',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(621,91,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2018-05-22 01:57:23',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(622,92,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2018-05-22 01:57:23',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(623,93,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2018-05-22 01:57:23',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'),(624,94,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2018-05-22 01:57:23',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2018-05-21 20:27:23','2018-05-21 20:27:23'); /*!40000 ALTER TABLE `civicrm_activity` ENABLE KEYS */; UNLOCK TABLES; @@ -97,7 +97,7 @@ UNLOCK TABLES; LOCK TABLES `civicrm_activity_contact` WRITE; /*!40000 ALTER TABLE `civicrm_activity_contact` DISABLE KEYS */; -INSERT INTO `civicrm_activity_contact` (`id`, `activity_id`, `contact_id`, `record_type_id`) VALUES (190,126,1,3),(204,135,2,3),(343,231,2,3),(671,451,2,2),(707,487,2,2),(739,519,2,2),(491,327,3,3),(637,429,3,3),(756,536,3,2),(672,452,4,2),(767,547,4,2),(57,38,5,3),(156,103,5,3),(666,448,5,3),(227,149,6,3),(338,228,6,3),(375,252,6,3),(673,453,6,2),(745,525,6,2),(196,129,7,3),(264,177,7,3),(267,179,8,3),(674,454,8,2),(3,2,9,3),(68,44,9,3),(108,72,9,3),(348,234,9,3),(755,535,9,2),(381,256,10,3),(536,360,10,3),(604,408,10,3),(693,473,10,2),(719,499,10,2),(747,527,10,2),(220,144,11,3),(792,572,11,2),(180,120,12,3),(249,166,12,3),(668,449,12,3),(333,225,13,3),(365,246,13,3),(81,52,14,3),(285,191,14,3),(602,407,14,3),(615,416,14,3),(713,493,14,2),(730,510,14,2),(771,551,14,2),(473,314,15,3),(262,176,16,3),(330,223,16,3),(675,455,16,2),(691,471,16,2),(734,514,16,2),(259,174,17,3),(420,282,17,3),(440,294,17,3),(570,384,17,3),(780,560,17,2),(218,143,18,3),(610,413,18,3),(676,456,19,2),(7,4,20,3),(51,34,20,3),(291,195,20,3),(370,249,20,3),(392,263,20,3),(591,399,20,3),(55,37,21,3),(324,219,21,3),(118,79,24,3),(572,385,24,3),(114,77,25,3),(437,292,25,3),(494,329,25,3),(17,11,26,3),(413,278,26,3),(415,279,26,3),(210,138,27,3),(754,534,27,2),(293,196,28,3),(566,382,28,3),(151,100,29,3),(208,137,29,3),(38,25,30,3),(194,128,30,3),(271,182,30,3),(793,573,30,2),(163,108,31,3),(314,212,31,3),(356,239,31,3),(431,289,31,3),(698,478,31,2),(721,501,31,2),(612,414,32,3),(682,462,32,2),(683,463,32,2),(633,426,34,3),(679,459,34,2),(1,1,35,2),(2,2,35,2),(4,3,35,2),(6,4,35,2),(8,5,35,2),(9,6,35,2),(10,7,35,2),(11,8,35,2),(13,9,35,2),(15,10,35,2),(16,11,35,2),(18,12,35,2),(19,13,35,2),(20,14,35,2),(22,15,35,2),(24,16,35,2),(26,17,35,2),(27,18,35,2),(29,19,35,2),(30,20,35,2),(32,21,35,2),(34,22,35,2),(35,23,35,2),(36,24,35,2),(37,25,35,2),(39,26,35,2),(41,27,35,2),(43,28,35,2),(44,29,35,2),(45,30,35,2),(46,31,35,2),(47,32,35,2),(49,33,35,2),(50,34,35,2),(52,35,35,2),(53,36,35,2),(54,37,35,2),(56,38,35,2),(58,39,35,2),(60,40,35,2),(61,41,35,2),(63,42,35,2),(65,43,35,2),(67,44,35,2),(69,45,35,2),(71,46,35,2),(73,47,35,2),(75,48,35,2),(76,49,35,2),(77,50,35,2),(79,51,35,2),(80,52,35,2),(82,53,35,2),(83,54,35,2),(84,55,35,2),(86,56,35,2),(88,57,35,2),(89,58,35,2),(90,59,35,2),(91,60,35,2),(92,61,35,2),(93,62,35,2),(94,63,35,2),(96,64,35,2),(98,65,35,2),(100,66,35,2),(101,67,35,2),(103,68,35,2),(104,69,35,2),(105,70,35,2),(106,71,35,2),(107,72,35,2),(109,73,35,2),(110,74,35,2),(111,75,35,2),(112,76,35,2),(113,77,35,2),(115,78,35,2),(117,79,35,2),(119,80,35,2),(121,81,35,2),(122,82,35,2),(123,83,35,2),(124,84,35,2),(126,85,35,2),(128,86,35,2),(130,87,35,2),(131,88,35,2),(133,89,35,2),(135,90,35,2),(136,91,35,2),(138,92,35,2),(139,93,35,2),(140,94,35,2),(142,95,35,2),(144,96,35,2),(146,97,35,2),(147,98,35,2),(148,99,35,2),(150,100,35,2),(152,101,35,2),(153,102,35,2),(155,103,35,2),(157,104,35,2),(158,105,35,2),(159,106,35,2),(161,107,35,2),(162,108,35,2),(164,109,35,2),(165,110,35,2),(167,111,35,2),(169,112,35,2),(170,113,35,2),(172,114,35,2),(173,115,35,2),(174,116,35,2),(176,117,35,2),(177,118,35,2),(178,119,35,2),(179,120,35,2),(181,121,35,2),(182,122,35,2),(184,123,35,2),(186,124,35,2),(188,125,35,2),(189,126,35,2),(191,127,35,2),(193,128,35,2),(195,129,35,2),(197,130,35,2),(198,131,35,2),(199,132,35,2),(201,133,35,2),(202,134,35,2),(203,135,35,2),(205,136,35,2),(207,137,35,2),(209,138,35,2),(211,139,35,2),(212,140,35,2),(214,141,35,2),(215,142,35,2),(217,143,35,2),(219,144,35,2),(221,145,35,2),(222,146,35,2),(224,147,35,2),(225,148,35,2),(226,149,35,2),(228,150,35,2),(575,387,35,3),(629,424,35,3),(694,474,35,2),(742,522,35,2),(782,562,35,2),(246,164,36,3),(384,258,36,3),(545,366,36,3),(631,425,36,3),(661,445,36,3),(129,86,37,3),(137,91,37,3),(389,261,38,3),(523,350,38,3),(120,80,39,3),(461,307,39,3),(471,313,39,3),(774,554,39,2),(14,9,40,3),(116,78,40,3),(187,124,40,3),(213,140,40,3),(409,275,40,3),(465,310,40,3),(502,334,40,3),(753,533,40,2),(95,63,41,3),(352,237,41,3),(481,320,41,3),(33,21,42,3),(40,26,42,3),(402,269,42,3),(776,556,42,2),(681,461,43,2),(765,545,43,2),(641,432,44,3),(643,433,44,3),(12,8,45,3),(400,268,45,3),(625,422,45,3),(670,450,45,3),(345,232,46,3),(396,265,46,3),(418,281,46,3),(763,543,46,2),(28,18,47,3),(394,264,48,3),(568,383,48,3),(617,417,48,3),(619,418,48,3),(166,110,50,3),(425,285,50,3),(770,550,50,2),(252,168,51,3),(304,204,51,3),(645,434,51,3),(341,230,52,3),(377,253,52,3),(589,398,52,3),(748,528,52,2),(141,94,53,3),(708,488,53,2),(727,507,53,2),(143,95,54,3),(448,299,54,3),(450,300,54,3),(275,184,55,3),(467,311,55,3),(21,14,56,3),(59,39,56,3),(64,42,56,3),(582,392,57,3),(697,477,57,2),(736,516,57,2),(301,202,58,3),(758,538,58,2),(695,475,59,2),(735,515,59,2),(433,290,60,3),(506,336,60,3),(5,3,62,3),(538,361,62,3),(766,546,62,2),(125,84,64,3),(554,372,65,3),(783,563,65,2),(687,467,66,2),(732,512,66,2),(78,50,67,3),(206,136,67,3),(649,436,67,3),(760,540,67,2),(231,152,68,3),(62,41,69,3),(183,122,69,3),(42,27,70,3),(540,362,70,3),(145,96,71,3),(149,99,71,3),(680,460,71,2),(25,16,72,3),(127,85,72,3),(445,297,72,3),(779,559,72,2),(175,116,73,3),(528,354,73,3),(761,541,73,2),(72,46,74,3),(532,357,74,3),(579,390,74,3),(787,567,74,2),(281,188,75,3),(299,201,75,3),(508,337,75,3),(552,371,75,3),(775,555,75,2),(74,47,76,3),(171,113,76,3),(354,238,76,3),(484,322,76,3),(185,123,77,3),(321,217,77,3),(452,301,77,3),(23,15,78,3),(134,89,78,3),(459,306,78,3),(517,345,78,3),(623,421,78,3),(706,486,78,2),(726,506,78,2),(223,146,79,3),(647,435,79,3),(289,194,81,3),(772,552,81,2),(627,423,82,3),(677,457,82,2),(99,65,83,3),(132,88,83,3),(358,240,83,3),(794,574,83,2),(429,288,85,3),(689,469,85,2),(733,513,85,2),(160,106,86,3),(154,102,87,3),(422,283,87,3),(664,447,87,3),(200,132,88,3),(87,56,89,3),(85,55,90,3),(216,142,90,3),(335,226,90,3),(435,291,90,3),(168,111,91,3),(317,214,91,3),(654,440,91,3),(657,442,91,3),(757,537,91,2),(70,45,92,3),(192,127,92,3),(367,247,92,3),(469,312,92,3),(593,400,92,3),(678,458,92,2),(277,185,93,3),(327,221,93,3),(66,43,95,3),(97,64,95,3),(308,207,95,3),(454,302,95,3),(499,332,96,3),(550,370,96,3),(790,570,96,2),(236,156,97,3),(273,183,97,3),(479,319,97,3),(600,406,97,3),(562,379,98,3),(48,32,99,3),(102,67,99,3),(373,251,99,3),(386,259,99,3),(768,548,99,2),(31,20,100,3),(244,163,100,3),(488,325,100,3),(497,331,100,3),(443,296,101,3),(504,335,101,3),(759,539,101,2),(451,301,104,2),(453,302,104,2),(455,303,104,2),(456,304,104,2),(457,305,104,2),(458,306,104,2),(460,307,104,2),(462,308,104,2),(463,309,104,2),(464,310,104,2),(466,311,104,2),(468,312,104,2),(470,313,104,2),(472,314,104,2),(474,315,104,2),(475,316,104,2),(476,317,104,2),(477,318,104,2),(478,319,104,2),(480,320,104,2),(482,321,104,2),(483,322,104,2),(485,323,104,2),(486,324,104,2),(487,325,104,2),(489,326,104,2),(490,327,104,2),(492,328,104,2),(493,329,104,2),(495,330,104,2),(496,331,104,2),(498,332,104,2),(500,333,104,2),(501,334,104,2),(503,335,104,2),(505,336,104,2),(507,337,104,2),(509,338,104,2),(510,339,104,2),(511,340,104,2),(512,341,104,2),(513,342,104,2),(514,343,104,2),(515,344,104,2),(516,345,104,2),(518,346,104,2),(519,347,104,2),(520,348,104,2),(521,349,104,2),(522,350,104,2),(524,351,104,2),(525,352,104,2),(526,353,104,2),(527,354,104,2),(529,355,104,2),(530,356,104,2),(531,357,104,2),(533,358,104,2),(534,359,104,2),(535,360,104,2),(537,361,104,2),(539,362,104,2),(541,363,104,2),(542,364,104,2),(543,365,104,2),(544,366,104,2),(546,367,104,2),(547,368,104,2),(548,369,104,2),(549,370,104,2),(551,371,104,2),(553,372,104,2),(555,373,104,2),(556,374,104,2),(557,375,104,2),(558,376,104,2),(559,377,104,2),(560,378,104,2),(561,379,104,2),(563,380,104,2),(564,381,104,2),(565,382,104,2),(567,383,104,2),(569,384,104,2),(571,385,104,2),(573,386,104,2),(574,387,104,2),(576,388,104,2),(577,389,104,2),(578,390,104,2),(580,391,104,2),(581,392,104,2),(583,393,104,2),(584,394,104,2),(585,395,104,2),(586,396,104,2),(587,397,104,2),(588,398,104,2),(590,399,104,2),(592,400,104,2),(594,401,104,2),(595,402,104,2),(596,403,104,2),(597,404,104,2),(598,405,104,2),(599,406,104,2),(601,407,104,2),(603,408,104,2),(605,409,104,2),(606,410,104,2),(607,411,104,2),(608,412,104,2),(609,413,104,2),(611,414,104,2),(613,415,104,2),(614,416,104,2),(616,417,104,2),(618,418,104,2),(620,419,104,2),(621,420,104,2),(622,421,104,2),(624,422,104,2),(626,423,104,2),(628,424,104,2),(630,425,104,2),(632,426,104,2),(634,427,104,2),(635,428,104,2),(636,429,104,2),(638,430,104,2),(639,431,104,2),(640,432,104,2),(642,433,104,2),(644,434,104,2),(646,435,104,2),(648,436,104,2),(650,437,104,2),(651,438,104,2),(652,439,104,2),(653,440,104,2),(655,441,104,2),(656,442,104,2),(658,443,104,2),(659,444,104,2),(660,445,104,2),(662,446,104,2),(663,447,104,2),(665,448,104,2),(667,449,104,2),(669,450,104,2),(712,492,105,2),(729,509,105,2),(703,483,106,2),(724,504,106,2),(784,564,115,2),(762,542,117,2),(688,468,118,2),(716,496,118,2),(702,482,123,2),(723,503,123,2),(705,485,126,2),(743,523,126,2),(700,480,128,2),(722,502,128,2),(791,571,139,2),(781,561,140,2),(788,568,141,2),(778,558,143,2),(789,569,145,2),(777,557,147,2),(709,489,150,2),(740,520,150,2),(769,549,152,2),(773,553,154,2),(704,484,159,2),(725,505,159,2),(690,470,162,2),(717,497,162,2),(696,476,166,2),(720,500,166,2),(750,530,166,2),(229,151,171,2),(230,152,171,2),(232,153,171,2),(233,154,171,2),(234,155,171,2),(235,156,171,2),(237,157,171,2),(238,158,171,2),(239,159,171,2),(240,160,171,2),(241,161,171,2),(242,162,171,2),(243,163,171,2),(245,164,171,2),(247,165,171,2),(248,166,171,2),(250,167,171,2),(251,168,171,2),(253,169,171,2),(254,170,171,2),(255,171,171,2),(256,172,171,2),(257,173,171,2),(258,174,171,2),(260,175,171,2),(261,176,171,2),(263,177,171,2),(265,178,171,2),(266,179,171,2),(268,180,171,2),(269,181,171,2),(270,182,171,2),(272,183,171,2),(274,184,171,2),(276,185,171,2),(278,186,171,2),(279,187,171,2),(280,188,171,2),(282,189,171,2),(283,190,171,2),(284,191,171,2),(286,192,171,2),(287,193,171,2),(288,194,171,2),(290,195,171,2),(292,196,171,2),(294,197,171,2),(295,198,171,2),(296,199,171,2),(297,200,171,2),(298,201,171,2),(300,202,171,2),(302,203,171,2),(303,204,171,2),(305,205,171,2),(306,206,171,2),(307,207,171,2),(309,208,171,2),(310,209,171,2),(311,210,171,2),(312,211,171,2),(313,212,171,2),(315,213,171,2),(316,214,171,2),(318,215,171,2),(319,216,171,2),(320,217,171,2),(322,218,171,2),(323,219,171,2),(325,220,171,2),(326,221,171,2),(328,222,171,2),(329,223,171,2),(331,224,171,2),(332,225,171,2),(334,226,171,2),(336,227,171,2),(337,228,171,2),(339,229,171,2),(340,230,171,2),(342,231,171,2),(344,232,171,2),(346,233,171,2),(347,234,171,2),(349,235,171,2),(350,236,171,2),(351,237,171,2),(353,238,171,2),(355,239,171,2),(357,240,171,2),(359,241,171,2),(360,242,171,2),(361,243,171,2),(362,244,171,2),(363,245,171,2),(364,246,171,2),(366,247,171,2),(368,248,171,2),(369,249,171,2),(371,250,171,2),(372,251,171,2),(374,252,171,2),(376,253,171,2),(378,254,171,2),(379,255,171,2),(380,256,171,2),(382,257,171,2),(383,258,171,2),(385,259,171,2),(387,260,171,2),(388,261,171,2),(390,262,171,2),(391,263,171,2),(393,264,171,2),(395,265,171,2),(397,266,171,2),(398,267,171,2),(399,268,171,2),(401,269,171,2),(403,270,171,2),(404,271,171,2),(405,272,171,2),(406,273,171,2),(407,274,171,2),(408,275,171,2),(410,276,171,2),(411,277,171,2),(412,278,171,2),(414,279,171,2),(416,280,171,2),(417,281,171,2),(419,282,171,2),(421,283,171,2),(423,284,171,2),(424,285,171,2),(426,286,171,2),(427,287,171,2),(428,288,171,2),(430,289,171,2),(432,290,171,2),(434,291,171,2),(436,292,171,2),(438,293,171,2),(439,294,171,2),(441,295,171,2),(442,296,171,2),(444,297,171,2),(446,298,171,2),(447,299,171,2),(449,300,171,2),(701,481,172,2),(738,518,172,2),(684,464,173,2),(714,494,173,2),(749,529,173,2),(699,479,179,2),(737,517,179,2),(752,532,181,2),(751,531,183,2),(685,465,185,2),(731,511,185,2),(686,466,187,2),(715,495,187,2),(746,526,187,2),(711,491,191,2),(741,521,191,2),(785,565,193,2),(692,472,195,2),(718,498,195,2),(710,490,196,2),(728,508,196,2),(786,566,196,2),(764,544,197,2); +INSERT INTO `civicrm_activity_contact` (`id`, `activity_id`, `contact_id`, `record_type_id`) VALUES (417,269,1,3),(456,294,1,3),(230,151,2,3),(489,319,2,3),(685,451,2,2),(783,549,2,2),(550,362,3,3),(630,411,3,3),(647,424,3,3),(129,86,4,3),(686,452,4,2),(793,559,4,2),(203,136,5,3),(90,59,6,3),(276,180,6,3),(657,431,6,3),(687,453,6,2),(132,88,7,3),(308,201,7,3),(784,550,7,2),(497,325,8,3),(565,370,8,3),(688,454,8,2),(716,482,8,2),(746,512,8,2),(781,547,9,2),(559,367,10,3),(433,280,11,3),(546,360,11,3),(632,412,11,3),(316,205,12,3),(125,83,15,3),(422,273,15,3),(164,110,16,3),(689,455,16,2),(33,22,17,3),(605,394,17,3),(161,108,18,3),(267,175,18,3),(269,176,18,3),(722,488,18,2),(752,518,18,2),(180,121,19,3),(341,221,19,3),(349,226,19,3),(690,456,19,2),(771,537,19,2),(8,5,20,3),(177,119,20,3),(221,146,20,3),(303,198,20,3),(449,290,20,3),(795,561,20,2),(94,62,21,3),(208,139,21,3),(510,335,21,3),(639,418,21,3),(380,246,22,3),(479,311,22,3),(662,435,22,3),(675,443,22,3),(717,483,22,2),(747,513,22,2),(63,43,23,3),(199,133,23,3),(365,236,23,3),(60,41,24,3),(118,78,24,3),(577,377,24,3),(17,12,25,3),(292,190,25,3),(796,562,25,2),(24,16,26,3),(215,143,26,3),(467,302,26,3),(508,334,26,3),(567,371,27,3),(58,40,28,3),(314,204,28,3),(563,369,28,3),(626,408,28,3),(217,144,29,3),(232,152,29,3),(569,372,29,3),(575,376,29,3),(664,436,29,3),(238,156,30,3),(322,210,30,3),(49,34,31,3),(83,55,31,3),(425,275,31,3),(465,301,31,3),(495,324,31,3),(766,532,31,2),(111,74,32,3),(223,147,32,3),(696,462,32,2),(697,463,32,2),(171,115,33,3),(258,170,33,3),(367,237,33,3),(544,359,33,3),(413,267,34,3),(458,295,34,3),(693,459,34,2),(505,332,35,3),(534,352,35,3),(778,544,35,2),(102,68,36,3),(669,439,37,3),(477,310,38,3),(104,69,39,3),(484,315,39,3),(28,19,40,3),(298,195,40,3),(345,224,40,3),(394,255,40,3),(561,368,41,3),(681,448,41,3),(772,538,41,2),(3,2,42,3),(31,21,42,3),(52,36,42,3),(185,124,42,3),(355,229,42,3),(261,172,43,3),(263,173,43,3),(695,461,43,2),(197,132,44,3),(390,253,44,3),(552,363,44,3),(801,567,44,2),(396,256,45,3),(454,293,45,3),(610,397,45,3),(655,430,45,3),(709,475,45,2),(739,505,45,2),(438,283,46,3),(594,387,46,3),(683,449,46,3),(85,56,47,3),(150,101,47,3),(557,366,47,3),(620,404,47,3),(6,4,48,3),(77,52,48,3),(116,77,48,3),(147,99,48,3),(444,287,48,3),(451,291,48,3),(608,396,48,3),(798,564,48,2),(254,167,49,3),(435,281,49,3),(540,356,49,3),(711,477,49,2),(741,507,49,2),(144,97,50,3),(283,184,50,3),(446,288,51,3),(587,383,51,3),(760,526,51,2),(243,160,52,3),(71,48,53,3),(175,118,53,3),(245,161,53,3),(330,215,53,3),(289,188,54,3),(312,203,54,3),(327,213,54,3),(385,250,55,3),(520,342,55,3),(97,64,56,3),(154,103,56,3),(158,106,57,3),(280,182,57,3),(427,276,57,3),(582,380,57,3),(169,114,58,3),(600,390,59,3),(339,220,60,3),(152,102,61,3),(287,187,61,3),(573,375,61,3),(612,398,61,3),(769,535,61,2),(114,76,62,3),(247,162,62,3),(271,177,62,3),(515,339,62,3),(699,465,62,2),(729,495,62,2),(375,243,63,3),(411,266,63,3),(548,361,63,3),(723,489,63,2),(753,519,63,2),(775,541,63,2),(591,385,64,3),(187,125,65,3),(19,13,66,3),(806,572,66,2),(363,235,67,3),(405,262,67,3),(194,130,68,3),(278,181,68,3),(398,257,68,3),(335,218,69,3),(702,468,69,2),(732,498,69,2),(75,51,71,3),(106,70,71,3),(649,425,71,3),(694,460,71,2),(44,31,72,3),(81,54,72,3),(392,254,72,3),(15,11,73,3),(55,38,73,3),(79,53,73,3),(206,138,73,3),(403,261,73,3),(802,568,73,2),(139,94,74,3),(142,96,74,3),(518,341,74,3),(219,145,75,3),(305,199,76,3),(324,211,76,3),(442,286,76,3),(525,346,76,3),(532,351,76,3),(409,265,77,3),(65,44,78,3),(234,153,78,3),(641,419,78,3),(708,474,78,2),(738,504,78,2),(579,378,79,3),(589,384,79,3),(596,388,79,3),(360,233,80,3),(251,165,81,3),(351,227,81,3),(227,149,82,3),(300,196,82,3),(667,438,82,3),(691,457,82,2),(538,355,83,3),(429,277,84,3),(225,148,85,3),(347,225,85,3),(794,560,85,2),(377,244,86,3),(672,441,86,3),(800,566,86,2),(598,389,87,3),(615,400,87,3),(706,472,87,2),(736,502,87,2),(415,268,89,3),(776,542,89,2),(189,126,90,3),(472,306,90,3),(623,406,90,3),(182,122,92,3),(265,174,92,3),(692,458,92,2),(47,33,93,3),(211,141,93,3),(274,179,93,3),(123,82,94,3),(69,47,95,3),(213,142,95,3),(332,216,95,3),(371,240,95,3),(529,349,95,3),(35,23,96,3),(353,228,96,3),(763,529,96,2),(21,14,97,3),(88,58,97,3),(337,219,98,3),(387,251,98,3),(585,382,98,3),(310,202,99,3),(554,364,101,3),(788,554,101,2),(705,471,102,2),(735,501,102,2),(780,546,103,2),(768,534,106,2),(792,558,108,2),(762,528,109,2),(779,545,110,2),(759,525,112,2),(701,467,113,2),(731,497,113,2),(786,552,113,2),(761,527,114,2),(774,540,115,2),(721,487,118,2),(751,517,118,2),(797,563,121,2),(229,151,123,2),(231,152,123,2),(233,153,123,2),(235,154,123,2),(236,155,123,2),(237,156,123,2),(239,157,123,2),(240,158,123,2),(241,159,123,2),(242,160,123,2),(244,161,123,2),(246,162,123,2),(248,163,123,2),(249,164,123,2),(250,165,123,2),(252,166,123,2),(253,167,123,2),(255,168,123,2),(256,169,123,2),(257,170,123,2),(259,171,123,2),(260,172,123,2),(262,173,123,2),(264,174,123,2),(266,175,123,2),(268,176,123,2),(270,177,123,2),(272,178,123,2),(273,179,123,2),(275,180,123,2),(277,181,123,2),(279,182,123,2),(281,183,123,2),(282,184,123,2),(284,185,123,2),(285,186,123,2),(286,187,123,2),(288,188,123,2),(290,189,123,2),(291,190,123,2),(293,191,123,2),(294,192,123,2),(295,193,123,2),(296,194,123,2),(297,195,123,2),(299,196,123,2),(301,197,123,2),(302,198,123,2),(304,199,123,2),(306,200,123,2),(307,201,123,2),(309,202,123,2),(311,203,123,2),(313,204,123,2),(315,205,123,2),(317,206,123,2),(318,207,123,2),(319,208,123,2),(320,209,123,2),(321,210,123,2),(323,211,123,2),(325,212,123,2),(326,213,123,2),(328,214,123,2),(329,215,123,2),(331,216,123,2),(333,217,123,2),(334,218,123,2),(336,219,123,2),(338,220,123,2),(340,221,123,2),(342,222,123,2),(343,223,123,2),(344,224,123,2),(346,225,123,2),(348,226,123,2),(350,227,123,2),(352,228,123,2),(354,229,123,2),(356,230,123,2),(357,231,123,2),(358,232,123,2),(359,233,123,2),(361,234,123,2),(362,235,123,2),(364,236,123,2),(366,237,123,2),(368,238,123,2),(369,239,123,2),(370,240,123,2),(372,241,123,2),(373,242,123,2),(374,243,123,2),(376,244,123,2),(378,245,123,2),(379,246,123,2),(381,247,123,2),(382,248,123,2),(383,249,123,2),(384,250,123,2),(386,251,123,2),(388,252,123,2),(389,253,123,2),(391,254,123,2),(393,255,123,2),(395,256,123,2),(397,257,123,2),(399,258,123,2),(400,259,123,2),(401,260,123,2),(402,261,123,2),(404,262,123,2),(406,263,123,2),(407,264,123,2),(408,265,123,2),(410,266,123,2),(412,267,123,2),(414,268,123,2),(416,269,123,2),(418,270,123,2),(419,271,123,2),(420,272,123,2),(421,273,123,2),(423,274,123,2),(424,275,123,2),(426,276,123,2),(428,277,123,2),(430,278,123,2),(431,279,123,2),(432,280,123,2),(434,281,123,2),(436,282,123,2),(437,283,123,2),(439,284,123,2),(440,285,123,2),(441,286,123,2),(443,287,123,2),(445,288,123,2),(447,289,123,2),(448,290,123,2),(450,291,123,2),(452,292,123,2),(453,293,123,2),(455,294,123,2),(457,295,123,2),(459,296,123,2),(460,297,123,2),(461,298,123,2),(462,299,123,2),(463,300,123,2),(727,493,123,2),(757,523,123,2),(764,530,124,2),(803,569,128,2),(726,492,129,2),(756,522,129,2),(790,556,129,2),(799,565,131,2),(791,557,133,2),(700,466,137,2),(730,496,137,2),(777,543,137,2),(712,478,140,2),(742,508,140,2),(704,470,141,2),(734,500,141,2),(1,1,147,2),(2,2,147,2),(4,3,147,2),(5,4,147,2),(7,5,147,2),(9,6,147,2),(10,7,147,2),(11,8,147,2),(12,9,147,2),(13,10,147,2),(14,11,147,2),(16,12,147,2),(18,13,147,2),(20,14,147,2),(22,15,147,2),(23,16,147,2),(25,17,147,2),(26,18,147,2),(27,19,147,2),(29,20,147,2),(30,21,147,2),(32,22,147,2),(34,23,147,2),(36,24,147,2),(37,25,147,2),(38,26,147,2),(39,27,147,2),(40,28,147,2),(41,29,147,2),(42,30,147,2),(43,31,147,2),(45,32,147,2),(46,33,147,2),(48,34,147,2),(50,35,147,2),(51,36,147,2),(53,37,147,2),(54,38,147,2),(56,39,147,2),(57,40,147,2),(59,41,147,2),(61,42,147,2),(62,43,147,2),(64,44,147,2),(66,45,147,2),(67,46,147,2),(68,47,147,2),(70,48,147,2),(72,49,147,2),(73,50,147,2),(74,51,147,2),(76,52,147,2),(78,53,147,2),(80,54,147,2),(82,55,147,2),(84,56,147,2),(86,57,147,2),(87,58,147,2),(89,59,147,2),(91,60,147,2),(92,61,147,2),(93,62,147,2),(95,63,147,2),(96,64,147,2),(98,65,147,2),(99,66,147,2),(100,67,147,2),(101,68,147,2),(103,69,147,2),(105,70,147,2),(107,71,147,2),(108,72,147,2),(109,73,147,2),(110,74,147,2),(112,75,147,2),(113,76,147,2),(115,77,147,2),(117,78,147,2),(119,79,147,2),(120,80,147,2),(121,81,147,2),(122,82,147,2),(124,83,147,2),(126,84,147,2),(127,85,147,2),(128,86,147,2),(130,87,147,2),(131,88,147,2),(133,89,147,2),(134,90,147,2),(135,91,147,2),(136,92,147,2),(137,93,147,2),(138,94,147,2),(140,95,147,2),(141,96,147,2),(143,97,147,2),(145,98,147,2),(146,99,147,2),(148,100,147,2),(149,101,147,2),(151,102,147,2),(153,103,147,2),(155,104,147,2),(156,105,147,2),(157,106,147,2),(159,107,147,2),(160,108,147,2),(162,109,147,2),(163,110,147,2),(165,111,147,2),(166,112,147,2),(167,113,147,2),(168,114,147,2),(170,115,147,2),(172,116,147,2),(173,117,147,2),(174,118,147,2),(176,119,147,2),(178,120,147,2),(179,121,147,2),(181,122,147,2),(183,123,147,2),(184,124,147,2),(186,125,147,2),(188,126,147,2),(190,127,147,2),(191,128,147,2),(192,129,147,2),(193,130,147,2),(195,131,147,2),(196,132,147,2),(198,133,147,2),(200,134,147,2),(201,135,147,2),(202,136,147,2),(204,137,147,2),(205,138,147,2),(207,139,147,2),(209,140,147,2),(210,141,147,2),(212,142,147,2),(214,143,147,2),(216,144,147,2),(218,145,147,2),(220,146,147,2),(222,147,147,2),(224,148,147,2),(226,149,147,2),(228,150,147,2),(724,490,147,2),(754,520,147,2),(719,485,149,2),(749,515,149,2),(725,491,150,2),(755,521,150,2),(770,536,151,2),(718,484,153,2),(748,514,153,2),(765,531,153,2),(785,551,155,2),(710,476,156,2),(740,506,156,2),(715,481,158,2),(745,511,158,2),(720,486,161,2),(750,516,161,2),(807,573,162,2),(713,479,163,2),(743,509,163,2),(714,480,164,2),(744,510,164,2),(804,570,164,2),(707,473,166,2),(737,503,166,2),(782,548,166,2),(767,533,177,2),(464,301,180,2),(466,302,180,2),(468,303,180,2),(469,304,180,2),(470,305,180,2),(471,306,180,2),(473,307,180,2),(474,308,180,2),(475,309,180,2),(476,310,180,2),(478,311,180,2),(480,312,180,2),(481,313,180,2),(482,314,180,2),(483,315,180,2),(485,316,180,2),(486,317,180,2),(487,318,180,2),(488,319,180,2),(490,320,180,2),(491,321,180,2),(492,322,180,2),(493,323,180,2),(494,324,180,2),(496,325,180,2),(498,326,180,2),(499,327,180,2),(500,328,180,2),(501,329,180,2),(502,330,180,2),(503,331,180,2),(504,332,180,2),(506,333,180,2),(507,334,180,2),(509,335,180,2),(511,336,180,2),(512,337,180,2),(513,338,180,2),(514,339,180,2),(516,340,180,2),(517,341,180,2),(519,342,180,2),(521,343,180,2),(522,344,180,2),(523,345,180,2),(524,346,180,2),(526,347,180,2),(527,348,180,2),(528,349,180,2),(530,350,180,2),(531,351,180,2),(533,352,180,2),(535,353,180,2),(536,354,180,2),(537,355,180,2),(539,356,180,2),(541,357,180,2),(542,358,180,2),(543,359,180,2),(545,360,180,2),(547,361,180,2),(549,362,180,2),(551,363,180,2),(553,364,180,2),(555,365,180,2),(556,366,180,2),(558,367,180,2),(560,368,180,2),(562,369,180,2),(564,370,180,2),(566,371,180,2),(568,372,180,2),(570,373,180,2),(571,374,180,2),(572,375,180,2),(574,376,180,2),(576,377,180,2),(578,378,180,2),(580,379,180,2),(581,380,180,2),(583,381,180,2),(584,382,180,2),(586,383,180,2),(588,384,180,2),(590,385,180,2),(592,386,180,2),(593,387,180,2),(595,388,180,2),(597,389,180,2),(599,390,180,2),(601,391,180,2),(602,392,180,2),(603,393,180,2),(604,394,180,2),(606,395,180,2),(607,396,180,2),(609,397,180,2),(611,398,180,2),(613,399,180,2),(614,400,180,2),(616,401,180,2),(617,402,180,2),(618,403,180,2),(619,404,180,2),(621,405,180,2),(622,406,180,2),(624,407,180,2),(625,408,180,2),(627,409,180,2),(628,410,180,2),(629,411,180,2),(631,412,180,2),(633,413,180,2),(634,414,180,2),(635,415,180,2),(636,416,180,2),(637,417,180,2),(638,418,180,2),(640,419,180,2),(642,420,180,2),(643,421,180,2),(644,422,180,2),(645,423,180,2),(646,424,180,2),(648,425,180,2),(650,426,180,2),(651,427,180,2),(652,428,180,2),(653,429,180,2),(654,430,180,2),(656,431,180,2),(658,432,180,2),(659,433,180,2),(660,434,180,2),(661,435,180,2),(663,436,180,2),(665,437,180,2),(666,438,180,2),(668,439,180,2),(670,440,180,2),(671,441,180,2),(673,442,180,2),(674,443,180,2),(676,444,180,2),(677,445,180,2),(678,446,180,2),(679,447,180,2),(680,448,180,2),(682,449,180,2),(684,450,180,2),(703,469,181,2),(733,499,181,2),(805,571,182,2),(789,555,186,2),(787,553,188,2),(808,574,190,2),(773,539,199,2),(698,464,200,2),(728,494,200,2); /*!40000 ALTER TABLE `civicrm_activity_contact` ENABLE KEYS */; UNLOCK TABLES; @@ -107,7 +107,7 @@ UNLOCK TABLES; LOCK TABLES `civicrm_address` WRITE; /*!40000 ALTER TABLE `civicrm_address` DISABLE KEYS */; -INSERT INTO `civicrm_address` (`id`, `contact_id`, `location_type_id`, `is_primary`, `is_billing`, `street_address`, `street_number`, `street_number_suffix`, `street_number_predirectional`, `street_name`, `street_type`, `street_number_postdirectional`, `street_unit`, `supplemental_address_1`, `supplemental_address_2`, `supplemental_address_3`, `city`, `county_id`, `state_province_id`, `postal_code_suffix`, `postal_code`, `usps_adc`, `country_id`, `geo_code_1`, `geo_code_2`, `manual_geo_code`, `timezone`, `name`, `master_id`) VALUES (1,135,1,1,0,'346L Bay Rd S',346,'L',NULL,'Bay','Rd','S',NULL,NULL,NULL,NULL,'Old Bridge',1,1029,NULL,'08857',NULL,1228,40.397507,-74.3298,0,NULL,NULL,NULL),(2,184,1,1,0,'365G Maple Rd NE',365,'G',NULL,'Maple','Rd','NE',NULL,NULL,NULL,NULL,'Mullen',1,1026,NULL,'69152',NULL,1228,42.088889,-101.09299,0,NULL,NULL,NULL),(3,77,1,1,0,'1000U Woodbridge Rd W',1000,'U',NULL,'Woodbridge','Rd','W',NULL,NULL,NULL,NULL,'Blythe',1,1004,NULL,'92226',NULL,1228,33.59869,-114.652517,0,NULL,NULL,NULL),(4,42,1,1,0,'594R Bay Way E',594,'R',NULL,'Bay','Way','E',NULL,NULL,NULL,NULL,'Lake Havasu City',1,1002,NULL,'86405',NULL,1228,35.605301,-113.642712,0,NULL,NULL,NULL),(5,20,1,1,0,'916M Van Ness Ln N',916,'M',NULL,'Van Ness','Ln','N',NULL,NULL,NULL,NULL,'Gilboa',1,1047,NULL,'26671',NULL,1228,38.302121,-80.93549,0,NULL,NULL,NULL),(6,198,1,1,0,'944Y Martin Luther King Path S',944,'Y',NULL,'Martin Luther King','Path','S',NULL,NULL,NULL,NULL,'Downers Grove',1,1012,NULL,'60516',NULL,1228,41.761463,-88.01334,0,NULL,NULL,NULL),(7,13,1,1,0,'16W States Blvd S',16,'W',NULL,'States','Blvd','S',NULL,NULL,NULL,NULL,'Port Trevorton',1,1037,NULL,'17864',NULL,1228,40.696064,-76.90271,0,NULL,NULL,NULL),(8,94,1,1,0,'577C Northpoint Blvd N',577,'C',NULL,'Northpoint','Blvd','N',NULL,NULL,NULL,NULL,'Tallahassee',1,1008,NULL,'32395',NULL,1228,30.479347,-84.346204,0,NULL,NULL,NULL),(9,83,1,1,0,'277F Van Ness Blvd SW',277,'F',NULL,'Van Ness','Blvd','SW',NULL,NULL,NULL,NULL,'Bellevue',1,1046,NULL,'98008',NULL,1228,47.609222,-122.1155,0,NULL,NULL,NULL),(10,154,1,1,0,'989B Pine Path NE',989,'B',NULL,'Pine','Path','NE',NULL,NULL,NULL,NULL,'Fincastle',1,1045,NULL,'24090',NULL,1228,37.512912,-79.87046,0,NULL,NULL,NULL),(11,90,1,1,0,'569I Jackson Pl E',569,'I',NULL,'Jackson','Pl','E',NULL,NULL,NULL,NULL,'Newport Beach',1,1004,NULL,'92663',NULL,1228,33.619221,-117.93087,0,NULL,NULL,NULL),(12,110,1,1,0,'493Y El Camino St NW',493,'Y',NULL,'El Camino','St','NW',NULL,NULL,NULL,NULL,'Cades',1,1039,NULL,'29518',NULL,1228,33.78144,-79.88688,0,NULL,NULL,NULL),(13,157,1,1,0,'36F Caulder Dr N',36,'F',NULL,'Caulder','Dr','N',NULL,NULL,NULL,NULL,'El Sobrante',1,1004,NULL,'94820',NULL,1228,37.777208,-121.955399,0,NULL,NULL,NULL),(14,14,1,1,0,'665O States Ln N',665,'O',NULL,'States','Ln','N',NULL,NULL,NULL,NULL,'Hatfield',1,1003,NULL,'71945',NULL,1228,34.496472,-94.3691,0,NULL,NULL,NULL),(15,47,1,1,0,'577U Dowlen Way W',577,'U',NULL,'Dowlen','Way','W',NULL,NULL,NULL,NULL,'Eldorado',1,1048,NULL,'54932',NULL,1228,43.830749,-88.6258,0,NULL,NULL,NULL),(16,57,1,1,0,'843C Cadell St W',843,'C',NULL,'Cadell','St','W',NULL,NULL,NULL,NULL,'Robertsville',1,1024,NULL,'63072',NULL,1228,38.369435,-90.81792,0,NULL,NULL,NULL),(17,163,1,1,0,'93T Maple Blvd E',93,'T',NULL,'Maple','Blvd','E',NULL,NULL,NULL,NULL,'Currituck',1,1032,NULL,'27929',NULL,1228,36.433902,-75.97921,0,NULL,NULL,NULL),(18,149,1,1,0,'219Z Woodbridge Dr E',219,'Z',NULL,'Woodbridge','Dr','E',NULL,NULL,NULL,NULL,'Seadrift',1,1042,NULL,'77983',NULL,1228,28.405373,-96.70325,0,NULL,NULL,NULL),(19,84,1,1,0,'26P College Ln SE',26,'P',NULL,'College','Ln','SE',NULL,NULL,NULL,NULL,'Water Valley',1,1016,NULL,'42085',NULL,1228,36.578907,-88.82074,0,NULL,NULL,NULL),(20,145,1,1,0,'5J College Ln W',5,'J',NULL,'College','Ln','W',NULL,NULL,NULL,NULL,'Lubbock',1,1042,NULL,'79453',NULL,1228,33.610018,-101.821292,0,NULL,NULL,NULL),(21,41,1,1,0,'521V Beech Rd SE',521,'V',NULL,'Beech','Rd','SE',NULL,NULL,NULL,NULL,'Big Pool',1,1019,NULL,'21711',NULL,1228,39.654773,-78.01823,0,NULL,NULL,NULL),(22,28,1,1,0,'510R Beech Dr E',510,'R',NULL,'Beech','Dr','E',NULL,NULL,NULL,NULL,'Flom',1,1022,NULL,'56541',NULL,1228,47.325074,-96.469194,0,NULL,NULL,NULL),(23,44,1,1,0,'161L Jackson Rd NE',161,'L',NULL,'Jackson','Rd','NE',NULL,NULL,NULL,NULL,'Lake City',1,1004,NULL,'96115',NULL,1228,41.688163,-120.23924,0,NULL,NULL,NULL),(24,59,1,1,0,'908G Woodbridge St S',908,'G',NULL,'Woodbridge','St','S',NULL,NULL,NULL,NULL,'Albion',1,1035,NULL,'74521',NULL,1228,34.660204,-95.09814,0,NULL,NULL,NULL),(25,119,1,1,0,'182D Main Path S',182,'D',NULL,'Main','Path','S',NULL,NULL,NULL,NULL,'Tennessee',1,1012,NULL,'62374',NULL,1228,40.403553,-90.8834,0,NULL,NULL,NULL),(26,21,1,1,0,'305W Beech Way SE',305,'W',NULL,'Beech','Way','SE',NULL,NULL,NULL,NULL,'Waynesboro',1,1037,NULL,'17268',NULL,1228,39.766281,-77.57241,0,NULL,NULL,NULL),(27,67,1,1,0,'150Z States St W',150,'Z',NULL,'States','St','W',NULL,NULL,NULL,NULL,'Bethesda',1,1034,NULL,'43719',NULL,1228,40.009383,-81.0763,0,NULL,NULL,NULL),(28,36,1,1,0,'732X Northpoint Blvd S',732,'X',NULL,'Northpoint','Blvd','S',NULL,NULL,NULL,NULL,'Pittsburgh',1,1037,NULL,'15283',NULL,1228,40.434436,-80.024817,0,NULL,NULL,NULL),(29,29,1,1,0,'456C Green Ln SE',456,'C',NULL,'Green','Ln','SE',NULL,NULL,NULL,NULL,'Rico',1,1005,NULL,'81332',NULL,1228,37.713158,-108.02585,0,NULL,NULL,NULL),(30,107,1,1,0,'988K Woodbridge Dr NW',988,'K',NULL,'Woodbridge','Dr','NW',NULL,NULL,NULL,NULL,'Surprise',1,1002,NULL,'85379',NULL,1228,33.616888,-112.40158,0,NULL,NULL,NULL),(31,152,1,1,0,'690Z Woodbridge Way SW',690,'Z',NULL,'Woodbridge','Way','SW',NULL,NULL,NULL,NULL,'Spring',1,1042,NULL,'77383',NULL,1228,29.83399,-95.434241,0,NULL,NULL,NULL),(32,158,1,1,0,'421D Van Ness Way N',421,'D',NULL,'Van Ness','Way','N',NULL,NULL,NULL,NULL,'Ozona',1,1008,NULL,'34660',NULL,1228,28.067043,-82.778424,0,NULL,NULL,NULL),(33,139,1,1,0,'323D Cadell Ln E',323,'D',NULL,'Cadell','Ln','E',NULL,NULL,NULL,NULL,'Charleston',1,1047,NULL,'25330',NULL,1228,38.296818,-81.554655,0,NULL,NULL,NULL),(34,150,1,1,0,'788L Second Ln NW',788,'L',NULL,'Second','Ln','NW',NULL,NULL,NULL,NULL,'Rupert',1,1009,NULL,'31081',NULL,1228,32.419094,-84.28475,0,NULL,NULL,NULL),(35,43,1,1,0,'542V Jackson Dr W',542,'V',NULL,'Jackson','Dr','W',NULL,NULL,NULL,NULL,'Leeds',1,1020,NULL,'01053',NULL,1228,42.353105,-72.70206,0,NULL,NULL,NULL),(36,191,1,1,0,'973H Cadell Ave SE',973,'H',NULL,'Cadell','Ave','SE',NULL,NULL,NULL,NULL,'Wellesley Hills',1,1020,NULL,'02481',NULL,1228,42.313329,-71.27649,0,NULL,NULL,NULL),(37,128,1,1,0,'191Y Van Ness Rd NW',191,'Y',NULL,'Van Ness','Rd','NW',NULL,NULL,NULL,NULL,'Bethel',1,1037,NULL,'19507',NULL,1228,40.488558,-76.27269,0,NULL,NULL,NULL),(38,15,1,1,0,'999A Van Ness St E',999,'A',NULL,'Van Ness','St','E',NULL,NULL,NULL,NULL,'Washington',1,1050,NULL,'20012',NULL,1228,38.97808,-77.02858,0,NULL,NULL,NULL),(39,141,1,1,0,'75N Cadell Ln SW',75,'N',NULL,'Cadell','Ln','SW',NULL,NULL,NULL,NULL,'Brockton',1,1020,NULL,'02404',NULL,1228,41.970474,-70.701357,0,NULL,NULL,NULL),(40,166,1,1,0,'896L Maple Dr SE',896,'L',NULL,'Maple','Dr','SE',NULL,NULL,NULL,NULL,'Ladysmith',1,1045,NULL,'22501',NULL,1228,38.015899,-77.559298,0,NULL,NULL,NULL),(41,199,1,1,0,'616V Jackson Ln NW',616,'V',NULL,'Jackson','Ln','NW',NULL,NULL,NULL,NULL,'Corona',1,1004,NULL,'91719',NULL,1228,33.735688,-117.42049,0,NULL,NULL,NULL),(42,168,1,1,0,'542L Pine Way N',542,'L',NULL,'Pine','Way','N',NULL,NULL,NULL,NULL,'Dow City',1,1014,NULL,'51528',NULL,1228,41.927255,-95.49821,0,NULL,NULL,NULL),(43,52,1,1,0,'988P Van Ness Path SW',988,'P',NULL,'Van Ness','Path','SW',NULL,NULL,NULL,NULL,'Montgomery',1,1000,NULL,'36131',NULL,1228,32.233377,-86.208528,0,NULL,NULL,NULL),(44,156,1,1,0,'997R Northpoint Blvd NE',997,'R',NULL,'Northpoint','Blvd','NE',NULL,NULL,NULL,NULL,'Crook',1,1005,NULL,'80726',NULL,1228,40.888254,-102.78823,0,NULL,NULL,NULL),(45,123,1,1,0,'537C College Pl N',537,'C',NULL,'College','Pl','N',NULL,NULL,NULL,NULL,'Louisville',1,1016,NULL,'40289',NULL,1228,38.188962,-85.676819,0,NULL,NULL,NULL),(46,2,1,1,0,'180P Pine Blvd S',180,'P',NULL,'Pine','Blvd','S',NULL,NULL,NULL,NULL,'Saint Petersburg',1,1008,NULL,'33715',NULL,1228,27.68301,-82.72096,0,NULL,NULL,NULL),(47,165,1,1,0,'518M Northpoint Blvd SE',518,'M',NULL,'Northpoint','Blvd','SE',NULL,NULL,NULL,NULL,'Versailles',1,1016,NULL,'40386',NULL,1228,38.021292,-84.745488,0,NULL,NULL,NULL),(48,100,1,1,0,'58H Main Rd NW',58,'H',NULL,'Main','Rd','NW',NULL,NULL,NULL,NULL,'Red Creek',1,1031,NULL,'13143',NULL,1228,43.235909,-76.71545,0,NULL,NULL,NULL),(49,161,1,1,0,'521O Pine Rd NE',521,'O',NULL,'Pine','Rd','NE',NULL,NULL,NULL,NULL,'Mexico Beach',1,1008,NULL,'32410',NULL,1228,29.945008,-85.41461,0,NULL,NULL,NULL),(50,5,1,1,0,'459X Jackson Pl NW',459,'X',NULL,'Jackson','Pl','NW',NULL,NULL,NULL,NULL,'Atlantic City',1,1029,NULL,'08404',NULL,1228,39.509208,-74.608557,0,NULL,NULL,NULL),(51,25,1,1,0,'120S El Camino Ln E',120,'S',NULL,'El Camino','Ln','E',NULL,NULL,NULL,NULL,'North Westchester',1,1006,NULL,'06474',NULL,1228,41.464758,-72.127301,0,NULL,NULL,NULL),(52,132,1,1,0,'821I College St NW',821,'I',NULL,'College','St','NW',NULL,NULL,NULL,NULL,'Springfield Gardens',1,1031,NULL,'11413',NULL,1228,40.670138,-73.75141,0,NULL,NULL,NULL),(53,116,1,1,0,'704L Northpoint Blvd N',704,'L',NULL,'Northpoint','Blvd','N',NULL,NULL,NULL,NULL,'Wheeling',1,1024,NULL,'64688',NULL,1228,39.808311,-93.37642,0,NULL,NULL,NULL),(54,108,1,1,0,'346T Martin Luther King Dr NW',346,'T',NULL,'Martin Luther King','Dr','NW',NULL,NULL,NULL,NULL,'Dickeyville',1,1048,NULL,'53808',NULL,1228,42.627951,-90.5939,0,NULL,NULL,NULL),(55,89,1,1,0,'620N Lincoln Rd SE',620,'N',NULL,'Lincoln','Rd','SE',NULL,NULL,NULL,NULL,'Tampa',1,1008,NULL,'33664',NULL,1228,27.871964,-82.438841,0,NULL,NULL,NULL),(56,181,1,1,0,'79X Main Ave NE',79,'X',NULL,'Main','Ave','NE',NULL,NULL,NULL,NULL,'Bay City',1,1036,NULL,'97107',NULL,1228,45.534203,-123.88468,0,NULL,NULL,NULL),(57,62,1,1,0,'111E Van Ness St N',111,'E',NULL,'Van Ness','St','N',NULL,NULL,NULL,NULL,'Alston',1,1009,NULL,'30412',NULL,1228,32.083879,-82.47988,0,NULL,NULL,NULL),(58,70,1,1,0,'920J Beech Dr NE',920,'J',NULL,'Beech','Dr','NE',NULL,NULL,NULL,NULL,'Colwich',1,1015,NULL,'67030',NULL,1228,37.787206,-97.54135,0,NULL,NULL,NULL),(59,7,1,1,0,'598W States Path SE',598,'W',NULL,'States','Path','SE',NULL,NULL,NULL,NULL,'West Topsham',1,1044,NULL,'05086',NULL,1228,44.116731,-72.31915,0,NULL,NULL,NULL),(60,114,1,1,0,'968G Caulder Path NW',968,'G',NULL,'Caulder','Path','NW',NULL,NULL,NULL,NULL,'Ragland',1,1047,NULL,'25690',NULL,1228,37.743063,-82.10801,0,NULL,NULL,NULL),(61,174,1,1,0,'126N Lincoln St SE',126,'N',NULL,'Lincoln','St','SE',NULL,NULL,NULL,NULL,'Charleston',1,1047,NULL,'25313',NULL,1228,38.425721,-81.76168,0,NULL,NULL,NULL),(62,9,1,1,0,'146R Jackson Ln N',146,'R',NULL,'Jackson','Ln','N',NULL,NULL,NULL,NULL,'Rancho Cucamonga',1,1004,NULL,'91730',NULL,1228,34.104555,-117.58734,0,NULL,NULL,NULL),(63,37,1,1,0,'606O Pine Ave W',606,'O',NULL,'Pine','Ave','W',NULL,NULL,NULL,NULL,'Higginson',1,1003,NULL,'72068',NULL,1228,35.169853,-91.70833,0,NULL,NULL,NULL),(64,182,1,1,0,'209C Pine Dr S',209,'C',NULL,'Pine','Dr','S',NULL,NULL,NULL,NULL,'Belmont',1,1028,NULL,'03220',NULL,1228,43.459555,-71.47352,0,NULL,NULL,NULL),(65,180,1,1,0,'127E Maple Way SW',127,'E',NULL,'Maple','Way','SW',NULL,NULL,NULL,NULL,'Dickson',1,1021,NULL,'49169',NULL,1228,44.30476,-86.015026,0,NULL,NULL,NULL),(66,18,1,1,0,'228E College Ln S',228,'E',NULL,'College','Ln','S',NULL,NULL,NULL,NULL,'Higginsville',1,1024,NULL,'64037',NULL,1228,39.058604,-93.73366,0,NULL,NULL,NULL),(67,98,3,1,0,'401Q Caulder Way NE',401,'Q',NULL,'Caulder','Way','NE',NULL,'Urgent',NULL,NULL,'Muscadine',1,1000,NULL,'36269',NULL,1228,33.740158,-85.37813,0,NULL,NULL,NULL),(68,95,2,1,0,'401Q Caulder Way NE',401,'Q',NULL,'Caulder','Way','NE',NULL,'Urgent',NULL,NULL,'Muscadine',1,1000,NULL,'36269',NULL,1228,33.740158,-85.37813,0,NULL,NULL,67),(69,115,3,1,0,'18K El Camino Dr SE',18,'K',NULL,'El Camino','Dr','SE',NULL,'Mailstop 101',NULL,NULL,'Chicago',1,1012,NULL,'60630',NULL,1228,41.971044,-87.75869,0,NULL,NULL,NULL),(70,83,2,0,0,'18K El Camino Dr SE',18,'K',NULL,'El Camino','Dr','SE',NULL,'Mailstop 101',NULL,NULL,'Chicago',1,1012,NULL,'60630',NULL,1228,41.971044,-87.75869,0,NULL,NULL,69),(71,86,3,1,0,'555R Cadell Way NE',555,'R',NULL,'Cadell','Way','NE',NULL,'Subscriptions Dept',NULL,NULL,'Friendship',1,1031,NULL,'14739',NULL,1228,42.192384,-78.14308,0,NULL,NULL,NULL),(72,118,2,1,0,'555R Cadell Way NE',555,'R',NULL,'Cadell','Way','NE',NULL,'Subscriptions Dept',NULL,NULL,'Friendship',1,1031,NULL,'14739',NULL,1228,42.192384,-78.14308,0,NULL,NULL,71),(73,129,3,1,0,'274O Beech Ln SW',274,'O',NULL,'Beech','Ln','SW',NULL,'Urgent',NULL,NULL,'Garrison',1,1014,NULL,'52229',NULL,1228,42.145175,-92.1509,0,NULL,NULL,NULL),(74,176,3,1,0,'735J Maple Dr NW',735,'J',NULL,'Maple','Dr','NW',NULL,'Cuffe Parade',NULL,NULL,'Lagrange',1,1034,NULL,'44050',NULL,1228,41.259352,-82.13542,0,NULL,NULL,NULL),(75,39,3,1,0,'745M Bay Rd SW',745,'M',NULL,'Bay','Rd','SW',NULL,'c/o OPDC',NULL,NULL,'Bill',1,1049,NULL,'82631',NULL,1228,42.894249,-105.485243,0,NULL,NULL,NULL),(76,35,2,1,0,'745M Bay Rd SW',745,'M',NULL,'Bay','Rd','SW',NULL,'c/o OPDC',NULL,NULL,'Bill',1,1049,NULL,'82631',NULL,1228,42.894249,-105.485243,0,NULL,NULL,75),(77,103,3,1,0,'837U Caulder Ave W',837,'U',NULL,'Caulder','Ave','W',NULL,'c/o PO Plus',NULL,NULL,'Plainview',1,1042,NULL,'79072',NULL,1228,34.191002,-101.72506,0,NULL,NULL,NULL),(78,117,3,1,0,'705K Lincoln Dr NE',705,'K',NULL,'Lincoln','Dr','NE',NULL,'Receiving',NULL,NULL,'Newry',1,1018,NULL,'04261',NULL,1228,44.570532,-70.87599,0,NULL,NULL,NULL),(79,17,2,1,0,'705K Lincoln Dr NE',705,'K',NULL,'Lincoln','Dr','NE',NULL,'Receiving',NULL,NULL,'Newry',1,1018,NULL,'04261',NULL,1228,44.570532,-70.87599,0,NULL,NULL,78),(80,111,3,1,0,'236X Martin Luther King Dr NW',236,'X',NULL,'Martin Luther King','Dr','NW',NULL,'Community Relations',NULL,NULL,'Oakland',1,1038,NULL,'02858',NULL,1228,41.96186,-71.64661,0,NULL,NULL,NULL),(81,197,2,1,0,'236X Martin Luther King Dr NW',236,'X',NULL,'Martin Luther King','Dr','NW',NULL,'Community Relations',NULL,NULL,'Oakland',1,1038,NULL,'02858',NULL,1228,41.96186,-71.64661,0,NULL,NULL,80),(82,24,3,1,0,'459R Beech Dr E',459,'R',NULL,'Beech','Dr','E',NULL,'Donor Relations',NULL,NULL,'Greenville',1,1018,NULL,'04441',NULL,1228,45.517693,-69.5223,0,NULL,NULL,NULL),(83,160,2,1,0,'459R Beech Dr E',459,'R',NULL,'Beech','Dr','E',NULL,'Donor Relations',NULL,NULL,'Greenville',1,1018,NULL,'04441',NULL,1228,45.517693,-69.5223,0,NULL,NULL,82),(84,64,3,1,0,'357Y Maple Blvd W',357,'Y',NULL,'Maple','Blvd','W',NULL,'Community Relations',NULL,NULL,'Montgomery',1,1000,NULL,'36114',NULL,1228,32.403987,-86.253867,0,NULL,NULL,NULL),(85,164,3,1,0,'952E Second Way NE',952,'E',NULL,'Second','Way','NE',NULL,'Attn: Accounting',NULL,NULL,'Columbia',1,1024,NULL,'65205',NULL,1228,39.044719,-92.349574,0,NULL,NULL,NULL),(86,105,2,1,0,'952E Second Way NE',952,'E',NULL,'Second','Way','NE',NULL,'Attn: Accounting',NULL,NULL,'Columbia',1,1024,NULL,'65205',NULL,1228,39.044719,-92.349574,0,NULL,NULL,85),(87,30,3,1,0,'478J Green Rd W',478,'J',NULL,'Green','Rd','W',NULL,'Donor Relations',NULL,NULL,'Richfield',1,1015,NULL,'67953',NULL,1228,37.23606,-101.83681,0,NULL,NULL,NULL),(88,68,3,1,0,'447Z Cadell Way N',447,'Z',NULL,'Cadell','Way','N',NULL,'Subscriptions Dept',NULL,NULL,'Chippewa Falls',1,1048,NULL,'54729',NULL,1228,44.932711,-91.38877,0,NULL,NULL,NULL),(89,201,3,1,0,'121A Northpoint Blvd SW',121,'A',NULL,'Northpoint','Blvd','SW',NULL,'Editorial Dept',NULL,NULL,'Manila',1,1043,NULL,'84046',NULL,1228,40.978642,-109.74719,0,NULL,NULL,NULL),(90,167,3,1,0,'696N Dowlen Ave NW',696,'N',NULL,'Dowlen','Ave','NW',NULL,'Cuffe Parade',NULL,NULL,'Washington',1,1050,NULL,'20560',NULL,1228,38.893311,-77.014647,0,NULL,NULL,NULL),(91,60,2,1,0,'696N Dowlen Ave NW',696,'N',NULL,'Dowlen','Ave','NW',NULL,'Cuffe Parade',NULL,NULL,'Washington',1,1050,NULL,'20560',NULL,1228,38.893311,-77.014647,0,NULL,NULL,90),(92,146,3,1,0,'887Y Maple Pl SE',887,'Y',NULL,'Maple','Pl','SE',NULL,'c/o PO Plus',NULL,NULL,'Maben',1,1047,NULL,'25870',NULL,1228,37.67337,-81.42001,0,NULL,NULL,NULL),(93,72,2,1,0,'887Y Maple Pl SE',887,'Y',NULL,'Maple','Pl','SE',NULL,'c/o PO Plus',NULL,NULL,'Maben',1,1047,NULL,'25870',NULL,1228,37.67337,-81.42001,0,NULL,NULL,92),(94,32,3,1,0,'487U Beech Dr SE',487,'U',NULL,'Beech','Dr','SE',NULL,'Churchgate',NULL,NULL,'Brainardsville',1,1031,NULL,'12915',NULL,1228,44.552725,-74.317958,0,NULL,NULL,NULL),(95,40,2,1,0,'487U Beech Dr SE',487,'U',NULL,'Beech','Dr','SE',NULL,'Churchgate',NULL,NULL,'Brainardsville',1,1031,NULL,'12915',NULL,1228,44.552725,-74.317958,0,NULL,NULL,94),(96,51,3,1,0,'627M Green Ln N',627,'M',NULL,'Green','Ln','N',NULL,'Churchgate',NULL,NULL,'Bellevue',1,1046,NULL,'98009',NULL,1228,47.432251,-121.803388,0,NULL,NULL,NULL),(97,56,3,1,0,'897W Lincoln Ave SW',897,'W',NULL,'Lincoln','Ave','SW',NULL,'Attn: Accounting',NULL,NULL,'North Rim',1,1002,NULL,'86052',NULL,1228,36.499283,-112.23039,0,NULL,NULL,NULL),(98,141,2,0,0,'897W Lincoln Ave SW',897,'W',NULL,'Lincoln','Ave','SW',NULL,'Attn: Accounting',NULL,NULL,'North Rim',1,1002,NULL,'86052',NULL,1228,36.499283,-112.23039,0,NULL,NULL,97),(99,183,1,1,0,'518M Northpoint Blvd SE',518,'M',NULL,'Northpoint','Blvd','SE',NULL,NULL,NULL,NULL,'Versailles',1,1016,NULL,'40386',NULL,1228,38.021292,-84.745488,0,NULL,NULL,47),(100,31,1,1,0,'518M Northpoint Blvd SE',518,'M',NULL,'Northpoint','Blvd','SE',NULL,NULL,NULL,NULL,'Versailles',1,1016,NULL,'40386',NULL,1228,38.021292,-84.745488,0,NULL,NULL,47),(101,49,1,1,0,'518M Northpoint Blvd SE',518,'M',NULL,'Northpoint','Blvd','SE',NULL,NULL,NULL,NULL,'Versailles',1,1016,NULL,'40386',NULL,1228,38.021292,-84.745488,0,NULL,NULL,47),(102,2,1,0,0,'368H Dowlen Ave SE',368,'H',NULL,'Dowlen','Ave','SE',NULL,NULL,NULL,NULL,'Fort Wayne',1,1013,NULL,'46868',NULL,1228,41.093763,-85.070713,0,NULL,NULL,NULL),(103,105,1,0,0,'58H Main Rd NW',58,'H',NULL,'Main','Rd','NW',NULL,NULL,NULL,NULL,'Red Creek',1,1031,NULL,'13143',NULL,1228,43.235909,-76.71545,0,NULL,NULL,48),(104,66,1,1,0,'58H Main Rd NW',58,'H',NULL,'Main','Rd','NW',NULL,NULL,NULL,NULL,'Red Creek',1,1031,NULL,'13143',NULL,1228,43.235909,-76.71545,0,NULL,NULL,48),(105,130,1,1,0,'58H Main Rd NW',58,'H',NULL,'Main','Rd','NW',NULL,NULL,NULL,NULL,'Red Creek',1,1031,NULL,'13143',NULL,1228,43.235909,-76.71545,0,NULL,NULL,48),(106,144,1,1,0,'769S Martin Luther King Rd SE',769,'S',NULL,'Martin Luther King','Rd','SE',NULL,NULL,NULL,NULL,'Clymer',1,1037,NULL,'15728',NULL,1228,40.674994,-78.98999,0,NULL,NULL,NULL),(107,80,1,1,0,'521O Pine Rd NE',521,'O',NULL,'Pine','Rd','NE',NULL,NULL,NULL,NULL,'Mexico Beach',1,1008,NULL,'32410',NULL,1228,29.945008,-85.41461,0,NULL,NULL,49),(108,34,1,1,0,'521O Pine Rd NE',521,'O',NULL,'Pine','Rd','NE',NULL,NULL,NULL,NULL,'Mexico Beach',1,1008,NULL,'32410',NULL,1228,29.945008,-85.41461,0,NULL,NULL,49),(109,95,1,0,0,'521O Pine Rd NE',521,'O',NULL,'Pine','Rd','NE',NULL,NULL,NULL,NULL,'Mexico Beach',1,1008,NULL,'32410',NULL,1228,29.945008,-85.41461,0,NULL,NULL,49),(110,87,1,1,0,'48P Second Blvd SE',48,'P',NULL,'Second','Blvd','SE',NULL,NULL,NULL,NULL,'Detroit',1,1021,NULL,'48235',NULL,1228,42.427636,-83.19547,0,NULL,NULL,NULL),(111,121,1,1,0,'459X Jackson Pl NW',459,'X',NULL,'Jackson','Pl','NW',NULL,NULL,NULL,NULL,'Atlantic City',1,1029,NULL,'08404',NULL,1228,39.509208,-74.608557,0,NULL,NULL,50),(112,148,1,1,0,'459X Jackson Pl NW',459,'X',NULL,'Jackson','Pl','NW',NULL,NULL,NULL,NULL,'Atlantic City',1,1029,NULL,'08404',NULL,1228,39.509208,-74.608557,0,NULL,NULL,50),(113,113,1,1,0,'459X Jackson Pl NW',459,'X',NULL,'Jackson','Pl','NW',NULL,NULL,NULL,NULL,'Atlantic City',1,1029,NULL,'08404',NULL,1228,39.509208,-74.608557,0,NULL,NULL,50),(114,173,1,1,0,'459X Jackson Pl NW',459,'X',NULL,'Jackson','Pl','NW',NULL,NULL,NULL,NULL,'Atlantic City',1,1029,NULL,'08404',NULL,1228,39.509208,-74.608557,0,NULL,NULL,50),(115,35,1,0,0,'120S El Camino Ln E',120,'S',NULL,'El Camino','Ln','E',NULL,NULL,NULL,NULL,'North Westchester',1,1006,NULL,'06474',NULL,1228,41.464758,-72.127301,0,NULL,NULL,51),(116,187,1,1,0,'120S El Camino Ln E',120,'S',NULL,'El Camino','Ln','E',NULL,NULL,NULL,NULL,'North Westchester',1,1006,NULL,'06474',NULL,1228,41.464758,-72.127301,0,NULL,NULL,51),(117,6,1,1,0,'120S El Camino Ln E',120,'S',NULL,'El Camino','Ln','E',NULL,NULL,NULL,NULL,'North Westchester',1,1006,NULL,'06474',NULL,1228,41.464758,-72.127301,0,NULL,NULL,51),(118,133,1,1,0,'120S El Camino Ln E',120,'S',NULL,'El Camino','Ln','E',NULL,NULL,NULL,NULL,'North Westchester',1,1006,NULL,'06474',NULL,1228,41.464758,-72.127301,0,NULL,NULL,51),(119,75,1,1,0,'821I College St NW',821,'I',NULL,'College','St','NW',NULL,NULL,NULL,NULL,'Springfield Gardens',1,1031,NULL,'11413',NULL,1228,40.670138,-73.75141,0,NULL,NULL,52),(120,11,1,1,0,'821I College St NW',821,'I',NULL,'College','St','NW',NULL,NULL,NULL,NULL,'Springfield Gardens',1,1031,NULL,'11413',NULL,1228,40.670138,-73.75141,0,NULL,NULL,52),(121,96,1,1,0,'821I College St NW',821,'I',NULL,'College','St','NW',NULL,NULL,NULL,NULL,'Springfield Gardens',1,1031,NULL,'11413',NULL,1228,40.670138,-73.75141,0,NULL,NULL,52),(122,112,1,1,0,'183I Bay St E',183,'I',NULL,'Bay','St','E',NULL,NULL,NULL,NULL,'Wilburton',1,1035,NULL,'74578',NULL,1228,34.886021,-95.29859,0,NULL,NULL,NULL),(123,63,1,1,0,'704L Northpoint Blvd N',704,'L',NULL,'Northpoint','Blvd','N',NULL,NULL,NULL,NULL,'Wheeling',1,1024,NULL,'64688',NULL,1228,39.808311,-93.37642,0,NULL,NULL,53),(124,126,1,1,0,'704L Northpoint Blvd N',704,'L',NULL,'Northpoint','Blvd','N',NULL,NULL,NULL,NULL,'Wheeling',1,1024,NULL,'64688',NULL,1228,39.808311,-93.37642,0,NULL,NULL,53),(125,79,1,1,0,'704L Northpoint Blvd N',704,'L',NULL,'Northpoint','Blvd','N',NULL,NULL,NULL,NULL,'Wheeling',1,1024,NULL,'64688',NULL,1228,39.808311,-93.37642,0,NULL,NULL,53),(126,99,1,1,0,'924R Dowlen St NE',924,'R',NULL,'Dowlen','St','NE',NULL,NULL,NULL,NULL,'Summit Point',1,1047,NULL,'25446',NULL,1228,39.247155,-77.95747,0,NULL,NULL,NULL),(127,160,1,0,0,'346T Martin Luther King Dr NW',346,'T',NULL,'Martin Luther King','Dr','NW',NULL,NULL,NULL,NULL,'Dickeyville',1,1048,NULL,'53808',NULL,1228,42.627951,-90.5939,0,NULL,NULL,54),(128,197,1,0,0,'346T Martin Luther King Dr NW',346,'T',NULL,'Martin Luther King','Dr','NW',NULL,NULL,NULL,NULL,'Dickeyville',1,1048,NULL,'53808',NULL,1228,42.627951,-90.5939,0,NULL,NULL,54),(129,3,1,1,0,'346T Martin Luther King Dr NW',346,'T',NULL,'Martin Luther King','Dr','NW',NULL,NULL,NULL,NULL,'Dickeyville',1,1048,NULL,'53808',NULL,1228,42.627951,-90.5939,0,NULL,NULL,54),(130,137,1,1,0,'790S Main Dr SW',790,'S',NULL,'Main','Dr','SW',NULL,NULL,NULL,NULL,'Carlos',1,1022,NULL,'56319',NULL,1228,45.990781,-95.27033,0,NULL,NULL,NULL),(131,76,1,1,0,'620N Lincoln Rd SE',620,'N',NULL,'Lincoln','Rd','SE',NULL,NULL,NULL,NULL,'Tampa',1,1008,NULL,'33664',NULL,1228,27.871964,-82.438841,0,NULL,NULL,55),(132,153,1,1,0,'620N Lincoln Rd SE',620,'N',NULL,'Lincoln','Rd','SE',NULL,NULL,NULL,NULL,'Tampa',1,1008,NULL,'33664',NULL,1228,27.871964,-82.438841,0,NULL,NULL,55),(133,194,1,1,0,'620N Lincoln Rd SE',620,'N',NULL,'Lincoln','Rd','SE',NULL,NULL,NULL,NULL,'Tampa',1,1008,NULL,'33664',NULL,1228,27.871964,-82.438841,0,NULL,NULL,55),(134,120,1,1,0,'620N Lincoln Rd SE',620,'N',NULL,'Lincoln','Rd','SE',NULL,NULL,NULL,NULL,'Tampa',1,1008,NULL,'33664',NULL,1228,27.871964,-82.438841,0,NULL,NULL,55),(135,46,1,1,0,'79X Main Ave NE',79,'X',NULL,'Main','Ave','NE',NULL,NULL,NULL,NULL,'Bay City',1,1036,NULL,'97107',NULL,1228,45.534203,-123.88468,0,NULL,NULL,56),(136,48,1,1,0,'79X Main Ave NE',79,'X',NULL,'Main','Ave','NE',NULL,NULL,NULL,NULL,'Bay City',1,1036,NULL,'97107',NULL,1228,45.534203,-123.88468,0,NULL,NULL,56),(137,188,1,1,0,'79X Main Ave NE',79,'X',NULL,'Main','Ave','NE',NULL,NULL,NULL,NULL,'Bay City',1,1036,NULL,'97107',NULL,1228,45.534203,-123.88468,0,NULL,NULL,56),(138,136,1,1,0,'79X Main Ave NE',79,'X',NULL,'Main','Ave','NE',NULL,NULL,NULL,NULL,'Bay City',1,1036,NULL,'97107',NULL,1228,45.534203,-123.88468,0,NULL,NULL,56),(139,143,1,1,0,'111E Van Ness St N',111,'E',NULL,'Van Ness','St','N',NULL,NULL,NULL,NULL,'Alston',1,1009,NULL,'30412',NULL,1228,32.083879,-82.47988,0,NULL,NULL,57),(140,45,1,1,0,'111E Van Ness St N',111,'E',NULL,'Van Ness','St','N',NULL,NULL,NULL,NULL,'Alston',1,1009,NULL,'30412',NULL,1228,32.083879,-82.47988,0,NULL,NULL,57),(141,104,1,1,0,'111E Van Ness St N',111,'E',NULL,'Van Ness','St','N',NULL,NULL,NULL,NULL,'Alston',1,1009,NULL,'30412',NULL,1228,32.083879,-82.47988,0,NULL,NULL,57),(142,138,1,1,0,'111E Van Ness St N',111,'E',NULL,'Van Ness','St','N',NULL,NULL,NULL,NULL,'Alston',1,1009,NULL,'30412',NULL,1228,32.083879,-82.47988,0,NULL,NULL,57),(143,169,1,1,0,'920J Beech Dr NE',920,'J',NULL,'Beech','Dr','NE',NULL,NULL,NULL,NULL,'Colwich',1,1015,NULL,'67030',NULL,1228,37.787206,-97.54135,0,NULL,NULL,58),(144,73,1,1,0,'920J Beech Dr NE',920,'J',NULL,'Beech','Dr','NE',NULL,NULL,NULL,NULL,'Colwich',1,1015,NULL,'67030',NULL,1228,37.787206,-97.54135,0,NULL,NULL,58),(145,12,1,1,0,'920J Beech Dr NE',920,'J',NULL,'Beech','Dr','NE',NULL,NULL,NULL,NULL,'Colwich',1,1015,NULL,'67030',NULL,1228,37.787206,-97.54135,0,NULL,NULL,58),(146,26,1,1,0,'920J Beech Dr NE',920,'J',NULL,'Beech','Dr','NE',NULL,NULL,NULL,NULL,'Colwich',1,1015,NULL,'67030',NULL,1228,37.787206,-97.54135,0,NULL,NULL,58),(147,16,1,1,0,'598W States Path SE',598,'W',NULL,'States','Path','SE',NULL,NULL,NULL,NULL,'West Topsham',1,1044,NULL,'05086',NULL,1228,44.116731,-72.31915,0,NULL,NULL,59),(148,74,1,1,0,'598W States Path SE',598,'W',NULL,'States','Path','SE',NULL,NULL,NULL,NULL,'West Topsham',1,1044,NULL,'05086',NULL,1228,44.116731,-72.31915,0,NULL,NULL,59),(149,131,1,1,0,'598W States Path SE',598,'W',NULL,'States','Path','SE',NULL,NULL,NULL,NULL,'West Topsham',1,1044,NULL,'05086',NULL,1228,44.116731,-72.31915,0,NULL,NULL,59),(150,155,1,1,0,'598W States Path SE',598,'W',NULL,'States','Path','SE',NULL,NULL,NULL,NULL,'West Topsham',1,1044,NULL,'05086',NULL,1228,44.116731,-72.31915,0,NULL,NULL,59),(151,179,1,1,0,'968G Caulder Path NW',968,'G',NULL,'Caulder','Path','NW',NULL,NULL,NULL,NULL,'Ragland',1,1047,NULL,'25690',NULL,1228,37.743063,-82.10801,0,NULL,NULL,60),(152,170,1,1,0,'968G Caulder Path NW',968,'G',NULL,'Caulder','Path','NW',NULL,NULL,NULL,NULL,'Ragland',1,1047,NULL,'25690',NULL,1228,37.743063,-82.10801,0,NULL,NULL,60),(153,140,1,1,0,'968G Caulder Path NW',968,'G',NULL,'Caulder','Path','NW',NULL,NULL,NULL,NULL,'Ragland',1,1047,NULL,'25690',NULL,1228,37.743063,-82.10801,0,NULL,NULL,60),(154,92,1,1,0,'968G Caulder Path NW',968,'G',NULL,'Caulder','Path','NW',NULL,NULL,NULL,NULL,'Ragland',1,1047,NULL,'25690',NULL,1228,37.743063,-82.10801,0,NULL,NULL,60),(155,172,1,1,0,'126N Lincoln St SE',126,'N',NULL,'Lincoln','St','SE',NULL,NULL,NULL,NULL,'Charleston',1,1047,NULL,'25313',NULL,1228,38.425721,-81.76168,0,NULL,NULL,61),(156,106,1,1,0,'126N Lincoln St SE',126,'N',NULL,'Lincoln','St','SE',NULL,NULL,NULL,NULL,'Charleston',1,1047,NULL,'25313',NULL,1228,38.425721,-81.76168,0,NULL,NULL,61),(157,147,1,1,0,'126N Lincoln St SE',126,'N',NULL,'Lincoln','St','SE',NULL,NULL,NULL,NULL,'Charleston',1,1047,NULL,'25313',NULL,1228,38.425721,-81.76168,0,NULL,NULL,61),(158,38,1,1,0,'126N Lincoln St SE',126,'N',NULL,'Lincoln','St','SE',NULL,NULL,NULL,NULL,'Charleston',1,1047,NULL,'25313',NULL,1228,38.425721,-81.76168,0,NULL,NULL,61),(159,159,1,1,0,'146R Jackson Ln N',146,'R',NULL,'Jackson','Ln','N',NULL,NULL,NULL,NULL,'Rancho Cucamonga',1,1004,NULL,'91730',NULL,1228,34.104555,-117.58734,0,NULL,NULL,62),(160,88,1,1,0,'146R Jackson Ln N',146,'R',NULL,'Jackson','Ln','N',NULL,NULL,NULL,NULL,'Rancho Cucamonga',1,1004,NULL,'91730',NULL,1228,34.104555,-117.58734,0,NULL,NULL,62),(161,4,1,1,0,'146R Jackson Ln N',146,'R',NULL,'Jackson','Ln','N',NULL,NULL,NULL,NULL,'Rancho Cucamonga',1,1004,NULL,'91730',NULL,1228,34.104555,-117.58734,0,NULL,NULL,62),(162,185,1,1,0,'146R Jackson Ln N',146,'R',NULL,'Jackson','Ln','N',NULL,NULL,NULL,NULL,'Rancho Cucamonga',1,1004,NULL,'91730',NULL,1228,34.104555,-117.58734,0,NULL,NULL,62),(163,40,1,0,0,'606O Pine Ave W',606,'O',NULL,'Pine','Ave','W',NULL,NULL,NULL,NULL,'Higginson',1,1003,NULL,'72068',NULL,1228,35.169853,-91.70833,0,NULL,NULL,63),(164,33,1,1,0,'606O Pine Ave W',606,'O',NULL,'Pine','Ave','W',NULL,NULL,NULL,NULL,'Higginson',1,1003,NULL,'72068',NULL,1228,35.169853,-91.70833,0,NULL,NULL,63),(165,192,1,1,0,'606O Pine Ave W',606,'O',NULL,'Pine','Ave','W',NULL,NULL,NULL,NULL,'Higginson',1,1003,NULL,'72068',NULL,1228,35.169853,-91.70833,0,NULL,NULL,63),(166,50,1,1,0,'606O Pine Ave W',606,'O',NULL,'Pine','Ave','W',NULL,NULL,NULL,NULL,'Higginson',1,1003,NULL,'72068',NULL,1228,35.169853,-91.70833,0,NULL,NULL,63),(167,60,1,0,0,'209C Pine Dr S',209,'C',NULL,'Pine','Dr','S',NULL,NULL,NULL,NULL,'Belmont',1,1028,NULL,'03220',NULL,1228,43.459555,-71.47352,0,NULL,NULL,64),(168,109,1,1,0,'209C Pine Dr S',209,'C',NULL,'Pine','Dr','S',NULL,NULL,NULL,NULL,'Belmont',1,1028,NULL,'03220',NULL,1228,43.459555,-71.47352,0,NULL,NULL,64),(169,53,1,1,0,'209C Pine Dr S',209,'C',NULL,'Pine','Dr','S',NULL,NULL,NULL,NULL,'Belmont',1,1028,NULL,'03220',NULL,1228,43.459555,-71.47352,0,NULL,NULL,64),(170,122,1,1,0,'209C Pine Dr S',209,'C',NULL,'Pine','Dr','S',NULL,NULL,NULL,NULL,'Belmont',1,1028,NULL,'03220',NULL,1228,43.459555,-71.47352,0,NULL,NULL,64),(171,190,1,1,0,'127E Maple Way SW',127,'E',NULL,'Maple','Way','SW',NULL,NULL,NULL,NULL,'Dickson',1,1021,NULL,'49169',NULL,1228,44.30476,-86.015026,0,NULL,NULL,65),(172,85,1,1,0,'127E Maple Way SW',127,'E',NULL,'Maple','Way','SW',NULL,NULL,NULL,NULL,'Dickson',1,1021,NULL,'49169',NULL,1228,44.30476,-86.015026,0,NULL,NULL,65),(173,102,1,1,0,'127E Maple Way SW',127,'E',NULL,'Maple','Way','SW',NULL,NULL,NULL,NULL,'Dickson',1,1021,NULL,'49169',NULL,1228,44.30476,-86.015026,0,NULL,NULL,65),(174,118,1,0,0,'127E Maple Way SW',127,'E',NULL,'Maple','Way','SW',NULL,NULL,NULL,NULL,'Dickson',1,1021,NULL,'49169',NULL,1228,44.30476,-86.015026,0,NULL,NULL,65),(175,189,1,1,0,'228E College Ln S',228,'E',NULL,'College','Ln','S',NULL,NULL,NULL,NULL,'Higginsville',1,1024,NULL,'64037',NULL,1228,39.058604,-93.73366,0,NULL,NULL,66),(176,175,1,1,0,'228E College Ln S',228,'E',NULL,'College','Ln','S',NULL,NULL,NULL,NULL,'Higginsville',1,1024,NULL,'64037',NULL,1228,39.058604,-93.73366,0,NULL,NULL,66),(177,195,1,1,0,'228E College Ln S',228,'E',NULL,'College','Ln','S',NULL,NULL,NULL,NULL,'Higginsville',1,1024,NULL,'64037',NULL,1228,39.058604,-93.73366,0,NULL,NULL,66),(178,134,1,1,0,'228E College Ln S',228,'E',NULL,'College','Ln','S',NULL,NULL,NULL,NULL,'Higginsville',1,1024,NULL,'64037',NULL,1228,39.058604,-93.73366,0,NULL,NULL,66),(179,NULL,1,1,1,'14S El Camino Way E',14,'S',NULL,'El Camino','Way',NULL,NULL,NULL,NULL,NULL,'Collinsville',NULL,1006,NULL,'6022',NULL,1228,41.8328,-72.9253,0,NULL,NULL,NULL),(180,NULL,1,1,1,'11B Woodbridge Path SW',11,'B',NULL,'Woodbridge','Path',NULL,NULL,NULL,NULL,NULL,'Dayton',NULL,1034,NULL,'45417',NULL,1228,39.7531,-84.2471,0,NULL,NULL,NULL),(181,NULL,1,1,1,'581O Lincoln Dr SW',581,'O',NULL,'Lincoln','Dr',NULL,NULL,NULL,NULL,NULL,'Santa Fe',NULL,1030,NULL,'87594',NULL,1228,35.5212,-105.982,0,NULL,NULL,NULL); +INSERT INTO `civicrm_address` (`id`, `contact_id`, `location_type_id`, `is_primary`, `is_billing`, `street_address`, `street_number`, `street_number_suffix`, `street_number_predirectional`, `street_name`, `street_type`, `street_number_postdirectional`, `street_unit`, `supplemental_address_1`, `supplemental_address_2`, `supplemental_address_3`, `city`, `county_id`, `state_province_id`, `postal_code_suffix`, `postal_code`, `usps_adc`, `country_id`, `geo_code_1`, `geo_code_2`, `manual_geo_code`, `timezone`, `name`, `master_id`) VALUES (1,96,1,1,0,'675M Lincoln Ln S',675,'M',NULL,'Lincoln','Ln','S',NULL,NULL,NULL,NULL,'Carmel',1,1018,NULL,'04419',NULL,1228,44.7896,-69.00587,0,NULL,NULL,NULL),(2,67,1,1,0,'715A Bay Rd NW',715,'A',NULL,'Bay','Rd','NW',NULL,NULL,NULL,NULL,'Tiona',1,1037,NULL,'16352',NULL,1228,41.764498,-79.04693,0,NULL,NULL,NULL),(3,57,1,1,0,'2G Cadell Rd E',2,'G',NULL,'Cadell','Rd','E',NULL,NULL,NULL,NULL,'Jacksonville',1,1008,NULL,'32202',NULL,1228,30.328539,-81.65101,0,NULL,NULL,NULL),(4,108,1,1,0,'579W Green Path SW',579,'W',NULL,'Green','Path','SW',NULL,NULL,NULL,NULL,'Hawleyville',1,1006,NULL,'06440',NULL,1228,41.308873,-73.363661,0,NULL,NULL,NULL),(5,161,1,1,0,'16U Jackson Ln NE',16,'U',NULL,'Jackson','Ln','NE',NULL,NULL,NULL,NULL,'Jamestown',1,1041,NULL,'38556',NULL,1228,36.409385,-84.93393,0,NULL,NULL,NULL),(6,154,1,1,0,'990W El Camino Dr E',990,'W',NULL,'El Camino','Dr','E',NULL,NULL,NULL,NULL,'Greenwood',1,1021,NULL,'49758',NULL,1228,44.682965,-84.287698,0,NULL,NULL,NULL),(7,23,1,1,0,'186E Second St SW',186,'E',NULL,'Second','St','SW',NULL,NULL,NULL,NULL,'Worcester',1,1044,NULL,'05682',NULL,1228,44.383559,-72.55088,0,NULL,NULL,NULL),(8,92,1,1,0,'530Z Martin Luther King Ln NE',530,'Z',NULL,'Martin Luther King','Ln','NE',NULL,NULL,NULL,NULL,'Chesnee',1,1039,NULL,'29323',NULL,1228,35.131971,-81.88553,0,NULL,NULL,NULL),(9,107,1,1,0,'231D Lincoln Dr SE',231,'D',NULL,'Lincoln','Dr','SE',NULL,NULL,NULL,NULL,'Lindrith',1,1030,NULL,'87029',NULL,1228,36.343007,-107.09858,0,NULL,NULL,NULL),(10,125,1,1,0,'587E Second St W',587,'E',NULL,'Second','St','W',NULL,NULL,NULL,NULL,'Fingerville',1,1039,NULL,'29338',NULL,1228,35.136333,-82.00328,0,NULL,NULL,NULL),(11,173,1,1,0,'970U Cadell Rd S',970,'U',NULL,'Cadell','Rd','S',NULL,NULL,NULL,NULL,'Henagar',1,1000,NULL,'35978',NULL,1228,34.637589,-85.73274,0,NULL,NULL,NULL),(12,80,1,1,0,'994K Woodbridge Path SW',994,'K',NULL,'Woodbridge','Path','SW',NULL,NULL,NULL,NULL,'James City',1,1037,NULL,'16734',NULL,1228,41.619029,-78.84,0,NULL,NULL,NULL),(13,69,1,1,0,'827Q Second Dr W',827,'Q',NULL,'Second','Dr','W',NULL,NULL,NULL,NULL,'El Sobrante',1,1004,NULL,'94803',NULL,1228,37.969673,-122.29413,0,NULL,NULL,NULL),(14,194,1,1,0,'64C States Dr SW',64,'C',NULL,'States','Dr','SW',NULL,NULL,NULL,NULL,'Jamestown',1,1016,NULL,'42629',NULL,1228,36.946642,-85.09981,0,NULL,NULL,NULL),(15,181,1,1,0,'761Y Second Way S',761,'Y',NULL,'Second','Way','S',NULL,NULL,NULL,NULL,'Vicksburg',1,1021,NULL,'49097',NULL,1228,42.117028,-85.5073,0,NULL,NULL,NULL),(16,60,1,1,0,'69J Lincoln Pl NE',69,'J',NULL,'Lincoln','Pl','NE',NULL,NULL,NULL,NULL,'Crisfield',1,1019,NULL,'21817',NULL,1228,37.985297,-75.84597,0,NULL,NULL,NULL),(17,133,1,1,0,'341R Caulder Blvd NE',341,'R',NULL,'Caulder','Blvd','NE',NULL,NULL,NULL,NULL,'Argyle',1,1022,NULL,'56713',NULL,1228,48.342579,-96.79448,0,NULL,NULL,NULL),(18,127,1,1,0,'822N Bay Blvd SE',822,'N',NULL,'Bay','Blvd','SE',NULL,NULL,NULL,NULL,'Woodbridge',1,1029,NULL,'07095',NULL,1228,40.557104,-74.28316,0,NULL,NULL,NULL),(19,191,1,1,0,'280P Main Way NW',280,'P',NULL,'Main','Way','NW',NULL,NULL,NULL,NULL,'Newport News',1,1045,NULL,'23605',NULL,1228,37.019453,-76.43651,0,NULL,NULL,NULL),(20,121,1,1,0,'541E Dowlen Pl N',541,'E',NULL,'Dowlen','Pl','N',NULL,NULL,NULL,NULL,'El Paso',1,1042,NULL,'88576',NULL,1228,31.694842,-106.299987,0,NULL,NULL,NULL),(21,13,1,1,0,'803G Woodbridge St S',803,'G',NULL,'Woodbridge','St','S',NULL,NULL,NULL,NULL,'Prairie Grove',1,1003,NULL,'72753',NULL,1228,35.951426,-94.32246,0,NULL,NULL,NULL),(22,95,1,1,0,'128W El Camino Rd NE',128,'W',NULL,'El Camino','Rd','NE',NULL,NULL,NULL,NULL,'West Palm Beach',1,1008,NULL,'33404',NULL,1228,26.782114,-80.06528,0,NULL,NULL,NULL),(23,43,1,1,0,'754N Martin Luther King Ave SE',754,'N',NULL,'Martin Luther King','Ave','SE',NULL,NULL,NULL,NULL,'Exmore',1,1045,NULL,'23350',NULL,1228,37.522269,-75.86132,0,NULL,NULL,NULL),(24,17,1,1,0,'27R Van Ness St N',27,'R',NULL,'Van Ness','St','N',NULL,NULL,NULL,NULL,'Caseville',1,1021,NULL,'48725',NULL,1228,43.944466,-83.23974,0,NULL,NULL,NULL),(25,149,1,1,0,'802O Martin Luther King Rd E',802,'O',NULL,'Martin Luther King','Rd','E',NULL,NULL,NULL,NULL,'Huntsville',1,1000,NULL,'35802',NULL,1228,34.666041,-86.55929,0,NULL,NULL,NULL),(26,167,1,1,0,'180L Green Pl S',180,'L',NULL,'Green','Pl','S',NULL,NULL,NULL,NULL,'Abingdon',1,1045,NULL,'24211',NULL,1228,36.657812,-81.96207,0,NULL,NULL,NULL),(27,136,1,1,0,'470B Bay Blvd SE',470,'B',NULL,'Bay','Blvd','SE',NULL,NULL,NULL,NULL,'East Springfield',1,1037,NULL,'16411',NULL,1228,41.981289,-80.44277,0,NULL,NULL,NULL),(28,150,1,1,0,'709B Cadell Ln N',709,'B',NULL,'Cadell','Ln','N',NULL,NULL,NULL,NULL,'Amarillo',1,1042,NULL,'79178',NULL,1228,35.401475,-101.895089,0,NULL,NULL,NULL),(29,63,1,1,0,'691B Northpoint Blvd NE',691,'B',NULL,'Northpoint','Blvd','NE',NULL,NULL,NULL,NULL,'Salt Lake City',1,1043,NULL,'84150',NULL,1228,40.668068,-111.908297,0,NULL,NULL,NULL),(30,111,1,1,0,'308D Second Dr NW',308,'D',NULL,'Second','Dr','NW',NULL,NULL,NULL,NULL,'Fort Wayne',1,1013,NULL,'46857',NULL,1228,41.093763,-85.070713,0,NULL,NULL,NULL),(31,131,1,1,0,'867F Northpoint Dr E',867,'F',NULL,'Northpoint','Dr','E',NULL,NULL,NULL,NULL,'Bedminster',1,1037,NULL,'18910',NULL,1228,40.328645,-75.10278,0,NULL,NULL,NULL),(32,193,1,1,0,'162R Lincoln Way SW',162,'R',NULL,'Lincoln','Way','SW',NULL,NULL,NULL,NULL,'Havensville',1,1015,NULL,'66432',NULL,1228,39.496479,-96.07717,0,NULL,NULL,NULL),(33,46,1,1,0,'510Y Van Ness Ln SW',510,'Y',NULL,'Van Ness','Ln','SW',NULL,NULL,NULL,NULL,'Lovelady',1,1042,NULL,'75851',NULL,1228,31.104197,-95.46434,0,NULL,NULL,NULL),(34,14,1,1,0,'326T El Camino St NE',326,'T',NULL,'El Camino','St','NE',NULL,NULL,NULL,NULL,'Grafton',1,1026,NULL,'68365',NULL,1228,40.627475,-97.72408,0,NULL,NULL,NULL),(35,117,1,1,0,'634Q States Rd S',634,'Q',NULL,'States','Rd','S',NULL,NULL,NULL,NULL,'Palmyra',1,1024,NULL,'63461',NULL,1228,39.793879,-91.54631,0,NULL,NULL,NULL),(36,66,1,1,0,'160V Main Blvd N',160,'V',NULL,'Main','Blvd','N',NULL,NULL,NULL,NULL,'Lilesville',1,1032,NULL,'28091',NULL,1228,34.970129,-79.93705,0,NULL,NULL,NULL),(37,59,1,1,0,'137C Beech Pl N',137,'C',NULL,'Beech','Pl','N',NULL,NULL,NULL,NULL,'Charlotteville',1,1031,NULL,'12036',NULL,1228,42.546034,-74.67315,0,NULL,NULL,NULL),(38,28,1,1,0,'583S Jackson Pl E',583,'S',NULL,'Jackson','Pl','E',NULL,NULL,NULL,NULL,'Nashville',1,1041,NULL,'37240',NULL,1228,36.186605,-86.785248,0,NULL,NULL,NULL),(39,171,1,1,0,'837N Maple Blvd S',837,'N',NULL,'Maple','Blvd','S',NULL,NULL,NULL,NULL,'Mariposa',1,1004,NULL,'95338',NULL,1228,37.505484,-119.92527,0,NULL,NULL,NULL),(40,98,1,1,0,'843Z States Rd S',843,'Z',NULL,'States','Rd','S',NULL,NULL,NULL,NULL,'Normantown',1,1047,NULL,'25267',NULL,1228,38.849663,-80.96569,0,NULL,NULL,NULL),(41,53,1,1,0,'102W College Way N',102,'W',NULL,'College','Way','N',NULL,NULL,NULL,NULL,'Surprise',1,1002,NULL,'85379',NULL,1228,33.616888,-112.40158,0,NULL,NULL,NULL),(42,170,1,1,0,'56A Caulder Pl NW',56,'A',NULL,'Caulder','Pl','NW',NULL,NULL,NULL,NULL,'Phoenix',1,1002,NULL,'85003',NULL,1228,33.451143,-112.07838,0,NULL,NULL,NULL),(43,200,1,1,0,'104E Main Blvd SW',104,'E',NULL,'Main','Blvd','SW',NULL,NULL,NULL,NULL,'Aurelia',1,1014,NULL,'51005',NULL,1228,42.710831,-95.43137,0,NULL,NULL,NULL),(44,93,1,1,0,'916K El Camino Way NE',916,'K',NULL,'El Camino','Way','NE',NULL,NULL,NULL,NULL,'Orlando',1,1008,NULL,'32877',NULL,1228,28.566338,-81.260818,0,NULL,NULL,NULL),(45,56,1,1,0,'204G College Blvd NE',204,'G',NULL,'College','Blvd','NE',NULL,NULL,NULL,NULL,'Clarendon Hills',1,1012,NULL,'60514',NULL,1228,41.779533,-87.95798,0,NULL,NULL,NULL),(46,24,1,1,0,'707F El Camino St NE',707,'F',NULL,'El Camino','St','NE',NULL,NULL,NULL,NULL,'Pinedale',1,1002,NULL,'85934',NULL,1228,34.270743,-110.26032,0,NULL,NULL,NULL),(47,104,1,1,0,'175E Bay Dr W',175,'E',NULL,'Bay','Dr','W',NULL,NULL,NULL,NULL,'Seville',1,1009,NULL,'31084',NULL,1228,31.989039,-83.394574,0,NULL,NULL,NULL),(48,174,1,1,0,'559L Lincoln Way W',559,'L',NULL,'Lincoln','Way','W',NULL,NULL,NULL,NULL,'Corpus Christi',1,1042,NULL,'78474',NULL,1228,27.777,-97.463213,0,NULL,NULL,NULL),(49,83,1,1,0,'713C Second Blvd SW',713,'C',NULL,'Second','Blvd','SW',NULL,NULL,NULL,NULL,'Akron',1,1005,NULL,'80720',NULL,1228,40.124199,-103.18362,0,NULL,NULL,NULL),(50,185,1,1,0,'810B El Camino Path S',810,'B',NULL,'El Camino','Path','S',NULL,NULL,NULL,NULL,'Dexter',1,1036,NULL,'97431',NULL,1228,43.892577,-122.81992,0,NULL,NULL,NULL),(51,85,1,1,0,'490N States Blvd N',490,'N',NULL,'States','Blvd','N',NULL,NULL,NULL,NULL,'Twin Mountain',1,1028,NULL,'03595',NULL,1228,44.271516,-71.51746,0,NULL,NULL,NULL),(52,29,1,1,0,'483O Lincoln Ave W',483,'O',NULL,'Lincoln','Ave','W',NULL,NULL,NULL,NULL,'Seeley',1,1004,NULL,'92273',NULL,1228,32.792631,-115.69162,0,NULL,NULL,NULL),(53,12,1,1,0,'548D Jackson Rd NW',548,'D',NULL,'Jackson','Rd','NW',NULL,NULL,NULL,NULL,'Fort Walton Beach',1,1008,NULL,'32548',NULL,1228,30.414932,-86.61992,0,NULL,NULL,NULL),(54,89,1,1,0,'662B Jackson Rd SW',662,'B',NULL,'Jackson','Rd','SW',NULL,NULL,NULL,NULL,'Cincinnati',1,1034,NULL,'45273',NULL,1228,39.166759,-84.53822,0,NULL,NULL,NULL),(55,51,1,1,0,'345U Pine Path W',345,'U',NULL,'Pine','Path','W',NULL,NULL,NULL,NULL,'Ocala',1,1008,NULL,'34474',NULL,1228,29.166186,-82.17027,0,NULL,NULL,NULL),(56,41,1,1,0,'827G El Camino Blvd S',827,'G',NULL,'El Camino','Blvd','S',NULL,NULL,NULL,NULL,'Pleasant Hill',1,1041,NULL,'38578',NULL,1228,36.007405,-85.162272,0,NULL,NULL,NULL),(57,90,1,1,0,'21F States Dr SW',21,'F',NULL,'States','Dr','SW',NULL,NULL,NULL,NULL,'Finlayson',1,1022,NULL,'55735',NULL,1228,46.250308,-93.04462,0,NULL,NULL,NULL),(58,72,1,1,0,'111M Caulder St SE',111,'M',NULL,'Caulder','St','SE',NULL,NULL,NULL,NULL,'Amberson',1,1037,NULL,'17210',NULL,1228,40.171667,-77.661354,0,NULL,NULL,NULL),(59,116,1,1,0,'123K College Ave W',123,'K',NULL,'College','Ave','W',NULL,NULL,NULL,NULL,'Kincaid',1,1012,NULL,'62540',NULL,1228,39.58755,-89.41265,0,NULL,NULL,NULL),(60,42,1,1,0,'217T Dowlen Ave NW',217,'T',NULL,'Dowlen','Ave','NW',NULL,NULL,NULL,NULL,'Girard',1,1012,NULL,'62640',NULL,1228,39.436584,-89.8028,0,NULL,NULL,NULL),(61,175,1,1,0,'319E Pine Blvd NW',319,'E',NULL,'Pine','Blvd','NW',NULL,NULL,NULL,NULL,'Baltimore',1,1019,NULL,'21210',NULL,1228,39.352496,-76.63452,0,NULL,NULL,NULL),(62,183,1,1,0,'141L Maple Ln NW',141,'L',NULL,'Maple','Ln','NW',NULL,NULL,NULL,NULL,'Mulberry',1,1015,NULL,'66756',NULL,1228,37.554735,-94.63283,0,NULL,NULL,NULL),(63,192,1,1,0,'599K Van Ness Blvd S',599,'K',NULL,'Van Ness','Blvd','S',NULL,NULL,NULL,NULL,'Houston',1,1042,NULL,'77026',NULL,1228,29.79437,-95.33395,0,NULL,NULL,NULL),(64,157,1,1,0,'908J College Rd S',908,'J',NULL,'College','Rd','S',NULL,NULL,NULL,NULL,'Maryville',1,1041,NULL,'37804',NULL,1228,35.781607,-83.93591,0,NULL,NULL,NULL),(65,68,1,1,0,'763N Pine Blvd NE',763,'N',NULL,'Pine','Blvd','NE',NULL,NULL,NULL,NULL,'Lincolnville Center',1,1018,NULL,'04850',NULL,1228,44.478694,-69.149559,0,NULL,NULL,NULL),(66,77,1,1,0,'22Z Green Blvd W',22,'Z',NULL,'Green','Blvd','W',NULL,NULL,NULL,NULL,'Kamas',1,1043,NULL,'84036',NULL,1228,40.625883,-111.20141,0,NULL,NULL,NULL),(67,162,3,1,0,'201J Green Rd SW',201,'J',NULL,'Green','Rd','SW',NULL,'c/o OPDC',NULL,NULL,'Perry Hall',1,1019,NULL,'21128',NULL,1228,39.400296,-76.44639,0,NULL,NULL,NULL),(68,33,3,1,0,'391S Caulder St N',391,'S',NULL,'Caulder','St','N',NULL,'c/o OPDC',NULL,NULL,'Mountain Home',1,1042,NULL,'78058',NULL,1228,30.070414,-99.69191,0,NULL,NULL,NULL),(69,96,2,0,0,'391S Caulder St N',391,'S',NULL,'Caulder','St','N',NULL,'c/o OPDC',NULL,NULL,'Mountain Home',1,1042,NULL,'78058',NULL,1228,30.070414,-99.69191,0,NULL,NULL,68),(70,39,3,1,0,'888Q Second St NE',888,'Q',NULL,'Second','St','NE',NULL,'Urgent',NULL,NULL,'Dallas',1,1042,NULL,'75392',NULL,1228,32.767268,-96.777626,0,NULL,NULL,NULL),(71,88,3,1,0,'201G Maple Rd W',201,'G',NULL,'Maple','Rd','W',NULL,'Payables Dept.',NULL,NULL,'Hudson',1,1013,NULL,'46747',NULL,1228,41.556391,-85.15428,0,NULL,NULL,NULL),(72,108,2,0,0,'201G Maple Rd W',201,'G',NULL,'Maple','Rd','W',NULL,'Payables Dept.',NULL,NULL,'Hudson',1,1013,NULL,'46747',NULL,1228,41.556391,-85.15428,0,NULL,NULL,71),(73,151,3,1,0,'413F Woodbridge Dr E',413,'F',NULL,'Woodbridge','Dr','E',NULL,'Attn: Development',NULL,NULL,'Bath',1,1037,NULL,'18014',NULL,1228,40.747742,-75.40078,0,NULL,NULL,NULL),(74,44,2,1,0,'413F Woodbridge Dr E',413,'F',NULL,'Woodbridge','Dr','E',NULL,'Attn: Development',NULL,NULL,'Bath',1,1037,NULL,'18014',NULL,1228,40.747742,-75.40078,0,NULL,NULL,73),(75,189,3,1,0,'685Y States Path S',685,'Y',NULL,'States','Path','S',NULL,'Cuffe Parade',NULL,NULL,'Laddonia',1,1024,NULL,'63352',NULL,1228,39.249616,-91.64872,0,NULL,NULL,NULL),(76,199,3,1,0,'437C Lincoln Ln N',437,'C',NULL,'Lincoln','Ln','N',NULL,'Attn: Accounting',NULL,NULL,'Cheraw',1,1005,NULL,'81030',NULL,1228,38.107901,-103.51113,0,NULL,NULL,NULL),(77,169,3,1,0,'569I Lincoln Dr N',569,'I',NULL,'Lincoln','Dr','N',NULL,'Editorial Dept',NULL,NULL,'McKenney',1,1045,NULL,'23872',NULL,1228,36.993498,-77.74687,0,NULL,NULL,NULL),(78,118,2,1,0,'569I Lincoln Dr N',569,'I',NULL,'Lincoln','Dr','N',NULL,'Editorial Dept',NULL,NULL,'McKenney',1,1045,NULL,'23872',NULL,1228,36.993498,-77.74687,0,NULL,NULL,77),(79,10,3,1,0,'724Z Dowlen Rd SE',724,'Z',NULL,'Dowlen','Rd','SE',NULL,'Editorial Dept',NULL,NULL,'Whiteclay',1,1026,NULL,'69365',NULL,1228,42.963117,-102.51068,0,NULL,NULL,NULL),(80,135,3,1,0,'953O Maple St N',953,'O',NULL,'Maple','St','N',NULL,'Attn: Accounting',NULL,NULL,'Berkeley',1,1004,NULL,'94704',NULL,1228,37.868575,-122.25855,0,NULL,NULL,NULL),(81,149,2,0,0,'953O Maple St N',953,'O',NULL,'Maple','St','N',NULL,'Attn: Accounting',NULL,NULL,'Berkeley',1,1004,NULL,'94704',NULL,1228,37.868575,-122.25855,0,NULL,NULL,80),(82,100,3,1,0,'793V Lincoln Rd E',793,'V',NULL,'Lincoln','Rd','E',NULL,'Attn: Accounting',NULL,NULL,'Leburn',1,1016,NULL,'41831',NULL,1228,37.387358,-82.95633,0,NULL,NULL,NULL),(83,84,3,1,0,'496F Dowlen Path S',496,'F',NULL,'Dowlen','Path','S',NULL,'Urgent',NULL,NULL,'Southwick',1,1020,NULL,'01077',NULL,1228,42.05283,-72.76966,0,NULL,NULL,NULL),(84,97,2,1,0,'496F Dowlen Path S',496,'F',NULL,'Dowlen','Path','S',NULL,'Urgent',NULL,NULL,'Southwick',1,1020,NULL,'01077',NULL,1228,42.05283,-72.76966,0,NULL,NULL,83),(85,195,3,1,0,'682G Jackson Path SW',682,'G',NULL,'Jackson','Path','SW',NULL,'Attn: Development',NULL,NULL,'Iola',1,1048,NULL,'54945',NULL,1228,44.558941,-89.13383,0,NULL,NULL,NULL),(86,101,3,1,0,'82M Lincoln St SW',82,'M',NULL,'Lincoln','St','SW',NULL,'Churchgate',NULL,NULL,'Kearsarge',1,1028,NULL,'03847',NULL,1228,43.883871,-71.257726,0,NULL,NULL,NULL),(87,178,3,1,0,'511G Maple Pl SE',511,'G',NULL,'Maple','Pl','SE',NULL,'Attn: Accounting',NULL,NULL,'Madison',1,1048,NULL,'53718',NULL,1228,43.095178,-89.2704,0,NULL,NULL,NULL),(88,123,2,1,0,'511G Maple Pl SE',511,'G',NULL,'Maple','Pl','SE',NULL,'Attn: Accounting',NULL,NULL,'Madison',1,1048,NULL,'53718',NULL,1228,43.095178,-89.2704,0,NULL,NULL,87),(89,159,3,1,0,'833Q Cadell Path SW',833,'Q',NULL,'Cadell','Path','SW',NULL,'Receiving',NULL,NULL,'Columbia',1,1039,NULL,'29230',NULL,1228,34.107483,-81.062623,0,NULL,NULL,NULL),(90,40,2,1,0,'833Q Cadell Path SW',833,'Q',NULL,'Cadell','Path','SW',NULL,'Receiving',NULL,NULL,'Columbia',1,1039,NULL,'29230',NULL,1228,34.107483,-81.062623,0,NULL,NULL,89),(91,34,3,1,0,'861L Second Ln E',861,'L',NULL,'Second','Ln','E',NULL,'Donor Relations',NULL,NULL,'Achille',1,1035,NULL,'74720',NULL,1228,33.83464,-96.39018,0,NULL,NULL,NULL),(92,16,3,1,0,'742I Beech Dr SW',742,'I',NULL,'Beech','Dr','SW',NULL,'Mailstop 101',NULL,NULL,'Salem',1,1003,NULL,'72559',NULL,1228,34.640273,-92.558295,0,NULL,NULL,NULL),(93,14,2,0,0,'742I Beech Dr SW',742,'I',NULL,'Beech','Dr','SW',NULL,'Mailstop 101',NULL,NULL,'Salem',1,1003,NULL,'72559',NULL,1228,34.640273,-92.558295,0,NULL,NULL,92),(94,103,3,1,0,'777Y Van Ness Blvd NE',777,'Y',NULL,'Van Ness','Blvd','NE',NULL,'Community Relations',NULL,NULL,'Wilmington',1,1007,NULL,'19896',NULL,1228,39.564499,-75.597047,0,NULL,NULL,NULL),(95,196,2,1,0,'777Y Van Ness Blvd NE',777,'Y',NULL,'Van Ness','Blvd','NE',NULL,'Community Relations',NULL,NULL,'Wilmington',1,1007,NULL,'19896',NULL,1228,39.564499,-75.597047,0,NULL,NULL,94),(96,99,3,1,0,'788D Van Ness Rd SE',788,'D',NULL,'Van Ness','Rd','SE',NULL,'Editorial Dept',NULL,NULL,'Wappingers Falls',1,1031,NULL,'12590',NULL,1228,41.59466,-73.89579,0,NULL,NULL,NULL),(97,25,1,1,0,'175E Bay Dr W',175,'E',NULL,'Bay','Dr','W',NULL,NULL,NULL,NULL,'Seville',1,1009,NULL,'31084',NULL,1228,31.989039,-83.394574,0,NULL,NULL,47),(98,4,1,1,0,'175E Bay Dr W',175,'E',NULL,'Bay','Dr','W',NULL,NULL,NULL,NULL,'Seville',1,1009,NULL,'31084',NULL,1228,31.989039,-83.394574,0,NULL,NULL,47),(99,142,1,1,0,'175E Bay Dr W',175,'E',NULL,'Bay','Dr','W',NULL,NULL,NULL,NULL,'Seville',1,1009,NULL,'31084',NULL,1228,31.989039,-83.394574,0,NULL,NULL,47),(100,24,1,0,0,'830B Lincoln Way S',830,'B',NULL,'Lincoln','Way','S',NULL,NULL,NULL,NULL,'Chepachet',1,1038,NULL,'02814',NULL,1228,41.896002,-71.70335,0,NULL,NULL,NULL),(101,50,1,1,0,'559L Lincoln Way W',559,'L',NULL,'Lincoln','Way','W',NULL,NULL,NULL,NULL,'Corpus Christi',1,1042,NULL,'78474',NULL,1228,27.777,-97.463213,0,NULL,NULL,48),(102,45,1,1,0,'559L Lincoln Way W',559,'L',NULL,'Lincoln','Way','W',NULL,NULL,NULL,NULL,'Corpus Christi',1,1042,NULL,'78474',NULL,1228,27.777,-97.463213,0,NULL,NULL,48),(103,182,1,1,0,'559L Lincoln Way W',559,'L',NULL,'Lincoln','Way','W',NULL,NULL,NULL,NULL,'Corpus Christi',1,1042,NULL,'78474',NULL,1228,27.777,-97.463213,0,NULL,NULL,48),(104,30,1,1,0,'559L Lincoln Way W',559,'L',NULL,'Lincoln','Way','W',NULL,NULL,NULL,NULL,'Corpus Christi',1,1042,NULL,'78474',NULL,1228,27.777,-97.463213,0,NULL,NULL,48),(105,118,1,0,0,'713C Second Blvd SW',713,'C',NULL,'Second','Blvd','SW',NULL,NULL,NULL,NULL,'Akron',1,1005,NULL,'80720',NULL,1228,40.124199,-103.18362,0,NULL,NULL,49),(106,19,1,1,0,'713C Second Blvd SW',713,'C',NULL,'Second','Blvd','SW',NULL,NULL,NULL,NULL,'Akron',1,1005,NULL,'80720',NULL,1228,40.124199,-103.18362,0,NULL,NULL,49),(107,20,1,1,0,'713C Second Blvd SW',713,'C',NULL,'Second','Blvd','SW',NULL,NULL,NULL,NULL,'Akron',1,1005,NULL,'80720',NULL,1228,40.124199,-103.18362,0,NULL,NULL,49),(108,87,1,1,0,'741O Second Rd SW',741,'O',NULL,'Second','Rd','SW',NULL,NULL,NULL,NULL,'Fairfax',1,1045,NULL,'22035',NULL,1228,38.855715,-77.361633,0,NULL,NULL,NULL),(109,48,1,1,0,'810B El Camino Path S',810,'B',NULL,'El Camino','Path','S',NULL,NULL,NULL,NULL,'Dexter',1,1036,NULL,'97431',NULL,1228,43.892577,-122.81992,0,NULL,NULL,50),(110,198,1,1,0,'810B El Camino Path S',810,'B',NULL,'El Camino','Path','S',NULL,NULL,NULL,NULL,'Dexter',1,1036,NULL,'97431',NULL,1228,43.892577,-122.81992,0,NULL,NULL,50),(111,82,1,1,0,'810B El Camino Path S',810,'B',NULL,'El Camino','Path','S',NULL,NULL,NULL,NULL,'Dexter',1,1036,NULL,'97431',NULL,1228,43.892577,-122.81992,0,NULL,NULL,50),(112,21,1,1,0,'810B El Camino Path S',810,'B',NULL,'El Camino','Path','S',NULL,NULL,NULL,NULL,'Dexter',1,1036,NULL,'97431',NULL,1228,43.892577,-122.81992,0,NULL,NULL,50),(113,132,1,1,0,'490N States Blvd N',490,'N',NULL,'States','Blvd','N',NULL,NULL,NULL,NULL,'Twin Mountain',1,1028,NULL,'03595',NULL,1228,44.271516,-71.51746,0,NULL,NULL,51),(114,81,1,1,0,'490N States Blvd N',490,'N',NULL,'States','Blvd','N',NULL,NULL,NULL,NULL,'Twin Mountain',1,1028,NULL,'03595',NULL,1228,44.271516,-71.51746,0,NULL,NULL,51),(115,156,1,1,0,'490N States Blvd N',490,'N',NULL,'States','Blvd','N',NULL,NULL,NULL,NULL,'Twin Mountain',1,1028,NULL,'03595',NULL,1228,44.271516,-71.51746,0,NULL,NULL,51),(116,177,1,1,0,'619C Green Dr N',619,'C',NULL,'Green','Dr','N',NULL,NULL,NULL,NULL,'Evansville',1,1013,NULL,'47734',NULL,1228,37.997128,-87.574963,0,NULL,NULL,NULL),(117,32,1,1,0,'483O Lincoln Ave W',483,'O',NULL,'Lincoln','Ave','W',NULL,NULL,NULL,NULL,'Seeley',1,1004,NULL,'92273',NULL,1228,32.792631,-115.69162,0,NULL,NULL,52),(118,120,1,1,0,'483O Lincoln Ave W',483,'O',NULL,'Lincoln','Ave','W',NULL,NULL,NULL,NULL,'Seeley',1,1004,NULL,'92273',NULL,1228,32.792631,-115.69162,0,NULL,NULL,52),(119,137,1,1,0,'483O Lincoln Ave W',483,'O',NULL,'Lincoln','Ave','W',NULL,NULL,NULL,NULL,'Seeley',1,1004,NULL,'92273',NULL,1228,32.792631,-115.69162,0,NULL,NULL,52),(120,114,1,1,0,'483O Lincoln Ave W',483,'O',NULL,'Lincoln','Ave','W',NULL,NULL,NULL,NULL,'Seeley',1,1004,NULL,'92273',NULL,1228,32.792631,-115.69162,0,NULL,NULL,52),(121,76,1,1,0,'548D Jackson Rd NW',548,'D',NULL,'Jackson','Rd','NW',NULL,NULL,NULL,NULL,'Fort Walton Beach',1,1008,NULL,'32548',NULL,1228,30.414932,-86.61992,0,NULL,NULL,53),(122,124,1,1,0,'548D Jackson Rd NW',548,'D',NULL,'Jackson','Rd','NW',NULL,NULL,NULL,NULL,'Fort Walton Beach',1,1008,NULL,'32548',NULL,1228,30.414932,-86.61992,0,NULL,NULL,53),(123,172,1,1,0,'548D Jackson Rd NW',548,'D',NULL,'Jackson','Rd','NW',NULL,NULL,NULL,NULL,'Fort Walton Beach',1,1008,NULL,'32548',NULL,1228,30.414932,-86.61992,0,NULL,NULL,53),(124,139,1,1,0,'560N Second Pl E',560,'N',NULL,'Second','Pl','E',NULL,NULL,NULL,NULL,'Cedartown',1,1009,NULL,'30125',NULL,1228,34.010162,-85.25762,0,NULL,NULL,NULL),(125,7,1,1,0,'662B Jackson Rd SW',662,'B',NULL,'Jackson','Rd','SW',NULL,NULL,NULL,NULL,'Cincinnati',1,1034,NULL,'45273',NULL,1228,39.166759,-84.53822,0,NULL,NULL,54),(126,22,1,1,0,'662B Jackson Rd SW',662,'B',NULL,'Jackson','Rd','SW',NULL,NULL,NULL,NULL,'Cincinnati',1,1034,NULL,'45273',NULL,1228,39.166759,-84.53822,0,NULL,NULL,54),(127,40,1,0,0,'662B Jackson Rd SW',662,'B',NULL,'Jackson','Rd','SW',NULL,NULL,NULL,NULL,'Cincinnati',1,1034,NULL,'45273',NULL,1228,39.166759,-84.53822,0,NULL,NULL,54),(128,15,1,1,0,'662B Jackson Rd SW',662,'B',NULL,'Jackson','Rd','SW',NULL,NULL,NULL,NULL,'Cincinnati',1,1034,NULL,'45273',NULL,1228,39.166759,-84.53822,0,NULL,NULL,54),(129,123,1,0,0,'345U Pine Path W',345,'U',NULL,'Pine','Path','W',NULL,NULL,NULL,NULL,'Ocala',1,1008,NULL,'34474',NULL,1228,29.166186,-82.17027,0,NULL,NULL,55),(130,180,1,1,0,'345U Pine Path W',345,'U',NULL,'Pine','Path','W',NULL,NULL,NULL,NULL,'Ocala',1,1008,NULL,'34474',NULL,1228,29.166186,-82.17027,0,NULL,NULL,55),(131,147,1,1,0,'345U Pine Path W',345,'U',NULL,'Pine','Path','W',NULL,NULL,NULL,NULL,'Ocala',1,1008,NULL,'34474',NULL,1228,29.166186,-82.17027,0,NULL,NULL,55),(132,6,1,1,0,'345U Pine Path W',345,'U',NULL,'Pine','Path','W',NULL,NULL,NULL,NULL,'Ocala',1,1008,NULL,'34474',NULL,1228,29.166186,-82.17027,0,NULL,NULL,55),(133,166,1,1,0,'827G El Camino Blvd S',827,'G',NULL,'El Camino','Blvd','S',NULL,NULL,NULL,NULL,'Pleasant Hill',1,1041,NULL,'38578',NULL,1228,36.007405,-85.162272,0,NULL,NULL,56),(134,184,1,1,0,'827G El Camino Blvd S',827,'G',NULL,'El Camino','Blvd','S',NULL,NULL,NULL,NULL,'Pleasant Hill',1,1041,NULL,'38578',NULL,1228,36.007405,-85.162272,0,NULL,NULL,56),(135,64,1,1,0,'827G El Camino Blvd S',827,'G',NULL,'El Camino','Blvd','S',NULL,NULL,NULL,NULL,'Pleasant Hill',1,1041,NULL,'38578',NULL,1228,36.007405,-85.162272,0,NULL,NULL,56),(136,176,1,1,0,'539V Pine Dr S',539,'V',NULL,'Pine','Dr','S',NULL,NULL,NULL,NULL,'Lake Bluff',1,1012,NULL,'60044',NULL,1228,42.286222,-87.86309,0,NULL,NULL,NULL),(137,112,1,1,0,'21F States Dr SW',21,'F',NULL,'States','Dr','SW',NULL,NULL,NULL,NULL,'Finlayson',1,1022,NULL,'55735',NULL,1228,46.250308,-93.04462,0,NULL,NULL,57),(138,138,1,1,0,'21F States Dr SW',21,'F',NULL,'States','Dr','SW',NULL,NULL,NULL,NULL,'Finlayson',1,1022,NULL,'55735',NULL,1228,46.250308,-93.04462,0,NULL,NULL,57),(139,153,1,1,0,'21F States Dr SW',21,'F',NULL,'States','Dr','SW',NULL,NULL,NULL,NULL,'Finlayson',1,1022,NULL,'55735',NULL,1228,46.250308,-93.04462,0,NULL,NULL,57),(140,8,1,1,0,'110R Lincoln St SW',110,'R',NULL,'Lincoln','St','SW',NULL,NULL,NULL,NULL,'Bannister',1,1021,NULL,'48807',NULL,1228,43.145475,-84.41579,0,NULL,NULL,NULL),(141,119,1,1,0,'111M Caulder St SE',111,'M',NULL,'Caulder','St','SE',NULL,NULL,NULL,NULL,'Amberson',1,1037,NULL,'17210',NULL,1228,40.171667,-77.661354,0,NULL,NULL,58),(142,78,1,1,0,'111M Caulder St SE',111,'M',NULL,'Caulder','St','SE',NULL,NULL,NULL,NULL,'Amberson',1,1037,NULL,'17210',NULL,1228,40.171667,-77.661354,0,NULL,NULL,58),(143,144,1,1,0,'111M Caulder St SE',111,'M',NULL,'Caulder','St','SE',NULL,NULL,NULL,NULL,'Amberson',1,1037,NULL,'17210',NULL,1228,40.171667,-77.661354,0,NULL,NULL,58),(144,44,1,0,0,'996U States Pl NW',996,'U',NULL,'States','Pl','NW',NULL,NULL,NULL,NULL,'Dickens',1,1042,NULL,'79229',NULL,1228,33.654512,-100.75517,0,NULL,NULL,NULL),(145,106,1,1,0,'123K College Ave W',123,'K',NULL,'College','Ave','W',NULL,NULL,NULL,NULL,'Kincaid',1,1012,NULL,'62540',NULL,1228,39.58755,-89.41265,0,NULL,NULL,59),(146,73,1,1,0,'123K College Ave W',123,'K',NULL,'College','Ave','W',NULL,NULL,NULL,NULL,'Kincaid',1,1012,NULL,'62540',NULL,1228,39.58755,-89.41265,0,NULL,NULL,59),(147,105,1,1,0,'123K College Ave W',123,'K',NULL,'College','Ave','W',NULL,NULL,NULL,NULL,'Kincaid',1,1012,NULL,'62540',NULL,1228,39.58755,-89.41265,0,NULL,NULL,59),(148,164,1,1,0,'123K College Ave W',123,'K',NULL,'College','Ave','W',NULL,NULL,NULL,NULL,'Kincaid',1,1012,NULL,'62540',NULL,1228,39.58755,-89.41265,0,NULL,NULL,59),(149,197,1,1,0,'217T Dowlen Ave NW',217,'T',NULL,'Dowlen','Ave','NW',NULL,NULL,NULL,NULL,'Girard',1,1012,NULL,'62640',NULL,1228,39.436584,-89.8028,0,NULL,NULL,60),(150,196,1,0,0,'217T Dowlen Ave NW',217,'T',NULL,'Dowlen','Ave','NW',NULL,NULL,NULL,NULL,'Girard',1,1012,NULL,'62640',NULL,1228,39.436584,-89.8028,0,NULL,NULL,60),(151,11,1,1,0,'217T Dowlen Ave NW',217,'T',NULL,'Dowlen','Ave','NW',NULL,NULL,NULL,NULL,'Girard',1,1012,NULL,'62640',NULL,1228,39.436584,-89.8028,0,NULL,NULL,60),(152,163,1,1,0,'217T Dowlen Ave NW',217,'T',NULL,'Dowlen','Ave','NW',NULL,NULL,NULL,NULL,'Girard',1,1012,NULL,'62640',NULL,1228,39.436584,-89.8028,0,NULL,NULL,60),(153,140,1,1,0,'319E Pine Blvd NW',319,'E',NULL,'Pine','Blvd','NW',NULL,NULL,NULL,NULL,'Baltimore',1,1019,NULL,'21210',NULL,1228,39.352496,-76.63452,0,NULL,NULL,61),(154,27,1,1,0,'319E Pine Blvd NW',319,'E',NULL,'Pine','Blvd','NW',NULL,NULL,NULL,NULL,'Baltimore',1,1019,NULL,'21210',NULL,1228,39.352496,-76.63452,0,NULL,NULL,61),(155,97,1,0,0,'319E Pine Blvd NW',319,'E',NULL,'Pine','Blvd','NW',NULL,NULL,NULL,NULL,'Baltimore',1,1019,NULL,'21210',NULL,1228,39.352496,-76.63452,0,NULL,NULL,61),(156,201,1,1,0,'319E Pine Blvd NW',319,'E',NULL,'Pine','Blvd','NW',NULL,NULL,NULL,NULL,'Baltimore',1,1019,NULL,'21210',NULL,1228,39.352496,-76.63452,0,NULL,NULL,61),(157,79,1,1,0,'141L Maple Ln NW',141,'L',NULL,'Maple','Ln','NW',NULL,NULL,NULL,NULL,'Mulberry',1,1015,NULL,'66756',NULL,1228,37.554735,-94.63283,0,NULL,NULL,62),(158,47,1,1,0,'141L Maple Ln NW',141,'L',NULL,'Maple','Ln','NW',NULL,NULL,NULL,NULL,'Mulberry',1,1015,NULL,'66756',NULL,1228,37.554735,-94.63283,0,NULL,NULL,62),(159,61,1,1,0,'141L Maple Ln NW',141,'L',NULL,'Maple','Ln','NW',NULL,NULL,NULL,NULL,'Mulberry',1,1015,NULL,'66756',NULL,1228,37.554735,-94.63283,0,NULL,NULL,62),(160,35,1,1,0,'694O Woodbridge St SE',694,'O',NULL,'Woodbridge','St','SE',NULL,NULL,NULL,NULL,'Kansas City',1,1024,NULL,'64138',NULL,1228,38.969806,-94.47256,0,NULL,NULL,NULL),(161,158,1,1,0,'599K Van Ness Blvd S',599,'K',NULL,'Van Ness','Blvd','S',NULL,NULL,NULL,NULL,'Houston',1,1042,NULL,'77026',NULL,1228,29.79437,-95.33395,0,NULL,NULL,63),(162,122,1,1,0,'599K Van Ness Blvd S',599,'K',NULL,'Van Ness','Blvd','S',NULL,NULL,NULL,NULL,'Houston',1,1042,NULL,'77026',NULL,1228,29.79437,-95.33395,0,NULL,NULL,63),(163,37,1,1,0,'599K Van Ness Blvd S',599,'K',NULL,'Van Ness','Blvd','S',NULL,NULL,NULL,NULL,'Houston',1,1042,NULL,'77026',NULL,1228,29.79437,-95.33395,0,NULL,NULL,63),(164,134,1,1,0,'599K Van Ness Blvd S',599,'K',NULL,'Van Ness','Blvd','S',NULL,NULL,NULL,NULL,'Houston',1,1042,NULL,'77026',NULL,1228,29.79437,-95.33395,0,NULL,NULL,63),(165,26,1,1,0,'908J College Rd S',908,'J',NULL,'College','Rd','S',NULL,NULL,NULL,NULL,'Maryville',1,1041,NULL,'37804',NULL,1228,35.781607,-83.93591,0,NULL,NULL,64),(166,179,1,1,0,'908J College Rd S',908,'J',NULL,'College','Rd','S',NULL,NULL,NULL,NULL,'Maryville',1,1041,NULL,'37804',NULL,1228,35.781607,-83.93591,0,NULL,NULL,64),(167,75,1,1,0,'908J College Rd S',908,'J',NULL,'College','Rd','S',NULL,NULL,NULL,NULL,'Maryville',1,1041,NULL,'37804',NULL,1228,35.781607,-83.93591,0,NULL,NULL,64),(168,102,1,1,0,'765K Beech Blvd NE',765,'K',NULL,'Beech','Blvd','NE',NULL,NULL,NULL,NULL,'Springfield',1,1024,NULL,'65806',NULL,1228,37.206624,-93.29923,0,NULL,NULL,NULL),(169,141,1,1,0,'763N Pine Blvd NE',763,'N',NULL,'Pine','Blvd','NE',NULL,NULL,NULL,NULL,'Lincolnville Center',1,1018,NULL,'04850',NULL,1228,44.478694,-69.149559,0,NULL,NULL,65),(170,86,1,1,0,'763N Pine Blvd NE',763,'N',NULL,'Pine','Blvd','NE',NULL,NULL,NULL,NULL,'Lincolnville Center',1,1018,NULL,'04850',NULL,1228,44.478694,-69.149559,0,NULL,NULL,65),(171,70,1,1,0,'763N Pine Blvd NE',763,'N',NULL,'Pine','Blvd','NE',NULL,NULL,NULL,NULL,'Lincolnville Center',1,1018,NULL,'04850',NULL,1228,44.478694,-69.149559,0,NULL,NULL,65),(172,130,1,1,0,'763N Pine Blvd NE',763,'N',NULL,'Pine','Blvd','NE',NULL,NULL,NULL,NULL,'Lincolnville Center',1,1018,NULL,'04850',NULL,1228,44.478694,-69.149559,0,NULL,NULL,65),(173,55,1,1,0,'22Z Green Blvd W',22,'Z',NULL,'Green','Blvd','W',NULL,NULL,NULL,NULL,'Kamas',1,1043,NULL,'84036',NULL,1228,40.625883,-111.20141,0,NULL,NULL,66),(174,65,1,1,0,'22Z Green Blvd W',22,'Z',NULL,'Green','Blvd','W',NULL,NULL,NULL,NULL,'Kamas',1,1043,NULL,'84036',NULL,1228,40.625883,-111.20141,0,NULL,NULL,66),(175,74,1,1,0,'22Z Green Blvd W',22,'Z',NULL,'Green','Blvd','W',NULL,NULL,NULL,NULL,'Kamas',1,1043,NULL,'84036',NULL,1228,40.625883,-111.20141,0,NULL,NULL,66),(176,165,1,1,0,'618A Martin Luther King Ln NE',618,'A',NULL,'Martin Luther King','Ln','NE',NULL,NULL,NULL,NULL,'Unionville',1,1024,NULL,'63565',NULL,1228,40.472841,-92.97298,0,NULL,NULL,NULL),(177,NULL,1,1,1,'14S El Camino Way E',14,'S',NULL,'El Camino','Way',NULL,NULL,NULL,NULL,NULL,'Collinsville',NULL,1006,NULL,'6022',NULL,1228,41.8328,-72.9253,0,NULL,NULL,NULL),(178,NULL,1,1,1,'11B Woodbridge Path SW',11,'B',NULL,'Woodbridge','Path',NULL,NULL,NULL,NULL,NULL,'Dayton',NULL,1034,NULL,'45417',NULL,1228,39.7531,-84.2471,0,NULL,NULL,NULL),(179,NULL,1,1,1,'581O Lincoln Dr SW',581,'O',NULL,'Lincoln','Dr',NULL,NULL,NULL,NULL,NULL,'Santa Fe',NULL,1030,NULL,'87594',NULL,1228,35.5212,-105.982,0,NULL,NULL,NULL); /*!40000 ALTER TABLE `civicrm_address` ENABLE KEYS */; UNLOCK TABLES; @@ -208,7 +208,7 @@ UNLOCK TABLES; LOCK TABLES `civicrm_contact` WRITE; /*!40000 ALTER TABLE `civicrm_contact` DISABLE KEYS */; -INSERT INTO `civicrm_contact` (`id`, `contact_type`, `contact_sub_type`, `do_not_email`, `do_not_phone`, `do_not_mail`, `do_not_sms`, `do_not_trade`, `is_opt_out`, `legal_identifier`, `external_identifier`, `sort_name`, `display_name`, `nick_name`, `legal_name`, `image_URL`, `preferred_communication_method`, `preferred_language`, `preferred_mail_format`, `hash`, `api_key`, `source`, `first_name`, `middle_name`, `last_name`, `prefix_id`, `suffix_id`, `formal_title`, `communication_style_id`, `email_greeting_id`, `email_greeting_custom`, `email_greeting_display`, `postal_greeting_id`, `postal_greeting_custom`, `postal_greeting_display`, `addressee_id`, `addressee_custom`, `addressee_display`, `job_title`, `gender_id`, `birth_date`, `is_deceased`, `deceased_date`, `household_name`, `primary_contact_id`, `organization_name`, `sic_code`, `user_unique_id`, `employer_id`, `is_deleted`, `created_date`, `modified_date`) VALUES (1,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Default Organization','Default Organization',NULL,'Default Organization',NULL,NULL,NULL,'Both',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'Default Organization',NULL,NULL,NULL,0,NULL,'2018-05-19 05:25:00'),(2,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'bblackwell@mymail.com','bblackwell@mymail.com',NULL,NULL,NULL,NULL,NULL,'Both','2943684727',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear bblackwell@mymail.com',1,NULL,'Dear bblackwell@mymail.com',1,NULL,'bblackwell@mymail.com',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:29','2018-05-19 05:31:39'),(3,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'kaceyz79@airmail.com','kaceyz79@airmail.com',NULL,NULL,NULL,NULL,NULL,'Both','2514525199',NULL,'Sample Data',NULL,NULL,NULL,4,NULL,NULL,NULL,1,NULL,'Dear kaceyz79@airmail.com',1,NULL,'Dear kaceyz79@airmail.com',1,NULL,'kaceyz79@airmail.com',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:29','2018-05-19 05:31:40'),(4,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Cooper-Wattson, Iris','Mrs. Iris Cooper-Wattson',NULL,NULL,NULL,NULL,NULL,'Both','1325741325',NULL,'Sample Data','Iris','','Cooper-Wattson',1,NULL,NULL,NULL,1,NULL,'Dear Iris',1,NULL,'Dear Iris',1,NULL,'Mrs. Iris Cooper-Wattson',NULL,1,'1980-11-25',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:29','2018-05-19 05:31:41'),(5,'Household',NULL,0,1,0,0,1,0,NULL,NULL,'Reynolds family','Reynolds family',NULL,NULL,NULL,'4',NULL,'Both','4119726021',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Reynolds family',5,NULL,'Dear Reynolds family',2,NULL,'Reynolds family',NULL,NULL,NULL,0,NULL,'Reynolds family',NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:29','2018-05-19 05:31:38'),(6,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Blackwell, Kenny','Kenny Blackwell',NULL,NULL,NULL,NULL,NULL,'Both','3636820526',NULL,'Sample Data','Kenny','','Blackwell',NULL,NULL,NULL,NULL,1,NULL,'Dear Kenny',1,NULL,'Dear Kenny',1,NULL,'Kenny Blackwell',NULL,2,'1998-12-16',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:29','2018-05-19 05:31:40'),(7,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Cooper family','Cooper family',NULL,NULL,NULL,'4',NULL,'Both','1133003930',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Cooper family',5,NULL,'Dear Cooper family',2,NULL,'Cooper family',NULL,NULL,NULL,0,NULL,'Cooper family',NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:29','2018-05-19 05:31:38'),(8,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Łąchowski, Juliann','Juliann Łąchowski',NULL,NULL,NULL,NULL,NULL,'Both','3477087731',NULL,'Sample Data','Juliann','N','Łąchowski',NULL,NULL,NULL,NULL,1,NULL,'Dear Juliann',1,NULL,'Dear Juliann',1,NULL,'Juliann Łąchowski',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:29','2018-05-19 05:31:34'),(9,'Household',NULL,1,0,0,0,0,0,NULL,NULL,'Cooper-Wattson family','Cooper-Wattson family',NULL,NULL,NULL,'5',NULL,'Both','2937450762',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Cooper-Wattson family',5,NULL,'Dear Cooper-Wattson family',2,NULL,'Cooper-Wattson family',NULL,NULL,NULL,0,NULL,'Cooper-Wattson family',NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:29','2018-05-19 05:31:38'),(10,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'tx.mcreynolds14@airmail.co.uk','tx.mcreynolds14@airmail.co.uk',NULL,NULL,NULL,'4',NULL,'Both','1115233256',NULL,'Sample Data',NULL,NULL,NULL,NULL,4,NULL,NULL,1,NULL,'Dear tx.mcreynolds14@airmail.co.uk',1,NULL,'Dear tx.mcreynolds14@airmail.co.uk',1,NULL,'tx.mcreynolds14@airmail.co.uk',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:29','2018-05-19 05:31:35'),(11,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Smith, Esta','Mrs. Esta Smith',NULL,NULL,NULL,NULL,NULL,'Both','4101330541',NULL,'Sample Data','Esta','','Smith',1,NULL,NULL,NULL,1,NULL,'Dear Esta',1,NULL,'Dear Esta',1,NULL,'Mrs. Esta Smith',NULL,1,'1994-07-18',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:29','2018-05-19 05:31:40'),(12,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Wagner, Ray','Mr. Ray Wagner',NULL,NULL,NULL,NULL,NULL,'Both','4163142642',NULL,'Sample Data','Ray','R','Wagner',3,NULL,NULL,NULL,1,NULL,'Dear Ray',1,NULL,'Dear Ray',1,NULL,'Mr. Ray Wagner',NULL,2,'1984-11-07',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:29','2018-05-19 05:31:40'),(13,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'bbachman@fishmail.net','bbachman@fishmail.net',NULL,NULL,NULL,NULL,NULL,'Both','2022930728',NULL,'Sample Data',NULL,NULL,NULL,NULL,2,NULL,NULL,1,NULL,'Dear bbachman@fishmail.net',1,NULL,'Dear bbachman@fishmail.net',1,NULL,'bbachman@fishmail.net',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:29','2018-05-19 05:31:33'),(14,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Lee, Rebekah','Ms. Rebekah Lee',NULL,NULL,NULL,'5',NULL,'Both','3174434967',NULL,'Sample Data','Rebekah','','Lee',2,NULL,NULL,NULL,1,NULL,'Dear Rebekah',1,NULL,'Dear Rebekah',1,NULL,'Ms. Rebekah Lee',NULL,1,'1981-09-24',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:29','2018-05-19 05:31:33'),(15,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Roberts, Irvin','Dr. Irvin Roberts II',NULL,NULL,NULL,NULL,NULL,'Both','1941335260',NULL,'Sample Data','Irvin','','Roberts',4,3,NULL,NULL,1,NULL,'Dear Irvin',1,NULL,'Dear Irvin',1,NULL,'Dr. Irvin Roberts II',NULL,2,'1949-06-26',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:29','2018-05-19 05:31:35'),(16,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Cooper, Nicole','Mrs. Nicole Cooper',NULL,NULL,NULL,'5',NULL,'Both','3590550594',NULL,'Sample Data','Nicole','V','Cooper',1,NULL,NULL,NULL,1,NULL,'Dear Nicole',1,NULL,'Dear Nicole',1,NULL,'Mrs. Nicole Cooper',NULL,1,'1969-06-01',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:29','2018-05-19 05:31:40'),(17,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Ivanov, Sherman','Sherman Ivanov Sr.',NULL,NULL,NULL,'2',NULL,'Both','1050939382',NULL,'Sample Data','Sherman','U','Ivanov',NULL,2,NULL,NULL,1,NULL,'Dear Sherman',1,NULL,'Dear Sherman',1,NULL,'Sherman Ivanov Sr.',NULL,NULL,NULL,0,NULL,NULL,NULL,'Rural Legal Academy',NULL,NULL,117,0,'2018-05-19 05:31:29','2018-05-19 05:31:39'),(18,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Nielsen family','Nielsen family',NULL,NULL,NULL,NULL,NULL,'Both','766698874',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Nielsen family',5,NULL,'Dear Nielsen family',2,NULL,'Nielsen family',NULL,NULL,NULL,0,NULL,'Nielsen family',NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:29','2018-05-19 05:31:38'),(19,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'lashawndaj@testing.org','lashawndaj@testing.org',NULL,NULL,NULL,NULL,NULL,'Both','737592331',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear lashawndaj@testing.org',1,NULL,'Dear lashawndaj@testing.org',1,NULL,'lashawndaj@testing.org',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:29','2018-05-19 05:31:34'),(20,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Müller, Miguel','Miguel Müller Sr.',NULL,NULL,NULL,'4',NULL,'Both','317510167',NULL,'Sample Data','Miguel','M','Müller',NULL,2,NULL,NULL,1,NULL,'Dear Miguel',1,NULL,'Dear Miguel',1,NULL,'Miguel Müller Sr.',NULL,NULL,'1998-02-09',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:29','2018-05-19 05:31:33'),(21,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Olsen, Miguel','Miguel Olsen',NULL,NULL,NULL,'5',NULL,'Both','2461734910',NULL,'Sample Data','Miguel','','Olsen',NULL,NULL,NULL,NULL,1,NULL,'Dear Miguel',1,NULL,'Dear Miguel',1,NULL,'Miguel Olsen',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:29','2018-05-19 05:31:34'),(22,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Wattson, Damaris','Mrs. Damaris Wattson',NULL,NULL,NULL,'4',NULL,'Both','3534175106',NULL,'Sample Data','Damaris','','Wattson',1,NULL,NULL,NULL,1,NULL,'Dear Damaris',1,NULL,'Dear Damaris',1,NULL,'Mrs. Damaris Wattson',NULL,1,'1969-11-02',1,'2017-05-29',NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:29','2018-05-19 05:31:34'),(23,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Blackwell, Iris','Iris Blackwell',NULL,NULL,NULL,NULL,NULL,'Both','1478230935',NULL,'Sample Data','Iris','','Blackwell',NULL,NULL,NULL,NULL,1,NULL,'Dear Iris',1,NULL,'Dear Iris',1,NULL,'Iris Blackwell',NULL,1,NULL,1,'2017-06-18',NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:29','2018-05-19 05:31:35'),(24,'Organization',NULL,0,1,0,0,0,0,NULL,NULL,'Urban Arts School','Urban Arts School',NULL,NULL,NULL,NULL,NULL,'Both','3531157611',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Urban Arts School',NULL,NULL,NULL,0,NULL,NULL,160,'Urban Arts School',NULL,NULL,NULL,0,'2018-05-19 05:31:29','2018-05-19 05:31:39'),(25,'Household',NULL,0,1,0,0,0,0,NULL,NULL,'Blackwell family','Blackwell family',NULL,NULL,NULL,NULL,NULL,'Both','3218641510',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Blackwell family',5,NULL,'Dear Blackwell family',2,NULL,'Blackwell family',NULL,NULL,NULL,0,NULL,'Blackwell family',NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:29','2018-05-19 05:31:38'),(26,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Wagner, Jacob','Dr. Jacob Wagner II',NULL,NULL,NULL,NULL,NULL,'Both','320484999',NULL,'Sample Data','Jacob','T','Wagner',4,3,NULL,NULL,1,NULL,'Dear Jacob',1,NULL,'Dear Jacob',1,NULL,'Dr. Jacob Wagner II',NULL,NULL,'1945-11-22',1,'2017-11-22',NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:29','2018-05-19 05:31:40'),(27,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Díaz, Angelika','Dr. Angelika Díaz',NULL,NULL,NULL,'2',NULL,'Both','4126805218',NULL,'Sample Data','Angelika','','Díaz',4,NULL,NULL,NULL,1,NULL,'Dear Angelika',1,NULL,'Dear Angelika',1,NULL,'Dr. Angelika Díaz',NULL,1,'1964-01-20',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:29','2018-05-19 05:31:34'),(28,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Jones, Brent','Brent Jones Sr.',NULL,NULL,NULL,NULL,NULL,'Both','2534822524',NULL,'Sample Data','Brent','F','Jones',NULL,2,NULL,NULL,1,NULL,'Dear Brent',1,NULL,'Dear Brent',1,NULL,'Brent Jones Sr.',NULL,2,'2000-11-10',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:29','2018-05-19 05:31:34'),(29,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Díaz, Arlyne','Ms. Arlyne Díaz',NULL,NULL,NULL,NULL,NULL,'Both','4265577068',NULL,'Sample Data','Arlyne','C','Díaz',2,NULL,NULL,NULL,1,NULL,'Dear Arlyne',1,NULL,'Dear Arlyne',1,NULL,'Ms. Arlyne Díaz',NULL,1,NULL,1,'2018-04-07',NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:29','2018-05-19 05:31:34'),(30,'Organization',NULL,0,0,0,0,1,0,NULL,NULL,'Global Health Trust','Global Health Trust',NULL,NULL,NULL,'5',NULL,'Both','3398259312',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Global Health Trust',NULL,NULL,NULL,0,NULL,NULL,125,'Global Health Trust',NULL,NULL,NULL,0,'2018-05-19 05:31:29','2018-05-19 05:31:39'),(31,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Barkley, Laree','Laree Barkley',NULL,NULL,NULL,NULL,NULL,'Both','347219970',NULL,'Sample Data','Laree','U','Barkley',NULL,NULL,NULL,NULL,1,NULL,'Dear Laree',1,NULL,'Dear Laree',1,NULL,'Laree Barkley',NULL,NULL,'1986-05-03',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:29','2018-05-19 05:31:39'),(32,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Beech Action Initiative','Beech Action Initiative',NULL,NULL,NULL,'5',NULL,'Both','2232686493',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Beech Action Initiative',NULL,NULL,NULL,0,NULL,NULL,40,'Beech Action Initiative',NULL,NULL,NULL,0,'2018-05-19 05:31:29','2018-05-19 05:31:39'),(33,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Deforest, Kathleen','Kathleen Deforest',NULL,NULL,NULL,'4',NULL,'Both','316327141',NULL,'Sample Data','Kathleen','H','Deforest',NULL,NULL,NULL,NULL,1,NULL,'Dear Kathleen',1,NULL,'Dear Kathleen',1,NULL,'Kathleen Deforest',NULL,1,'2002-01-22',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:29','2018-05-19 05:31:41'),(34,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Wilson-Reynolds, Kenny','Kenny Wilson-Reynolds Sr.',NULL,NULL,NULL,NULL,NULL,'Both','681769056',NULL,'Sample Data','Kenny','F','Wilson-Reynolds',NULL,2,NULL,NULL,1,NULL,'Dear Kenny',1,NULL,'Dear Kenny',1,NULL,'Kenny Wilson-Reynolds Sr.',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:29','2018-05-19 05:31:39'),(35,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Adams-Blackwell, Clint','Mr. Clint Adams-Blackwell',NULL,NULL,NULL,'1',NULL,'Both','256957671',NULL,'Sample Data','Clint','','Adams-Blackwell',3,NULL,NULL,NULL,1,NULL,'Dear Clint',1,NULL,'Dear Clint',1,NULL,'Mr. Clint Adams-Blackwell',NULL,2,NULL,0,NULL,NULL,NULL,'Bay Peace Systems',NULL,NULL,39,0,'2018-05-19 05:31:29','2018-05-19 05:31:40'),(36,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Wagner, Santina','Santina Wagner',NULL,NULL,NULL,NULL,NULL,'Both','3136401348',NULL,'Sample Data','Santina','','Wagner',NULL,NULL,NULL,NULL,1,NULL,'Dear Santina',1,NULL,'Dear Santina',1,NULL,'Santina Wagner',NULL,1,'1952-10-27',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:29','2018-05-19 05:31:34'),(37,'Household',NULL,0,0,0,0,1,0,NULL,NULL,'Deforest family','Deforest family',NULL,NULL,NULL,'2',NULL,'Both','3235379039',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Deforest family',5,NULL,'Dear Deforest family',2,NULL,'Deforest family',NULL,NULL,NULL,0,NULL,'Deforest family',NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:29','2018-05-19 05:31:38'),(38,'Individual',NULL,1,0,0,0,1,0,NULL,NULL,'Wattson, Rolando','Mr. Rolando Wattson',NULL,NULL,NULL,'4',NULL,'Both','1699783328',NULL,'Sample Data','Rolando','I','Wattson',3,NULL,NULL,NULL,1,NULL,'Dear Rolando',1,NULL,'Dear Rolando',1,NULL,'Mr. Rolando Wattson',NULL,2,'1955-11-28',1,'2017-08-14',NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:29','2018-05-19 05:31:41'),(39,'Organization',NULL,1,0,0,0,0,0,NULL,NULL,'Bay Peace Systems','Bay Peace Systems',NULL,NULL,NULL,NULL,NULL,'Both','2767843212',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Bay Peace Systems',NULL,NULL,NULL,0,NULL,NULL,35,'Bay Peace Systems',NULL,NULL,NULL,0,'2018-05-19 05:31:29','2018-05-19 05:31:39'),(40,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Patel-Deforest, Rebekah','Ms. Rebekah Patel-Deforest',NULL,NULL,NULL,'5',NULL,'Both','4174673764',NULL,'Sample Data','Rebekah','','Patel-Deforest',2,NULL,NULL,NULL,1,NULL,'Dear Rebekah',1,NULL,'Dear Rebekah',1,NULL,'Ms. Rebekah Patel-Deforest',NULL,NULL,NULL,1,NULL,NULL,NULL,'Beech Action Initiative',NULL,NULL,32,0,'2018-05-19 05:31:29','2018-05-19 05:31:41'),(41,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Bachman, Merrie','Merrie Bachman',NULL,NULL,NULL,NULL,NULL,'Both','2483805039',NULL,'Sample Data','Merrie','P','Bachman',NULL,NULL,NULL,NULL,1,NULL,'Dear Merrie',1,NULL,'Dear Merrie',1,NULL,'Merrie Bachman',NULL,1,'1980-07-29',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:29','2018-05-19 05:31:34'),(42,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Prentice, Betty','Dr. Betty Prentice',NULL,NULL,NULL,'3',NULL,'Both','235975731',NULL,'Sample Data','Betty','E','Prentice',4,NULL,NULL,NULL,1,NULL,'Dear Betty',1,NULL,'Dear Betty',1,NULL,'Dr. Betty Prentice',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:29','2018-05-19 05:31:33'),(43,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Terry, Sherman','Sherman Terry',NULL,NULL,NULL,NULL,NULL,'Both','4119706907',NULL,'Sample Data','Sherman','','Terry',NULL,NULL,NULL,NULL,1,NULL,'Dear Sherman',1,NULL,'Dear Sherman',1,NULL,'Sherman Terry',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:29','2018-05-19 05:31:35'),(44,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Barkley, Alida','Alida Barkley',NULL,NULL,NULL,NULL,NULL,'Both','273517991',NULL,'Sample Data','Alida','','Barkley',NULL,NULL,NULL,NULL,1,NULL,'Dear Alida',1,NULL,'Dear Alida',1,NULL,'Alida Barkley',NULL,1,'1933-01-29',1,'2017-08-01',NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:29','2018-05-19 05:31:34'),(45,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Bachman, Rodrigo','Rodrigo Bachman III',NULL,NULL,NULL,'5',NULL,'Both','1057827767',NULL,'Sample Data','Rodrigo','','Bachman',NULL,4,NULL,NULL,1,NULL,'Dear Rodrigo',1,NULL,'Dear Rodrigo',1,NULL,'Rodrigo Bachman III',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:29','2018-05-19 05:31:40'),(46,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jensen, Magan','Ms. Magan Jensen',NULL,NULL,NULL,'1',NULL,'Both','1126354572',NULL,'Sample Data','Magan','K','Jensen',2,NULL,NULL,NULL,1,NULL,'Dear Magan',1,NULL,'Dear Magan',1,NULL,'Ms. Magan Jensen',NULL,1,'1958-12-14',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:29','2018-05-19 05:31:40'),(47,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Yadav, Roland','Roland Yadav',NULL,NULL,NULL,NULL,NULL,'Both','3708380918',NULL,'Sample Data','Roland','N','Yadav',NULL,NULL,NULL,NULL,1,NULL,'Dear Roland',1,NULL,'Dear Roland',1,NULL,'Roland Yadav',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:29','2018-05-19 05:31:34'),(48,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jameson-Jensen, Ashley','Ashley Jameson-Jensen',NULL,NULL,NULL,'3',NULL,'Both','785744169',NULL,'Sample Data','Ashley','Y','Jameson-Jensen',NULL,NULL,NULL,NULL,1,NULL,'Dear Ashley',1,NULL,'Dear Ashley',1,NULL,'Ashley Jameson-Jensen',NULL,NULL,'1997-10-12',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:29','2018-05-19 05:31:40'),(49,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Barkley, Winford','Dr. Winford Barkley III',NULL,NULL,NULL,'1',NULL,'Both','573860066',NULL,'Sample Data','Winford','','Barkley',4,4,NULL,NULL,1,NULL,'Dear Winford',1,NULL,'Dear Winford',1,NULL,'Dr. Winford Barkley III',NULL,NULL,'1983-04-24',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:29','2018-05-19 05:31:39'),(50,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Deforest, Bob','Bob Deforest II',NULL,NULL,NULL,NULL,NULL,'Both','3348440645',NULL,'Sample Data','Bob','','Deforest',NULL,3,NULL,NULL,1,NULL,'Dear Bob',1,NULL,'Dear Bob',1,NULL,'Bob Deforest II',NULL,2,'1982-05-23',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:29','2018-05-19 05:31:41'),(51,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Green Software Network','Green Software Network',NULL,NULL,NULL,NULL,NULL,'Both','1575785432',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Green Software Network',NULL,NULL,NULL,0,NULL,NULL,NULL,'Green Software Network',NULL,NULL,NULL,0,'2018-05-19 05:31:29','2018-05-19 05:31:39'),(52,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Díaz, Princess','Princess Díaz',NULL,NULL,NULL,'2',NULL,'Both','2291440559',NULL,'Sample Data','Princess','','Díaz',NULL,NULL,NULL,NULL,1,NULL,'Dear Princess',1,NULL,'Dear Princess',1,NULL,'Princess Díaz',NULL,NULL,'1977-01-16',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:29','2018-05-19 05:31:35'),(53,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'González, Alexia','Alexia González',NULL,NULL,NULL,'5',NULL,'Both','4265879179',NULL,'Sample Data','Alexia','M','González',NULL,NULL,NULL,NULL,1,NULL,'Dear Alexia',1,NULL,'Dear Alexia',1,NULL,'Alexia González',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:29','2018-05-19 05:31:42'),(54,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'zopeb@sample.co.in','zopeb@sample.co.in',NULL,NULL,NULL,'2',NULL,'Both','2467926405',NULL,'Sample Data',NULL,NULL,NULL,1,NULL,NULL,NULL,1,NULL,'Dear zopeb@sample.co.in',1,NULL,'Dear zopeb@sample.co.in',1,NULL,'zopeb@sample.co.in',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:29','2018-05-19 05:31:34'),(55,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'González, Mei','Mei González',NULL,NULL,NULL,NULL,NULL,'Both','1696821334',NULL,'Sample Data','Mei','','González',NULL,NULL,NULL,NULL,1,NULL,'Dear Mei',1,NULL,'Dear Mei',1,NULL,'Mei González',NULL,1,'1994-05-04',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:29','2018-05-19 05:31:34'),(56,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Arizona Environmental Alliance','Arizona Environmental Alliance',NULL,NULL,NULL,NULL,NULL,'Both','4281292379',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Arizona Environmental Alliance',NULL,NULL,NULL,0,NULL,NULL,141,'Arizona Environmental Alliance',NULL,NULL,NULL,0,'2018-05-19 05:31:29','2018-05-19 05:31:39'),(57,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Samuels, Delana','Ms. Delana Samuels',NULL,NULL,NULL,NULL,NULL,'Both','3539242538',NULL,'Sample Data','Delana','','Samuels',2,NULL,NULL,NULL,1,NULL,'Dear Delana',1,NULL,'Dear Delana',1,NULL,'Ms. Delana Samuels',NULL,1,'1958-10-26',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:29','2018-05-19 05:31:34'),(58,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Smith, Ashley','Ashley Smith',NULL,NULL,NULL,NULL,NULL,'Both','2874632377',NULL,'Sample Data','Ashley','E','Smith',NULL,NULL,NULL,NULL,1,NULL,'Dear Ashley',1,NULL,'Dear Ashley',1,NULL,'Ashley Smith',NULL,2,'1986-04-29',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:29','2018-05-19 05:31:34'),(59,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Samson, Megan','Megan Samson',NULL,NULL,NULL,NULL,NULL,'Both','4028113417',NULL,'Sample Data','Megan','N','Samson',NULL,NULL,NULL,NULL,1,NULL,'Dear Megan',1,NULL,'Dear Megan',1,NULL,'Megan Samson',NULL,1,'2007-06-16',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:29','2018-05-19 05:31:34'),(60,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'González, Teresa','Teresa González',NULL,NULL,NULL,NULL,NULL,'Both','3377623564',NULL,'Sample Data','Teresa','','González',NULL,NULL,NULL,NULL,1,NULL,'Dear Teresa',1,NULL,'Dear Teresa',1,NULL,'Teresa González',NULL,NULL,NULL,0,NULL,NULL,NULL,'Washington Family Fund',NULL,NULL,167,0,'2018-05-19 05:31:29','2018-05-19 05:31:42'),(61,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'pmller16@testing.co.in','pmller16@testing.co.in',NULL,NULL,NULL,NULL,NULL,'Both','961861635',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear pmller16@testing.co.in',1,NULL,'Dear pmller16@testing.co.in',1,NULL,'pmller16@testing.co.in',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:29','2018-05-19 05:31:34'),(62,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Bachman family','Bachman family',NULL,NULL,NULL,'4',NULL,'Both','1714131215',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Bachman family',5,NULL,'Dear Bachman family',2,NULL,'Bachman family',NULL,NULL,NULL,0,NULL,'Bachman family',NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:29','2018-05-19 05:31:38'),(63,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Smith, Jina','Ms. Jina Smith',NULL,NULL,NULL,NULL,NULL,'Both','227187270',NULL,'Sample Data','Jina','P','Smith',2,NULL,NULL,NULL,1,NULL,'Dear Jina',1,NULL,'Dear Jina',1,NULL,'Ms. Jina Smith',NULL,NULL,'1977-05-07',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:30','2018-05-19 05:31:40'),(64,'Organization',NULL,1,0,0,0,0,0,NULL,NULL,'Maple Agriculture Collective','Maple Agriculture Collective',NULL,NULL,NULL,NULL,NULL,'Both','2921262904',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Maple Agriculture Collective',NULL,NULL,NULL,0,NULL,NULL,NULL,'Maple Agriculture Collective',NULL,NULL,NULL,0,'2018-05-19 05:31:30','2018-05-19 05:31:39'),(65,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jameson, Daren','Daren Jameson II',NULL,NULL,NULL,NULL,NULL,'Both','2571539775',NULL,'Sample Data','Daren','','Jameson',NULL,3,NULL,NULL,1,NULL,'Dear Daren',1,NULL,'Dear Daren',1,NULL,'Daren Jameson II',NULL,2,'1998-11-29',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:30','2018-05-19 05:31:33'),(66,'Individual',NULL,0,1,0,0,1,0,NULL,NULL,'Cooper, Sonny','Dr. Sonny Cooper',NULL,NULL,NULL,NULL,NULL,'Both','465080565',NULL,'Sample Data','Sonny','W','Cooper',4,NULL,NULL,NULL,1,NULL,'Dear Sonny',1,NULL,'Dear Sonny',1,NULL,'Dr. Sonny Cooper',NULL,2,'1995-01-06',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:30','2018-05-19 05:31:39'),(67,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Olsen, Lincoln','Lincoln Olsen',NULL,NULL,NULL,'4',NULL,'Both','4045218702',NULL,'Sample Data','Lincoln','H','Olsen',NULL,NULL,NULL,NULL,1,NULL,'Dear Lincoln',1,NULL,'Dear Lincoln',1,NULL,'Lincoln Olsen',NULL,NULL,'2002-12-07',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:30','2018-05-19 05:31:34'),(68,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Cadell Education Academy','Cadell Education Academy',NULL,NULL,NULL,'2',NULL,'Both','1140608160',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Cadell Education Academy',NULL,NULL,NULL,0,NULL,NULL,NULL,'Cadell Education Academy',NULL,NULL,NULL,0,'2018-05-19 05:31:30','2018-05-19 05:31:39'),(69,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Wattson, Brigette','Brigette Wattson',NULL,NULL,NULL,'5',NULL,'Both','4266118861',NULL,'Sample Data','Brigette','','Wattson',NULL,NULL,NULL,NULL,1,NULL,'Dear Brigette',1,NULL,'Dear Brigette',1,NULL,'Brigette Wattson',NULL,1,'1980-02-07',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:30','2018-05-19 05:31:34'),(70,'Household',NULL,1,0,0,0,0,0,NULL,NULL,'Wagner family','Wagner family',NULL,NULL,NULL,'4',NULL,'Both','1570966486',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Wagner family',5,NULL,'Dear Wagner family',2,NULL,'Wagner family',NULL,NULL,NULL,0,NULL,'Wagner family',NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:30','2018-05-19 05:31:38'),(71,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Olsen, Bryon','Dr. Bryon Olsen II',NULL,NULL,NULL,'5',NULL,'Both','1392312288',NULL,'Sample Data','Bryon','D','Olsen',4,3,NULL,NULL,1,NULL,'Dear Bryon',1,NULL,'Dear Bryon',1,NULL,'Dr. Bryon Olsen II',NULL,2,'1980-08-22',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:30','2018-05-19 05:31:34'),(72,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Dimitrov, Alexia','Alexia Dimitrov',NULL,NULL,NULL,'3',NULL,'Both','2476509826',NULL,'Sample Data','Alexia','','Dimitrov',NULL,NULL,NULL,NULL,1,NULL,'Dear Alexia',1,NULL,'Dear Alexia',1,NULL,'Alexia Dimitrov',NULL,1,NULL,0,NULL,NULL,NULL,'West Virginia Empowerment Fellowship',NULL,NULL,146,0,'2018-05-19 05:31:30','2018-05-19 05:31:39'),(73,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Wagner, Brittney','Mrs. Brittney Wagner',NULL,NULL,NULL,NULL,NULL,'Both','1515527179',NULL,'Sample Data','Brittney','','Wagner',1,NULL,NULL,NULL,1,NULL,'Dear Brittney',1,NULL,'Dear Brittney',1,NULL,'Mrs. Brittney Wagner',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:30','2018-05-19 05:31:40'),(74,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Cooper, Tanya','Ms. Tanya Cooper',NULL,NULL,NULL,NULL,NULL,'Both','1604855574',NULL,'Sample Data','Tanya','W','Cooper',2,NULL,NULL,NULL,1,NULL,'Dear Tanya',1,NULL,'Dear Tanya',1,NULL,'Ms. Tanya Cooper',NULL,NULL,'1973-02-26',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:30','2018-05-19 05:31:40'),(75,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Díaz-Smith, Santina','Ms. Santina Díaz-Smith',NULL,NULL,NULL,'2',NULL,'Both','2288347186',NULL,'Sample Data','Santina','','Díaz-Smith',2,NULL,NULL,NULL,1,NULL,'Dear Santina',1,NULL,'Dear Santina',1,NULL,'Ms. Santina Díaz-Smith',NULL,1,'1955-05-21',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:30','2018-05-19 05:31:40'),(76,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jones, Angelika','Angelika Jones',NULL,NULL,NULL,'3',NULL,'Both','2752368392',NULL,'Sample Data','Angelika','','Jones',NULL,NULL,NULL,NULL,1,NULL,'Dear Angelika',1,NULL,'Dear Angelika',1,NULL,'Angelika Jones',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:30','2018-05-19 05:31:40'),(77,'Individual',NULL,1,1,0,0,0,0,NULL,NULL,'Müller, Jed','Jed Müller',NULL,NULL,NULL,'5',NULL,'Both','1353975541',NULL,'Sample Data','Jed','','Müller',NULL,NULL,NULL,NULL,1,NULL,'Dear Jed',1,NULL,'Dear Jed',1,NULL,'Jed Müller',NULL,2,'1966-11-30',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:30','2018-05-19 05:31:33'),(78,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Díaz, Juliann','Dr. Juliann Díaz',NULL,NULL,NULL,'3',NULL,'Both','2604735488',NULL,'Sample Data','Juliann','','Díaz',4,NULL,NULL,NULL,1,NULL,'Dear Juliann',1,NULL,'Dear Juliann',1,NULL,'Dr. Juliann Díaz',NULL,1,'1953-03-30',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:30','2018-05-19 05:31:33'),(79,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Smith, Ashley','Ashley Smith',NULL,NULL,NULL,'1',NULL,'Both','2874632377',NULL,'Sample Data','Ashley','N','Smith',NULL,NULL,NULL,NULL,1,NULL,'Dear Ashley',1,NULL,'Dear Ashley',1,NULL,'Ashley Smith',NULL,2,'2009-11-19',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:30','2018-05-19 05:31:40'),(80,'Individual',NULL,1,1,0,0,0,0,NULL,NULL,'Reynolds, Teresa','Ms. Teresa Reynolds',NULL,NULL,NULL,NULL,NULL,'Both','1708756275',NULL,'Sample Data','Teresa','','Reynolds',2,NULL,NULL,NULL,1,NULL,'Dear Teresa',1,NULL,'Dear Teresa',1,NULL,'Ms. Teresa Reynolds',NULL,NULL,'1993-05-23',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:30','2018-05-19 05:31:39'),(81,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Yadav, Elbert','Elbert Yadav Jr.',NULL,NULL,NULL,'1',NULL,'Both','2557263059',NULL,'Sample Data','Elbert','','Yadav',NULL,1,NULL,NULL,1,NULL,'Dear Elbert',1,NULL,'Dear Elbert',1,NULL,'Elbert Yadav Jr.',NULL,2,'1999-09-13',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:30','2018-05-19 05:31:35'),(82,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Roberts, Troy','Dr. Troy Roberts Sr.',NULL,NULL,NULL,'5',NULL,'Both','1104419313',NULL,'Sample Data','Troy','','Roberts',4,2,NULL,NULL,1,NULL,'Dear Troy',1,NULL,'Dear Troy',1,NULL,'Dr. Troy Roberts Sr.',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:30','2018-05-19 05:31:34'),(83,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Wattson, Norris','Norris Wattson Jr.',NULL,NULL,NULL,NULL,NULL,'Both','4180802164',NULL,'Sample Data','Norris','L','Wattson',NULL,1,NULL,NULL,1,NULL,'Dear Norris',1,NULL,'Dear Norris',1,NULL,'Norris Wattson Jr.',NULL,NULL,'1973-11-04',0,NULL,NULL,NULL,'El Camino Action Solutions',NULL,NULL,115,0,'2018-05-19 05:31:30','2018-05-19 05:31:38'),(84,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Parker, Barry','Barry Parker',NULL,NULL,NULL,'1',NULL,'Both','259830884',NULL,'Sample Data','Barry','B','Parker',NULL,NULL,NULL,NULL,1,NULL,'Dear Barry',1,NULL,'Dear Barry',1,NULL,'Barry Parker',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:30','2018-05-19 05:31:34'),(85,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Samson-Terry, Ashley','Ashley Samson-Terry',NULL,NULL,NULL,NULL,NULL,'Both','1815400851',NULL,'Sample Data','Ashley','Y','Samson-Terry',NULL,NULL,NULL,NULL,1,NULL,'Dear Ashley',1,NULL,'Dear Ashley',1,NULL,'Ashley Samson-Terry',NULL,NULL,'2013-11-06',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:30','2018-05-19 05:31:42'),(86,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Creative Arts Partnership','Creative Arts Partnership',NULL,NULL,NULL,NULL,NULL,'Both','1554144803',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Creative Arts Partnership',NULL,NULL,NULL,0,NULL,NULL,118,'Creative Arts Partnership',NULL,NULL,NULL,0,'2018-05-19 05:31:30','2018-05-19 05:31:38'),(87,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'lwilson@lol.net','lwilson@lol.net',NULL,NULL,NULL,'4',NULL,'Both','2779046204',NULL,'Sample Data',NULL,NULL,NULL,NULL,3,NULL,NULL,1,NULL,'Dear lwilson@lol.net',1,NULL,'Dear lwilson@lol.net',1,NULL,'lwilson@lol.net',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:30','2018-05-19 05:31:39'),(88,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Cooper-Wattson, Lawerence','Lawerence Cooper-Wattson',NULL,NULL,NULL,NULL,NULL,'Both','1812668555',NULL,'Sample Data','Lawerence','','Cooper-Wattson',NULL,NULL,NULL,NULL,1,NULL,'Dear Lawerence',1,NULL,'Dear Lawerence',1,NULL,'Lawerence Cooper-Wattson',NULL,2,'1980-04-21',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:30','2018-05-19 05:31:41'),(89,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Smith-Jones family','Smith-Jones family',NULL,NULL,NULL,'2',NULL,'Both','1656794649',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Smith-Jones family',5,NULL,'Dear Smith-Jones family',2,NULL,'Smith-Jones family',NULL,NULL,NULL,0,NULL,'Smith-Jones family',NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:30','2018-05-19 05:31:38'),(90,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Bachman, Truman','Truman Bachman',NULL,NULL,NULL,'4',NULL,'Both','3082046682',NULL,'Sample Data','Truman','','Bachman',NULL,NULL,NULL,NULL,1,NULL,'Dear Truman',1,NULL,'Dear Truman',1,NULL,'Truman Bachman',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:30','2018-05-19 05:31:33'),(91,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Robertson, Teresa','Teresa Robertson',NULL,NULL,NULL,'5',NULL,'Both','988071547',NULL,'Sample Data','Teresa','','Robertson',NULL,NULL,NULL,NULL,1,NULL,'Dear Teresa',1,NULL,'Dear Teresa',1,NULL,'Teresa Robertson',NULL,1,NULL,1,'2018-03-16',NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:30','2018-05-19 05:31:35'),(92,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Zope, Jay','Dr. Jay Zope',NULL,NULL,NULL,NULL,NULL,'Both','819910080',NULL,'Sample Data','Jay','D','Zope',4,NULL,NULL,NULL,1,NULL,'Dear Jay',1,NULL,'Dear Jay',1,NULL,'Dr. Jay Zope',NULL,2,'1982-08-19',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:30','2018-05-19 05:31:41'),(93,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Robertson, Laree','Ms. Laree Robertson',NULL,NULL,NULL,NULL,NULL,'Both','1977301859',NULL,'Sample Data','Laree','H','Robertson',2,NULL,NULL,NULL,1,NULL,'Dear Laree',1,NULL,'Dear Laree',1,NULL,'Ms. Laree Robertson',NULL,1,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:30','2018-05-19 05:31:33'),(94,'Individual',NULL,1,1,0,0,0,0,NULL,NULL,'roberts.lashawnda@example.co.uk','roberts.lashawnda@example.co.uk',NULL,NULL,NULL,'4',NULL,'Both','579722297',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear roberts.lashawnda@example.co.uk',1,NULL,'Dear roberts.lashawnda@example.co.uk',1,NULL,'roberts.lashawnda@example.co.uk',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:30','2018-05-19 05:31:33'),(95,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Wilson-Reynolds, Troy','Troy Wilson-Reynolds',NULL,NULL,NULL,'2',NULL,'Both','619825373',NULL,'Sample Data','Troy','V','Wilson-Reynolds',NULL,NULL,NULL,NULL,1,NULL,'Dear Troy',1,NULL,'Dear Troy',1,NULL,'Troy Wilson-Reynolds',NULL,2,'1973-04-06',0,NULL,NULL,NULL,'Muscadine Health Solutions',NULL,NULL,98,0,'2018-05-19 05:31:30','2018-05-19 05:31:39'),(96,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Smith, Bryon','Bryon Smith III',NULL,NULL,NULL,'5',NULL,'Both','3610824393',NULL,'Sample Data','Bryon','W','Smith',NULL,4,NULL,NULL,1,NULL,'Dear Bryon',1,NULL,'Dear Bryon',1,NULL,'Bryon Smith III',NULL,2,'1984-03-08',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:30','2018-05-19 05:31:40'),(97,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'McReynolds, Tanya','Dr. Tanya McReynolds',NULL,NULL,NULL,NULL,NULL,'Both','2833475968',NULL,'Sample Data','Tanya','','McReynolds',4,NULL,NULL,NULL,1,NULL,'Dear Tanya',1,NULL,'Dear Tanya',1,NULL,'Dr. Tanya McReynolds',NULL,NULL,'1981-11-10',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:30','2018-05-19 05:31:33'),(98,'Organization',NULL,0,1,0,0,0,0,NULL,NULL,'Muscadine Health Solutions','Muscadine Health Solutions',NULL,NULL,NULL,'4',NULL,'Both','349344063',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Muscadine Health Solutions',NULL,NULL,NULL,0,NULL,NULL,95,'Muscadine Health Solutions',NULL,NULL,NULL,0,'2018-05-19 05:31:30','2018-05-19 05:31:38'),(99,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Smith, Daren','Dr. Daren Smith II',NULL,NULL,NULL,NULL,NULL,'Both','3966682227',NULL,'Sample Data','Daren','','Smith',4,3,NULL,NULL,1,NULL,'Dear Daren',1,NULL,'Dear Daren',1,NULL,'Dr. Daren Smith II',NULL,2,'1964-11-12',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:30','2018-05-19 05:31:40'),(100,'Household',NULL,1,0,0,0,0,0,NULL,NULL,'Cooper family','Cooper family',NULL,NULL,NULL,NULL,NULL,'Both','1133003930',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Cooper family',5,NULL,'Dear Cooper family',2,NULL,'Cooper family',NULL,NULL,NULL,0,NULL,'Cooper family',NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:30','2018-05-19 05:31:37'),(101,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Deforest, Rolando','Rolando Deforest II',NULL,NULL,NULL,NULL,NULL,'Both','2111431300',NULL,'Sample Data','Rolando','N','Deforest',NULL,3,NULL,NULL,1,NULL,'Dear Rolando',1,NULL,'Dear Rolando',1,NULL,'Rolando Deforest II',NULL,2,'1936-03-05',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:30','2018-05-19 05:31:34'),(102,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Samson-Terry, Carylon','Carylon Samson-Terry',NULL,NULL,NULL,'1',NULL,'Both','2520596882',NULL,'Sample Data','Carylon','','Samson-Terry',NULL,NULL,NULL,NULL,1,NULL,'Dear Carylon',1,NULL,'Dear Carylon',1,NULL,'Carylon Samson-Terry',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:30','2018-05-19 05:31:42'),(103,'Organization',NULL,0,0,0,0,1,0,NULL,NULL,'Texas Education Fund','Texas Education Fund',NULL,NULL,NULL,NULL,NULL,'Both','1685432707',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Texas Education Fund',NULL,NULL,NULL,0,NULL,NULL,162,'Texas Education Fund',NULL,NULL,NULL,0,'2018-05-19 05:31:30','2018-05-19 05:31:39'),(104,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Bachman, Iris','Dr. Iris Bachman',NULL,NULL,NULL,'2',NULL,'Both','2101720702',NULL,'Sample Data','Iris','','Bachman',4,NULL,NULL,NULL,1,NULL,'Dear Iris',1,NULL,'Dear Iris',1,NULL,'Dr. Iris Bachman',NULL,1,'1971-12-08',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:30','2018-05-19 05:31:40'),(105,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Cooper, Rebekah','Mrs. Rebekah Cooper',NULL,NULL,NULL,NULL,NULL,'Both','3979151803',NULL,'Sample Data','Rebekah','I','Cooper',1,NULL,NULL,NULL,1,NULL,'Dear Rebekah',1,NULL,'Dear Rebekah',1,NULL,'Mrs. Rebekah Cooper',NULL,NULL,'1967-08-06',0,NULL,NULL,NULL,'Sierra Education Association',NULL,NULL,164,0,'2018-05-19 05:31:30','2018-05-19 05:31:39'),(106,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Wattson-Smith, Bob','Mr. Bob Wattson-Smith',NULL,NULL,NULL,'4',NULL,'Both','136711120',NULL,'Sample Data','Bob','','Wattson-Smith',3,NULL,NULL,NULL,1,NULL,'Dear Bob',1,NULL,'Dear Bob',1,NULL,'Mr. Bob Wattson-Smith',NULL,NULL,'1996-02-28',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:30','2018-05-19 05:31:41'),(107,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'josefag@example.net','josefag@example.net',NULL,NULL,NULL,'4',NULL,'Both','3502725517',NULL,'Sample Data',NULL,NULL,NULL,4,NULL,NULL,NULL,1,NULL,'Dear josefag@example.net',1,NULL,'Dear josefag@example.net',1,NULL,'josefag@example.net',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:30','2018-05-19 05:31:34'),(108,'Household',NULL,1,1,0,0,0,0,NULL,NULL,'Zope family','Zope family',NULL,NULL,NULL,'4',NULL,'Both','1649131487',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Zope family',5,NULL,'Dear Zope family',2,NULL,'Zope family',NULL,NULL,NULL,0,NULL,'Zope family',NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:30','2018-05-19 05:31:38'),(109,'Individual',NULL,1,1,0,0,0,0,NULL,NULL,'González, Princess','Princess González',NULL,NULL,NULL,NULL,NULL,'Both','4053474994',NULL,'Sample Data','Princess','','González',NULL,NULL,NULL,NULL,1,NULL,'Dear Princess',1,NULL,'Dear Princess',1,NULL,'Princess González',NULL,NULL,'2007-07-20',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:30','2018-05-19 05:31:42'),(110,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Łąchowski, Russell','Mr. Russell Łąchowski',NULL,NULL,NULL,'3',NULL,'Both','2639588224',NULL,'Sample Data','Russell','Q','Łąchowski',3,NULL,NULL,NULL,1,NULL,'Dear Russell',1,NULL,'Dear Russell',1,NULL,'Mr. Russell Łąchowski',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:30','2018-05-19 05:31:33'),(111,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Oakland Food Services','Oakland Food Services',NULL,NULL,NULL,NULL,NULL,'Both','1348822642',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Oakland Food Services',NULL,NULL,NULL,0,NULL,NULL,197,'Oakland Food Services',NULL,NULL,NULL,0,'2018-05-19 05:31:30','2018-05-19 05:31:39'),(112,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Smith, Rosario','Rosario Smith Jr.',NULL,NULL,NULL,'4',NULL,'Both','701125213',NULL,'Sample Data','Rosario','G','Smith',NULL,1,NULL,NULL,1,NULL,'Dear Rosario',1,NULL,'Dear Rosario',1,NULL,'Rosario Smith Jr.',NULL,2,'1977-02-17',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:30','2018-05-19 05:31:40'),(113,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Reynolds, Mei','Mei Reynolds',NULL,NULL,NULL,'1',NULL,'Both','2590400187',NULL,'Sample Data','Mei','','Reynolds',NULL,NULL,NULL,NULL,1,NULL,'Dear Mei',1,NULL,'Dear Mei',1,NULL,'Mei Reynolds',NULL,1,'1975-05-15',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:30','2018-05-19 05:31:40'),(114,'Household',NULL,0,1,0,0,0,0,NULL,NULL,'Zope family','Zope family',NULL,NULL,NULL,NULL,NULL,'Both','1649131487',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Zope family',5,NULL,'Dear Zope family',2,NULL,'Zope family',NULL,NULL,NULL,0,NULL,'Zope family',NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:30','2018-05-19 05:31:38'),(115,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'El Camino Action Solutions','El Camino Action Solutions',NULL,NULL,NULL,NULL,NULL,'Both','2920107908',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'El Camino Action Solutions',NULL,NULL,NULL,0,NULL,NULL,83,'El Camino Action Solutions',NULL,NULL,NULL,0,'2018-05-19 05:31:30','2018-05-19 05:31:38'),(116,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Smith family','Smith family',NULL,NULL,NULL,'1',NULL,'Both','4082772645',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Smith family',5,NULL,'Dear Smith family',2,NULL,'Smith family',NULL,NULL,NULL,0,NULL,'Smith family',NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:30','2018-05-19 05:31:38'),(117,'Organization',NULL,0,0,0,0,1,0,NULL,NULL,'Rural Legal Academy','Rural Legal Academy',NULL,NULL,NULL,'3',NULL,'Both','1759190044',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Rural Legal Academy',NULL,NULL,NULL,0,NULL,NULL,17,'Rural Legal Academy',NULL,NULL,NULL,0,'2018-05-19 05:31:30','2018-05-19 05:31:39'),(118,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'samsond@testmail.co.in','samsond@testmail.co.in',NULL,NULL,NULL,'4',NULL,'Both','2107866421',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear samsond@testmail.co.in',1,NULL,'Dear samsond@testmail.co.in',1,NULL,'samsond@testmail.co.in',NULL,NULL,NULL,0,NULL,NULL,NULL,'Creative Arts Partnership',NULL,NULL,86,0,'2018-05-19 05:31:30','2018-05-19 05:31:42'),(119,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'maxwellmller@lol.com','maxwellmller@lol.com',NULL,NULL,NULL,NULL,NULL,'Both','2653545152',NULL,'Sample Data',NULL,NULL,NULL,4,NULL,NULL,NULL,1,NULL,'Dear maxwellmller@lol.com',1,NULL,'Dear maxwellmller@lol.com',1,NULL,'maxwellmller@lol.com',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:30','2018-05-19 05:31:34'),(120,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'smith.jacob@spamalot.biz','smith.jacob@spamalot.biz',NULL,NULL,NULL,'1',NULL,'Both','1437253859',NULL,'Sample Data',NULL,NULL,NULL,4,3,NULL,NULL,1,NULL,'Dear smith.jacob@spamalot.biz',1,NULL,'Dear smith.jacob@spamalot.biz',1,NULL,'smith.jacob@spamalot.biz',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:30','2018-05-19 05:31:40'),(121,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Reynolds, Kandace','Kandace Reynolds',NULL,NULL,NULL,NULL,NULL,'Both','1783653514',NULL,'Sample Data','Kandace','','Reynolds',NULL,NULL,NULL,NULL,1,NULL,'Dear Kandace',1,NULL,'Dear Kandace',1,NULL,'Kandace Reynolds',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:30','2018-05-19 05:31:40'),(122,'Individual',NULL,1,0,0,0,1,0,NULL,NULL,'gonzlezr@spamalot.co.in','gonzlezr@spamalot.co.in',NULL,NULL,NULL,'4',NULL,'Both','3302585118',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear gonzlezr@spamalot.co.in',1,NULL,'Dear gonzlezr@spamalot.co.in',1,NULL,'gonzlezr@spamalot.co.in',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:30','2018-05-19 05:31:42'),(123,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jensen, Russell','Russell Jensen',NULL,NULL,NULL,'5',NULL,'Both','1300991464',NULL,'Sample Data','Russell','G','Jensen',NULL,NULL,NULL,NULL,1,NULL,'Dear Russell',1,NULL,'Dear Russell',1,NULL,'Russell Jensen',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:30','2018-05-19 05:31:35'),(124,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Jameson, Truman','Truman Jameson',NULL,NULL,NULL,NULL,NULL,'Both','4265431677',NULL,'Sample Data','Truman','N','Jameson',NULL,NULL,NULL,NULL,1,NULL,'Dear Truman',1,NULL,'Dear Truman',1,NULL,'Truman Jameson',NULL,2,'1997-06-08',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:30','2018-05-19 05:31:34'),(125,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Smith, Errol','Mr. Errol Smith II',NULL,NULL,NULL,'5',NULL,'Both','2269355028',NULL,'Sample Data','Errol','','Smith',3,3,NULL,NULL,1,NULL,'Dear Errol',1,NULL,'Dear Errol',1,NULL,'Mr. Errol Smith II',NULL,2,NULL,0,NULL,NULL,NULL,'Global Health Trust',NULL,NULL,30,0,'2018-05-19 05:31:30','2018-05-19 05:31:39'),(126,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Smith, Barry','Barry Smith II',NULL,NULL,NULL,'2',NULL,'Both','3850252418',NULL,'Sample Data','Barry','F','Smith',NULL,3,NULL,NULL,1,NULL,'Dear Barry',1,NULL,'Dear Barry',1,NULL,'Barry Smith II',NULL,NULL,'1997-11-19',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:30','2018-05-19 05:31:40'),(127,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Olsen, Shad','Mr. Shad Olsen III',NULL,NULL,NULL,'4',NULL,'Both','2007691638',NULL,'Sample Data','Shad','','Olsen',3,4,NULL,NULL,1,NULL,'Dear Shad',1,NULL,'Dear Shad',1,NULL,'Mr. Shad Olsen III',NULL,2,'1939-07-30',1,'2017-12-18',NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:30','2018-05-19 05:31:34'),(128,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Blackwell, Juliann','Mrs. Juliann Blackwell',NULL,NULL,NULL,NULL,NULL,'Both','4227449212',NULL,'Sample Data','Juliann','','Blackwell',1,NULL,NULL,NULL,1,NULL,'Dear Juliann',1,NULL,'Dear Juliann',1,NULL,'Mrs. Juliann Blackwell',NULL,1,'1956-11-04',1,'2017-10-15',NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:30','2018-05-19 05:31:35'),(129,'Organization',NULL,0,0,0,0,1,0,NULL,NULL,'Global Development Network','Global Development Network',NULL,NULL,NULL,'5',NULL,'Both','3678584695',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Global Development Network',NULL,NULL,NULL,0,NULL,NULL,NULL,'Global Development Network',NULL,NULL,NULL,0,'2018-05-19 05:31:30','2018-05-19 05:31:39'),(130,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Cooper, Kiara','Kiara Cooper',NULL,NULL,NULL,'2',NULL,'Both','2416218460',NULL,'Sample Data','Kiara','','Cooper',NULL,NULL,NULL,NULL,1,NULL,'Dear Kiara',1,NULL,'Dear Kiara',1,NULL,'Kiara Cooper',NULL,NULL,'2006-07-24',0,NULL,NULL,NULL,'Manila Music Fellowship',NULL,NULL,201,0,'2018-05-19 05:31:30','2018-05-19 05:31:39'),(131,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Cooper, Tanya','Tanya Cooper',NULL,NULL,NULL,'3',NULL,'Both','1604855574',NULL,'Sample Data','Tanya','X','Cooper',NULL,NULL,NULL,NULL,1,NULL,'Dear Tanya',1,NULL,'Dear Tanya',1,NULL,'Tanya Cooper',NULL,NULL,'2008-10-08',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:30','2018-05-19 05:31:40'),(132,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Smith family','Smith family',NULL,NULL,NULL,NULL,NULL,'Both','4082772645',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Smith family',5,NULL,'Dear Smith family',2,NULL,'Smith family',NULL,NULL,NULL,0,NULL,'Smith family',NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:30','2018-05-19 05:31:38'),(133,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Blackwell, Jackson','Jackson Blackwell',NULL,NULL,NULL,'4',NULL,'Both','1298045172',NULL,'Sample Data','Jackson','X','Blackwell',NULL,NULL,NULL,NULL,1,NULL,'Dear Jackson',1,NULL,'Dear Jackson',1,NULL,'Jackson Blackwell',NULL,2,'1959-07-18',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:30','2018-05-19 05:31:40'),(134,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Nielsen, Craig','Dr. Craig Nielsen',NULL,NULL,NULL,NULL,NULL,'Both','151242060',NULL,'Sample Data','Craig','X','Nielsen',4,NULL,NULL,NULL,1,NULL,'Dear Craig',1,NULL,'Dear Craig',1,NULL,'Dr. Craig Nielsen',NULL,2,'1983-02-15',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:30','2018-05-19 05:31:42'),(135,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Jones, Margaret','Mrs. Margaret Jones',NULL,NULL,NULL,'4',NULL,'Both','1031157711',NULL,'Sample Data','Margaret','C','Jones',1,NULL,NULL,NULL,1,NULL,'Dear Margaret',1,NULL,'Dear Margaret',1,NULL,'Mrs. Margaret Jones',NULL,1,'1982-10-27',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:30','2018-05-19 05:31:33'),(136,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Jameson, Andrew','Mr. Andrew Jameson Jr.',NULL,NULL,NULL,NULL,NULL,'Both','4159570597',NULL,'Sample Data','Andrew','','Jameson',3,1,NULL,NULL,1,NULL,'Dear Andrew',1,NULL,'Dear Andrew',1,NULL,'Mr. Andrew Jameson Jr.',NULL,NULL,'1980-09-03',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:30','2018-05-19 05:31:40'),(137,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Zope, Winford','Winford Zope Sr.',NULL,NULL,NULL,'1',NULL,'Both','3617829114',NULL,'Sample Data','Winford','N','Zope',NULL,2,NULL,NULL,1,NULL,'Dear Winford',1,NULL,'Dear Winford',1,NULL,'Winford Zope Sr.',NULL,NULL,'1978-03-08',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:30','2018-05-19 05:31:40'),(138,'Individual',NULL,1,1,0,0,1,0,NULL,NULL,'landonb39@airmail.org','landonb39@airmail.org',NULL,NULL,NULL,'3',NULL,'Both','3617661566',NULL,'Sample Data',NULL,NULL,NULL,NULL,4,NULL,NULL,1,NULL,'Dear landonb39@airmail.org',1,NULL,'Dear landonb39@airmail.org',1,NULL,'landonb39@airmail.org',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:30','2018-05-19 05:31:40'),(139,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Müller, Jackson','Jackson Müller',NULL,NULL,NULL,NULL,NULL,'Both','2768075849',NULL,'Sample Data','Jackson','M','Müller',NULL,NULL,NULL,NULL,1,NULL,'Dear Jackson',1,NULL,'Dear Jackson',1,NULL,'Jackson Müller',NULL,NULL,'1962-08-27',1,'2017-08-09',NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:30','2018-05-19 05:31:34'),(140,'Individual',NULL,1,1,0,0,0,0,NULL,NULL,'Zope, Nicole','Nicole Zope',NULL,NULL,NULL,'4',NULL,'Both','3499360934',NULL,'Sample Data','Nicole','C','Zope',NULL,NULL,NULL,NULL,1,NULL,'Dear Nicole',1,NULL,'Dear Nicole',1,NULL,'Nicole Zope',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:30','2018-05-19 05:31:41'),(141,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Jacobs, Ivey','Ivey Jacobs',NULL,NULL,NULL,'2',NULL,'Both','4026790678',NULL,'Sample Data','Ivey','B','Jacobs',NULL,NULL,NULL,NULL,1,NULL,'Dear Ivey',1,NULL,'Dear Ivey',1,NULL,'Ivey Jacobs',NULL,NULL,'1944-09-24',1,'2017-05-29',NULL,NULL,'Arizona Environmental Alliance',NULL,NULL,56,0,'2018-05-19 05:31:30','2018-05-19 05:31:39'),(142,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Yadav, Nicole','Dr. Nicole Yadav',NULL,NULL,NULL,'3',NULL,'Both','831602430',NULL,'Sample Data','Nicole','E','Yadav',4,NULL,NULL,NULL,1,NULL,'Dear Nicole',1,NULL,'Dear Nicole',1,NULL,'Dr. Nicole Yadav',NULL,NULL,'1956-06-08',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:30','2018-05-19 05:31:35'),(143,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Bachman, Shauna','Shauna Bachman',NULL,NULL,NULL,'5',NULL,'Both','1518911519',NULL,'Sample Data','Shauna','D','Bachman',NULL,NULL,NULL,NULL,1,NULL,'Dear Shauna',1,NULL,'Dear Shauna',1,NULL,'Shauna Bachman',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:30','2018-05-19 05:31:40'),(144,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Cooper, Ray','Dr. Ray Cooper II',NULL,NULL,NULL,'4',NULL,'Both','707495177',NULL,'Sample Data','Ray','','Cooper',4,3,NULL,NULL,1,NULL,'Dear Ray',1,NULL,'Dear Ray',1,NULL,'Dr. Ray Cooper II',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:30','2018-05-19 05:31:39'),(145,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Patel, Errol','Errol Patel',NULL,NULL,NULL,'3',NULL,'Both','392597171',NULL,'Sample Data','Errol','','Patel',NULL,NULL,NULL,NULL,1,NULL,'Dear Errol',1,NULL,'Dear Errol',1,NULL,'Errol Patel',NULL,2,'2007-03-13',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:30','2018-05-19 05:31:34'),(146,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'West Virginia Empowerment Fellowship','West Virginia Empowerment Fellowship',NULL,NULL,NULL,NULL,NULL,'Both','2647517213',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'West Virginia Empowerment Fellowship',NULL,NULL,NULL,0,NULL,NULL,72,'West Virginia Empowerment Fellowship',NULL,NULL,NULL,0,'2018-05-19 05:31:30','2018-05-19 05:31:39'),(147,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Wattson-Smith, Rolando','Mr. Rolando Wattson-Smith',NULL,NULL,NULL,NULL,NULL,'Both','65078523',NULL,'Sample Data','Rolando','M','Wattson-Smith',3,NULL,NULL,NULL,1,NULL,'Dear Rolando',1,NULL,'Dear Rolando',1,NULL,'Mr. Rolando Wattson-Smith',NULL,2,'1992-07-26',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:30','2018-05-19 05:31:41'),(148,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Reynolds, Norris','Mr. Norris Reynolds III',NULL,NULL,NULL,'2',NULL,'Both','3621358089',NULL,'Sample Data','Norris','','Reynolds',3,4,NULL,NULL,1,NULL,'Dear Norris',1,NULL,'Dear Norris',1,NULL,'Mr. Norris Reynolds III',NULL,2,'1972-03-25',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:30','2018-05-19 05:31:40'),(149,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Prentice, Herminia','Herminia Prentice',NULL,NULL,NULL,'5',NULL,'Both','4072784830',NULL,'Sample Data','Herminia','','Prentice',NULL,NULL,NULL,NULL,1,NULL,'Dear Herminia',1,NULL,'Dear Herminia',1,NULL,'Herminia Prentice',NULL,NULL,'1986-07-29',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:30','2018-05-19 05:31:34'),(150,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'lee.eleonor@testing.co.pl','lee.eleonor@testing.co.pl',NULL,NULL,NULL,'3',NULL,'Both','369792950',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear lee.eleonor@testing.co.pl',1,NULL,'Dear lee.eleonor@testing.co.pl',1,NULL,'lee.eleonor@testing.co.pl',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:30','2018-05-19 05:31:34'),(151,'Individual',NULL,1,0,0,0,1,0,NULL,NULL,'Robertson, Sanford','Mr. Sanford Robertson',NULL,NULL,NULL,'5',NULL,'Both','3262166221',NULL,'Sample Data','Sanford','','Robertson',3,NULL,NULL,NULL,1,NULL,'Dear Sanford',1,NULL,'Dear Sanford',1,NULL,'Mr. Sanford Robertson',NULL,2,'1968-12-10',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:30','2018-05-19 05:31:35'),(152,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Cruz, Andrew','Andrew Cruz',NULL,NULL,NULL,'5',NULL,'Both','1496561341',NULL,'Sample Data','Andrew','','Cruz',NULL,NULL,NULL,NULL,1,NULL,'Dear Andrew',1,NULL,'Dear Andrew',1,NULL,'Andrew Cruz',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:30','2018-05-19 05:31:34'),(153,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Smith-Jones, Delana','Delana Smith-Jones',NULL,NULL,NULL,'4',NULL,'Both','2707340178',NULL,'Sample Data','Delana','A','Smith-Jones',NULL,NULL,NULL,NULL,1,NULL,'Dear Delana',1,NULL,'Dear Delana',1,NULL,'Delana Smith-Jones',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:30','2018-05-19 05:31:40'),(154,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Robertson, Rolando','Mr. Rolando Robertson',NULL,NULL,NULL,'3',NULL,'Both','865252280',NULL,'Sample Data','Rolando','','Robertson',3,NULL,NULL,NULL,1,NULL,'Dear Rolando',1,NULL,'Dear Rolando',1,NULL,'Mr. Rolando Robertson',NULL,NULL,'1966-09-25',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:30','2018-05-19 05:31:33'),(155,'Individual',NULL,1,1,0,0,0,0,NULL,NULL,'Cooper, Kenny','Kenny Cooper Jr.',NULL,NULL,NULL,NULL,NULL,'Both','613788882',NULL,'Sample Data','Kenny','','Cooper',NULL,1,NULL,NULL,1,NULL,'Dear Kenny',1,NULL,'Dear Kenny',1,NULL,'Kenny Cooper Jr.',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:30','2018-05-19 05:31:40'),(156,'Individual',NULL,1,0,0,0,1,0,NULL,NULL,'Bachman, Lincoln','Mr. Lincoln Bachman',NULL,NULL,NULL,NULL,NULL,'Both','3974009485',NULL,'Sample Data','Lincoln','S','Bachman',3,NULL,NULL,NULL,1,NULL,'Dear Lincoln',1,NULL,'Dear Lincoln',1,NULL,'Mr. Lincoln Bachman',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:30','2018-05-19 05:31:35'),(157,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'scottgrant@sample.info','scottgrant@sample.info',NULL,NULL,NULL,'2',NULL,'Both','1194021247',NULL,'Sample Data',NULL,NULL,NULL,3,NULL,NULL,NULL,1,NULL,'Dear scottgrant@sample.info',1,NULL,'Dear scottgrant@sample.info',1,NULL,'scottgrant@sample.info',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:30','2018-05-19 05:31:33'),(158,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Deforest, Teresa','Teresa Deforest',NULL,NULL,NULL,'4',NULL,'Both','1966517913',NULL,'Sample Data','Teresa','L','Deforest',NULL,NULL,NULL,NULL,1,NULL,'Dear Teresa',1,NULL,'Dear Teresa',1,NULL,'Teresa Deforest',NULL,NULL,'1975-04-21',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:30','2018-05-19 05:31:34'),(159,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Wattson, Arlyne','Arlyne Wattson',NULL,NULL,NULL,'5',NULL,'Both','2534537033',NULL,'Sample Data','Arlyne','K','Wattson',NULL,NULL,NULL,NULL,1,NULL,'Dear Arlyne',1,NULL,'Dear Arlyne',1,NULL,'Arlyne Wattson',NULL,1,'1988-11-22',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:30','2018-05-19 05:31:41'),(160,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Samuels-Zope, Kandace','Dr. Kandace Samuels-Zope',NULL,NULL,NULL,'5',NULL,'Both','3664577969',NULL,'Sample Data','Kandace','Y','Samuels-Zope',4,NULL,NULL,NULL,1,NULL,'Dear Kandace',1,NULL,'Dear Kandace',1,NULL,'Dr. Kandace Samuels-Zope',NULL,1,'1967-10-08',0,NULL,NULL,NULL,'Urban Arts School',NULL,NULL,24,0,'2018-05-19 05:31:30','2018-05-19 05:31:40'),(161,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Wilson-Reynolds family','Wilson-Reynolds family',NULL,NULL,NULL,NULL,NULL,'Both','1337921576',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Wilson-Reynolds family',5,NULL,'Dear Wilson-Reynolds family',2,NULL,'Wilson-Reynolds family',NULL,NULL,NULL,0,NULL,'Wilson-Reynolds family',NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:30','2018-05-19 05:31:38'),(162,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Ivanov, Laree','Dr. Laree Ivanov',NULL,NULL,NULL,'1',NULL,'Both','713398135',NULL,'Sample Data','Laree','','Ivanov',4,NULL,NULL,NULL,1,NULL,'Dear Laree',1,NULL,'Dear Laree',1,NULL,'Dr. Laree Ivanov',NULL,1,'1946-06-26',0,NULL,NULL,NULL,'Texas Education Fund',NULL,NULL,103,0,'2018-05-19 05:31:30','2018-05-19 05:31:39'),(163,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Zope, Megan','Megan Zope',NULL,NULL,NULL,NULL,NULL,'Both','2173436080',NULL,'Sample Data','Megan','','Zope',NULL,NULL,NULL,NULL,1,NULL,'Dear Megan',1,NULL,'Dear Megan',1,NULL,'Megan Zope',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:30','2018-05-19 05:31:34'),(164,'Organization',NULL,0,0,0,0,1,0,NULL,NULL,'Sierra Education Association','Sierra Education Association',NULL,NULL,NULL,NULL,NULL,'Both','3610169322',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Sierra Education Association',NULL,NULL,NULL,0,NULL,NULL,105,'Sierra Education Association',NULL,NULL,NULL,0,'2018-05-19 05:31:30','2018-05-19 05:31:39'),(165,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Barkley family','Barkley family',NULL,NULL,NULL,'1',NULL,'Both','2888062109',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Barkley family',5,NULL,'Dear Barkley family',2,NULL,'Barkley family',NULL,NULL,NULL,0,NULL,'Barkley family',NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:30','2018-05-19 05:31:37'),(166,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Nielsen, Sanford','Sanford Nielsen',NULL,NULL,NULL,NULL,NULL,'Both','2540808507',NULL,'Sample Data','Sanford','','Nielsen',NULL,NULL,NULL,NULL,1,NULL,'Dear Sanford',1,NULL,'Dear Sanford',1,NULL,'Sanford Nielsen',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:30','2018-05-19 05:31:35'),(167,'Organization',NULL,1,1,0,0,0,0,NULL,NULL,'Washington Family Fund','Washington Family Fund',NULL,NULL,NULL,'2',NULL,'Both','2639160612',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Washington Family Fund',NULL,NULL,NULL,0,NULL,NULL,60,'Washington Family Fund',NULL,NULL,NULL,0,'2018-05-19 05:31:30','2018-05-19 05:31:39'),(168,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Deforest, Erik','Erik Deforest Sr.',NULL,NULL,NULL,NULL,NULL,'Both','1691264565',NULL,'Sample Data','Erik','V','Deforest',NULL,2,NULL,NULL,1,NULL,'Dear Erik',1,NULL,'Dear Erik',1,NULL,'Erik Deforest Sr.',NULL,NULL,'2005-04-22',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:30','2018-05-19 05:31:35'),(169,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Deforest-Wagner, Billy','Billy Deforest-Wagner III',NULL,NULL,NULL,NULL,NULL,'Both','1537324486',NULL,'Sample Data','Billy','G','Deforest-Wagner',NULL,4,NULL,NULL,1,NULL,'Dear Billy',1,NULL,'Dear Billy',1,NULL,'Billy Deforest-Wagner III',NULL,2,'1949-01-20',1,'2018-03-13',NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:30','2018-05-19 05:31:40'),(170,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Zope, Carlos','Carlos Zope',NULL,NULL,NULL,'5',NULL,'Both','1767912072',NULL,'Sample Data','Carlos','','Zope',NULL,NULL,NULL,NULL,1,NULL,'Dear Carlos',1,NULL,'Dear Carlos',1,NULL,'Carlos Zope',NULL,2,'1997-07-01',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:30','2018-05-19 05:31:41'),(171,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Adams, Ashlie','Dr. Ashlie Adams',NULL,NULL,NULL,'2',NULL,'Both','368887089',NULL,'Sample Data','Ashlie','','Adams',4,NULL,NULL,NULL,1,NULL,'Dear Ashlie',1,NULL,'Dear Ashlie',1,NULL,'Dr. Ashlie Adams',NULL,1,'1959-06-19',1,'2017-10-16',NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:30','2018-05-19 05:31:35'),(172,'Individual',NULL,0,1,0,0,1,0,NULL,NULL,'smithj84@mymail.org','smithj84@mymail.org',NULL,NULL,NULL,'4',NULL,'Both','3808576562',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear smithj84@mymail.org',1,NULL,'Dear smithj84@mymail.org',1,NULL,'smithj84@mymail.org',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:30','2018-05-19 05:31:41'),(173,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Reynolds, Jed','Dr. Jed Reynolds Sr.',NULL,NULL,NULL,'2',NULL,'Both','3784848515',NULL,'Sample Data','Jed','L','Reynolds',4,2,NULL,NULL,1,NULL,'Dear Jed',1,NULL,'Dear Jed',1,NULL,'Dr. Jed Reynolds Sr.',NULL,2,'1978-05-04',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:30','2018-05-19 05:31:40'),(174,'Household',NULL,0,0,0,0,1,0,NULL,NULL,'Wattson-Smith family','Wattson-Smith family',NULL,NULL,NULL,'5',NULL,'Both','2302548678',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Wattson-Smith family',5,NULL,'Dear Wattson-Smith family',2,NULL,'Wattson-Smith family',NULL,NULL,NULL,0,NULL,'Wattson-Smith family',NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:30','2018-05-19 05:31:38'),(175,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Nielsen, Bryon','Mr. Bryon Nielsen Sr.',NULL,NULL,NULL,NULL,NULL,'Both','164626710',NULL,'Sample Data','Bryon','','Nielsen',3,2,NULL,NULL,1,NULL,'Dear Bryon',1,NULL,'Dear Bryon',1,NULL,'Mr. Bryon Nielsen Sr.',NULL,2,'1983-06-22',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:30','2018-05-19 05:31:42'),(176,'Organization',NULL,1,0,0,0,1,0,NULL,NULL,'Ohio Wellness Association','Ohio Wellness Association',NULL,NULL,NULL,'3',NULL,'Both','2727216226',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Ohio Wellness Association',NULL,NULL,NULL,0,NULL,NULL,NULL,'Ohio Wellness Association',NULL,NULL,NULL,0,'2018-05-19 05:31:30','2018-05-19 05:31:39'),(177,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jacobs, Kiara','Kiara Jacobs',NULL,NULL,NULL,'3',NULL,'Both','2329177439',NULL,'Sample Data','Kiara','','Jacobs',NULL,NULL,NULL,NULL,1,NULL,'Dear Kiara',1,NULL,'Dear Kiara',1,NULL,'Kiara Jacobs',NULL,1,'1997-07-09',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:30','2018-05-19 05:31:33'),(178,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'mreynolds@infomail.co.nz','mreynolds@infomail.co.nz',NULL,NULL,NULL,NULL,NULL,'Both','798246032',NULL,'Sample Data',NULL,NULL,NULL,2,NULL,NULL,NULL,1,NULL,'Dear mreynolds@infomail.co.nz',1,NULL,'Dear mreynolds@infomail.co.nz',1,NULL,'mreynolds@infomail.co.nz',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:30','2018-05-19 05:31:33'),(179,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Zope, Kiara','Ms. Kiara Zope',NULL,NULL,NULL,'5',NULL,'Both','2982636057',NULL,'Sample Data','Kiara','','Zope',2,NULL,NULL,NULL,1,NULL,'Dear Kiara',1,NULL,'Dear Kiara',1,NULL,'Ms. Kiara Zope',NULL,NULL,'1963-04-06',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:30','2018-05-19 05:31:41'),(180,'Household',NULL,0,0,0,0,1,0,NULL,NULL,'Samson-Terry family','Samson-Terry family',NULL,NULL,NULL,NULL,NULL,'Both','1196143838',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Samson-Terry family',5,NULL,'Dear Samson-Terry family',2,NULL,'Samson-Terry family',NULL,NULL,NULL,0,NULL,'Samson-Terry family',NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:30','2018-05-19 05:31:38'),(181,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Jameson-Jensen family','Jameson-Jensen family',NULL,NULL,NULL,'4',NULL,'Both','344154871',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Jameson-Jensen family',5,NULL,'Dear Jameson-Jensen family',2,NULL,'Jameson-Jensen family',NULL,NULL,NULL,0,NULL,'Jameson-Jensen family',NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:30','2018-05-19 05:31:38'),(182,'Household',NULL,0,1,0,0,0,0,NULL,NULL,'González family','González family',NULL,NULL,NULL,'5',NULL,'Both','3263723758',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear González family',5,NULL,'Dear González family',2,NULL,'González family',NULL,NULL,NULL,0,NULL,'González family',NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:30','2018-05-19 05:31:38'),(183,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Barkley, Lashawnda','Lashawnda Barkley',NULL,NULL,NULL,NULL,NULL,'Both','299247424',NULL,'Sample Data','Lashawnda','O','Barkley',NULL,NULL,NULL,NULL,1,NULL,'Dear Lashawnda',1,NULL,'Dear Lashawnda',1,NULL,'Lashawnda Barkley',NULL,1,NULL,1,'2018-03-18',NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:30','2018-05-19 05:31:39'),(184,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Samson, Bryon','Dr. Bryon Samson',NULL,NULL,NULL,'1',NULL,'Both','935164170',NULL,'Sample Data','Bryon','','Samson',4,NULL,NULL,NULL,1,NULL,'Dear Bryon',1,NULL,'Dear Bryon',1,NULL,'Dr. Bryon Samson',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:30','2018-05-19 05:31:33'),(185,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Cooper, Ashley','Ashley Cooper Sr.',NULL,NULL,NULL,NULL,NULL,'Both','495032298',NULL,'Sample Data','Ashley','Y','Cooper',NULL,2,NULL,NULL,1,NULL,'Dear Ashley',1,NULL,'Dear Ashley',1,NULL,'Ashley Cooper Sr.',NULL,2,'1960-07-07',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:30','2018-05-19 05:31:41'),(186,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Blackwell, Clint','Clint Blackwell',NULL,NULL,NULL,NULL,NULL,'Both','3997373533',NULL,'Sample Data','Clint','T','Blackwell',NULL,NULL,NULL,NULL,1,NULL,'Dear Clint',1,NULL,'Dear Clint',1,NULL,'Clint Blackwell',NULL,2,'1967-10-16',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:30','2018-05-19 05:31:34'),(187,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Blackwell, Toby','Toby Blackwell',NULL,NULL,NULL,NULL,NULL,'Both','3987770403',NULL,'Sample Data','Toby','A','Blackwell',NULL,NULL,NULL,NULL,1,NULL,'Dear Toby',1,NULL,'Dear Toby',1,NULL,'Toby Blackwell',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:30','2018-05-19 05:31:40'),(188,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jameson-Jensen, Bernadette','Dr. Bernadette Jameson-Jensen',NULL,NULL,NULL,'3',NULL,'Both','1483944197',NULL,'Sample Data','Bernadette','','Jameson-Jensen',4,NULL,NULL,NULL,1,NULL,'Dear Bernadette',1,NULL,'Dear Bernadette',1,NULL,'Dr. Bernadette Jameson-Jensen',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:30','2018-05-19 05:31:40'),(189,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Nielsen, Ashlie','Ms. Ashlie Nielsen',NULL,NULL,NULL,NULL,NULL,'Both','89218160',NULL,'Sample Data','Ashlie','','Nielsen',2,NULL,NULL,NULL,1,NULL,'Dear Ashlie',1,NULL,'Dear Ashlie',1,NULL,'Ms. Ashlie Nielsen',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:31','2018-05-19 05:31:42'),(190,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'terry.justina95@airmail.org','terry.justina95@airmail.org',NULL,NULL,NULL,NULL,NULL,'Both','3836531722',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear terry.justina95@airmail.org',1,NULL,'Dear terry.justina95@airmail.org',1,NULL,'terry.justina95@airmail.org',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:32','2018-05-19 05:31:42'),(191,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Lee, Toby','Toby Lee Jr.',NULL,NULL,NULL,NULL,NULL,'Both','1467160380',NULL,'Sample Data','Toby','','Lee',NULL,1,NULL,NULL,1,NULL,'Dear Toby',1,NULL,'Dear Toby',1,NULL,'Toby Lee Jr.',NULL,NULL,'1999-04-23',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:32','2018-05-19 05:31:35'),(192,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Deforest, Arlyne','Dr. Arlyne Deforest',NULL,NULL,NULL,'4',NULL,'Both','2836833438',NULL,'Sample Data','Arlyne','','Deforest',4,NULL,NULL,NULL,1,NULL,'Dear Arlyne',1,NULL,'Dear Arlyne',1,NULL,'Dr. Arlyne Deforest',NULL,NULL,'1978-12-06',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:33','2018-05-19 05:31:41'),(193,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Nielsen, Bob','Mr. Bob Nielsen',NULL,NULL,NULL,NULL,NULL,'Both','1542221610',NULL,'Sample Data','Bob','Q','Nielsen',3,NULL,NULL,NULL,1,NULL,'Dear Bob',1,NULL,'Dear Bob',1,NULL,'Mr. Bob Nielsen',NULL,2,'1967-02-07',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:33','2018-05-19 05:31:33'),(194,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Smith-Jones, Ivey','Ivey Smith-Jones',NULL,NULL,NULL,NULL,NULL,'Both','104184630',NULL,'Sample Data','Ivey','X','Smith-Jones',NULL,NULL,NULL,NULL,1,NULL,'Dear Ivey',1,NULL,'Dear Ivey',1,NULL,'Ivey Smith-Jones',NULL,1,'1994-03-12',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:33','2018-05-19 05:31:40'),(195,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Nielsen, Maxwell','Maxwell Nielsen',NULL,NULL,NULL,'3',NULL,'Both','1889021515',NULL,'Sample Data','Maxwell','G','Nielsen',NULL,NULL,NULL,NULL,1,NULL,'Dear Maxwell',1,NULL,'Dear Maxwell',1,NULL,'Maxwell Nielsen',NULL,2,'1998-04-28',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:33','2018-05-19 05:31:42'),(196,'Individual',NULL,1,1,0,0,0,0,NULL,NULL,'Nielsen, Lashawnda','Dr. Lashawnda Nielsen',NULL,NULL,NULL,'3',NULL,'Both','591811788',NULL,'Sample Data','Lashawnda','O','Nielsen',4,NULL,NULL,NULL,1,NULL,'Dear Lashawnda',1,NULL,'Dear Lashawnda',1,NULL,'Dr. Lashawnda Nielsen',NULL,1,'1991-09-24',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:33','2018-05-19 05:31:33'),(197,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Zope, Ashley','Ashley Zope',NULL,NULL,NULL,'3',NULL,'Both','454484238',NULL,'Sample Data','Ashley','','Zope',NULL,NULL,NULL,NULL,1,NULL,'Dear Ashley',1,NULL,'Dear Ashley',1,NULL,'Ashley Zope',NULL,1,'1978-06-16',0,NULL,NULL,NULL,'Oakland Food Services',NULL,NULL,111,0,'2018-05-19 05:31:33','2018-05-19 05:31:40'),(198,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Olsen, Tanya','Dr. Tanya Olsen',NULL,NULL,NULL,'4',NULL,'Both','1790867456',NULL,'Sample Data','Tanya','A','Olsen',4,NULL,NULL,NULL,1,NULL,'Dear Tanya',1,NULL,'Dear Tanya',1,NULL,'Dr. Tanya Olsen',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:33','2018-05-19 05:31:33'),(199,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Terry, Billy','Dr. Billy Terry III',NULL,NULL,NULL,'4',NULL,'Both','808293154',NULL,'Sample Data','Billy','','Terry',4,4,NULL,NULL,1,NULL,'Dear Billy',1,NULL,'Dear Billy',1,NULL,'Dr. Billy Terry III',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:33','2018-05-19 05:31:35'),(200,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Dimitrov, Ashley','Dr. Ashley Dimitrov',NULL,NULL,NULL,'3',NULL,'Both','665882362',NULL,'Sample Data','Ashley','','Dimitrov',4,NULL,NULL,NULL,1,NULL,'Dear Ashley',1,NULL,'Dear Ashley',1,NULL,'Dr. Ashley Dimitrov',NULL,1,'1981-03-11',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-19 05:31:33','2018-05-19 05:31:34'),(201,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Manila Music Fellowship','Manila Music Fellowship',NULL,NULL,NULL,NULL,NULL,'Both','2161470771',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Manila Music Fellowship',NULL,NULL,NULL,0,NULL,NULL,130,'Manila Music Fellowship',NULL,NULL,NULL,0,'2018-05-19 05:31:33','2018-05-19 05:31:39'); +INSERT INTO `civicrm_contact` (`id`, `contact_type`, `contact_sub_type`, `do_not_email`, `do_not_phone`, `do_not_mail`, `do_not_sms`, `do_not_trade`, `is_opt_out`, `legal_identifier`, `external_identifier`, `sort_name`, `display_name`, `nick_name`, `legal_name`, `image_URL`, `preferred_communication_method`, `preferred_language`, `preferred_mail_format`, `hash`, `api_key`, `source`, `first_name`, `middle_name`, `last_name`, `prefix_id`, `suffix_id`, `formal_title`, `communication_style_id`, `email_greeting_id`, `email_greeting_custom`, `email_greeting_display`, `postal_greeting_id`, `postal_greeting_custom`, `postal_greeting_display`, `addressee_id`, `addressee_custom`, `addressee_display`, `job_title`, `gender_id`, `birth_date`, `is_deceased`, `deceased_date`, `household_name`, `primary_contact_id`, `organization_name`, `sic_code`, `user_unique_id`, `employer_id`, `is_deleted`, `created_date`, `modified_date`) VALUES (1,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Default Organization','Default Organization',NULL,'Default Organization',NULL,NULL,NULL,'Both',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'Default Organization',NULL,NULL,NULL,0,NULL,'2018-05-21 20:27:11'),(2,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Wattson, Shauna','Shauna Wattson',NULL,NULL,NULL,'4',NULL,'Both','255999578',NULL,'Sample Data','Shauna','H','Wattson',NULL,NULL,NULL,NULL,1,NULL,'Dear Shauna',1,NULL,'Dear Shauna',1,NULL,'Shauna Wattson',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:21'),(3,'Individual',NULL,1,0,0,0,1,0,NULL,NULL,'Jones, Kiara','Kiara Jones',NULL,NULL,NULL,'1',NULL,'Both','2445144569',NULL,'Sample Data','Kiara','R','Jones',NULL,NULL,NULL,NULL,1,NULL,'Dear Kiara',1,NULL,'Dear Kiara',1,NULL,'Kiara Jones',NULL,1,'1958-08-01',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:20'),(4,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Barkley, Shauna','Shauna Barkley',NULL,NULL,NULL,NULL,NULL,'Both','1145257394',NULL,'Sample Data','Shauna','','Barkley',NULL,NULL,NULL,NULL,1,NULL,'Dear Shauna',1,NULL,'Dear Shauna',1,NULL,'Shauna Barkley',NULL,1,'2004-05-15',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:21'),(5,'Individual',NULL,0,1,0,0,1,0,NULL,NULL,'Parker, Valene','Valene Parker',NULL,NULL,NULL,NULL,NULL,'Both','2439115501',NULL,'Sample Data','Valene','','Parker',NULL,NULL,NULL,NULL,1,NULL,'Dear Valene',1,NULL,'Dear Valene',1,NULL,'Valene Parker',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:21'),(6,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'adams.truman49@infomail.biz','adams.truman49@infomail.biz',NULL,NULL,NULL,'2',NULL,'Both','4167642695',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear adams.truman49@infomail.biz',1,NULL,'Dear adams.truman49@infomail.biz',1,NULL,'adams.truman49@infomail.biz',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:21'),(7,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'McReynolds, Tanya','Dr. Tanya McReynolds',NULL,NULL,NULL,'2',NULL,'Both','2833475968',NULL,'Sample Data','Tanya','R','McReynolds',4,NULL,NULL,NULL,1,NULL,'Dear Tanya',1,NULL,'Dear Tanya',1,NULL,'Dr. Tanya McReynolds',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:21'),(8,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Dimitrov, Craig','Craig Dimitrov Jr.',NULL,NULL,NULL,'5',NULL,'Both','3815881421',NULL,'Sample Data','Craig','E','Dimitrov',NULL,1,NULL,NULL,1,NULL,'Dear Craig',1,NULL,'Dear Craig',1,NULL,'Craig Dimitrov Jr.',NULL,2,'1959-08-08',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:22'),(9,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Olsen, Rolando','Rolando Olsen Sr.',NULL,NULL,NULL,'1',NULL,'Both','2121296962',NULL,'Sample Data','Rolando','W','Olsen',NULL,2,NULL,NULL,1,NULL,'Dear Rolando',1,NULL,'Dear Rolando',1,NULL,'Rolando Olsen Sr.',NULL,2,'1942-04-17',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:21'),(10,'Organization',NULL,1,0,0,0,0,0,NULL,NULL,'Nebraska Empowerment Solutions','Nebraska Empowerment Solutions',NULL,NULL,NULL,NULL,NULL,'Both','3526009064',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Nebraska Empowerment Solutions',NULL,NULL,NULL,0,NULL,NULL,45,'Nebraska Empowerment Solutions',NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:21'),(11,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Cruz, Josefa','Mrs. Josefa Cruz',NULL,NULL,NULL,NULL,NULL,'Both','97145743',NULL,'Sample Data','Josefa','','Cruz',1,NULL,NULL,NULL,1,NULL,'Dear Josefa',1,NULL,'Dear Josefa',1,NULL,'Mrs. Josefa Cruz',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:22'),(12,'Household',NULL,0,0,0,0,1,0,NULL,NULL,'Jensen family','Jensen family',NULL,NULL,NULL,NULL,NULL,'Both','797435572',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Jensen family',5,NULL,'Dear Jensen family',2,NULL,'Jensen family',NULL,NULL,NULL,0,NULL,'Jensen family',NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:21'),(13,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jacobs, Kiara','Kiara Jacobs',NULL,NULL,NULL,'3',NULL,'Both','2329177439',NULL,'Sample Data','Kiara','','Jacobs',NULL,NULL,NULL,NULL,1,NULL,'Dear Kiara',1,NULL,'Dear Kiara',1,NULL,'Kiara Jacobs',NULL,1,'1957-09-01',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:20'),(14,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Ivanov, Carylon','Dr. Carylon Ivanov',NULL,NULL,NULL,'1',NULL,'Both','3841280474',NULL,'Sample Data','Carylon','P','Ivanov',4,NULL,NULL,NULL,1,NULL,'Dear Carylon',1,NULL,'Dear Carylon',1,NULL,'Dr. Carylon Ivanov',NULL,1,NULL,0,NULL,NULL,NULL,'Arkansas Sports Fellowship',NULL,NULL,16,0,'2018-05-21 20:27:20','2018-05-21 20:27:21'),(15,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Olsen, Andrew','Andrew Olsen',NULL,NULL,NULL,'2',NULL,'Both','3402005266',NULL,'Sample Data','Andrew','','Olsen',NULL,NULL,NULL,NULL,1,NULL,'Dear Andrew',1,NULL,'Dear Andrew',1,NULL,'Andrew Olsen',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:21'),(16,'Organization',NULL,0,0,0,0,1,0,NULL,NULL,'Arkansas Sports Fellowship','Arkansas Sports Fellowship',NULL,NULL,NULL,NULL,NULL,'Both','3295551137',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Arkansas Sports Fellowship',NULL,NULL,NULL,0,NULL,NULL,14,'Arkansas Sports Fellowship',NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:21'),(17,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Olsen, Erik','Erik Olsen III',NULL,NULL,NULL,'5',NULL,'Both','1259292682',NULL,'Sample Data','Erik','J','Olsen',NULL,4,NULL,NULL,1,NULL,'Dear Erik',1,NULL,'Dear Erik',1,NULL,'Erik Olsen III',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:20'),(18,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'McReynolds, Ashley','Mr. Ashley McReynolds Jr.',NULL,NULL,NULL,NULL,NULL,'Both','68872917',NULL,'Sample Data','Ashley','E','McReynolds',3,1,NULL,NULL,1,NULL,'Dear Ashley',1,NULL,'Dear Ashley',1,NULL,'Mr. Ashley McReynolds Jr.',NULL,2,'1941-04-25',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:21'),(19,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'McReynolds, Maria','Maria McReynolds',NULL,NULL,NULL,'2',NULL,'Both','2599277622',NULL,'Sample Data','Maria','V','McReynolds',NULL,NULL,NULL,NULL,1,NULL,'Dear Maria',1,NULL,'Dear Maria',1,NULL,'Maria McReynolds',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:21'),(20,'Individual',NULL,1,0,0,0,1,0,NULL,NULL,'McReynolds, Bernadette','Dr. Bernadette McReynolds',NULL,NULL,NULL,'4',NULL,'Both','1201192588',NULL,'Sample Data','Bernadette','','McReynolds',4,NULL,NULL,NULL,1,NULL,'Dear Bernadette',1,NULL,'Dear Bernadette',1,NULL,'Dr. Bernadette McReynolds',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:21'),(21,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jensen, Alexia','Alexia Jensen',NULL,NULL,NULL,'2',NULL,'Both','1964478975',NULL,'Sample Data','Alexia','','Jensen',NULL,NULL,NULL,NULL,1,NULL,'Dear Alexia',1,NULL,'Dear Alexia',1,NULL,'Alexia Jensen',NULL,NULL,'1978-06-24',0,NULL,NULL,NULL,'Rural Literacy Association',NULL,NULL,34,0,'2018-05-21 20:27:20','2018-05-21 20:27:21'),(22,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Olsen-McReynolds, Shauna','Ms. Shauna Olsen-McReynolds',NULL,NULL,NULL,NULL,NULL,'Both','3733823082',NULL,'Sample Data','Shauna','G','Olsen-McReynolds',2,NULL,NULL,NULL,1,NULL,'Dear Shauna',1,NULL,'Dear Shauna',1,NULL,'Ms. Shauna Olsen-McReynolds',NULL,1,'1981-03-23',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:21'),(23,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Wattson, Lashawnda','Lashawnda Wattson',NULL,NULL,NULL,NULL,NULL,'Both','3926771014',NULL,'Sample Data','Lashawnda','Y','Wattson',NULL,NULL,NULL,NULL,1,NULL,'Dear Lashawnda',1,NULL,'Dear Lashawnda',1,NULL,'Lashawnda Wattson',NULL,NULL,'1932-09-02',1,'2017-10-24',NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:20'),(24,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Samson, Norris','Norris Samson',NULL,NULL,NULL,NULL,NULL,'Both','2564827585',NULL,'Sample Data','Norris','R','Samson',NULL,NULL,NULL,NULL,1,NULL,'Dear Norris',1,NULL,'Dear Norris',1,NULL,'Norris Samson',NULL,2,'1951-06-17',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:21'),(25,'Individual',NULL,1,1,0,0,0,0,NULL,NULL,'Barkley, Esta','Dr. Esta Barkley',NULL,NULL,NULL,NULL,NULL,'Both','2407753300',NULL,'Sample Data','Esta','M','Barkley',4,NULL,NULL,NULL,1,NULL,'Dear Esta',1,NULL,'Dear Esta',1,NULL,'Dr. Esta Barkley',NULL,NULL,'1969-12-12',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:21'),(26,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Cooper, Mei','Mrs. Mei Cooper',NULL,NULL,NULL,NULL,NULL,'Both','1149940772',NULL,'Sample Data','Mei','','Cooper',1,NULL,NULL,NULL,1,NULL,'Dear Mei',1,NULL,'Dear Mei',1,NULL,'Mrs. Mei Cooper',NULL,1,'1983-06-21',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:22'),(27,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Roberts, Valene','Dr. Valene Roberts',NULL,NULL,NULL,NULL,NULL,'Both','2209497418',NULL,'Sample Data','Valene','','Roberts',4,NULL,NULL,NULL,1,NULL,'Dear Valene',1,NULL,'Dear Valene',1,NULL,'Dr. Valene Roberts',NULL,NULL,'1974-12-01',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:22'),(28,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Wagner, Beula','Beula Wagner',NULL,NULL,NULL,NULL,NULL,'Both','109524906',NULL,'Sample Data','Beula','','Wagner',NULL,NULL,NULL,NULL,1,NULL,'Dear Beula',1,NULL,'Dear Beula',1,NULL,'Beula Wagner',NULL,1,'1984-05-17',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:21'),(29,'Household',NULL,1,0,0,0,0,0,NULL,NULL,'Nielsen family','Nielsen family',NULL,NULL,NULL,NULL,NULL,'Both','766698874',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Nielsen family',5,NULL,'Dear Nielsen family',2,NULL,'Nielsen family',NULL,NULL,NULL,0,NULL,'Nielsen family',NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:21'),(30,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Terrell, Delana','Delana Terrell',NULL,NULL,NULL,NULL,NULL,'Both','3301906923',NULL,'Sample Data','Delana','','Terrell',NULL,NULL,NULL,NULL,1,NULL,'Dear Delana',1,NULL,'Dear Delana',1,NULL,'Delana Terrell',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:21'),(31,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Robertson, Lashawnda','Mrs. Lashawnda Robertson',NULL,NULL,NULL,'3',NULL,'Both','44444463',NULL,'Sample Data','Lashawnda','C','Robertson',1,NULL,NULL,NULL,1,NULL,'Dear Lashawnda',1,NULL,'Dear Lashawnda',1,NULL,'Mrs. Lashawnda Robertson',NULL,NULL,'1938-09-19',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:21'),(32,'Individual',NULL,1,0,0,0,1,0,NULL,NULL,'Nielsen, Landon','Mr. Landon Nielsen',NULL,NULL,NULL,NULL,NULL,'Both','1226832678',NULL,'Sample Data','Landon','','Nielsen',3,NULL,NULL,NULL,1,NULL,'Dear Landon',1,NULL,'Dear Landon',1,NULL,'Mr. Landon Nielsen',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:21'),(33,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Local Agriculture Academy','Local Agriculture Academy',NULL,NULL,NULL,NULL,NULL,'Both','3410375223',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Local Agriculture Academy',NULL,NULL,NULL,0,NULL,NULL,96,'Local Agriculture Academy',NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:21'),(34,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Rural Literacy Association','Rural Literacy Association',NULL,NULL,NULL,'4',NULL,'Both','2064317141',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Rural Literacy Association',NULL,NULL,NULL,0,NULL,NULL,21,'Rural Literacy Association',NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:21'),(35,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'andrewc@mymail.org','andrewc@mymail.org',NULL,NULL,NULL,'5',NULL,'Both','4163043298',NULL,'Sample Data',NULL,NULL,NULL,4,2,NULL,NULL,1,NULL,'Dear andrewc@mymail.org',1,NULL,'Dear andrewc@mymail.org',1,NULL,'andrewc@mymail.org',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:22'),(36,'Individual',NULL,0,1,0,0,1,0,NULL,NULL,'McReynolds, Shad','Shad McReynolds Jr.',NULL,NULL,NULL,NULL,NULL,'Both','4249147082',NULL,'Sample Data','Shad','U','McReynolds',NULL,1,NULL,NULL,1,NULL,'Dear Shad',1,NULL,'Dear Shad',1,NULL,'Shad McReynolds Jr.',NULL,2,'2006-11-15',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:21'),(37,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Bachman-Wattson, Carlos','Dr. Carlos Bachman-Wattson',NULL,NULL,NULL,NULL,NULL,'Both','1892247778',NULL,'Sample Data','Carlos','B','Bachman-Wattson',4,NULL,NULL,NULL,1,NULL,'Dear Carlos',1,NULL,'Dear Carlos',1,NULL,'Dr. Carlos Bachman-Wattson',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:22'),(38,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Samson, Scott','Dr. Scott Samson Jr.',NULL,NULL,NULL,NULL,NULL,'Both','3462863584',NULL,'Sample Data','Scott','','Samson',4,1,NULL,NULL,1,NULL,'Dear Scott',1,NULL,'Dear Scott',1,NULL,'Dr. Scott Samson Jr.',NULL,2,'1941-10-11',1,'2017-09-21',NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:20'),(39,'Organization',NULL,0,0,0,0,1,0,NULL,NULL,'Texas Family Partnership','Texas Family Partnership',NULL,NULL,NULL,'5',NULL,'Both','1267093491',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Texas Family Partnership',NULL,NULL,NULL,0,NULL,NULL,62,'Texas Family Partnership',NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:21'),(40,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Olsen-McReynolds, Miguel','Miguel Olsen-McReynolds III',NULL,NULL,NULL,NULL,NULL,'Both','1646210715',NULL,'Sample Data','Miguel','','Olsen-McReynolds',NULL,4,NULL,NULL,1,NULL,'Dear Miguel',1,NULL,'Dear Miguel',1,NULL,'Miguel Olsen-McReynolds III',NULL,NULL,'1981-02-27',0,NULL,NULL,NULL,'Rural Literacy Fund',NULL,NULL,159,0,'2018-05-21 20:27:20','2018-05-21 20:27:21'),(41,'Household',NULL,0,0,0,0,1,0,NULL,NULL,'Cruz-Müller family','Cruz-Müller family',NULL,NULL,NULL,NULL,NULL,'Both','2724821923',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Cruz-Müller family',5,NULL,'Dear Cruz-Müller family',2,NULL,'Cruz-Müller family',NULL,NULL,NULL,0,NULL,'Cruz-Müller family',NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:21'),(42,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Cruz family','Cruz family',NULL,NULL,NULL,NULL,NULL,'Both','2326538497',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Cruz family',5,NULL,'Dear Cruz family',2,NULL,'Cruz family',NULL,NULL,NULL,0,NULL,'Cruz family',NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:21'),(43,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'cruz.rolando@notmail.com','cruz.rolando@notmail.com',NULL,NULL,NULL,NULL,NULL,'Both','2357579362',NULL,'Sample Data',NULL,NULL,NULL,NULL,4,NULL,NULL,1,NULL,'Dear cruz.rolando@notmail.com',1,NULL,'Dear cruz.rolando@notmail.com',1,NULL,'cruz.rolando@notmail.com',NULL,NULL,NULL,0,NULL,NULL,NULL,'Lincoln Agriculture Solutions',NULL,NULL,101,0,'2018-05-21 20:27:20','2018-05-21 20:27:21'),(44,'Individual',NULL,0,1,0,0,1,0,NULL,NULL,'Jones, Landon','Dr. Landon Jones',NULL,NULL,NULL,'1',NULL,'Both','1338428920',NULL,'Sample Data','Landon','E','Jones',4,NULL,NULL,NULL,1,NULL,'Dear Landon',1,NULL,'Dear Landon',1,NULL,'Dr. Landon Jones',NULL,2,NULL,0,NULL,NULL,NULL,'Bath Action Collective',NULL,NULL,151,0,'2018-05-21 20:27:20','2018-05-21 20:27:22'),(45,'Individual',NULL,1,0,0,0,1,0,NULL,NULL,'santinat@fishmail.co.nz','santinat@fishmail.co.nz',NULL,NULL,NULL,'3',NULL,'Both','1240188462',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear santinat@fishmail.co.nz',1,NULL,'Dear santinat@fishmail.co.nz',1,NULL,'santinat@fishmail.co.nz',NULL,NULL,NULL,0,NULL,NULL,NULL,'Nebraska Empowerment Solutions',NULL,NULL,10,0,'2018-05-21 20:27:20','2018-05-21 20:27:21'),(46,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'sl.dimitrov@fakemail.co.uk','sl.dimitrov@fakemail.co.uk',NULL,NULL,NULL,'1',NULL,'Both','2890730476',NULL,'Sample Data',NULL,NULL,NULL,3,2,NULL,NULL,1,NULL,'Dear sl.dimitrov@fakemail.co.uk',1,NULL,'Dear sl.dimitrov@fakemail.co.uk',1,NULL,'sl.dimitrov@fakemail.co.uk',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:21'),(47,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Cooper, Brittney','Brittney Cooper',NULL,NULL,NULL,NULL,NULL,'Both','4169712187',NULL,'Sample Data','Brittney','','Cooper',NULL,NULL,NULL,NULL,1,NULL,'Dear Brittney',1,NULL,'Dear Brittney',1,NULL,'Brittney Cooper',NULL,1,'2005-11-20',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:22'),(48,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jensen, Teresa','Teresa Jensen',NULL,NULL,NULL,'2',NULL,'Both','1107412344',NULL,'Sample Data','Teresa','','Jensen',NULL,NULL,NULL,NULL,1,NULL,'Dear Teresa',1,NULL,'Dear Teresa',1,NULL,'Teresa Jensen',NULL,1,'1963-03-16',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:21'),(49,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Zope, Ashlie','Dr. Ashlie Zope',NULL,NULL,NULL,'3',NULL,'Both','2745365069',NULL,'Sample Data','Ashlie','Q','Zope',4,NULL,NULL,NULL,1,NULL,'Dear Ashlie',1,NULL,'Dear Ashlie',1,NULL,'Dr. Ashlie Zope',NULL,1,'1929-12-23',1,'2017-10-09',NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:21'),(50,'Individual',NULL,1,1,0,0,0,0,NULL,NULL,'Terrell, Junko','Ms. Junko Terrell',NULL,NULL,NULL,'5',NULL,'Both','3229402674',NULL,'Sample Data','Junko','','Terrell',2,NULL,NULL,NULL,1,NULL,'Dear Junko',1,NULL,'Dear Junko',1,NULL,'Ms. Junko Terrell',NULL,1,'1953-04-09',1,'2018-05-21',NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:21'),(51,'Household',NULL,0,0,0,0,1,0,NULL,NULL,'Adams family','Adams family',NULL,NULL,NULL,NULL,NULL,'Both','1515323104',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Adams family',5,NULL,'Dear Adams family',2,NULL,'Adams family',NULL,NULL,NULL,0,NULL,'Adams family',NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:21'),(52,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'omard@spamalot.biz','omard@spamalot.biz',NULL,NULL,NULL,NULL,NULL,'Both','2465352490',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear omard@spamalot.biz',1,NULL,'Dear omard@spamalot.biz',1,NULL,'omard@spamalot.biz',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:20'),(53,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Samuels, Carlos','Carlos Samuels III',NULL,NULL,NULL,NULL,NULL,'Both','1758325668',NULL,'Sample Data','Carlos','Z','Samuels',NULL,4,NULL,NULL,1,NULL,'Dear Carlos',1,NULL,'Dear Carlos',1,NULL,'Carlos Samuels III',NULL,2,'1959-03-24',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:21'),(54,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Zope, Craig','Mr. Craig Zope Sr.',NULL,NULL,NULL,NULL,NULL,'Both','1190830057',NULL,'Sample Data','Craig','X','Zope',3,2,NULL,NULL,1,NULL,'Dear Craig',1,NULL,'Dear Craig',1,NULL,'Mr. Craig Zope Sr.',NULL,2,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:20'),(55,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Dimitrov, Jina','Dr. Jina Dimitrov',NULL,NULL,NULL,'5',NULL,'Both','4192417839',NULL,'Sample Data','Jina','','Dimitrov',4,NULL,NULL,NULL,1,NULL,'Dear Jina',1,NULL,'Dear Jina',1,NULL,'Dr. Jina Dimitrov',NULL,1,'1945-10-11',1,'2017-07-10',NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:22'),(56,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Terrell, Allan','Allan Terrell Sr.',NULL,NULL,NULL,NULL,NULL,'Both','349299524',NULL,'Sample Data','Allan','D','Terrell',NULL,2,NULL,NULL,1,NULL,'Dear Allan',1,NULL,'Dear Allan',1,NULL,'Allan Terrell Sr.',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:21'),(57,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Müller, Ivey','Ms. Ivey Müller',NULL,NULL,NULL,NULL,NULL,'Both','596776710',NULL,'Sample Data','Ivey','X','Müller',2,NULL,NULL,NULL,1,NULL,'Dear Ivey',1,NULL,'Dear Ivey',1,NULL,'Ms. Ivey Müller',NULL,1,'1980-12-10',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:20'),(58,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'González, Brent','Dr. Brent González Sr.',NULL,NULL,NULL,'5',NULL,'Both','397348525',NULL,'Sample Data','Brent','','González',4,2,NULL,NULL,1,NULL,'Dear Brent',1,NULL,'Dear Brent',1,NULL,'Dr. Brent González Sr.',NULL,2,'1976-04-02',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:21'),(59,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'zope.juliann54@testing.biz','zope.juliann54@testing.biz',NULL,NULL,NULL,NULL,NULL,'Both','1201010970',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear zope.juliann54@testing.biz',1,NULL,'Dear zope.juliann54@testing.biz',1,NULL,'zope.juliann54@testing.biz',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:21'),(60,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Wagner, Rodrigo','Rodrigo Wagner Sr.',NULL,NULL,NULL,'5',NULL,'Both','2133660723',NULL,'Sample Data','Rodrigo','B','Wagner',NULL,2,NULL,NULL,1,NULL,'Dear Rodrigo',1,NULL,'Dear Rodrigo',1,NULL,'Rodrigo Wagner Sr.',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:20'),(61,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Cooper, Kathlyn','Ms. Kathlyn Cooper',NULL,NULL,NULL,NULL,NULL,'Both','4144432038',NULL,'Sample Data','Kathlyn','','Cooper',2,NULL,NULL,NULL,1,NULL,'Dear Kathlyn',1,NULL,'Dear Kathlyn',1,NULL,'Ms. Kathlyn Cooper',NULL,1,'1995-12-15',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:22'),(62,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Zope, Alida','Alida Zope',NULL,NULL,NULL,NULL,NULL,'Both','3726796517',NULL,'Sample Data','Alida','','Zope',NULL,NULL,NULL,NULL,1,NULL,'Dear Alida',1,NULL,'Dear Alida',1,NULL,'Alida Zope',NULL,NULL,'1998-02-06',0,NULL,NULL,NULL,'Texas Family Partnership',NULL,NULL,39,0,'2018-05-21 20:27:20','2018-05-21 20:27:21'),(63,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'lawerencegonzlez@infomail.net','lawerencegonzlez@infomail.net',NULL,NULL,NULL,'4',NULL,'Both','67333539',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear lawerencegonzlez@infomail.net',1,NULL,'Dear lawerencegonzlez@infomail.net',1,NULL,'lawerencegonzlez@infomail.net',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:21'),(64,'Individual',NULL,0,1,0,0,1,0,NULL,NULL,'Cruz-Müller, Princess','Princess Cruz-Müller',NULL,NULL,NULL,'3',NULL,'Both','1979285868',NULL,'Sample Data','Princess','','Cruz-Müller',NULL,NULL,NULL,NULL,1,NULL,'Dear Princess',1,NULL,'Dear Princess',1,NULL,'Princess Cruz-Müller',NULL,1,'1974-12-13',0,NULL,NULL,NULL,'United Wellness Alliance',NULL,NULL,162,0,'2018-05-21 20:27:20','2018-05-21 20:27:22'),(65,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Olsen-Dimitrov, Bernadette','Bernadette Olsen-Dimitrov',NULL,NULL,NULL,NULL,NULL,'Both','3860968796',NULL,'Sample Data','Bernadette','J','Olsen-Dimitrov',NULL,NULL,NULL,NULL,1,NULL,'Dear Bernadette',1,NULL,'Dear Bernadette',1,NULL,'Bernadette Olsen-Dimitrov',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:22'),(66,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Cooper, Jerome','Jerome Cooper',NULL,NULL,NULL,'4',NULL,'Both','2044517102',NULL,'Sample Data','Jerome','V','Cooper',NULL,NULL,NULL,NULL,1,NULL,'Dear Jerome',1,NULL,'Dear Jerome',1,NULL,'Jerome Cooper',NULL,2,'1971-05-05',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:21'),(67,'Individual',NULL,1,1,0,0,0,0,NULL,NULL,'delanareynolds@lol.co.uk','delanareynolds@lol.co.uk',NULL,NULL,NULL,NULL,NULL,'Both','3759599236',NULL,'Sample Data',NULL,NULL,NULL,4,NULL,NULL,NULL,1,NULL,'Dear delanareynolds@lol.co.uk',1,NULL,'Dear delanareynolds@lol.co.uk',1,NULL,'delanareynolds@lol.co.uk',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:20'),(68,'Household',NULL,0,1,0,0,0,0,NULL,NULL,'Samson family','Samson family',NULL,NULL,NULL,'1',NULL,'Both','333421926',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Samson family',5,NULL,'Dear Samson family',2,NULL,'Samson family',NULL,NULL,NULL,0,NULL,'Samson family',NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:21'),(69,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Olsen, Heidi','Dr. Heidi Olsen',NULL,NULL,NULL,NULL,NULL,'Both','3023333247',NULL,'Sample Data','Heidi','I','Olsen',4,NULL,NULL,NULL,1,NULL,'Dear Heidi',1,NULL,'Dear Heidi',1,NULL,'Dr. Heidi Olsen',NULL,1,NULL,1,'2018-01-03',NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:20'),(70,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Samson, Esta','Mrs. Esta Samson',NULL,NULL,NULL,NULL,NULL,'Both','2754317159',NULL,'Sample Data','Esta','','Samson',1,NULL,NULL,NULL,1,NULL,'Dear Esta',1,NULL,'Dear Esta',1,NULL,'Mrs. Esta Samson',NULL,1,'1971-06-04',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:22'),(71,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Terrell, Brent','Mr. Brent Terrell',NULL,NULL,NULL,NULL,NULL,'Both','2526832386',NULL,'Sample Data','Brent','','Terrell',3,NULL,NULL,NULL,1,NULL,'Dear Brent',1,NULL,'Dear Brent',1,NULL,'Mr. Brent Terrell',NULL,2,'1932-12-08',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:20'),(72,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Jones-Ivanov family','Jones-Ivanov family',NULL,NULL,NULL,'4',NULL,'Both','2057353278',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Jones-Ivanov family',5,NULL,'Dear Jones-Ivanov family',2,NULL,'Jones-Ivanov family',NULL,NULL,NULL,0,NULL,'Jones-Ivanov family',NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:21'),(73,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Prentice, Kacey','Kacey Prentice',NULL,NULL,NULL,'3',NULL,'Both','3335706608',NULL,'Sample Data','Kacey','','Prentice',NULL,NULL,NULL,NULL,1,NULL,'Dear Kacey',1,NULL,'Dear Kacey',1,NULL,'Kacey Prentice',NULL,1,'1978-08-23',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:22'),(74,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Olsen-Dimitrov, Felisha','Felisha Olsen-Dimitrov',NULL,NULL,NULL,'3',NULL,'Both','1158369527',NULL,'Sample Data','Felisha','','Olsen-Dimitrov',NULL,NULL,NULL,NULL,1,NULL,'Dear Felisha',1,NULL,'Dear Felisha',1,NULL,'Felisha Olsen-Dimitrov',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:22'),(75,'Individual',NULL,1,1,0,0,0,0,NULL,NULL,'Cooper, Sonny','Sonny Cooper II',NULL,NULL,NULL,NULL,NULL,'Both','465080565',NULL,'Sample Data','Sonny','','Cooper',NULL,3,NULL,NULL,1,NULL,'Dear Sonny',1,NULL,'Dear Sonny',1,NULL,'Sonny Cooper II',NULL,2,'1996-08-30',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:22'),(76,'Individual',NULL,1,1,0,0,1,0,NULL,NULL,'Jensen, Betty','Betty Jensen',NULL,NULL,NULL,'5',NULL,'Both','3826692336',NULL,'Sample Data','Betty','B','Jensen',NULL,NULL,NULL,NULL,1,NULL,'Dear Betty',1,NULL,'Dear Betty',1,NULL,'Betty Jensen',NULL,1,'1973-09-10',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:21'),(77,'Household',NULL,0,1,0,0,0,0,NULL,NULL,'Olsen-Dimitrov family','Olsen-Dimitrov family',NULL,NULL,NULL,NULL,NULL,'Both','3788262186',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Olsen-Dimitrov family',5,NULL,'Dear Olsen-Dimitrov family',2,NULL,'Olsen-Dimitrov family',NULL,NULL,NULL,0,NULL,'Olsen-Dimitrov family',NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:21'),(78,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jones-Ivanov, Santina','Santina Jones-Ivanov',NULL,NULL,NULL,NULL,NULL,'Both','2117997333',NULL,'Sample Data','Santina','','Jones-Ivanov',NULL,NULL,NULL,NULL,1,NULL,'Dear Santina',1,NULL,'Dear Santina',1,NULL,'Santina Jones-Ivanov',NULL,1,'2003-10-05',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:22'),(79,'Individual',NULL,1,1,0,0,0,0,NULL,NULL,'scarletterry-cooper17@spamalot.co.pl','scarletterry-cooper17@spamalot.co.pl',NULL,NULL,NULL,NULL,NULL,'Both','2778182292',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear scarletterry-cooper17@spamalot.co.pl',1,NULL,'Dear scarletterry-cooper17@spamalot.co.pl',1,NULL,'scarletterry-cooper17@spamalot.co.pl',NULL,NULL,NULL,0,NULL,NULL,NULL,'Cheraw Action School',NULL,NULL,199,0,'2018-05-21 20:27:20','2018-05-21 20:27:22'),(80,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Dimitrov, Allen','Allen Dimitrov',NULL,NULL,NULL,'5',NULL,'Both','4106661370',NULL,'Sample Data','Allen','O','Dimitrov',NULL,NULL,NULL,NULL,1,NULL,'Dear Allen',1,NULL,'Dear Allen',1,NULL,'Allen Dimitrov',NULL,NULL,'1946-10-22',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:20'),(81,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Terry, Lashawnda','Lashawnda Terry',NULL,NULL,NULL,NULL,NULL,'Both','485287796',NULL,'Sample Data','Lashawnda','','Terry',NULL,NULL,NULL,NULL,1,NULL,'Dear Lashawnda',1,NULL,'Dear Lashawnda',1,NULL,'Lashawnda Terry',NULL,1,'1991-09-23',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:21'),(82,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jensen, Lashawnda','Lashawnda Jensen',NULL,NULL,NULL,'4',NULL,'Both','4222472250',NULL,'Sample Data','Lashawnda','','Jensen',NULL,NULL,NULL,NULL,1,NULL,'Dear Lashawnda',1,NULL,'Dear Lashawnda',1,NULL,'Lashawnda Jensen',NULL,1,'2016-04-11',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:21'),(83,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'McReynolds family','McReynolds family',NULL,NULL,NULL,'3',NULL,'Both','3032680972',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear McReynolds family',5,NULL,'Dear McReynolds family',2,NULL,'McReynolds family',NULL,NULL,NULL,0,NULL,'McReynolds family',NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:21'),(84,'Organization',NULL,0,0,0,0,1,0,NULL,NULL,'Creative Music Network','Creative Music Network',NULL,NULL,NULL,'4',NULL,'Both','1844974969',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Creative Music Network',NULL,NULL,NULL,0,NULL,NULL,97,'Creative Music Network',NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:21'),(85,'Household',NULL,1,0,0,0,0,0,NULL,NULL,'Terry family','Terry family',NULL,NULL,NULL,NULL,NULL,'Both','558108751',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Terry family',5,NULL,'Dear Terry family',2,NULL,'Terry family',NULL,NULL,NULL,0,NULL,'Terry family',NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:21'),(86,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'nsamson@notmail.info','nsamson@notmail.info',NULL,NULL,NULL,'2',NULL,'Both','671400119',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear nsamson@notmail.info',1,NULL,'Dear nsamson@notmail.info',1,NULL,'nsamson@notmail.info',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:22'),(87,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'McReynolds, Daren','Daren McReynolds',NULL,NULL,NULL,NULL,NULL,'Both','2885149914',NULL,'Sample Data','Daren','','McReynolds',NULL,NULL,NULL,NULL,1,NULL,'Dear Daren',1,NULL,'Dear Daren',1,NULL,'Daren McReynolds',NULL,2,'1951-06-27',1,'2017-12-28',NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:21'),(88,'Organization',NULL,1,0,0,0,1,0,NULL,NULL,'Indiana Development Alliance','Indiana Development Alliance',NULL,NULL,NULL,'2',NULL,'Both','1763281867',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Indiana Development Alliance',NULL,NULL,NULL,0,NULL,NULL,108,'Indiana Development Alliance',NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:21'),(89,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Olsen-McReynolds family','Olsen-McReynolds family',NULL,NULL,NULL,NULL,NULL,'Both','3711187484',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Olsen-McReynolds family',5,NULL,'Dear Olsen-McReynolds family',2,NULL,'Olsen-McReynolds family',NULL,NULL,NULL,0,NULL,'Olsen-McReynolds family',NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:21'),(90,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Dimitrov family','Dimitrov family',NULL,NULL,NULL,NULL,NULL,'Both','3351288571',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Dimitrov family',5,NULL,'Dear Dimitrov family',2,NULL,'Dimitrov family',NULL,NULL,NULL,0,NULL,'Dimitrov family',NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:21'),(91,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'McReynolds, Winford','Dr. Winford McReynolds II',NULL,NULL,NULL,'2',NULL,'Both','3334322093',NULL,'Sample Data','Winford','','McReynolds',4,3,NULL,NULL,1,NULL,'Dear Winford',1,NULL,'Dear Winford',1,NULL,'Dr. Winford McReynolds II',NULL,2,'1932-12-19',1,'2018-01-27',NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:21'),(92,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Wilson, Valene','Valene Wilson',NULL,NULL,NULL,'5',NULL,'Both','40219008',NULL,'Sample Data','Valene','V','Wilson',NULL,NULL,NULL,NULL,1,NULL,'Dear Valene',1,NULL,'Dear Valene',1,NULL,'Valene Wilson',NULL,1,'1958-06-07',1,'2018-03-22',NULL,NULL,'Iola Family Fellowship',NULL,NULL,195,0,'2018-05-21 20:27:20','2018-05-21 20:27:21'),(93,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Müller, Josefa','Josefa Müller',NULL,NULL,NULL,'1',NULL,'Both','375937993',NULL,'Sample Data','Josefa','','Müller',NULL,NULL,NULL,NULL,1,NULL,'Dear Josefa',1,NULL,'Dear Josefa',1,NULL,'Josefa Müller',NULL,NULL,NULL,1,'2018-03-16',NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:21'),(94,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Terrell, Bryon','Dr. Bryon Terrell',NULL,NULL,NULL,NULL,NULL,'Both','1742337325',NULL,'Sample Data','Bryon','','Terrell',4,NULL,NULL,NULL,1,NULL,'Dear Bryon',1,NULL,'Dear Bryon',1,NULL,'Dr. Bryon Terrell',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:20'),(95,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Jensen, Sanford','Dr. Sanford Jensen',NULL,NULL,NULL,'4',NULL,'Both','1526792308',NULL,'Sample Data','Sanford','H','Jensen',4,NULL,NULL,NULL,1,NULL,'Dear Sanford',1,NULL,'Dear Sanford',1,NULL,'Dr. Sanford Jensen',NULL,2,'1965-03-09',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:20'),(96,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'McReynolds, Angelika','Ms. Angelika McReynolds',NULL,NULL,NULL,'2',NULL,'Both','3667136043',NULL,'Sample Data','Angelika','','McReynolds',2,NULL,NULL,NULL,1,NULL,'Dear Angelika',1,NULL,'Dear Angelika',1,NULL,'Ms. Angelika McReynolds',NULL,NULL,NULL,1,'2017-08-03',NULL,NULL,'Local Agriculture Academy',NULL,NULL,33,0,'2018-05-21 20:27:20','2018-05-21 20:27:21'),(97,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Roberts, Margaret','Margaret Roberts',NULL,NULL,NULL,'1',NULL,'Both','649188694',NULL,'Sample Data','Margaret','F','Roberts',NULL,NULL,NULL,NULL,1,NULL,'Dear Margaret',1,NULL,'Dear Margaret',1,NULL,'Margaret Roberts',NULL,1,'1992-09-11',0,NULL,NULL,NULL,'Creative Music Network',NULL,NULL,84,0,'2018-05-21 20:27:20','2018-05-21 20:27:22'),(98,'Individual',NULL,0,1,0,0,1,0,NULL,NULL,'olsenr@sample.com','olsenr@sample.com',NULL,NULL,NULL,'4',NULL,'Both','327578634',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear olsenr@sample.com',1,NULL,'Dear olsenr@sample.com',1,NULL,'olsenr@sample.com',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:21'),(99,'Organization',NULL,0,1,0,0,0,0,NULL,NULL,'Wappingers Falls Development Collective','Wappingers Falls Development Collective',NULL,NULL,NULL,'1',NULL,'Both','601907617',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Wappingers Falls Development Collective',NULL,NULL,NULL,0,NULL,NULL,172,'Wappingers Falls Development Collective',NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:21'),(100,'Organization',NULL,0,1,0,0,0,0,NULL,NULL,'Leburn Development Alliance','Leburn Development Alliance',NULL,NULL,NULL,'1',NULL,'Both','3323757220',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Leburn Development Alliance',NULL,NULL,NULL,0,NULL,NULL,NULL,'Leburn Development Alliance',NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:21'),(101,'Organization',NULL,0,0,0,0,1,0,NULL,NULL,'Lincoln Agriculture Solutions','Lincoln Agriculture Solutions',NULL,NULL,NULL,'4',NULL,'Both','1245945422',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Lincoln Agriculture Solutions',NULL,NULL,NULL,0,NULL,NULL,43,'Lincoln Agriculture Solutions',NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:21'),(102,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Cooper, Jacob','Jacob Cooper III',NULL,NULL,NULL,'1',NULL,'Both','221346251',NULL,'Sample Data','Jacob','M','Cooper',NULL,4,NULL,NULL,1,NULL,'Dear Jacob',1,NULL,'Dear Jacob',1,NULL,'Jacob Cooper III',NULL,2,'1975-10-26',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:22'),(103,'Organization',NULL,0,1,0,0,0,0,NULL,NULL,'Creative Family Alliance','Creative Family Alliance',NULL,NULL,NULL,'1',NULL,'Both','2275003158',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Creative Family Alliance',NULL,NULL,NULL,0,NULL,NULL,196,'Creative Family Alliance',NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:21'),(104,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Barkley family','Barkley family',NULL,NULL,NULL,'1',NULL,'Both','2888062109',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Barkley family',5,NULL,'Dear Barkley family',2,NULL,'Barkley family',NULL,NULL,NULL,0,NULL,'Barkley family',NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:21'),(105,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Prentice, Eleonor','Eleonor Prentice',NULL,NULL,NULL,NULL,NULL,'Both','76143917',NULL,'Sample Data','Eleonor','','Prentice',NULL,NULL,NULL,NULL,1,NULL,'Dear Eleonor',1,NULL,'Dear Eleonor',1,NULL,'Eleonor Prentice',NULL,1,'2007-03-11',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:22'),(106,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jones-Prentice, Jina','Jina Jones-Prentice',NULL,NULL,NULL,NULL,NULL,'Both','3125836382',NULL,'Sample Data','Jina','H','Jones-Prentice',NULL,NULL,NULL,NULL,1,NULL,'Dear Jina',1,NULL,'Dear Jina',1,NULL,'Jina Jones-Prentice',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:22'),(107,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Ivanov, Craig','Craig Ivanov',NULL,NULL,NULL,NULL,NULL,'Both','3064122334',NULL,'Sample Data','Craig','','Ivanov',NULL,NULL,NULL,NULL,1,NULL,'Dear Craig',1,NULL,'Dear Craig',1,NULL,'Craig Ivanov',NULL,2,'1950-06-01',1,'2017-06-07',NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:20'),(108,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Jensen, Junko','Junko Jensen',NULL,NULL,NULL,'5',NULL,'Both','2889888199',NULL,'Sample Data','Junko','','Jensen',NULL,NULL,NULL,NULL,1,NULL,'Dear Junko',1,NULL,'Dear Junko',1,NULL,'Junko Jensen',NULL,1,'1934-07-14',1,NULL,NULL,NULL,'Indiana Development Alliance',NULL,NULL,88,0,'2018-05-21 20:27:20','2018-05-21 20:27:21'),(109,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Parker, Shauna','Mrs. Shauna Parker',NULL,NULL,NULL,NULL,NULL,'Both','631094939',NULL,'Sample Data','Shauna','','Parker',1,NULL,NULL,NULL,1,NULL,'Dear Shauna',1,NULL,'Dear Shauna',1,NULL,'Mrs. Shauna Parker',NULL,NULL,'1936-12-19',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:20'),(110,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Wattson, Russell','Russell Wattson',NULL,NULL,NULL,NULL,NULL,'Both','2184718409',NULL,'Sample Data','Russell','X','Wattson',NULL,NULL,NULL,NULL,1,NULL,'Dear Russell',1,NULL,'Dear Russell',1,NULL,'Russell Wattson',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:20'),(111,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Barkley, Brent','Brent Barkley',NULL,NULL,NULL,NULL,NULL,'Both','2030248670',NULL,'Sample Data','Brent','J','Barkley',NULL,NULL,NULL,NULL,1,NULL,'Dear Brent',1,NULL,'Dear Brent',1,NULL,'Brent Barkley',NULL,2,'1958-12-31',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:21'),(112,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Bachman-Dimitrov, Merrie','Merrie Bachman-Dimitrov',NULL,NULL,NULL,'1',NULL,'Both','3624506412',NULL,'Sample Data','Merrie','','Bachman-Dimitrov',NULL,NULL,NULL,NULL,1,NULL,'Dear Merrie',1,NULL,'Dear Merrie',1,NULL,'Merrie Bachman-Dimitrov',NULL,1,'1973-03-24',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:22'),(113,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Díaz, Brittney','Brittney Díaz',NULL,NULL,NULL,NULL,NULL,'Both','2710372052',NULL,'Sample Data','Brittney','','Díaz',NULL,NULL,NULL,NULL,1,NULL,'Dear Brittney',1,NULL,'Dear Brittney',1,NULL,'Brittney Díaz',NULL,1,'1997-05-17',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:20'),(114,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'beulan91@mymail.com','beulan91@mymail.com',NULL,NULL,NULL,'1',NULL,'Both','465980182',NULL,'Sample Data',NULL,NULL,NULL,2,NULL,NULL,NULL,1,NULL,'Dear beulan91@mymail.com',1,NULL,'Dear beulan91@mymail.com',1,NULL,'beulan91@mymail.com',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:21'),(115,'Individual',NULL,1,0,0,0,1,0,NULL,NULL,'Wilson, Elina','Elina Wilson',NULL,NULL,NULL,'2',NULL,'Both','2816657854',NULL,'Sample Data','Elina','','Wilson',NULL,NULL,NULL,NULL,1,NULL,'Dear Elina',1,NULL,'Dear Elina',1,NULL,'Elina Wilson',NULL,1,'1961-06-15',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:20'),(116,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Prentice family','Prentice family',NULL,NULL,NULL,NULL,NULL,'Both','3313623671',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Prentice family',5,NULL,'Dear Prentice family',2,NULL,'Prentice family',NULL,NULL,NULL,0,NULL,'Prentice family',NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:21'),(117,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'carlosl81@lol.info','carlosl81@lol.info',NULL,NULL,NULL,'4',NULL,'Both','3951906812',NULL,'Sample Data',NULL,NULL,NULL,NULL,4,NULL,NULL,1,NULL,'Dear carlosl81@lol.info',1,NULL,'Dear carlosl81@lol.info',1,NULL,'carlosl81@lol.info',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:21'),(118,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'McReynolds, Juliann','Dr. Juliann McReynolds',NULL,NULL,NULL,NULL,NULL,'Both','2587841084',NULL,'Sample Data','Juliann','D','McReynolds',4,NULL,NULL,NULL,1,NULL,'Dear Juliann',1,NULL,'Dear Juliann',1,NULL,'Dr. Juliann McReynolds',NULL,1,'1960-09-14',0,NULL,NULL,NULL,'McKenney Software Systems',NULL,NULL,169,0,'2018-05-21 20:27:20','2018-05-21 20:27:21'),(119,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Ivanov, Scott','Scott Ivanov III',NULL,NULL,NULL,'3',NULL,'Both','1336634478',NULL,'Sample Data','Scott','','Ivanov',NULL,4,NULL,NULL,1,NULL,'Dear Scott',1,NULL,'Dear Scott',1,NULL,'Scott Ivanov III',NULL,2,'1950-02-13',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:22'),(120,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'nielsen.andrew@fakemail.com','nielsen.andrew@fakemail.com',NULL,NULL,NULL,'1',NULL,'Both','2165923278',NULL,'Sample Data',NULL,NULL,NULL,NULL,4,NULL,NULL,1,NULL,'Dear nielsen.andrew@fakemail.com',1,NULL,'Dear nielsen.andrew@fakemail.com',1,NULL,'nielsen.andrew@fakemail.com',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:21'),(121,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Ivanov, Jerome','Jerome Ivanov III',NULL,NULL,NULL,NULL,NULL,'Both','3339080017',NULL,'Sample Data','Jerome','','Ivanov',NULL,4,NULL,NULL,1,NULL,'Dear Jerome',1,NULL,'Dear Jerome',1,NULL,'Jerome Ivanov III',NULL,2,'1960-07-25',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:20'),(122,'Individual',NULL,1,1,0,0,0,0,NULL,NULL,'Bachman-Wattson, Ashlie','Ashlie Bachman-Wattson',NULL,NULL,NULL,NULL,NULL,'Both','3121326119',NULL,'Sample Data','Ashlie','E','Bachman-Wattson',NULL,NULL,NULL,NULL,1,NULL,'Dear Ashlie',1,NULL,'Dear Ashlie',1,NULL,'Ashlie Bachman-Wattson',NULL,NULL,'2009-03-08',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:22'),(123,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Adams, Betty','Mrs. Betty Adams',NULL,NULL,NULL,'1',NULL,'Both','2445322404',NULL,'Sample Data','Betty','O','Adams',1,NULL,NULL,NULL,1,NULL,'Dear Betty',1,NULL,'Dear Betty',1,NULL,'Mrs. Betty Adams',NULL,1,NULL,0,NULL,NULL,NULL,'Wisconsin Action Fund',NULL,NULL,178,0,'2018-05-21 20:27:20','2018-05-21 20:27:21'),(124,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'rodrigoj@example.co.uk','rodrigoj@example.co.uk',NULL,NULL,NULL,NULL,NULL,'Both','2690030587',NULL,'Sample Data',NULL,NULL,NULL,4,NULL,NULL,NULL,1,NULL,'Dear rodrigoj@example.co.uk',1,NULL,'Dear rodrigoj@example.co.uk',1,NULL,'rodrigoj@example.co.uk',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:21'),(125,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Zope, Erik','Erik Zope Jr.',NULL,NULL,NULL,'5',NULL,'Both','2683786262',NULL,'Sample Data','Erik','K','Zope',NULL,1,NULL,NULL,1,NULL,'Dear Erik',1,NULL,'Dear Erik',1,NULL,'Erik Zope Jr.',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:20'),(126,'Individual',NULL,0,1,0,0,1,0,NULL,NULL,'Yadav, Jackson','Mr. Jackson Yadav Sr.',NULL,NULL,NULL,'3',NULL,'Both','1490538521',NULL,'Sample Data','Jackson','X','Yadav',3,2,NULL,NULL,1,NULL,'Dear Jackson',1,NULL,'Dear Jackson',1,NULL,'Mr. Jackson Yadav Sr.',NULL,2,'1994-06-25',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:21'),(127,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'joness@testmail.net','joness@testmail.net',NULL,NULL,NULL,'5',NULL,'Both','2129683008',NULL,'Sample Data',NULL,NULL,NULL,3,2,NULL,NULL,1,NULL,'Dear joness@testmail.net',1,NULL,'Dear joness@testmail.net',1,NULL,'joness@testmail.net',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:20'),(128,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Zope, Maxwell','Mr. Maxwell Zope Sr.',NULL,NULL,NULL,'5',NULL,'Both','676762100',NULL,'Sample Data','Maxwell','','Zope',3,2,NULL,NULL,1,NULL,'Dear Maxwell',1,NULL,'Dear Maxwell',1,NULL,'Mr. Maxwell Zope Sr.',NULL,2,'1985-04-08',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:21'),(129,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jameson, Tanya','Mrs. Tanya Jameson',NULL,NULL,NULL,NULL,NULL,'Both','2589071461',NULL,'Sample Data','Tanya','','Jameson',1,NULL,NULL,NULL,1,NULL,'Dear Tanya',1,NULL,'Dear Tanya',1,NULL,'Mrs. Tanya Jameson',NULL,1,'1955-03-12',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:21'),(130,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Samson, Sherman','Sherman Samson Sr.',NULL,NULL,NULL,'1',NULL,'Both','583200758',NULL,'Sample Data','Sherman','','Samson',NULL,2,NULL,NULL,1,NULL,'Dear Sherman',1,NULL,'Dear Sherman',1,NULL,'Sherman Samson Sr.',NULL,2,'1963-01-24',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:22'),(131,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'blackwellm@airmail.com','blackwellm@airmail.com',NULL,NULL,NULL,'5',NULL,'Both','2076156167',NULL,'Sample Data',NULL,NULL,NULL,4,2,NULL,NULL,1,NULL,'Dear blackwellm@airmail.com',1,NULL,'Dear blackwellm@airmail.com',1,NULL,'blackwellm@airmail.com',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:21'),(132,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Terry, Jerome','Jerome Terry',NULL,NULL,NULL,'2',NULL,'Both','2399613153',NULL,'Sample Data','Jerome','V','Terry',NULL,NULL,NULL,NULL,1,NULL,'Dear Jerome',1,NULL,'Dear Jerome',1,NULL,'Jerome Terry',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:21'),(133,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Patel, Billy','Billy Patel',NULL,NULL,NULL,'3',NULL,'Both','1914092399',NULL,'Sample Data','Billy','X','Patel',NULL,NULL,NULL,NULL,1,NULL,'Dear Billy',1,NULL,'Dear Billy',1,NULL,'Billy Patel',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:20'),(134,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Bachman, Billy','Billy Bachman II',NULL,NULL,NULL,'3',NULL,'Both','2000818786',NULL,'Sample Data','Billy','','Bachman',NULL,3,NULL,NULL,1,NULL,'Dear Billy',1,NULL,'Dear Billy',1,NULL,'Billy Bachman II',NULL,NULL,'1973-07-31',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:22'),(135,'Organization',NULL,1,0,0,0,0,0,NULL,NULL,'Urban Wellness Solutions','Urban Wellness Solutions',NULL,NULL,NULL,'5',NULL,'Both','1405891559',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Urban Wellness Solutions',NULL,NULL,NULL,0,NULL,NULL,149,'Urban Wellness Solutions',NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:21'),(136,'Individual',NULL,0,1,0,0,1,0,NULL,NULL,'Wattson, Allan','Allan Wattson III',NULL,NULL,NULL,'2',NULL,'Both','4271442365',NULL,'Sample Data','Allan','','Wattson',NULL,4,NULL,NULL,1,NULL,'Dear Allan',1,NULL,'Dear Allan',1,NULL,'Allan Wattson III',NULL,2,'1962-10-20',1,'2018-04-10',NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:21'),(137,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Nielsen, Maxwell','Maxwell Nielsen Sr.',NULL,NULL,NULL,NULL,NULL,'Both','1889021515',NULL,'Sample Data','Maxwell','','Nielsen',NULL,2,NULL,NULL,1,NULL,'Dear Maxwell',1,NULL,'Dear Maxwell',1,NULL,'Maxwell Nielsen Sr.',NULL,NULL,'2005-06-29',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:21'),(138,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'bryond52@example.net','bryond52@example.net',NULL,NULL,NULL,'3',NULL,'Both','2163925000',NULL,'Sample Data',NULL,NULL,NULL,3,NULL,NULL,NULL,1,NULL,'Dear bryond52@example.net',1,NULL,'Dear bryond52@example.net',1,NULL,'bryond52@example.net',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:22'),(139,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Jensen, Lincoln','Lincoln Jensen III',NULL,NULL,NULL,'2',NULL,'Both','630081741',NULL,'Sample Data','Lincoln','','Jensen',NULL,4,NULL,NULL,1,NULL,'Dear Lincoln',1,NULL,'Dear Lincoln',1,NULL,'Lincoln Jensen III',NULL,NULL,'1964-10-09',1,'2017-10-03',NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:21'),(140,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Łąchowski-Roberts, Lashawnda','Lashawnda Łąchowski-Roberts',NULL,NULL,NULL,NULL,NULL,'Both','2329628770',NULL,'Sample Data','Lashawnda','','Łąchowski-Roberts',NULL,NULL,NULL,NULL,1,NULL,'Dear Lashawnda',1,NULL,'Dear Lashawnda',1,NULL,'Lashawnda Łąchowski-Roberts',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:22'),(141,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Samson, Herminia','Mrs. Herminia Samson',NULL,NULL,NULL,'1',NULL,'Both','3411088357',NULL,'Sample Data','Herminia','','Samson',1,NULL,NULL,NULL,1,NULL,'Dear Herminia',1,NULL,'Dear Herminia',1,NULL,'Mrs. Herminia Samson',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:22'),(142,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Barkley, Rosario','Rosario Barkley',NULL,NULL,NULL,NULL,NULL,'Both','2313743843',NULL,'Sample Data','Rosario','R','Barkley',NULL,NULL,NULL,NULL,1,NULL,'Dear Rosario',1,NULL,'Dear Rosario',1,NULL,'Rosario Barkley',NULL,NULL,'2002-04-14',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:21'),(143,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Grant, Justina','Justina Grant',NULL,NULL,NULL,NULL,NULL,'Both','2606086842',NULL,'Sample Data','Justina','X','Grant',NULL,NULL,NULL,NULL,1,NULL,'Dear Justina',1,NULL,'Dear Justina',1,NULL,'Justina Grant',NULL,1,'1941-08-01',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:21'),(144,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Jones-Ivanov, Teddy','Teddy Jones-Ivanov III',NULL,NULL,NULL,NULL,NULL,'Both','141901177',NULL,'Sample Data','Teddy','E','Jones-Ivanov',NULL,4,NULL,NULL,1,NULL,'Dear Teddy',1,NULL,'Dear Teddy',1,NULL,'Teddy Jones-Ivanov III',NULL,2,'2008-03-31',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:22'),(145,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'smith.brittney44@sample.co.in','smith.brittney44@sample.co.in',NULL,NULL,NULL,NULL,NULL,'Both','723077540',NULL,'Sample Data',NULL,NULL,NULL,2,NULL,NULL,NULL,1,NULL,'Dear smith.brittney44@sample.co.in',1,NULL,'Dear smith.brittney44@sample.co.in',1,NULL,'smith.brittney44@sample.co.in',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:21'),(146,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Olsen, Jina','Jina Olsen',NULL,NULL,NULL,NULL,NULL,'Both','2894818068',NULL,'Sample Data','Jina','','Olsen',NULL,NULL,NULL,NULL,1,NULL,'Dear Jina',1,NULL,'Dear Jina',1,NULL,'Jina Olsen',NULL,NULL,'1997-08-11',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:20'),(147,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Adams, Andrew','Andrew Adams Sr.',NULL,NULL,NULL,'2',NULL,'Both','2398001540',NULL,'Sample Data','Andrew','Y','Adams',NULL,2,NULL,NULL,1,NULL,'Dear Andrew',1,NULL,'Dear Andrew',1,NULL,'Andrew Adams Sr.',NULL,2,'2002-01-07',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:21'),(148,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Jacobs, Elbert','Elbert Jacobs',NULL,NULL,NULL,NULL,NULL,'Both','3874322217',NULL,'Sample Data','Elbert','','Jacobs',NULL,NULL,NULL,NULL,1,NULL,'Dear Elbert',1,NULL,'Dear Elbert',1,NULL,'Elbert Jacobs',NULL,NULL,'1948-04-20',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:20'),(149,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'adams.maria40@testmail.net','adams.maria40@testmail.net',NULL,NULL,NULL,NULL,NULL,'Both','1918668900',NULL,'Sample Data',NULL,NULL,NULL,NULL,3,NULL,NULL,1,NULL,'Dear adams.maria40@testmail.net',1,NULL,'Dear adams.maria40@testmail.net',1,NULL,'adams.maria40@testmail.net',NULL,NULL,NULL,0,NULL,NULL,NULL,'Urban Wellness Solutions',NULL,NULL,135,0,'2018-05-21 20:27:20','2018-05-21 20:27:21'),(150,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Zope, Scott','Dr. Scott Zope',NULL,NULL,NULL,NULL,NULL,'Both','3220387929',NULL,'Sample Data','Scott','','Zope',4,NULL,NULL,NULL,1,NULL,'Dear Scott',1,NULL,'Dear Scott',1,NULL,'Dr. Scott Zope',NULL,NULL,'1942-11-08',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:21'),(151,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Bath Action Collective','Bath Action Collective',NULL,NULL,NULL,NULL,NULL,'Both','1484138034',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Bath Action Collective',NULL,NULL,NULL,0,NULL,NULL,44,'Bath Action Collective',NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:21'),(152,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Lee, Ivey','Ivey Lee',NULL,NULL,NULL,'4',NULL,'Both','2847315526',NULL,'Sample Data','Ivey','','Lee',NULL,NULL,NULL,NULL,1,NULL,'Dear Ivey',1,NULL,'Dear Ivey',1,NULL,'Ivey Lee',NULL,NULL,'2007-04-09',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:20'),(153,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Dimitrov, Brittney','Mrs. Brittney Dimitrov',NULL,NULL,NULL,NULL,NULL,'Both','3592503963',NULL,'Sample Data','Brittney','','Dimitrov',1,NULL,NULL,NULL,1,NULL,'Dear Brittney',1,NULL,'Dear Brittney',1,NULL,'Mrs. Brittney Dimitrov',NULL,1,'1991-02-19',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:22'),(154,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Wattson, Margaret','Margaret Wattson',NULL,NULL,NULL,NULL,NULL,'Both','2865119341',NULL,'Sample Data','Margaret','','Wattson',NULL,NULL,NULL,NULL,1,NULL,'Dear Margaret',1,NULL,'Dear Margaret',1,NULL,'Margaret Wattson',NULL,1,'1981-02-15',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:20'),(155,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Patel, Santina','Mrs. Santina Patel',NULL,NULL,NULL,NULL,NULL,'Both','3765825557',NULL,'Sample Data','Santina','W','Patel',1,NULL,NULL,NULL,1,NULL,'Dear Santina',1,NULL,'Dear Santina',1,NULL,'Mrs. Santina Patel',NULL,1,'1983-08-05',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:20'),(156,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Terry, Jed','Jed Terry',NULL,NULL,NULL,'1',NULL,'Both','2004213447',NULL,'Sample Data','Jed','','Terry',NULL,NULL,NULL,NULL,1,NULL,'Dear Jed',1,NULL,'Dear Jed',1,NULL,'Jed Terry',NULL,2,'1994-02-25',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:21'),(157,'Household',NULL,1,0,0,0,0,0,NULL,NULL,'Cooper family','Cooper family',NULL,NULL,NULL,'4',NULL,'Both','1133003930',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Cooper family',5,NULL,'Dear Cooper family',2,NULL,'Cooper family',NULL,NULL,NULL,0,NULL,'Cooper family',NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:21'),(158,'Individual',NULL,0,1,0,0,1,0,NULL,NULL,'Wattson, Angelika','Dr. Angelika Wattson',NULL,NULL,NULL,'2',NULL,'Both','868071594',NULL,'Sample Data','Angelika','','Wattson',4,NULL,NULL,NULL,1,NULL,'Dear Angelika',1,NULL,'Dear Angelika',1,NULL,'Dr. Angelika Wattson',NULL,1,'1986-12-02',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:22'),(159,'Organization',NULL,0,1,0,0,0,0,NULL,NULL,'Rural Literacy Fund','Rural Literacy Fund',NULL,NULL,NULL,'2',NULL,'Both','332499923',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Rural Literacy Fund',NULL,NULL,NULL,0,NULL,NULL,40,'Rural Literacy Fund',NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:21'),(160,'Individual',NULL,0,1,0,0,1,0,NULL,NULL,'Deforest, Shad','Shad Deforest',NULL,NULL,NULL,NULL,NULL,'Both','1483415369',NULL,'Sample Data','Shad','','Deforest',NULL,NULL,NULL,NULL,1,NULL,'Dear Shad',1,NULL,'Dear Shad',1,NULL,'Shad Deforest',NULL,2,'2006-02-06',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:20'),(161,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Wilson, Kenny','Kenny Wilson',NULL,NULL,NULL,NULL,NULL,'Both','1945745030',NULL,'Sample Data','Kenny','','Wilson',NULL,NULL,NULL,NULL,1,NULL,'Dear Kenny',1,NULL,'Dear Kenny',1,NULL,'Kenny Wilson',NULL,2,'1936-03-15',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:20'),(162,'Organization',NULL,0,0,0,0,1,0,NULL,NULL,'United Wellness Alliance','United Wellness Alliance',NULL,NULL,NULL,'2',NULL,'Both','831557662',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'United Wellness Alliance',NULL,NULL,NULL,0,NULL,NULL,64,'United Wellness Alliance',NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:21'),(163,'Individual',NULL,1,0,0,0,1,0,NULL,NULL,'Cruz, Barry','Dr. Barry Cruz Jr.',NULL,NULL,NULL,'1',NULL,'Both','2626171686',NULL,'Sample Data','Barry','K','Cruz',4,1,NULL,NULL,1,NULL,'Dear Barry',1,NULL,'Dear Barry',1,NULL,'Dr. Barry Cruz Jr.',NULL,2,'1966-07-14',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:22'),(164,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Prentice, Brzęczysław','Mr. Brzęczysław Prentice',NULL,NULL,NULL,'3',NULL,'Both','218953873',NULL,'Sample Data','Brzęczysław','Y','Prentice',3,NULL,NULL,NULL,1,NULL,'Dear Brzęczysław',1,NULL,'Dear Brzęczysław',1,NULL,'Mr. Brzęczysław Prentice',NULL,NULL,'1988-08-22',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:22'),(165,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Olsen, Kenny','Mr. Kenny Olsen III',NULL,NULL,NULL,'4',NULL,'Both','293860292',NULL,'Sample Data','Kenny','','Olsen',3,4,NULL,NULL,1,NULL,'Dear Kenny',1,NULL,'Dear Kenny',1,NULL,'Mr. Kenny Olsen III',NULL,NULL,'1968-05-29',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:22'),(166,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Müller, Bernadette','Mrs. Bernadette Müller',NULL,NULL,NULL,NULL,NULL,'Both','2804032609',NULL,'Sample Data','Bernadette','','Müller',1,NULL,NULL,NULL,1,NULL,'Dear Bernadette',1,NULL,'Dear Bernadette',1,NULL,'Mrs. Bernadette Müller',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:22'),(167,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Blackwell, Lou','Lou Blackwell Sr.',NULL,NULL,NULL,'1',NULL,'Both','2525168848',NULL,'Sample Data','Lou','','Blackwell',NULL,2,NULL,NULL,1,NULL,'Dear Lou',1,NULL,'Dear Lou',1,NULL,'Lou Blackwell Sr.',NULL,NULL,'2005-01-10',0,NULL,NULL,NULL,'Laddonia Food Center',NULL,NULL,189,0,'2018-05-21 20:27:20','2018-05-21 20:27:21'),(168,'Individual',NULL,1,0,0,0,1,0,NULL,NULL,'Yadav, Kandace','Dr. Kandace Yadav',NULL,NULL,NULL,'2',NULL,'Both','2056711888',NULL,'Sample Data','Kandace','X','Yadav',4,NULL,NULL,NULL,1,NULL,'Dear Kandace',1,NULL,'Dear Kandace',1,NULL,'Dr. Kandace Yadav',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:21'),(169,'Organization',NULL,0,1,0,0,0,0,NULL,NULL,'McKenney Software Systems','McKenney Software Systems',NULL,NULL,NULL,'4',NULL,'Both','7268008',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'McKenney Software Systems',NULL,NULL,NULL,0,NULL,NULL,118,'McKenney Software Systems',NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:21'),(170,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Adams, Kiara','Kiara Adams',NULL,NULL,NULL,'2',NULL,'Both','2312973094',NULL,'Sample Data','Kiara','B','Adams',NULL,NULL,NULL,NULL,1,NULL,'Dear Kiara',1,NULL,'Dear Kiara',1,NULL,'Kiara Adams',NULL,1,'1980-10-09',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:21'),(171,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Samuels, Justina','Dr. Justina Samuels',NULL,NULL,NULL,'1',NULL,'Both','1737971561',NULL,'Sample Data','Justina','F','Samuels',4,NULL,NULL,NULL,1,NULL,'Dear Justina',1,NULL,'Dear Justina',1,NULL,'Dr. Justina Samuels',NULL,NULL,'1962-07-23',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:21'),(172,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jensen, Santina','Mrs. Santina Jensen',NULL,NULL,NULL,NULL,NULL,'Both','864111104',NULL,'Sample Data','Santina','N','Jensen',1,NULL,NULL,NULL,1,NULL,'Dear Santina',1,NULL,'Dear Santina',1,NULL,'Mrs. Santina Jensen',NULL,1,'1991-07-11',0,NULL,NULL,NULL,'Wappingers Falls Development Collective',NULL,NULL,99,0,'2018-05-21 20:27:20','2018-05-21 20:27:21'),(173,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'robertsonr57@fakemail.net','robertsonr57@fakemail.net',NULL,NULL,NULL,'3',NULL,'Both','2725123450',NULL,'Sample Data',NULL,NULL,NULL,3,4,NULL,NULL,1,NULL,'Dear robertsonr57@fakemail.net',1,NULL,'Dear robertsonr57@fakemail.net',1,NULL,'robertsonr57@fakemail.net',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:20'),(174,'Household',NULL,0,0,0,0,1,0,NULL,NULL,'Terrell family','Terrell family',NULL,NULL,NULL,NULL,NULL,'Both','1136333121',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Terrell family',5,NULL,'Dear Terrell family',2,NULL,'Terrell family',NULL,NULL,NULL,0,NULL,'Terrell family',NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:21'),(175,'Household',NULL,0,1,0,0,0,0,NULL,NULL,'Roberts family','Roberts family',NULL,NULL,NULL,'2',NULL,'Both','2097305882',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Roberts family',5,NULL,'Dear Roberts family',2,NULL,'Roberts family',NULL,NULL,NULL,0,NULL,'Roberts family',NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:21'),(176,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Cruz, Brzęczysław','Dr. Brzęczysław Cruz',NULL,NULL,NULL,NULL,NULL,'Both','3367531143',NULL,'Sample Data','Brzęczysław','','Cruz',4,NULL,NULL,NULL,1,NULL,'Dear Brzęczysław',1,NULL,'Dear Brzęczysław',1,NULL,'Dr. Brzęczysław Cruz',NULL,NULL,'1962-06-03',1,'2017-06-29',NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:22'),(177,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Terry, Sanford','Sanford Terry',NULL,NULL,NULL,NULL,NULL,'Both','4170670568',NULL,'Sample Data','Sanford','T','Terry',NULL,NULL,NULL,NULL,1,NULL,'Dear Sanford',1,NULL,'Dear Sanford',1,NULL,'Sanford Terry',NULL,2,'1981-10-27',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:21'),(178,'Organization',NULL,0,1,0,0,0,0,NULL,NULL,'Wisconsin Action Fund','Wisconsin Action Fund',NULL,NULL,NULL,'5',NULL,'Both','2138669778',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Wisconsin Action Fund',NULL,NULL,NULL,0,NULL,NULL,123,'Wisconsin Action Fund',NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:21'),(179,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'cooper.omar@infomail.co.in','cooper.omar@infomail.co.in',NULL,NULL,NULL,NULL,NULL,'Both','3423538673',NULL,'Sample Data',NULL,NULL,NULL,NULL,2,NULL,NULL,1,NULL,'Dear cooper.omar@infomail.co.in',1,NULL,'Dear cooper.omar@infomail.co.in',1,NULL,'cooper.omar@infomail.co.in',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:22'),(180,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Adams, Justina','Justina Adams',NULL,NULL,NULL,'5',NULL,'Both','206304627',NULL,'Sample Data','Justina','O','Adams',NULL,NULL,NULL,NULL,1,NULL,'Dear Justina',1,NULL,'Dear Justina',1,NULL,'Justina Adams',NULL,1,'2008-11-17',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:21'),(181,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Prentice, Roland','Roland Prentice Jr.',NULL,NULL,NULL,'3',NULL,'Both','3836132137',NULL,'Sample Data','Roland','','Prentice',NULL,1,NULL,NULL,1,NULL,'Dear Roland',1,NULL,'Dear Roland',1,NULL,'Roland Prentice Jr.',NULL,2,'1999-11-19',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:20'),(182,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Terrell, Maxwell','Dr. Maxwell Terrell',NULL,NULL,NULL,NULL,NULL,'Both','4143618431',NULL,'Sample Data','Maxwell','','Terrell',4,NULL,NULL,NULL,1,NULL,'Dear Maxwell',1,NULL,'Dear Maxwell',1,NULL,'Dr. Maxwell Terrell',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:21'),(183,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Cooper family','Cooper family',NULL,NULL,NULL,'4',NULL,'Both','1133003930',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Cooper family',5,NULL,'Dear Cooper family',2,NULL,'Cooper family',NULL,NULL,NULL,0,NULL,'Cooper family',NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:21'),(184,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Cruz-Müller, Roland','Roland Cruz-Müller II',NULL,NULL,NULL,NULL,NULL,'Both','1702839677',NULL,'Sample Data','Roland','E','Cruz-Müller',NULL,3,NULL,NULL,1,NULL,'Dear Roland',1,NULL,'Dear Roland',1,NULL,'Roland Cruz-Müller II',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:22'),(185,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Jensen family','Jensen family',NULL,NULL,NULL,NULL,NULL,'Both','797435572',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Jensen family',5,NULL,'Dear Jensen family',2,NULL,'Jensen family',NULL,NULL,NULL,0,NULL,'Jensen family',NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:21'),(186,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Müller, Iris','Iris Müller',NULL,NULL,NULL,'3',NULL,'Both','1761286600',NULL,'Sample Data','Iris','','Müller',NULL,NULL,NULL,NULL,1,NULL,'Dear Iris',1,NULL,'Dear Iris',1,NULL,'Iris Müller',NULL,1,'1979-04-20',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:21'),(187,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'miguelm@fakemail.co.nz','miguelm@fakemail.co.nz',NULL,NULL,NULL,'2',NULL,'Both','2626544349',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear miguelm@fakemail.co.nz',1,NULL,'Dear miguelm@fakemail.co.nz',1,NULL,'miguelm@fakemail.co.nz',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:21'),(188,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Yadav, Bob','Bob Yadav Jr.',NULL,NULL,NULL,'1',NULL,'Both','3746305110',NULL,'Sample Data','Bob','','Yadav',NULL,1,NULL,NULL,1,NULL,'Dear Bob',1,NULL,'Dear Bob',1,NULL,'Bob Yadav Jr.',NULL,NULL,'1930-12-26',1,'2018-02-01',NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:21'),(189,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Laddonia Food Center','Laddonia Food Center',NULL,NULL,NULL,'1',NULL,'Both','3096147626',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Laddonia Food Center',NULL,NULL,NULL,0,NULL,NULL,167,'Laddonia Food Center',NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:21'),(190,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'nielsen.rodrigo@notmail.co.pl','nielsen.rodrigo@notmail.co.pl',NULL,NULL,NULL,NULL,NULL,'Both','2631591385',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear nielsen.rodrigo@notmail.co.pl',1,NULL,'Dear nielsen.rodrigo@notmail.co.pl',1,NULL,'nielsen.rodrigo@notmail.co.pl',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:20'),(191,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Smith, Heidi','Ms. Heidi Smith',NULL,NULL,NULL,'2',NULL,'Both','837834326',NULL,'Sample Data','Heidi','E','Smith',2,NULL,NULL,NULL,1,NULL,'Dear Heidi',1,NULL,'Dear Heidi',1,NULL,'Ms. Heidi Smith',NULL,NULL,NULL,1,'2018-05-09',NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:20'),(192,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Bachman-Wattson family','Bachman-Wattson family',NULL,NULL,NULL,'3',NULL,'Both','2804393033',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Bachman-Wattson family',5,NULL,'Dear Bachman-Wattson family',2,NULL,'Bachman-Wattson family',NULL,NULL,NULL,0,NULL,'Bachman-Wattson family',NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:21'),(193,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Yadav, Rebekah','Dr. Rebekah Yadav',NULL,NULL,NULL,NULL,NULL,'Both','790455382',NULL,'Sample Data','Rebekah','','Yadav',4,NULL,NULL,NULL,1,NULL,'Dear Rebekah',1,NULL,'Dear Rebekah',1,NULL,'Dr. Rebekah Yadav',NULL,NULL,'1988-10-16',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:21'),(194,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Yadav, Sonny','Sonny Yadav',NULL,NULL,NULL,'4',NULL,'Both','836709371',NULL,'Sample Data','Sonny','H','Yadav',NULL,NULL,NULL,NULL,1,NULL,'Dear Sonny',1,NULL,'Dear Sonny',1,NULL,'Sonny Yadav',NULL,NULL,'1972-05-28',1,'2017-09-09',NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:20'),(195,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Iola Family Fellowship','Iola Family Fellowship',NULL,NULL,NULL,'3',NULL,'Both','2212107064',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Iola Family Fellowship',NULL,NULL,NULL,0,NULL,NULL,92,'Iola Family Fellowship',NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:21'),(196,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Cruz, Elina','Elina Cruz',NULL,NULL,NULL,'5',NULL,'Both','967491185',NULL,'Sample Data','Elina','','Cruz',NULL,NULL,NULL,NULL,1,NULL,'Dear Elina',1,NULL,'Dear Elina',1,NULL,'Elina Cruz',NULL,1,NULL,0,NULL,NULL,NULL,'Creative Family Alliance',NULL,NULL,103,0,'2018-05-21 20:27:20','2018-05-21 20:27:22'),(197,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Cruz, Esta','Dr. Esta Cruz',NULL,NULL,NULL,'4',NULL,'Both','3738064484',NULL,'Sample Data','Esta','H','Cruz',4,NULL,NULL,NULL,1,NULL,'Dear Esta',1,NULL,'Dear Esta',1,NULL,'Dr. Esta Cruz',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:22'),(198,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jensen, Norris','Norris Jensen',NULL,NULL,NULL,'5',NULL,'Both','4026647106',NULL,'Sample Data','Norris','I','Jensen',NULL,NULL,NULL,NULL,1,NULL,'Dear Norris',1,NULL,'Dear Norris',1,NULL,'Norris Jensen',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:21'),(199,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Cheraw Action School','Cheraw Action School',NULL,NULL,NULL,'3',NULL,'Both','422114496',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Cheraw Action School',NULL,NULL,NULL,0,NULL,NULL,79,'Cheraw Action School',NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:21'),(200,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Łąchowski, Ray','Mr. Ray Łąchowski III',NULL,NULL,NULL,'3',NULL,'Both','1851411219',NULL,'Sample Data','Ray','L','Łąchowski',3,4,NULL,NULL,1,NULL,'Dear Ray',1,NULL,'Dear Ray',1,NULL,'Mr. Ray Łąchowski III',NULL,2,'1970-01-09',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:21'),(201,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'roberts.b.daren@example.org','roberts.b.daren@example.org',NULL,NULL,NULL,NULL,NULL,'Both','2213889769',NULL,'Sample Data',NULL,NULL,NULL,3,4,NULL,NULL,1,NULL,'Dear roberts.b.daren@example.org',1,NULL,'Dear roberts.b.daren@example.org',1,NULL,'roberts.b.daren@example.org',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-05-21 20:27:20','2018-05-21 20:27:22'); /*!40000 ALTER TABLE `civicrm_contact` ENABLE KEYS */; UNLOCK TABLES; @@ -228,7 +228,7 @@ UNLOCK TABLES; LOCK TABLES `civicrm_contribution` WRITE; /*!40000 ALTER TABLE `civicrm_contribution` DISABLE KEYS */; -INSERT INTO `civicrm_contribution` (`id`, `contact_id`, `financial_type_id`, `contribution_page_id`, `payment_instrument_id`, `receive_date`, `non_deductible_amount`, `total_amount`, `fee_amount`, `net_amount`, `trxn_id`, `invoice_id`, `invoice_number`, `currency`, `cancel_date`, `cancel_reason`, `receipt_date`, `thankyou_date`, `source`, `amount_level`, `contribution_recur_id`, `is_test`, `is_pay_later`, `contribution_status_id`, `address_id`, `check_number`, `campaign_id`, `creditnote_id`, `tax_amount`, `revenue_recognition_date`) VALUES (1,2,1,NULL,4,'2010-04-11 00:00:00',0.00,125.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Apr 2007 Mailer 1',NULL,NULL,0,0,1,NULL,'1041',NULL,NULL,NULL,NULL),(2,4,1,NULL,1,'2010-03-21 00:00:00',0.00,50.00,NULL,NULL,'P20901X1',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Online: Save the Penguins',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(3,6,1,NULL,4,'2010-04-29 00:00:00',0.00,25.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Apr 2007 Mailer 1',NULL,NULL,0,0,1,NULL,'2095',NULL,NULL,NULL,NULL),(4,8,1,NULL,4,'2010-04-11 00:00:00',0.00,50.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Apr 2007 Mailer 1',NULL,NULL,0,0,1,NULL,'10552',NULL,NULL,NULL,NULL),(5,16,1,NULL,4,'2010-04-15 00:00:00',0.00,500.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Apr 2007 Mailer 1',NULL,NULL,0,0,1,NULL,'509',NULL,NULL,NULL,NULL),(6,19,1,NULL,4,'2010-04-11 00:00:00',0.00,175.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Apr 2007 Mailer 1',NULL,NULL,0,0,1,NULL,'102',NULL,NULL,NULL,NULL),(7,82,1,NULL,1,'2010-03-27 00:00:00',0.00,50.00,NULL,NULL,'P20193L2',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Online: Save the Penguins',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(8,92,1,NULL,1,'2010-03-08 00:00:00',0.00,10.00,NULL,NULL,'P40232Y3',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Online: Help CiviCRM',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(9,34,1,NULL,1,'2010-04-22 00:00:00',0.00,250.00,NULL,NULL,'P20193L6',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Online: Help CiviCRM',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(10,71,1,NULL,1,'2009-07-01 11:53:50',0.00,500.00,NULL,NULL,'PL71',NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(11,43,1,NULL,1,'2009-07-01 12:55:41',0.00,200.00,NULL,NULL,'PL43II',NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(12,32,1,NULL,1,'2009-10-01 11:53:50',0.00,200.00,NULL,NULL,'PL32I',NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(13,32,1,NULL,1,'2009-12-01 12:55:41',0.00,200.00,NULL,NULL,'PL32II',NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(14,173,2,NULL,1,'2018-05-19 15:31:51',0.00,100.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(15,187,2,NULL,1,'2018-05-19 15:31:51',0.00,100.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(16,118,2,NULL,1,'2018-05-19 15:31:51',0.00,100.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(17,162,2,NULL,1,'2018-05-19 15:31:51',0.00,100.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(18,195,2,NULL,1,'2018-05-19 15:31:51',0.00,100.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(19,10,2,NULL,1,'2018-05-19 15:31:51',0.00,100.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(20,166,2,NULL,1,'2018-05-19 15:31:51',0.00,100.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(21,31,2,NULL,1,'2018-05-19 15:31:51',0.00,100.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(22,128,2,NULL,1,'2018-05-19 15:31:51',0.00,100.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(23,123,2,NULL,1,'2018-05-19 15:31:51',0.00,100.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(24,106,2,NULL,1,'2018-05-19 15:31:51',0.00,100.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(25,159,2,NULL,1,'2018-05-19 15:31:51',0.00,100.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(26,78,2,NULL,1,'2018-05-19 15:31:51',0.00,100.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(27,53,2,NULL,1,'2018-05-19 15:31:51',0.00,100.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(28,196,2,NULL,1,'2018-05-19 15:31:51',0.00,100.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(29,105,2,NULL,1,'2018-05-19 15:31:51',0.00,100.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(30,14,2,NULL,1,'2018-05-19 15:31:51',0.00,100.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(31,185,2,NULL,1,'2018-05-19 15:31:51',0.00,50.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(32,66,2,NULL,1,'2018-05-19 15:31:51',0.00,50.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(33,85,2,NULL,1,'2018-05-19 15:31:51',0.00,50.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(34,16,2,NULL,1,'2018-05-19 15:31:51',0.00,50.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(35,59,2,NULL,1,'2018-05-19 15:31:51',0.00,50.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(36,57,2,NULL,1,'2018-05-19 15:31:51',0.00,50.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(37,179,2,NULL,1,'2018-05-19 15:31:51',0.00,50.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(38,172,2,NULL,1,'2018-05-19 15:31:51',0.00,50.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(39,2,2,NULL,1,'2018-05-19 15:31:51',0.00,50.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(40,150,2,NULL,1,'2018-05-19 15:31:51',0.00,50.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(41,191,2,NULL,1,'2018-05-19 15:31:51',0.00,50.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(42,35,2,NULL,1,'2018-05-19 15:31:51',0.00,1200.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Lifetime Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(43,126,2,NULL,1,'2018-05-19 15:31:51',0.00,1200.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Lifetime Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(45,3,4,NULL,1,'2018-05-19 15:31:52',0.00,800.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2018-05-19 15:31:52',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(46,4,4,NULL,1,'2018-05-19 15:31:52',0.00,50.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2018-05-19 15:31:52',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(47,6,4,NULL,1,'2018-05-19 15:31:52',0.00,50.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2018-05-19 15:31:52',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(48,9,4,NULL,1,'2018-05-19 15:31:52',0.00,50.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2018-05-19 15:31:52',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(49,10,4,NULL,1,'2018-05-19 15:31:52',0.00,800.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2018-05-19 15:31:52',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(50,11,4,NULL,1,'2018-05-19 15:31:52',0.00,50.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2018-05-19 15:31:52',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(51,14,4,NULL,1,'2018-05-19 15:31:52',0.00,50.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2018-05-19 15:31:52',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(52,17,4,NULL,1,'2018-05-19 15:31:52',0.00,50.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2018-05-19 15:31:52',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(53,27,4,NULL,1,'2018-05-19 15:31:52',0.00,50.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2018-05-19 15:31:52',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(54,30,4,NULL,1,'2018-05-19 15:31:52',0.00,800.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2018-05-19 15:31:52',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(55,35,4,NULL,1,'2018-05-19 15:31:52',0.00,50.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2018-05-19 15:31:52',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(56,39,4,NULL,1,'2018-05-19 15:31:52',0.00,50.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2018-05-19 15:31:52',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(57,40,4,NULL,1,'2018-05-19 15:31:52',0.00,800.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2018-05-19 15:31:52',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(58,42,4,NULL,1,'2018-05-19 15:31:52',0.00,50.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2018-05-19 15:31:52',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(59,43,4,NULL,1,'2018-05-19 15:31:52',0.00,800.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2018-05-19 15:31:52',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(60,46,4,NULL,1,'2018-05-19 15:31:52',0.00,50.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2018-05-19 15:31:52',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(61,50,4,NULL,1,'2018-05-19 15:31:52',0.00,50.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2018-05-19 15:31:52',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(62,52,4,NULL,1,'2018-05-19 15:31:52',0.00,50.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2018-05-19 15:31:52',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(63,58,4,NULL,1,'2018-05-19 15:31:52',0.00,50.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2018-05-19 15:31:52',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(64,62,4,NULL,1,'2018-05-19 15:31:52',0.00,50.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2018-05-19 15:31:52',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(65,65,4,NULL,1,'2018-05-19 15:31:52',0.00,50.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2018-05-19 15:31:52',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(66,67,4,NULL,1,'2018-05-19 15:31:52',0.00,50.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2018-05-19 15:31:52',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(67,72,4,NULL,1,'2018-05-19 15:31:52',0.00,50.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2018-05-19 15:31:52',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(68,73,4,NULL,1,'2018-05-19 15:31:52',0.00,50.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2018-05-19 15:31:52',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(69,74,4,NULL,1,'2018-05-19 15:31:52',0.00,800.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2018-05-19 15:31:52',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(70,75,4,NULL,1,'2018-05-19 15:31:52',0.00,800.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2018-05-19 15:31:52',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(71,81,4,NULL,1,'2018-05-19 15:31:52',0.00,800.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2018-05-19 15:31:52',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(72,83,4,NULL,1,'2018-05-19 15:31:52',0.00,800.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2018-05-19 15:31:52',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(73,91,4,NULL,1,'2018-05-19 15:31:52',0.00,50.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2018-05-19 15:31:52',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(74,96,4,NULL,1,'2018-05-19 15:31:52',0.00,800.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2018-05-19 15:31:52',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(75,99,4,NULL,1,'2018-05-19 15:31:52',0.00,800.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2018-05-19 15:31:52',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(76,101,4,NULL,1,'2018-05-19 15:31:52',0.00,800.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2018-05-19 15:31:52',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(77,115,4,NULL,1,'2018-05-19 15:31:52',0.00,800.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2018-05-19 15:31:52',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(78,117,4,NULL,1,'2018-05-19 15:31:52',0.00,800.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2018-05-19 15:31:52',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(79,139,4,NULL,1,'2018-05-19 15:31:52',0.00,50.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2018-05-19 15:31:52',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(80,140,4,NULL,1,'2018-05-19 15:31:52',0.00,800.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2018-05-19 15:31:52',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(81,141,4,NULL,1,'2018-05-19 15:31:52',0.00,50.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2018-05-19 15:31:52',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(82,143,4,NULL,1,'2018-05-19 15:31:52',0.00,800.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2018-05-19 15:31:52',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(83,145,4,NULL,1,'2018-05-19 15:31:52',0.00,50.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2018-05-19 15:31:52',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(84,147,4,NULL,1,'2018-05-19 15:31:52',0.00,50.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2018-05-19 15:31:52',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(85,152,4,NULL,1,'2018-05-19 15:31:52',0.00,800.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2018-05-19 15:31:52',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(86,154,4,NULL,1,'2018-05-19 15:31:52',0.00,50.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2018-05-19 15:31:52',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(87,166,4,NULL,1,'2018-05-19 15:31:52',0.00,800.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2018-05-19 15:31:52',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(88,173,4,NULL,1,'2018-05-19 15:31:52',0.00,50.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2018-05-19 15:31:52',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(89,181,4,NULL,1,'2018-05-19 15:31:52',0.00,50.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2018-05-19 15:31:52',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(90,183,4,NULL,1,'2018-05-19 15:31:52',0.00,50.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2018-05-19 15:31:52',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(91,187,4,NULL,1,'2018-05-19 15:31:52',0.00,50.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2018-05-19 15:31:52',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(92,193,4,NULL,1,'2018-05-19 15:31:52',0.00,50.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2018-05-19 15:31:52',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(93,196,4,NULL,1,'2018-05-19 15:31:52',0.00,50.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2018-05-19 15:31:52',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(94,197,4,NULL,1,'2018-05-19 15:31:52',0.00,50.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2018-05-19 15:31:52',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL); +INSERT INTO `civicrm_contribution` (`id`, `contact_id`, `financial_type_id`, `contribution_page_id`, `payment_instrument_id`, `receive_date`, `non_deductible_amount`, `total_amount`, `fee_amount`, `net_amount`, `trxn_id`, `invoice_id`, `invoice_number`, `currency`, `cancel_date`, `cancel_reason`, `receipt_date`, `thankyou_date`, `source`, `amount_level`, `contribution_recur_id`, `is_test`, `is_pay_later`, `contribution_status_id`, `address_id`, `check_number`, `campaign_id`, `creditnote_id`, `tax_amount`, `revenue_recognition_date`) VALUES (1,2,1,NULL,4,'2010-04-11 00:00:00',0.00,125.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Apr 2007 Mailer 1',NULL,NULL,0,0,1,NULL,'1041',NULL,NULL,NULL,NULL),(2,4,1,NULL,1,'2010-03-21 00:00:00',0.00,50.00,NULL,NULL,'P20901X1',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Online: Save the Penguins',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(3,6,1,NULL,4,'2010-04-29 00:00:00',0.00,25.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Apr 2007 Mailer 1',NULL,NULL,0,0,1,NULL,'2095',NULL,NULL,NULL,NULL),(4,8,1,NULL,4,'2010-04-11 00:00:00',0.00,50.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Apr 2007 Mailer 1',NULL,NULL,0,0,1,NULL,'10552',NULL,NULL,NULL,NULL),(5,16,1,NULL,4,'2010-04-15 00:00:00',0.00,500.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Apr 2007 Mailer 1',NULL,NULL,0,0,1,NULL,'509',NULL,NULL,NULL,NULL),(6,19,1,NULL,4,'2010-04-11 00:00:00',0.00,175.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Apr 2007 Mailer 1',NULL,NULL,0,0,1,NULL,'102',NULL,NULL,NULL,NULL),(7,82,1,NULL,1,'2010-03-27 00:00:00',0.00,50.00,NULL,NULL,'P20193L2',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Online: Save the Penguins',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(8,92,1,NULL,1,'2010-03-08 00:00:00',0.00,10.00,NULL,NULL,'P40232Y3',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Online: Help CiviCRM',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(9,34,1,NULL,1,'2010-04-22 00:00:00',0.00,250.00,NULL,NULL,'P20193L6',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Online: Help CiviCRM',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(10,71,1,NULL,1,'2009-07-01 11:53:50',0.00,500.00,NULL,NULL,'PL71',NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(11,43,1,NULL,1,'2009-07-01 12:55:41',0.00,200.00,NULL,NULL,'PL43II',NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(12,32,1,NULL,1,'2009-10-01 11:53:50',0.00,200.00,NULL,NULL,'PL32I',NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(13,32,1,NULL,1,'2009-12-01 12:55:41',0.00,200.00,NULL,NULL,'PL32II',NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(14,200,2,NULL,1,'2018-05-22 01:57:23',0.00,100.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(15,62,2,NULL,1,'2018-05-22 01:57:23',0.00,50.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(16,137,2,NULL,1,'2018-05-22 01:57:23',0.00,100.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(17,113,2,NULL,1,'2018-05-22 01:57:23',0.00,50.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(18,69,2,NULL,1,'2018-05-22 01:57:23',0.00,100.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(19,181,2,NULL,1,'2018-05-22 01:57:23',0.00,50.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(20,141,2,NULL,1,'2018-05-22 01:57:23',0.00,100.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(21,102,2,NULL,1,'2018-05-22 01:57:23',0.00,50.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(22,87,2,NULL,1,'2018-05-22 01:57:23',0.00,100.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(23,166,2,NULL,1,'2018-05-22 01:57:23',0.00,50.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(24,78,2,NULL,1,'2018-05-22 01:57:23',0.00,1200.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Lifetime Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(25,45,2,NULL,1,'2018-05-22 01:57:23',0.00,50.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(26,156,2,NULL,1,'2018-05-22 01:57:23',0.00,100.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(27,49,2,NULL,1,'2018-05-22 01:57:23',0.00,50.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(28,140,2,NULL,1,'2018-05-22 01:57:23',0.00,50.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(29,163,2,NULL,1,'2018-05-22 01:57:23',0.00,50.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(30,164,2,NULL,1,'2018-05-22 01:57:23',0.00,100.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(31,158,2,NULL,1,'2018-05-22 01:57:23',0.00,50.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(32,8,2,NULL,1,'2018-05-22 01:57:23',0.00,100.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(33,22,2,NULL,1,'2018-05-22 01:57:23',0.00,100.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(34,153,2,NULL,1,'2018-05-22 01:57:23',0.00,100.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(35,149,2,NULL,1,'2018-05-22 01:57:23',0.00,1200.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Lifetime Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(36,161,2,NULL,1,'2018-05-22 01:57:23',0.00,100.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(37,118,2,NULL,1,'2018-05-22 01:57:23',0.00,50.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(38,18,2,NULL,1,'2018-05-22 01:57:23',0.00,50.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(39,63,2,NULL,1,'2018-05-22 01:57:23',0.00,50.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(40,147,2,NULL,1,'2018-05-22 01:57:23',0.00,100.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(41,150,2,NULL,1,'2018-05-22 01:57:23',0.00,50.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(42,129,2,NULL,1,'2018-05-22 01:57:23',0.00,100.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(43,123,2,NULL,1,'2018-05-22 01:57:23',0.00,50.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(45,2,4,NULL,1,'2018-05-22 01:57:23',0.00,800.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2018-05-22 01:57:23',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(46,4,4,NULL,1,'2018-05-22 01:57:23',0.00,50.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2018-05-22 01:57:23',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(47,7,4,NULL,1,'2018-05-22 01:57:23',0.00,50.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2018-05-22 01:57:23',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(48,9,4,NULL,1,'2018-05-22 01:57:23',0.00,50.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2018-05-22 01:57:23',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(49,19,4,NULL,1,'2018-05-22 01:57:23',0.00,50.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2018-05-22 01:57:23',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(50,20,4,NULL,1,'2018-05-22 01:57:23',0.00,800.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2018-05-22 01:57:23',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(51,25,4,NULL,1,'2018-05-22 01:57:23',0.00,50.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2018-05-22 01:57:23',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(52,31,4,NULL,1,'2018-05-22 01:57:23',0.00,50.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2018-05-22 01:57:23',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(53,35,4,NULL,1,'2018-05-22 01:57:23',0.00,50.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2018-05-22 01:57:23',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(54,41,4,NULL,1,'2018-05-22 01:57:23',0.00,50.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2018-05-22 01:57:23',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(55,44,4,NULL,1,'2018-05-22 01:57:23',0.00,800.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2018-05-22 01:57:23',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(56,48,4,NULL,1,'2018-05-22 01:57:23',0.00,800.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2018-05-22 01:57:23',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(57,51,4,NULL,1,'2018-05-22 01:57:23',0.00,50.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2018-05-22 01:57:23',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(58,61,4,NULL,1,'2018-05-22 01:57:23',0.00,50.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2018-05-22 01:57:23',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(59,63,4,NULL,1,'2018-05-22 01:57:23',0.00,50.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2018-05-22 01:57:23',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(60,66,4,NULL,1,'2018-05-22 01:57:23',0.00,50.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2018-05-22 01:57:23',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(61,73,4,NULL,1,'2018-05-22 01:57:23',0.00,50.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2018-05-22 01:57:23',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(62,85,4,NULL,1,'2018-05-22 01:57:23',0.00,50.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2018-05-22 01:57:23',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(63,86,4,NULL,1,'2018-05-22 01:57:23',0.00,50.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2018-05-22 01:57:23',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(64,89,4,NULL,1,'2018-05-22 01:57:23',0.00,800.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2018-05-22 01:57:23',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(65,96,4,NULL,1,'2018-05-22 01:57:23',0.00,50.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2018-05-22 01:57:23',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(66,101,4,NULL,1,'2018-05-22 01:57:23',0.00,50.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2018-05-22 01:57:23',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(67,103,4,NULL,1,'2018-05-22 01:57:23',0.00,50.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2018-05-22 01:57:23',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(68,106,4,NULL,1,'2018-05-22 01:57:23',0.00,50.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2018-05-22 01:57:23',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(69,108,4,NULL,1,'2018-05-22 01:57:23',0.00,800.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2018-05-22 01:57:23',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(70,109,4,NULL,1,'2018-05-22 01:57:23',0.00,50.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2018-05-22 01:57:23',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(71,110,4,NULL,1,'2018-05-22 01:57:23',0.00,800.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2018-05-22 01:57:23',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(72,112,4,NULL,1,'2018-05-22 01:57:23',0.00,50.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2018-05-22 01:57:23',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(73,113,4,NULL,1,'2018-05-22 01:57:23',0.00,800.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2018-05-22 01:57:23',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(74,114,4,NULL,1,'2018-05-22 01:57:23',0.00,800.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2018-05-22 01:57:23',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(75,115,4,NULL,1,'2018-05-22 01:57:23',0.00,50.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2018-05-22 01:57:23',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(76,121,4,NULL,1,'2018-05-22 01:57:23',0.00,50.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2018-05-22 01:57:23',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(77,124,4,NULL,1,'2018-05-22 01:57:23',0.00,800.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2018-05-22 01:57:23',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(78,128,4,NULL,1,'2018-05-22 01:57:23',0.00,50.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2018-05-22 01:57:23',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(79,129,4,NULL,1,'2018-05-22 01:57:23',0.00,50.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2018-05-22 01:57:23',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(80,131,4,NULL,1,'2018-05-22 01:57:23',0.00,50.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2018-05-22 01:57:23',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(81,133,4,NULL,1,'2018-05-22 01:57:23',0.00,50.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2018-05-22 01:57:23',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(82,137,4,NULL,1,'2018-05-22 01:57:23',0.00,50.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2018-05-22 01:57:23',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(83,151,4,NULL,1,'2018-05-22 01:57:23',0.00,800.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2018-05-22 01:57:23',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(84,153,4,NULL,1,'2018-05-22 01:57:23',0.00,50.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2018-05-22 01:57:23',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(85,155,4,NULL,1,'2018-05-22 01:57:23',0.00,50.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2018-05-22 01:57:23',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(86,162,4,NULL,1,'2018-05-22 01:57:23',0.00,800.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2018-05-22 01:57:23',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(87,164,4,NULL,1,'2018-05-22 01:57:23',0.00,800.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2018-05-22 01:57:23',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(88,166,4,NULL,1,'2018-05-22 01:57:23',0.00,800.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2018-05-22 01:57:23',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(89,177,4,NULL,1,'2018-05-22 01:57:23',0.00,800.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2018-05-22 01:57:23',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(90,182,4,NULL,1,'2018-05-22 01:57:23',0.00,50.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2018-05-22 01:57:23',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(91,186,4,NULL,1,'2018-05-22 01:57:23',0.00,800.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2018-05-22 01:57:23',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(92,188,4,NULL,1,'2018-05-22 01:57:23',0.00,50.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2018-05-22 01:57:23',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(93,190,4,NULL,1,'2018-05-22 01:57:23',0.00,800.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2018-05-22 01:57:23',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL),(94,199,4,NULL,1,'2018-05-22 01:57:23',0.00,800.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2018-05-22 01:57:23',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL); /*!40000 ALTER TABLE `civicrm_contribution` ENABLE KEYS */; UNLOCK TABLES; @@ -266,7 +266,7 @@ UNLOCK TABLES; LOCK TABLES `civicrm_contribution_soft` WRITE; /*!40000 ALTER TABLE `civicrm_contribution_soft` DISABLE KEYS */; -INSERT INTO `civicrm_contribution_soft` (`id`, `contribution_id`, `contact_id`, `amount`, `currency`, `pcp_id`, `pcp_display_in_roll`, `pcp_roll_nickname`, `pcp_personal_note`, `soft_credit_type_id`) VALUES (1,8,135,10.00,'USD',1,1,'Jones Family','Helping Hands',10),(2,9,135,250.00,'USD',1,1,'Annie and the kids','Annie Helps',10); +INSERT INTO `civicrm_contribution_soft` (`id`, `contribution_id`, `contact_id`, `amount`, `currency`, `pcp_id`, `pcp_display_in_roll`, `pcp_roll_nickname`, `pcp_personal_note`, `soft_credit_type_id`) VALUES (1,8,57,10.00,'USD',1,1,'Jones Family','Helping Hands',10),(2,9,57,250.00,'USD',1,1,'Annie and the kids','Annie Helps',10); /*!40000 ALTER TABLE `civicrm_contribution_soft` ENABLE KEYS */; UNLOCK TABLES; @@ -409,7 +409,7 @@ UNLOCK TABLES; LOCK TABLES `civicrm_email` WRITE; /*!40000 ALTER TABLE `civicrm_email` DISABLE KEYS */; -INSERT INTO `civicrm_email` (`id`, `contact_id`, `location_type_id`, `email`, `is_primary`, `is_billing`, `on_hold`, `is_bulkmail`, `hold_date`, `reset_date`, `signature_text`, `signature_html`) VALUES (1,1,1,'fixme.domainemail@example.org',0,0,0,0,NULL,NULL,NULL,NULL),(2,193,1,'bobn10@testmail.com',1,0,0,0,NULL,NULL,NULL,NULL),(3,193,1,'bobnielsen73@example.co.pl',0,0,0,0,NULL,NULL,NULL,NULL),(4,93,1,'lareer92@notmail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(5,93,1,'robertson.h.laree51@testing.co.in',0,0,0,0,NULL,NULL,NULL,NULL),(6,135,1,'margaretjones91@testing.info',1,0,0,0,NULL,NULL,NULL,NULL),(7,77,1,'mller.jed93@fakemail.org',1,0,0,0,NULL,NULL,NULL,NULL),(8,42,1,'prenticeb@sample.net',1,0,0,0,NULL,NULL,NULL,NULL),(9,42,1,'bettyp@spamalot.info',0,0,0,0,NULL,NULL,NULL,NULL),(10,13,1,'bbachman@fishmail.net',1,0,0,0,NULL,NULL,NULL,NULL),(11,94,1,'roberts.lashawnda@example.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(12,90,1,'trumanbachman@example.info',1,0,0,0,NULL,NULL,NULL,NULL),(13,90,1,'bachman.truman@example.co.pl',0,0,0,0,NULL,NULL,NULL,NULL),(14,97,1,'tanyam@sample.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(15,97,1,'tanyamcreynolds32@fishmail.com',0,0,0,0,NULL,NULL,NULL,NULL),(16,178,1,'mreynolds@infomail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(17,177,1,'kiarajacobs44@mymail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(18,177,1,'jacobsk90@mymail.co.uk',0,0,0,0,NULL,NULL,NULL,NULL),(19,157,1,'scottgrant@sample.info',1,0,0,0,NULL,NULL,NULL,NULL),(20,65,1,'jameson.daren@testing.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(21,65,1,'djameson@fakemail.co.in',0,0,0,0,NULL,NULL,NULL,NULL),(22,78,1,'daz.juliann@sample.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(23,47,1,'yadavr@testing.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(24,47,1,'yadavr@infomail.biz',0,0,0,0,NULL,NULL,NULL,NULL),(25,57,1,'samuelsd@example.net',1,0,0,0,NULL,NULL,NULL,NULL),(26,61,1,'pmller16@testing.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(27,163,1,'meganzope@mymail.info',1,0,0,0,NULL,NULL,NULL,NULL),(28,163,1,'zope.megan67@lol.co.pl',0,0,0,0,NULL,NULL,NULL,NULL),(29,125,1,'smithe94@testmail.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(30,125,1,'smithe@testing.info',0,0,0,0,NULL,NULL,NULL,NULL),(31,145,1,'patele@testing.net',1,0,0,0,NULL,NULL,NULL,NULL),(32,28,1,'brentjones23@lol.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(33,124,1,'trumanj@lol.net',1,0,0,0,NULL,NULL,NULL,NULL),(34,124,1,'trumanj@testing.co.uk',0,0,0,0,NULL,NULL,NULL,NULL),(35,44,1,'alidabarkley@mymail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(36,44,1,'barkleya20@mymail.co.pl',0,0,0,0,NULL,NULL,NULL,NULL),(37,19,1,'jameson.lashawnda19@testing.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(38,19,1,'lashawndaj@testing.org',0,0,0,0,NULL,NULL,NULL,NULL),(39,55,1,'gonzlez.mei73@airmail.biz',1,0,0,0,NULL,NULL,NULL,NULL),(40,200,1,'ashleydimitrov@testmail.biz',1,0,0,0,NULL,NULL,NULL,NULL),(41,59,1,'mn.samson@example.info',1,0,0,0,NULL,NULL,NULL,NULL),(42,71,1,'olsen.bryon35@mymail.info',1,0,0,0,NULL,NULL,NULL,NULL),(43,71,1,'olsen.bryon@fishmail.co.nz',0,0,0,0,NULL,NULL,NULL,NULL),(44,119,1,'mo.mller@airmail.com',1,0,0,0,NULL,NULL,NULL,NULL),(45,119,1,'maxwellmller@lol.com',0,0,0,0,NULL,NULL,NULL,NULL),(46,21,1,'olsen.miguel34@testmail.com',1,0,0,0,NULL,NULL,NULL,NULL),(47,21,1,'olsen.miguel83@infomail.org',0,0,0,0,NULL,NULL,NULL,NULL),(48,36,1,'santinawagner@spamalot.com',1,0,0,0,NULL,NULL,NULL,NULL),(49,82,1,'troyr@mymail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(50,69,1,'wattsonb@notmail.net',1,0,0,0,NULL,NULL,NULL,NULL),(51,69,1,'brigettewattson@example.info',0,0,0,0,NULL,NULL,NULL,NULL),(52,8,1,'juliann@lol.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(53,29,1,'arlyned@airmail.com',1,0,0,0,NULL,NULL,NULL,NULL),(54,29,1,'ac.daz31@fishmail.info',0,0,0,0,NULL,NULL,NULL,NULL),(55,54,1,'brittneyzope@mymail.com',1,0,0,0,NULL,NULL,NULL,NULL),(56,54,1,'zopeb@sample.co.in',0,0,0,0,NULL,NULL,NULL,NULL),(57,107,1,'grant.c.josefa60@testmail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(58,107,1,'josefag@example.net',0,0,0,0,NULL,NULL,NULL,NULL),(59,162,1,'lareeivanov@spamalot.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(60,152,1,'cruz.andrew@fishmail.info',1,0,0,0,NULL,NULL,NULL,NULL),(61,22,1,'wattson.damaris14@fakemail.net',1,0,0,0,NULL,NULL,NULL,NULL),(62,22,1,'damariswattson@mymail.co.nz',0,0,0,0,NULL,NULL,NULL,NULL),(63,72,1,'adimitrov68@example.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(64,150,1,'lee.eleonor@testing.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(65,81,1,'elbertyadav46@spamalot.net',1,0,0,0,NULL,NULL,NULL,NULL),(66,43,1,'terrys@fakemail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(67,43,1,'shermanterry@example.com',0,0,0,0,NULL,NULL,NULL,NULL),(68,151,1,'robertsons@example.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(69,15,1,'roberts.irvin@mymail.org',1,0,0,0,NULL,NULL,NULL,NULL),(70,15,1,'robertsi@infomail.org',0,0,0,0,NULL,NULL,NULL,NULL),(71,91,1,'robertson.teresa@lol.com',1,0,0,0,NULL,NULL,NULL,NULL),(72,91,1,'robertson.teresa48@spamalot.com',0,0,0,0,NULL,NULL,NULL,NULL),(73,141,1,'jacobs.ivey@mymail.com',1,0,0,0,NULL,NULL,NULL,NULL),(74,141,1,'jacobsi12@example.com',0,0,0,0,NULL,NULL,NULL,NULL),(75,23,1,'irisblackwell73@mymail.com',1,0,0,0,NULL,NULL,NULL,NULL),(76,23,1,'blackwell.iris@testmail.co.pl',0,0,0,0,NULL,NULL,NULL,NULL),(77,166,1,'sanfordn@example.net',1,0,0,0,NULL,NULL,NULL,NULL),(78,171,1,'adams.ashlie17@example.org',1,0,0,0,NULL,NULL,NULL,NULL),(79,171,1,'ashliea@fakemail.co.in',0,0,0,0,NULL,NULL,NULL,NULL),(80,52,1,'pdaz@mymail.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(81,156,1,'bachman.s.lincoln94@infomail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(82,156,1,'bachman.lincoln97@fakemail.co.nz',0,0,0,0,NULL,NULL,NULL,NULL),(83,142,1,'yadav.nicole46@airmail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(84,142,1,'yadavn8@fishmail.org',0,0,0,0,NULL,NULL,NULL,NULL),(85,10,1,'tx.mcreynolds38@testing.net',1,0,0,0,NULL,NULL,NULL,NULL),(86,10,1,'tx.mcreynolds14@airmail.co.uk',0,0,0,0,NULL,NULL,NULL,NULL),(87,2,1,'bblackwell@mymail.com',1,0,0,0,NULL,NULL,NULL,NULL),(88,31,1,'lareeb35@fakemail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(89,31,1,'barkley.laree@infomail.co.nz',0,0,0,0,NULL,NULL,NULL,NULL),(90,66,1,'sonnycooper61@infomail.org',1,0,0,0,NULL,NULL,NULL,NULL),(91,130,1,'cooper.kiara@infomail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(92,130,1,'kiaracooper95@sample.co.pl',0,0,0,0,NULL,NULL,NULL,NULL),(93,87,1,'lwilson@lol.net',1,0,0,0,NULL,NULL,NULL,NULL),(94,80,1,'reynolds.teresa@notmail.net',1,0,0,0,NULL,NULL,NULL,NULL),(95,34,1,'kennyw51@example.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(96,95,1,'wilson-reynoldst18@spamalot.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(97,95,1,'troywilson-reynolds17@notmail.com',0,0,0,0,NULL,NULL,NULL,NULL),(98,148,1,'nreynolds@example.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(99,148,1,'reynolds.norris@notmail.com',0,0,0,0,NULL,NULL,NULL,NULL),(100,113,1,'mreynolds11@spamalot.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(101,113,1,'reynoldsm@fakemail.co.nz',0,0,0,0,NULL,NULL,NULL,NULL),(102,6,1,'blackwell.kenny76@testmail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(103,6,1,'kennyblackwell@example.co.in',0,0,0,0,NULL,NULL,NULL,NULL),(104,75,1,'daz-smiths@testing.org',1,0,0,0,NULL,NULL,NULL,NULL),(105,75,1,'daz-smiths46@testmail.co.uk',0,0,0,0,NULL,NULL,NULL,NULL),(106,11,1,'smithe@lol.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(107,11,1,'estas70@example.co.nz',0,0,0,0,NULL,NULL,NULL,NULL),(108,96,1,'bryonsmith33@infomail.com',1,0,0,0,NULL,NULL,NULL,NULL),(109,99,1,'darens66@mymail.net',1,0,0,0,NULL,NULL,NULL,NULL),(110,63,1,'jinasmith82@notmail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(111,160,1,'kandacesamuels-zope@testing.info',1,0,0,0,NULL,NULL,NULL,NULL),(112,197,1,'azope35@mymail.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(113,197,1,'azope42@fishmail.co.pl',0,0,0,0,NULL,NULL,NULL,NULL),(114,3,1,'kaceyzope22@airmail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(115,3,1,'kaceyz79@airmail.com',0,0,0,0,NULL,NULL,NULL,NULL),(116,120,1,'jsmith13@airmail.com',1,0,0,0,NULL,NULL,NULL,NULL),(117,120,1,'smith.jacob@spamalot.biz',0,0,0,0,NULL,NULL,NULL,NULL),(118,194,1,'iveys@testing.biz',1,0,0,0,NULL,NULL,NULL,NULL),(119,194,1,'smith-jones.ivey19@example.com',0,0,0,0,NULL,NULL,NULL,NULL),(120,138,1,'landonb39@airmail.org',1,0,0,0,NULL,NULL,NULL,NULL),(121,104,1,'bachmani37@infomail.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(122,104,1,'irisb@spamalot.co.uk',0,0,0,0,NULL,NULL,NULL,NULL),(123,169,1,'deforest-wagnerb@testing.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(124,169,1,'bg.deforest-wagner@spamalot.co.in',0,0,0,0,NULL,NULL,NULL,NULL),(125,155,1,'kennycooper@infomail.info',1,0,0,0,NULL,NULL,NULL,NULL),(126,16,1,'coopern@testing.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(127,16,1,'nv.cooper@airmail.co.uk',0,0,0,0,NULL,NULL,NULL,NULL),(128,74,1,'cooper.w.tanya97@notmail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(129,179,1,'zope.kiara@fakemail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(130,179,1,'kzope@fishmail.co.uk',0,0,0,0,NULL,NULL,NULL,NULL),(131,170,1,'carloszope@example.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(132,140,1,'zope.c.nicole@spamalot.org',1,0,0,0,NULL,NULL,NULL,NULL),(133,140,1,'zopen@testmail.net',0,0,0,0,NULL,NULL,NULL,NULL),(134,38,1,'wattsonr@notmail.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(135,172,1,'smithj84@mymail.org',1,0,0,0,NULL,NULL,NULL,NULL),(136,185,1,'coopera@airmail.org',1,0,0,0,NULL,NULL,NULL,NULL),(137,159,1,'ak.wattson32@mymail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(138,88,1,'lawerencecooper-wattson@fishmail.com',1,0,0,0,NULL,NULL,NULL,NULL),(139,4,1,'cooper-wattsoni75@example.com',1,0,0,0,NULL,NULL,NULL,NULL),(140,4,1,'cooper-wattson.iris26@sample.net',0,0,0,0,NULL,NULL,NULL,NULL),(141,50,1,'bobd80@sample.info',1,0,0,0,NULL,NULL,NULL,NULL),(142,40,1,'rebekahpatel-deforest98@fakemail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(143,192,1,'adeforest@airmail.biz',1,0,0,0,NULL,NULL,NULL,NULL),(144,192,1,'deforest.arlyne@spamalot.net',0,0,0,0,NULL,NULL,NULL,NULL),(145,122,1,'gonzlezr@spamalot.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(146,60,1,'teresagonzlez@fakemail.com',1,0,0,0,NULL,NULL,NULL,NULL),(147,60,1,'gonzlezt@lol.net',0,0,0,0,NULL,NULL,NULL,NULL),(148,109,1,'gonzlez.princess@airmail.net',1,0,0,0,NULL,NULL,NULL,NULL),(149,109,1,'gonzlezp97@spamalot.co.in',0,0,0,0,NULL,NULL,NULL,NULL),(150,53,1,'gonzleza@infomail.info',1,0,0,0,NULL,NULL,NULL,NULL),(151,118,1,'dj.samson@fakemail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(152,118,1,'samsond@testmail.co.in',0,0,0,0,NULL,NULL,NULL,NULL),(153,190,1,'justinaterry25@lol.info',1,0,0,0,NULL,NULL,NULL,NULL),(154,190,1,'terry.justina95@airmail.org',0,0,0,0,NULL,NULL,NULL,NULL),(155,85,1,'samson-terry.ashley@infomail.org',1,0,0,0,NULL,NULL,NULL,NULL),(156,85,1,'ay.samson-terry@infomail.co.uk',0,0,0,0,NULL,NULL,NULL,NULL),(157,134,1,'nielsen.x.craig@notmail.com',1,0,0,0,NULL,NULL,NULL,NULL),(158,134,1,'nielsenc@sample.net',0,0,0,0,NULL,NULL,NULL,NULL),(159,189,1,'ashlien47@airmail.com',1,0,0,0,NULL,NULL,NULL,NULL),(160,189,1,'nielsen.ashlie19@airmail.co.pl',0,0,0,0,NULL,NULL,NULL,NULL),(161,175,1,'bnielsen27@fishmail.com',1,0,0,0,NULL,NULL,NULL,NULL),(162,175,1,'bryonn@airmail.co.nz',0,0,0,0,NULL,NULL,NULL,NULL),(163,86,3,'feedback@creativeartspartnership.org',1,0,0,0,NULL,NULL,NULL,NULL),(164,118,2,'.@creativeartspartnership.org',0,0,0,0,NULL,NULL,NULL,NULL),(165,129,3,'contact@globaldevelopment.org',1,0,0,0,NULL,NULL,NULL,NULL),(166,176,3,'feedback@ohiowellness.org',1,0,0,0,NULL,NULL,NULL,NULL),(167,39,3,'service@baypeace.org',1,0,0,0,NULL,NULL,NULL,NULL),(168,35,2,'cadams-blackwell@baypeace.org',1,0,0,0,NULL,NULL,NULL,NULL),(169,103,3,'info@texaseducationfund.org',1,0,0,0,NULL,NULL,NULL,NULL),(170,162,2,'lareei@texaseducationfund.org',0,0,0,0,NULL,NULL,NULL,NULL),(171,111,3,'service@oaklandfood.org',1,0,0,0,NULL,NULL,NULL,NULL),(172,197,2,'ashleyz54@oaklandfood.org',0,0,0,0,NULL,NULL,NULL,NULL),(173,64,3,'feedback@mapleagriculture.org',1,0,0,0,NULL,NULL,NULL,NULL),(174,164,3,'info@sierraeducation.org',1,0,0,0,NULL,NULL,NULL,NULL),(175,105,2,'rebekahcooper88@sierraeducation.org',1,0,0,0,NULL,NULL,NULL,NULL),(176,30,3,'contact@globalhealthtrust.org',1,0,0,0,NULL,NULL,NULL,NULL),(177,125,2,'esmith@globalhealthtrust.org',0,0,0,0,NULL,NULL,NULL,NULL),(178,68,3,'sales@cadelleducation.org',1,0,0,0,NULL,NULL,NULL,NULL),(179,201,3,'contact@manilafellowship.org',1,0,0,0,NULL,NULL,NULL,NULL),(180,130,2,'cooper.kiara@manilafellowship.org',0,0,0,0,NULL,NULL,NULL,NULL),(181,167,3,'feedback@washingtonfamilyfund.org',1,0,0,0,NULL,NULL,NULL,NULL),(182,60,2,'teresag@washingtonfamilyfund.org',0,0,0,0,NULL,NULL,NULL,NULL),(183,146,3,'feedback@wvempowermentfellowship.org',1,0,0,0,NULL,NULL,NULL,NULL),(184,72,2,'dimitrov.alexia@wvempowermentfellowship.org',0,0,0,0,NULL,NULL,NULL,NULL),(185,32,3,'sales@beechinitiative.org',1,0,0,0,NULL,NULL,NULL,NULL),(186,40,2,'rebekahpatel-deforest88@beechinitiative.org',0,0,0,0,NULL,NULL,NULL,NULL),(187,51,3,'contact@greensoftwarenetwork.org',1,0,0,0,NULL,NULL,NULL,NULL),(188,56,3,'service@arizonaalliance.org',1,0,0,0,NULL,NULL,NULL,NULL),(189,141,2,'jacobs.b.ivey@arizonaalliance.org',0,0,0,0,NULL,NULL,NULL,NULL),(190,NULL,1,'development@example.org',0,0,0,0,NULL,NULL,NULL,NULL),(191,NULL,1,'tournaments@example.org',0,0,0,0,NULL,NULL,NULL,NULL),(192,NULL,1,'celebration@example.org',0,0,0,0,NULL,NULL,NULL,NULL); +INSERT INTO `civicrm_email` (`id`, `contact_id`, `location_type_id`, `email`, `is_primary`, `is_billing`, `on_hold`, `is_bulkmail`, `hold_date`, `reset_date`, `signature_text`, `signature_html`) VALUES (1,1,1,'fixme.domainemail@example.org',0,0,0,0,NULL,NULL,NULL,NULL),(2,146,1,'olsen.jina85@sample.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(3,146,1,'jinao@fishmail.co.pl',0,0,0,0,NULL,NULL,NULL,NULL),(4,96,1,'mcreynoldsa@testing.biz',1,0,0,0,NULL,NULL,NULL,NULL),(5,96,1,'amcreynolds97@spamalot.org',0,0,0,0,NULL,NULL,NULL,NULL),(6,67,1,'delanareynolds@lol.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(7,57,1,'iveymller9@example.net',1,0,0,0,NULL,NULL,NULL,NULL),(8,57,1,'ix.mller@mymail.co.in',0,0,0,0,NULL,NULL,NULL,NULL),(9,108,1,'junkoj@airmail.com',1,0,0,0,NULL,NULL,NULL,NULL),(10,108,1,'junkojensen@infomail.com',0,0,0,0,NULL,NULL,NULL,NULL),(11,38,1,'samsons@notmail.info',1,0,0,0,NULL,NULL,NULL,NULL),(12,38,1,'ssamson@airmail.co.nz',0,0,0,0,NULL,NULL,NULL,NULL),(13,161,1,'wilson.kenny74@fakemail.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(14,155,1,'santinap@fakemail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(15,23,1,'ly.wattson@fakemail.biz',1,0,0,0,NULL,NULL,NULL,NULL),(16,23,1,'lashawndawattson@airmail.co.in',0,0,0,0,NULL,NULL,NULL,NULL),(17,52,1,'omard@spamalot.biz',1,0,0,0,NULL,NULL,NULL,NULL),(18,107,1,'craigivanov@testing.info',1,0,0,0,NULL,NULL,NULL,NULL),(19,107,1,'craigi31@fakemail.co.pl',0,0,0,0,NULL,NULL,NULL,NULL),(20,94,1,'bryonterrell@lol.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(21,94,1,'terrell.bryon11@sample.net',0,0,0,0,NULL,NULL,NULL,NULL),(22,3,1,'jones.kiara47@fakemail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(23,3,1,'kiaraj@fakemail.com',0,0,0,0,NULL,NULL,NULL,NULL),(24,125,1,'erikz29@lol.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(25,125,1,'zope.k.erik@testmail.org',0,0,0,0,NULL,NULL,NULL,NULL),(26,173,1,'robertsonr57@fakemail.net',1,0,0,0,NULL,NULL,NULL,NULL),(27,80,1,'dimitrov.allen@testmail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(28,80,1,'dimitrova@infomail.info',0,0,0,0,NULL,NULL,NULL,NULL),(29,69,1,'olsen.i.heidi@testing.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(30,181,1,'rolandprentice46@example.com',1,0,0,0,NULL,NULL,NULL,NULL),(31,181,1,'rolandp@lol.co.uk',0,0,0,0,NULL,NULL,NULL,NULL),(32,60,1,'rb.wagner@testmail.com',1,0,0,0,NULL,NULL,NULL,NULL),(33,133,1,'patel.x.billy@mymail.info',1,0,0,0,NULL,NULL,NULL,NULL),(34,133,1,'patelb89@airmail.co.in',0,0,0,0,NULL,NULL,NULL,NULL),(35,127,1,'joness@testmail.net',1,0,0,0,NULL,NULL,NULL,NULL),(36,190,1,'nielsen.rodrigo@notmail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(37,121,1,'jeromei66@fishmail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(38,62,1,'zopea22@fakemail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(39,62,1,'zopea@airmail.co.uk',0,0,0,0,NULL,NULL,NULL,NULL),(40,13,1,'kjacobs@testing.net',1,0,0,0,NULL,NULL,NULL,NULL),(41,110,1,'rx.wattson9@infomail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(42,110,1,'wattson.x.russell23@fishmail.co.pl',0,0,0,0,NULL,NULL,NULL,NULL),(43,43,1,'cruz.r.rolando21@mymail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(44,43,1,'cruz.rolando@notmail.com',0,0,0,0,NULL,NULL,NULL,NULL),(45,152,1,'iveyl@testmail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(46,149,1,'adams.maria40@testmail.net',1,0,0,0,NULL,NULL,NULL,NULL),(47,188,1,'yadav.bob@testmail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(48,36,1,'mcreynolds.shad@testmail.com',1,0,0,0,NULL,NULL,NULL,NULL),(49,36,1,'mcreynoldss6@infomail.co.pl',0,0,0,0,NULL,NULL,NULL,NULL),(50,187,1,'miguelm@fakemail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(51,63,1,'lgonzlez@mymail.info',1,0,0,0,NULL,NULL,NULL,NULL),(52,63,1,'lawerencegonzlez@infomail.net',0,0,0,0,NULL,NULL,NULL,NULL),(53,131,1,'blackwellm@airmail.com',1,0,0,0,NULL,NULL,NULL,NULL),(54,193,1,'rebekahyadav@lol.org',1,0,0,0,NULL,NULL,NULL,NULL),(55,5,1,'vparker@lol.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(56,5,1,'vparker@notmail.com',0,0,0,0,NULL,NULL,NULL,NULL),(57,31,1,'robertson.lashawnda@fakemail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(58,46,1,'sl.dimitrov@fakemail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(59,14,1,'caryloni@testing.biz',1,0,0,0,NULL,NULL,NULL,NULL),(60,117,1,'carlosl81@lol.info',1,0,0,0,NULL,NULL,NULL,NULL),(61,59,1,'zope.juliann54@testing.biz',1,0,0,0,NULL,NULL,NULL,NULL),(62,28,1,'beulaw@airmail.net',1,0,0,0,NULL,NULL,NULL,NULL),(63,171,1,'justinas@spamalot.biz',1,0,0,0,NULL,NULL,NULL,NULL),(64,186,1,'mller.iris3@fishmail.org',1,0,0,0,NULL,NULL,NULL,NULL),(65,186,1,'mller.iris@fakemail.co.nz',0,0,0,0,NULL,NULL,NULL,NULL),(66,128,1,'zope.maxwell40@spamalot.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(67,128,1,'maxwellzope91@testmail.co.pl',0,0,0,0,NULL,NULL,NULL,NULL),(68,143,1,'jx.grant23@lol.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(69,98,1,'rodrigoolsen@fakemail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(70,98,1,'olsenr@sample.com',0,0,0,0,NULL,NULL,NULL,NULL),(71,53,1,'carloss5@mymail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(72,53,1,'samuelsc@example.biz',0,0,0,0,NULL,NULL,NULL,NULL),(73,170,1,'adams.kiara@airmail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(74,93,1,'mller.josefa@testing.org',1,0,0,0,NULL,NULL,NULL,NULL),(75,93,1,'josefam@infomail.biz',0,0,0,0,NULL,NULL,NULL,NULL),(76,56,1,'ad.terrell13@testmail.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(77,56,1,'terrell.allan@lol.org',0,0,0,0,NULL,NULL,NULL,NULL),(78,168,1,'yadav.kandace43@lol.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(79,145,1,'smith.brittney44@sample.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(80,4,1,'barkley.shauna@notmail.org',1,0,0,0,NULL,NULL,NULL,NULL),(81,30,1,'terrell.delana@fakemail.info',1,0,0,0,NULL,NULL,NULL,NULL),(82,50,1,'terrell.junko@testing.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(83,50,1,'terrell.junko44@spamalot.co.nz',0,0,0,0,NULL,NULL,NULL,NULL),(84,45,1,'santinaterrell@airmail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(85,45,1,'santinat@fishmail.co.nz',0,0,0,0,NULL,NULL,NULL,NULL),(86,182,1,'maxwellt@notmail.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(87,87,1,'darenm86@spamalot.com',1,0,0,0,NULL,NULL,NULL,NULL),(88,118,1,'juliannm31@mymail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(89,118,1,'jd.mcreynolds7@testing.co.uk',0,0,0,0,NULL,NULL,NULL,NULL),(90,19,1,'mcreynolds.maria@airmail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(91,19,1,'mcreynolds.maria@spamalot.com',0,0,0,0,NULL,NULL,NULL,NULL),(92,48,1,'jensen.teresa81@fishmail.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(93,198,1,'jensenn@fishmail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(94,82,1,'jensen.lashawnda@fakemail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(95,82,1,'lashawndajensen21@example.co.pl',0,0,0,0,NULL,NULL,NULL,NULL),(96,132,1,'terry.jerome@fakemail.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(97,132,1,'jeromet@mymail.com',0,0,0,0,NULL,NULL,NULL,NULL),(98,156,1,'jterry32@testing.net',1,0,0,0,NULL,NULL,NULL,NULL),(99,114,1,'beulan91@mymail.com',1,0,0,0,NULL,NULL,NULL,NULL),(100,120,1,'nielsen.andrew@fakemail.com',1,0,0,0,NULL,NULL,NULL,NULL),(101,137,1,'nielsen.maxwell82@airmail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(102,139,1,'jensen.lincoln@sample.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(103,76,1,'jensen.betty87@fakemail.biz',1,0,0,0,NULL,NULL,NULL,NULL),(104,76,1,'bettyj@sample.com',0,0,0,0,NULL,NULL,NULL,NULL),(105,124,1,'jensenr82@fishmail.net',1,0,0,0,NULL,NULL,NULL,NULL),(106,124,1,'rodrigoj@example.co.uk',0,0,0,0,NULL,NULL,NULL,NULL),(107,15,1,'olsen.andrew58@airmail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(108,7,1,'tr.mcreynolds@fishmail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(109,7,1,'tanyamcreynolds@lol.co.pl',0,0,0,0,NULL,NULL,NULL,NULL),(110,22,1,'olsen-mcreynolds.g.shauna@airmail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(111,22,1,'olsen-mcreynolds.g.shauna34@notmail.co.in',0,0,0,0,NULL,NULL,NULL,NULL),(112,40,1,'miguelo@sample.com',1,0,0,0,NULL,NULL,NULL,NULL),(113,6,1,'trumanadams78@lol.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(114,6,1,'adams.truman49@infomail.biz',0,0,0,0,NULL,NULL,NULL,NULL),(115,180,1,'justinaa@spamalot.biz',1,0,0,0,NULL,NULL,NULL,NULL),(116,147,1,'andrewadams51@testmail.org',1,0,0,0,NULL,NULL,NULL,NULL),(117,176,1,'cruz.brzczysaw@example.org',1,0,0,0,NULL,NULL,NULL,NULL),(118,176,1,'brzczysawc@sample.org',0,0,0,0,NULL,NULL,NULL,NULL),(119,166,1,'bernadettem@infomail.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(120,166,1,'mllerb@mymail.org',0,0,0,0,NULL,NULL,NULL,NULL),(121,64,1,'princesscruz-mller@fakemail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(122,64,1,'pcruz-mller@fishmail.co.uk',0,0,0,0,NULL,NULL,NULL,NULL),(123,8,1,'dimitrovc6@spamalot.com',1,0,0,0,NULL,NULL,NULL,NULL),(124,112,1,'mbachman-dimitrov@infomail.biz',1,0,0,0,NULL,NULL,NULL,NULL),(125,138,1,'bryondimitrov@fishmail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(126,138,1,'bryond52@example.net',0,0,0,0,NULL,NULL,NULL,NULL),(127,153,1,'bdimitrov96@testing.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(128,153,1,'bdimitrov@sample.info',0,0,0,0,NULL,NULL,NULL,NULL),(129,44,1,'jonesl@notmail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(130,44,1,'le.jones68@airmail.co.nz',0,0,0,0,NULL,NULL,NULL,NULL),(131,119,1,'ivanov.scott@infomail.biz',1,0,0,0,NULL,NULL,NULL,NULL),(132,119,1,'scotti@testing.co.pl',0,0,0,0,NULL,NULL,NULL,NULL),(133,144,1,'jones-ivanov.e.teddy@sample.org',1,0,0,0,NULL,NULL,NULL,NULL),(134,144,1,'jones-ivanovt@spamalot.co.nz',0,0,0,0,NULL,NULL,NULL,NULL),(135,164,1,'brzczysawprentice89@infomail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(136,164,1,'prenticeb@testmail.info',0,0,0,0,NULL,NULL,NULL,NULL),(137,106,1,'jinajones-prentice@lol.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(138,106,1,'jones-prentice.jina65@example.org',0,0,0,0,NULL,NULL,NULL,NULL),(139,73,1,'prenticek@mymail.com',1,0,0,0,NULL,NULL,NULL,NULL),(140,105,1,'prentice.eleonor@notmail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(141,105,1,'eleonorprentice@airmail.co.nz',0,0,0,0,NULL,NULL,NULL,NULL),(142,197,1,'cruz.esta@testmail.com',1,0,0,0,NULL,NULL,NULL,NULL),(143,197,1,'cruze66@airmail.net',0,0,0,0,NULL,NULL,NULL,NULL),(144,196,1,'elinacruz69@fishmail.org',1,0,0,0,NULL,NULL,NULL,NULL),(145,196,1,'elinac@infomail.co.uk',0,0,0,0,NULL,NULL,NULL,NULL),(146,201,1,'roberts.daren49@sample.com',1,0,0,0,NULL,NULL,NULL,NULL),(147,201,1,'roberts.b.daren@example.org',0,0,0,0,NULL,NULL,NULL,NULL),(148,140,1,'lashawndachowski-roberts68@testmail.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(149,27,1,'roberts.valene@mymail.org',1,0,0,0,NULL,NULL,NULL,NULL),(150,27,1,'roberts.valene91@mymail.co.in',0,0,0,0,NULL,NULL,NULL,NULL),(151,97,1,'roberts.margaret@spamalot.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(152,97,1,'margaretr@testmail.org',0,0,0,0,NULL,NULL,NULL,NULL),(153,35,1,'andrewc@mymail.org',1,0,0,0,NULL,NULL,NULL,NULL),(154,79,1,'terry-coopers36@infomail.com',1,0,0,0,NULL,NULL,NULL,NULL),(155,79,1,'scarletterry-cooper17@spamalot.co.pl',0,0,0,0,NULL,NULL,NULL,NULL),(156,47,1,'cooper.brittney@mymail.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(157,47,1,'cooperb95@airmail.co.uk',0,0,0,0,NULL,NULL,NULL,NULL),(158,61,1,'cooperk@infomail.net',1,0,0,0,NULL,NULL,NULL,NULL),(159,134,1,'bachman.billy@example.net',1,0,0,0,NULL,NULL,NULL,NULL),(160,134,1,'bbachman94@lol.biz',0,0,0,0,NULL,NULL,NULL,NULL),(161,122,1,'ashliebachman-wattson@notmail.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(162,122,1,'bachman-wattson.e.ashlie@infomail.co.nz',0,0,0,0,NULL,NULL,NULL,NULL),(163,37,1,'bachman-wattson.carlos@airmail.biz',1,0,0,0,NULL,NULL,NULL,NULL),(164,102,1,'cooper.m.jacob53@testmail.net',1,0,0,0,NULL,NULL,NULL,NULL),(165,102,1,'cooper.jacob@testmail.biz',0,0,0,0,NULL,NULL,NULL,NULL),(166,26,1,'meicooper@testing.biz',1,0,0,0,NULL,NULL,NULL,NULL),(167,26,1,'meicooper93@fakemail.co.uk',0,0,0,0,NULL,NULL,NULL,NULL),(168,179,1,'ocooper33@example.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(169,179,1,'cooper.omar@infomail.co.in',0,0,0,0,NULL,NULL,NULL,NULL),(170,130,1,'shermans15@fishmail.org',1,0,0,0,NULL,NULL,NULL,NULL),(171,130,1,'samson.sherman@testmail.info',0,0,0,0,NULL,NULL,NULL,NULL),(172,141,1,'herminias38@airmail.com',1,0,0,0,NULL,NULL,NULL,NULL),(173,86,1,'samsonn21@fakemail.info',1,0,0,0,NULL,NULL,NULL,NULL),(174,86,1,'nsamson@notmail.info',0,0,0,0,NULL,NULL,NULL,NULL),(175,70,1,'estasamson@testing.net',1,0,0,0,NULL,NULL,NULL,NULL),(176,70,1,'esamson41@mymail.com',0,0,0,0,NULL,NULL,NULL,NULL),(177,162,3,'service@unitedalliance.org',1,0,0,0,NULL,NULL,NULL,NULL),(178,64,2,'cruz-mllerp@unitedalliance.org',0,0,0,0,NULL,NULL,NULL,NULL),(179,88,3,'sales@indianadevelopmentalliance.org',1,0,0,0,NULL,NULL,NULL,NULL),(180,108,2,'jensenj@indianadevelopmentalliance.org',0,0,0,0,NULL,NULL,NULL,NULL),(181,151,3,'service@bathactioncollective.org',1,0,0,0,NULL,NULL,NULL,NULL),(182,44,2,'le.jones@bathactioncollective.org',0,0,0,0,NULL,NULL,NULL,NULL),(183,169,3,'contact@mckenneysoftware.org',1,0,0,0,NULL,NULL,NULL,NULL),(184,118,2,'mcreynolds.juliann23@mckenneysoftware.org',0,0,0,0,NULL,NULL,NULL,NULL),(185,10,3,'sales@nebraskasolutions.org',1,0,0,0,NULL,NULL,NULL,NULL),(186,45,2,'.@nebraskasolutions.org',0,0,0,0,NULL,NULL,NULL,NULL),(187,100,3,'info@leburndevelopment.org',1,0,0,0,NULL,NULL,NULL,NULL),(188,84,3,'feedback@creativemusicnetwork.org',1,0,0,0,NULL,NULL,NULL,NULL),(189,97,2,'margaretr90@creativemusicnetwork.org',0,0,0,0,NULL,NULL,NULL,NULL),(190,195,3,'info@iolafamilyfellowship.org',1,0,0,0,NULL,NULL,NULL,NULL),(191,92,2,'wilsonv65@iolafamilyfellowship.org',1,0,0,0,NULL,NULL,NULL,NULL),(192,101,3,'info@lincolnagriculturesolutions.org',1,0,0,0,NULL,NULL,NULL,NULL),(193,43,2,'@lincolnagriculturesolutions.org',0,0,0,0,NULL,NULL,NULL,NULL),(194,178,3,'info@wisconsinactionfund.org',1,0,0,0,NULL,NULL,NULL,NULL),(195,123,2,'bettyadams@wisconsinactionfund.org',1,0,0,0,NULL,NULL,NULL,NULL),(196,34,3,'sales@ruralliteracy.org',1,0,0,0,NULL,NULL,NULL,NULL),(197,21,2,'jensen.alexia6@ruralliteracy.org',1,0,0,0,NULL,NULL,NULL,NULL),(198,16,3,'info@arkansasfellowship.org',1,0,0,0,NULL,NULL,NULL,NULL),(199,14,2,'cp.ivanov7@arkansasfellowship.org',0,0,0,0,NULL,NULL,NULL,NULL),(200,103,3,'info@creativefamilyalliance.org',1,0,0,0,NULL,NULL,NULL,NULL),(201,196,2,'cruze@creativefamilyalliance.org',0,0,0,0,NULL,NULL,NULL,NULL),(202,99,3,'feedback@wfdevelopmentcollective.org',1,0,0,0,NULL,NULL,NULL,NULL),(203,172,2,'santinaj@wfdevelopmentcollective.org',1,0,0,0,NULL,NULL,NULL,NULL),(204,NULL,1,'development@example.org',0,0,0,0,NULL,NULL,NULL,NULL),(205,NULL,1,'tournaments@example.org',0,0,0,0,NULL,NULL,NULL,NULL),(206,NULL,1,'celebration@example.org',0,0,0,0,NULL,NULL,NULL,NULL); /*!40000 ALTER TABLE `civicrm_email` ENABLE KEYS */; UNLOCK TABLES; @@ -447,7 +447,7 @@ UNLOCK TABLES; LOCK TABLES `civicrm_entity_financial_trxn` WRITE; /*!40000 ALTER TABLE `civicrm_entity_financial_trxn` DISABLE KEYS */; -INSERT INTO `civicrm_entity_financial_trxn` (`id`, `entity_table`, `entity_id`, `financial_trxn_id`, `amount`) VALUES (1,'civicrm_contribution',1,1,125.00),(2,'civicrm_financial_item',1,1,125.00),(3,'civicrm_contribution',2,2,50.00),(4,'civicrm_financial_item',2,2,50.00),(5,'civicrm_contribution',3,3,25.00),(6,'civicrm_financial_item',3,3,25.00),(7,'civicrm_contribution',4,4,50.00),(8,'civicrm_financial_item',4,4,50.00),(9,'civicrm_contribution',5,5,500.00),(10,'civicrm_financial_item',5,5,500.00),(11,'civicrm_contribution',6,6,175.00),(12,'civicrm_financial_item',6,6,175.00),(13,'civicrm_contribution',7,7,50.00),(14,'civicrm_financial_item',7,7,50.00),(15,'civicrm_contribution',8,8,10.00),(16,'civicrm_financial_item',8,8,10.00),(17,'civicrm_contribution',9,9,250.00),(18,'civicrm_financial_item',9,9,250.00),(19,'civicrm_contribution',10,10,500.00),(20,'civicrm_financial_item',10,10,500.00),(21,'civicrm_contribution',11,11,200.00),(22,'civicrm_financial_item',11,11,200.00),(23,'civicrm_contribution',12,12,200.00),(24,'civicrm_financial_item',12,12,200.00),(25,'civicrm_contribution',13,13,200.00),(26,'civicrm_financial_item',13,13,200.00),(27,'civicrm_contribution',14,14,100.00),(28,'civicrm_financial_item',14,14,100.00),(29,'civicrm_contribution',15,15,100.00),(30,'civicrm_financial_item',15,15,100.00),(31,'civicrm_contribution',16,16,100.00),(32,'civicrm_financial_item',16,16,100.00),(33,'civicrm_contribution',17,17,100.00),(34,'civicrm_financial_item',17,17,100.00),(35,'civicrm_contribution',18,18,100.00),(36,'civicrm_financial_item',18,18,100.00),(37,'civicrm_contribution',19,19,100.00),(38,'civicrm_financial_item',19,19,100.00),(39,'civicrm_contribution',20,20,100.00),(40,'civicrm_financial_item',20,20,100.00),(41,'civicrm_contribution',21,21,100.00),(42,'civicrm_financial_item',21,21,100.00),(43,'civicrm_contribution',22,22,100.00),(44,'civicrm_financial_item',22,22,100.00),(45,'civicrm_contribution',23,23,100.00),(46,'civicrm_financial_item',23,23,100.00),(47,'civicrm_contribution',24,24,100.00),(48,'civicrm_financial_item',24,24,100.00),(49,'civicrm_contribution',25,25,100.00),(50,'civicrm_financial_item',25,25,100.00),(51,'civicrm_contribution',26,26,100.00),(52,'civicrm_financial_item',26,26,100.00),(53,'civicrm_contribution',27,27,100.00),(54,'civicrm_financial_item',27,27,100.00),(55,'civicrm_contribution',28,28,100.00),(56,'civicrm_financial_item',28,28,100.00),(57,'civicrm_contribution',29,29,100.00),(58,'civicrm_financial_item',29,29,100.00),(59,'civicrm_contribution',30,30,100.00),(60,'civicrm_financial_item',30,30,100.00),(61,'civicrm_contribution',31,31,50.00),(62,'civicrm_financial_item',31,31,50.00),(63,'civicrm_contribution',32,32,50.00),(64,'civicrm_financial_item',32,32,50.00),(65,'civicrm_contribution',33,33,50.00),(66,'civicrm_financial_item',33,33,50.00),(67,'civicrm_contribution',34,34,50.00),(68,'civicrm_financial_item',34,34,50.00),(69,'civicrm_contribution',35,35,50.00),(70,'civicrm_financial_item',35,35,50.00),(71,'civicrm_contribution',36,36,50.00),(72,'civicrm_financial_item',36,36,50.00),(73,'civicrm_contribution',37,37,50.00),(74,'civicrm_financial_item',37,37,50.00),(75,'civicrm_contribution',38,38,50.00),(76,'civicrm_financial_item',38,38,50.00),(77,'civicrm_contribution',39,39,50.00),(78,'civicrm_financial_item',39,39,50.00),(79,'civicrm_contribution',40,40,50.00),(80,'civicrm_financial_item',40,40,50.00),(81,'civicrm_contribution',41,41,50.00),(82,'civicrm_financial_item',41,41,50.00),(83,'civicrm_contribution',42,42,1200.00),(84,'civicrm_financial_item',42,42,1200.00),(85,'civicrm_contribution',43,43,1200.00),(86,'civicrm_financial_item',43,43,1200.00),(87,'civicrm_contribution',91,44,50.00),(88,'civicrm_financial_item',44,44,50.00),(89,'civicrm_contribution',88,45,50.00),(90,'civicrm_financial_item',45,45,50.00),(91,'civicrm_contribution',89,46,50.00),(92,'civicrm_financial_item',46,46,50.00),(93,'civicrm_contribution',48,47,50.00),(94,'civicrm_financial_item',47,47,50.00),(95,'civicrm_contribution',63,48,50.00),(96,'civicrm_financial_item',48,48,50.00),(97,'civicrm_contribution',68,49,50.00),(98,'civicrm_financial_item',49,49,50.00),(99,'civicrm_contribution',94,50,50.00),(100,'civicrm_financial_item',50,50,50.00),(101,'civicrm_contribution',46,51,50.00),(102,'civicrm_financial_item',51,51,50.00),(103,'civicrm_contribution',51,52,50.00),(104,'civicrm_financial_item',52,52,50.00),(105,'civicrm_contribution',56,53,50.00),(106,'civicrm_financial_item',53,53,50.00),(107,'civicrm_contribution',84,54,50.00),(108,'civicrm_financial_item',54,54,50.00),(109,'civicrm_contribution',52,55,50.00),(110,'civicrm_financial_item',55,55,50.00),(111,'civicrm_contribution',65,56,50.00),(112,'civicrm_financial_item',56,56,50.00),(113,'civicrm_contribution',93,57,50.00),(114,'civicrm_financial_item',57,57,50.00),(115,'civicrm_contribution',83,58,50.00),(116,'civicrm_financial_item',58,58,50.00),(117,'civicrm_contribution',50,59,50.00),(118,'civicrm_financial_item',59,59,50.00),(119,'civicrm_contribution',49,60,800.00),(120,'civicrm_financial_item',60,60,800.00),(121,'civicrm_contribution',87,61,800.00),(122,'civicrm_financial_item',61,61,800.00),(123,'civicrm_contribution',57,62,800.00),(124,'civicrm_financial_item',62,62,800.00),(125,'civicrm_contribution',45,63,800.00),(126,'civicrm_financial_item',63,63,800.00),(127,'civicrm_contribution',76,64,800.00),(128,'civicrm_financial_item',64,64,800.00),(129,'civicrm_contribution',78,65,800.00),(130,'civicrm_financial_item',65,65,800.00),(131,'civicrm_contribution',59,66,800.00),(132,'civicrm_financial_item',66,66,800.00),(133,'civicrm_contribution',75,67,800.00),(134,'civicrm_financial_item',67,67,800.00),(135,'civicrm_contribution',85,68,800.00),(136,'civicrm_financial_item',68,68,800.00),(137,'civicrm_contribution',71,69,800.00),(138,'civicrm_financial_item',69,69,800.00),(139,'civicrm_contribution',70,70,800.00),(140,'civicrm_financial_item',70,70,800.00),(141,'civicrm_contribution',82,71,800.00),(142,'civicrm_financial_item',71,71,800.00),(143,'civicrm_contribution',80,72,800.00),(144,'civicrm_financial_item',72,72,800.00),(145,'civicrm_contribution',77,73,800.00),(146,'civicrm_financial_item',73,73,800.00),(147,'civicrm_contribution',69,74,800.00),(148,'civicrm_financial_item',74,74,800.00),(149,'civicrm_contribution',74,75,800.00),(150,'civicrm_financial_item',75,75,800.00),(151,'civicrm_contribution',54,76,800.00),(152,'civicrm_financial_item',76,76,800.00),(153,'civicrm_contribution',72,77,800.00),(154,'civicrm_financial_item',77,77,800.00),(155,'civicrm_contribution',47,78,50.00),(156,'civicrm_financial_item',78,78,50.00),(157,'civicrm_contribution',62,79,50.00),(158,'civicrm_financial_item',79,79,50.00),(159,'civicrm_contribution',90,80,50.00),(160,'civicrm_financial_item',80,80,50.00),(161,'civicrm_contribution',53,81,50.00),(162,'civicrm_financial_item',81,81,50.00),(163,'civicrm_contribution',73,82,50.00),(164,'civicrm_financial_item',82,82,50.00),(165,'civicrm_contribution',66,83,50.00),(166,'civicrm_financial_item',83,83,50.00),(167,'civicrm_contribution',60,84,50.00),(168,'civicrm_financial_item',84,84,50.00),(169,'civicrm_contribution',64,85,50.00),(170,'civicrm_financial_item',85,85,50.00),(171,'civicrm_contribution',61,86,50.00),(172,'civicrm_financial_item',86,86,50.00),(173,'civicrm_contribution',86,87,50.00),(174,'civicrm_financial_item',87,87,50.00),(175,'civicrm_contribution',58,88,50.00),(176,'civicrm_financial_item',88,88,50.00),(177,'civicrm_contribution',67,89,50.00),(178,'civicrm_financial_item',89,89,50.00),(179,'civicrm_contribution',55,90,50.00),(180,'civicrm_financial_item',90,90,50.00),(181,'civicrm_contribution',92,91,50.00),(182,'civicrm_financial_item',91,91,50.00),(183,'civicrm_contribution',81,92,50.00),(184,'civicrm_financial_item',92,92,50.00),(185,'civicrm_contribution',79,93,50.00),(186,'civicrm_financial_item',93,93,50.00); +INSERT INTO `civicrm_entity_financial_trxn` (`id`, `entity_table`, `entity_id`, `financial_trxn_id`, `amount`) VALUES (1,'civicrm_contribution',1,1,125.00),(2,'civicrm_financial_item',1,1,125.00),(3,'civicrm_contribution',2,2,50.00),(4,'civicrm_financial_item',2,2,50.00),(5,'civicrm_contribution',3,3,25.00),(6,'civicrm_financial_item',3,3,25.00),(7,'civicrm_contribution',4,4,50.00),(8,'civicrm_financial_item',4,4,50.00),(9,'civicrm_contribution',5,5,500.00),(10,'civicrm_financial_item',5,5,500.00),(11,'civicrm_contribution',6,6,175.00),(12,'civicrm_financial_item',6,6,175.00),(13,'civicrm_contribution',7,7,50.00),(14,'civicrm_financial_item',7,7,50.00),(15,'civicrm_contribution',8,8,10.00),(16,'civicrm_financial_item',8,8,10.00),(17,'civicrm_contribution',9,9,250.00),(18,'civicrm_financial_item',9,9,250.00),(19,'civicrm_contribution',10,10,500.00),(20,'civicrm_financial_item',10,10,500.00),(21,'civicrm_contribution',11,11,200.00),(22,'civicrm_financial_item',11,11,200.00),(23,'civicrm_contribution',12,12,200.00),(24,'civicrm_financial_item',12,12,200.00),(25,'civicrm_contribution',13,13,200.00),(26,'civicrm_financial_item',13,13,200.00),(27,'civicrm_contribution',32,14,100.00),(28,'civicrm_financial_item',14,14,100.00),(29,'civicrm_contribution',38,15,50.00),(30,'civicrm_financial_item',15,15,50.00),(31,'civicrm_contribution',33,16,100.00),(32,'civicrm_financial_item',16,16,100.00),(33,'civicrm_contribution',25,17,50.00),(34,'civicrm_financial_item',17,17,50.00),(35,'civicrm_contribution',27,18,50.00),(36,'civicrm_financial_item',18,18,50.00),(37,'civicrm_contribution',15,19,50.00),(38,'civicrm_financial_item',19,19,50.00),(39,'civicrm_contribution',39,20,50.00),(40,'civicrm_financial_item',20,20,50.00),(41,'civicrm_contribution',18,21,100.00),(42,'civicrm_financial_item',21,21,100.00),(43,'civicrm_contribution',24,22,1200.00),(44,'civicrm_financial_item',22,22,1200.00),(45,'civicrm_contribution',22,23,100.00),(46,'civicrm_financial_item',23,23,100.00),(47,'civicrm_contribution',21,24,50.00),(48,'civicrm_financial_item',24,24,50.00),(49,'civicrm_contribution',17,25,50.00),(50,'civicrm_financial_item',25,25,50.00),(51,'civicrm_contribution',37,26,50.00),(52,'civicrm_financial_item',26,26,50.00),(53,'civicrm_contribution',43,27,50.00),(54,'civicrm_financial_item',27,27,50.00),(55,'civicrm_contribution',42,28,100.00),(56,'civicrm_financial_item',28,28,100.00),(57,'civicrm_contribution',16,29,100.00),(58,'civicrm_financial_item',29,29,100.00),(59,'civicrm_contribution',28,30,50.00),(60,'civicrm_financial_item',30,30,50.00),(61,'civicrm_contribution',20,31,100.00),(62,'civicrm_financial_item',31,31,100.00),(63,'civicrm_contribution',40,32,100.00),(64,'civicrm_financial_item',32,32,100.00),(65,'civicrm_contribution',35,33,1200.00),(66,'civicrm_financial_item',33,33,1200.00),(67,'civicrm_contribution',41,34,50.00),(68,'civicrm_financial_item',34,34,50.00),(69,'civicrm_contribution',34,35,100.00),(70,'civicrm_financial_item',35,35,100.00),(71,'civicrm_contribution',26,36,100.00),(72,'civicrm_financial_item',36,36,100.00),(73,'civicrm_contribution',31,37,50.00),(74,'civicrm_financial_item',37,37,50.00),(75,'civicrm_contribution',36,38,100.00),(76,'civicrm_financial_item',38,38,100.00),(77,'civicrm_contribution',29,39,50.00),(78,'civicrm_financial_item',39,39,50.00),(79,'civicrm_contribution',30,40,100.00),(80,'civicrm_financial_item',40,40,100.00),(81,'civicrm_contribution',23,41,50.00),(82,'civicrm_financial_item',41,41,50.00),(83,'civicrm_contribution',19,42,50.00),(84,'civicrm_financial_item',42,42,50.00),(85,'civicrm_contribution',14,43,100.00),(86,'civicrm_financial_item',43,43,100.00),(87,'civicrm_contribution',72,44,50.00),(88,'civicrm_financial_item',44,44,50.00),(89,'civicrm_contribution',65,45,50.00),(90,'civicrm_financial_item',45,45,50.00),(91,'civicrm_contribution',89,46,800.00),(92,'civicrm_financial_item',46,46,800.00),(93,'civicrm_contribution',49,47,50.00),(94,'civicrm_financial_item',47,47,50.00),(95,'civicrm_contribution',71,48,800.00),(96,'civicrm_financial_item',48,48,800.00),(97,'civicrm_contribution',47,49,50.00),(98,'civicrm_financial_item',49,49,50.00),(99,'civicrm_contribution',66,50,50.00),(100,'civicrm_financial_item',50,50,50.00),(101,'civicrm_contribution',69,51,800.00),(102,'civicrm_financial_item',51,51,800.00),(103,'civicrm_contribution',51,52,50.00),(104,'civicrm_financial_item',52,52,50.00),(105,'civicrm_contribution',87,53,800.00),(106,'civicrm_financial_item',53,53,800.00),(107,'civicrm_contribution',57,54,50.00),(108,'civicrm_financial_item',54,54,50.00),(109,'civicrm_contribution',77,55,800.00),(110,'civicrm_financial_item',55,55,800.00),(111,'civicrm_contribution',68,56,50.00),(112,'civicrm_financial_item',56,56,50.00),(113,'civicrm_contribution',54,57,50.00),(114,'civicrm_financial_item',57,57,50.00),(115,'civicrm_contribution',59,58,50.00),(116,'civicrm_financial_item',58,58,50.00),(117,'civicrm_contribution',82,59,50.00),(118,'civicrm_financial_item',59,59,50.00),(119,'civicrm_contribution',67,60,50.00),(120,'civicrm_financial_item',60,60,50.00),(121,'civicrm_contribution',45,61,800.00),(122,'civicrm_financial_item',61,61,800.00),(123,'civicrm_contribution',85,62,50.00),(124,'civicrm_financial_item',62,62,50.00),(125,'civicrm_contribution',91,63,800.00),(126,'civicrm_financial_item',63,63,800.00),(127,'civicrm_contribution',46,64,50.00),(128,'civicrm_financial_item',64,64,50.00),(129,'civicrm_contribution',76,65,50.00),(130,'civicrm_financial_item',65,65,50.00),(131,'civicrm_contribution',63,66,50.00),(132,'civicrm_financial_item',66,66,50.00),(133,'civicrm_contribution',61,67,50.00),(134,'civicrm_financial_item',67,67,50.00),(135,'civicrm_contribution',90,68,50.00),(136,'civicrm_financial_item',68,68,50.00),(137,'civicrm_contribution',93,69,800.00),(138,'civicrm_financial_item',69,69,800.00),(139,'civicrm_contribution',74,70,800.00),(140,'civicrm_financial_item',70,70,800.00),(141,'civicrm_contribution',84,71,50.00),(142,'civicrm_financial_item',71,71,50.00),(143,'civicrm_contribution',58,72,50.00),(144,'civicrm_financial_item',72,72,50.00),(145,'civicrm_contribution',64,73,800.00),(146,'civicrm_financial_item',73,73,800.00),(147,'civicrm_contribution',88,74,800.00),(148,'civicrm_financial_item',74,74,800.00),(149,'civicrm_contribution',73,75,800.00),(150,'civicrm_financial_item',75,75,800.00),(151,'civicrm_contribution',79,76,50.00),(152,'civicrm_financial_item',76,76,50.00),(153,'civicrm_contribution',62,77,50.00),(154,'civicrm_financial_item',77,77,50.00),(155,'civicrm_contribution',55,78,800.00),(156,'civicrm_financial_item',78,78,800.00),(157,'civicrm_contribution',86,79,800.00),(158,'civicrm_financial_item',79,79,800.00),(159,'civicrm_contribution',70,80,50.00),(160,'civicrm_financial_item',80,80,50.00),(161,'civicrm_contribution',52,81,50.00),(162,'civicrm_financial_item',81,81,50.00),(163,'civicrm_contribution',83,82,800.00),(164,'civicrm_financial_item',82,82,800.00),(165,'civicrm_contribution',94,83,800.00),(166,'civicrm_financial_item',83,83,800.00),(167,'civicrm_contribution',75,84,50.00),(168,'civicrm_financial_item',84,84,50.00),(169,'civicrm_contribution',53,85,50.00),(170,'civicrm_financial_item',85,85,50.00),(171,'civicrm_contribution',48,86,50.00),(172,'civicrm_financial_item',86,86,50.00),(173,'civicrm_contribution',92,87,50.00),(174,'civicrm_financial_item',87,87,50.00),(175,'civicrm_contribution',81,88,50.00),(176,'civicrm_financial_item',88,88,50.00),(177,'civicrm_contribution',50,89,800.00),(178,'civicrm_financial_item',89,89,800.00),(179,'civicrm_contribution',56,90,800.00),(180,'civicrm_financial_item',90,90,800.00),(181,'civicrm_contribution',80,91,50.00),(182,'civicrm_financial_item',91,91,50.00),(183,'civicrm_contribution',78,92,50.00),(184,'civicrm_financial_item',92,92,50.00),(185,'civicrm_contribution',60,93,50.00),(186,'civicrm_financial_item',93,93,50.00); /*!40000 ALTER TABLE `civicrm_entity_financial_trxn` ENABLE KEYS */; UNLOCK TABLES; @@ -457,7 +457,7 @@ UNLOCK TABLES; LOCK TABLES `civicrm_entity_tag` WRITE; /*!40000 ALTER TABLE `civicrm_entity_tag` DISABLE KEYS */; -INSERT INTO `civicrm_entity_tag` (`id`, `entity_table`, `entity_id`, `tag_id`) VALUES (63,'civicrm_contact',2,4),(41,'civicrm_contact',8,5),(77,'civicrm_contact',11,4),(35,'civicrm_contact',19,4),(47,'civicrm_contact',22,5),(54,'civicrm_contact',23,4),(95,'civicrm_contact',26,4),(7,'civicrm_contact',30,1),(64,'civicrm_contact',31,4),(106,'civicrm_contact',33,4),(107,'civicrm_contact',33,5),(71,'civicrm_contact',34,5),(101,'civicrm_contact',38,5),(31,'civicrm_contact',41,4),(15,'civicrm_contact',42,4),(16,'civicrm_contact',42,5),(93,'civicrm_contact',45,4),(94,'civicrm_contact',45,5),(25,'civicrm_contact',47,4),(89,'civicrm_contact',48,4),(90,'civicrm_contact',48,5),(105,'civicrm_contact',50,5),(10,'civicrm_contact',51,3),(42,'civicrm_contact',54,4),(43,'civicrm_contact',54,5),(37,'civicrm_contact',59,5),(26,'civicrm_contact',61,4),(6,'civicrm_contact',64,3),(24,'civicrm_contact',65,5),(67,'civicrm_contact',66,4),(68,'civicrm_contact',66,5),(39,'civicrm_contact',67,5),(96,'civicrm_contact',73,5),(98,'civicrm_contact',74,5),(49,'civicrm_contact',81,4),(50,'civicrm_contact',81,5),(40,'civicrm_contact',82,4),(28,'civicrm_contact',84,4),(29,'civicrm_contact',84,5),(111,'civicrm_contact',85,4),(2,'civicrm_contact',86,3),(69,'civicrm_contact',87,4),(70,'civicrm_contact',87,5),(104,'civicrm_contact',88,5),(53,'civicrm_contact',91,5),(99,'civicrm_contact',92,5),(12,'civicrm_contact',93,4),(13,'civicrm_contact',93,5),(19,'civicrm_contact',94,4),(21,'civicrm_contact',97,5),(1,'civicrm_contact',98,3),(78,'civicrm_contact',99,4),(79,'civicrm_contact',99,5),(27,'civicrm_contact',101,5),(4,'civicrm_contact',103,1),(102,'civicrm_contact',106,5),(109,'civicrm_contact',109,4),(5,'civicrm_contact',111,2),(76,'civicrm_contact',112,4),(110,'civicrm_contact',118,5),(38,'civicrm_contact',119,5),(84,'civicrm_contact',120,4),(85,'civicrm_contact',120,5),(108,'civicrm_contact',122,5),(61,'civicrm_contact',123,4),(62,'civicrm_contact',123,5),(32,'civicrm_contact',124,5),(80,'civicrm_contact',126,4),(81,'civicrm_contact',126,5),(46,'civicrm_contact',127,5),(74,'civicrm_contact',133,5),(112,'civicrm_contact',134,5),(88,'civicrm_contact',136,4),(82,'civicrm_contact',137,4),(91,'civicrm_contact',138,4),(92,'civicrm_contact',138,5),(48,'civicrm_contact',139,5),(65,'civicrm_contact',144,4),(66,'civicrm_contact',144,5),(30,'civicrm_contact',145,5),(9,'civicrm_contact',146,3),(73,'civicrm_contact',148,5),(52,'civicrm_contact',151,4),(86,'civicrm_contact',153,4),(87,'civicrm_contact',153,5),(20,'civicrm_contact',154,5),(97,'civicrm_contact',155,5),(59,'civicrm_contact',156,4),(60,'civicrm_contact',156,5),(23,'civicrm_contact',157,4),(44,'civicrm_contact',162,4),(45,'civicrm_contact',162,5),(57,'civicrm_contact',168,4),(58,'civicrm_contact',168,5),(100,'civicrm_contact',170,4),(55,'civicrm_contact',171,4),(56,'civicrm_contact',171,5),(72,'civicrm_contact',173,4),(113,'civicrm_contact',175,5),(3,'civicrm_contact',176,1),(22,'civicrm_contact',178,4),(14,'civicrm_contact',184,5),(103,'civicrm_contact',185,4),(33,'civicrm_contact',186,4),(34,'civicrm_contact',186,5),(75,'civicrm_contact',187,4),(51,'civicrm_contact',191,5),(11,'civicrm_contact',196,5),(83,'civicrm_contact',197,5),(17,'civicrm_contact',198,4),(18,'civicrm_contact',198,5),(36,'civicrm_contact',200,4),(8,'civicrm_contact',201,3); +INSERT INTO `civicrm_entity_tag` (`id`, `entity_table`, `entity_id`, `tag_id`) VALUES (44,'civicrm_contact',2,4),(61,'civicrm_contact',4,4),(86,'civicrm_contact',6,4),(87,'civicrm_contact',6,5),(92,'civicrm_contact',8,5),(37,'civicrm_contact',9,4),(38,'civicrm_contact',9,5),(5,'civicrm_contact',10,1),(43,'civicrm_contact',14,4),(83,'civicrm_contact',15,4),(84,'civicrm_contact',15,5),(54,'civicrm_contact',18,4),(55,'civicrm_contact',18,5),(68,'civicrm_contact',19,5),(69,'civicrm_contact',21,4),(70,'civicrm_contact',21,5),(85,'civicrm_contact',22,4),(16,'civicrm_contact',23,4),(59,'civicrm_contact',24,4),(60,'civicrm_contact',24,5),(104,'civicrm_contact',27,4),(105,'civicrm_contact',27,5),(62,'civicrm_contact',30,4),(63,'civicrm_contact',30,5),(42,'civicrm_contact',31,5),(9,'civicrm_contact',34,3),(106,'civicrm_contact',35,5),(14,'civicrm_contact',38,5),(2,'civicrm_contact',39,3),(95,'civicrm_contact',44,5),(64,'civicrm_contact',45,4),(65,'civicrm_contact',45,5),(107,'civicrm_contact',47,5),(17,'civicrm_contact',52,5),(52,'civicrm_contact',53,5),(31,'civicrm_contact',54,4),(32,'civicrm_contact',54,5),(56,'civicrm_contact',56,5),(45,'civicrm_contact',59,4),(23,'civicrm_contact',60,4),(24,'civicrm_contact',60,5),(27,'civicrm_contact',62,4),(117,'civicrm_contact',65,5),(12,'civicrm_contact',67,4),(99,'civicrm_contact',73,4),(96,'civicrm_contact',78,4),(97,'civicrm_contact',78,5),(75,'civicrm_contact',81,4),(76,'civicrm_contact',81,5),(114,'civicrm_contact',86,5),(66,'civicrm_contact',87,4),(67,'civicrm_contact',87,5),(18,'civicrm_contact',94,4),(29,'civicrm_contact',95,4),(6,'civicrm_contact',100,3),(110,'civicrm_contact',102,4),(111,'civicrm_contact',102,5),(10,'civicrm_contact',103,3),(21,'civicrm_contact',109,4),(30,'civicrm_contact',110,5),(39,'civicrm_contact',111,4),(40,'civicrm_contact',111,5),(28,'civicrm_contact',113,5),(77,'civicrm_contact',114,4),(78,'civicrm_contact',114,5),(79,'civicrm_contact',120,4),(80,'civicrm_contact',120,5),(109,'civicrm_contact',122,4),(82,'civicrm_contact',124,5),(19,'civicrm_contact',125,4),(25,'civicrm_contact',127,5),(50,'civicrm_contact',128,4),(46,'civicrm_contact',129,4),(47,'civicrm_contact',129,5),(113,'civicrm_contact',130,4),(108,'civicrm_contact',134,5),(36,'civicrm_contact',136,5),(93,'civicrm_contact',138,4),(94,'civicrm_contact',138,5),(81,'civicrm_contact',139,4),(51,'civicrm_contact',143,4),(11,'civicrm_contact',146,4),(13,'civicrm_contact',148,5),(3,'civicrm_contact',151,2),(33,'civicrm_contact',152,4),(15,'civicrm_contact',155,5),(1,'civicrm_contact',162,3),(100,'civicrm_contact',163,5),(98,'civicrm_contact',164,5),(115,'civicrm_contact',165,4),(116,'civicrm_contact',165,5),(57,'civicrm_contact',168,4),(58,'civicrm_contact',168,5),(20,'civicrm_contact',173,4),(90,'civicrm_contact',176,5),(73,'civicrm_contact',177,4),(74,'civicrm_contact',177,5),(8,'civicrm_contact',178,1),(112,'civicrm_contact',179,5),(88,'civicrm_contact',180,4),(89,'civicrm_contact',180,5),(91,'civicrm_contact',184,5),(48,'civicrm_contact',186,4),(49,'civicrm_contact',186,5),(35,'civicrm_contact',187,4),(34,'civicrm_contact',188,5),(26,'civicrm_contact',191,5),(41,'civicrm_contact',193,4),(22,'civicrm_contact',194,5),(7,'civicrm_contact',195,1),(101,'civicrm_contact',196,5),(71,'civicrm_contact',198,4),(72,'civicrm_contact',198,5),(4,'civicrm_contact',199,2),(53,'civicrm_contact',200,4),(102,'civicrm_contact',201,4),(103,'civicrm_contact',201,5); /*!40000 ALTER TABLE `civicrm_entity_tag` ENABLE KEYS */; UNLOCK TABLES; @@ -467,7 +467,7 @@ UNLOCK TABLES; LOCK TABLES `civicrm_event` WRITE; /*!40000 ALTER TABLE `civicrm_event` DISABLE KEYS */; -INSERT INTO `civicrm_event` (`id`, `title`, `summary`, `description`, `event_type_id`, `participant_listing_id`, `is_public`, `start_date`, `end_date`, `is_online_registration`, `registration_link_text`, `registration_start_date`, `registration_end_date`, `max_participants`, `event_full_text`, `is_monetary`, `financial_type_id`, `payment_processor`, `is_map`, `is_active`, `fee_label`, `is_show_location`, `loc_block_id`, `default_role_id`, `intro_text`, `footer_text`, `confirm_title`, `confirm_text`, `confirm_footer_text`, `is_email_confirm`, `confirm_email_text`, `confirm_from_name`, `confirm_from_email`, `cc_confirm`, `bcc_confirm`, `default_fee_id`, `default_discount_fee_id`, `thankyou_title`, `thankyou_text`, `thankyou_footer_text`, `is_pay_later`, `pay_later_text`, `pay_later_receipt`, `is_partial_payment`, `initial_amount_label`, `initial_amount_help_text`, `min_initial_amount`, `is_multiple_registrations`, `max_additional_participants`, `allow_same_participant_emails`, `has_waitlist`, `requires_approval`, `expiration_time`, `allow_selfcancelxfer`, `selfcancelxfer_time`, `waitlist_text`, `approval_req_text`, `is_template`, `template_title`, `created_id`, `created_date`, `currency`, `campaign_id`, `is_share`, `is_confirm_enabled`, `parent_event_id`, `slot_label_id`, `dedupe_rule_group_id`, `is_billing_required`) VALUES (1,'Fall Fundraiser Dinner','Kick up your heels at our Fall Fundraiser Dinner/Dance at Glen Echo Park! Come by yourself or bring a partner, friend or the entire family!','This event benefits our teen programs. Admission includes a full 3 course meal and wine or soft drinks. Grab your dancing shoes, bring the kids and come join the party!',3,1,1,'2018-11-19 17:00:00','2018-11-21 17:00:00',1,'Register Now',NULL,NULL,100,'Sorry! The Fall Fundraiser Dinner is full. Please call Jane at 204 222-1000 ext 33 if you want to be added to the waiting list.',1,4,NULL,1,1,'Dinner Contribution',1,1,1,'Fill in the information below to join as at this wonderful dinner event.',NULL,'Confirm Your Registration Information','Review the information below carefully.',NULL,1,'Contact the Development Department if you need to make any changes to your registration.','Fundraising Dept.','development@example.org',NULL,NULL,NULL,NULL,'Thanks for Registering!','

Thank you for your support. Your contribution will help us build even better tools.

Please tell your friends and colleagues about this wonderful event.

','

Back to CiviCRM Home Page

',1,'I will send payment by check','Send a check payable to Our Organization within 3 business days to hold your reservation. Checks should be sent to: 100 Main St., Suite 3, San Francisco CA 94110',0,NULL,NULL,NULL,1,0,0,NULL,NULL,NULL,0,0,NULL,NULL,0,NULL,NULL,NULL,'USD',NULL,1,1,NULL,NULL,NULL,0),(2,'Summer Solstice Festival Day Concert','Festival Day is coming! Join us and help support your parks.','We will gather at noon, learn a song all together, and then join in a joyous procession to the pavilion. We will be one of many groups performing at this wonderful concert which benefits our city parks.',5,1,1,'2018-05-18 12:00:00','2018-05-18 17:00:00',1,'Register Now',NULL,NULL,50,'We have all the singers we can handle. Come to the pavilion anyway and join in from the audience.',1,2,NULL,NULL,1,'Festival Fee',1,2,1,'Complete the form below and click Continue to register online for the festival. Or you can register by calling us at 204 222-1000 ext 22.','','Confirm Your Registration Information','','',1,'This email confirms your registration. If you have questions or need to change your registration - please do not hesitate to call us.','Event Dept.','events@example.org','',NULL,NULL,NULL,'Thanks for Your Joining In!','

Thank you for your support. Your participation will help build new parks.

Please tell your friends and colleagues about the concert.

','

Back to CiviCRM Home Page

',0,NULL,NULL,0,NULL,NULL,NULL,1,0,0,NULL,NULL,NULL,0,0,NULL,NULL,0,NULL,NULL,NULL,'USD',NULL,1,1,NULL,NULL,NULL,0),(3,'Rain-forest Cup Youth Soccer Tournament','Sign up your team to participate in this fun tournament which benefits several Rain-forest protection groups in the Amazon basin.','This is a FYSA Sanctioned Tournament, which is open to all USSF/FIFA affiliated organizations for boys and girls in age groups: U9-U10 (6v6), U11-U12 (8v8), and U13-U17 (Full Sided).',3,1,1,'2018-12-19 07:00:00','2018-12-22 17:00:00',1,'Register Now',NULL,NULL,500,'Sorry! All available team slots for this tournament have been filled. Contact Jill Futbol for information about the waiting list and next years event.',1,4,NULL,NULL,1,'Tournament Fees',1,3,1,'Complete the form below to register your team for this year\'s tournament.','A Soccer Youth Event','Review and Confirm Your Registration Information','','A Soccer Youth Event',1,'Contact our Tournament Director for eligibility details.','Tournament Director','tournament@example.org','',NULL,NULL,NULL,'Thanks for Your Support!','

Thank you for your support. Your participation will help save thousands of acres of rainforest.

','

Back to CiviCRM Home Page

',0,NULL,NULL,0,NULL,NULL,NULL,0,0,0,NULL,NULL,NULL,0,0,NULL,NULL,0,NULL,NULL,NULL,'USD',NULL,1,1,NULL,NULL,NULL,0),(4,NULL,NULL,NULL,4,1,1,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,0,1,NULL,1,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,0,0,NULL,NULL,1,'Free Meeting without Online Registration',NULL,NULL,'USD',NULL,1,1,NULL,NULL,NULL,0),(5,NULL,NULL,NULL,4,1,1,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,0,1,NULL,1,NULL,1,NULL,NULL,'Confirm Your Registration Information',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Thanks for Registering!',NULL,NULL,0,NULL,NULL,0,NULL,NULL,NULL,1,0,1,NULL,NULL,NULL,0,0,NULL,NULL,1,'Free Meeting with Online Registration',NULL,NULL,'USD',NULL,1,1,NULL,NULL,NULL,0),(6,NULL,NULL,NULL,1,1,1,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,1,4,NULL,0,1,'Conference Fee',1,NULL,1,NULL,NULL,'Confirm Your Registration Information',NULL,NULL,1,NULL,'Event Template Dept.','event_templates@example.org',NULL,NULL,NULL,NULL,'Thanks for Registering!',NULL,NULL,0,NULL,NULL,0,NULL,NULL,NULL,1,0,1,NULL,NULL,NULL,0,0,NULL,NULL,1,'Paid Conference with Online Registration',NULL,NULL,'USD',NULL,1,1,NULL,NULL,NULL,0); +INSERT INTO `civicrm_event` (`id`, `title`, `summary`, `description`, `event_type_id`, `participant_listing_id`, `is_public`, `start_date`, `end_date`, `is_online_registration`, `registration_link_text`, `registration_start_date`, `registration_end_date`, `max_participants`, `event_full_text`, `is_monetary`, `financial_type_id`, `payment_processor`, `is_map`, `is_active`, `fee_label`, `is_show_location`, `loc_block_id`, `default_role_id`, `intro_text`, `footer_text`, `confirm_title`, `confirm_text`, `confirm_footer_text`, `is_email_confirm`, `confirm_email_text`, `confirm_from_name`, `confirm_from_email`, `cc_confirm`, `bcc_confirm`, `default_fee_id`, `default_discount_fee_id`, `thankyou_title`, `thankyou_text`, `thankyou_footer_text`, `is_pay_later`, `pay_later_text`, `pay_later_receipt`, `is_partial_payment`, `initial_amount_label`, `initial_amount_help_text`, `min_initial_amount`, `is_multiple_registrations`, `max_additional_participants`, `allow_same_participant_emails`, `has_waitlist`, `requires_approval`, `expiration_time`, `allow_selfcancelxfer`, `selfcancelxfer_time`, `waitlist_text`, `approval_req_text`, `is_template`, `template_title`, `created_id`, `created_date`, `currency`, `campaign_id`, `is_share`, `is_confirm_enabled`, `parent_event_id`, `slot_label_id`, `dedupe_rule_group_id`, `is_billing_required`) VALUES (1,'Fall Fundraiser Dinner','Kick up your heels at our Fall Fundraiser Dinner/Dance at Glen Echo Park! Come by yourself or bring a partner, friend or the entire family!','This event benefits our teen programs. Admission includes a full 3 course meal and wine or soft drinks. Grab your dancing shoes, bring the kids and come join the party!',3,1,1,'2018-11-21 17:00:00','2018-11-23 17:00:00',1,'Register Now',NULL,NULL,100,'Sorry! The Fall Fundraiser Dinner is full. Please call Jane at 204 222-1000 ext 33 if you want to be added to the waiting list.',1,4,NULL,1,1,'Dinner Contribution',1,1,1,'Fill in the information below to join as at this wonderful dinner event.',NULL,'Confirm Your Registration Information','Review the information below carefully.',NULL,1,'Contact the Development Department if you need to make any changes to your registration.','Fundraising Dept.','development@example.org',NULL,NULL,NULL,NULL,'Thanks for Registering!','

Thank you for your support. Your contribution will help us build even better tools.

Please tell your friends and colleagues about this wonderful event.

','

Back to CiviCRM Home Page

',1,'I will send payment by check','Send a check payable to Our Organization within 3 business days to hold your reservation. Checks should be sent to: 100 Main St., Suite 3, San Francisco CA 94110',0,NULL,NULL,NULL,1,0,0,NULL,NULL,NULL,0,0,NULL,NULL,0,NULL,NULL,NULL,'USD',NULL,1,1,NULL,NULL,NULL,0),(2,'Summer Solstice Festival Day Concert','Festival Day is coming! Join us and help support your parks.','We will gather at noon, learn a song all together, and then join in a joyous procession to the pavilion. We will be one of many groups performing at this wonderful concert which benefits our city parks.',5,1,1,'2018-05-20 12:00:00','2018-05-20 17:00:00',1,'Register Now',NULL,NULL,50,'We have all the singers we can handle. Come to the pavilion anyway and join in from the audience.',1,2,NULL,NULL,1,'Festival Fee',1,2,1,'Complete the form below and click Continue to register online for the festival. Or you can register by calling us at 204 222-1000 ext 22.','','Confirm Your Registration Information','','',1,'This email confirms your registration. If you have questions or need to change your registration - please do not hesitate to call us.','Event Dept.','events@example.org','',NULL,NULL,NULL,'Thanks for Your Joining In!','

Thank you for your support. Your participation will help build new parks.

Please tell your friends and colleagues about the concert.

','

Back to CiviCRM Home Page

',0,NULL,NULL,0,NULL,NULL,NULL,1,0,0,NULL,NULL,NULL,0,0,NULL,NULL,0,NULL,NULL,NULL,'USD',NULL,1,1,NULL,NULL,NULL,0),(3,'Rain-forest Cup Youth Soccer Tournament','Sign up your team to participate in this fun tournament which benefits several Rain-forest protection groups in the Amazon basin.','This is a FYSA Sanctioned Tournament, which is open to all USSF/FIFA affiliated organizations for boys and girls in age groups: U9-U10 (6v6), U11-U12 (8v8), and U13-U17 (Full Sided).',3,1,1,'2018-12-21 07:00:00','2018-12-24 17:00:00',1,'Register Now',NULL,NULL,500,'Sorry! All available team slots for this tournament have been filled. Contact Jill Futbol for information about the waiting list and next years event.',1,4,NULL,NULL,1,'Tournament Fees',1,3,1,'Complete the form below to register your team for this year\'s tournament.','A Soccer Youth Event','Review and Confirm Your Registration Information','','A Soccer Youth Event',1,'Contact our Tournament Director for eligibility details.','Tournament Director','tournament@example.org','',NULL,NULL,NULL,'Thanks for Your Support!','

Thank you for your support. Your participation will help save thousands of acres of rainforest.

','

Back to CiviCRM Home Page

',0,NULL,NULL,0,NULL,NULL,NULL,0,0,0,NULL,NULL,NULL,0,0,NULL,NULL,0,NULL,NULL,NULL,'USD',NULL,1,1,NULL,NULL,NULL,0),(4,NULL,NULL,NULL,4,1,1,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,0,1,NULL,1,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,0,0,NULL,NULL,1,'Free Meeting without Online Registration',NULL,NULL,'USD',NULL,1,1,NULL,NULL,NULL,0),(5,NULL,NULL,NULL,4,1,1,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,0,1,NULL,1,NULL,1,NULL,NULL,'Confirm Your Registration Information',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Thanks for Registering!',NULL,NULL,0,NULL,NULL,0,NULL,NULL,NULL,1,0,1,NULL,NULL,NULL,0,0,NULL,NULL,1,'Free Meeting with Online Registration',NULL,NULL,'USD',NULL,1,1,NULL,NULL,NULL,0),(6,NULL,NULL,NULL,1,1,1,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,1,4,NULL,0,1,'Conference Fee',1,NULL,1,NULL,NULL,'Confirm Your Registration Information',NULL,NULL,1,NULL,'Event Template Dept.','event_templates@example.org',NULL,NULL,NULL,NULL,'Thanks for Registering!',NULL,NULL,0,NULL,NULL,0,NULL,NULL,NULL,1,0,1,NULL,NULL,NULL,0,0,NULL,NULL,1,'Paid Conference with Online Registration',NULL,NULL,'USD',NULL,1,1,NULL,NULL,NULL,0); /*!40000 ALTER TABLE `civicrm_event` ENABLE KEYS */; UNLOCK TABLES; @@ -523,7 +523,7 @@ UNLOCK TABLES; LOCK TABLES `civicrm_financial_item` WRITE; /*!40000 ALTER TABLE `civicrm_financial_item` DISABLE KEYS */; -INSERT INTO `civicrm_financial_item` (`id`, `created_date`, `transaction_date`, `contact_id`, `description`, `amount`, `currency`, `financial_account_id`, `status_id`, `entity_table`, `entity_id`) VALUES (1,'2018-05-19 05:31:52','2010-04-11 00:00:00',2,'Contribution Amount',125.00,'USD',1,1,'civicrm_line_item',1),(2,'2018-05-19 05:31:52','2010-03-21 00:00:00',4,'Contribution Amount',50.00,'USD',1,1,'civicrm_line_item',2),(3,'2018-05-19 05:31:52','2010-04-29 00:00:00',6,'Contribution Amount',25.00,'USD',1,1,'civicrm_line_item',3),(4,'2018-05-19 05:31:52','2010-04-11 00:00:00',8,'Contribution Amount',50.00,'USD',1,1,'civicrm_line_item',4),(5,'2018-05-19 05:31:52','2010-04-15 00:00:00',16,'Contribution Amount',500.00,'USD',1,1,'civicrm_line_item',5),(6,'2018-05-19 05:31:52','2010-04-11 00:00:00',19,'Contribution Amount',175.00,'USD',1,1,'civicrm_line_item',6),(7,'2018-05-19 05:31:52','2010-03-27 00:00:00',82,'Contribution Amount',50.00,'USD',1,1,'civicrm_line_item',7),(8,'2018-05-19 05:31:52','2010-03-08 00:00:00',92,'Contribution Amount',10.00,'USD',1,1,'civicrm_line_item',8),(9,'2018-05-19 05:31:52','2010-04-22 00:00:00',34,'Contribution Amount',250.00,'USD',1,1,'civicrm_line_item',9),(10,'2018-05-19 05:31:52','2009-07-01 11:53:50',71,'Contribution Amount',500.00,'USD',1,1,'civicrm_line_item',10),(11,'2018-05-19 05:31:52','2009-07-01 12:55:41',43,'Contribution Amount',200.00,'USD',1,1,'civicrm_line_item',11),(12,'2018-05-19 05:31:52','2009-10-01 11:53:50',32,'Contribution Amount',200.00,'USD',1,1,'civicrm_line_item',12),(13,'2018-05-19 05:31:52','2009-12-01 12:55:41',32,'Contribution Amount',200.00,'USD',1,1,'civicrm_line_item',13),(14,'2018-05-19 05:31:52','2018-05-19 15:31:51',173,'General',100.00,'USD',2,1,'civicrm_line_item',16),(15,'2018-05-19 05:31:52','2018-05-19 15:31:51',187,'General',100.00,'USD',2,1,'civicrm_line_item',17),(16,'2018-05-19 05:31:52','2018-05-19 15:31:51',118,'General',100.00,'USD',2,1,'civicrm_line_item',18),(17,'2018-05-19 05:31:52','2018-05-19 15:31:51',162,'General',100.00,'USD',2,1,'civicrm_line_item',19),(18,'2018-05-19 05:31:52','2018-05-19 15:31:51',195,'General',100.00,'USD',2,1,'civicrm_line_item',20),(19,'2018-05-19 05:31:52','2018-05-19 15:31:51',10,'General',100.00,'USD',2,1,'civicrm_line_item',21),(20,'2018-05-19 05:31:52','2018-05-19 15:31:51',166,'General',100.00,'USD',2,1,'civicrm_line_item',22),(21,'2018-05-19 05:31:52','2018-05-19 15:31:51',31,'General',100.00,'USD',2,1,'civicrm_line_item',23),(22,'2018-05-19 05:31:52','2018-05-19 15:31:51',128,'General',100.00,'USD',2,1,'civicrm_line_item',24),(23,'2018-05-19 05:31:52','2018-05-19 15:31:51',123,'General',100.00,'USD',2,1,'civicrm_line_item',25),(24,'2018-05-19 05:31:52','2018-05-19 15:31:51',106,'General',100.00,'USD',2,1,'civicrm_line_item',26),(25,'2018-05-19 05:31:52','2018-05-19 15:31:51',159,'General',100.00,'USD',2,1,'civicrm_line_item',27),(26,'2018-05-19 05:31:52','2018-05-19 15:31:51',78,'General',100.00,'USD',2,1,'civicrm_line_item',28),(27,'2018-05-19 05:31:52','2018-05-19 15:31:51',53,'General',100.00,'USD',2,1,'civicrm_line_item',29),(28,'2018-05-19 05:31:52','2018-05-19 15:31:51',196,'General',100.00,'USD',2,1,'civicrm_line_item',30),(29,'2018-05-19 05:31:52','2018-05-19 15:31:51',105,'General',100.00,'USD',2,1,'civicrm_line_item',31),(30,'2018-05-19 05:31:52','2018-05-19 15:31:51',14,'General',100.00,'USD',2,1,'civicrm_line_item',32),(31,'2018-05-19 05:31:52','2018-05-19 15:31:51',185,'Student',50.00,'USD',2,1,'civicrm_line_item',33),(32,'2018-05-19 05:31:52','2018-05-19 15:31:51',66,'Student',50.00,'USD',2,1,'civicrm_line_item',34),(33,'2018-05-19 05:31:52','2018-05-19 15:31:51',85,'Student',50.00,'USD',2,1,'civicrm_line_item',35),(34,'2018-05-19 05:31:52','2018-05-19 15:31:51',16,'Student',50.00,'USD',2,1,'civicrm_line_item',36),(35,'2018-05-19 05:31:52','2018-05-19 15:31:51',59,'Student',50.00,'USD',2,1,'civicrm_line_item',37),(36,'2018-05-19 05:31:52','2018-05-19 15:31:51',57,'Student',50.00,'USD',2,1,'civicrm_line_item',38),(37,'2018-05-19 05:31:52','2018-05-19 15:31:51',179,'Student',50.00,'USD',2,1,'civicrm_line_item',39),(38,'2018-05-19 05:31:52','2018-05-19 15:31:51',172,'Student',50.00,'USD',2,1,'civicrm_line_item',40),(39,'2018-05-19 05:31:52','2018-05-19 15:31:51',2,'Student',50.00,'USD',2,1,'civicrm_line_item',41),(40,'2018-05-19 05:31:52','2018-05-19 15:31:51',150,'Student',50.00,'USD',2,1,'civicrm_line_item',42),(41,'2018-05-19 05:31:52','2018-05-19 15:31:51',191,'Student',50.00,'USD',2,1,'civicrm_line_item',43),(42,'2018-05-19 05:31:52','2018-05-19 15:31:51',35,'Lifetime',1200.00,'USD',2,1,'civicrm_line_item',44),(43,'2018-05-19 05:31:52','2018-05-19 15:31:51',126,'Lifetime',1200.00,'USD',2,1,'civicrm_line_item',45),(44,'2018-05-19 05:31:52','2018-05-19 15:31:52',187,'Soprano',50.00,'USD',2,1,'civicrm_line_item',81),(45,'2018-05-19 05:31:52','2018-05-19 15:31:52',173,'Soprano',50.00,'USD',2,1,'civicrm_line_item',82),(46,'2018-05-19 05:31:53','2018-05-19 15:31:52',181,'Soprano',50.00,'USD',2,1,'civicrm_line_item',83),(47,'2018-05-19 05:31:53','2018-05-19 15:31:52',9,'Soprano',50.00,'USD',2,1,'civicrm_line_item',84),(48,'2018-05-19 05:31:53','2018-05-19 15:31:52',58,'Soprano',50.00,'USD',2,1,'civicrm_line_item',85),(49,'2018-05-19 05:31:53','2018-05-19 15:31:52',73,'Soprano',50.00,'USD',2,1,'civicrm_line_item',86),(50,'2018-05-19 05:31:53','2018-05-19 15:31:52',197,'Soprano',50.00,'USD',2,1,'civicrm_line_item',87),(51,'2018-05-19 05:31:53','2018-05-19 15:31:52',4,'Soprano',50.00,'USD',2,1,'civicrm_line_item',88),(52,'2018-05-19 05:31:53','2018-05-19 15:31:52',14,'Soprano',50.00,'USD',2,1,'civicrm_line_item',89),(53,'2018-05-19 05:31:53','2018-05-19 15:31:52',39,'Soprano',50.00,'USD',2,1,'civicrm_line_item',90),(54,'2018-05-19 05:31:53','2018-05-19 15:31:52',147,'Soprano',50.00,'USD',2,1,'civicrm_line_item',91),(55,'2018-05-19 05:31:53','2018-05-19 15:31:52',17,'Soprano',50.00,'USD',2,1,'civicrm_line_item',92),(56,'2018-05-19 05:31:53','2018-05-19 15:31:52',65,'Soprano',50.00,'USD',2,1,'civicrm_line_item',93),(57,'2018-05-19 05:31:53','2018-05-19 15:31:52',196,'Soprano',50.00,'USD',2,1,'civicrm_line_item',94),(58,'2018-05-19 05:31:53','2018-05-19 15:31:52',145,'Soprano',50.00,'USD',2,1,'civicrm_line_item',95),(59,'2018-05-19 05:31:53','2018-05-19 15:31:52',11,'Soprano',50.00,'USD',2,1,'civicrm_line_item',96),(60,'2018-05-19 05:31:53','2018-05-19 15:31:52',10,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',47),(61,'2018-05-19 05:31:53','2018-05-19 15:31:52',166,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',48),(62,'2018-05-19 05:31:53','2018-05-19 15:31:52',40,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',49),(63,'2018-05-19 05:31:53','2018-05-19 15:31:52',3,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',50),(64,'2018-05-19 05:31:53','2018-05-19 15:31:52',101,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',51),(65,'2018-05-19 05:31:53','2018-05-19 15:31:52',117,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',52),(66,'2018-05-19 05:31:53','2018-05-19 15:31:52',43,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',53),(67,'2018-05-19 05:31:53','2018-05-19 15:31:52',99,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',54),(68,'2018-05-19 05:31:53','2018-05-19 15:31:52',152,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',55),(69,'2018-05-19 05:31:53','2018-05-19 15:31:52',81,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',56),(70,'2018-05-19 05:31:53','2018-05-19 15:31:52',75,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',57),(71,'2018-05-19 05:31:53','2018-05-19 15:31:52',143,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',58),(72,'2018-05-19 05:31:53','2018-05-19 15:31:52',140,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',59),(73,'2018-05-19 05:31:53','2018-05-19 15:31:52',115,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',60),(74,'2018-05-19 05:31:53','2018-05-19 15:31:52',74,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',61),(75,'2018-05-19 05:31:53','2018-05-19 15:31:52',96,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',62),(76,'2018-05-19 05:31:53','2018-05-19 15:31:52',30,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',63),(77,'2018-05-19 05:31:53','2018-05-19 15:31:52',83,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',64),(78,'2018-05-19 05:31:53','2018-05-19 15:31:52',6,'Single',50.00,'USD',4,1,'civicrm_line_item',65),(79,'2018-05-19 05:31:53','2018-05-19 15:31:52',52,'Single',50.00,'USD',4,1,'civicrm_line_item',66),(80,'2018-05-19 05:31:53','2018-05-19 15:31:52',183,'Single',50.00,'USD',4,1,'civicrm_line_item',67),(81,'2018-05-19 05:31:53','2018-05-19 15:31:52',27,'Single',50.00,'USD',4,1,'civicrm_line_item',68),(82,'2018-05-19 05:31:53','2018-05-19 15:31:52',91,'Single',50.00,'USD',4,1,'civicrm_line_item',69),(83,'2018-05-19 05:31:53','2018-05-19 15:31:52',67,'Single',50.00,'USD',4,1,'civicrm_line_item',70),(84,'2018-05-19 05:31:53','2018-05-19 15:31:52',46,'Single',50.00,'USD',4,1,'civicrm_line_item',71),(85,'2018-05-19 05:31:53','2018-05-19 15:31:52',62,'Single',50.00,'USD',4,1,'civicrm_line_item',72),(86,'2018-05-19 05:31:53','2018-05-19 15:31:52',50,'Single',50.00,'USD',4,1,'civicrm_line_item',73),(87,'2018-05-19 05:31:53','2018-05-19 15:31:52',154,'Single',50.00,'USD',4,1,'civicrm_line_item',74),(88,'2018-05-19 05:31:54','2018-05-19 15:31:52',42,'Single',50.00,'USD',4,1,'civicrm_line_item',75),(89,'2018-05-19 05:31:54','2018-05-19 15:31:52',72,'Single',50.00,'USD',4,1,'civicrm_line_item',76),(90,'2018-05-19 05:31:54','2018-05-19 15:31:52',35,'Single',50.00,'USD',4,1,'civicrm_line_item',77),(91,'2018-05-19 05:31:54','2018-05-19 15:31:52',193,'Single',50.00,'USD',4,1,'civicrm_line_item',78),(92,'2018-05-19 05:31:54','2018-05-19 15:31:52',141,'Single',50.00,'USD',4,1,'civicrm_line_item',79),(93,'2018-05-19 05:31:54','2018-05-19 15:31:52',139,'Single',50.00,'USD',4,1,'civicrm_line_item',80); +INSERT INTO `civicrm_financial_item` (`id`, `created_date`, `transaction_date`, `contact_id`, `description`, `amount`, `currency`, `financial_account_id`, `status_id`, `entity_table`, `entity_id`) VALUES (1,'2018-05-21 20:27:23','2010-04-11 00:00:00',2,'Contribution Amount',125.00,'USD',1,1,'civicrm_line_item',1),(2,'2018-05-21 20:27:23','2010-03-21 00:00:00',4,'Contribution Amount',50.00,'USD',1,1,'civicrm_line_item',2),(3,'2018-05-21 20:27:23','2010-04-29 00:00:00',6,'Contribution Amount',25.00,'USD',1,1,'civicrm_line_item',3),(4,'2018-05-21 20:27:23','2010-04-11 00:00:00',8,'Contribution Amount',50.00,'USD',1,1,'civicrm_line_item',4),(5,'2018-05-21 20:27:23','2010-04-15 00:00:00',16,'Contribution Amount',500.00,'USD',1,1,'civicrm_line_item',5),(6,'2018-05-21 20:27:23','2010-04-11 00:00:00',19,'Contribution Amount',175.00,'USD',1,1,'civicrm_line_item',6),(7,'2018-05-21 20:27:23','2010-03-27 00:00:00',82,'Contribution Amount',50.00,'USD',1,1,'civicrm_line_item',7),(8,'2018-05-21 20:27:23','2010-03-08 00:00:00',92,'Contribution Amount',10.00,'USD',1,1,'civicrm_line_item',8),(9,'2018-05-21 20:27:23','2010-04-22 00:00:00',34,'Contribution Amount',250.00,'USD',1,1,'civicrm_line_item',9),(10,'2018-05-21 20:27:23','2009-07-01 11:53:50',71,'Contribution Amount',500.00,'USD',1,1,'civicrm_line_item',10),(11,'2018-05-21 20:27:23','2009-07-01 12:55:41',43,'Contribution Amount',200.00,'USD',1,1,'civicrm_line_item',11),(12,'2018-05-21 20:27:23','2009-10-01 11:53:50',32,'Contribution Amount',200.00,'USD',1,1,'civicrm_line_item',12),(13,'2018-05-21 20:27:23','2009-12-01 12:55:41',32,'Contribution Amount',200.00,'USD',1,1,'civicrm_line_item',13),(14,'2018-05-21 20:27:23','2018-05-22 01:57:23',8,'General',100.00,'USD',2,1,'civicrm_line_item',23),(15,'2018-05-21 20:27:23','2018-05-22 01:57:23',18,'Student',50.00,'USD',2,1,'civicrm_line_item',40),(16,'2018-05-21 20:27:23','2018-05-22 01:57:23',22,'General',100.00,'USD',2,1,'civicrm_line_item',24),(17,'2018-05-21 20:27:23','2018-05-22 01:57:23',45,'Student',50.00,'USD',2,1,'civicrm_line_item',34),(18,'2018-05-21 20:27:23','2018-05-22 01:57:23',49,'Student',50.00,'USD',2,1,'civicrm_line_item',35),(19,'2018-05-21 20:27:23','2018-05-22 01:57:23',62,'Student',50.00,'USD',2,1,'civicrm_line_item',29),(20,'2018-05-21 20:27:23','2018-05-22 01:57:23',63,'Student',50.00,'USD',2,1,'civicrm_line_item',41),(21,'2018-05-21 20:27:23','2018-05-22 01:57:23',69,'General',100.00,'USD',2,1,'civicrm_line_item',18),(22,'2018-05-21 20:27:23','2018-05-22 01:57:23',78,'Lifetime',1200.00,'USD',2,1,'civicrm_line_item',44),(23,'2018-05-21 20:27:23','2018-05-22 01:57:23',87,'General',100.00,'USD',2,1,'civicrm_line_item',20),(24,'2018-05-21 20:27:23','2018-05-22 01:57:23',102,'Student',50.00,'USD',2,1,'civicrm_line_item',32),(25,'2018-05-21 20:27:23','2018-05-22 01:57:23',113,'Student',50.00,'USD',2,1,'civicrm_line_item',30),(26,'2018-05-21 20:27:23','2018-05-22 01:57:23',118,'Student',50.00,'USD',2,1,'civicrm_line_item',39),(27,'2018-05-21 20:27:23','2018-05-22 01:57:23',123,'Student',50.00,'USD',2,1,'civicrm_line_item',43),(28,'2018-05-21 20:27:23','2018-05-22 01:57:23',129,'General',100.00,'USD',2,1,'civicrm_line_item',28),(29,'2018-05-21 20:27:23','2018-05-22 01:57:23',137,'General',100.00,'USD',2,1,'civicrm_line_item',17),(30,'2018-05-21 20:27:23','2018-05-22 01:57:23',140,'Student',50.00,'USD',2,1,'civicrm_line_item',36),(31,'2018-05-21 20:27:23','2018-05-22 01:57:23',141,'General',100.00,'USD',2,1,'civicrm_line_item',19),(32,'2018-05-21 20:27:23','2018-05-22 01:57:23',147,'General',100.00,'USD',2,1,'civicrm_line_item',27),(33,'2018-05-21 20:27:23','2018-05-22 01:57:23',149,'Lifetime',1200.00,'USD',2,1,'civicrm_line_item',45),(34,'2018-05-21 20:27:23','2018-05-22 01:57:23',150,'Student',50.00,'USD',2,1,'civicrm_line_item',42),(35,'2018-05-21 20:27:23','2018-05-22 01:57:23',153,'General',100.00,'USD',2,1,'civicrm_line_item',25),(36,'2018-05-21 20:27:23','2018-05-22 01:57:23',156,'General',100.00,'USD',2,1,'civicrm_line_item',21),(37,'2018-05-21 20:27:23','2018-05-22 01:57:23',158,'Student',50.00,'USD',2,1,'civicrm_line_item',38),(38,'2018-05-21 20:27:23','2018-05-22 01:57:23',161,'General',100.00,'USD',2,1,'civicrm_line_item',26),(39,'2018-05-21 20:27:23','2018-05-22 01:57:23',163,'Student',50.00,'USD',2,1,'civicrm_line_item',37),(40,'2018-05-21 20:27:23','2018-05-22 01:57:23',164,'General',100.00,'USD',2,1,'civicrm_line_item',22),(41,'2018-05-21 20:27:23','2018-05-22 01:57:23',166,'Student',50.00,'USD',2,1,'civicrm_line_item',33),(42,'2018-05-21 20:27:23','2018-05-22 01:57:23',181,'Student',50.00,'USD',2,1,'civicrm_line_item',31),(43,'2018-05-21 20:27:23','2018-05-22 01:57:23',200,'General',100.00,'USD',2,1,'civicrm_line_item',16),(44,'2018-05-21 20:27:23','2018-05-22 01:57:23',112,'Single',50.00,'USD',4,1,'civicrm_line_item',65),(45,'2018-05-21 20:27:23','2018-05-22 01:57:23',96,'Soprano',50.00,'USD',2,1,'civicrm_line_item',82),(46,'2018-05-21 20:27:23','2018-05-22 01:57:23',177,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',49),(47,'2018-05-21 20:27:23','2018-05-22 01:57:23',19,'Single',50.00,'USD',4,1,'civicrm_line_item',69),(48,'2018-05-21 20:27:23','2018-05-22 01:57:23',110,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',53),(49,'2018-05-21 20:27:23','2018-05-22 01:57:23',7,'Single',50.00,'USD',4,1,'civicrm_line_item',73),(50,'2018-05-21 20:27:23','2018-05-22 01:57:23',101,'Soprano',50.00,'USD',2,1,'civicrm_line_item',90),(51,'2018-05-21 20:27:23','2018-05-22 01:57:23',108,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',58),(52,'2018-05-21 20:27:23','2018-05-22 01:57:23',25,'Single',50.00,'USD',4,1,'civicrm_line_item',77),(53,'2018-05-21 20:27:23','2018-05-22 01:57:23',164,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',62),(54,'2018-05-21 20:27:23','2018-05-22 01:57:23',51,'Soprano',50.00,'USD',2,1,'civicrm_line_item',81),(55,'2018-05-21 20:27:23','2018-05-22 01:57:23',124,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',48),(56,'2018-05-21 20:27:23','2018-05-22 01:57:23',106,'Single',50.00,'USD',4,1,'civicrm_line_item',68),(57,'2018-05-21 20:27:23','2018-05-22 01:57:23',41,'Soprano',50.00,'USD',2,1,'civicrm_line_item',85),(58,'2018-05-21 20:27:23','2018-05-22 01:57:23',63,'Soprano',50.00,'USD',2,1,'civicrm_line_item',86),(59,'2018-05-21 20:27:23','2018-05-22 01:57:23',137,'Single',50.00,'USD',4,1,'civicrm_line_item',71),(60,'2018-05-21 20:27:23','2018-05-22 01:57:23',103,'Single',50.00,'USD',4,1,'civicrm_line_item',72),(61,'2018-05-21 20:27:23','2018-05-22 01:57:23',2,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',55),(62,'2018-05-21 20:27:23','2018-05-22 01:57:23',155,'Soprano',50.00,'USD',2,1,'civicrm_line_item',89),(63,'2018-05-21 20:27:23','2018-05-22 01:57:23',186,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',57),(64,'2018-05-21 20:27:23','2018-05-22 01:57:23',4,'Single',50.00,'USD',4,1,'civicrm_line_item',76),(65,'2018-05-21 20:27:23','2018-05-22 01:57:23',121,'Soprano',50.00,'USD',2,1,'civicrm_line_item',93),(66,'2018-05-21 20:27:23','2018-05-22 01:57:23',86,'Soprano',50.00,'USD',2,1,'civicrm_line_item',94),(67,'2018-05-21 20:27:23','2018-05-22 01:57:23',73,'Single',50.00,'USD',4,1,'civicrm_line_item',79),(68,'2018-05-21 20:27:23','2018-05-22 01:57:23',182,'Single',50.00,'USD',4,1,'civicrm_line_item',80),(69,'2018-05-21 20:27:23','2018-05-22 01:57:23',190,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',64),(70,'2018-05-21 20:27:23','2018-05-22 01:57:23',114,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',47),(71,'2018-05-21 20:27:23','2018-05-22 01:57:23',153,'Single',50.00,'USD',4,1,'civicrm_line_item',67),(72,'2018-05-21 20:27:23','2018-05-22 01:57:23',61,'Soprano',50.00,'USD',2,1,'civicrm_line_item',84),(73,'2018-05-21 20:27:23','2018-05-22 01:57:23',89,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',52),(74,'2018-05-21 20:27:23','2018-05-22 01:57:23',166,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',54),(75,'2018-05-21 20:27:23','2018-05-22 01:57:23',113,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',56),(76,'2018-05-21 20:27:23','2018-05-22 01:57:23',129,'Single',50.00,'USD',4,1,'civicrm_line_item',75),(77,'2018-05-21 20:27:23','2018-05-22 01:57:23',85,'Soprano',50.00,'USD',2,1,'civicrm_line_item',92),(78,'2018-05-21 20:27:23','2018-05-22 01:57:23',44,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',61),(79,'2018-05-21 20:27:23','2018-05-22 01:57:23',162,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',63),(80,'2018-05-21 20:27:23','2018-05-22 01:57:23',109,'Single',50.00,'USD',4,1,'civicrm_line_item',66),(81,'2018-05-21 20:27:23','2018-05-22 01:57:23',31,'Soprano',50.00,'USD',2,1,'civicrm_line_item',83),(82,'2018-05-21 20:27:23','2018-05-22 01:57:23',151,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',50),(83,'2018-05-21 20:27:23','2018-05-22 01:57:23',199,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',51),(84,'2018-05-21 20:27:23','2018-05-22 01:57:23',115,'Single',50.00,'USD',4,1,'civicrm_line_item',70),(85,'2018-05-21 20:27:23','2018-05-22 01:57:23',35,'Soprano',50.00,'USD',2,1,'civicrm_line_item',87),(86,'2018-05-21 20:27:23','2018-05-22 01:57:23',9,'Soprano',50.00,'USD',2,1,'civicrm_line_item',88),(87,'2018-05-21 20:27:23','2018-05-22 01:57:23',188,'Single',50.00,'USD',4,1,'civicrm_line_item',74),(88,'2018-05-21 20:27:23','2018-05-22 01:57:23',133,'Soprano',50.00,'USD',2,1,'civicrm_line_item',91),(89,'2018-05-21 20:27:23','2018-05-22 01:57:23',20,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',59),(90,'2018-05-21 20:27:23','2018-05-22 01:57:23',48,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',60),(91,'2018-05-21 20:27:23','2018-05-22 01:57:23',131,'Single',50.00,'USD',4,1,'civicrm_line_item',78),(92,'2018-05-21 20:27:23','2018-05-22 01:57:23',128,'Soprano',50.00,'USD',2,1,'civicrm_line_item',95),(93,'2018-05-21 20:27:23','2018-05-22 01:57:23',66,'Soprano',50.00,'USD',2,1,'civicrm_line_item',96); /*!40000 ALTER TABLE `civicrm_financial_item` ENABLE KEYS */; UNLOCK TABLES; @@ -533,7 +533,7 @@ UNLOCK TABLES; LOCK TABLES `civicrm_financial_trxn` WRITE; /*!40000 ALTER TABLE `civicrm_financial_trxn` DISABLE KEYS */; -INSERT INTO `civicrm_financial_trxn` (`id`, `from_financial_account_id`, `to_financial_account_id`, `trxn_date`, `total_amount`, `fee_amount`, `net_amount`, `currency`, `is_payment`, `trxn_id`, `trxn_result_code`, `status_id`, `payment_processor_id`, `payment_instrument_id`, `card_type_id`, `check_number`, `pan_truncation`) VALUES (1,NULL,1,'2010-04-11 00:00:00',125.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,4,NULL,'1041',NULL),(2,NULL,1,'2010-03-21 00:00:00',50.00,NULL,NULL,'USD',1,'P20901X1',NULL,1,NULL,1,NULL,NULL,NULL),(3,NULL,1,'2010-04-29 00:00:00',25.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,4,NULL,'2095',NULL),(4,NULL,1,'2010-04-11 00:00:00',50.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,4,NULL,'10552',NULL),(5,NULL,1,'2010-04-15 00:00:00',500.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,4,NULL,'509',NULL),(6,NULL,1,'2010-04-11 00:00:00',175.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,4,NULL,'102',NULL),(7,NULL,1,'2010-03-27 00:00:00',50.00,NULL,NULL,'USD',1,'P20193L2',NULL,1,NULL,1,NULL,NULL,NULL),(8,NULL,1,'2010-03-08 00:00:00',10.00,NULL,NULL,'USD',1,'P40232Y3',NULL,1,NULL,1,NULL,NULL,NULL),(9,NULL,1,'2010-04-22 00:00:00',250.00,NULL,NULL,'USD',1,'P20193L6',NULL,1,NULL,1,NULL,NULL,NULL),(10,NULL,1,'2009-07-01 11:53:50',500.00,NULL,NULL,'USD',1,'PL71',NULL,1,NULL,1,NULL,NULL,NULL),(11,NULL,1,'2009-07-01 12:55:41',200.00,NULL,NULL,'USD',1,'PL43II',NULL,1,NULL,1,NULL,NULL,NULL),(12,NULL,1,'2009-10-01 11:53:50',200.00,NULL,NULL,'USD',1,'PL32I',NULL,1,NULL,1,NULL,NULL,NULL),(13,NULL,1,'2009-12-01 12:55:41',200.00,NULL,NULL,'USD',1,'PL32II',NULL,1,NULL,1,NULL,NULL,NULL),(14,NULL,1,'2018-05-19 15:31:51',100.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(15,NULL,1,'2018-05-19 15:31:51',100.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(16,NULL,1,'2018-05-19 15:31:51',100.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(17,NULL,1,'2018-05-19 15:31:51',100.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(18,NULL,1,'2018-05-19 15:31:51',100.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(19,NULL,1,'2018-05-19 15:31:51',100.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(20,NULL,1,'2018-05-19 15:31:51',100.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(21,NULL,1,'2018-05-19 15:31:51',100.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(22,NULL,1,'2018-05-19 15:31:51',100.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(23,NULL,1,'2018-05-19 15:31:51',100.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(24,NULL,1,'2018-05-19 15:31:51',100.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(25,NULL,1,'2018-05-19 15:31:51',100.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(26,NULL,1,'2018-05-19 15:31:51',100.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(27,NULL,1,'2018-05-19 15:31:51',100.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(28,NULL,1,'2018-05-19 15:31:51',100.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(29,NULL,1,'2018-05-19 15:31:51',100.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(30,NULL,1,'2018-05-19 15:31:51',100.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(31,NULL,1,'2018-05-19 15:31:51',50.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(32,NULL,1,'2018-05-19 15:31:51',50.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(33,NULL,1,'2018-05-19 15:31:51',50.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(34,NULL,1,'2018-05-19 15:31:51',50.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(35,NULL,1,'2018-05-19 15:31:51',50.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(36,NULL,1,'2018-05-19 15:31:51',50.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(37,NULL,1,'2018-05-19 15:31:51',50.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(38,NULL,1,'2018-05-19 15:31:51',50.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(39,NULL,1,'2018-05-19 15:31:51',50.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(40,NULL,1,'2018-05-19 15:31:51',50.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(41,NULL,1,'2018-05-19 15:31:51',50.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(42,NULL,1,'2018-05-19 15:31:51',1200.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(43,NULL,1,'2018-05-19 15:31:51',1200.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(44,NULL,1,'2018-05-19 15:31:52',50.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(45,NULL,1,'2018-05-19 15:31:52',50.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(46,NULL,1,'2018-05-19 15:31:52',50.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(47,NULL,1,'2018-05-19 15:31:52',50.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(48,NULL,1,'2018-05-19 15:31:52',50.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(49,NULL,1,'2018-05-19 15:31:52',50.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(50,NULL,1,'2018-05-19 15:31:52',50.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(51,NULL,1,'2018-05-19 15:31:52',50.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(52,NULL,1,'2018-05-19 15:31:52',50.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(53,NULL,1,'2018-05-19 15:31:52',50.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(54,NULL,1,'2018-05-19 15:31:52',50.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(55,NULL,1,'2018-05-19 15:31:52',50.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(56,NULL,1,'2018-05-19 15:31:52',50.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(57,NULL,1,'2018-05-19 15:31:52',50.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(58,NULL,1,'2018-05-19 15:31:52',50.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(59,NULL,1,'2018-05-19 15:31:52',50.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(60,NULL,1,'2018-05-19 15:31:52',800.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(61,NULL,1,'2018-05-19 15:31:52',800.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(62,NULL,1,'2018-05-19 15:31:52',800.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(63,NULL,1,'2018-05-19 15:31:52',800.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(64,NULL,1,'2018-05-19 15:31:52',800.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(65,NULL,1,'2018-05-19 15:31:52',800.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(66,NULL,1,'2018-05-19 15:31:52',800.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(67,NULL,1,'2018-05-19 15:31:52',800.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(68,NULL,1,'2018-05-19 15:31:52',800.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(69,NULL,1,'2018-05-19 15:31:52',800.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(70,NULL,1,'2018-05-19 15:31:52',800.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(71,NULL,1,'2018-05-19 15:31:52',800.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(72,NULL,1,'2018-05-19 15:31:52',800.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(73,NULL,1,'2018-05-19 15:31:52',800.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(74,NULL,1,'2018-05-19 15:31:52',800.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(75,NULL,1,'2018-05-19 15:31:52',800.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(76,NULL,1,'2018-05-19 15:31:52',800.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(77,NULL,1,'2018-05-19 15:31:52',800.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(78,NULL,1,'2018-05-19 15:31:52',50.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(79,NULL,1,'2018-05-19 15:31:52',50.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(80,NULL,1,'2018-05-19 15:31:52',50.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(81,NULL,1,'2018-05-19 15:31:52',50.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(82,NULL,1,'2018-05-19 15:31:52',50.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(83,NULL,1,'2018-05-19 15:31:52',50.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(84,NULL,1,'2018-05-19 15:31:52',50.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(85,NULL,1,'2018-05-19 15:31:52',50.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(86,NULL,1,'2018-05-19 15:31:52',50.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(87,NULL,1,'2018-05-19 15:31:52',50.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(88,NULL,1,'2018-05-19 15:31:52',50.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(89,NULL,1,'2018-05-19 15:31:52',50.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(90,NULL,1,'2018-05-19 15:31:52',50.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(91,NULL,1,'2018-05-19 15:31:52',50.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(92,NULL,1,'2018-05-19 15:31:52',50.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(93,NULL,1,'2018-05-19 15:31:52',50.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL); +INSERT INTO `civicrm_financial_trxn` (`id`, `from_financial_account_id`, `to_financial_account_id`, `trxn_date`, `total_amount`, `fee_amount`, `net_amount`, `currency`, `is_payment`, `trxn_id`, `trxn_result_code`, `status_id`, `payment_processor_id`, `payment_instrument_id`, `card_type_id`, `check_number`, `pan_truncation`) VALUES (1,NULL,1,'2010-04-11 00:00:00',125.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,4,NULL,'1041',NULL),(2,NULL,1,'2010-03-21 00:00:00',50.00,NULL,NULL,'USD',1,'P20901X1',NULL,1,NULL,1,NULL,NULL,NULL),(3,NULL,1,'2010-04-29 00:00:00',25.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,4,NULL,'2095',NULL),(4,NULL,1,'2010-04-11 00:00:00',50.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,4,NULL,'10552',NULL),(5,NULL,1,'2010-04-15 00:00:00',500.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,4,NULL,'509',NULL),(6,NULL,1,'2010-04-11 00:00:00',175.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,4,NULL,'102',NULL),(7,NULL,1,'2010-03-27 00:00:00',50.00,NULL,NULL,'USD',1,'P20193L2',NULL,1,NULL,1,NULL,NULL,NULL),(8,NULL,1,'2010-03-08 00:00:00',10.00,NULL,NULL,'USD',1,'P40232Y3',NULL,1,NULL,1,NULL,NULL,NULL),(9,NULL,1,'2010-04-22 00:00:00',250.00,NULL,NULL,'USD',1,'P20193L6',NULL,1,NULL,1,NULL,NULL,NULL),(10,NULL,1,'2009-07-01 11:53:50',500.00,NULL,NULL,'USD',1,'PL71',NULL,1,NULL,1,NULL,NULL,NULL),(11,NULL,1,'2009-07-01 12:55:41',200.00,NULL,NULL,'USD',1,'PL43II',NULL,1,NULL,1,NULL,NULL,NULL),(12,NULL,1,'2009-10-01 11:53:50',200.00,NULL,NULL,'USD',1,'PL32I',NULL,1,NULL,1,NULL,NULL,NULL),(13,NULL,1,'2009-12-01 12:55:41',200.00,NULL,NULL,'USD',1,'PL32II',NULL,1,NULL,1,NULL,NULL,NULL),(14,NULL,1,'2018-05-22 01:57:23',100.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(15,NULL,1,'2018-05-22 01:57:23',50.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(16,NULL,1,'2018-05-22 01:57:23',100.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(17,NULL,1,'2018-05-22 01:57:23',50.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(18,NULL,1,'2018-05-22 01:57:23',50.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(19,NULL,1,'2018-05-22 01:57:23',50.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(20,NULL,1,'2018-05-22 01:57:23',50.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(21,NULL,1,'2018-05-22 01:57:23',100.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(22,NULL,1,'2018-05-22 01:57:23',1200.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(23,NULL,1,'2018-05-22 01:57:23',100.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(24,NULL,1,'2018-05-22 01:57:23',50.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(25,NULL,1,'2018-05-22 01:57:23',50.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(26,NULL,1,'2018-05-22 01:57:23',50.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(27,NULL,1,'2018-05-22 01:57:23',50.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(28,NULL,1,'2018-05-22 01:57:23',100.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(29,NULL,1,'2018-05-22 01:57:23',100.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(30,NULL,1,'2018-05-22 01:57:23',50.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(31,NULL,1,'2018-05-22 01:57:23',100.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(32,NULL,1,'2018-05-22 01:57:23',100.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(33,NULL,1,'2018-05-22 01:57:23',1200.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(34,NULL,1,'2018-05-22 01:57:23',50.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(35,NULL,1,'2018-05-22 01:57:23',100.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(36,NULL,1,'2018-05-22 01:57:23',100.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(37,NULL,1,'2018-05-22 01:57:23',50.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(38,NULL,1,'2018-05-22 01:57:23',100.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(39,NULL,1,'2018-05-22 01:57:23',50.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(40,NULL,1,'2018-05-22 01:57:23',100.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(41,NULL,1,'2018-05-22 01:57:23',50.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(42,NULL,1,'2018-05-22 01:57:23',50.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(43,NULL,1,'2018-05-22 01:57:23',100.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(44,NULL,1,'2018-05-22 01:57:23',50.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(45,NULL,1,'2018-05-22 01:57:23',50.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(46,NULL,1,'2018-05-22 01:57:23',800.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(47,NULL,1,'2018-05-22 01:57:23',50.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(48,NULL,1,'2018-05-22 01:57:23',800.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(49,NULL,1,'2018-05-22 01:57:23',50.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(50,NULL,1,'2018-05-22 01:57:23',50.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(51,NULL,1,'2018-05-22 01:57:23',800.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(52,NULL,1,'2018-05-22 01:57:23',50.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(53,NULL,1,'2018-05-22 01:57:23',800.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(54,NULL,1,'2018-05-22 01:57:23',50.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(55,NULL,1,'2018-05-22 01:57:23',800.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(56,NULL,1,'2018-05-22 01:57:23',50.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(57,NULL,1,'2018-05-22 01:57:23',50.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(58,NULL,1,'2018-05-22 01:57:23',50.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(59,NULL,1,'2018-05-22 01:57:23',50.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(60,NULL,1,'2018-05-22 01:57:23',50.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(61,NULL,1,'2018-05-22 01:57:23',800.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(62,NULL,1,'2018-05-22 01:57:23',50.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(63,NULL,1,'2018-05-22 01:57:23',800.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(64,NULL,1,'2018-05-22 01:57:23',50.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(65,NULL,1,'2018-05-22 01:57:23',50.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(66,NULL,1,'2018-05-22 01:57:23',50.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(67,NULL,1,'2018-05-22 01:57:23',50.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(68,NULL,1,'2018-05-22 01:57:23',50.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(69,NULL,1,'2018-05-22 01:57:23',800.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(70,NULL,1,'2018-05-22 01:57:23',800.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(71,NULL,1,'2018-05-22 01:57:23',50.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(72,NULL,1,'2018-05-22 01:57:23',50.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(73,NULL,1,'2018-05-22 01:57:23',800.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(74,NULL,1,'2018-05-22 01:57:23',800.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(75,NULL,1,'2018-05-22 01:57:23',800.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(76,NULL,1,'2018-05-22 01:57:23',50.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(77,NULL,1,'2018-05-22 01:57:23',50.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(78,NULL,1,'2018-05-22 01:57:23',800.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(79,NULL,1,'2018-05-22 01:57:23',800.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(80,NULL,1,'2018-05-22 01:57:23',50.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(81,NULL,1,'2018-05-22 01:57:23',50.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(82,NULL,1,'2018-05-22 01:57:23',800.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(83,NULL,1,'2018-05-22 01:57:23',800.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(84,NULL,1,'2018-05-22 01:57:23',50.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(85,NULL,1,'2018-05-22 01:57:23',50.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(86,NULL,1,'2018-05-22 01:57:23',50.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(87,NULL,1,'2018-05-22 01:57:23',50.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(88,NULL,1,'2018-05-22 01:57:23',50.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(89,NULL,1,'2018-05-22 01:57:23',800.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(90,NULL,1,'2018-05-22 01:57:23',800.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(91,NULL,1,'2018-05-22 01:57:23',50.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(92,NULL,1,'2018-05-22 01:57:23',50.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL),(93,NULL,1,'2018-05-22 01:57:23',50.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,NULL,NULL); /*!40000 ALTER TABLE `civicrm_financial_trxn` ENABLE KEYS */; UNLOCK TABLES; @@ -572,7 +572,7 @@ UNLOCK TABLES; LOCK TABLES `civicrm_group_contact` WRITE; /*!40000 ALTER TABLE `civicrm_group_contact` DISABLE KEYS */; -INSERT INTO `civicrm_group_contact` (`id`, `group_id`, `contact_id`, `status`, `location_id`, `email_id`) VALUES (1,2,196,'Added',NULL,NULL),(2,2,193,'Added',NULL,NULL),(3,2,93,'Added',NULL,NULL),(4,2,135,'Added',NULL,NULL),(5,2,184,'Added',NULL,NULL),(6,2,77,'Added',NULL,NULL),(7,2,42,'Added',NULL,NULL),(8,2,20,'Added',NULL,NULL),(9,2,198,'Added',NULL,NULL),(10,2,13,'Added',NULL,NULL),(11,2,94,'Added',NULL,NULL),(12,2,83,'Added',NULL,NULL),(13,2,154,'Added',NULL,NULL),(14,2,90,'Added',NULL,NULL),(15,2,97,'Added',NULL,NULL),(16,2,110,'Added',NULL,NULL),(17,2,178,'Added',NULL,NULL),(18,2,177,'Added',NULL,NULL),(19,2,157,'Added',NULL,NULL),(20,2,14,'Added',NULL,NULL),(21,2,65,'Added',NULL,NULL),(22,2,78,'Added',NULL,NULL),(23,2,47,'Added',NULL,NULL),(24,2,57,'Added',NULL,NULL),(25,2,61,'Added',NULL,NULL),(26,2,163,'Added',NULL,NULL),(27,2,101,'Added',NULL,NULL),(28,2,149,'Added',NULL,NULL),(29,2,84,'Added',NULL,NULL),(30,2,125,'Added',NULL,NULL),(31,2,145,'Added',NULL,NULL),(32,2,17,'Added',NULL,NULL),(33,2,41,'Added',NULL,NULL),(34,2,28,'Added',NULL,NULL),(35,2,124,'Added',NULL,NULL),(36,2,27,'Added',NULL,NULL),(37,2,186,'Added',NULL,NULL),(38,2,44,'Added',NULL,NULL),(39,2,19,'Added',NULL,NULL),(40,2,55,'Added',NULL,NULL),(41,2,200,'Added',NULL,NULL),(42,2,58,'Added',NULL,NULL),(43,2,59,'Added',NULL,NULL),(44,2,71,'Added',NULL,NULL),(45,2,119,'Added',NULL,NULL),(46,2,21,'Added',NULL,NULL),(47,2,67,'Added',NULL,NULL),(48,2,36,'Added',NULL,NULL),(49,2,82,'Added',NULL,NULL),(50,2,69,'Added',NULL,NULL),(51,2,8,'Added',NULL,NULL),(52,2,29,'Added',NULL,NULL),(53,2,54,'Added',NULL,NULL),(54,2,107,'Added',NULL,NULL),(55,2,162,'Added',NULL,NULL),(56,2,152,'Added',NULL,NULL),(57,2,127,'Added',NULL,NULL),(58,2,158,'Added',NULL,NULL),(59,2,22,'Added',NULL,NULL),(60,2,72,'Added',NULL,NULL),(61,3,139,'Added',NULL,NULL),(62,3,150,'Added',NULL,NULL),(63,3,81,'Added',NULL,NULL),(64,3,43,'Added',NULL,NULL),(65,3,191,'Added',NULL,NULL),(66,3,128,'Added',NULL,NULL),(67,3,151,'Added',NULL,NULL),(68,3,15,'Added',NULL,NULL),(69,3,91,'Added',NULL,NULL),(70,3,141,'Added',NULL,NULL),(71,3,23,'Added',NULL,NULL),(72,3,166,'Added',NULL,NULL),(73,3,171,'Added',NULL,NULL),(74,3,199,'Added',NULL,NULL),(75,3,168,'Added',NULL,NULL),(76,4,196,'Added',NULL,NULL),(77,4,20,'Added',NULL,NULL),(78,4,97,'Added',NULL,NULL),(79,4,78,'Added',NULL,NULL),(80,4,84,'Added',NULL,NULL),(81,4,27,'Added',NULL,NULL),(82,4,59,'Added',NULL,NULL),(83,4,69,'Added',NULL,NULL); +INSERT INTO `civicrm_group_contact` (`id`, `group_id`, `contact_id`, `status`, `location_id`, `email_id`) VALUES (1,2,146,'Added',NULL,NULL),(2,2,96,'Added',NULL,NULL),(3,2,67,'Added',NULL,NULL),(4,2,57,'Added',NULL,NULL),(5,2,148,'Added',NULL,NULL),(6,2,108,'Added',NULL,NULL),(7,2,38,'Added',NULL,NULL),(8,2,161,'Added',NULL,NULL),(9,2,155,'Added',NULL,NULL),(10,2,154,'Added',NULL,NULL),(11,2,23,'Added',NULL,NULL),(12,2,92,'Added',NULL,NULL),(13,2,52,'Added',NULL,NULL),(14,2,107,'Added',NULL,NULL),(15,2,94,'Added',NULL,NULL),(16,2,3,'Added',NULL,NULL),(17,2,125,'Added',NULL,NULL),(18,2,115,'Added',NULL,NULL),(19,2,173,'Added',NULL,NULL),(20,2,80,'Added',NULL,NULL),(21,2,109,'Added',NULL,NULL),(22,2,69,'Added',NULL,NULL),(23,2,194,'Added',NULL,NULL),(24,2,181,'Added',NULL,NULL),(25,2,60,'Added',NULL,NULL),(26,2,133,'Added',NULL,NULL),(27,2,127,'Added',NULL,NULL),(28,2,190,'Added',NULL,NULL),(29,2,191,'Added',NULL,NULL),(30,2,121,'Added',NULL,NULL),(31,2,62,'Added',NULL,NULL),(32,2,160,'Added',NULL,NULL),(33,2,113,'Added',NULL,NULL),(34,2,13,'Added',NULL,NULL),(35,2,95,'Added',NULL,NULL),(36,2,71,'Added',NULL,NULL),(37,2,110,'Added',NULL,NULL),(38,2,43,'Added',NULL,NULL),(39,2,54,'Added',NULL,NULL),(40,2,17,'Added',NULL,NULL),(41,2,152,'Added',NULL,NULL),(42,2,149,'Added',NULL,NULL),(43,2,188,'Added',NULL,NULL),(44,2,36,'Added',NULL,NULL),(45,2,187,'Added',NULL,NULL),(46,2,167,'Added',NULL,NULL),(47,2,136,'Added',NULL,NULL),(48,2,150,'Added',NULL,NULL),(49,2,9,'Added',NULL,NULL),(50,2,63,'Added',NULL,NULL),(51,2,111,'Added',NULL,NULL),(52,2,131,'Added',NULL,NULL),(53,2,193,'Added',NULL,NULL),(54,2,5,'Added',NULL,NULL),(55,2,31,'Added',NULL,NULL),(56,2,46,'Added',NULL,NULL),(57,2,14,'Added',NULL,NULL),(58,2,117,'Added',NULL,NULL),(59,2,2,'Added',NULL,NULL),(60,2,66,'Added',NULL,NULL),(61,3,59,'Added',NULL,NULL),(62,3,28,'Added',NULL,NULL),(63,3,129,'Added',NULL,NULL),(64,3,171,'Added',NULL,NULL),(65,3,186,'Added',NULL,NULL),(66,3,91,'Added',NULL,NULL),(67,3,128,'Added',NULL,NULL),(68,3,126,'Added',NULL,NULL),(69,3,143,'Added',NULL,NULL),(70,3,98,'Added',NULL,NULL),(71,3,53,'Added',NULL,NULL),(72,3,170,'Added',NULL,NULL),(73,3,200,'Added',NULL,NULL),(74,3,93,'Added',NULL,NULL),(75,3,18,'Added',NULL,NULL),(76,4,146,'Added',NULL,NULL),(77,4,161,'Added',NULL,NULL),(78,4,94,'Added',NULL,NULL),(79,4,69,'Added',NULL,NULL),(80,4,191,'Added',NULL,NULL),(81,4,71,'Added',NULL,NULL),(82,4,188,'Added',NULL,NULL),(83,4,63,'Added',NULL,NULL); /*!40000 ALTER TABLE `civicrm_group_contact` ENABLE KEYS */; UNLOCK TABLES; @@ -637,7 +637,7 @@ UNLOCK TABLES; LOCK TABLES `civicrm_line_item` WRITE; /*!40000 ALTER TABLE `civicrm_line_item` DISABLE KEYS */; -INSERT INTO `civicrm_line_item` (`id`, `entity_table`, `entity_id`, `contribution_id`, `price_field_id`, `label`, `qty`, `unit_price`, `line_total`, `participant_count`, `price_field_value_id`, `financial_type_id`, `non_deductible_amount`, `tax_amount`) VALUES (1,'civicrm_contribution',1,1,1,'Contribution Amount',1.00,125.00,125.00,0,1,1,0.00,NULL),(2,'civicrm_contribution',2,2,1,'Contribution Amount',1.00,50.00,50.00,0,1,1,0.00,NULL),(3,'civicrm_contribution',3,3,1,'Contribution Amount',1.00,25.00,25.00,0,1,1,0.00,NULL),(4,'civicrm_contribution',4,4,1,'Contribution Amount',1.00,50.00,50.00,0,1,1,0.00,NULL),(5,'civicrm_contribution',5,5,1,'Contribution Amount',1.00,500.00,500.00,0,1,1,0.00,NULL),(6,'civicrm_contribution',6,6,1,'Contribution Amount',1.00,175.00,175.00,0,1,1,0.00,NULL),(7,'civicrm_contribution',7,7,1,'Contribution Amount',1.00,50.00,50.00,0,1,1,0.00,NULL),(8,'civicrm_contribution',8,8,1,'Contribution Amount',1.00,10.00,10.00,0,1,1,0.00,NULL),(9,'civicrm_contribution',9,9,1,'Contribution Amount',1.00,250.00,250.00,0,1,1,0.00,NULL),(10,'civicrm_contribution',10,10,1,'Contribution Amount',1.00,500.00,500.00,0,1,1,0.00,NULL),(11,'civicrm_contribution',11,11,1,'Contribution Amount',1.00,200.00,200.00,0,1,1,0.00,NULL),(12,'civicrm_contribution',12,12,1,'Contribution Amount',1.00,200.00,200.00,0,1,1,0.00,NULL),(13,'civicrm_contribution',13,13,1,'Contribution Amount',1.00,200.00,200.00,0,1,1,0.00,NULL),(16,'civicrm_membership',1,14,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL),(17,'civicrm_membership',3,15,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL),(18,'civicrm_membership',5,16,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL),(19,'civicrm_membership',7,17,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL),(20,'civicrm_membership',9,18,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL),(21,'civicrm_membership',10,19,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL),(22,'civicrm_membership',13,20,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL),(23,'civicrm_membership',15,21,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL),(24,'civicrm_membership',17,22,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL),(25,'civicrm_membership',19,23,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL),(26,'civicrm_membership',20,24,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL),(27,'civicrm_membership',21,25,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL),(28,'civicrm_membership',23,26,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL),(29,'civicrm_membership',25,27,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL),(30,'civicrm_membership',27,28,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL),(31,'civicrm_membership',29,29,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL),(32,'civicrm_membership',30,30,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL),(33,'civicrm_membership',2,31,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,NULL),(34,'civicrm_membership',4,32,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,NULL),(35,'civicrm_membership',6,33,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,NULL),(36,'civicrm_membership',8,34,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,NULL),(37,'civicrm_membership',12,35,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,NULL),(38,'civicrm_membership',14,36,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,NULL),(39,'civicrm_membership',16,37,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,NULL),(40,'civicrm_membership',18,38,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,NULL),(41,'civicrm_membership',24,39,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,NULL),(42,'civicrm_membership',26,40,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,NULL),(43,'civicrm_membership',28,41,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,NULL),(44,'civicrm_membership',11,42,4,'Lifetime',1.00,1200.00,1200.00,NULL,9,2,0.00,NULL),(45,'civicrm_membership',22,43,4,'Lifetime',1.00,1200.00,1200.00,NULL,9,2,0.00,NULL),(47,'civicrm_participant',3,49,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL),(48,'civicrm_participant',6,87,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL),(49,'civicrm_participant',9,57,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL),(50,'civicrm_participant',12,45,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL),(51,'civicrm_participant',15,76,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL),(52,'civicrm_participant',18,78,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL),(53,'civicrm_participant',21,59,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL),(54,'civicrm_participant',24,75,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL),(55,'civicrm_participant',25,85,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL),(56,'civicrm_participant',28,71,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL),(57,'civicrm_participant',31,70,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL),(58,'civicrm_participant',34,82,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL),(59,'civicrm_participant',37,80,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL),(60,'civicrm_participant',40,77,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL),(61,'civicrm_participant',43,69,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL),(62,'civicrm_participant',46,74,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL),(63,'civicrm_participant',49,54,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL),(64,'civicrm_participant',50,72,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL),(65,'civicrm_participant',1,47,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL),(66,'civicrm_participant',4,62,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL),(67,'civicrm_participant',7,90,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL),(68,'civicrm_participant',10,53,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL),(69,'civicrm_participant',13,73,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL),(70,'civicrm_participant',16,66,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL),(71,'civicrm_participant',19,60,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL),(72,'civicrm_participant',22,64,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL),(73,'civicrm_participant',26,61,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL),(74,'civicrm_participant',29,86,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL),(75,'civicrm_participant',32,58,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL),(76,'civicrm_participant',35,67,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL),(77,'civicrm_participant',38,55,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL),(78,'civicrm_participant',41,92,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL),(79,'civicrm_participant',44,81,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL),(80,'civicrm_participant',47,79,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL),(81,'civicrm_participant',2,91,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL),(82,'civicrm_participant',5,88,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL),(83,'civicrm_participant',8,89,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL),(84,'civicrm_participant',11,48,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL),(85,'civicrm_participant',14,63,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL),(86,'civicrm_participant',17,68,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL),(87,'civicrm_participant',20,94,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL),(88,'civicrm_participant',23,46,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL),(89,'civicrm_participant',27,51,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL),(90,'civicrm_participant',30,56,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL),(91,'civicrm_participant',33,84,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL),(92,'civicrm_participant',36,52,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL),(93,'civicrm_participant',39,65,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL),(94,'civicrm_participant',42,93,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL),(95,'civicrm_participant',45,83,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL),(96,'civicrm_participant',48,50,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL); +INSERT INTO `civicrm_line_item` (`id`, `entity_table`, `entity_id`, `contribution_id`, `price_field_id`, `label`, `qty`, `unit_price`, `line_total`, `participant_count`, `price_field_value_id`, `financial_type_id`, `non_deductible_amount`, `tax_amount`) VALUES (1,'civicrm_contribution',1,1,1,'Contribution Amount',1.00,125.00,125.00,0,1,1,0.00,NULL),(2,'civicrm_contribution',2,2,1,'Contribution Amount',1.00,50.00,50.00,0,1,1,0.00,NULL),(3,'civicrm_contribution',3,3,1,'Contribution Amount',1.00,25.00,25.00,0,1,1,0.00,NULL),(4,'civicrm_contribution',4,4,1,'Contribution Amount',1.00,50.00,50.00,0,1,1,0.00,NULL),(5,'civicrm_contribution',5,5,1,'Contribution Amount',1.00,500.00,500.00,0,1,1,0.00,NULL),(6,'civicrm_contribution',6,6,1,'Contribution Amount',1.00,175.00,175.00,0,1,1,0.00,NULL),(7,'civicrm_contribution',7,7,1,'Contribution Amount',1.00,50.00,50.00,0,1,1,0.00,NULL),(8,'civicrm_contribution',8,8,1,'Contribution Amount',1.00,10.00,10.00,0,1,1,0.00,NULL),(9,'civicrm_contribution',9,9,1,'Contribution Amount',1.00,250.00,250.00,0,1,1,0.00,NULL),(10,'civicrm_contribution',10,10,1,'Contribution Amount',1.00,500.00,500.00,0,1,1,0.00,NULL),(11,'civicrm_contribution',11,11,1,'Contribution Amount',1.00,200.00,200.00,0,1,1,0.00,NULL),(12,'civicrm_contribution',12,12,1,'Contribution Amount',1.00,200.00,200.00,0,1,1,0.00,NULL),(13,'civicrm_contribution',13,13,1,'Contribution Amount',1.00,200.00,200.00,0,1,1,0.00,NULL),(16,'civicrm_membership',1,14,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL),(17,'civicrm_membership',3,16,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL),(18,'civicrm_membership',5,18,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL),(19,'civicrm_membership',7,20,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL),(20,'civicrm_membership',9,22,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL),(21,'civicrm_membership',13,26,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL),(22,'civicrm_membership',17,30,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL),(23,'civicrm_membership',19,32,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL),(24,'civicrm_membership',20,33,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL),(25,'civicrm_membership',21,34,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL),(26,'civicrm_membership',23,36,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL),(27,'civicrm_membership',27,40,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL),(28,'civicrm_membership',29,42,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL),(29,'civicrm_membership',2,15,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,NULL),(30,'civicrm_membership',4,17,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,NULL),(31,'civicrm_membership',6,19,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,NULL),(32,'civicrm_membership',8,21,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,NULL),(33,'civicrm_membership',10,23,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,NULL),(34,'civicrm_membership',12,25,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,NULL),(35,'civicrm_membership',14,27,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,NULL),(36,'civicrm_membership',15,28,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,NULL),(37,'civicrm_membership',16,29,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,NULL),(38,'civicrm_membership',18,31,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,NULL),(39,'civicrm_membership',24,37,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,NULL),(40,'civicrm_membership',25,38,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,NULL),(41,'civicrm_membership',26,39,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,NULL),(42,'civicrm_membership',28,41,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,NULL),(43,'civicrm_membership',30,43,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,NULL),(44,'civicrm_membership',11,24,4,'Lifetime',1.00,1200.00,1200.00,NULL,9,2,0.00,NULL),(45,'civicrm_membership',22,35,4,'Lifetime',1.00,1200.00,1200.00,NULL,9,2,0.00,NULL),(47,'civicrm_participant',3,74,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL),(48,'civicrm_participant',6,77,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL),(49,'civicrm_participant',9,89,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL),(50,'civicrm_participant',12,83,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL),(51,'civicrm_participant',15,94,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL),(52,'civicrm_participant',18,64,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL),(53,'civicrm_participant',21,71,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL),(54,'civicrm_participant',24,88,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL),(55,'civicrm_participant',25,45,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL),(56,'civicrm_participant',28,73,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL),(57,'civicrm_participant',31,91,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL),(58,'civicrm_participant',34,69,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL),(59,'civicrm_participant',37,50,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL),(60,'civicrm_participant',40,56,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL),(61,'civicrm_participant',43,55,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL),(62,'civicrm_participant',46,87,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL),(63,'civicrm_participant',49,86,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL),(64,'civicrm_participant',50,93,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL),(65,'civicrm_participant',1,72,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL),(66,'civicrm_participant',4,70,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL),(67,'civicrm_participant',7,84,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL),(68,'civicrm_participant',10,68,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL),(69,'civicrm_participant',13,49,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL),(70,'civicrm_participant',16,75,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL),(71,'civicrm_participant',19,82,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL),(72,'civicrm_participant',22,67,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL),(73,'civicrm_participant',26,47,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL),(74,'civicrm_participant',29,92,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL),(75,'civicrm_participant',32,79,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL),(76,'civicrm_participant',35,46,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL),(77,'civicrm_participant',38,51,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL),(78,'civicrm_participant',41,80,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL),(79,'civicrm_participant',44,61,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL),(80,'civicrm_participant',47,90,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL),(81,'civicrm_participant',2,57,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL),(82,'civicrm_participant',5,65,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL),(83,'civicrm_participant',8,52,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL),(84,'civicrm_participant',11,58,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL),(85,'civicrm_participant',14,54,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL),(86,'civicrm_participant',17,59,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL),(87,'civicrm_participant',20,53,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL),(88,'civicrm_participant',23,48,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL),(89,'civicrm_participant',27,85,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL),(90,'civicrm_participant',30,66,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL),(91,'civicrm_participant',33,81,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL),(92,'civicrm_participant',36,62,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL),(93,'civicrm_participant',39,76,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL),(94,'civicrm_participant',42,63,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL),(95,'civicrm_participant',45,78,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL),(96,'civicrm_participant',48,60,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL); /*!40000 ALTER TABLE `civicrm_line_item` ENABLE KEYS */; UNLOCK TABLES; @@ -647,7 +647,7 @@ UNLOCK TABLES; LOCK TABLES `civicrm_loc_block` WRITE; /*!40000 ALTER TABLE `civicrm_loc_block` DISABLE KEYS */; -INSERT INTO `civicrm_loc_block` (`id`, `address_id`, `email_id`, `phone_id`, `im_id`, `address_2_id`, `email_2_id`, `phone_2_id`, `im_2_id`) VALUES (1,179,190,176,NULL,NULL,NULL,NULL,NULL),(2,180,191,177,NULL,NULL,NULL,NULL,NULL),(3,181,192,178,NULL,NULL,NULL,NULL,NULL); +INSERT INTO `civicrm_loc_block` (`id`, `address_id`, `email_id`, `phone_id`, `im_id`, `address_2_id`, `email_2_id`, `phone_2_id`, `im_2_id`) VALUES (1,177,204,168,NULL,NULL,NULL,NULL,NULL),(2,178,205,169,NULL,NULL,NULL,NULL,NULL),(3,179,206,170,NULL,NULL,NULL,NULL,NULL); /*!40000 ALTER TABLE `civicrm_loc_block` ENABLE KEYS */; UNLOCK TABLES; @@ -896,7 +896,7 @@ UNLOCK TABLES; LOCK TABLES `civicrm_membership` WRITE; /*!40000 ALTER TABLE `civicrm_membership` DISABLE KEYS */; -INSERT INTO `civicrm_membership` (`id`, `contact_id`, `membership_type_id`, `join_date`, `start_date`, `end_date`, `source`, `status_id`, `is_override`, `status_override_end_date`, `owner_membership_id`, `max_related`, `is_test`, `is_pay_later`, `contribution_recur_id`, `campaign_id`) VALUES (1,173,1,'2018-05-19','2018-05-19','2020-05-18','Payment',1,NULL,NULL,NULL,NULL,0,0,NULL,NULL),(2,185,2,'2018-05-18','2018-05-18','2019-05-17','Payment',1,NULL,NULL,NULL,NULL,0,0,NULL,NULL),(3,187,1,'2018-05-17','2018-05-17','2020-05-16','Payment',1,NULL,NULL,NULL,NULL,0,0,NULL,NULL),(4,66,2,'2018-05-16','2018-05-16','2019-05-15','Check',1,NULL,NULL,NULL,NULL,0,0,NULL,NULL),(5,118,1,'2016-04-17','2016-04-17','2018-04-16','Donation',3,NULL,NULL,NULL,NULL,0,0,NULL,NULL),(6,85,2,'2018-05-14','2018-05-14','2019-05-13','Check',1,NULL,NULL,NULL,NULL,0,0,NULL,NULL),(7,162,1,'2018-05-13','2018-05-13','2020-05-12','Check',1,NULL,NULL,NULL,NULL,0,0,NULL,NULL),(8,16,2,'2018-05-12','2018-05-12','2019-05-11','Check',1,NULL,NULL,NULL,NULL,0,0,NULL,NULL),(9,195,1,'2018-05-11','2018-05-11','2020-05-10','Check',1,NULL,NULL,NULL,NULL,0,0,NULL,NULL),(10,10,1,'2016-03-08','2016-03-08','2018-03-07','Check',3,NULL,NULL,NULL,NULL,0,0,NULL,NULL),(11,35,3,'2018-05-09','2018-05-09',NULL,'Payment',1,NULL,NULL,NULL,NULL,0,0,NULL,NULL),(12,59,2,'2018-05-08','2018-05-08','2019-05-07','Donation',1,NULL,NULL,NULL,NULL,0,0,NULL,NULL),(13,166,1,'2018-05-07','2018-05-07','2020-05-06','Donation',1,NULL,NULL,NULL,NULL,0,0,NULL,NULL),(14,57,2,'2018-05-06','2018-05-06','2019-05-05','Payment',1,NULL,NULL,NULL,NULL,0,0,NULL,NULL),(15,31,1,'2016-01-28','2016-01-28','2018-01-27','Payment',3,NULL,NULL,NULL,NULL,0,0,NULL,NULL),(16,179,2,'2018-05-04','2018-05-04','2019-05-03','Payment',1,NULL,NULL,NULL,NULL,0,0,NULL,NULL),(17,128,1,'2018-05-03','2018-05-03','2020-05-02','Payment',1,NULL,NULL,NULL,NULL,0,0,NULL,NULL),(18,172,2,'2018-05-02','2018-05-02','2019-05-01','Payment',1,NULL,NULL,NULL,NULL,0,0,NULL,NULL),(19,123,1,'2018-05-01','2018-05-01','2020-04-30','Payment',1,NULL,NULL,NULL,NULL,0,0,NULL,NULL),(20,106,1,'2015-12-19','2015-12-19','2017-12-18','Check',3,NULL,NULL,NULL,NULL,0,0,NULL,NULL),(21,159,1,'2018-04-29','2018-04-29','2020-04-28','Payment',1,NULL,NULL,NULL,NULL,0,0,NULL,NULL),(22,126,3,'2018-04-28','2018-04-28',NULL,'Payment',1,NULL,NULL,NULL,NULL,0,0,NULL,NULL),(23,78,1,'2018-04-27','2018-04-27','2020-04-26','Payment',1,NULL,NULL,NULL,NULL,0,0,NULL,NULL),(24,2,2,'2018-04-26','2018-04-26','2019-04-25','Check',1,NULL,NULL,NULL,NULL,0,0,NULL,NULL),(25,53,1,'2015-11-09','2015-11-09','2017-11-08','Donation',3,NULL,NULL,NULL,NULL,0,0,NULL,NULL),(26,150,2,'2018-04-24','2018-04-24','2019-04-23','Check',1,NULL,NULL,NULL,NULL,0,0,NULL,NULL),(27,196,1,'2018-04-23','2018-04-23','2020-04-22','Donation',1,NULL,NULL,NULL,NULL,0,0,NULL,NULL),(28,191,2,'2018-04-22','2018-04-22','2019-04-21','Payment',1,NULL,NULL,NULL,NULL,0,0,NULL,NULL),(29,105,1,'2018-04-21','2018-04-21','2020-04-20','Payment',1,NULL,NULL,NULL,NULL,0,0,NULL,NULL),(30,14,1,'2015-09-30','2015-09-30','2017-09-29','Payment',3,NULL,NULL,NULL,NULL,0,0,NULL,NULL); +INSERT INTO `civicrm_membership` (`id`, `contact_id`, `membership_type_id`, `join_date`, `start_date`, `end_date`, `source`, `status_id`, `is_override`, `status_override_end_date`, `owner_membership_id`, `max_related`, `is_test`, `is_pay_later`, `contribution_recur_id`, `campaign_id`) VALUES (1,200,1,'2018-05-21','2018-05-21','2020-05-20','Payment',1,NULL,NULL,NULL,NULL,0,0,NULL,NULL),(2,62,2,'2018-05-20','2018-05-20','2019-05-19','Payment',1,NULL,NULL,NULL,NULL,0,0,NULL,NULL),(3,137,1,'2018-05-19','2018-05-19','2020-05-18','Check',1,NULL,NULL,NULL,NULL,0,0,NULL,NULL),(4,113,2,'2018-05-18','2018-05-18','2019-05-17','Payment',1,NULL,NULL,NULL,NULL,0,0,NULL,NULL),(5,69,1,'2016-04-19','2016-04-19','2018-04-18','Payment',3,NULL,NULL,NULL,NULL,0,0,NULL,NULL),(6,181,2,'2018-05-16','2018-05-16','2019-05-15','Donation',1,NULL,NULL,NULL,NULL,0,0,NULL,NULL),(7,141,1,'2018-05-15','2018-05-15','2020-05-14','Donation',1,NULL,NULL,NULL,NULL,0,0,NULL,NULL),(8,102,2,'2018-05-14','2018-05-14','2019-05-13','Check',1,NULL,NULL,NULL,NULL,0,0,NULL,NULL),(9,87,1,'2018-05-13','2018-05-13','2020-05-12','Check',1,NULL,NULL,NULL,NULL,0,0,NULL,NULL),(10,166,2,'2017-05-12','2017-05-12','2018-05-11','Payment',4,NULL,NULL,NULL,NULL,0,0,NULL,NULL),(11,78,3,'2018-05-11','2018-05-11',NULL,'Payment',1,NULL,NULL,NULL,NULL,0,0,NULL,NULL),(12,45,2,'2018-05-10','2018-05-10','2019-05-09','Donation',1,NULL,NULL,NULL,NULL,0,0,NULL,NULL),(13,156,1,'2018-05-09','2018-05-09','2020-05-08','Donation',1,NULL,NULL,NULL,NULL,0,0,NULL,NULL),(14,49,2,'2018-05-08','2018-05-08','2019-05-07','Check',1,NULL,NULL,NULL,NULL,0,0,NULL,NULL),(15,140,2,'2017-05-07','2017-05-07','2018-05-06','Check',4,NULL,NULL,NULL,NULL,0,0,NULL,NULL),(16,163,2,'2018-05-06','2018-05-06','2019-05-05','Donation',1,NULL,NULL,NULL,NULL,0,0,NULL,NULL),(17,164,1,'2018-05-05','2018-05-05','2020-05-04','Donation',1,NULL,NULL,NULL,NULL,0,0,NULL,NULL),(18,158,2,'2018-05-04','2018-05-04','2019-05-03','Payment',1,NULL,NULL,NULL,NULL,0,0,NULL,NULL),(19,8,1,'2018-05-03','2018-05-03','2020-05-02','Check',1,NULL,NULL,NULL,NULL,0,0,NULL,NULL),(20,22,1,'2015-12-21','2015-12-21','2017-12-20','Donation',3,NULL,NULL,NULL,NULL,0,0,NULL,NULL),(21,153,1,'2018-05-01','2018-05-01','2020-04-30','Payment',1,NULL,NULL,NULL,NULL,0,0,NULL,NULL),(22,149,3,'2018-04-30','2018-04-30',NULL,'Check',1,NULL,NULL,NULL,NULL,0,0,NULL,NULL),(23,161,1,'2018-04-29','2018-04-29','2020-04-28','Payment',1,NULL,NULL,NULL,NULL,0,0,NULL,NULL),(24,118,2,'2018-04-28','2018-04-28','2019-04-27','Check',1,NULL,NULL,NULL,NULL,0,0,NULL,NULL),(25,18,2,'2017-04-27','2017-04-27','2018-04-26','Check',4,NULL,NULL,NULL,NULL,0,0,NULL,NULL),(26,63,2,'2018-04-26','2018-04-26','2019-04-25','Payment',1,NULL,NULL,NULL,NULL,0,0,NULL,NULL),(27,147,1,'2018-04-25','2018-04-25','2020-04-24','Check',1,NULL,NULL,NULL,NULL,0,0,NULL,NULL),(28,150,2,'2018-04-24','2018-04-24','2019-04-23','Donation',1,NULL,NULL,NULL,NULL,0,0,NULL,NULL),(29,129,1,'2018-04-23','2018-04-23','2020-04-22','Check',1,NULL,NULL,NULL,NULL,0,0,NULL,NULL),(30,123,2,'2017-04-22','2017-04-22','2018-04-21','Check',4,NULL,NULL,NULL,NULL,0,0,NULL,NULL); /*!40000 ALTER TABLE `civicrm_membership` ENABLE KEYS */; UNLOCK TABLES; @@ -916,7 +916,7 @@ UNLOCK TABLES; LOCK TABLES `civicrm_membership_log` WRITE; /*!40000 ALTER TABLE `civicrm_membership_log` DISABLE KEYS */; -INSERT INTO `civicrm_membership_log` (`id`, `membership_id`, `status_id`, `start_date`, `end_date`, `modified_id`, `modified_date`, `membership_type_id`, `max_related`) VALUES (1,24,1,'2018-04-26','2019-04-25',2,'2018-05-19',2,NULL),(2,10,3,'2016-03-08','2018-03-07',10,'2018-05-19',1,NULL),(3,30,3,'2015-09-30','2017-09-29',14,'2018-05-19',1,NULL),(4,8,1,'2018-05-12','2019-05-11',16,'2018-05-19',2,NULL),(5,15,3,'2016-01-28','2018-01-27',31,'2018-05-19',1,NULL),(6,11,1,'2018-05-09',NULL,35,'2018-05-19',3,NULL),(7,25,3,'2015-11-09','2017-11-08',53,'2018-05-19',1,NULL),(8,14,1,'2018-05-06','2019-05-05',57,'2018-05-19',2,NULL),(9,12,1,'2018-05-08','2019-05-07',59,'2018-05-19',2,NULL),(10,4,1,'2018-05-16','2019-05-15',66,'2018-05-19',2,NULL),(11,23,1,'2018-04-27','2020-04-26',78,'2018-05-19',1,NULL),(12,6,1,'2018-05-14','2019-05-13',85,'2018-05-19',2,NULL),(13,29,1,'2018-04-21','2020-04-20',105,'2018-05-19',1,NULL),(14,20,3,'2015-12-19','2017-12-18',106,'2018-05-19',1,NULL),(15,5,3,'2016-04-17','2018-04-16',118,'2018-05-19',1,NULL),(16,19,1,'2018-05-01','2020-04-30',123,'2018-05-19',1,NULL),(17,22,1,'2018-04-28',NULL,126,'2018-05-19',3,NULL),(18,17,1,'2018-05-03','2020-05-02',128,'2018-05-19',1,NULL),(19,26,1,'2018-04-24','2019-04-23',150,'2018-05-19',2,NULL),(20,21,1,'2018-04-29','2020-04-28',159,'2018-05-19',1,NULL),(21,7,1,'2018-05-13','2020-05-12',162,'2018-05-19',1,NULL),(22,13,1,'2018-05-07','2020-05-06',166,'2018-05-19',1,NULL),(23,18,1,'2018-05-02','2019-05-01',172,'2018-05-19',2,NULL),(24,1,1,'2018-05-19','2020-05-18',173,'2018-05-19',1,NULL),(25,16,1,'2018-05-04','2019-05-03',179,'2018-05-19',2,NULL),(26,2,1,'2018-05-18','2019-05-17',185,'2018-05-19',2,NULL),(27,3,1,'2018-05-17','2020-05-16',187,'2018-05-19',1,NULL),(28,28,1,'2018-04-22','2019-04-21',191,'2018-05-19',2,NULL),(29,9,1,'2018-05-11','2020-05-10',195,'2018-05-19',1,NULL),(30,27,1,'2018-04-23','2020-04-22',196,'2018-05-19',1,NULL); +INSERT INTO `civicrm_membership_log` (`id`, `membership_id`, `status_id`, `start_date`, `end_date`, `modified_id`, `modified_date`, `membership_type_id`, `max_related`) VALUES (1,19,1,'2018-05-03','2020-05-02',8,'2018-05-21',1,NULL),(2,25,4,'2017-04-27','2018-04-26',18,'2018-05-21',2,NULL),(3,20,3,'2015-12-21','2017-12-20',22,'2018-05-21',1,NULL),(4,12,1,'2018-05-10','2019-05-09',45,'2018-05-21',2,NULL),(5,14,1,'2018-05-08','2019-05-07',49,'2018-05-21',2,NULL),(6,2,1,'2018-05-20','2019-05-19',62,'2018-05-21',2,NULL),(7,26,1,'2018-04-26','2019-04-25',63,'2018-05-21',2,NULL),(8,5,3,'2016-04-19','2018-04-18',69,'2018-05-21',1,NULL),(9,11,1,'2018-05-11',NULL,78,'2018-05-21',3,NULL),(10,9,1,'2018-05-13','2020-05-12',87,'2018-05-21',1,NULL),(11,8,1,'2018-05-14','2019-05-13',102,'2018-05-21',2,NULL),(12,4,1,'2018-05-18','2019-05-17',113,'2018-05-21',2,NULL),(13,24,1,'2018-04-28','2019-04-27',118,'2018-05-21',2,NULL),(14,30,4,'2017-04-22','2018-04-21',123,'2018-05-21',2,NULL),(15,29,1,'2018-04-23','2020-04-22',129,'2018-05-21',1,NULL),(16,3,1,'2018-05-19','2020-05-18',137,'2018-05-21',1,NULL),(17,15,4,'2017-05-07','2018-05-06',140,'2018-05-21',2,NULL),(18,7,1,'2018-05-15','2020-05-14',141,'2018-05-21',1,NULL),(19,27,1,'2018-04-25','2020-04-24',147,'2018-05-21',1,NULL),(20,22,1,'2018-04-30',NULL,149,'2018-05-21',3,NULL),(21,28,1,'2018-04-24','2019-04-23',150,'2018-05-21',2,NULL),(22,21,1,'2018-05-01','2020-04-30',153,'2018-05-21',1,NULL),(23,13,1,'2018-05-09','2020-05-08',156,'2018-05-21',1,NULL),(24,18,1,'2018-05-04','2019-05-03',158,'2018-05-21',2,NULL),(25,23,1,'2018-04-29','2020-04-28',161,'2018-05-21',1,NULL),(26,16,1,'2018-05-06','2019-05-05',163,'2018-05-21',2,NULL),(27,17,1,'2018-05-05','2020-05-04',164,'2018-05-21',1,NULL),(28,10,4,'2017-05-12','2018-05-11',166,'2018-05-21',2,NULL),(29,6,1,'2018-05-16','2019-05-15',181,'2018-05-21',2,NULL),(30,1,1,'2018-05-21','2020-05-20',200,'2018-05-21',1,NULL); /*!40000 ALTER TABLE `civicrm_membership_log` ENABLE KEYS */; UNLOCK TABLES; @@ -926,7 +926,7 @@ UNLOCK TABLES; LOCK TABLES `civicrm_membership_payment` WRITE; /*!40000 ALTER TABLE `civicrm_membership_payment` DISABLE KEYS */; -INSERT INTO `civicrm_membership_payment` (`id`, `membership_id`, `contribution_id`) VALUES (1,1,14),(2,3,15),(3,5,16),(4,7,17),(5,9,18),(6,10,19),(7,13,20),(8,15,21),(9,17,22),(10,19,23),(11,20,24),(12,21,25),(13,23,26),(14,25,27),(15,27,28),(16,29,29),(17,30,30),(18,2,31),(19,4,32),(20,6,33),(21,8,34),(22,12,35),(23,14,36),(24,16,37),(25,18,38),(26,24,39),(27,26,40),(28,28,41),(29,11,42),(30,22,43); +INSERT INTO `civicrm_membership_payment` (`id`, `membership_id`, `contribution_id`) VALUES (1,1,14),(2,2,15),(3,3,16),(4,4,17),(5,5,18),(6,6,19),(7,7,20),(8,8,21),(9,9,22),(10,10,23),(11,11,24),(12,12,25),(13,13,26),(14,14,27),(15,15,28),(16,16,29),(17,17,30),(18,18,31),(19,19,32),(20,20,33),(21,21,34),(22,22,35),(23,23,36),(24,24,37),(25,25,38),(26,26,39),(27,27,40),(28,28,41),(29,29,42),(30,30,43); /*!40000 ALTER TABLE `civicrm_membership_payment` ENABLE KEYS */; UNLOCK TABLES; @@ -956,7 +956,7 @@ UNLOCK TABLES; LOCK TABLES `civicrm_menu` WRITE; /*!40000 ALTER TABLE `civicrm_menu` DISABLE KEYS */; -INSERT INTO `civicrm_menu` (`id`, `domain_id`, `path`, `path_arguments`, `title`, `access_callback`, `access_arguments`, `page_callback`, `page_arguments`, `breadcrumb`, `return_url`, `return_url_args`, `component_id`, `is_active`, `is_public`, `is_exposed`, `is_ssl`, `weight`, `type`, `page_type`, `skipBreadcrumb`, `module_data`) VALUES (1,1,'civicrm/upgrade',NULL,'Upgrade CiviCRM','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:24:\"CRM_Upgrade_Page_Upgrade\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(2,1,'civicrm/export',NULL,'Download Errors','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Export_BAO_Export\";i:1;s:6:\"invoke\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(3,1,'civicrm/export/contact',NULL,'Export Contacts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Export_BAO_Export\";i:1;s:6:\"invoke\";}',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Download Errors\";s:3:\"url\";s:23:\"/civicrm/export?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,0,NULL,'a:0:{}'),(4,1,'civicrm/export/standalone',NULL,'Export','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:32:\"CRM_Export_Controller_Standalone\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Download Errors\";s:3:\"url\";s:23:\"/civicrm/export?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(5,1,'civicrm/admin/options/acl_role',NULL,'ACL Roles','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,1,1,0,NULL,'a:0:{}'),(6,1,'civicrm/acl',NULL,'Manage ACLs','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:16:\"CRM_ACL_Page_ACL\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(7,1,'civicrm/acl/entityrole',NULL,'Assign Users to ACL Roles','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:23:\"CRM_ACL_Page_EntityRole\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:11:\"Manage ACLs\";s:3:\"url\";s:20:\"/civicrm/acl?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(8,1,'civicrm/acl/basic',NULL,'ACL','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:21:\"CRM_ACL_Page_ACLBasic\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:11:\"Manage ACLs\";s:3:\"url\";s:20:\"/civicrm/acl?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(9,1,'civicrm/standalone/register',NULL,'Registration Page','s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:28:\"CRM_Standalone_Form_Register\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,1,NULL,0,1,1,0,NULL,'a:0:{}'),(10,1,'civicrm/file',NULL,'Browse Uploaded files','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access uploaded files\";}i:1;s:3:\"and\";}','s:18:\"CRM_Core_Page_File\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(11,1,'civicrm/file/delete',NULL,'Delete File','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:17:\"CRM_Core_BAO_File\";i:1;s:16:\"deleteAttachment\";}',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:21:\"Browse Uploaded files\";s:3:\"url\";s:21:\"/civicrm/file?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(12,1,'civicrm/friend',NULL,'Tell a Friend','s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:15:\"CRM_Friend_Form\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,1,NULL,0,1,1,0,NULL,'a:0:{}'),(13,1,'civicrm/logout',NULL,'Log out','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:16:\"CRM_Utils_System\";i:1;s:6:\"logout\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,9999,1,1,NULL,'a:0:{}'),(14,1,'civicrm/i18n',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:17:\"translate CiviCRM\";}i:1;s:3:\"and\";}','s:18:\"CRM_Core_I18n_Form\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(15,1,'civicrm/ajax/attachment',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"access AJAX API\";}i:1;s:2:\"or\";}','a:2:{i:0;s:29:\"CRM_Core_Page_AJAX_Attachment\";i:1;s:10:\"attachFile\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(16,1,'civicrm/api',NULL,'CiviCRM API v3','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Admin_Page_APIExplorer\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(17,1,'civicrm/ajax/apiexample',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:26:\"CRM_Admin_Page_APIExplorer\";i:1;s:14:\"getExampleFile\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(18,1,'civicrm/ajax/apidoc',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:26:\"CRM_Admin_Page_APIExplorer\";i:1;s:6:\"getDoc\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(19,1,'civicrm/ajax/rest',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"access AJAX API\";}i:1;s:2:\"or\";}','a:2:{i:0;s:14:\"CRM_Utils_REST\";i:1;s:4:\"ajax\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(20,1,'civicrm/api/json',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:14:\"CRM_Utils_REST\";i:1;s:8:\"ajaxJson\";}',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:14:\"CiviCRM API v3\";s:3:\"url\";s:20:\"/civicrm/api?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(21,1,'civicrm/inline',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:14:\"CRM_Utils_REST\";i:1;s:12:\"loadTemplate\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(22,1,'civicrm/ajax/chart',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:38:\"CRM_Contribute_Form_ContributionCharts\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(23,1,'civicrm/asset/builder',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"*always allow*\";}i:1;s:3:\"and\";}','a:2:{i:0;s:23:\"\\Civi\\Core\\AssetBuilder\";i:1;s:7:\"pageRun\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(24,1,'civicrm/contribute/ajax/tableview',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:29:\"CRM_Contribute_Page_DashBoard\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(25,1,'civicrm/payment/ipn',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','a:2:{i:0;s:16:\"CRM_Core_Payment\";i:1;s:9:\"handleIPN\";}',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:11:\"New Payment\";s:3:\"url\";s:39:\"/civicrm/payment?reset=1&action=add\";}}',NULL,NULL,2,NULL,1,NULL,0,1,1,0,NULL,'a:0:{}'),(26,1,'civicrm/batch',NULL,'Batch Data Entry','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:20:\"CRM_Batch_Page_Batch\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(27,1,'civicrm/batch/add',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:20:\"CRM_Batch_Form_Batch\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:16:\"Batch Data Entry\";s:3:\"url\";s:22:\"/civicrm/batch?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(28,1,'civicrm/batch/entry',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:20:\"CRM_Batch_Form_Entry\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:16:\"Batch Data Entry\";s:3:\"url\";s:22:\"/civicrm/batch?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(29,1,'civicrm/ajax/batch',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','a:2:{i:0;s:19:\"CRM_Batch_Page_AJAX\";i:1;s:9:\"batchSave\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(30,1,'civicrm/ajax/batchlist',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:19:\"CRM_Batch_Page_AJAX\";i:1;s:12:\"getBatchList\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(31,1,'civicrm/ajax/inline',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:18:\"CRM_Core_Page_AJAX\";i:1;s:3:\"run\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(32,1,'civicrm/dev/qunit',NULL,'QUnit','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','s:19:\"CRM_Core_Page_QUnit\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(33,1,'civicrm/profile-editor/schema',NULL,'ProfileEditor','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:25:\"CRM_UF_Page_ProfileEditor\";i:1;s:13:\"getSchemaJSON\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(34,1,'civicrm/a',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:23:\"\\Civi\\Angular\\Page\\Main\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(35,1,'civicrm/ajax/angular-modules',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"*always allow*\";}i:1;s:3:\"and\";}','s:26:\"\\Civi\\Angular\\Page\\Modules\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(36,1,'civicrm/ajax/recurringentity/update-mode',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:34:\"CRM_Core_Page_AJAX_RecurringEntity\";i:1;s:10:\"updateMode\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(37,1,'civicrm/recurringentity/preview',NULL,'Confirm dates','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:36:\"CRM_Core_Page_RecurringEntityPreview\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(38,1,'civicrm/ajax/l10n-js',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:18:\"CRM_Core_Resources\";i:1;s:20:\"outputLocalizationJS\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(39,1,'civicrm/shortcode',NULL,'Insert CiviCRM Content','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:23:\"CRM_Core_Form_ShortCode\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(40,1,'civicrm/task/add-to-group',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:32:\"CRM_Contact_Form_Task_AddToGroup\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(41,1,'civicrm/task/remove-from-group',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:37:\"CRM_Contact_Form_Task_RemoveFromGroup\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(42,1,'civicrm/task/add-to-tag',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:30:\"CRM_Contact_Form_Task_AddToTag\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(43,1,'civicrm/task/remove-from-tag',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:35:\"CRM_Contact_Form_Task_RemoveFromTag\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(44,1,'civicrm/task/send-email',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:27:\"CRM_Contact_Form_Task_Email\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(45,1,'civicrm/task/make-mailing-label',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:27:\"CRM_Contact_Form_Task_Label\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(46,1,'civicrm/task/pick-profile',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:33:\"CRM_Contact_Form_Task_PickProfile\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(47,1,'civicrm/task/print-document',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:25:\"CRM_Contact_Form_Task_PDF\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(48,1,'civicrm/task/unhold-email',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:28:\"CRM_Contact_Form_Task_Unhold\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(49,1,'civicrm/task/alter-contact-preference',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:38:\"CRM_Contact_Form_Task_AlterPreferences\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(50,1,'civicrm/task/delete-contact',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:28:\"CRM_Contact_Form_Task_Delete\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(51,1,'civicrm/profile',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:23:\"CRM_Profile_Page_Router\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,1,NULL,0,0,1,0,NULL,'a:0:{}'),(52,1,'civicrm/profile/create',NULL,'CiviCRM Profile Create','s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:23:\"CRM_Profile_Page_Router\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,1,NULL,0,0,1,0,NULL,'a:0:{}'),(53,1,'civicrm/profile/view',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:21:\"CRM_Profile_Page_View\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,1,NULL,0,1,1,0,NULL,'a:0:{}'),(54,1,'civicrm/group',NULL,'Manage Groups','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:20:\"CRM_Group_Page_Group\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,30,1,1,NULL,'a:0:{}'),(55,1,'civicrm/group/search',NULL,'Group Members','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:29:\"CRM_Contact_Controller_Search\";','s:8:\"mode=256\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:13:\"Manage Groups\";s:3:\"url\";s:22:\"/civicrm/group?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:1:{s:7:\"comment\";s:164:\"Note: group search already respect ACL, so a strict permission at url level is not required. A simple/basic permission like \'access CiviCRM\' could be used. CRM-5417\";}'),(56,1,'civicrm/group/add',NULL,'New Group','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:11:\"edit groups\";}i:1;s:3:\"and\";}','s:20:\"CRM_Group_Controller\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:13:\"Manage Groups\";s:3:\"url\";s:22:\"/civicrm/group?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(57,1,'civicrm/ajax/grouplist',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:19:\"CRM_Group_Page_AJAX\";i:1;s:12:\"getGroupList\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(58,1,'civicrm/custom',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:32:\"CRM_Custom_Form_CustomDataByType\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(59,1,'civicrm/tag',NULL,'Tags (Categories)','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:11:\"manage tags\";}i:1;s:2:\"or\";}','s:16:\"CRM_Tag_Page_Tag\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,25,1,0,NULL,'a:3:{s:4:\"desc\";s:158:\"Tags are useful for segmenting the contacts in your database into categories (e.g. Staff Member, Donor, Volunteer, etc.). Create and edit available tags here.\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";s:4:\"icon\";s:18:\"admin/small/11.png\";}'),(60,1,'civicrm/tag/edit','action=add','New Tag','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:11:\"manage tags\";}i:1;s:2:\"or\";}','s:17:\"CRM_Tag_Form_Edit\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:17:\"Tags (Categories)\";s:3:\"url\";s:20:\"/civicrm/tag?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(61,1,'civicrm/tag/merge',NULL,'Merge Tags','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:11:\"manage tags\";}i:1;s:2:\"or\";}','s:18:\"CRM_Tag_Form_Merge\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:17:\"Tags (Categories)\";s:3:\"url\";s:20:\"/civicrm/tag?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(62,1,'civicrm/ajax/tagTree',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:11:\"manage tags\";}i:1;s:2:\"or\";}','a:2:{i:0;s:19:\"CRM_Admin_Page_AJAX\";i:1;s:10:\"getTagTree\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(63,1,'civicrm',NULL,'CiviCRM','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Contact_Page_DashBoard\";',NULL,'a:0:{}',NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,0,NULL,'a:0:{}'),(64,1,'civicrm/dashboard',NULL,'CiviCRM Home','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Contact_Page_DashBoard\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,1,NULL,'a:0:{}'),(65,1,'civicrm/dashlet',NULL,'CiviCRM Dashlets','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:24:\"CRM_Contact_Page_Dashlet\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,1,NULL,'a:0:{}'),(66,1,'civicrm/contact/search',NULL,'Find Contacts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:29:\"CRM_Contact_Controller_Search\";','s:8:\"mode=256\";','a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,10,1,1,NULL,'a:0:{}'),(67,1,'civicrm/contact/image',NULL,'Process Uploaded Images','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access uploaded files\";}i:1;s:3:\"and\";}','a:2:{i:0;s:23:\"CRM_Contact_BAO_Contact\";i:1;s:12:\"processImage\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(68,1,'civicrm/contact/imagefile',NULL,'Get Image File','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"*always allow*\";}i:1;s:3:\"and\";}','s:26:\"CRM_Contact_Page_ImageFile\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(69,1,'civicrm/contact/search/basic',NULL,'Find Contacts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:29:\"CRM_Contact_Controller_Search\";','s:8:\"mode=256\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:13:\"Find Contacts\";s:3:\"url\";s:31:\"/civicrm/contact/search?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(70,1,'civicrm/contact/search/advanced',NULL,'Advanced Search','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:29:\"CRM_Contact_Controller_Search\";','s:8:\"mode=512\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:13:\"Find Contacts\";s:3:\"url\";s:31:\"/civicrm/contact/search?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,12,1,1,NULL,'a:0:{}'),(71,1,'civicrm/contact/search/builder',NULL,'Search Builder','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:29:\"CRM_Contact_Controller_Search\";','s:9:\"mode=8192\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:13:\"Find Contacts\";s:3:\"url\";s:31:\"/civicrm/contact/search?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,14,1,1,NULL,'a:0:{}'),(72,1,'civicrm/contact/search/custom',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:29:\"CRM_Contact_Controller_Search\";','s:10:\"mode=16384\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:13:\"Find Contacts\";s:3:\"url\";s:31:\"/civicrm/contact/search?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(73,1,'civicrm/contact/search/custom/list',NULL,'Custom Searches','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:29:\"CRM_Contact_Page_CustomSearch\";','s:10:\"mode=16384\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:13:\"Find Contacts\";s:3:\"url\";s:31:\"/civicrm/contact/search?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,16,1,1,NULL,'a:0:{}'),(74,1,'civicrm/contact/add',NULL,'New Contact','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:24:\"CRM_Contact_Form_Contact\";','s:13:\"addSequence=1\";','a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(75,1,'civicrm/contact/add/individual','ct=Individual','New Individual','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:12:\"add contacts\";}i:1;s:3:\"and\";}','s:24:\"CRM_Contact_Form_Contact\";','s:13:\"addSequence=1\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:11:\"New Contact\";s:3:\"url\";s:28:\"/civicrm/contact/add?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(76,1,'civicrm/contact/add/household','ct=Household','New Household','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:12:\"add contacts\";}i:1;s:3:\"and\";}','s:24:\"CRM_Contact_Form_Contact\";','s:13:\"addSequence=1\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:11:\"New Contact\";s:3:\"url\";s:28:\"/civicrm/contact/add?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(77,1,'civicrm/contact/add/organization','ct=Organization','New Organization','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:12:\"add contacts\";}i:1;s:3:\"and\";}','s:24:\"CRM_Contact_Form_Contact\";','s:13:\"addSequence=1\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:11:\"New Contact\";s:3:\"url\";s:28:\"/civicrm/contact/add?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(78,1,'civicrm/contact/relatedcontact',NULL,'Edit Related Contact','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:24:\"access Contact Dashboard\";}i:1;s:3:\"and\";}','s:31:\"CRM_Contact_Form_RelatedContact\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,1,NULL,0,1,1,0,NULL,'a:0:{}'),(79,1,'civicrm/contact/merge',NULL,'Merge Contact','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:24:\"merge duplicate contacts\";}i:1;s:3:\"and\";}','s:22:\"CRM_Contact_Form_Merge\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(80,1,'civicrm/contact/email',NULL,'Email a Contact','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:27:\"CRM_Contact_Form_Task_Email\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(81,1,'civicrm/contact/map',NULL,'Map Location(s)','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:25:\"CRM_Contact_Form_Task_Map\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,1,NULL,0,1,1,0,NULL,'a:0:{}'),(82,1,'civicrm/contact/map/event',NULL,'Map Event Location','s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:31:\"CRM_Contact_Form_Task_Map_Event\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Map Location(s)\";s:3:\"url\";s:28:\"/civicrm/contact/map?reset=1\";}}',NULL,NULL,NULL,NULL,1,NULL,0,1,1,0,NULL,'a:0:{}'),(83,1,'civicrm/contact/view','cid=%%cid%%','Contact Summary','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:29:\"CRM_Contact_Page_View_Summary\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(84,1,'civicrm/contact/view/delete',NULL,'Delete Contact','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:28:\"CRM_Contact_Form_Task_Delete\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(85,1,'civicrm/contact/view/activity','show=1,cid=%%cid%%','Activities','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:21:\"CRM_Activity_Page_Tab\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(86,1,'civicrm/activity/add','action=add','Activities','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Activity_Form_Activity\";','s:14:\"attachUpload=1\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:12:\"New Activity\";s:3:\"url\";s:63:\"/civicrm/activity?reset=1&action=add&context=standalone\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(87,1,'civicrm/activity/email/add','action=add','Activities','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:27:\"CRM_Contact_Form_Task_Email\";','s:14:\"attachUpload=1\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:12:\"New Activity\";s:3:\"url\";s:63:\"/civicrm/activity?reset=1&action=add&context=standalone\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(88,1,'civicrm/activity/pdf/add','action=add','Activities','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:25:\"CRM_Contact_Form_Task_PDF\";','s:14:\"attachUpload=1\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:12:\"New Activity\";s:3:\"url\";s:63:\"/civicrm/activity?reset=1&action=add&context=standalone\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(89,1,'civicrm/contact/view/rel','cid=%%cid%%','Relationships','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:34:\"CRM_Contact_Page_View_Relationship\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(90,1,'civicrm/contact/view/group','cid=%%cid%%','Groups','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:34:\"CRM_Contact_Page_View_GroupContact\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(91,1,'civicrm/contact/view/smartgroup','cid=%%cid%%','Smart Groups','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:39:\"CRM_Contact_Page_View_ContactSmartGroup\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(92,1,'civicrm/contact/view/note','cid=%%cid%%','Notes','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:26:\"CRM_Contact_Page_View_Note\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(93,1,'civicrm/contact/view/tag','cid=%%cid%%','Tags','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:25:\"CRM_Contact_Page_View_Tag\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(94,1,'civicrm/contact/view/cd',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:32:\"CRM_Contact_Page_View_CustomData\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(95,1,'civicrm/contact/view/cd/edit',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:27:\"CRM_Contact_Form_CustomData\";','s:13:\"addSequence=1\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(96,1,'civicrm/contact/view/vcard',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:27:\"CRM_Contact_Page_View_Vcard\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(97,1,'civicrm/contact/view/print',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:27:\"CRM_Contact_Page_View_Print\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(98,1,'civicrm/contact/view/log',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:25:\"CRM_Contact_Page_View_Log\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(99,1,'civicrm/user',NULL,'Contact Dashboard','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:24:\"access Contact Dashboard\";}i:1;s:3:\"and\";}','s:35:\"CRM_Contact_Page_View_UserDashBoard\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,1,NULL,0,0,1,0,NULL,'a:0:{}'),(100,1,'civicrm/dashlet/activity',NULL,'Activity Dashlet','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:25:\"CRM_Dashlet_Page_Activity\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:16:\"CiviCRM Dashlets\";s:3:\"url\";s:24:\"/civicrm/dashlet?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(101,1,'civicrm/dashlet/blog',NULL,'CiviCRM Blog','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:21:\"CRM_Dashlet_Page_Blog\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:16:\"CiviCRM Dashlets\";s:3:\"url\";s:24:\"/civicrm/dashlet?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(102,1,'civicrm/dashlet/getting-started',NULL,'CiviCRM Resources','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:31:\"CRM_Dashlet_Page_GettingStarted\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:16:\"CiviCRM Dashlets\";s:3:\"url\";s:24:\"/civicrm/dashlet?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(103,1,'civicrm/ajax/relation',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:12:\"relationship\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,3,NULL,'a:0:{}'),(104,1,'civicrm/ajax/groupTree',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:9:\"groupTree\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(105,1,'civicrm/ajax/custom',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:11:\"customField\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(106,1,'civicrm/ajax/customvalue',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:17:\"deleteCustomValue\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,3,NULL,'a:0:{}'),(107,1,'civicrm/ajax/cmsuser',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:13:\"checkUserName\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(108,1,'civicrm/ajax/checkemail',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:15:\"getContactEmail\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(109,1,'civicrm/ajax/checkphone',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:15:\"getContactPhone\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(110,1,'civicrm/ajax/subtype',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:13:\"buildSubTypes\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(111,1,'civicrm/ajax/dashboard',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:9:\"dashboard\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,3,NULL,'a:0:{}'),(112,1,'civicrm/ajax/signature',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:12:\"getSignature\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(113,1,'civicrm/ajax/pdfFormat',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:9:\"pdfFormat\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(114,1,'civicrm/ajax/paperSize',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:9:\"paperSize\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(115,1,'civicrm/ajax/contactref',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:31:\"access contact reference fields\";i:1;s:15:\" access CiviCRM\";}i:1;s:2:\"or\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:16:\"contactReference\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(116,1,'civicrm/dashlet/myCases',NULL,'Case Dashlet','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:24:\"CRM_Dashlet_Page_MyCases\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:16:\"CiviCRM Dashlets\";s:3:\"url\";s:24:\"/civicrm/dashlet?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(117,1,'civicrm/dashlet/allCases',NULL,'All Cases Dashlet','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:31:\"access all cases and activities\";}i:1;s:3:\"and\";}','s:25:\"CRM_Dashlet_Page_AllCases\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:16:\"CiviCRM Dashlets\";s:3:\"url\";s:24:\"/civicrm/dashlet?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(118,1,'civicrm/dashlet/casedashboard',NULL,'Case Dashboard Dashlet','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:30:\"CRM_Dashlet_Page_CaseDashboard\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:16:\"CiviCRM Dashlets\";s:3:\"url\";s:24:\"/civicrm/dashlet?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(119,1,'civicrm/contact/deduperules',NULL,'Find and Merge Duplicate Contacts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:23:\"administer dedupe rules\";i:1;s:24:\"merge duplicate contacts\";}i:1;s:2:\"or\";}','s:28:\"CRM_Contact_Page_DedupeRules\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,105,1,0,NULL,'a:3:{s:4:\"desc\";s:158:\"Manage the rules used to identify potentially duplicate contact records. Scan for duplicates using a selected rule and merge duplicate contact data as needed.\";s:10:\"adminGroup\";s:6:\"Manage\";s:4:\"icon\";s:34:\"admin/small/duplicate_matching.png\";}'),(120,1,'civicrm/contact/dedupefind',NULL,'Find and Merge Duplicate Contacts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:24:\"merge duplicate contacts\";}i:1;s:3:\"and\";}','s:27:\"CRM_Contact_Page_DedupeFind\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(121,1,'civicrm/ajax/dedupefind',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:24:\"merge duplicate contacts\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:10:\"getDedupes\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(122,1,'civicrm/contact/dedupemerge',NULL,'Batch Merge Duplicate Contacts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:24:\"merge duplicate contacts\";}i:1;s:3:\"and\";}','s:28:\"CRM_Contact_Page_DedupeMerge\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(123,1,'civicrm/dedupe/exception',NULL,'Dedupe Exceptions','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:32:\"CRM_Contact_Page_DedupeException\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,110,1,0,NULL,'a:1:{s:10:\"adminGroup\";s:6:\"Manage\";}'),(124,1,'civicrm/ajax/dedupeRules',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:16:\"buildDedupeRules\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(125,1,'civicrm/contact/view/useradd','cid=%%cid%%','Add User','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:29:\"CRM_Contact_Page_View_Useradd\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(126,1,'civicrm/ajax/markSelection',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:22:\"selectUnselectContacts\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(127,1,'civicrm/ajax/toggleDedupeSelect',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:24:\"merge duplicate contacts\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:18:\"toggleDedupeSelect\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(128,1,'civicrm/ajax/flipDupePairs',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:24:\"merge duplicate contacts\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:13:\"flipDupePairs\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(129,1,'civicrm/activity/sms/add','action=add','Activities','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:8:\"send SMS\";}i:1;s:3:\"and\";}','s:25:\"CRM_Contact_Form_Task_SMS\";','s:14:\"attachUpload=1\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:12:\"New Activity\";s:3:\"url\";s:63:\"/civicrm/activity?reset=1&action=add&context=standalone\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(130,1,'civicrm/ajax/contactrelationships',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"view my contact\";}i:1;s:2:\"or\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:23:\"getContactRelationships\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(131,1,'civicrm/ajax/jqState',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:27:\"CRM_Core_Page_AJAX_Location\";i:1;s:7:\"jqState\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,1,NULL,0,1,1,0,NULL,'a:0:{}'),(132,1,'civicrm/ajax/jqCounty',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:27:\"CRM_Core_Page_AJAX_Location\";i:1;s:8:\"jqCounty\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,1,NULL,0,1,1,0,NULL,'a:0:{}'),(133,1,'civicrm/payment/form',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:26:\"CRM_Financial_Form_Payment\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:11:\"New Payment\";s:3:\"url\";s:39:\"/civicrm/payment?reset=1&action=add\";}}',NULL,NULL,2,NULL,1,NULL,0,0,1,0,NULL,'a:0:{}'),(134,1,'civicrm/payment/edit',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:30:\"CRM_Financial_Form_PaymentEdit\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:11:\"New Payment\";s:3:\"url\";s:39:\"/civicrm/payment?reset=1&action=add\";}}',NULL,NULL,2,NULL,NULL,NULL,0,1,1,0,NULL,'a:1:{s:9:\"component\";s:14:\"CiviContribute\";}'),(135,1,'civicrm/admin/custom/group',NULL,'Custom Data','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:21:\"CRM_Custom_Page_Group\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,10,1,0,NULL,'a:3:{s:4:\"desc\";s:109:\"Configure custom fields to collect and store custom data which is not included in the standard CiviCRM forms.\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";s:4:\"icon\";s:26:\"admin/small/custm_data.png\";}'),(136,1,'civicrm/admin/custom/group/field',NULL,'Custom Data Fields','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:21:\"CRM_Custom_Page_Field\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:11:\"Custom Data\";s:3:\"url\";s:35:\"/civicrm/admin/custom/group?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,11,1,0,0,'a:0:{}'),(137,1,'civicrm/admin/custom/group/field/option',NULL,'Custom Field - Options','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Custom_Page_Option\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:11:\"Custom Data\";s:3:\"url\";s:35:\"/civicrm/admin/custom/group?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,1,1,0,NULL,'a:0:{}'),(138,1,'civicrm/admin/custom/group/field/add',NULL,'Custom Field - Add','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:21:\"CRM_Custom_Form_Field\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:11:\"Custom Data\";s:3:\"url\";s:35:\"/civicrm/admin/custom/group?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,1,1,0,NULL,'a:0:{}'),(139,1,'civicrm/admin/custom/group/field/update',NULL,'Custom Field - Edit','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:21:\"CRM_Custom_Form_Field\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:11:\"Custom Data\";s:3:\"url\";s:35:\"/civicrm/admin/custom/group?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,1,1,0,NULL,'a:0:{}'),(140,1,'civicrm/admin/custom/group/field/move',NULL,'Custom Field - Move','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:25:\"CRM_Custom_Form_MoveField\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:11:\"Custom Data\";s:3:\"url\";s:35:\"/civicrm/admin/custom/group?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,1,1,0,NULL,'a:0:{}'),(141,1,'civicrm/admin/custom/group/field/changetype',NULL,'Custom Field - Change Type','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:31:\"CRM_Custom_Form_ChangeFieldType\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:11:\"Custom Data\";s:3:\"url\";s:35:\"/civicrm/admin/custom/group?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,1,1,0,NULL,'a:0:{}'),(142,1,'civicrm/admin/uf/group',NULL,'Profiles','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:17:\"CRM_UF_Page_Group\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,20,1,0,NULL,'a:3:{s:4:\"desc\";s:151:\"Profiles allow you to aggregate groups of fields and include them in your site as input forms, contact display pages, and search and listings features.\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";s:4:\"icon\";s:23:\"admin/small/Profile.png\";}'),(143,1,'civicrm/admin/uf/group/field',NULL,'CiviCRM Profile Fields','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:17:\"CRM_UF_Page_Field\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:8:\"Profiles\";s:3:\"url\";s:31:\"/civicrm/admin/uf/group?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,21,1,0,0,'a:0:{}'),(144,1,'civicrm/admin/uf/group/field/add',NULL,'Add Field','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:17:\"CRM_UF_Form_Field\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:8:\"Profiles\";s:3:\"url\";s:31:\"/civicrm/admin/uf/group?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,22,1,0,NULL,'a:0:{}'),(145,1,'civicrm/admin/uf/group/field/update',NULL,'Edit Field','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:17:\"CRM_UF_Form_Field\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:8:\"Profiles\";s:3:\"url\";s:31:\"/civicrm/admin/uf/group?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,23,1,0,NULL,'a:0:{}'),(146,1,'civicrm/admin/uf/group/add',NULL,'New CiviCRM Profile','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:17:\"CRM_UF_Form_Group\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:8:\"Profiles\";s:3:\"url\";s:31:\"/civicrm/admin/uf/group?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,24,1,0,NULL,'a:0:{}'),(147,1,'civicrm/admin/uf/group/update',NULL,'Profile Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:17:\"CRM_UF_Form_Group\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:8:\"Profiles\";s:3:\"url\";s:31:\"/civicrm/admin/uf/group?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,25,1,0,NULL,'a:0:{}'),(148,1,'civicrm/admin/uf/group/setting',NULL,'AdditionalInfo Form','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_UF_Form_AdvanceSetting\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:8:\"Profiles\";s:3:\"url\";s:31:\"/civicrm/admin/uf/group?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,0,1,0,NULL,'a:0:{}'),(149,1,'civicrm/admin/options/activity_type',NULL,'Activity Types','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,30,1,0,NULL,'a:3:{s:4:\"desc\";s:155:\"CiviCRM has several built-in activity types (meetings, phone calls, emails sent). Track other types of interactions by creating custom activity types here.\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";s:4:\"icon\";s:18:\"admin/small/05.png\";}'),(150,1,'civicrm/admin/reltype',NULL,'Relationship Types','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:31:\"CRM_Admin_Page_RelationshipType\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,35,1,0,NULL,'a:3:{s:4:\"desc\";s:148:\"Contacts can be linked to each other through Relationships (e.g. Spouse, Employer, etc.). Define the types of relationships you want to record here.\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";s:4:\"icon\";s:25:\"admin/small/rela_type.png\";}'),(151,1,'civicrm/admin/options/subtype',NULL,'Contact Types','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Admin_Page_ContactType\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,40,1,0,NULL,'a:2:{s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";s:4:\"icon\";s:18:\"admin/small/09.png\";}'),(152,1,'civicrm/admin/options/gender',NULL,'Gender Options','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,45,1,0,NULL,'a:3:{s:4:\"desc\";s:79:\"Options for assigning gender to individual contacts (e.g. Male, Female, Other).\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";s:4:\"icon\";s:18:\"admin/small/01.png\";}'),(153,1,'civicrm/admin/options/individual_prefix',NULL,'Individual Prefixes (Ms, Mr...)','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,50,1,0,NULL,'a:3:{s:4:\"desc\";s:66:\"Options for individual contact prefixes (e.g. Ms., Mr., Dr. etc.).\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";s:4:\"icon\";s:21:\"admin/small/title.png\";}'),(154,1,'civicrm/admin/options/individual_suffix',NULL,'Individual Suffixes (Jr, Sr...)','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,55,1,0,NULL,'a:3:{s:4:\"desc\";s:61:\"Options for individual contact suffixes (e.g. Jr., Sr. etc.).\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";s:4:\"icon\";s:18:\"admin/small/10.png\";}'),(155,1,'civicrm/admin/locationType',NULL,'Location Types (Home, Work...)','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:27:\"CRM_Admin_Page_LocationType\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,60,1,0,NULL,'a:3:{s:4:\"desc\";s:94:\"Options for categorizing contact addresses and phone numbers (e.g. Home, Work, Billing, etc.).\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";s:4:\"icon\";s:18:\"admin/small/13.png\";}'),(156,1,'civicrm/admin/options/website_type',NULL,'Website Types','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,65,1,0,NULL,'a:2:{s:4:\"desc\";s:48:\"Options for assigning website types to contacts.\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'),(157,1,'civicrm/admin/options/instant_messenger_service',NULL,'Instant Messenger Services','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,70,1,0,NULL,'a:3:{s:4:\"desc\";s:79:\"List of IM services which can be used when recording screen-names for contacts.\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";s:4:\"icon\";s:18:\"admin/small/07.png\";}'),(158,1,'civicrm/admin/options/mobile_provider',NULL,'Mobile Phone Providers','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,75,1,0,NULL,'a:3:{s:4:\"desc\";s:90:\"List of mobile phone providers which can be assigned when recording contact phone numbers.\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";s:4:\"icon\";s:18:\"admin/small/08.png\";}'),(159,1,'civicrm/admin/options/phone_type',NULL,'Phone Type','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,80,1,0,NULL,'a:3:{s:4:\"desc\";s:80:\"Options for assigning phone type to contacts (e.g Phone,\n Mobile, Fax, Pager)\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";s:4:\"icon\";s:7:\"tel.gif\";}'),(160,1,'civicrm/admin/setting/preferences/display',NULL,'Display Preferences','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:34:\"CRM_Admin_Form_Preferences_Display\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,90,1,0,NULL,'a:2:{s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";s:4:\"icon\";s:18:\"admin/small/36.png\";}'),(161,1,'civicrm/admin/setting/search',NULL,'Search Preferences','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:29:\"CRM_Admin_Form_Setting_Search\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,95,1,0,NULL,'a:2:{s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";s:4:\"icon\";s:18:\"admin/small/36.png\";}'),(162,1,'civicrm/admin/setting/preferences/date',NULL,'View Date Preferences','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:30:\"CRM_Admin_Page_PreferencesDate\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,1,1,0,NULL,'a:0:{}'),(163,1,'civicrm/admin/menu',NULL,'Navigation Menu','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:25:\"CRM_Admin_Page_Navigation\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,100,1,0,NULL,'a:3:{s:4:\"desc\";s:79:\"Add or remove menu items, and modify the order of items on the navigation menu.\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";s:4:\"icon\";s:24:\"admin/small/template.png\";}'),(164,1,'civicrm/admin/options/wordreplacements',NULL,'Word Replacements','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:31:\"CRM_Admin_Form_WordReplacements\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,105,1,0,NULL,'a:2:{s:4:\"desc\";s:18:\"Word Replacements.\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'),(165,1,'civicrm/admin/options/custom_search',NULL,'Manage Custom Searches','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,110,1,0,NULL,'a:3:{s:4:\"desc\";s:225:\"Developers and accidental techies with a bit of PHP and SQL knowledge can create new search forms to handle specific search and reporting needs which aren\'t covered by the built-in Advanced Search and Search Builder features.\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";s:4:\"icon\";s:24:\"admin/small/template.png\";}'),(166,1,'civicrm/admin/domain','action=update','Organization Address and Contact Info','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:23:\"CRM_Contact_Form_Domain\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,10,1,0,NULL,'a:3:{s:4:\"desc\";s:150:\"Configure primary contact name, email, return-path and address information. This information is used by CiviMail to identify the sending organization.\";s:10:\"adminGroup\";s:14:\"Communications\";s:4:\"icon\";s:22:\"admin/small/domain.png\";}'),(167,1,'civicrm/admin/options/from_email_address',NULL,'From Email Addresses','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,20,1,0,NULL,'a:3:{s:4:\"desc\";s:74:\"List of Email Addresses which can be used when sending emails to contacts.\";s:10:\"adminGroup\";s:14:\"Communications\";s:4:\"icon\";s:21:\"admin/small/title.png\";}'),(168,1,'civicrm/admin/messageTemplates',NULL,'Message Templates','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:22:\"edit message templates\";}i:1;s:3:\"and\";}','s:31:\"CRM_Admin_Page_MessageTemplates\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,30,1,0,NULL,'a:3:{s:4:\"desc\";s:130:\"Message templates allow you to save and re-use messages with layouts which you can use when sending email to one or more contacts.\";s:10:\"adminGroup\";s:14:\"Communications\";s:4:\"icon\";s:24:\"admin/small/template.png\";}'),(169,1,'civicrm/admin/messageTemplates/add',NULL,'Message Templates','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:22:\"edit message templates\";}i:1;s:3:\"and\";}','s:31:\"CRM_Admin_Form_MessageTemplates\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:17:\"Message Templates\";s:3:\"url\";s:39:\"/civicrm/admin/messageTemplates?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,262,1,0,NULL,'a:1:{s:4:\"desc\";s:26:\"Add/Edit Message Templates\";}'),(170,1,'civicrm/admin/scheduleReminders',NULL,'Schedule Reminders','s:1:\"1\";','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:15:\"edit all events\";}i:1;s:2:\"or\";}','s:32:\"CRM_Admin_Page_ScheduleReminders\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,40,1,0,NULL,'a:3:{s:4:\"desc\";s:19:\"Schedule Reminders.\";s:10:\"adminGroup\";s:14:\"Communications\";s:4:\"icon\";s:24:\"admin/small/template.png\";}'),(171,1,'civicrm/admin/weight',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:16:\"CRM_Utils_Weight\";i:1;s:8:\"fixOrder\";}',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,1,1,0,NULL,'a:0:{}'),(172,1,'civicrm/admin/options/preferred_communication_method',NULL,'Preferred Communication Methods','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,50,1,0,NULL,'a:3:{s:4:\"desc\";s:117:\"One or more preferred methods of communication can be assigned to each contact. Customize the available options here.\";s:10:\"adminGroup\";s:14:\"Communications\";s:4:\"icon\";s:29:\"admin/small/communication.png\";}'),(173,1,'civicrm/admin/labelFormats',NULL,'Label Formats','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:27:\"CRM_Admin_Page_LabelFormats\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,60,1,0,NULL,'a:3:{s:4:\"desc\";s:67:\"Configure Label Formats that are used when creating mailing labels.\";s:10:\"adminGroup\";s:14:\"Communications\";s:4:\"icon\";s:24:\"admin/small/template.png\";}'),(174,1,'civicrm/admin/pdfFormats',NULL,'Print Page (PDF) Formats','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:25:\"CRM_Admin_Page_PdfFormats\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,70,1,0,NULL,'a:3:{s:4:\"desc\";s:95:\"Configure PDF Page Formats that can be assigned to Message Templates when creating PDF letters.\";s:10:\"adminGroup\";s:14:\"Communications\";s:4:\"icon\";s:24:\"admin/small/template.png\";}'),(175,1,'civicrm/admin/options/communication_style',NULL,'Communication Style Options','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,75,1,0,NULL,'a:3:{s:4:\"desc\";s:42:\"Options for Communication Style selection.\";s:10:\"adminGroup\";s:14:\"Communications\";s:4:\"icon\";s:18:\"admin/small/01.png\";}'),(176,1,'civicrm/admin/options/email_greeting',NULL,'Email Greeting Formats','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,80,1,0,NULL,'a:3:{s:4:\"desc\";s:75:\"Options for assigning email greetings to individual and household contacts.\";s:10:\"adminGroup\";s:14:\"Communications\";s:4:\"icon\";s:18:\"admin/small/01.png\";}'),(177,1,'civicrm/admin/options/postal_greeting',NULL,'Postal Greeting Formats','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,90,1,0,NULL,'a:3:{s:4:\"desc\";s:76:\"Options for assigning postal greetings to individual and household contacts.\";s:10:\"adminGroup\";s:14:\"Communications\";s:4:\"icon\";s:18:\"admin/small/01.png\";}'),(178,1,'civicrm/admin/options/addressee',NULL,'Addressee Formats','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,100,1,0,NULL,'a:3:{s:4:\"desc\";s:83:\"Options for assigning addressee to individual, household and organization contacts.\";s:10:\"adminGroup\";s:14:\"Communications\";s:4:\"icon\";s:18:\"admin/small/01.png\";}'),(179,1,'civicrm/admin/setting/localization',NULL,'Languages, Currency, Locations','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:35:\"CRM_Admin_Form_Setting_Localization\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,10,1,0,NULL,'a:2:{s:10:\"adminGroup\";s:12:\"Localization\";s:4:\"icon\";s:18:\"admin/small/36.png\";}'),(180,1,'civicrm/admin/setting/preferences/address',NULL,'Address Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:34:\"CRM_Admin_Form_Preferences_Address\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,20,1,0,NULL,'a:2:{s:10:\"adminGroup\";s:12:\"Localization\";s:4:\"icon\";s:18:\"admin/small/36.png\";}'),(181,1,'civicrm/admin/setting/date',NULL,'Date Formats','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:27:\"CRM_Admin_Form_Setting_Date\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,30,1,0,NULL,'a:2:{s:10:\"adminGroup\";s:12:\"Localization\";s:4:\"icon\";s:18:\"admin/small/36.png\";}'),(182,1,'civicrm/admin/options/languages',NULL,'Preferred Languages','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,40,1,0,NULL,'a:3:{s:4:\"desc\";s:30:\"Options for contact languages.\";s:10:\"adminGroup\";s:12:\"Localization\";s:4:\"icon\";s:18:\"admin/small/36.png\";}'),(183,1,'civicrm/admin/access',NULL,'Access Control','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:21:\"CRM_Admin_Page_Access\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,10,1,0,NULL,'a:3:{s:4:\"desc\";s:73:\"Grant or deny access to actions (view, edit...), features and components.\";s:10:\"adminGroup\";s:21:\"Users and Permissions\";s:4:\"icon\";s:18:\"admin/small/03.png\";}'),(184,1,'civicrm/admin/access/wp-permissions',NULL,'WordPress Access Control','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:34:\"CRM_ACL_Form_WordPress_Permissions\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:14:\"Access Control\";s:3:\"url\";s:29:\"/civicrm/admin/access?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,10,1,0,NULL,'a:1:{s:4:\"desc\";s:65:\"Grant access to CiviCRM components and other CiviCRM permissions.\";}'),(185,1,'civicrm/admin/synchUser',NULL,'Synchronize Users to Contacts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Form_CMSUser\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,20,1,0,NULL,'a:3:{s:4:\"desc\";s:71:\"Automatically create a CiviCRM contact record for each CMS user record.\";s:10:\"adminGroup\";s:21:\"Users and Permissions\";s:4:\"icon\";s:26:\"admin/small/Synch_user.png\";}'),(186,1,'civicrm/admin/configtask',NULL,'Configuration Checklist','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:29:\"CRM_Admin_Page_ConfigTaskList\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}','civicrm/admin/configtask',NULL,NULL,NULL,NULL,NULL,1,1,1,0,NULL,'a:3:{s:4:\"desc\";s:55:\"List of configuration tasks with links to each setting.\";s:10:\"adminGroup\";s:15:\"System Settings\";s:4:\"icon\";s:9:\"check.gif\";}'),(187,1,'civicrm/admin/setting/component',NULL,'Enable CiviCRM Components','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:32:\"CRM_Admin_Form_Setting_Component\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,10,1,0,NULL,'a:3:{s:4:\"desc\";s:269:\"Enable or disable components (e.g. CiviEvent, CiviMember, etc.) for your site based on the features you need. We recommend disabling any components not being used in order to simplify the user interface. You can easily re-enable components at any time from this screen.\";s:10:\"adminGroup\";s:15:\"System Settings\";s:4:\"icon\";s:18:\"admin/small/36.png\";}'),(188,1,'civicrm/admin/extensions',NULL,'Manage Extensions','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','s:25:\"CRM_Admin_Page_Extensions\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,120,1,0,NULL,'a:3:{s:4:\"desc\";s:0:\"\";s:10:\"adminGroup\";s:15:\"System Settings\";s:4:\"icon\";s:26:\"admin/small/price_sets.png\";}'),(189,1,'civicrm/admin/extensions/upgrade',NULL,'Database Upgrades','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','s:32:\"CRM_Admin_Page_ExtensionsUpgrade\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:17:\"Manage Extensions\";s:3:\"url\";s:33:\"/civicrm/admin/extensions?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,1,1,0,NULL,'a:0:{}'),(190,1,'civicrm/admin/setting/smtp',NULL,'Outbound Email Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:27:\"CRM_Admin_Form_Setting_Smtp\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,20,1,0,NULL,'a:2:{s:10:\"adminGroup\";s:15:\"System Settings\";s:4:\"icon\";s:18:\"admin/small/07.png\";}'),(191,1,'civicrm/admin/paymentProcessor',NULL,'Settings - Payment Processor','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:29:\"administer payment processors\";}i:1;s:3:\"and\";}','s:31:\"CRM_Admin_Page_PaymentProcessor\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,30,1,0,NULL,'a:3:{s:4:\"desc\";s:48:\"Payment Processor setup for CiviCRM transactions\";s:10:\"adminGroup\";s:15:\"System Settings\";s:4:\"icon\";s:41:\"admin/small/online_contribution_pages.png\";}'),(192,1,'civicrm/admin/setting/mapping',NULL,'Mapping and Geocoding','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:30:\"CRM_Admin_Form_Setting_Mapping\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,40,1,0,NULL,'a:2:{s:10:\"adminGroup\";s:15:\"System Settings\";s:4:\"icon\";s:18:\"admin/small/36.png\";}'),(193,1,'civicrm/admin/setting/misc',NULL,'Misc (Undelete, PDFs, Limits, Logging, Captcha, etc.)','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:36:\"CRM_Admin_Form_Setting_Miscellaneous\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,50,1,0,NULL,'a:3:{s:4:\"desc\";s:91:\"Enable undelete/move to trash feature, detailed change logging, ReCAPTCHA to protect forms.\";s:10:\"adminGroup\";s:15:\"System Settings\";s:4:\"icon\";s:18:\"admin/small/36.png\";}'),(194,1,'civicrm/admin/setting/path',NULL,'Directories','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:27:\"CRM_Admin_Form_Setting_Path\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,60,1,0,NULL,'a:2:{s:10:\"adminGroup\";s:15:\"System Settings\";s:4:\"icon\";s:18:\"admin/small/36.png\";}'),(195,1,'civicrm/admin/setting/url',NULL,'Resource URLs','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Admin_Form_Setting_Url\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,70,1,0,NULL,'a:2:{s:10:\"adminGroup\";s:15:\"System Settings\";s:4:\"icon\";s:18:\"admin/small/36.png\";}'),(196,1,'civicrm/admin/setting/updateConfigBackend',NULL,'Cleanup Caches and Update Paths','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:42:\"CRM_Admin_Form_Setting_UpdateConfigBackend\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,80,1,0,NULL,'a:3:{s:4:\"desc\";s:157:\"Reset the Base Directory Path and Base URL settings - generally when a CiviCRM site is moved to another location in the file system and/or to another domain.\";s:10:\"adminGroup\";s:15:\"System Settings\";s:4:\"icon\";s:26:\"admin/small/updatepath.png\";}'),(197,1,'civicrm/admin/setting/uf',NULL,'CMS Database Integration','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:25:\"CRM_Admin_Form_Setting_UF\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,90,1,0,NULL,'a:2:{s:10:\"adminGroup\";s:15:\"System Settings\";s:4:\"icon\";s:18:\"admin/small/36.png\";}'),(198,1,'civicrm/admin/options/safe_file_extension',NULL,'Safe File Extension Options','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,100,1,0,NULL,'a:3:{s:4:\"desc\";s:44:\"File Extensions that can be considered safe.\";s:10:\"adminGroup\";s:15:\"System Settings\";s:4:\"icon\";s:18:\"admin/small/01.png\";}'),(199,1,'civicrm/admin/options',NULL,'Option Groups','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,105,1,0,NULL,'a:3:{s:4:\"desc\";s:35:\"Access all meta-data option groups.\";s:10:\"adminGroup\";s:15:\"System Settings\";s:4:\"icon\";s:18:\"admin/small/01.png\";}'),(200,1,'civicrm/admin/mapping',NULL,'Import/Export Mappings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Mapping\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,110,1,0,NULL,'a:3:{s:4:\"desc\";s:141:\"Import and Export mappings allow you to easily run the same job multiple times. This option allows you to rename or delete existing mappings.\";s:10:\"adminGroup\";s:15:\"System Settings\";s:4:\"icon\";s:33:\"admin/small/import_export_map.png\";}'),(201,1,'civicrm/admin/setting/debug',NULL,'Debugging','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:32:\"CRM_Admin_Form_Setting_Debugging\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,120,1,0,NULL,'a:2:{s:10:\"adminGroup\";s:15:\"System Settings\";s:4:\"icon\";s:18:\"admin/small/36.png\";}'),(202,1,'civicrm/admin/setting/preferences/multisite',NULL,'Multi Site Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:36:\"CRM_Admin_Form_Preferences_Multisite\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,130,1,0,NULL,'a:2:{s:10:\"adminGroup\";s:15:\"System Settings\";s:4:\"icon\";s:18:\"admin/small/36.png\";}'),(203,1,'civicrm/admin/setting/preferences/campaign',NULL,'CiviCampaign Component Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:35:\"CRM_Admin_Form_Preferences_Campaign\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,10,1,0,NULL,'a:3:{s:4:\"desc\";s:40:\"Configure global CiviCampaign behaviors.\";s:10:\"adminGroup\";s:12:\"CiviCampaign\";s:9:\"component\";s:12:\"CiviCampaign\";}'),(204,1,'civicrm/admin/setting/preferences/event',NULL,'CiviEvent Component Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:16:\"access CiviEvent\";i:1;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','s:32:\"CRM_Admin_Form_Preferences_Event\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,420,1,0,NULL,'a:2:{s:4:\"desc\";s:37:\"Configure global CiviEvent behaviors.\";s:10:\"adminGroup\";s:9:\"CiviEvent\";}'),(205,1,'civicrm/admin/setting/preferences/mailing',NULL,'CiviMail Component Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:15:\"access CiviMail\";i:1;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','s:34:\"CRM_Admin_Form_Preferences_Mailing\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,430,1,0,NULL,'a:2:{s:4:\"desc\";s:36:\"Configure global CiviMail behaviors.\";s:10:\"adminGroup\";s:8:\"CiviMail\";}'),(206,1,'civicrm/admin/setting/preferences/member',NULL,'CiviMember Component Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:17:\"access CiviMember\";i:1;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','s:33:\"CRM_Admin_Form_Preferences_Member\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,390,1,0,NULL,'a:2:{s:4:\"desc\";s:38:\"Configure global CiviMember behaviors.\";s:10:\"adminGroup\";s:10:\"CiviMember\";}'),(207,1,'civicrm/admin/runjobs',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:16:\"CRM_Utils_System\";i:1;s:20:\"executeScheduledJobs\";}',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,1,1,0,NULL,'a:1:{s:4:\"desc\";s:36:\"URL used for running scheduled jobs.\";}'),(208,1,'civicrm/admin/job',NULL,'Scheduled Jobs','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','s:18:\"CRM_Admin_Page_Job\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,1370,1,0,NULL,'a:3:{s:4:\"desc\";s:35:\"Managing periodially running tasks.\";s:10:\"adminGroup\";s:15:\"System Settings\";s:4:\"icon\";s:18:\"admin/small/13.png\";}'),(209,1,'civicrm/admin/joblog',NULL,'Scheduled Jobs Log','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','s:21:\"CRM_Admin_Page_JobLog\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,1380,1,0,NULL,'a:3:{s:4:\"desc\";s:46:\"Browsing the log of periodially running tasks.\";s:10:\"adminGroup\";s:6:\"Manage\";s:4:\"icon\";s:18:\"admin/small/13.png\";}'),(210,1,'civicrm/admin/options/grant_type',NULL,'Grant Types','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,385,1,0,NULL,'a:3:{s:4:\"desc\";s:148:\"List of types which can be assigned to Grants. (Enable CiviGrant from Administer > Systme Settings > Enable Components if you want to track grants.)\";s:10:\"adminGroup\";s:12:\"Option Lists\";s:4:\"icon\";s:26:\"admin/small/grant_type.png\";}'),(211,1,'civicrm/admin/paymentProcessorType',NULL,'Payment Processor Type','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:35:\"CRM_Admin_Page_PaymentProcessorType\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,390,1,0,NULL,'a:1:{s:4:\"desc\";s:34:\"Payment Processor type information\";}'),(212,1,'civicrm/admin',NULL,'Administer CiviCRM','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:20:\"CRM_Admin_Page_Admin\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,9000,1,1,NULL,'a:0:{}'),(213,1,'civicrm/ajax/menujs',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:19:\"CRM_Admin_Page_AJAX\";i:1;s:17:\"getNavigationMenu\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(214,1,'civicrm/ajax/menutree',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:19:\"CRM_Admin_Page_AJAX\";i:1;s:8:\"menuTree\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,3,NULL,'a:0:{}'),(215,1,'civicrm/ajax/statusmsg',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:19:\"CRM_Admin_Page_AJAX\";i:1;s:12:\"getStatusMsg\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(216,1,'civicrm/admin/price',NULL,'Price Sets','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:18:\"CRM_Price_Page_Set\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,380,1,0,NULL,'a:3:{s:4:\"desc\";s:205:\"Price sets allow you to offer multiple options with associated fees (e.g. pre-conference workshops, additional meals, etc.). Configure Price Sets for events which need more than a single set of fee levels.\";s:10:\"adminGroup\";s:9:\"Customize\";s:4:\"icon\";s:26:\"admin/small/price_sets.png\";}'),(217,1,'civicrm/admin/price/add','action=add','New Price Set','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:18:\"CRM_Price_Page_Set\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:10:\"Price Sets\";s:3:\"url\";s:28:\"/civicrm/admin/price?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,1,1,0,NULL,'a:1:{s:4:\"desc\";s:205:\"Price sets allow you to offer multiple options with associated fees (e.g. pre-conference workshops, additional meals, etc.). Configure Price Sets for events which need more than a single set of fee levels.\";}'),(218,1,'civicrm/admin/price/field',NULL,'Price Fields','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:20:\"CRM_Price_Page_Field\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:10:\"Price Sets\";s:3:\"url\";s:28:\"/civicrm/admin/price?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,1,1,0,0,'a:0:{}'),(219,1,'civicrm/admin/price/field/option',NULL,'Price Field Options','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:21:\"CRM_Price_Page_Option\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:10:\"Price Sets\";s:3:\"url\";s:28:\"/civicrm/admin/price?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,1,1,0,NULL,'a:0:{}'),(220,1,'civicrm/admin/tplstrings/add',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:25:\"CRM_Admin_Form_Persistent\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,1,1,0,NULL,'a:0:{}'),(221,1,'civicrm/admin/tplstrings',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:25:\"CRM_Admin_Page_Persistent\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,1,1,0,NULL,'a:0:{}'),(222,1,'civicrm/ajax/mapping',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:19:\"CRM_Admin_Page_AJAX\";i:1;s:11:\"mappingList\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(223,1,'civicrm/ajax/recipientListing',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:19:\"CRM_Admin_Page_AJAX\";i:1;s:16:\"recipientListing\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(224,1,'civicrm/admin/sms/provider',NULL,'Sms Providers','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','s:21:\"CRM_SMS_Page_Provider\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,500,1,0,NULL,'a:3:{s:4:\"desc\";s:27:\"To configure a sms provider\";s:10:\"adminGroup\";s:15:\"System Settings\";s:4:\"icon\";s:18:\"admin/small/36.png\";}'),(225,1,'civicrm/sms/send',NULL,'New Mass SMS','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:8:\"send SMS\";}i:1;s:3:\"and\";}','s:23:\"CRM_SMS_Controller_Send\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,610,1,1,NULL,'a:0:{}'),(226,1,'civicrm/sms/callback',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:21:\"CRM_SMS_Page_Callback\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(227,1,'civicrm/admin/badgelayout','action=browse','Event Name Badge Layouts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:21:\"CRM_Badge_Page_Layout\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,399,1,0,NULL,'a:2:{s:4:\"desc\";s:107:\"Configure name badge layouts for event participants, including logos and what data to include on the badge.\";s:10:\"adminGroup\";s:9:\"CiviEvent\";}'),(228,1,'civicrm/admin/badgelayout/add',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','s:21:\"CRM_Badge_Form_Layout\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:24:\"Event Name Badge Layouts\";s:3:\"url\";s:52:\"/civicrm/admin/badgelayout?reset=1&action=browse\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,1,1,0,NULL,'a:0:{}'),(229,1,'civicrm/admin/ckeditor',NULL,'Configure CKEditor','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','s:29:\"CRM_Admin_Page_CKEditorConfig\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,1,1,0,NULL,'a:0:{}'),(230,1,'civicrm/custom/add',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Custom_Form_CustomData\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(231,1,'civicrm/ajax/optionlist',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:20:\"CRM_Custom_Page_AJAX\";i:1;s:13:\"getOptionList\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(232,1,'civicrm/ajax/reorder',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:20:\"CRM_Custom_Page_AJAX\";i:1;s:11:\"fixOrdering\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(233,1,'civicrm/ajax/multirecordfieldlist',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:20:\"CRM_Custom_Page_AJAX\";i:1;s:23:\"getMultiRecordFieldList\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(234,1,'civicrm/pcp',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:16:\"CRM_PCP_Form_PCP\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,1,NULL,0,1,1,0,NULL,'a:0:{}'),(235,1,'civicrm/pcp/campaign',NULL,'Setup a Personal Campaign Page - Account Information','s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:25:\"make online contributions\";}i:1;s:3:\"and\";}','s:22:\"CRM_PCP_Controller_PCP\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,1,NULL,0,0,1,0,NULL,'a:0:{}'),(236,1,'civicrm/pcp/info',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:20:\"CRM_PCP_Page_PCPInfo\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,1,NULL,0,1,1,0,NULL,'a:0:{}'),(237,1,'civicrm/admin/pcp','context=contribute','Personal Campaign Pages','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:16:\"CRM_PCP_Page_PCP\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,362,1,0,NULL,'a:3:{s:4:\"desc\";s:49:\"View and manage existing personal campaign pages.\";s:10:\"adminGroup\";s:14:\"CiviContribute\";s:4:\"icon\";s:34:\"admin/small/contribution_types.png\";}'),(238,1,'civicrm/activity','action=add&context=standalone','New Activity','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Activity_Form_Activity\";','s:14:\"attachUpload=1\";','a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(239,1,'civicrm/activity/view',NULL,'View Activity','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:30:\"CRM_Activity_Form_ActivityView\";','s:14:\"attachUpload=1\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:12:\"New Activity\";s:3:\"url\";s:63:\"/civicrm/activity?reset=1&action=add&context=standalone\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(240,1,'civicrm/ajax/activity',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:22:\"CRM_Activity_Page_AJAX\";i:1;s:15:\"getCaseActivity\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(241,1,'civicrm/ajax/globalrelationships',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:22:\"CRM_Activity_Page_AJAX\";i:1;s:26:\"getCaseGlobalRelationships\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(242,1,'civicrm/ajax/clientrelationships',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:22:\"CRM_Activity_Page_AJAX\";i:1;s:26:\"getCaseClientRelationships\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(243,1,'civicrm/ajax/caseroles',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:22:\"CRM_Activity_Page_AJAX\";i:1;s:12:\"getCaseRoles\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(244,1,'civicrm/ajax/contactactivity',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:22:\"CRM_Activity_Page_AJAX\";i:1;s:18:\"getContactActivity\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(245,1,'civicrm/ajax/activity/convert',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:22:\"CRM_Activity_Page_AJAX\";i:1;s:21:\"convertToCaseActivity\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,3,NULL,'a:0:{}'),(246,1,'civicrm/activity/search',NULL,'Find Activities','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:30:\"CRM_Activity_Controller_Search\";','s:14:\"attachUpload=1\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:12:\"New Activity\";s:3:\"url\";s:63:\"/civicrm/activity?reset=1&action=add&context=standalone\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(247,1,'civicrm/import',NULL,'Import','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:15:\"import contacts\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:29:\"CRM_Contact_Import_Controller\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,400,1,1,NULL,'a:0:{}'),(248,1,'civicrm/import/contact',NULL,'Import Contacts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:15:\"import contacts\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:29:\"CRM_Contact_Import_Controller\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:6:\"Import\";s:3:\"url\";s:23:\"/civicrm/import?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,410,1,1,NULL,'a:0:{}'),(249,1,'civicrm/import/activity',NULL,'Import Activities','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:15:\"import contacts\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:30:\"CRM_Activity_Import_Controller\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:6:\"Import\";s:3:\"url\";s:23:\"/civicrm/import?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,420,1,1,NULL,'a:0:{}'),(250,1,'civicrm/import/custom','id=%%id%%','Import Multi-value Custom Data','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:28:\"CRM_Custom_Import_Controller\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:6:\"Import\";s:3:\"url\";s:23:\"/civicrm/import?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,420,1,1,NULL,'a:0:{}'),(251,1,'civicrm/ajax/status',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:15:\"import contacts\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:28:\"CRM_Contact_Import_Page_AJAX\";i:1;s:6:\"status\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(252,1,'civicrm/event',NULL,'CiviEvent Dashboard','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:24:\"CRM_Event_Page_DashBoard\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,1,NULL,NULL,NULL,0,800,1,1,NULL,'a:1:{s:9:\"component\";s:9:\"CiviEvent\";}'),(253,1,'civicrm/participant/add','action=add','Register New Participant','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:18:\"CRM_Event_Page_Tab\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:1:{s:9:\"component\";s:9:\"CiviEvent\";}'),(254,1,'civicrm/event/info',NULL,'Event Information','s:1:\"1\";','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:24:\"CRM_Event_Page_EventInfo\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,NULL,1,NULL,0,1,1,0,NULL,'a:0:{}'),(255,1,'civicrm/event/register',NULL,'Event Registration','s:1:\"1\";','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:33:\"CRM_Event_Controller_Registration\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,NULL,1,NULL,1,1,1,0,NULL,'a:0:{}'),(256,1,'civicrm/event/confirm',NULL,'Confirm Event Registration','s:1:\"1\";','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:46:\"CRM_Event_Form_Registration_ParticipantConfirm\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,NULL,1,NULL,1,1,1,0,NULL,'a:0:{}'),(257,1,'civicrm/event/ical',NULL,'Current and Upcoming Events','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:15:\"view event info\";}i:1;s:3:\"and\";}','s:24:\"CRM_Event_Page_ICalendar\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,NULL,1,NULL,0,0,1,0,NULL,'a:0:{}'),(258,1,'civicrm/event/participant',NULL,'Event Participants List','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:23:\"view event participants\";}i:1;s:3:\"and\";}','s:33:\"CRM_Event_Page_ParticipantListing\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,NULL,1,NULL,0,0,1,0,NULL,'a:0:{}'),(259,1,'civicrm/admin/event',NULL,'Manage Events','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:26:\"CRM_Event_Page_ManageEvent\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,370,1,0,NULL,'a:3:{s:4:\"desc\";s:136:\"Create and edit event configuration including times, locations, online registration forms, and fees. Links for iCal and RSS syndication.\";s:10:\"adminGroup\";s:9:\"CiviEvent\";s:4:\"icon\";s:28:\"admin/small/event_manage.png\";}'),(260,1,'civicrm/admin/eventTemplate',NULL,'Event Templates','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:28:\"CRM_Admin_Page_EventTemplate\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,375,1,0,NULL,'a:3:{s:4:\"desc\";s:115:\"Administrators can create Event Templates - which are basically master event records pre-filled with default values\";s:10:\"adminGroup\";s:9:\"CiviEvent\";s:4:\"icon\";s:24:\"admin/small/template.png\";}'),(261,1,'civicrm/admin/options/event_type',NULL,'Event Types','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,385,1,0,NULL,'a:3:{s:4:\"desc\";s:143:\"Use Event Types to categorize your events. Event feeds can be filtered by Event Type and participant searches can use Event Type as a criteria.\";s:10:\"adminGroup\";s:9:\"CiviEvent\";s:4:\"icon\";s:26:\"admin/small/event_type.png\";}'),(262,1,'civicrm/admin/participant_status',NULL,'Participant Status','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:36:\"CRM_Admin_Page_ParticipantStatusType\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,390,1,0,NULL,'a:3:{s:4:\"desc\";s:154:\"Define statuses for event participants here (e.g. Registered, Attended, Cancelled...). You can then assign statuses and search for participants by status.\";s:10:\"adminGroup\";s:9:\"CiviEvent\";s:4:\"icon\";s:28:\"admin/small/parti_status.png\";}'),(263,1,'civicrm/admin/options/participant_role',NULL,'Participant Role','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,395,1,0,NULL,'a:3:{s:4:\"desc\";s:138:\"Define participant roles for events here (e.g. Attendee, Host, Speaker...). You can then assign roles and search for participants by role.\";s:10:\"adminGroup\";s:9:\"CiviEvent\";s:4:\"icon\";s:26:\"admin/small/parti_role.png\";}'),(264,1,'civicrm/admin/options/participant_listing',NULL,'Participant Listing Templates','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,398,1,0,NULL,'a:3:{s:4:\"desc\";s:48:\"Template to control participant listing display.\";s:10:\"adminGroup\";s:9:\"CiviEvent\";s:4:\"icon\";s:18:\"admin/small/01.png\";}'),(265,1,'civicrm/admin/conference_slots','group=conference_slot','Conference Slot Labels','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,415,1,0,NULL,'a:2:{s:4:\"desc\";s:35:\"Define conference slots and labels.\";s:10:\"adminGroup\";s:9:\"CiviEvent\";}'),(266,1,'civicrm/event/search',NULL,'Find Participants','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:27:\"CRM_Event_Controller_Search\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,NULL,NULL,NULL,0,810,1,1,NULL,'a:0:{}'),(267,1,'civicrm/event/manage',NULL,'Manage Events','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:26:\"CRM_Event_Page_ManageEvent\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,NULL,NULL,NULL,1,820,1,1,NULL,'a:0:{}'),(268,1,'civicrm/event/badge',NULL,'Print Event Name Badge','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:25:\"CRM_Event_Form_Task_Badge\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(269,1,'civicrm/event/manage/settings',NULL,'Event Info and Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:36:\"CRM_Event_Form_ManageEvent_EventInfo\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Manage Events\";s:3:\"url\";s:29:\"/civicrm/event/manage?reset=1\";}}',NULL,NULL,1,NULL,NULL,NULL,1,910,1,0,NULL,'a:0:{}'),(270,1,'civicrm/event/manage/location',NULL,'Event Location','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:35:\"CRM_Event_Form_ManageEvent_Location\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Manage Events\";s:3:\"url\";s:29:\"/civicrm/event/manage?reset=1\";}}',NULL,NULL,1,NULL,NULL,NULL,1,930,1,0,NULL,'a:0:{}'),(271,1,'civicrm/event/manage/fee',NULL,'Event Fees','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:30:\"CRM_Event_Form_ManageEvent_Fee\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Manage Events\";s:3:\"url\";s:29:\"/civicrm/event/manage?reset=1\";}}',NULL,NULL,1,NULL,NULL,NULL,1,920,1,0,NULL,'a:0:{}'),(272,1,'civicrm/event/manage/registration',NULL,'Event Online Registration','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:39:\"CRM_Event_Form_ManageEvent_Registration\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Manage Events\";s:3:\"url\";s:29:\"/civicrm/event/manage?reset=1\";}}',NULL,NULL,1,NULL,NULL,NULL,1,930,1,0,NULL,'a:0:{}'),(273,1,'civicrm/event/manage/friend',NULL,'Tell a Friend','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:21:\"CRM_Friend_Form_Event\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Manage Events\";s:3:\"url\";s:29:\"/civicrm/event/manage?reset=1\";}}',NULL,NULL,1,NULL,NULL,NULL,1,940,1,0,NULL,'a:0:{}'),(274,1,'civicrm/event/manage/reminder',NULL,'Schedule Reminders','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:44:\"CRM_Event_Form_ManageEvent_ScheduleReminders\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Manage Events\";s:3:\"url\";s:29:\"/civicrm/event/manage?reset=1\";}}',NULL,NULL,1,NULL,NULL,NULL,1,950,1,0,NULL,'a:0:{}'),(275,1,'civicrm/event/manage/repeat',NULL,'Repeat Event','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:33:\"CRM_Event_Form_ManageEvent_Repeat\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Manage Events\";s:3:\"url\";s:29:\"/civicrm/event/manage?reset=1\";}}',NULL,NULL,1,NULL,NULL,NULL,1,960,1,0,NULL,'a:0:{}'),(276,1,'civicrm/event/manage/conference',NULL,'Conference Slots','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:37:\"CRM_Event_Form_ManageEvent_Conference\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Manage Events\";s:3:\"url\";s:29:\"/civicrm/event/manage?reset=1\";}}',NULL,NULL,1,NULL,NULL,NULL,1,950,1,0,NULL,'a:0:{}'),(277,1,'civicrm/event/add','action=add','New Event','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:36:\"CRM_Event_Form_ManageEvent_EventInfo\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,NULL,NULL,NULL,0,830,1,0,NULL,'a:0:{}'),(278,1,'civicrm/event/import',NULL,'Import Participants','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:16:\"access CiviEvent\";i:1;s:23:\"edit event participants\";}i:1;s:3:\"and\";}','s:27:\"CRM_Event_Import_Controller\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,NULL,NULL,NULL,0,840,1,1,NULL,'a:0:{}'),(279,1,'civicrm/event/price',NULL,'Manage Price Sets','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:18:\"CRM_Price_Page_Set\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,NULL,NULL,NULL,0,850,1,1,NULL,'a:0:{}'),(280,1,'civicrm/event/selfsvcupdate',NULL,'Self-service Registration Update','s:1:\"1\";','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:28:\"CRM_Event_Form_SelfSvcUpdate\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,NULL,1,NULL,0,880,1,1,NULL,'a:0:{}'),(281,1,'civicrm/event/selfsvctransfer',NULL,'Self-service Registration Transfer','s:1:\"1\";','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:30:\"CRM_Event_Form_SelfSvcTransfer\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,NULL,1,NULL,0,890,1,1,NULL,'a:0:{}'),(282,1,'civicrm/contact/view/participant',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:18:\"CRM_Event_Page_Tab\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,4,1,0,NULL,'a:0:{}'),(283,1,'civicrm/ajax/eventFee',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','a:2:{i:0;s:19:\"CRM_Event_Page_AJAX\";i:1;s:8:\"eventFee\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(284,1,'civicrm/ajax/locBlock',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','a:2:{i:0;s:27:\"CRM_Core_Page_AJAX_Location\";i:1;s:11:\"getLocBlock\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(285,1,'civicrm/ajax/event/add_participant_to_cart',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:32:\"CRM_Event_Cart_Page_CheckoutAJAX\";i:1;s:23:\"add_participant_to_cart\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(286,1,'civicrm/ajax/event/remove_participant_from_cart',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:32:\"CRM_Event_Cart_Page_CheckoutAJAX\";i:1;s:28:\"remove_participant_from_cart\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(287,1,'civicrm/event/add_to_cart',NULL,'Add Event To Cart','s:1:\"1\";','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:29:\"CRM_Event_Cart_Page_AddToCart\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,NULL,1,NULL,0,1,1,0,NULL,'a:0:{}'),(288,1,'civicrm/event/cart_checkout',NULL,'Cart Checkout','s:1:\"1\";','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:34:\"CRM_Event_Cart_Controller_Checkout\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,NULL,1,NULL,1,1,1,0,NULL,'a:0:{}'),(289,1,'civicrm/event/remove_from_cart',NULL,'Remove From Cart','s:1:\"1\";','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:34:\"CRM_Event_Cart_Page_RemoveFromCart\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,NULL,1,NULL,0,1,1,0,NULL,'a:0:{}'),(290,1,'civicrm/event/view_cart',NULL,'View Cart','s:1:\"1\";','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:28:\"CRM_Event_Cart_Page_ViewCart\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,NULL,1,NULL,0,1,1,0,NULL,'a:0:{}'),(291,1,'civicrm/event/participant/feeselection',NULL,'Change Registration Selections','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:38:\"CRM_Event_Form_ParticipantFeeSelection\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}i:2;a:2:{s:5:\"title\";s:23:\"Event Participants List\";s:3:\"url\";s:34:\"/civicrm/event/participant?reset=1\";}}',NULL,NULL,1,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(292,1,'civicrm/event/manage/pcp',NULL,'Personal Campaign Pages','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:18:\"CRM_PCP_Form_Event\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Manage Events\";s:3:\"url\";s:29:\"/civicrm/event/manage?reset=1\";}}',NULL,NULL,1,NULL,NULL,NULL,1,540,1,1,NULL,'a:0:{}'),(293,1,'civicrm/event/pcp',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:16:\"CRM_PCP_Form_PCP\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,NULL,1,NULL,0,1,1,0,NULL,'a:0:{}'),(294,1,'civicrm/event/campaign',NULL,'Setup a Personal Campaign Page - Account Information','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:25:\"make online contributions\";}i:1;s:3:\"and\";}','s:22:\"CRM_PCP_Controller_PCP\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,NULL,1,NULL,0,0,1,0,NULL,'a:0:{}'),(295,1,'civicrm/contribute',NULL,'CiviContribute Dashboard','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:29:\"CRM_Contribute_Page_DashBoard\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,2,NULL,NULL,NULL,0,500,1,1,NULL,'a:1:{s:9:\"component\";s:14:\"CiviContribute\";}'),(296,1,'civicrm/contribute/add','action=add','New Contribution','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:23:\"CRM_Contribute_Page_Tab\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,NULL,NULL,NULL,0,1,1,1,NULL,'a:1:{s:9:\"component\";s:14:\"CiviContribute\";}'),(297,1,'civicrm/contribute/chart',NULL,'Contribution Summary - Chart View','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:38:\"CRM_Contribute_Form_ContributionCharts\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,NULL,NULL,NULL,0,1,1,0,NULL,'a:1:{s:9:\"component\";s:14:\"CiviContribute\";}'),(298,1,'civicrm/contribute/transact',NULL,'CiviContribute','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:25:\"make online contributions\";}i:1;s:3:\"and\";}','s:38:\"CRM_Contribute_Controller_Contribution\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,NULL,1,NULL,1,0,1,0,NULL,'a:0:{}'),(299,1,'civicrm/admin/contribute',NULL,'Manage Contribution Pages','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:36:\"CRM_Contribute_Page_ContributionPage\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,360,1,0,NULL,'a:3:{s:4:\"desc\";s:242:\"CiviContribute allows you to create and maintain any number of Online Contribution Pages. You can create different pages for different programs or campaigns - and customize text, amounts, types of information collected from contributors, etc.\";s:10:\"adminGroup\";s:14:\"CiviContribute\";s:4:\"icon\";s:41:\"admin/small/online_contribution_pages.png\";}'),(300,1,'civicrm/admin/contribute/settings',NULL,'Title and Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:45:\"CRM_Contribute_Form_ContributionPage_Settings\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:25:\"Manage Contribution Pages\";s:3:\"url\";s:33:\"/civicrm/admin/contribute?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,400,1,0,NULL,'a:0:{}'),(301,1,'civicrm/admin/contribute/amount',NULL,'Contribution Amounts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:43:\"CRM_Contribute_Form_ContributionPage_Amount\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:25:\"Manage Contribution Pages\";s:3:\"url\";s:33:\"/civicrm/admin/contribute?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,410,1,0,NULL,'a:0:{}'),(302,1,'civicrm/admin/contribute/membership',NULL,'Membership Section','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:31:\"CRM_Member_Form_MembershipBlock\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:25:\"Manage Contribution Pages\";s:3:\"url\";s:33:\"/civicrm/admin/contribute?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,420,1,0,NULL,'a:0:{}'),(303,1,'civicrm/admin/contribute/custom',NULL,'Include Profiles','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:43:\"CRM_Contribute_Form_ContributionPage_Custom\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:25:\"Manage Contribution Pages\";s:3:\"url\";s:33:\"/civicrm/admin/contribute?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,430,1,0,NULL,'a:0:{}'),(304,1,'civicrm/admin/contribute/thankyou',NULL,'Thank-you and Receipting','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:45:\"CRM_Contribute_Form_ContributionPage_ThankYou\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:25:\"Manage Contribution Pages\";s:3:\"url\";s:33:\"/civicrm/admin/contribute?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,430,1,0,NULL,'a:0:{}'),(305,1,'civicrm/admin/contribute/friend',NULL,'Tell a Friend','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Friend_Form_Contribute\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:25:\"Manage Contribution Pages\";s:3:\"url\";s:33:\"/civicrm/admin/contribute?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,440,1,0,NULL,'a:0:{}'),(306,1,'civicrm/admin/contribute/widget',NULL,'Configure Widget','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:43:\"CRM_Contribute_Form_ContributionPage_Widget\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:25:\"Manage Contribution Pages\";s:3:\"url\";s:33:\"/civicrm/admin/contribute?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,460,1,0,NULL,'a:0:{}'),(307,1,'civicrm/admin/contribute/premium',NULL,'Premiums','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:44:\"CRM_Contribute_Form_ContributionPage_Premium\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:25:\"Manage Contribution Pages\";s:3:\"url\";s:33:\"/civicrm/admin/contribute?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,470,1,0,NULL,'a:0:{}'),(308,1,'civicrm/admin/contribute/addProductToPage',NULL,'Add Products to This Page','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:47:\"CRM_Contribute_Form_ContributionPage_AddProduct\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:25:\"Manage Contribution Pages\";s:3:\"url\";s:33:\"/civicrm/admin/contribute?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,480,1,0,NULL,'a:0:{}'),(309,1,'civicrm/admin/contribute/add','action=add','New Contribution Page','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:42:\"CRM_Contribute_Controller_ContributionPage\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:25:\"Manage Contribution Pages\";s:3:\"url\";s:33:\"/civicrm/admin/contribute?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,1,1,0,NULL,'a:0:{}'),(310,1,'civicrm/admin/contribute/managePremiums',NULL,'Manage Premiums','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:34:\"CRM_Contribute_Page_ManagePremiums\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:25:\"Manage Contribution Pages\";s:3:\"url\";s:33:\"/civicrm/admin/contribute?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,365,1,0,NULL,'a:3:{s:4:\"desc\";s:175:\"CiviContribute allows you to configure any number of Premiums which can be offered to contributors as incentives / thank-you gifts. Define the premiums you want to offer here.\";s:10:\"adminGroup\";s:14:\"CiviContribute\";s:4:\"icon\";s:24:\"admin/small/Premiums.png\";}'),(311,1,'civicrm/admin/financial/financialType',NULL,'Financial Types','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:32:\"CRM_Financial_Page_FinancialType\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,580,1,0,NULL,'a:2:{s:4:\"desc\";s:64:\"Formerly civicrm_contribution_type merged into this table in 4.1\";s:10:\"adminGroup\";s:14:\"CiviContribute\";}'),(312,1,'civicrm/payment','action=add','New Payment','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:37:\"CRM_Contribute_Form_AdditionalPayment\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,2,NULL,NULL,NULL,0,1,1,1,NULL,'a:1:{s:9:\"component\";s:14:\"CiviContribute\";}'),(313,1,'civicrm/admin/financial/financialAccount',NULL,'Financial Accounts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:35:\"CRM_Financial_Page_FinancialAccount\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,370,1,0,NULL,'a:3:{s:4:\"desc\";s:128:\"Financial types are used to categorize contributions for reporting and accounting purposes. These are also referred to as Funds.\";s:10:\"adminGroup\";s:14:\"CiviContribute\";s:4:\"icon\";s:34:\"admin/small/contribution_types.png\";}'),(314,1,'civicrm/admin/options/payment_instrument',NULL,'Payment Methods','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,380,1,0,NULL,'a:3:{s:4:\"desc\";s:224:\"You may choose to record the payment instrument used for each contribution. Common payment methods are installed by default (e.g. Check, Cash, Credit Card...). If your site requires additional payment methods, add them here.\";s:10:\"adminGroup\";s:14:\"CiviContribute\";s:4:\"icon\";s:35:\"admin/small/payment_instruments.png\";}'),(315,1,'civicrm/admin/options/accept_creditcard',NULL,'Accepted Credit Cards','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,395,1,0,NULL,'a:3:{s:4:\"desc\";s:94:\"Credit card options that will be offered to contributors using your Online Contribution pages.\";s:10:\"adminGroup\";s:14:\"CiviContribute\";s:4:\"icon\";s:36:\"admin/small/accepted_creditcards.png\";}'),(316,1,'civicrm/admin/options/soft_credit_type',NULL,'Soft Credit Types','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,1,1,0,NULL,'a:3:{s:4:\"desc\";s:86:\"Soft Credit Types that will be offered to contributors during soft credit contribution\";s:10:\"adminGroup\";s:14:\"CiviContribute\";s:4:\"icon\";s:32:\"admin/small/soft_credit_type.png\";}'),(317,1,'civicrm/contact/view/contribution',NULL,'Contributions','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:23:\"CRM_Contribute_Page_Tab\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(318,1,'civicrm/contact/view/contributionrecur',NULL,'Recurring Contributions','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:37:\"CRM_Contribute_Page_ContributionRecur\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(319,1,'civicrm/contact/view/contribution/additionalinfo',NULL,'Additional Info','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:34:\"CRM_Contribute_Form_AdditionalInfo\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}i:2;a:2:{s:5:\"title\";s:13:\"Contributions\";s:3:\"url\";s:42:\"/civicrm/contact/view/contribution?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(320,1,'civicrm/contribute/search',NULL,'Find Contributions','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:32:\"CRM_Contribute_Controller_Search\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,NULL,NULL,NULL,0,510,1,1,NULL,'a:0:{}'),(321,1,'civicrm/contribute/searchBatch',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:37:\"CRM_Contribute_Controller_SearchBatch\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,NULL,NULL,NULL,0,588,1,1,NULL,'a:0:{}'),(322,1,'civicrm/contribute/import',NULL,'Import Contributions','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:21:\"access CiviContribute\";i:1;s:18:\"edit contributions\";}i:1;s:3:\"and\";}','s:32:\"CRM_Contribute_Import_Controller\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,NULL,NULL,NULL,0,520,1,1,NULL,'a:0:{}'),(323,1,'civicrm/contribute/manage',NULL,'Manage Contribution Pages','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:36:\"CRM_Contribute_Page_ContributionPage\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,NULL,NULL,NULL,0,530,1,1,NULL,'a:0:{}'),(324,1,'civicrm/contribute/additionalinfo',NULL,'AdditionalInfo Form','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:34:\"CRM_Contribute_Form_AdditionalInfo\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,NULL,NULL,NULL,0,0,1,0,NULL,'a:0:{}'),(325,1,'civicrm/ajax/permlocation',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:25:\"make online contributions\";}i:1;s:3:\"and\";}','a:2:{i:0;s:27:\"CRM_Core_Page_AJAX_Location\";i:1;s:23:\"getPermissionedLocation\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(326,1,'civicrm/contribute/unsubscribe',NULL,'Cancel Subscription','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:25:\"make online contributions\";}i:1;s:3:\"and\";}','s:38:\"CRM_Contribute_Form_CancelSubscription\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(327,1,'civicrm/contribute/onbehalf',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:25:\"make online contributions\";}i:1;s:3:\"and\";}','s:43:\"CRM_Contribute_Form_Contribution_OnBehalfOf\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(328,1,'civicrm/contribute/updatebilling',NULL,'Update Billing Details','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:25:\"make online contributions\";}i:1;s:3:\"and\";}','s:33:\"CRM_Contribute_Form_UpdateBilling\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(329,1,'civicrm/contribute/updaterecur',NULL,'Update Subscription','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:25:\"make online contributions\";}i:1;s:3:\"and\";}','s:38:\"CRM_Contribute_Form_UpdateSubscription\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(330,1,'civicrm/contribute/subscriptionstatus',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:25:\"make online contributions\";}i:1;s:3:\"and\";}','s:38:\"CRM_Contribute_Page_SubscriptionStatus\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(331,1,'civicrm/admin/financial/financialType/accounts',NULL,'Financial Type Accounts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:39:\"CRM_Financial_Page_FinancialTypeAccount\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:15:\"Financial Types\";s:3:\"url\";s:46:\"/civicrm/admin/financial/financialType?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,581,1,0,NULL,'a:0:{}'),(332,1,'civicrm/financial/batch',NULL,'Accounting Batch','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:19:\"create manual batch\";}i:1;s:3:\"and\";}','s:33:\"CRM_Financial_Page_FinancialBatch\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,585,1,0,NULL,'a:0:{}'),(333,1,'civicrm/financial/financialbatches',NULL,'Accounting Batches','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:24:\"CRM_Financial_Page_Batch\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,586,1,0,NULL,'a:0:{}'),(334,1,'civicrm/batchtransaction',NULL,'Accounting Batch','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:35:\"CRM_Financial_Page_BatchTransaction\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,600,1,0,NULL,'a:0:{}'),(335,1,'civicrm/financial/batch/export',NULL,'Accounting Batch Export','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:19:\"create manual batch\";}i:1;s:3:\"and\";}','s:25:\"CRM_Financial_Form_Export\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:16:\"Accounting Batch\";s:3:\"url\";s:32:\"/civicrm/financial/batch?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,610,1,0,NULL,'a:0:{}'),(336,1,'civicrm/payment/view','action=view','View Payment','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:31:\"CRM_Contribute_Page_PaymentInfo\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:11:\"New Payment\";s:3:\"url\";s:39:\"/civicrm/payment?reset=1&action=add\";}}',NULL,NULL,2,NULL,NULL,NULL,0,1,1,1,NULL,'a:1:{s:9:\"component\";s:14:\"CiviContribute\";}'),(337,1,'civicrm/admin/setting/preferences/contribute',NULL,'CiviContribute Component Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:21:\"access CiviContribute\";i:1;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','s:37:\"CRM_Admin_Form_Preferences_Contribute\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,1,1,0,NULL,'a:2:{s:4:\"desc\";s:42:\"Configure global CiviContribute behaviors.\";s:10:\"adminGroup\";s:14:\"CiviContribute\";}'),(338,1,'civicrm/contribute/invoice',NULL,'PDF Invoice','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:20:\"checkDownloadInvoice\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','a:2:{i:0;s:32:\"CRM_Contribute_Form_Task_Invoice\";i:1;s:11:\"getPrintPDF\";}',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,NULL,NULL,NULL,0,620,1,1,NULL,'a:1:{s:9:\"component\";s:14:\"CiviContribute\";}'),(339,1,'civicrm/contribute/invoice/email',NULL,'Email Invoice','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:20:\"checkDownloadInvoice\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:32:\"CRM_Contribute_Form_Task_Invoice\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}i:2;a:2:{s:5:\"title\";s:11:\"PDF Invoice\";s:3:\"url\";s:35:\"/civicrm/contribute/invoice?reset=1\";}}',NULL,NULL,2,NULL,NULL,NULL,0,630,1,1,NULL,'a:1:{s:9:\"component\";s:14:\"CiviContribute\";}'),(340,1,'civicrm/ajax/softcontributionlist',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:24:\"CRM_Contribute_Page_AJAX\";i:1;s:23:\"getSoftContributionRows\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(341,1,'civicrm/contribute/contributionrecur-payments',NULL,'Recurring Contribution\'s Payments','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:45:\"CRM_Contribute_Page_ContributionRecurPayments\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(342,1,'civicrm/membership/recurring-contributions',NULL,'Membership Recurring Contributions','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:38:\"CRM_Member_Page_RecurringContributions\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(343,1,'civicrm/admin/contribute/pcp',NULL,'Personal Campaign Pages','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:23:\"CRM_PCP_Form_Contribute\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:25:\"Manage Contribution Pages\";s:3:\"url\";s:33:\"/civicrm/admin/contribute?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,450,1,0,NULL,'a:0:{}'),(344,1,'civicrm/contribute/campaign',NULL,'Setup a Personal Campaign Page - Account Information','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:25:\"make online contributions\";}i:1;s:3:\"and\";}','s:22:\"CRM_PCP_Controller_PCP\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,NULL,1,NULL,0,0,1,0,NULL,'a:0:{}'),(345,1,'civicrm/member',NULL,'CiviMember Dashboard','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:17:\"access CiviMember\";}i:1;s:3:\"and\";}','s:25:\"CRM_Member_Page_DashBoard\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,3,NULL,NULL,NULL,0,700,1,1,NULL,'a:1:{s:9:\"component\";s:10:\"CiviMember\";}'),(346,1,'civicrm/member/add','action=add','New Membership','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:17:\"access CiviMember\";}i:1;s:3:\"and\";}','s:19:\"CRM_Member_Page_Tab\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:20:\"CiviMember Dashboard\";s:3:\"url\";s:23:\"/civicrm/member?reset=1\";}}',NULL,NULL,3,NULL,NULL,NULL,0,1,1,0,NULL,'a:1:{s:9:\"component\";s:10:\"CiviMember\";}'),(347,1,'civicrm/admin/member/membershipType',NULL,'Membership Types','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:30:\"CRM_Member_Page_MembershipType\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,370,1,0,NULL,'a:3:{s:4:\"desc\";s:174:\"Define the types of memberships you want to offer. For each type, you can specify a \'name\' (Gold Member, Honor Society Member...), a description, duration, and a minimum fee.\";s:10:\"adminGroup\";s:10:\"CiviMember\";s:4:\"icon\";s:31:\"admin/small/membership_type.png\";}'),(348,1,'civicrm/admin/member/membershipStatus',NULL,'Membership Status Rules','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:32:\"CRM_Member_Page_MembershipStatus\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,380,1,0,NULL,'a:3:{s:4:\"desc\";s:187:\"Status \'rules\' define the current status for a membership based on that membership\'s start and end dates. You can adjust the default status options and rules as needed to meet your needs.\";s:10:\"adminGroup\";s:10:\"CiviMember\";s:4:\"icon\";s:33:\"admin/small/membership_status.png\";}'),(349,1,'civicrm/contact/view/membership','force=1,cid=%%cid%%','Memberships','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:19:\"CRM_Member_Page_Tab\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,2,1,0,NULL,'a:0:{}'),(350,1,'civicrm/membership/view',NULL,'Memberships','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:17:\"access CiviMember\";}i:1;s:3:\"and\";}','s:30:\"CRM_Member_Form_MembershipView\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,390,1,0,NULL,'a:0:{}'),(351,1,'civicrm/member/search',NULL,'Find Memberships','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:17:\"access CiviMember\";}i:1;s:3:\"and\";}','s:28:\"CRM_Member_Controller_Search\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:20:\"CiviMember Dashboard\";s:3:\"url\";s:23:\"/civicrm/member?reset=1\";}}',NULL,NULL,3,NULL,NULL,NULL,0,710,1,1,NULL,'a:0:{}'),(352,1,'civicrm/member/import',NULL,'Import Memberships','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:17:\"access CiviMember\";i:1;s:16:\"edit memberships\";}i:1;s:3:\"and\";}','s:28:\"CRM_Member_Import_Controller\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:20:\"CiviMember Dashboard\";s:3:\"url\";s:23:\"/civicrm/member?reset=1\";}}',NULL,NULL,3,NULL,NULL,NULL,0,720,1,1,NULL,'a:0:{}'),(353,1,'civicrm/ajax/memType',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:17:\"access CiviMember\";}i:1;s:3:\"and\";}','a:2:{i:0;s:20:\"CRM_Member_Page_AJAX\";i:1;s:21:\"getMemberTypeDefaults\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(354,1,'civicrm/admin/member/membershipType/add',NULL,'Membership Types','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:17:\"access CiviMember\";i:1;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','s:30:\"CRM_Member_Form_MembershipType\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:16:\"Membership Types\";s:3:\"url\";s:44:\"/civicrm/admin/member/membershipType?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,1,1,0,NULL,'a:0:{}'),(355,1,'civicrm/mailing',NULL,'CiviMail','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:15:\"access CiviMail\";i:1;s:15:\"create mailings\";i:2;s:8:\"send SMS\";}i:1;s:2:\"or\";}','s:23:\"CRM_Mailing_Page_Browse\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,4,NULL,NULL,NULL,0,600,1,1,NULL,'a:1:{s:9:\"component\";s:8:\"CiviMail\";}'),(356,1,'civicrm/admin/mail',NULL,'Mailer Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"access CiviMail\";}i:1;s:3:\"and\";}','s:27:\"CRM_Admin_Form_Setting_Mail\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,400,1,0,NULL,'a:3:{s:4:\"desc\";s:61:\"Configure spool period, throttling and other mailer settings.\";s:10:\"adminGroup\";s:8:\"CiviMail\";s:4:\"icon\";s:18:\"admin/small/07.png\";}'),(357,1,'civicrm/admin/component',NULL,'Headers, Footers, and Automated Messages','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"access CiviMail\";}i:1;s:3:\"and\";}','s:26:\"CRM_Mailing_Page_Component\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,410,1,0,NULL,'a:3:{s:4:\"desc\";s:143:\"Configure the header and footer used for mailings. Customize the content of automated Subscribe, Unsubscribe, Resubscribe and Opt-out messages.\";s:10:\"adminGroup\";s:8:\"CiviMail\";s:4:\"icon\";s:23:\"admin/small/Profile.png\";}'),(358,1,'civicrm/admin/options/from_email_address/civimail',NULL,'From Email Addresses','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:4:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}i:3;a:2:{s:5:\"title\";s:20:\"From Email Addresses\";s:3:\"url\";s:49:\"/civicrm/admin/options/from_email_address?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,415,1,0,NULL,'a:3:{s:4:\"desc\";s:74:\"List of Email Addresses which can be used when sending emails to contacts.\";s:10:\"adminGroup\";s:8:\"CiviMail\";s:4:\"icon\";s:21:\"admin/small/title.png\";}'),(359,1,'civicrm/admin/mailSettings',NULL,'Mail Accounts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"access CiviMail\";}i:1;s:3:\"and\";}','s:27:\"CRM_Admin_Page_MailSettings\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,420,1,0,NULL,'a:3:{s:4:\"desc\";s:32:\"Configure email account setting.\";s:10:\"adminGroup\";s:8:\"CiviMail\";s:4:\"icon\";s:18:\"admin/small/07.png\";}'),(360,1,'civicrm/mailing/send',NULL,'New Mailing','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:15:\"access CiviMail\";i:1;s:15:\"create mailings\";i:2;s:17:\"schedule mailings\";}i:1;s:2:\"or\";}','s:27:\"CRM_Mailing_Controller_Send\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:8:\"CiviMail\";s:3:\"url\";s:24:\"/civicrm/mailing?reset=1\";}}',NULL,NULL,4,NULL,NULL,NULL,0,610,1,1,NULL,'a:0:{}'),(361,1,'civicrm/mailing/browse/scheduled','scheduled=true','Find Mailings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:5:{i:0;s:15:\"access CiviMail\";i:1;s:16:\"approve mailings\";i:2;s:15:\"create mailings\";i:3;s:17:\"schedule mailings\";i:4;s:8:\"send SMS\";}i:1;s:2:\"or\";}','s:23:\"CRM_Mailing_Page_Browse\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:8:\"CiviMail\";s:3:\"url\";s:24:\"/civicrm/mailing?reset=1\";}}',NULL,NULL,4,NULL,NULL,NULL,0,620,1,1,NULL,'a:0:{}'),(362,1,'civicrm/mailing/browse/unscheduled','scheduled=false','Find Mailings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:15:\"access CiviMail\";i:1;s:15:\"create mailings\";i:2;s:17:\"schedule mailings\";}i:1;s:2:\"or\";}','s:23:\"CRM_Mailing_Page_Browse\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:8:\"CiviMail\";s:3:\"url\";s:24:\"/civicrm/mailing?reset=1\";}}',NULL,NULL,4,NULL,NULL,NULL,0,620,1,1,NULL,'a:0:{}'),(363,1,'civicrm/mailing/browse/archived',NULL,'Find Mailings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:15:\"access CiviMail\";i:1;s:15:\"create mailings\";}i:1;s:2:\"or\";}','s:23:\"CRM_Mailing_Page_Browse\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:8:\"CiviMail\";s:3:\"url\";s:24:\"/civicrm/mailing?reset=1\";}}',NULL,NULL,4,NULL,NULL,NULL,0,625,1,1,NULL,'a:0:{}'),(364,1,'civicrm/mailing/component',NULL,'Headers, Footers, and Automated Messages','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Mailing_Page_Component\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:8:\"CiviMail\";s:3:\"url\";s:24:\"/civicrm/mailing?reset=1\";}}',NULL,NULL,4,NULL,NULL,NULL,0,630,1,1,NULL,'a:0:{}'),(365,1,'civicrm/mailing/unsubscribe',NULL,'Unsubscribe','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:43:\"access CiviMail subscribe/unsubscribe pages\";}i:1;s:3:\"and\";}','s:28:\"CRM_Mailing_Form_Unsubscribe\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:8:\"CiviMail\";s:3:\"url\";s:24:\"/civicrm/mailing?reset=1\";}}',NULL,NULL,4,NULL,1,NULL,0,640,1,0,NULL,'a:0:{}'),(366,1,'civicrm/mailing/resubscribe',NULL,'Resubscribe','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:43:\"access CiviMail subscribe/unsubscribe pages\";}i:1;s:3:\"and\";}','s:28:\"CRM_Mailing_Page_Resubscribe\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:8:\"CiviMail\";s:3:\"url\";s:24:\"/civicrm/mailing?reset=1\";}}',NULL,NULL,4,NULL,1,NULL,0,645,1,0,NULL,'a:0:{}'),(367,1,'civicrm/mailing/optout',NULL,'Opt-out','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:43:\"access CiviMail subscribe/unsubscribe pages\";}i:1;s:3:\"and\";}','s:23:\"CRM_Mailing_Form_Optout\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:8:\"CiviMail\";s:3:\"url\";s:24:\"/civicrm/mailing?reset=1\";}}',NULL,NULL,4,NULL,1,NULL,0,650,1,0,NULL,'a:0:{}'),(368,1,'civicrm/mailing/confirm',NULL,'Confirm','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:43:\"access CiviMail subscribe/unsubscribe pages\";}i:1;s:3:\"and\";}','s:24:\"CRM_Mailing_Page_Confirm\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:8:\"CiviMail\";s:3:\"url\";s:24:\"/civicrm/mailing?reset=1\";}}',NULL,NULL,4,NULL,1,NULL,0,660,1,0,NULL,'a:0:{}'),(369,1,'civicrm/mailing/subscribe',NULL,'Subscribe','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:43:\"access CiviMail subscribe/unsubscribe pages\";}i:1;s:3:\"and\";}','s:26:\"CRM_Mailing_Form_Subscribe\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:8:\"CiviMail\";s:3:\"url\";s:24:\"/civicrm/mailing?reset=1\";}}',NULL,NULL,4,NULL,1,NULL,0,660,1,0,NULL,'a:0:{}'),(370,1,'civicrm/mailing/preview',NULL,'Preview Mailing','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:4:{i:0;s:15:\"access CiviMail\";i:1;s:16:\"approve mailings\";i:2;s:15:\"create mailings\";i:3;s:17:\"schedule mailings\";}i:1;s:2:\"or\";}','s:24:\"CRM_Mailing_Page_Preview\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:8:\"CiviMail\";s:3:\"url\";s:24:\"/civicrm/mailing?reset=1\";}}',NULL,NULL,4,NULL,NULL,NULL,0,670,1,0,NULL,'a:0:{}'),(371,1,'civicrm/mailing/report','mid=%%mid%%','Mailing Report','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:15:\"access CiviMail\";i:1;s:15:\"create mailings\";}i:1;s:2:\"or\";}','s:23:\"CRM_Mailing_Page_Report\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:8:\"CiviMail\";s:3:\"url\";s:24:\"/civicrm/mailing?reset=1\";}}',NULL,NULL,4,NULL,NULL,NULL,0,680,1,0,NULL,'a:0:{}'),(372,1,'civicrm/mailing/forward',NULL,'Forward Mailing','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:43:\"access CiviMail subscribe/unsubscribe pages\";}i:1;s:3:\"and\";}','s:31:\"CRM_Mailing_Form_ForwardMailing\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:8:\"CiviMail\";s:3:\"url\";s:24:\"/civicrm/mailing?reset=1\";}}',NULL,NULL,4,NULL,1,NULL,0,685,1,0,NULL,'a:0:{}'),(373,1,'civicrm/mailing/queue',NULL,'Sending Mail','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:15:\"access CiviMail\";}i:1;s:3:\"and\";}','s:23:\"CRM_Mailing_Page_Browse\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:8:\"CiviMail\";s:3:\"url\";s:24:\"/civicrm/mailing?reset=1\";}}',NULL,NULL,4,NULL,NULL,NULL,0,690,1,0,NULL,'a:0:{}'),(374,1,'civicrm/mailing/report/event',NULL,'Mailing Event','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:15:\"access CiviMail\";}i:1;s:3:\"and\";}','s:22:\"CRM_Mailing_Page_Event\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:8:\"CiviMail\";s:3:\"url\";s:24:\"/civicrm/mailing?reset=1\";}i:2;a:2:{s:5:\"title\";s:14:\"Mailing Report\";s:3:\"url\";s:47:\"/civicrm/mailing/report?reset=1&mid=%%mid%%\";}}',NULL,NULL,4,NULL,NULL,NULL,0,695,1,0,NULL,'a:0:{}'),(375,1,'civicrm/ajax/template',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Mailing_Page_AJAX\";i:1;s:8:\"template\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(376,1,'civicrm/mailing/view',NULL,'View Mailing','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:28:\"view public CiviMail content\";i:1;s:15:\"access CiviMail\";i:2;s:16:\"approve mailings\";}i:1;s:2:\"or\";}','s:21:\"CRM_Mailing_Page_View\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:8:\"CiviMail\";s:3:\"url\";s:24:\"/civicrm/mailing?reset=1\";}}',NULL,NULL,4,NULL,1,NULL,0,800,1,0,NULL,'a:0:{}'),(377,1,'civicrm/mailing/approve',NULL,'Approve Mailing','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:15:\"access CiviMail\";i:1;s:16:\"approve mailings\";}i:1;s:2:\"or\";}','s:24:\"CRM_Mailing_Form_Approve\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:8:\"CiviMail\";s:3:\"url\";s:24:\"/civicrm/mailing?reset=1\";}}',NULL,NULL,4,NULL,NULL,NULL,0,850,1,0,NULL,'a:0:{}'),(378,1,'civicrm/contact/view/mailing',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:20:\"CRM_Mailing_Page_Tab\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(379,1,'civicrm/ajax/contactmailing',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Mailing_Page_AJAX\";i:1;s:18:\"getContactMailings\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(380,1,'civicrm/grant',NULL,'CiviGrant Dashboard','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviGrant\";}i:1;s:3:\"and\";}','s:24:\"CRM_Grant_Page_DashBoard\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,5,NULL,NULL,NULL,0,1000,1,1,NULL,'a:1:{s:9:\"component\";s:9:\"CiviGrant\";}'),(381,1,'civicrm/grant/info',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviGrant\";}i:1;s:3:\"and\";}','s:24:\"CRM_Grant_Page_DashBoard\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviGrant Dashboard\";s:3:\"url\";s:22:\"/civicrm/grant?reset=1\";}}',NULL,NULL,5,NULL,NULL,NULL,0,0,1,0,NULL,'a:0:{}'),(382,1,'civicrm/grant/search',NULL,'Find Grants','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviGrant\";}i:1;s:3:\"and\";}','s:27:\"CRM_Grant_Controller_Search\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviGrant Dashboard\";s:3:\"url\";s:22:\"/civicrm/grant?reset=1\";}}',NULL,NULL,5,NULL,NULL,NULL,0,1010,1,1,NULL,'a:0:{}'),(383,1,'civicrm/grant/add','action=add','New Grant','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviGrant\";}i:1;s:3:\"and\";}','s:18:\"CRM_Grant_Page_Tab\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviGrant Dashboard\";s:3:\"url\";s:22:\"/civicrm/grant?reset=1\";}}',NULL,NULL,5,NULL,NULL,NULL,0,1,1,1,NULL,'a:1:{s:9:\"component\";s:9:\"CiviGrant\";}'),(384,1,'civicrm/contact/view/grant',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviGrant\";}i:1;s:3:\"and\";}','s:18:\"CRM_Grant_Page_Tab\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(385,1,'civicrm/pledge',NULL,'CiviPledge Dashboard','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:17:\"access CiviPledge\";}i:1;s:3:\"and\";}','s:25:\"CRM_Pledge_Page_DashBoard\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,6,NULL,NULL,NULL,0,550,1,1,NULL,'a:1:{s:9:\"component\";s:10:\"CiviPledge\";}'),(386,1,'civicrm/pledge/search',NULL,'Find Pledges','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:17:\"access CiviPledge\";}i:1;s:3:\"and\";}','s:28:\"CRM_Pledge_Controller_Search\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:20:\"CiviPledge Dashboard\";s:3:\"url\";s:23:\"/civicrm/pledge?reset=1\";}}',NULL,NULL,6,NULL,NULL,NULL,0,560,1,1,NULL,'a:0:{}'),(387,1,'civicrm/contact/view/pledge','force=1,cid=%%cid%%','Pledges','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:17:\"access CiviPledge\";}i:1;s:3:\"and\";}','s:19:\"CRM_Pledge_Page_Tab\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,570,1,0,NULL,'a:0:{}'),(388,1,'civicrm/pledge/add','action=add','New Pledge','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:17:\"access CiviPledge\";}i:1;s:3:\"and\";}','s:19:\"CRM_Pledge_Page_Tab\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:20:\"CiviPledge Dashboard\";s:3:\"url\";s:23:\"/civicrm/pledge?reset=1\";}}',NULL,NULL,6,NULL,NULL,NULL,0,1,1,1,NULL,'a:1:{s:9:\"component\";s:10:\"CiviPledge\";}'),(389,1,'civicrm/pledge/payment',NULL,'Pledge Payments','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:17:\"access CiviPledge\";}i:1;s:3:\"and\";}','s:23:\"CRM_Pledge_Page_Payment\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:20:\"CiviPledge Dashboard\";s:3:\"url\";s:23:\"/civicrm/pledge?reset=1\";}}',NULL,NULL,6,NULL,NULL,NULL,0,580,1,0,NULL,'a:0:{}'),(390,1,'civicrm/ajax/pledgeAmount',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:17:\"access CiviPledge\";i:1;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:20:\"CRM_Pledge_Page_AJAX\";i:1;s:17:\"getPledgeDefaults\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(391,1,'civicrm/case',NULL,'CiviCase Dashboard','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:23:\"CRM_Case_Page_DashBoard\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,7,NULL,NULL,NULL,0,900,1,1,NULL,'a:1:{s:9:\"component\";s:8:\"CiviCase\";}'),(392,1,'civicrm/case/add',NULL,'Open Case','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:18:\"CRM_Case_Form_Case\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"CiviCase Dashboard\";s:3:\"url\";s:21:\"/civicrm/case?reset=1\";}}',NULL,NULL,7,NULL,NULL,NULL,0,1,1,1,NULL,'a:1:{s:9:\"component\";s:8:\"CiviCase\";}'),(393,1,'civicrm/case/search',NULL,'Find Cases','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Case_Controller_Search\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"CiviCase Dashboard\";s:3:\"url\";s:21:\"/civicrm/case?reset=1\";}}',NULL,NULL,7,NULL,NULL,NULL,0,910,1,1,NULL,'a:0:{}'),(394,1,'civicrm/case/activity',NULL,'Case Activity','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Case_Form_Activity\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"CiviCase Dashboard\";s:3:\"url\";s:21:\"/civicrm/case?reset=1\";}}',NULL,NULL,7,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(395,1,'civicrm/case/report',NULL,'Case Activity Audit','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:31:\"access all cases and activities\";}i:1;s:3:\"and\";}','s:20:\"CRM_Case_Form_Report\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"CiviCase Dashboard\";s:3:\"url\";s:21:\"/civicrm/case?reset=1\";}}',NULL,NULL,7,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(396,1,'civicrm/case/cd/edit',NULL,'Case Custom Set','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:24:\"CRM_Case_Form_CustomData\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"CiviCase Dashboard\";s:3:\"url\";s:21:\"/civicrm/case?reset=1\";}}',NULL,NULL,7,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(397,1,'civicrm/contact/view/case',NULL,'Case','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:17:\"CRM_Case_Page_Tab\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(398,1,'civicrm/case/activity/view',NULL,'Activity View','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Case_Form_ActivityView\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"CiviCase Dashboard\";s:3:\"url\";s:21:\"/civicrm/case?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Case Activity\";s:3:\"url\";s:30:\"/civicrm/case/activity?reset=1\";}}',NULL,NULL,7,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(399,1,'civicrm/contact/view/case/editClient',NULL,'Assign to Another Client','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:24:\"CRM_Case_Form_EditClient\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}i:2;a:2:{s:5:\"title\";s:4:\"Case\";s:3:\"url\";s:34:\"/civicrm/contact/view/case?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(400,1,'civicrm/case/addToCase',NULL,'File on Case','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:28:\"CRM_Case_Form_ActivityToCase\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"CiviCase Dashboard\";s:3:\"url\";s:21:\"/civicrm/case?reset=1\";}}',NULL,NULL,7,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(401,1,'civicrm/case/details',NULL,'Case Details','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:25:\"CRM_Case_Page_CaseDetails\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"CiviCase Dashboard\";s:3:\"url\";s:21:\"/civicrm/case?reset=1\";}}',NULL,NULL,7,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(402,1,'civicrm/admin/setting/case',NULL,'CiviCase Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:27:\"CRM_Admin_Form_Setting_Case\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,380,1,0,NULL,'a:2:{s:10:\"adminGroup\";s:8:\"CiviCase\";s:4:\"icon\";s:18:\"admin/small/36.png\";}'),(403,1,'civicrm/admin/options/case_type',NULL,'Case Types','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:19:\"administer CiviCase\";}i:1;s:3:\"and\";}','s:22:\"CRM_Core_Page_Redirect\";','s:24:\"url=civicrm/a/#/caseType\";','a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,390,1,0,NULL,'a:3:{s:4:\"desc\";s:137:\"List of types which can be assigned to Cases. (Enable the Cases tab from System Settings - Enable Components if you want to track cases.)\";s:10:\"adminGroup\";s:8:\"CiviCase\";s:4:\"icon\";s:25:\"admin/small/case_type.png\";}'),(404,1,'civicrm/admin/options/redaction_rule',NULL,'Redaction Rules','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:19:\"administer CiviCase\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,400,1,0,NULL,'a:3:{s:4:\"desc\";s:223:\"List of rules which can be applied to user input strings so that the redacted output can be recognized as repeated instances of the same string or can be identified as a \"semantic type of the data element\" within case data.\";s:10:\"adminGroup\";s:8:\"CiviCase\";s:4:\"icon\";s:30:\"admin/small/redaction_type.png\";}'),(405,1,'civicrm/admin/options/case_status',NULL,'Case Statuses','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:19:\"administer CiviCase\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,400,1,0,NULL,'a:3:{s:4:\"desc\";s:48:\"List of statuses that can be assigned to a case.\";s:10:\"adminGroup\";s:8:\"CiviCase\";s:4:\"icon\";s:25:\"admin/small/case_type.png\";}'),(406,1,'civicrm/admin/options/encounter_medium',NULL,'Encounter Mediums','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:19:\"administer CiviCase\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,400,1,0,NULL,'a:3:{s:4:\"desc\";s:26:\"List of encounter mediums.\";s:10:\"adminGroup\";s:8:\"CiviCase\";s:4:\"icon\";s:25:\"admin/small/case_type.png\";}'),(407,1,'civicrm/case/report/print',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:31:\"access all cases and activities\";}i:1;s:3:\"and\";}','a:2:{i:0;s:28:\"CRM_Case_XMLProcessor_Report\";i:1;s:15:\"printCaseReport\";}',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"CiviCase Dashboard\";s:3:\"url\";s:21:\"/civicrm/case?reset=1\";}i:2;a:2:{s:5:\"title\";s:19:\"Case Activity Audit\";s:3:\"url\";s:28:\"/civicrm/case/report?reset=1\";}}',NULL,NULL,7,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(408,1,'civicrm/case/ajax/addclient',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:18:\"CRM_Case_Page_AJAX\";i:1;s:9:\"addClient\";}',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"CiviCase Dashboard\";s:3:\"url\";s:21:\"/civicrm/case?reset=1\";}}',NULL,NULL,7,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(409,1,'civicrm/case/ajax/processtags',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:18:\"CRM_Case_Page_AJAX\";i:1;s:15:\"processCaseTags\";}',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"CiviCase Dashboard\";s:3:\"url\";s:21:\"/civicrm/case?reset=1\";}}',NULL,NULL,7,NULL,NULL,NULL,0,1,1,3,NULL,'a:0:{}'),(410,1,'civicrm/case/ajax/details',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:18:\"CRM_Case_Page_AJAX\";i:1;s:11:\"CaseDetails\";}',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"CiviCase Dashboard\";s:3:\"url\";s:21:\"/civicrm/case?reset=1\";}}',NULL,NULL,7,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(411,1,'civicrm/ajax/delcaserole',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:18:\"CRM_Case_Page_AJAX\";i:1;s:15:\"deleteCaseRoles\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(412,1,'civicrm/ajax/get-cases',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:18:\"CRM_Case_Page_AJAX\";i:1;s:8:\"getCases\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(413,1,'civicrm/report',NULL,'CiviReport','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:17:\"access CiviReport\";}i:1;s:3:\"and\";}','s:22:\"CRM_Report_Page_Report\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,8,NULL,NULL,NULL,0,1200,1,1,NULL,'a:1:{s:9:\"component\";s:10:\"CiviReport\";}'),(414,1,'civicrm/report/list',NULL,'CiviCRM Reports','s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:17:\"access CiviReport\";}i:1;s:3:\"and\";}','s:28:\"CRM_Report_Page_InstanceList\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"CiviReport\";s:3:\"url\";s:23:\"/civicrm/report?reset=1\";}}',NULL,NULL,8,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(415,1,'civicrm/report/template/list',NULL,'Create New Report from Template','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:18:\"administer Reports\";}i:1;s:3:\"and\";}','s:28:\"CRM_Report_Page_TemplateList\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"CiviReport\";s:3:\"url\";s:23:\"/civicrm/report?reset=1\";}}',NULL,NULL,8,NULL,NULL,NULL,0,1220,1,1,NULL,'a:0:{}'),(416,1,'civicrm/report/options/report_template',NULL,'Manage Templates','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:18:\"administer Reports\";}i:1;s:3:\"and\";}','s:23:\"CRM_Report_Page_Options\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"CiviReport\";s:3:\"url\";s:23:\"/civicrm/report?reset=1\";}}',NULL,NULL,8,NULL,NULL,NULL,0,1241,1,1,NULL,'a:0:{}'),(417,1,'civicrm/admin/report/register',NULL,'Register Report','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:18:\"administer Reports\";}i:1;s:3:\"and\";}','s:24:\"CRM_Report_Form_Register\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,1,1,0,NULL,'a:1:{s:4:\"desc\";s:30:\"Register the Report templates.\";}'),(418,1,'civicrm/report/instance',NULL,'Report','s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:17:\"access CiviReport\";}i:1;s:3:\"and\";}','s:24:\"CRM_Report_Page_Instance\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"CiviReport\";s:3:\"url\";s:23:\"/civicrm/report?reset=1\";}}',NULL,NULL,8,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(419,1,'civicrm/admin/report/template/list',NULL,'Create New Report from Template','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:17:\"access CiviReport\";}i:1;s:3:\"and\";}','s:28:\"CRM_Report_Page_TemplateList\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,1,1,0,NULL,'a:3:{s:4:\"desc\";s:49:\"Component wise listing of all available templates\";s:10:\"adminGroup\";s:10:\"CiviReport\";s:4:\"icon\";s:31:\"admin/small/report_template.gif\";}'),(420,1,'civicrm/admin/report/options/report_template',NULL,'Manage Templates','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:17:\"access CiviReport\";}i:1;s:3:\"and\";}','s:23:\"CRM_Report_Page_Options\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,1,1,0,NULL,'a:3:{s:4:\"desc\";s:45:\"Browse, Edit and Delete the Report templates.\";s:10:\"adminGroup\";s:10:\"CiviReport\";s:4:\"icon\";s:24:\"admin/small/template.png\";}'),(421,1,'civicrm/admin/report/list',NULL,'Reports Listing','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:28:\"CRM_Report_Page_InstanceList\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,1,1,0,NULL,'a:3:{s:4:\"desc\";s:60:\"Browse existing report, change report criteria and settings.\";s:10:\"adminGroup\";s:10:\"CiviReport\";s:4:\"icon\";s:27:\"admin/small/report_list.gif\";}'),(422,1,'civicrm/report/chart',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:17:\"access CiviReport\";}i:1;s:3:\"and\";}','a:2:{i:0;s:15:\"CRM_Report_Form\";i:1;s:16:\"uploadChartImage\";}',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"CiviReport\";s:3:\"url\";s:23:\"/civicrm/report?reset=1\";}}',NULL,NULL,8,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(423,1,'civicrm/campaign',NULL,'Campaign Dashboard','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:23:\"administer CiviCampaign\";i:1;s:15:\"manage campaign\";}i:1;s:2:\"or\";}','s:27:\"CRM_Campaign_Page_DashBoard\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,9,NULL,NULL,NULL,0,1,1,0,NULL,'a:1:{s:9:\"component\";s:12:\"CiviCampaign\";}'),(424,1,'civicrm/campaign/add',NULL,'New Campaign','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:23:\"administer CiviCampaign\";i:1;s:15:\"manage campaign\";}i:1;s:2:\"or\";}','s:26:\"CRM_Campaign_Form_Campaign\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Campaign Dashboard\";s:3:\"url\";s:25:\"/civicrm/campaign?reset=1\";}}',NULL,NULL,9,NULL,NULL,NULL,0,1,1,0,NULL,'a:1:{s:9:\"component\";s:12:\"CiviCampaign\";}'),(425,1,'civicrm/survey/add',NULL,'New Survey','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:23:\"administer CiviCampaign\";i:1;s:15:\"manage campaign\";}i:1;s:2:\"or\";}','s:29:\"CRM_Campaign_Form_Survey_Main\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:1:{s:9:\"component\";s:12:\"CiviCampaign\";}'),(426,1,'civicrm/campaign/vote',NULL,'Conduct Survey','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:4:{i:0;s:23:\"administer CiviCampaign\";i:1;s:15:\"manage campaign\";i:2;s:25:\"reserve campaign contacts\";i:3;s:27:\"interview campaign contacts\";}i:1;s:2:\"or\";}','s:22:\"CRM_Campaign_Page_Vote\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Campaign Dashboard\";s:3:\"url\";s:25:\"/civicrm/campaign?reset=1\";}}',NULL,NULL,9,NULL,NULL,NULL,0,1,1,0,NULL,'a:1:{s:9:\"component\";s:12:\"CiviCampaign\";}'),(427,1,'civicrm/admin/campaign/surveyType',NULL,'Survey Types','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:23:\"administer CiviCampaign\";}i:1;s:3:\"and\";}','s:28:\"CRM_Campaign_Page_SurveyType\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,1,1,0,NULL,'a:3:{s:4:\"icon\";s:18:\"admin/small/05.png\";s:10:\"adminGroup\";s:12:\"CiviCampaign\";s:9:\"component\";s:12:\"CiviCampaign\";}'),(428,1,'civicrm/admin/options/campaign_type',NULL,'Campaign Types','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,2,1,0,NULL,'a:4:{s:4:\"desc\";s:47:\"categorize your campaigns using campaign types.\";s:10:\"adminGroup\";s:12:\"CiviCampaign\";s:4:\"icon\";s:18:\"admin/small/05.png\";s:9:\"component\";s:12:\"CiviCampaign\";}'),(429,1,'civicrm/admin/options/campaign_status',NULL,'Campaign Status','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,3,1,0,NULL,'a:4:{s:4:\"desc\";s:34:\"Define statuses for campaign here.\";s:10:\"adminGroup\";s:12:\"CiviCampaign\";s:4:\"icon\";s:18:\"admin/small/05.png\";s:9:\"component\";s:12:\"CiviCampaign\";}'),(430,1,'civicrm/admin/options/engagement_index',NULL,'Engagement Index','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,4,1,0,NULL,'a:4:{s:4:\"desc\";s:18:\"Engagement levels.\";s:10:\"adminGroup\";s:12:\"CiviCampaign\";s:4:\"icon\";s:18:\"admin/small/05.png\";s:9:\"component\";s:12:\"CiviCampaign\";}'),(431,1,'civicrm/survey/search','op=interview','Record Respondents Interview','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:23:\"administer CiviCampaign\";i:1;s:15:\"manage campaign\";i:2;s:27:\"interview campaign contacts\";}i:1;s:2:\"or\";}','s:30:\"CRM_Campaign_Controller_Search\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:1:{s:9:\"component\";s:12:\"CiviCampaign\";}'),(432,1,'civicrm/campaign/gotv',NULL,'GOTV (Track Voters)','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:4:{i:0;s:23:\"administer CiviCampaign\";i:1;s:15:\"manage campaign\";i:2;s:25:\"release campaign contacts\";i:3;s:22:\"gotv campaign contacts\";}i:1;s:2:\"or\";}','s:22:\"CRM_Campaign_Form_Gotv\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Campaign Dashboard\";s:3:\"url\";s:25:\"/civicrm/campaign?reset=1\";}}',NULL,NULL,9,NULL,NULL,NULL,0,1,1,0,NULL,'a:1:{s:9:\"component\";s:12:\"CiviCampaign\";}'),(433,1,'civicrm/petition/add',NULL,'New Petition','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:23:\"administer CiviCampaign\";i:1;s:15:\"manage campaign\";}i:1;s:2:\"or\";}','s:26:\"CRM_Campaign_Form_Petition\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(434,1,'civicrm/petition/sign',NULL,'Sign Petition','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"sign CiviCRM Petition\";}i:1;s:3:\"and\";}','s:36:\"CRM_Campaign_Form_Petition_Signature\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,1,NULL,0,1,1,0,NULL,'a:0:{}'),(435,1,'civicrm/petition/browse',NULL,'View Petition Signatures','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Campaign_Page_Petition\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(436,1,'civicrm/petition/confirm',NULL,'Email address verified','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"sign CiviCRM Petition\";}i:1;s:3:\"and\";}','s:34:\"CRM_Campaign_Page_Petition_Confirm\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,1,NULL,0,1,1,0,NULL,'a:0:{}'),(437,1,'civicrm/petition/thankyou',NULL,'Thank You','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"sign CiviCRM Petition\";}i:1;s:3:\"and\";}','s:35:\"CRM_Campaign_Page_Petition_ThankYou\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,1,NULL,0,1,1,0,NULL,'a:0:{}'),(438,1,'civicrm/campaign/registerInterview',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:23:\"administer CiviCampaign\";i:1;s:15:\"manage campaign\";i:2;s:27:\"interview campaign contacts\";}i:1;s:2:\"or\";}','a:2:{i:0;s:22:\"CRM_Campaign_Page_AJAX\";i:1;s:17:\"registerInterview\";}',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Campaign Dashboard\";s:3:\"url\";s:25:\"/civicrm/campaign?reset=1\";}}',NULL,NULL,9,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(439,1,'civicrm/survey/configure/main',NULL,'Configure Survey','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:23:\"administer CiviCampaign\";i:1;s:15:\"manage campaign\";}i:1;s:2:\"or\";}','s:29:\"CRM_Campaign_Form_Survey_Main\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(440,1,'civicrm/survey/configure/questions',NULL,'Configure Survey','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:23:\"administer CiviCampaign\";i:1;s:15:\"manage campaign\";}i:1;s:2:\"or\";}','s:34:\"CRM_Campaign_Form_Survey_Questions\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(441,1,'civicrm/survey/configure/results',NULL,'Configure Survey','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:23:\"administer CiviCampaign\";i:1;s:15:\"manage campaign\";}i:1;s:2:\"or\";}','s:32:\"CRM_Campaign_Form_Survey_Results\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(442,1,'civicrm/survey/delete',NULL,'Delete Survey','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:23:\"administer CiviCampaign\";i:1;s:15:\"manage campaign\";}i:1;s:2:\"or\";}','s:31:\"CRM_Campaign_Form_Survey_Delete\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(443,1,'admin',NULL,NULL,NULL,NULL,NULL,NULL,'a:15:{s:26:\"Customize Data and Screens\";a:3:{s:12:\"component_id\";N;s:6:\"fields\";a:19:{s:26:\"{weight}.Tags (Categories)\";a:6:{s:5:\"title\";s:17:\"Tags (Categories)\";s:4:\"desc\";s:158:\"Tags are useful for segmenting the contacts in your database into categories (e.g. Staff Member, Donor, Volunteer, etc.). Create and edit available tags here.\";s:2:\"id\";s:15:\"Tags_Categories\";s:3:\"url\";s:20:\"/civicrm/tag?reset=1\";s:4:\"icon\";s:18:\"admin/small/11.png\";s:5:\"extra\";N;}s:20:\"{weight}.Custom Data\";a:6:{s:5:\"title\";s:11:\"Custom Data\";s:4:\"desc\";s:109:\"Configure custom fields to collect and store custom data which is not included in the standard CiviCRM forms.\";s:2:\"id\";s:10:\"CustomData\";s:3:\"url\";s:35:\"/civicrm/admin/custom/group?reset=1\";s:4:\"icon\";s:26:\"admin/small/custm_data.png\";s:5:\"extra\";N;}s:17:\"{weight}.Profiles\";a:6:{s:5:\"title\";s:8:\"Profiles\";s:4:\"desc\";s:151:\"Profiles allow you to aggregate groups of fields and include them in your site as input forms, contact display pages, and search and listings features.\";s:2:\"id\";s:8:\"Profiles\";s:3:\"url\";s:31:\"/civicrm/admin/uf/group?reset=1\";s:4:\"icon\";s:23:\"admin/small/Profile.png\";s:5:\"extra\";N;}s:23:\"{weight}.Activity Types\";a:6:{s:5:\"title\";s:14:\"Activity Types\";s:4:\"desc\";s:155:\"CiviCRM has several built-in activity types (meetings, phone calls, emails sent). Track other types of interactions by creating custom activity types here.\";s:2:\"id\";s:13:\"ActivityTypes\";s:3:\"url\";s:44:\"/civicrm/admin/options/activity_type?reset=1\";s:4:\"icon\";s:18:\"admin/small/05.png\";s:5:\"extra\";N;}s:27:\"{weight}.Relationship Types\";a:6:{s:5:\"title\";s:18:\"Relationship Types\";s:4:\"desc\";s:148:\"Contacts can be linked to each other through Relationships (e.g. Spouse, Employer, etc.). Define the types of relationships you want to record here.\";s:2:\"id\";s:17:\"RelationshipTypes\";s:3:\"url\";s:30:\"/civicrm/admin/reltype?reset=1\";s:4:\"icon\";s:25:\"admin/small/rela_type.png\";s:5:\"extra\";N;}s:22:\"{weight}.Contact Types\";a:6:{s:5:\"title\";s:13:\"Contact Types\";s:4:\"desc\";N;s:2:\"id\";s:12:\"ContactTypes\";s:3:\"url\";s:38:\"/civicrm/admin/options/subtype?reset=1\";s:4:\"icon\";s:18:\"admin/small/09.png\";s:5:\"extra\";N;}s:23:\"{weight}.Gender Options\";a:6:{s:5:\"title\";s:14:\"Gender Options\";s:4:\"desc\";s:79:\"Options for assigning gender to individual contacts (e.g. Male, Female, Other).\";s:2:\"id\";s:13:\"GenderOptions\";s:3:\"url\";s:37:\"/civicrm/admin/options/gender?reset=1\";s:4:\"icon\";s:18:\"admin/small/01.png\";s:5:\"extra\";N;}s:40:\"{weight}.Individual Prefixes (Ms, Mr...)\";a:6:{s:5:\"title\";s:31:\"Individual Prefixes (Ms, Mr...)\";s:4:\"desc\";s:66:\"Options for individual contact prefixes (e.g. Ms., Mr., Dr. etc.).\";s:2:\"id\";s:27:\"IndividualPrefixes_Ms_Mr...\";s:3:\"url\";s:48:\"/civicrm/admin/options/individual_prefix?reset=1\";s:4:\"icon\";s:21:\"admin/small/title.png\";s:5:\"extra\";N;}s:40:\"{weight}.Individual Suffixes (Jr, Sr...)\";a:6:{s:5:\"title\";s:31:\"Individual Suffixes (Jr, Sr...)\";s:4:\"desc\";s:61:\"Options for individual contact suffixes (e.g. Jr., Sr. etc.).\";s:2:\"id\";s:27:\"IndividualSuffixes_Jr_Sr...\";s:3:\"url\";s:48:\"/civicrm/admin/options/individual_suffix?reset=1\";s:4:\"icon\";s:18:\"admin/small/10.png\";s:5:\"extra\";N;}s:39:\"{weight}.Location Types (Home, Work...)\";a:6:{s:5:\"title\";s:30:\"Location Types (Home, Work...)\";s:4:\"desc\";s:94:\"Options for categorizing contact addresses and phone numbers (e.g. Home, Work, Billing, etc.).\";s:2:\"id\";s:26:\"LocationTypes_Home_Work...\";s:3:\"url\";s:35:\"/civicrm/admin/locationType?reset=1\";s:4:\"icon\";s:18:\"admin/small/13.png\";s:5:\"extra\";N;}s:22:\"{weight}.Website Types\";a:6:{s:5:\"title\";s:13:\"Website Types\";s:4:\"desc\";s:48:\"Options for assigning website types to contacts.\";s:2:\"id\";s:12:\"WebsiteTypes\";s:3:\"url\";s:43:\"/civicrm/admin/options/website_type?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:35:\"{weight}.Instant Messenger Services\";a:6:{s:5:\"title\";s:26:\"Instant Messenger Services\";s:4:\"desc\";s:79:\"List of IM services which can be used when recording screen-names for contacts.\";s:2:\"id\";s:24:\"InstantMessengerServices\";s:3:\"url\";s:56:\"/civicrm/admin/options/instant_messenger_service?reset=1\";s:4:\"icon\";s:18:\"admin/small/07.png\";s:5:\"extra\";N;}s:31:\"{weight}.Mobile Phone Providers\";a:6:{s:5:\"title\";s:22:\"Mobile Phone Providers\";s:4:\"desc\";s:90:\"List of mobile phone providers which can be assigned when recording contact phone numbers.\";s:2:\"id\";s:20:\"MobilePhoneProviders\";s:3:\"url\";s:46:\"/civicrm/admin/options/mobile_provider?reset=1\";s:4:\"icon\";s:18:\"admin/small/08.png\";s:5:\"extra\";N;}s:19:\"{weight}.Phone Type\";a:6:{s:5:\"title\";s:10:\"Phone Type\";s:4:\"desc\";s:80:\"Options for assigning phone type to contacts (e.g Phone,\n Mobile, Fax, Pager)\";s:2:\"id\";s:9:\"PhoneType\";s:3:\"url\";s:41:\"/civicrm/admin/options/phone_type?reset=1\";s:4:\"icon\";s:7:\"tel.gif\";s:5:\"extra\";N;}s:28:\"{weight}.Display Preferences\";a:6:{s:5:\"title\";s:19:\"Display Preferences\";s:4:\"desc\";N;s:2:\"id\";s:18:\"DisplayPreferences\";s:3:\"url\";s:50:\"/civicrm/admin/setting/preferences/display?reset=1\";s:4:\"icon\";s:18:\"admin/small/36.png\";s:5:\"extra\";N;}s:27:\"{weight}.Search Preferences\";a:6:{s:5:\"title\";s:18:\"Search Preferences\";s:4:\"desc\";N;s:2:\"id\";s:17:\"SearchPreferences\";s:3:\"url\";s:37:\"/civicrm/admin/setting/search?reset=1\";s:4:\"icon\";s:18:\"admin/small/36.png\";s:5:\"extra\";N;}s:24:\"{weight}.Navigation Menu\";a:6:{s:5:\"title\";s:15:\"Navigation Menu\";s:4:\"desc\";s:79:\"Add or remove menu items, and modify the order of items on the navigation menu.\";s:2:\"id\";s:14:\"NavigationMenu\";s:3:\"url\";s:27:\"/civicrm/admin/menu?reset=1\";s:4:\"icon\";s:24:\"admin/small/template.png\";s:5:\"extra\";N;}s:26:\"{weight}.Word Replacements\";a:6:{s:5:\"title\";s:17:\"Word Replacements\";s:4:\"desc\";s:18:\"Word Replacements.\";s:2:\"id\";s:16:\"WordReplacements\";s:3:\"url\";s:47:\"/civicrm/admin/options/wordreplacements?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:31:\"{weight}.Manage Custom Searches\";a:6:{s:5:\"title\";s:22:\"Manage Custom Searches\";s:4:\"desc\";s:225:\"Developers and accidental techies with a bit of PHP and SQL knowledge can create new search forms to handle specific search and reporting needs which aren\'t covered by the built-in Advanced Search and Search Builder features.\";s:2:\"id\";s:20:\"ManageCustomSearches\";s:3:\"url\";s:44:\"/civicrm/admin/options/custom_search?reset=1\";s:4:\"icon\";s:24:\"admin/small/template.png\";s:5:\"extra\";N;}}s:9:\"perColumn\";d:10;}s:6:\"Manage\";a:3:{s:12:\"component_id\";N;s:6:\"fields\";a:3:{s:42:\"{weight}.Find and Merge Duplicate Contacts\";a:6:{s:5:\"title\";s:33:\"Find and Merge Duplicate Contacts\";s:4:\"desc\";s:158:\"Manage the rules used to identify potentially duplicate contact records. Scan for duplicates using a selected rule and merge duplicate contact data as needed.\";s:2:\"id\";s:29:\"FindandMergeDuplicateContacts\";s:3:\"url\";s:36:\"/civicrm/contact/deduperules?reset=1\";s:4:\"icon\";s:34:\"admin/small/duplicate_matching.png\";s:5:\"extra\";N;}s:26:\"{weight}.Dedupe Exceptions\";a:6:{s:5:\"title\";s:17:\"Dedupe Exceptions\";s:4:\"desc\";N;s:2:\"id\";s:16:\"DedupeExceptions\";s:3:\"url\";s:33:\"/civicrm/dedupe/exception?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:27:\"{weight}.Scheduled Jobs Log\";a:6:{s:5:\"title\";s:18:\"Scheduled Jobs Log\";s:4:\"desc\";s:46:\"Browsing the log of periodially running tasks.\";s:2:\"id\";s:16:\"ScheduledJobsLog\";s:3:\"url\";s:29:\"/civicrm/admin/joblog?reset=1\";s:4:\"icon\";s:18:\"admin/small/13.png\";s:5:\"extra\";N;}}s:9:\"perColumn\";d:2;}s:14:\"Communications\";a:3:{s:12:\"component_id\";N;s:6:\"fields\";a:11:{s:46:\"{weight}.Organization Address and Contact Info\";a:6:{s:5:\"title\";s:37:\"Organization Address and Contact Info\";s:4:\"desc\";s:150:\"Configure primary contact name, email, return-path and address information. This information is used by CiviMail to identify the sending organization.\";s:2:\"id\";s:33:\"OrganizationAddressandContactInfo\";s:3:\"url\";s:47:\"/civicrm/admin/domain?action=update&reset=1\";s:4:\"icon\";s:22:\"admin/small/domain.png\";s:5:\"extra\";N;}s:29:\"{weight}.From Email Addresses\";a:6:{s:5:\"title\";s:20:\"From Email Addresses\";s:4:\"desc\";s:74:\"List of Email Addresses which can be used when sending emails to contacts.\";s:2:\"id\";s:18:\"FromEmailAddresses\";s:3:\"url\";s:49:\"/civicrm/admin/options/from_email_address?reset=1\";s:4:\"icon\";s:21:\"admin/small/title.png\";s:5:\"extra\";N;}s:26:\"{weight}.Message Templates\";a:6:{s:5:\"title\";s:17:\"Message Templates\";s:4:\"desc\";s:130:\"Message templates allow you to save and re-use messages with layouts which you can use when sending email to one or more contacts.\";s:2:\"id\";s:16:\"MessageTemplates\";s:3:\"url\";s:39:\"/civicrm/admin/messageTemplates?reset=1\";s:4:\"icon\";s:24:\"admin/small/template.png\";s:5:\"extra\";N;}s:27:\"{weight}.Schedule Reminders\";a:6:{s:5:\"title\";s:18:\"Schedule Reminders\";s:4:\"desc\";s:19:\"Schedule Reminders.\";s:2:\"id\";s:17:\"ScheduleReminders\";s:3:\"url\";s:40:\"/civicrm/admin/scheduleReminders?reset=1\";s:4:\"icon\";s:24:\"admin/small/template.png\";s:5:\"extra\";N;}s:40:\"{weight}.Preferred Communication Methods\";a:6:{s:5:\"title\";s:31:\"Preferred Communication Methods\";s:4:\"desc\";s:117:\"One or more preferred methods of communication can be assigned to each contact. Customize the available options here.\";s:2:\"id\";s:29:\"PreferredCommunicationMethods\";s:3:\"url\";s:61:\"/civicrm/admin/options/preferred_communication_method?reset=1\";s:4:\"icon\";s:29:\"admin/small/communication.png\";s:5:\"extra\";N;}s:22:\"{weight}.Label Formats\";a:6:{s:5:\"title\";s:13:\"Label Formats\";s:4:\"desc\";s:67:\"Configure Label Formats that are used when creating mailing labels.\";s:2:\"id\";s:12:\"LabelFormats\";s:3:\"url\";s:35:\"/civicrm/admin/labelFormats?reset=1\";s:4:\"icon\";s:24:\"admin/small/template.png\";s:5:\"extra\";N;}s:33:\"{weight}.Print Page (PDF) Formats\";a:6:{s:5:\"title\";s:24:\"Print Page (PDF) Formats\";s:4:\"desc\";s:95:\"Configure PDF Page Formats that can be assigned to Message Templates when creating PDF letters.\";s:2:\"id\";s:20:\"PrintPage_PDFFormats\";s:3:\"url\";s:33:\"/civicrm/admin/pdfFormats?reset=1\";s:4:\"icon\";s:24:\"admin/small/template.png\";s:5:\"extra\";N;}s:36:\"{weight}.Communication Style Options\";a:6:{s:5:\"title\";s:27:\"Communication Style Options\";s:4:\"desc\";s:42:\"Options for Communication Style selection.\";s:2:\"id\";s:25:\"CommunicationStyleOptions\";s:3:\"url\";s:50:\"/civicrm/admin/options/communication_style?reset=1\";s:4:\"icon\";s:18:\"admin/small/01.png\";s:5:\"extra\";N;}s:31:\"{weight}.Email Greeting Formats\";a:6:{s:5:\"title\";s:22:\"Email Greeting Formats\";s:4:\"desc\";s:75:\"Options for assigning email greetings to individual and household contacts.\";s:2:\"id\";s:20:\"EmailGreetingFormats\";s:3:\"url\";s:45:\"/civicrm/admin/options/email_greeting?reset=1\";s:4:\"icon\";s:18:\"admin/small/01.png\";s:5:\"extra\";N;}s:32:\"{weight}.Postal Greeting Formats\";a:6:{s:5:\"title\";s:23:\"Postal Greeting Formats\";s:4:\"desc\";s:76:\"Options for assigning postal greetings to individual and household contacts.\";s:2:\"id\";s:21:\"PostalGreetingFormats\";s:3:\"url\";s:46:\"/civicrm/admin/options/postal_greeting?reset=1\";s:4:\"icon\";s:18:\"admin/small/01.png\";s:5:\"extra\";N;}s:26:\"{weight}.Addressee Formats\";a:6:{s:5:\"title\";s:17:\"Addressee Formats\";s:4:\"desc\";s:83:\"Options for assigning addressee to individual, household and organization contacts.\";s:2:\"id\";s:16:\"AddresseeFormats\";s:3:\"url\";s:40:\"/civicrm/admin/options/addressee?reset=1\";s:4:\"icon\";s:18:\"admin/small/01.png\";s:5:\"extra\";N;}}s:9:\"perColumn\";d:6;}s:12:\"Localization\";a:3:{s:12:\"component_id\";N;s:6:\"fields\";a:4:{s:39:\"{weight}.Languages, Currency, Locations\";a:6:{s:5:\"title\";s:30:\"Languages, Currency, Locations\";s:4:\"desc\";N;s:2:\"id\";s:28:\"Languages_Currency_Locations\";s:3:\"url\";s:43:\"/civicrm/admin/setting/localization?reset=1\";s:4:\"icon\";s:18:\"admin/small/36.png\";s:5:\"extra\";N;}s:25:\"{weight}.Address Settings\";a:6:{s:5:\"title\";s:16:\"Address Settings\";s:4:\"desc\";N;s:2:\"id\";s:15:\"AddressSettings\";s:3:\"url\";s:50:\"/civicrm/admin/setting/preferences/address?reset=1\";s:4:\"icon\";s:18:\"admin/small/36.png\";s:5:\"extra\";N;}s:21:\"{weight}.Date Formats\";a:6:{s:5:\"title\";s:12:\"Date Formats\";s:4:\"desc\";N;s:2:\"id\";s:11:\"DateFormats\";s:3:\"url\";s:35:\"/civicrm/admin/setting/date?reset=1\";s:4:\"icon\";s:18:\"admin/small/36.png\";s:5:\"extra\";N;}s:28:\"{weight}.Preferred Languages\";a:6:{s:5:\"title\";s:19:\"Preferred Languages\";s:4:\"desc\";s:30:\"Options for contact languages.\";s:2:\"id\";s:18:\"PreferredLanguages\";s:3:\"url\";s:40:\"/civicrm/admin/options/languages?reset=1\";s:4:\"icon\";s:18:\"admin/small/36.png\";s:5:\"extra\";N;}}s:9:\"perColumn\";d:2;}s:21:\"Users and Permissions\";a:3:{s:12:\"component_id\";N;s:6:\"fields\";a:2:{s:23:\"{weight}.Access Control\";a:6:{s:5:\"title\";s:14:\"Access Control\";s:4:\"desc\";s:73:\"Grant or deny access to actions (view, edit...), features and components.\";s:2:\"id\";s:13:\"AccessControl\";s:3:\"url\";s:29:\"/civicrm/admin/access?reset=1\";s:4:\"icon\";s:18:\"admin/small/03.png\";s:5:\"extra\";N;}s:38:\"{weight}.Synchronize Users to Contacts\";a:6:{s:5:\"title\";s:29:\"Synchronize Users to Contacts\";s:4:\"desc\";s:71:\"Automatically create a CiviCRM contact record for each CMS user record.\";s:2:\"id\";s:26:\"SynchronizeUserstoContacts\";s:3:\"url\";s:32:\"/civicrm/admin/synchUser?reset=1\";s:4:\"icon\";s:26:\"admin/small/Synch_user.png\";s:5:\"extra\";N;}}s:9:\"perColumn\";d:1;}s:15:\"System Settings\";a:3:{s:12:\"component_id\";N;s:6:\"fields\";a:18:{s:32:\"{weight}.Configuration Checklist\";a:6:{s:5:\"title\";s:23:\"Configuration Checklist\";s:4:\"desc\";s:55:\"List of configuration tasks with links to each setting.\";s:2:\"id\";s:22:\"ConfigurationChecklist\";s:3:\"url\";s:33:\"/civicrm/admin/configtask?reset=1\";s:4:\"icon\";s:9:\"check.gif\";s:5:\"extra\";N;}s:34:\"{weight}.Enable CiviCRM Components\";a:6:{s:5:\"title\";s:25:\"Enable CiviCRM Components\";s:4:\"desc\";s:269:\"Enable or disable components (e.g. CiviEvent, CiviMember, etc.) for your site based on the features you need. We recommend disabling any components not being used in order to simplify the user interface. You can easily re-enable components at any time from this screen.\";s:2:\"id\";s:23:\"EnableCiviCRMComponents\";s:3:\"url\";s:40:\"/civicrm/admin/setting/component?reset=1\";s:4:\"icon\";s:18:\"admin/small/36.png\";s:5:\"extra\";N;}s:26:\"{weight}.Manage Extensions\";a:6:{s:5:\"title\";s:17:\"Manage Extensions\";s:4:\"desc\";s:0:\"\";s:2:\"id\";s:16:\"ManageExtensions\";s:3:\"url\";s:33:\"/civicrm/admin/extensions?reset=1\";s:4:\"icon\";s:26:\"admin/small/price_sets.png\";s:5:\"extra\";N;}s:32:\"{weight}.Outbound Email Settings\";a:6:{s:5:\"title\";s:23:\"Outbound Email Settings\";s:4:\"desc\";N;s:2:\"id\";s:21:\"OutboundEmailSettings\";s:3:\"url\";s:35:\"/civicrm/admin/setting/smtp?reset=1\";s:4:\"icon\";s:18:\"admin/small/07.png\";s:5:\"extra\";N;}s:37:\"{weight}.Settings - Payment Processor\";a:6:{s:5:\"title\";s:28:\"Settings - Payment Processor\";s:4:\"desc\";s:48:\"Payment Processor setup for CiviCRM transactions\";s:2:\"id\";s:25:\"Settings-PaymentProcessor\";s:3:\"url\";s:39:\"/civicrm/admin/paymentProcessor?reset=1\";s:4:\"icon\";s:41:\"admin/small/online_contribution_pages.png\";s:5:\"extra\";N;}s:30:\"{weight}.Mapping and Geocoding\";a:6:{s:5:\"title\";s:21:\"Mapping and Geocoding\";s:4:\"desc\";N;s:2:\"id\";s:19:\"MappingandGeocoding\";s:3:\"url\";s:38:\"/civicrm/admin/setting/mapping?reset=1\";s:4:\"icon\";s:18:\"admin/small/36.png\";s:5:\"extra\";N;}s:62:\"{weight}.Misc (Undelete, PDFs, Limits, Logging, Captcha, etc.)\";a:6:{s:5:\"title\";s:53:\"Misc (Undelete, PDFs, Limits, Logging, Captcha, etc.)\";s:4:\"desc\";s:91:\"Enable undelete/move to trash feature, detailed change logging, ReCAPTCHA to protect forms.\";s:2:\"id\";s:46:\"Misc_Undelete_PDFs_Limits_Logging_Captcha_etc.\";s:3:\"url\";s:35:\"/civicrm/admin/setting/misc?reset=1\";s:4:\"icon\";s:18:\"admin/small/36.png\";s:5:\"extra\";N;}s:20:\"{weight}.Directories\";a:6:{s:5:\"title\";s:11:\"Directories\";s:4:\"desc\";N;s:2:\"id\";s:11:\"Directories\";s:3:\"url\";s:35:\"/civicrm/admin/setting/path?reset=1\";s:4:\"icon\";s:18:\"admin/small/36.png\";s:5:\"extra\";N;}s:22:\"{weight}.Resource URLs\";a:6:{s:5:\"title\";s:13:\"Resource URLs\";s:4:\"desc\";N;s:2:\"id\";s:12:\"ResourceURLs\";s:3:\"url\";s:34:\"/civicrm/admin/setting/url?reset=1\";s:4:\"icon\";s:18:\"admin/small/36.png\";s:5:\"extra\";N;}s:40:\"{weight}.Cleanup Caches and Update Paths\";a:6:{s:5:\"title\";s:31:\"Cleanup Caches and Update Paths\";s:4:\"desc\";s:157:\"Reset the Base Directory Path and Base URL settings - generally when a CiviCRM site is moved to another location in the file system and/or to another domain.\";s:2:\"id\";s:27:\"CleanupCachesandUpdatePaths\";s:3:\"url\";s:50:\"/civicrm/admin/setting/updateConfigBackend?reset=1\";s:4:\"icon\";s:26:\"admin/small/updatepath.png\";s:5:\"extra\";N;}s:33:\"{weight}.CMS Database Integration\";a:6:{s:5:\"title\";s:24:\"CMS Database Integration\";s:4:\"desc\";N;s:2:\"id\";s:22:\"CMSDatabaseIntegration\";s:3:\"url\";s:33:\"/civicrm/admin/setting/uf?reset=1\";s:4:\"icon\";s:18:\"admin/small/36.png\";s:5:\"extra\";N;}s:36:\"{weight}.Safe File Extension Options\";a:6:{s:5:\"title\";s:27:\"Safe File Extension Options\";s:4:\"desc\";s:44:\"File Extensions that can be considered safe.\";s:2:\"id\";s:24:\"SafeFileExtensionOptions\";s:3:\"url\";s:50:\"/civicrm/admin/options/safe_file_extension?reset=1\";s:4:\"icon\";s:18:\"admin/small/01.png\";s:5:\"extra\";N;}s:22:\"{weight}.Option Groups\";a:6:{s:5:\"title\";s:13:\"Option Groups\";s:4:\"desc\";s:35:\"Access all meta-data option groups.\";s:2:\"id\";s:12:\"OptionGroups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";s:4:\"icon\";s:18:\"admin/small/01.png\";s:5:\"extra\";N;}s:31:\"{weight}.Import/Export Mappings\";a:6:{s:5:\"title\";s:22:\"Import/Export Mappings\";s:4:\"desc\";s:141:\"Import and Export mappings allow you to easily run the same job multiple times. This option allows you to rename or delete existing mappings.\";s:2:\"id\";s:21:\"Import_ExportMappings\";s:3:\"url\";s:30:\"/civicrm/admin/mapping?reset=1\";s:4:\"icon\";s:33:\"admin/small/import_export_map.png\";s:5:\"extra\";N;}s:18:\"{weight}.Debugging\";a:6:{s:5:\"title\";s:9:\"Debugging\";s:4:\"desc\";N;s:2:\"id\";s:9:\"Debugging\";s:3:\"url\";s:36:\"/civicrm/admin/setting/debug?reset=1\";s:4:\"icon\";s:18:\"admin/small/36.png\";s:5:\"extra\";N;}s:28:\"{weight}.Multi Site Settings\";a:6:{s:5:\"title\";s:19:\"Multi Site Settings\";s:4:\"desc\";N;s:2:\"id\";s:17:\"MultiSiteSettings\";s:3:\"url\";s:52:\"/civicrm/admin/setting/preferences/multisite?reset=1\";s:4:\"icon\";s:18:\"admin/small/36.png\";s:5:\"extra\";N;}s:23:\"{weight}.Scheduled Jobs\";a:6:{s:5:\"title\";s:14:\"Scheduled Jobs\";s:4:\"desc\";s:35:\"Managing periodially running tasks.\";s:2:\"id\";s:13:\"ScheduledJobs\";s:3:\"url\";s:26:\"/civicrm/admin/job?reset=1\";s:4:\"icon\";s:18:\"admin/small/13.png\";s:5:\"extra\";N;}s:22:\"{weight}.Sms Providers\";a:6:{s:5:\"title\";s:13:\"Sms Providers\";s:4:\"desc\";s:27:\"To configure a sms provider\";s:2:\"id\";s:12:\"SmsProviders\";s:3:\"url\";s:35:\"/civicrm/admin/sms/provider?reset=1\";s:4:\"icon\";s:18:\"admin/small/36.png\";s:5:\"extra\";N;}}s:9:\"perColumn\";d:9;}s:12:\"CiviCampaign\";a:3:{s:12:\"component_id\";N;s:6:\"fields\";a:5:{s:40:\"{weight}.CiviCampaign Component Settings\";a:6:{s:5:\"title\";s:31:\"CiviCampaign Component Settings\";s:4:\"desc\";s:40:\"Configure global CiviCampaign behaviors.\";s:2:\"id\";s:29:\"CiviCampaignComponentSettings\";s:3:\"url\";s:51:\"/civicrm/admin/setting/preferences/campaign?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:21:\"{weight}.Survey Types\";a:6:{s:5:\"title\";s:12:\"Survey Types\";s:4:\"desc\";N;s:2:\"id\";s:11:\"SurveyTypes\";s:3:\"url\";s:42:\"/civicrm/admin/campaign/surveyType?reset=1\";s:4:\"icon\";s:18:\"admin/small/05.png\";s:5:\"extra\";N;}s:23:\"{weight}.Campaign Types\";a:6:{s:5:\"title\";s:14:\"Campaign Types\";s:4:\"desc\";s:47:\"categorize your campaigns using campaign types.\";s:2:\"id\";s:13:\"CampaignTypes\";s:3:\"url\";s:44:\"/civicrm/admin/options/campaign_type?reset=1\";s:4:\"icon\";s:18:\"admin/small/05.png\";s:5:\"extra\";N;}s:24:\"{weight}.Campaign Status\";a:6:{s:5:\"title\";s:15:\"Campaign Status\";s:4:\"desc\";s:34:\"Define statuses for campaign here.\";s:2:\"id\";s:14:\"CampaignStatus\";s:3:\"url\";s:46:\"/civicrm/admin/options/campaign_status?reset=1\";s:4:\"icon\";s:18:\"admin/small/05.png\";s:5:\"extra\";N;}s:25:\"{weight}.Engagement Index\";a:6:{s:5:\"title\";s:16:\"Engagement Index\";s:4:\"desc\";s:18:\"Engagement levels.\";s:2:\"id\";s:15:\"EngagementIndex\";s:3:\"url\";s:47:\"/civicrm/admin/options/engagement_index?reset=1\";s:4:\"icon\";s:18:\"admin/small/05.png\";s:5:\"extra\";N;}}s:9:\"perColumn\";d:3;}s:9:\"CiviEvent\";a:3:{s:12:\"component_id\";N;s:6:\"fields\";a:9:{s:37:\"{weight}.CiviEvent Component Settings\";a:6:{s:5:\"title\";s:28:\"CiviEvent Component Settings\";s:4:\"desc\";s:37:\"Configure global CiviEvent behaviors.\";s:2:\"id\";s:26:\"CiviEventComponentSettings\";s:3:\"url\";s:48:\"/civicrm/admin/setting/preferences/event?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:33:\"{weight}.Event Name Badge Layouts\";a:6:{s:5:\"title\";s:24:\"Event Name Badge Layouts\";s:4:\"desc\";s:107:\"Configure name badge layouts for event participants, including logos and what data to include on the badge.\";s:2:\"id\";s:21:\"EventNameBadgeLayouts\";s:3:\"url\";s:52:\"/civicrm/admin/badgelayout?action=browse&reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:22:\"{weight}.Manage Events\";a:6:{s:5:\"title\";s:13:\"Manage Events\";s:4:\"desc\";s:136:\"Create and edit event configuration including times, locations, online registration forms, and fees. Links for iCal and RSS syndication.\";s:2:\"id\";s:12:\"ManageEvents\";s:3:\"url\";s:28:\"/civicrm/admin/event?reset=1\";s:4:\"icon\";s:28:\"admin/small/event_manage.png\";s:5:\"extra\";N;}s:24:\"{weight}.Event Templates\";a:6:{s:5:\"title\";s:15:\"Event Templates\";s:4:\"desc\";s:115:\"Administrators can create Event Templates - which are basically master event records pre-filled with default values\";s:2:\"id\";s:14:\"EventTemplates\";s:3:\"url\";s:36:\"/civicrm/admin/eventTemplate?reset=1\";s:4:\"icon\";s:24:\"admin/small/template.png\";s:5:\"extra\";N;}s:20:\"{weight}.Event Types\";a:6:{s:5:\"title\";s:11:\"Event Types\";s:4:\"desc\";s:143:\"Use Event Types to categorize your events. Event feeds can be filtered by Event Type and participant searches can use Event Type as a criteria.\";s:2:\"id\";s:10:\"EventTypes\";s:3:\"url\";s:41:\"/civicrm/admin/options/event_type?reset=1\";s:4:\"icon\";s:26:\"admin/small/event_type.png\";s:5:\"extra\";N;}s:27:\"{weight}.Participant Status\";a:6:{s:5:\"title\";s:18:\"Participant Status\";s:4:\"desc\";s:154:\"Define statuses for event participants here (e.g. Registered, Attended, Cancelled...). You can then assign statuses and search for participants by status.\";s:2:\"id\";s:17:\"ParticipantStatus\";s:3:\"url\";s:41:\"/civicrm/admin/participant_status?reset=1\";s:4:\"icon\";s:28:\"admin/small/parti_status.png\";s:5:\"extra\";N;}s:25:\"{weight}.Participant Role\";a:6:{s:5:\"title\";s:16:\"Participant Role\";s:4:\"desc\";s:138:\"Define participant roles for events here (e.g. Attendee, Host, Speaker...). You can then assign roles and search for participants by role.\";s:2:\"id\";s:15:\"ParticipantRole\";s:3:\"url\";s:47:\"/civicrm/admin/options/participant_role?reset=1\";s:4:\"icon\";s:26:\"admin/small/parti_role.png\";s:5:\"extra\";N;}s:38:\"{weight}.Participant Listing Templates\";a:6:{s:5:\"title\";s:29:\"Participant Listing Templates\";s:4:\"desc\";s:48:\"Template to control participant listing display.\";s:2:\"id\";s:27:\"ParticipantListingTemplates\";s:3:\"url\";s:50:\"/civicrm/admin/options/participant_listing?reset=1\";s:4:\"icon\";s:18:\"admin/small/01.png\";s:5:\"extra\";N;}s:31:\"{weight}.Conference Slot Labels\";a:6:{s:5:\"title\";s:22:\"Conference Slot Labels\";s:4:\"desc\";s:35:\"Define conference slots and labels.\";s:2:\"id\";s:20:\"ConferenceSlotLabels\";s:3:\"url\";s:65:\"/civicrm/admin/conference_slots?group=conference_slot&reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}}s:9:\"perColumn\";d:5;}s:8:\"CiviMail\";a:3:{s:12:\"component_id\";N;s:6:\"fields\";a:5:{s:36:\"{weight}.CiviMail Component Settings\";a:6:{s:5:\"title\";s:27:\"CiviMail Component Settings\";s:4:\"desc\";s:36:\"Configure global CiviMail behaviors.\";s:2:\"id\";s:25:\"CiviMailComponentSettings\";s:3:\"url\";s:50:\"/civicrm/admin/setting/preferences/mailing?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:24:\"{weight}.Mailer Settings\";a:6:{s:5:\"title\";s:15:\"Mailer Settings\";s:4:\"desc\";s:61:\"Configure spool period, throttling and other mailer settings.\";s:2:\"id\";s:14:\"MailerSettings\";s:3:\"url\";s:27:\"/civicrm/admin/mail?reset=1\";s:4:\"icon\";s:18:\"admin/small/07.png\";s:5:\"extra\";N;}s:49:\"{weight}.Headers, Footers, and Automated Messages\";a:6:{s:5:\"title\";s:40:\"Headers, Footers, and Automated Messages\";s:4:\"desc\";s:143:\"Configure the header and footer used for mailings. Customize the content of automated Subscribe, Unsubscribe, Resubscribe and Opt-out messages.\";s:2:\"id\";s:36:\"Headers_Footers_andAutomatedMessages\";s:3:\"url\";s:32:\"/civicrm/admin/component?reset=1\";s:4:\"icon\";s:23:\"admin/small/Profile.png\";s:5:\"extra\";N;}s:29:\"{weight}.From Email Addresses\";a:6:{s:5:\"title\";s:20:\"From Email Addresses\";s:4:\"desc\";s:74:\"List of Email Addresses which can be used when sending emails to contacts.\";s:2:\"id\";s:18:\"FromEmailAddresses\";s:3:\"url\";s:58:\"/civicrm/admin/options/from_email_address/civimail?reset=1\";s:4:\"icon\";s:21:\"admin/small/title.png\";s:5:\"extra\";N;}s:22:\"{weight}.Mail Accounts\";a:6:{s:5:\"title\";s:13:\"Mail Accounts\";s:4:\"desc\";s:32:\"Configure email account setting.\";s:2:\"id\";s:12:\"MailAccounts\";s:3:\"url\";s:35:\"/civicrm/admin/mailSettings?reset=1\";s:4:\"icon\";s:18:\"admin/small/07.png\";s:5:\"extra\";N;}}s:9:\"perColumn\";d:3;}s:10:\"CiviMember\";a:3:{s:12:\"component_id\";N;s:6:\"fields\";a:3:{s:38:\"{weight}.CiviMember Component Settings\";a:6:{s:5:\"title\";s:29:\"CiviMember Component Settings\";s:4:\"desc\";s:38:\"Configure global CiviMember behaviors.\";s:2:\"id\";s:27:\"CiviMemberComponentSettings\";s:3:\"url\";s:49:\"/civicrm/admin/setting/preferences/member?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:25:\"{weight}.Membership Types\";a:6:{s:5:\"title\";s:16:\"Membership Types\";s:4:\"desc\";s:174:\"Define the types of memberships you want to offer. For each type, you can specify a \'name\' (Gold Member, Honor Society Member...), a description, duration, and a minimum fee.\";s:2:\"id\";s:15:\"MembershipTypes\";s:3:\"url\";s:44:\"/civicrm/admin/member/membershipType?reset=1\";s:4:\"icon\";s:31:\"admin/small/membership_type.png\";s:5:\"extra\";N;}s:32:\"{weight}.Membership Status Rules\";a:6:{s:5:\"title\";s:23:\"Membership Status Rules\";s:4:\"desc\";s:187:\"Status \'rules\' define the current status for a membership based on that membership\'s start and end dates. You can adjust the default status options and rules as needed to meet your needs.\";s:2:\"id\";s:21:\"MembershipStatusRules\";s:3:\"url\";s:46:\"/civicrm/admin/member/membershipStatus?reset=1\";s:4:\"icon\";s:33:\"admin/small/membership_status.png\";s:5:\"extra\";N;}}s:9:\"perColumn\";d:2;}s:12:\"Option Lists\";a:3:{s:12:\"component_id\";N;s:6:\"fields\";a:1:{s:20:\"{weight}.Grant Types\";a:6:{s:5:\"title\";s:11:\"Grant Types\";s:4:\"desc\";s:148:\"List of types which can be assigned to Grants. (Enable CiviGrant from Administer > Systme Settings > Enable Components if you want to track grants.)\";s:2:\"id\";s:10:\"GrantTypes\";s:3:\"url\";s:41:\"/civicrm/admin/options/grant_type?reset=1\";s:4:\"icon\";s:26:\"admin/small/grant_type.png\";s:5:\"extra\";N;}}s:9:\"perColumn\";d:1;}s:9:\"Customize\";a:3:{s:12:\"component_id\";N;s:6:\"fields\";a:1:{s:19:\"{weight}.Price Sets\";a:6:{s:5:\"title\";s:10:\"Price Sets\";s:4:\"desc\";s:205:\"Price sets allow you to offer multiple options with associated fees (e.g. pre-conference workshops, additional meals, etc.). Configure Price Sets for events which need more than a single set of fee levels.\";s:2:\"id\";s:9:\"PriceSets\";s:3:\"url\";s:28:\"/civicrm/admin/price?reset=1\";s:4:\"icon\";s:26:\"admin/small/price_sets.png\";s:5:\"extra\";N;}}s:9:\"perColumn\";d:1;}s:14:\"CiviContribute\";a:3:{s:12:\"component_id\";N;s:6:\"fields\";a:9:{s:32:\"{weight}.Personal Campaign Pages\";a:6:{s:5:\"title\";s:23:\"Personal Campaign Pages\";s:4:\"desc\";s:49:\"View and manage existing personal campaign pages.\";s:2:\"id\";s:21:\"PersonalCampaignPages\";s:3:\"url\";s:49:\"/civicrm/admin/pcp?context=contribute&reset=1\";s:4:\"icon\";s:34:\"admin/small/contribution_types.png\";s:5:\"extra\";N;}s:34:\"{weight}.Manage Contribution Pages\";a:6:{s:5:\"title\";s:25:\"Manage Contribution Pages\";s:4:\"desc\";s:242:\"CiviContribute allows you to create and maintain any number of Online Contribution Pages. You can create different pages for different programs or campaigns - and customize text, amounts, types of information collected from contributors, etc.\";s:2:\"id\";s:23:\"ManageContributionPages\";s:3:\"url\";s:33:\"/civicrm/admin/contribute?reset=1\";s:4:\"icon\";s:41:\"admin/small/online_contribution_pages.png\";s:5:\"extra\";N;}s:24:\"{weight}.Manage Premiums\";a:6:{s:5:\"title\";s:15:\"Manage Premiums\";s:4:\"desc\";s:175:\"CiviContribute allows you to configure any number of Premiums which can be offered to contributors as incentives / thank-you gifts. Define the premiums you want to offer here.\";s:2:\"id\";s:14:\"ManagePremiums\";s:3:\"url\";s:48:\"/civicrm/admin/contribute/managePremiums?reset=1\";s:4:\"icon\";s:24:\"admin/small/Premiums.png\";s:5:\"extra\";N;}s:24:\"{weight}.Financial Types\";a:6:{s:5:\"title\";s:15:\"Financial Types\";s:4:\"desc\";s:64:\"Formerly civicrm_contribution_type merged into this table in 4.1\";s:2:\"id\";s:14:\"FinancialTypes\";s:3:\"url\";s:46:\"/civicrm/admin/financial/financialType?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:27:\"{weight}.Financial Accounts\";a:6:{s:5:\"title\";s:18:\"Financial Accounts\";s:4:\"desc\";s:128:\"Financial types are used to categorize contributions for reporting and accounting purposes. These are also referred to as Funds.\";s:2:\"id\";s:17:\"FinancialAccounts\";s:3:\"url\";s:49:\"/civicrm/admin/financial/financialAccount?reset=1\";s:4:\"icon\";s:34:\"admin/small/contribution_types.png\";s:5:\"extra\";N;}s:24:\"{weight}.Payment Methods\";a:6:{s:5:\"title\";s:15:\"Payment Methods\";s:4:\"desc\";s:224:\"You may choose to record the payment instrument used for each contribution. Common payment methods are installed by default (e.g. Check, Cash, Credit Card...). If your site requires additional payment methods, add them here.\";s:2:\"id\";s:14:\"PaymentMethods\";s:3:\"url\";s:49:\"/civicrm/admin/options/payment_instrument?reset=1\";s:4:\"icon\";s:35:\"admin/small/payment_instruments.png\";s:5:\"extra\";N;}s:30:\"{weight}.Accepted Credit Cards\";a:6:{s:5:\"title\";s:21:\"Accepted Credit Cards\";s:4:\"desc\";s:94:\"Credit card options that will be offered to contributors using your Online Contribution pages.\";s:2:\"id\";s:19:\"AcceptedCreditCards\";s:3:\"url\";s:48:\"/civicrm/admin/options/accept_creditcard?reset=1\";s:4:\"icon\";s:36:\"admin/small/accepted_creditcards.png\";s:5:\"extra\";N;}s:26:\"{weight}.Soft Credit Types\";a:6:{s:5:\"title\";s:17:\"Soft Credit Types\";s:4:\"desc\";s:86:\"Soft Credit Types that will be offered to contributors during soft credit contribution\";s:2:\"id\";s:15:\"SoftCreditTypes\";s:3:\"url\";s:47:\"/civicrm/admin/options/soft_credit_type?reset=1\";s:4:\"icon\";s:32:\"admin/small/soft_credit_type.png\";s:5:\"extra\";N;}s:42:\"{weight}.CiviContribute Component Settings\";a:6:{s:5:\"title\";s:33:\"CiviContribute Component Settings\";s:4:\"desc\";s:42:\"Configure global CiviContribute behaviors.\";s:2:\"id\";s:31:\"CiviContributeComponentSettings\";s:3:\"url\";s:53:\"/civicrm/admin/setting/preferences/contribute?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}}s:9:\"perColumn\";d:5;}s:8:\"CiviCase\";a:3:{s:12:\"component_id\";N;s:6:\"fields\";a:5:{s:26:\"{weight}.CiviCase Settings\";a:6:{s:5:\"title\";s:17:\"CiviCase Settings\";s:4:\"desc\";N;s:2:\"id\";s:16:\"CiviCaseSettings\";s:3:\"url\";s:35:\"/civicrm/admin/setting/case?reset=1\";s:4:\"icon\";s:18:\"admin/small/36.png\";s:5:\"extra\";N;}s:19:\"{weight}.Case Types\";a:6:{s:5:\"title\";s:10:\"Case Types\";s:4:\"desc\";s:137:\"List of types which can be assigned to Cases. (Enable the Cases tab from System Settings - Enable Components if you want to track cases.)\";s:2:\"id\";s:9:\"CaseTypes\";s:3:\"url\";s:40:\"/civicrm/admin/options/case_type?reset=1\";s:4:\"icon\";s:25:\"admin/small/case_type.png\";s:5:\"extra\";N;}s:24:\"{weight}.Redaction Rules\";a:6:{s:5:\"title\";s:15:\"Redaction Rules\";s:4:\"desc\";s:223:\"List of rules which can be applied to user input strings so that the redacted output can be recognized as repeated instances of the same string or can be identified as a \"semantic type of the data element\" within case data.\";s:2:\"id\";s:14:\"RedactionRules\";s:3:\"url\";s:45:\"/civicrm/admin/options/redaction_rule?reset=1\";s:4:\"icon\";s:30:\"admin/small/redaction_type.png\";s:5:\"extra\";N;}s:22:\"{weight}.Case Statuses\";a:6:{s:5:\"title\";s:13:\"Case Statuses\";s:4:\"desc\";s:48:\"List of statuses that can be assigned to a case.\";s:2:\"id\";s:12:\"CaseStatuses\";s:3:\"url\";s:42:\"/civicrm/admin/options/case_status?reset=1\";s:4:\"icon\";s:25:\"admin/small/case_type.png\";s:5:\"extra\";N;}s:26:\"{weight}.Encounter Mediums\";a:6:{s:5:\"title\";s:17:\"Encounter Mediums\";s:4:\"desc\";s:26:\"List of encounter mediums.\";s:2:\"id\";s:16:\"EncounterMediums\";s:3:\"url\";s:47:\"/civicrm/admin/options/encounter_medium?reset=1\";s:4:\"icon\";s:25:\"admin/small/case_type.png\";s:5:\"extra\";N;}}s:9:\"perColumn\";d:3;}s:10:\"CiviReport\";a:3:{s:12:\"component_id\";N;s:6:\"fields\";a:3:{s:40:\"{weight}.Create New Report from Template\";a:6:{s:5:\"title\";s:31:\"Create New Report from Template\";s:4:\"desc\";s:49:\"Component wise listing of all available templates\";s:2:\"id\";s:27:\"CreateNewReportfromTemplate\";s:3:\"url\";s:43:\"/civicrm/admin/report/template/list?reset=1\";s:4:\"icon\";s:31:\"admin/small/report_template.gif\";s:5:\"extra\";N;}s:25:\"{weight}.Manage Templates\";a:6:{s:5:\"title\";s:16:\"Manage Templates\";s:4:\"desc\";s:45:\"Browse, Edit and Delete the Report templates.\";s:2:\"id\";s:15:\"ManageTemplates\";s:3:\"url\";s:53:\"/civicrm/admin/report/options/report_template?reset=1\";s:4:\"icon\";s:24:\"admin/small/template.png\";s:5:\"extra\";N;}s:24:\"{weight}.Reports Listing\";a:6:{s:5:\"title\";s:15:\"Reports Listing\";s:4:\"desc\";s:60:\"Browse existing report, change report criteria and settings.\";s:2:\"id\";s:14:\"ReportsListing\";s:3:\"url\";s:34:\"/civicrm/admin/report/list?reset=1\";s:4:\"icon\";s:27:\"admin/small/report_list.gif\";s:5:\"extra\";N;}}s:9:\"perColumn\";d:2;}}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,1,NULL,'a:0:{}'); +INSERT INTO `civicrm_menu` (`id`, `domain_id`, `path`, `path_arguments`, `title`, `access_callback`, `access_arguments`, `page_callback`, `page_arguments`, `breadcrumb`, `return_url`, `return_url_args`, `component_id`, `is_active`, `is_public`, `is_exposed`, `is_ssl`, `weight`, `type`, `page_type`, `skipBreadcrumb`, `module_data`) VALUES (1,1,'civicrm/activity','action=add&context=standalone','New Activity','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Activity_Form_Activity\";','s:14:\"attachUpload=1\";','a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(2,1,'civicrm/activity/view',NULL,'View Activity','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:30:\"CRM_Activity_Form_ActivityView\";','s:14:\"attachUpload=1\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:12:\"New Activity\";s:3:\"url\";s:94:\"/civicrm-master/index.php?q=civicrm/activity&reset=1&action=add&context=standalone\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(3,1,'civicrm/ajax/activity',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:22:\"CRM_Activity_Page_AJAX\";i:1;s:15:\"getCaseActivity\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(4,1,'civicrm/ajax/globalrelationships',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:22:\"CRM_Activity_Page_AJAX\";i:1;s:26:\"getCaseGlobalRelationships\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(5,1,'civicrm/ajax/clientrelationships',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:22:\"CRM_Activity_Page_AJAX\";i:1;s:26:\"getCaseClientRelationships\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(6,1,'civicrm/ajax/caseroles',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:22:\"CRM_Activity_Page_AJAX\";i:1;s:12:\"getCaseRoles\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(7,1,'civicrm/ajax/contactactivity',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:22:\"CRM_Activity_Page_AJAX\";i:1;s:18:\"getContactActivity\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(8,1,'civicrm/ajax/activity/convert',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:22:\"CRM_Activity_Page_AJAX\";i:1;s:21:\"convertToCaseActivity\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,3,NULL,'a:0:{}'),(9,1,'civicrm/activity/search',NULL,'Find Activities','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:30:\"CRM_Activity_Controller_Search\";','s:14:\"attachUpload=1\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:12:\"New Activity\";s:3:\"url\";s:94:\"/civicrm-master/index.php?q=civicrm/activity&reset=1&action=add&context=standalone\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(10,1,'civicrm/admin/custom/group',NULL,'Custom Data','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:21:\"CRM_Custom_Page_Group\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/admin&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,10,1,0,NULL,'a:3:{s:4:\"desc\";s:109:\"Configure custom fields to collect and store custom data which is not included in the standard CiviCRM forms.\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";s:4:\"icon\";s:26:\"admin/small/custm_data.png\";}'),(11,1,'civicrm/admin/custom/group/field',NULL,'Custom Data Fields','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:21:\"CRM_Custom_Page_Field\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/admin&reset=1\";}i:2;a:2:{s:5:\"title\";s:11:\"Custom Data\";s:3:\"url\";s:66:\"/civicrm-master/index.php?q=civicrm/admin/custom/group&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,11,1,0,0,'a:0:{}'),(12,1,'civicrm/admin/custom/group/field/option',NULL,'Custom Field - Options','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Custom_Page_Option\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/admin&reset=1\";}i:2;a:2:{s:5:\"title\";s:11:\"Custom Data\";s:3:\"url\";s:66:\"/civicrm-master/index.php?q=civicrm/admin/custom/group&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,1,1,0,NULL,'a:0:{}'),(13,1,'civicrm/admin/custom/group/field/add',NULL,'Custom Field - Add','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:21:\"CRM_Custom_Form_Field\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/admin&reset=1\";}i:2;a:2:{s:5:\"title\";s:11:\"Custom Data\";s:3:\"url\";s:66:\"/civicrm-master/index.php?q=civicrm/admin/custom/group&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,1,1,0,NULL,'a:0:{}'),(14,1,'civicrm/admin/custom/group/field/update',NULL,'Custom Field - Edit','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:21:\"CRM_Custom_Form_Field\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/admin&reset=1\";}i:2;a:2:{s:5:\"title\";s:11:\"Custom Data\";s:3:\"url\";s:66:\"/civicrm-master/index.php?q=civicrm/admin/custom/group&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,1,1,0,NULL,'a:0:{}'),(15,1,'civicrm/admin/custom/group/field/move',NULL,'Custom Field - Move','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:25:\"CRM_Custom_Form_MoveField\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/admin&reset=1\";}i:2;a:2:{s:5:\"title\";s:11:\"Custom Data\";s:3:\"url\";s:66:\"/civicrm-master/index.php?q=civicrm/admin/custom/group&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,1,1,0,NULL,'a:0:{}'),(16,1,'civicrm/admin/custom/group/field/changetype',NULL,'Custom Field - Change Type','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:31:\"CRM_Custom_Form_ChangeFieldType\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/admin&reset=1\";}i:2;a:2:{s:5:\"title\";s:11:\"Custom Data\";s:3:\"url\";s:66:\"/civicrm-master/index.php?q=civicrm/admin/custom/group&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,1,1,0,NULL,'a:0:{}'),(17,1,'civicrm/admin/uf/group',NULL,'Profiles','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:17:\"CRM_UF_Page_Group\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/admin&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,20,1,0,NULL,'a:3:{s:4:\"desc\";s:151:\"Profiles allow you to aggregate groups of fields and include them in your site as input forms, contact display pages, and search and listings features.\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";s:4:\"icon\";s:23:\"admin/small/Profile.png\";}'),(18,1,'civicrm/admin/uf/group/field',NULL,'CiviCRM Profile Fields','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:17:\"CRM_UF_Page_Field\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/admin&reset=1\";}i:2;a:2:{s:5:\"title\";s:8:\"Profiles\";s:3:\"url\";s:62:\"/civicrm-master/index.php?q=civicrm/admin/uf/group&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,21,1,0,0,'a:0:{}'),(19,1,'civicrm/admin/uf/group/field/add',NULL,'Add Field','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:17:\"CRM_UF_Form_Field\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/admin&reset=1\";}i:2;a:2:{s:5:\"title\";s:8:\"Profiles\";s:3:\"url\";s:62:\"/civicrm-master/index.php?q=civicrm/admin/uf/group&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,22,1,0,NULL,'a:0:{}'),(20,1,'civicrm/admin/uf/group/field/update',NULL,'Edit Field','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:17:\"CRM_UF_Form_Field\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/admin&reset=1\";}i:2;a:2:{s:5:\"title\";s:8:\"Profiles\";s:3:\"url\";s:62:\"/civicrm-master/index.php?q=civicrm/admin/uf/group&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,23,1,0,NULL,'a:0:{}'),(21,1,'civicrm/admin/uf/group/add',NULL,'New CiviCRM Profile','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:17:\"CRM_UF_Form_Group\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/admin&reset=1\";}i:2;a:2:{s:5:\"title\";s:8:\"Profiles\";s:3:\"url\";s:62:\"/civicrm-master/index.php?q=civicrm/admin/uf/group&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,24,1,0,NULL,'a:0:{}'),(22,1,'civicrm/admin/uf/group/update',NULL,'Profile Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:17:\"CRM_UF_Form_Group\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/admin&reset=1\";}i:2;a:2:{s:5:\"title\";s:8:\"Profiles\";s:3:\"url\";s:62:\"/civicrm-master/index.php?q=civicrm/admin/uf/group&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,25,1,0,NULL,'a:0:{}'),(23,1,'civicrm/admin/uf/group/setting',NULL,'AdditionalInfo Form','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_UF_Form_AdvanceSetting\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/admin&reset=1\";}i:2;a:2:{s:5:\"title\";s:8:\"Profiles\";s:3:\"url\";s:62:\"/civicrm-master/index.php?q=civicrm/admin/uf/group&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,0,1,0,NULL,'a:0:{}'),(24,1,'civicrm/admin/options/activity_type',NULL,'Activity Types','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/admin&reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:61:\"/civicrm-master/index.php?q=civicrm/admin/options&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,30,1,0,NULL,'a:3:{s:4:\"desc\";s:155:\"CiviCRM has several built-in activity types (meetings, phone calls, emails sent). Track other types of interactions by creating custom activity types here.\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";s:4:\"icon\";s:18:\"admin/small/05.png\";}'),(25,1,'civicrm/admin/reltype',NULL,'Relationship Types','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:31:\"CRM_Admin_Page_RelationshipType\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/admin&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,35,1,0,NULL,'a:3:{s:4:\"desc\";s:148:\"Contacts can be linked to each other through Relationships (e.g. Spouse, Employer, etc.). Define the types of relationships you want to record here.\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";s:4:\"icon\";s:25:\"admin/small/rela_type.png\";}'),(26,1,'civicrm/admin/options/subtype',NULL,'Contact Types','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Admin_Page_ContactType\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/admin&reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:61:\"/civicrm-master/index.php?q=civicrm/admin/options&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,40,1,0,NULL,'a:2:{s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";s:4:\"icon\";s:18:\"admin/small/09.png\";}'),(27,1,'civicrm/admin/options/gender',NULL,'Gender Options','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/admin&reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:61:\"/civicrm-master/index.php?q=civicrm/admin/options&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,45,1,0,NULL,'a:3:{s:4:\"desc\";s:79:\"Options for assigning gender to individual contacts (e.g. Male, Female, Other).\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";s:4:\"icon\";s:18:\"admin/small/01.png\";}'),(28,1,'civicrm/admin/options/individual_prefix',NULL,'Individual Prefixes (Ms, Mr...)','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/admin&reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:61:\"/civicrm-master/index.php?q=civicrm/admin/options&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,50,1,0,NULL,'a:3:{s:4:\"desc\";s:66:\"Options for individual contact prefixes (e.g. Ms., Mr., Dr. etc.).\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";s:4:\"icon\";s:21:\"admin/small/title.png\";}'),(29,1,'civicrm/admin/options/individual_suffix',NULL,'Individual Suffixes (Jr, Sr...)','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/admin&reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:61:\"/civicrm-master/index.php?q=civicrm/admin/options&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,55,1,0,NULL,'a:3:{s:4:\"desc\";s:61:\"Options for individual contact suffixes (e.g. Jr., Sr. etc.).\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";s:4:\"icon\";s:18:\"admin/small/10.png\";}'),(30,1,'civicrm/admin/locationType',NULL,'Location Types (Home, Work...)','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:27:\"CRM_Admin_Page_LocationType\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/admin&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,60,1,0,NULL,'a:3:{s:4:\"desc\";s:94:\"Options for categorizing contact addresses and phone numbers (e.g. Home, Work, Billing, etc.).\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";s:4:\"icon\";s:18:\"admin/small/13.png\";}'),(31,1,'civicrm/admin/options/website_type',NULL,'Website Types','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/admin&reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:61:\"/civicrm-master/index.php?q=civicrm/admin/options&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,65,1,0,NULL,'a:2:{s:4:\"desc\";s:48:\"Options for assigning website types to contacts.\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'),(32,1,'civicrm/admin/options/instant_messenger_service',NULL,'Instant Messenger Services','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/admin&reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:61:\"/civicrm-master/index.php?q=civicrm/admin/options&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,70,1,0,NULL,'a:3:{s:4:\"desc\";s:79:\"List of IM services which can be used when recording screen-names for contacts.\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";s:4:\"icon\";s:18:\"admin/small/07.png\";}'),(33,1,'civicrm/admin/options/mobile_provider',NULL,'Mobile Phone Providers','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/admin&reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:61:\"/civicrm-master/index.php?q=civicrm/admin/options&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,75,1,0,NULL,'a:3:{s:4:\"desc\";s:90:\"List of mobile phone providers which can be assigned when recording contact phone numbers.\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";s:4:\"icon\";s:18:\"admin/small/08.png\";}'),(34,1,'civicrm/admin/options/phone_type',NULL,'Phone Type','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/admin&reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:61:\"/civicrm-master/index.php?q=civicrm/admin/options&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,80,1,0,NULL,'a:3:{s:4:\"desc\";s:80:\"Options for assigning phone type to contacts (e.g Phone,\n Mobile, Fax, Pager)\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";s:4:\"icon\";s:7:\"tel.gif\";}'),(35,1,'civicrm/admin/setting/preferences/display',NULL,'Display Preferences','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:34:\"CRM_Admin_Form_Preferences_Display\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/admin&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,90,1,0,NULL,'a:2:{s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";s:4:\"icon\";s:18:\"admin/small/36.png\";}'),(36,1,'civicrm/admin/setting/search',NULL,'Search Preferences','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:29:\"CRM_Admin_Form_Setting_Search\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/admin&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,95,1,0,NULL,'a:2:{s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";s:4:\"icon\";s:18:\"admin/small/36.png\";}'),(37,1,'civicrm/admin/setting/preferences/date',NULL,'View Date Preferences','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:30:\"CRM_Admin_Page_PreferencesDate\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/admin&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,1,1,0,NULL,'a:0:{}'),(38,1,'civicrm/admin/menu',NULL,'Navigation Menu','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:25:\"CRM_Admin_Page_Navigation\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/admin&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,100,1,0,NULL,'a:3:{s:4:\"desc\";s:79:\"Add or remove menu items, and modify the order of items on the navigation menu.\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";s:4:\"icon\";s:24:\"admin/small/template.png\";}'),(39,1,'civicrm/admin/options/wordreplacements',NULL,'Word Replacements','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:31:\"CRM_Admin_Form_WordReplacements\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/admin&reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:61:\"/civicrm-master/index.php?q=civicrm/admin/options&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,105,1,0,NULL,'a:2:{s:4:\"desc\";s:18:\"Word Replacements.\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'),(40,1,'civicrm/admin/options/custom_search',NULL,'Manage Custom Searches','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/admin&reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:61:\"/civicrm-master/index.php?q=civicrm/admin/options&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,110,1,0,NULL,'a:3:{s:4:\"desc\";s:225:\"Developers and accidental techies with a bit of PHP and SQL knowledge can create new search forms to handle specific search and reporting needs which aren\'t covered by the built-in Advanced Search and Search Builder features.\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";s:4:\"icon\";s:24:\"admin/small/template.png\";}'),(41,1,'civicrm/admin/domain','action=update','Organization Address and Contact Info','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:23:\"CRM_Contact_Form_Domain\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/admin&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,10,1,0,NULL,'a:3:{s:4:\"desc\";s:150:\"Configure primary contact name, email, return-path and address information. This information is used by CiviMail to identify the sending organization.\";s:10:\"adminGroup\";s:14:\"Communications\";s:4:\"icon\";s:22:\"admin/small/domain.png\";}'),(42,1,'civicrm/admin/options/from_email_address',NULL,'From Email Addresses','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/admin&reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:61:\"/civicrm-master/index.php?q=civicrm/admin/options&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,20,1,0,NULL,'a:3:{s:4:\"desc\";s:74:\"List of Email Addresses which can be used when sending emails to contacts.\";s:10:\"adminGroup\";s:14:\"Communications\";s:4:\"icon\";s:21:\"admin/small/title.png\";}'),(43,1,'civicrm/admin/messageTemplates',NULL,'Message Templates','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:22:\"edit message templates\";}i:1;s:3:\"and\";}','s:31:\"CRM_Admin_Page_MessageTemplates\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/admin&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,30,1,0,NULL,'a:3:{s:4:\"desc\";s:130:\"Message templates allow you to save and re-use messages with layouts which you can use when sending email to one or more contacts.\";s:10:\"adminGroup\";s:14:\"Communications\";s:4:\"icon\";s:24:\"admin/small/template.png\";}'),(44,1,'civicrm/admin/messageTemplates/add',NULL,'Message Templates','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:22:\"edit message templates\";}i:1;s:3:\"and\";}','s:31:\"CRM_Admin_Form_MessageTemplates\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/admin&reset=1\";}i:2;a:2:{s:5:\"title\";s:17:\"Message Templates\";s:3:\"url\";s:70:\"/civicrm-master/index.php?q=civicrm/admin/messageTemplates&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,262,1,0,NULL,'a:1:{s:4:\"desc\";s:26:\"Add/Edit Message Templates\";}'),(45,1,'civicrm/admin/scheduleReminders',NULL,'Schedule Reminders','s:1:\"1\";','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:15:\"edit all events\";}i:1;s:2:\"or\";}','s:32:\"CRM_Admin_Page_ScheduleReminders\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/admin&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,40,1,0,NULL,'a:3:{s:4:\"desc\";s:19:\"Schedule Reminders.\";s:10:\"adminGroup\";s:14:\"Communications\";s:4:\"icon\";s:24:\"admin/small/template.png\";}'),(46,1,'civicrm/admin/weight',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:16:\"CRM_Utils_Weight\";i:1;s:8:\"fixOrder\";}',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/admin&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,1,1,0,NULL,'a:0:{}'),(47,1,'civicrm/admin/options/preferred_communication_method',NULL,'Preferred Communication Methods','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/admin&reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:61:\"/civicrm-master/index.php?q=civicrm/admin/options&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,50,1,0,NULL,'a:3:{s:4:\"desc\";s:117:\"One or more preferred methods of communication can be assigned to each contact. Customize the available options here.\";s:10:\"adminGroup\";s:14:\"Communications\";s:4:\"icon\";s:29:\"admin/small/communication.png\";}'),(48,1,'civicrm/admin/labelFormats',NULL,'Label Formats','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:27:\"CRM_Admin_Page_LabelFormats\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/admin&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,60,1,0,NULL,'a:3:{s:4:\"desc\";s:67:\"Configure Label Formats that are used when creating mailing labels.\";s:10:\"adminGroup\";s:14:\"Communications\";s:4:\"icon\";s:24:\"admin/small/template.png\";}'),(49,1,'civicrm/admin/pdfFormats',NULL,'Print Page (PDF) Formats','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:25:\"CRM_Admin_Page_PdfFormats\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/admin&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,70,1,0,NULL,'a:3:{s:4:\"desc\";s:95:\"Configure PDF Page Formats that can be assigned to Message Templates when creating PDF letters.\";s:10:\"adminGroup\";s:14:\"Communications\";s:4:\"icon\";s:24:\"admin/small/template.png\";}'),(50,1,'civicrm/admin/options/communication_style',NULL,'Communication Style Options','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/admin&reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:61:\"/civicrm-master/index.php?q=civicrm/admin/options&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,75,1,0,NULL,'a:3:{s:4:\"desc\";s:42:\"Options for Communication Style selection.\";s:10:\"adminGroup\";s:14:\"Communications\";s:4:\"icon\";s:18:\"admin/small/01.png\";}'),(51,1,'civicrm/admin/options/email_greeting',NULL,'Email Greeting Formats','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/admin&reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:61:\"/civicrm-master/index.php?q=civicrm/admin/options&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,80,1,0,NULL,'a:3:{s:4:\"desc\";s:75:\"Options for assigning email greetings to individual and household contacts.\";s:10:\"adminGroup\";s:14:\"Communications\";s:4:\"icon\";s:18:\"admin/small/01.png\";}'),(52,1,'civicrm/admin/options/postal_greeting',NULL,'Postal Greeting Formats','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/admin&reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:61:\"/civicrm-master/index.php?q=civicrm/admin/options&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,90,1,0,NULL,'a:3:{s:4:\"desc\";s:76:\"Options for assigning postal greetings to individual and household contacts.\";s:10:\"adminGroup\";s:14:\"Communications\";s:4:\"icon\";s:18:\"admin/small/01.png\";}'),(53,1,'civicrm/admin/options/addressee',NULL,'Addressee Formats','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/admin&reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:61:\"/civicrm-master/index.php?q=civicrm/admin/options&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,100,1,0,NULL,'a:3:{s:4:\"desc\";s:83:\"Options for assigning addressee to individual, household and organization contacts.\";s:10:\"adminGroup\";s:14:\"Communications\";s:4:\"icon\";s:18:\"admin/small/01.png\";}'),(54,1,'civicrm/admin/setting/localization',NULL,'Languages, Currency, Locations','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:35:\"CRM_Admin_Form_Setting_Localization\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/admin&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,10,1,0,NULL,'a:2:{s:10:\"adminGroup\";s:12:\"Localization\";s:4:\"icon\";s:18:\"admin/small/36.png\";}'),(55,1,'civicrm/admin/setting/preferences/address',NULL,'Address Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:34:\"CRM_Admin_Form_Preferences_Address\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/admin&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,20,1,0,NULL,'a:2:{s:10:\"adminGroup\";s:12:\"Localization\";s:4:\"icon\";s:18:\"admin/small/36.png\";}'),(56,1,'civicrm/admin/setting/date',NULL,'Date Formats','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:27:\"CRM_Admin_Form_Setting_Date\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/admin&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,30,1,0,NULL,'a:2:{s:10:\"adminGroup\";s:12:\"Localization\";s:4:\"icon\";s:18:\"admin/small/36.png\";}'),(57,1,'civicrm/admin/options/languages',NULL,'Preferred Languages','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/admin&reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:61:\"/civicrm-master/index.php?q=civicrm/admin/options&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,40,1,0,NULL,'a:3:{s:4:\"desc\";s:30:\"Options for contact languages.\";s:10:\"adminGroup\";s:12:\"Localization\";s:4:\"icon\";s:18:\"admin/small/36.png\";}'),(58,1,'civicrm/admin/access',NULL,'Access Control','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:21:\"CRM_Admin_Page_Access\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/admin&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,10,1,0,NULL,'a:3:{s:4:\"desc\";s:73:\"Grant or deny access to actions (view, edit...), features and components.\";s:10:\"adminGroup\";s:21:\"Users and Permissions\";s:4:\"icon\";s:18:\"admin/small/03.png\";}'),(59,1,'civicrm/admin/access/wp-permissions',NULL,'WordPress Access Control','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:34:\"CRM_ACL_Form_WordPress_Permissions\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/admin&reset=1\";}i:2;a:2:{s:5:\"title\";s:14:\"Access Control\";s:3:\"url\";s:60:\"/civicrm-master/index.php?q=civicrm/admin/access&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,10,1,0,NULL,'a:1:{s:4:\"desc\";s:65:\"Grant access to CiviCRM components and other CiviCRM permissions.\";}'),(60,1,'civicrm/admin/synchUser',NULL,'Synchronize Users to Contacts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Form_CMSUser\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/admin&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,20,1,0,NULL,'a:3:{s:4:\"desc\";s:71:\"Automatically create a CiviCRM contact record for each CMS user record.\";s:10:\"adminGroup\";s:21:\"Users and Permissions\";s:4:\"icon\";s:26:\"admin/small/Synch_user.png\";}'),(61,1,'civicrm/admin/configtask',NULL,'Configuration Checklist','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:29:\"CRM_Admin_Page_ConfigTaskList\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/admin&reset=1\";}}','civicrm/admin/configtask',NULL,NULL,NULL,NULL,NULL,1,1,1,0,NULL,'a:3:{s:4:\"desc\";s:55:\"List of configuration tasks with links to each setting.\";s:10:\"adminGroup\";s:15:\"System Settings\";s:4:\"icon\";s:9:\"check.gif\";}'),(62,1,'civicrm/admin/setting/component',NULL,'Enable CiviCRM Components','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:32:\"CRM_Admin_Form_Setting_Component\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/admin&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,10,1,0,NULL,'a:3:{s:4:\"desc\";s:269:\"Enable or disable components (e.g. CiviEvent, CiviMember, etc.) for your site based on the features you need. We recommend disabling any components not being used in order to simplify the user interface. You can easily re-enable components at any time from this screen.\";s:10:\"adminGroup\";s:15:\"System Settings\";s:4:\"icon\";s:18:\"admin/small/36.png\";}'),(63,1,'civicrm/admin/extensions',NULL,'Manage Extensions','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','s:25:\"CRM_Admin_Page_Extensions\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/admin&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,120,1,0,NULL,'a:3:{s:4:\"desc\";s:0:\"\";s:10:\"adminGroup\";s:15:\"System Settings\";s:4:\"icon\";s:26:\"admin/small/price_sets.png\";}'),(64,1,'civicrm/admin/extensions/upgrade',NULL,'Database Upgrades','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','s:32:\"CRM_Admin_Page_ExtensionsUpgrade\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/admin&reset=1\";}i:2;a:2:{s:5:\"title\";s:17:\"Manage Extensions\";s:3:\"url\";s:64:\"/civicrm-master/index.php?q=civicrm/admin/extensions&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,1,1,0,NULL,'a:0:{}'),(65,1,'civicrm/admin/setting/smtp',NULL,'Outbound Email Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:27:\"CRM_Admin_Form_Setting_Smtp\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/admin&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,20,1,0,NULL,'a:2:{s:10:\"adminGroup\";s:15:\"System Settings\";s:4:\"icon\";s:18:\"admin/small/07.png\";}'),(66,1,'civicrm/admin/paymentProcessor',NULL,'Settings - Payment Processor','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:29:\"administer payment processors\";}i:1;s:3:\"and\";}','s:31:\"CRM_Admin_Page_PaymentProcessor\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/admin&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,30,1,0,NULL,'a:3:{s:4:\"desc\";s:48:\"Payment Processor setup for CiviCRM transactions\";s:10:\"adminGroup\";s:15:\"System Settings\";s:4:\"icon\";s:41:\"admin/small/online_contribution_pages.png\";}'),(67,1,'civicrm/admin/setting/mapping',NULL,'Mapping and Geocoding','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:30:\"CRM_Admin_Form_Setting_Mapping\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/admin&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,40,1,0,NULL,'a:2:{s:10:\"adminGroup\";s:15:\"System Settings\";s:4:\"icon\";s:18:\"admin/small/36.png\";}'),(68,1,'civicrm/admin/setting/misc',NULL,'Misc (Undelete, PDFs, Limits, Logging, Captcha, etc.)','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:36:\"CRM_Admin_Form_Setting_Miscellaneous\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/admin&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,50,1,0,NULL,'a:3:{s:4:\"desc\";s:91:\"Enable undelete/move to trash feature, detailed change logging, ReCAPTCHA to protect forms.\";s:10:\"adminGroup\";s:15:\"System Settings\";s:4:\"icon\";s:18:\"admin/small/36.png\";}'),(69,1,'civicrm/admin/setting/path',NULL,'Directories','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:27:\"CRM_Admin_Form_Setting_Path\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/admin&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,60,1,0,NULL,'a:2:{s:10:\"adminGroup\";s:15:\"System Settings\";s:4:\"icon\";s:18:\"admin/small/36.png\";}'),(70,1,'civicrm/admin/setting/url',NULL,'Resource URLs','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Admin_Form_Setting_Url\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/admin&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,70,1,0,NULL,'a:2:{s:10:\"adminGroup\";s:15:\"System Settings\";s:4:\"icon\";s:18:\"admin/small/36.png\";}'),(71,1,'civicrm/admin/setting/updateConfigBackend',NULL,'Cleanup Caches and Update Paths','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:42:\"CRM_Admin_Form_Setting_UpdateConfigBackend\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/admin&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,80,1,0,NULL,'a:3:{s:4:\"desc\";s:157:\"Reset the Base Directory Path and Base URL settings - generally when a CiviCRM site is moved to another location in the file system and/or to another domain.\";s:10:\"adminGroup\";s:15:\"System Settings\";s:4:\"icon\";s:26:\"admin/small/updatepath.png\";}'),(72,1,'civicrm/admin/setting/uf',NULL,'CMS Database Integration','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:25:\"CRM_Admin_Form_Setting_UF\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/admin&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,90,1,0,NULL,'a:2:{s:10:\"adminGroup\";s:15:\"System Settings\";s:4:\"icon\";s:18:\"admin/small/36.png\";}'),(73,1,'civicrm/admin/options/safe_file_extension',NULL,'Safe File Extension Options','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/admin&reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:61:\"/civicrm-master/index.php?q=civicrm/admin/options&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,100,1,0,NULL,'a:3:{s:4:\"desc\";s:44:\"File Extensions that can be considered safe.\";s:10:\"adminGroup\";s:15:\"System Settings\";s:4:\"icon\";s:18:\"admin/small/01.png\";}'),(74,1,'civicrm/admin/options',NULL,'Option Groups','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/admin&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,105,1,0,NULL,'a:3:{s:4:\"desc\";s:35:\"Access all meta-data option groups.\";s:10:\"adminGroup\";s:15:\"System Settings\";s:4:\"icon\";s:18:\"admin/small/01.png\";}'),(75,1,'civicrm/admin/mapping',NULL,'Import/Export Mappings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Mapping\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/admin&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,110,1,0,NULL,'a:3:{s:4:\"desc\";s:141:\"Import and Export mappings allow you to easily run the same job multiple times. This option allows you to rename or delete existing mappings.\";s:10:\"adminGroup\";s:15:\"System Settings\";s:4:\"icon\";s:33:\"admin/small/import_export_map.png\";}'),(76,1,'civicrm/admin/setting/debug',NULL,'Debugging','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:32:\"CRM_Admin_Form_Setting_Debugging\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/admin&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,120,1,0,NULL,'a:2:{s:10:\"adminGroup\";s:15:\"System Settings\";s:4:\"icon\";s:18:\"admin/small/36.png\";}'),(77,1,'civicrm/admin/setting/preferences/multisite',NULL,'Multi Site Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:36:\"CRM_Admin_Form_Preferences_Multisite\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/admin&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,130,1,0,NULL,'a:2:{s:10:\"adminGroup\";s:15:\"System Settings\";s:4:\"icon\";s:18:\"admin/small/36.png\";}'),(78,1,'civicrm/admin/setting/preferences/campaign',NULL,'CiviCampaign Component Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:35:\"CRM_Admin_Form_Preferences_Campaign\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/admin&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,10,1,0,NULL,'a:3:{s:4:\"desc\";s:40:\"Configure global CiviCampaign behaviors.\";s:10:\"adminGroup\";s:12:\"CiviCampaign\";s:9:\"component\";s:12:\"CiviCampaign\";}'),(79,1,'civicrm/admin/setting/preferences/event',NULL,'CiviEvent Component Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:16:\"access CiviEvent\";i:1;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','s:32:\"CRM_Admin_Form_Preferences_Event\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/admin&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,420,1,0,NULL,'a:2:{s:4:\"desc\";s:37:\"Configure global CiviEvent behaviors.\";s:10:\"adminGroup\";s:9:\"CiviEvent\";}'),(80,1,'civicrm/admin/setting/preferences/mailing',NULL,'CiviMail Component Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:15:\"access CiviMail\";i:1;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','s:34:\"CRM_Admin_Form_Preferences_Mailing\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/admin&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,430,1,0,NULL,'a:2:{s:4:\"desc\";s:36:\"Configure global CiviMail behaviors.\";s:10:\"adminGroup\";s:8:\"CiviMail\";}'),(81,1,'civicrm/admin/setting/preferences/member',NULL,'CiviMember Component Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:17:\"access CiviMember\";i:1;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','s:33:\"CRM_Admin_Form_Preferences_Member\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/admin&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,390,1,0,NULL,'a:2:{s:4:\"desc\";s:38:\"Configure global CiviMember behaviors.\";s:10:\"adminGroup\";s:10:\"CiviMember\";}'),(82,1,'civicrm/admin/runjobs',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:16:\"CRM_Utils_System\";i:1;s:20:\"executeScheduledJobs\";}',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/admin&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,1,1,0,NULL,'a:1:{s:4:\"desc\";s:36:\"URL used for running scheduled jobs.\";}'),(83,1,'civicrm/admin/job',NULL,'Scheduled Jobs','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','s:18:\"CRM_Admin_Page_Job\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/admin&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,1370,1,0,NULL,'a:3:{s:4:\"desc\";s:35:\"Managing periodially running tasks.\";s:10:\"adminGroup\";s:15:\"System Settings\";s:4:\"icon\";s:18:\"admin/small/13.png\";}'),(84,1,'civicrm/admin/joblog',NULL,'Scheduled Jobs Log','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','s:21:\"CRM_Admin_Page_JobLog\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/admin&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,1380,1,0,NULL,'a:3:{s:4:\"desc\";s:46:\"Browsing the log of periodially running tasks.\";s:10:\"adminGroup\";s:6:\"Manage\";s:4:\"icon\";s:18:\"admin/small/13.png\";}'),(85,1,'civicrm/admin/options/grant_type',NULL,'Grant Types','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/admin&reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:61:\"/civicrm-master/index.php?q=civicrm/admin/options&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,385,1,0,NULL,'a:3:{s:4:\"desc\";s:148:\"List of types which can be assigned to Grants. (Enable CiviGrant from Administer > Systme Settings > Enable Components if you want to track grants.)\";s:10:\"adminGroup\";s:12:\"Option Lists\";s:4:\"icon\";s:26:\"admin/small/grant_type.png\";}'),(86,1,'civicrm/admin/paymentProcessorType',NULL,'Payment Processor Type','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:35:\"CRM_Admin_Page_PaymentProcessorType\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/admin&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,390,1,0,NULL,'a:1:{s:4:\"desc\";s:34:\"Payment Processor type information\";}'),(87,1,'civicrm/admin',NULL,'Administer CiviCRM','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:20:\"CRM_Admin_Page_Admin\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,9000,1,1,NULL,'a:0:{}'),(88,1,'civicrm/ajax/menujs',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:19:\"CRM_Admin_Page_AJAX\";i:1;s:17:\"getNavigationMenu\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(89,1,'civicrm/ajax/menutree',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:19:\"CRM_Admin_Page_AJAX\";i:1;s:8:\"menuTree\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,3,NULL,'a:0:{}'),(90,1,'civicrm/ajax/statusmsg',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:19:\"CRM_Admin_Page_AJAX\";i:1;s:12:\"getStatusMsg\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(91,1,'civicrm/admin/price',NULL,'Price Sets','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:18:\"CRM_Price_Page_Set\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/admin&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,380,1,0,NULL,'a:3:{s:4:\"desc\";s:205:\"Price sets allow you to offer multiple options with associated fees (e.g. pre-conference workshops, additional meals, etc.). Configure Price Sets for events which need more than a single set of fee levels.\";s:10:\"adminGroup\";s:9:\"Customize\";s:4:\"icon\";s:26:\"admin/small/price_sets.png\";}'),(92,1,'civicrm/admin/price/add','action=add','New Price Set','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:18:\"CRM_Price_Page_Set\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/admin&reset=1\";}i:2;a:2:{s:5:\"title\";s:10:\"Price Sets\";s:3:\"url\";s:59:\"/civicrm-master/index.php?q=civicrm/admin/price&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,1,1,0,NULL,'a:1:{s:4:\"desc\";s:205:\"Price sets allow you to offer multiple options with associated fees (e.g. pre-conference workshops, additional meals, etc.). Configure Price Sets for events which need more than a single set of fee levels.\";}'),(93,1,'civicrm/admin/price/field',NULL,'Price Fields','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:20:\"CRM_Price_Page_Field\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/admin&reset=1\";}i:2;a:2:{s:5:\"title\";s:10:\"Price Sets\";s:3:\"url\";s:59:\"/civicrm-master/index.php?q=civicrm/admin/price&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,1,1,0,0,'a:0:{}'),(94,1,'civicrm/admin/price/field/option',NULL,'Price Field Options','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:21:\"CRM_Price_Page_Option\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/admin&reset=1\";}i:2;a:2:{s:5:\"title\";s:10:\"Price Sets\";s:3:\"url\";s:59:\"/civicrm-master/index.php?q=civicrm/admin/price&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,1,1,0,NULL,'a:0:{}'),(95,1,'civicrm/admin/tplstrings/add',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:25:\"CRM_Admin_Form_Persistent\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/admin&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,1,1,0,NULL,'a:0:{}'),(96,1,'civicrm/admin/tplstrings',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:25:\"CRM_Admin_Page_Persistent\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/admin&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,1,1,0,NULL,'a:0:{}'),(97,1,'civicrm/ajax/mapping',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:19:\"CRM_Admin_Page_AJAX\";i:1;s:11:\"mappingList\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(98,1,'civicrm/ajax/recipientListing',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:19:\"CRM_Admin_Page_AJAX\";i:1;s:16:\"recipientListing\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(99,1,'civicrm/admin/sms/provider',NULL,'Sms Providers','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','s:21:\"CRM_SMS_Page_Provider\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/admin&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,500,1,0,NULL,'a:3:{s:4:\"desc\";s:27:\"To configure a sms provider\";s:10:\"adminGroup\";s:15:\"System Settings\";s:4:\"icon\";s:18:\"admin/small/36.png\";}'),(100,1,'civicrm/sms/send',NULL,'New Mass SMS','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:8:\"send SMS\";}i:1;s:3:\"and\";}','s:23:\"CRM_SMS_Controller_Send\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,610,1,1,NULL,'a:0:{}'),(101,1,'civicrm/sms/callback',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:21:\"CRM_SMS_Page_Callback\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(102,1,'civicrm/admin/badgelayout','action=browse','Event Name Badge Layouts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:21:\"CRM_Badge_Page_Layout\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/admin&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,399,1,0,NULL,'a:2:{s:4:\"desc\";s:107:\"Configure name badge layouts for event participants, including logos and what data to include on the badge.\";s:10:\"adminGroup\";s:9:\"CiviEvent\";}'),(103,1,'civicrm/admin/badgelayout/add',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','s:21:\"CRM_Badge_Form_Layout\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/admin&reset=1\";}i:2;a:2:{s:5:\"title\";s:24:\"Event Name Badge Layouts\";s:3:\"url\";s:83:\"/civicrm-master/index.php?q=civicrm/admin/badgelayout&reset=1&action=browse\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,1,1,0,NULL,'a:0:{}'),(104,1,'civicrm/admin/ckeditor',NULL,'Configure CKEditor','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','s:29:\"CRM_Admin_Page_CKEditorConfig\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/admin&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,1,1,0,NULL,'a:0:{}'),(105,1,'civicrm',NULL,'CiviCRM','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Contact_Page_DashBoard\";',NULL,'a:0:{}',NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,0,NULL,'a:0:{}'),(106,1,'civicrm/dashboard',NULL,'CiviCRM Home','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Contact_Page_DashBoard\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,1,NULL,'a:0:{}'),(107,1,'civicrm/dashlet',NULL,'CiviCRM Dashlets','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:24:\"CRM_Contact_Page_Dashlet\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,1,NULL,'a:0:{}'),(108,1,'civicrm/contact/search',NULL,'Find Contacts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:29:\"CRM_Contact_Controller_Search\";','s:8:\"mode=256\";','a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,10,1,1,NULL,'a:0:{}'),(109,1,'civicrm/contact/image',NULL,'Process Uploaded Images','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access uploaded files\";}i:1;s:3:\"and\";}','a:2:{i:0;s:23:\"CRM_Contact_BAO_Contact\";i:1;s:12:\"processImage\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(110,1,'civicrm/contact/imagefile',NULL,'Get Image File','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"*always allow*\";}i:1;s:3:\"and\";}','s:26:\"CRM_Contact_Page_ImageFile\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(111,1,'civicrm/contact/search/basic',NULL,'Find Contacts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:29:\"CRM_Contact_Controller_Search\";','s:8:\"mode=256\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:13:\"Find Contacts\";s:3:\"url\";s:62:\"/civicrm-master/index.php?q=civicrm/contact/search&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(112,1,'civicrm/contact/search/advanced',NULL,'Advanced Search','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:29:\"CRM_Contact_Controller_Search\";','s:8:\"mode=512\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:13:\"Find Contacts\";s:3:\"url\";s:62:\"/civicrm-master/index.php?q=civicrm/contact/search&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,12,1,1,NULL,'a:0:{}'),(113,1,'civicrm/contact/search/builder',NULL,'Search Builder','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:29:\"CRM_Contact_Controller_Search\";','s:9:\"mode=8192\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:13:\"Find Contacts\";s:3:\"url\";s:62:\"/civicrm-master/index.php?q=civicrm/contact/search&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,14,1,1,NULL,'a:0:{}'),(114,1,'civicrm/contact/search/custom',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:29:\"CRM_Contact_Controller_Search\";','s:10:\"mode=16384\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:13:\"Find Contacts\";s:3:\"url\";s:62:\"/civicrm-master/index.php?q=civicrm/contact/search&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(115,1,'civicrm/contact/search/custom/list',NULL,'Custom Searches','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:29:\"CRM_Contact_Page_CustomSearch\";','s:10:\"mode=16384\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:13:\"Find Contacts\";s:3:\"url\";s:62:\"/civicrm-master/index.php?q=civicrm/contact/search&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,16,1,1,NULL,'a:0:{}'),(116,1,'civicrm/contact/add',NULL,'New Contact','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:24:\"CRM_Contact_Form_Contact\";','s:13:\"addSequence=1\";','a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(117,1,'civicrm/contact/add/individual','ct=Individual','New Individual','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:12:\"add contacts\";}i:1;s:3:\"and\";}','s:24:\"CRM_Contact_Form_Contact\";','s:13:\"addSequence=1\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:11:\"New Contact\";s:3:\"url\";s:59:\"/civicrm-master/index.php?q=civicrm/contact/add&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(118,1,'civicrm/contact/add/household','ct=Household','New Household','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:12:\"add contacts\";}i:1;s:3:\"and\";}','s:24:\"CRM_Contact_Form_Contact\";','s:13:\"addSequence=1\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:11:\"New Contact\";s:3:\"url\";s:59:\"/civicrm-master/index.php?q=civicrm/contact/add&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(119,1,'civicrm/contact/add/organization','ct=Organization','New Organization','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:12:\"add contacts\";}i:1;s:3:\"and\";}','s:24:\"CRM_Contact_Form_Contact\";','s:13:\"addSequence=1\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:11:\"New Contact\";s:3:\"url\";s:59:\"/civicrm-master/index.php?q=civicrm/contact/add&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(120,1,'civicrm/contact/relatedcontact',NULL,'Edit Related Contact','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:24:\"access Contact Dashboard\";}i:1;s:3:\"and\";}','s:31:\"CRM_Contact_Form_RelatedContact\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,NULL,NULL,1,NULL,0,1,1,0,NULL,'a:0:{}'),(121,1,'civicrm/contact/merge',NULL,'Merge Contact','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:24:\"merge duplicate contacts\";}i:1;s:3:\"and\";}','s:22:\"CRM_Contact_Form_Merge\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(122,1,'civicrm/contact/email',NULL,'Email a Contact','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:27:\"CRM_Contact_Form_Task_Email\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(123,1,'civicrm/contact/map',NULL,'Map Location(s)','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:25:\"CRM_Contact_Form_Task_Map\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,NULL,NULL,1,NULL,0,1,1,0,NULL,'a:0:{}'),(124,1,'civicrm/contact/map/event',NULL,'Map Event Location','s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:31:\"CRM_Contact_Form_Task_Map_Event\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Map Location(s)\";s:3:\"url\";s:59:\"/civicrm-master/index.php?q=civicrm/contact/map&reset=1\";}}',NULL,NULL,NULL,NULL,1,NULL,0,1,1,0,NULL,'a:0:{}'),(125,1,'civicrm/contact/view','cid=%%cid%%','Contact Summary','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:29:\"CRM_Contact_Page_View_Summary\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(126,1,'civicrm/contact/view/delete',NULL,'Delete Contact','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:28:\"CRM_Contact_Form_Task_Delete\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:76:\"/civicrm-master/index.php?q=civicrm/contact/view&reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(127,1,'civicrm/contact/view/activity','show=1,cid=%%cid%%','Activities','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:21:\"CRM_Activity_Page_Tab\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:76:\"/civicrm-master/index.php?q=civicrm/contact/view&reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(128,1,'civicrm/activity/add','action=add','Activities','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Activity_Form_Activity\";','s:14:\"attachUpload=1\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:12:\"New Activity\";s:3:\"url\";s:94:\"/civicrm-master/index.php?q=civicrm/activity&reset=1&action=add&context=standalone\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(129,1,'civicrm/activity/email/add','action=add','Activities','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:27:\"CRM_Contact_Form_Task_Email\";','s:14:\"attachUpload=1\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:12:\"New Activity\";s:3:\"url\";s:94:\"/civicrm-master/index.php?q=civicrm/activity&reset=1&action=add&context=standalone\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(130,1,'civicrm/activity/pdf/add','action=add','Activities','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:25:\"CRM_Contact_Form_Task_PDF\";','s:14:\"attachUpload=1\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:12:\"New Activity\";s:3:\"url\";s:94:\"/civicrm-master/index.php?q=civicrm/activity&reset=1&action=add&context=standalone\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(131,1,'civicrm/contact/view/rel','cid=%%cid%%','Relationships','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:34:\"CRM_Contact_Page_View_Relationship\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:76:\"/civicrm-master/index.php?q=civicrm/contact/view&reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(132,1,'civicrm/contact/view/group','cid=%%cid%%','Groups','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:34:\"CRM_Contact_Page_View_GroupContact\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:76:\"/civicrm-master/index.php?q=civicrm/contact/view&reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(133,1,'civicrm/contact/view/smartgroup','cid=%%cid%%','Smart Groups','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:39:\"CRM_Contact_Page_View_ContactSmartGroup\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:76:\"/civicrm-master/index.php?q=civicrm/contact/view&reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(134,1,'civicrm/contact/view/note','cid=%%cid%%','Notes','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:26:\"CRM_Contact_Page_View_Note\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:76:\"/civicrm-master/index.php?q=civicrm/contact/view&reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(135,1,'civicrm/contact/view/tag','cid=%%cid%%','Tags','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:25:\"CRM_Contact_Page_View_Tag\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:76:\"/civicrm-master/index.php?q=civicrm/contact/view&reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(136,1,'civicrm/contact/view/cd',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:32:\"CRM_Contact_Page_View_CustomData\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:76:\"/civicrm-master/index.php?q=civicrm/contact/view&reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(137,1,'civicrm/contact/view/cd/edit',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:27:\"CRM_Contact_Form_CustomData\";','s:13:\"addSequence=1\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:76:\"/civicrm-master/index.php?q=civicrm/contact/view&reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(138,1,'civicrm/contact/view/vcard',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:27:\"CRM_Contact_Page_View_Vcard\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:76:\"/civicrm-master/index.php?q=civicrm/contact/view&reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(139,1,'civicrm/contact/view/print',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:27:\"CRM_Contact_Page_View_Print\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:76:\"/civicrm-master/index.php?q=civicrm/contact/view&reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(140,1,'civicrm/contact/view/log',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:25:\"CRM_Contact_Page_View_Log\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:76:\"/civicrm-master/index.php?q=civicrm/contact/view&reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(141,1,'civicrm/user',NULL,'Contact Dashboard','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:24:\"access Contact Dashboard\";}i:1;s:3:\"and\";}','s:35:\"CRM_Contact_Page_View_UserDashBoard\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,NULL,NULL,1,NULL,0,0,1,0,NULL,'a:0:{}'),(142,1,'civicrm/dashlet/activity',NULL,'Activity Dashlet','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:25:\"CRM_Dashlet_Page_Activity\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:16:\"CiviCRM Dashlets\";s:3:\"url\";s:55:\"/civicrm-master/index.php?q=civicrm/dashlet&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(143,1,'civicrm/dashlet/blog',NULL,'CiviCRM Blog','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:21:\"CRM_Dashlet_Page_Blog\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:16:\"CiviCRM Dashlets\";s:3:\"url\";s:55:\"/civicrm-master/index.php?q=civicrm/dashlet&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(144,1,'civicrm/dashlet/getting-started',NULL,'CiviCRM Resources','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:31:\"CRM_Dashlet_Page_GettingStarted\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:16:\"CiviCRM Dashlets\";s:3:\"url\";s:55:\"/civicrm-master/index.php?q=civicrm/dashlet&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(145,1,'civicrm/ajax/relation',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:12:\"relationship\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,3,NULL,'a:0:{}'),(146,1,'civicrm/ajax/groupTree',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:9:\"groupTree\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(147,1,'civicrm/ajax/custom',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:11:\"customField\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(148,1,'civicrm/ajax/customvalue',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:17:\"deleteCustomValue\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,3,NULL,'a:0:{}'),(149,1,'civicrm/ajax/cmsuser',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:13:\"checkUserName\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(150,1,'civicrm/ajax/checkemail',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:15:\"getContactEmail\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(151,1,'civicrm/ajax/checkphone',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:15:\"getContactPhone\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(152,1,'civicrm/ajax/subtype',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:13:\"buildSubTypes\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(153,1,'civicrm/ajax/dashboard',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:9:\"dashboard\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,3,NULL,'a:0:{}'),(154,1,'civicrm/ajax/signature',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:12:\"getSignature\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(155,1,'civicrm/ajax/pdfFormat',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:9:\"pdfFormat\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(156,1,'civicrm/ajax/paperSize',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:9:\"paperSize\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(157,1,'civicrm/ajax/contactref',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:31:\"access contact reference fields\";i:1;s:15:\" access CiviCRM\";}i:1;s:2:\"or\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:16:\"contactReference\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(158,1,'civicrm/dashlet/myCases',NULL,'Case Dashlet','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:24:\"CRM_Dashlet_Page_MyCases\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:16:\"CiviCRM Dashlets\";s:3:\"url\";s:55:\"/civicrm-master/index.php?q=civicrm/dashlet&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(159,1,'civicrm/dashlet/allCases',NULL,'All Cases Dashlet','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:31:\"access all cases and activities\";}i:1;s:3:\"and\";}','s:25:\"CRM_Dashlet_Page_AllCases\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:16:\"CiviCRM Dashlets\";s:3:\"url\";s:55:\"/civicrm-master/index.php?q=civicrm/dashlet&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(160,1,'civicrm/dashlet/casedashboard',NULL,'Case Dashboard Dashlet','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:30:\"CRM_Dashlet_Page_CaseDashboard\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:16:\"CiviCRM Dashlets\";s:3:\"url\";s:55:\"/civicrm-master/index.php?q=civicrm/dashlet&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(161,1,'civicrm/contact/deduperules',NULL,'Find and Merge Duplicate Contacts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:23:\"administer dedupe rules\";i:1;s:24:\"merge duplicate contacts\";}i:1;s:2:\"or\";}','s:28:\"CRM_Contact_Page_DedupeRules\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,105,1,0,NULL,'a:3:{s:4:\"desc\";s:158:\"Manage the rules used to identify potentially duplicate contact records. Scan for duplicates using a selected rule and merge duplicate contact data as needed.\";s:10:\"adminGroup\";s:6:\"Manage\";s:4:\"icon\";s:34:\"admin/small/duplicate_matching.png\";}'),(162,1,'civicrm/contact/dedupefind',NULL,'Find and Merge Duplicate Contacts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:24:\"merge duplicate contacts\";}i:1;s:3:\"and\";}','s:27:\"CRM_Contact_Page_DedupeFind\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(163,1,'civicrm/ajax/dedupefind',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:24:\"merge duplicate contacts\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:10:\"getDedupes\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(164,1,'civicrm/contact/dedupemerge',NULL,'Batch Merge Duplicate Contacts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:24:\"merge duplicate contacts\";}i:1;s:3:\"and\";}','s:28:\"CRM_Contact_Page_DedupeMerge\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(165,1,'civicrm/dedupe/exception',NULL,'Dedupe Exceptions','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:32:\"CRM_Contact_Page_DedupeException\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,110,1,0,NULL,'a:1:{s:10:\"adminGroup\";s:6:\"Manage\";}'),(166,1,'civicrm/ajax/dedupeRules',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:16:\"buildDedupeRules\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(167,1,'civicrm/contact/view/useradd','cid=%%cid%%','Add User','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:29:\"CRM_Contact_Page_View_Useradd\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:76:\"/civicrm-master/index.php?q=civicrm/contact/view&reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(168,1,'civicrm/ajax/markSelection',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:22:\"selectUnselectContacts\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(169,1,'civicrm/ajax/toggleDedupeSelect',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:24:\"merge duplicate contacts\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:18:\"toggleDedupeSelect\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(170,1,'civicrm/ajax/flipDupePairs',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:24:\"merge duplicate contacts\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:13:\"flipDupePairs\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(171,1,'civicrm/activity/sms/add','action=add','Activities','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:8:\"send SMS\";}i:1;s:3:\"and\";}','s:25:\"CRM_Contact_Form_Task_SMS\";','s:14:\"attachUpload=1\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:12:\"New Activity\";s:3:\"url\";s:94:\"/civicrm-master/index.php?q=civicrm/activity&reset=1&action=add&context=standalone\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(172,1,'civicrm/ajax/contactrelationships',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"view my contact\";}i:1;s:2:\"or\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:23:\"getContactRelationships\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(173,1,'civicrm/custom/add',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Custom_Form_CustomData\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(174,1,'civicrm/ajax/optionlist',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:20:\"CRM_Custom_Page_AJAX\";i:1;s:13:\"getOptionList\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(175,1,'civicrm/ajax/reorder',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:20:\"CRM_Custom_Page_AJAX\";i:1;s:11:\"fixOrdering\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(176,1,'civicrm/ajax/multirecordfieldlist',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:20:\"CRM_Custom_Page_AJAX\";i:1;s:23:\"getMultiRecordFieldList\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(177,1,'civicrm/custom',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:32:\"CRM_Custom_Form_CustomDataByType\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(178,1,'civicrm/group',NULL,'Manage Groups','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:20:\"CRM_Group_Page_Group\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,30,1,1,NULL,'a:0:{}'),(179,1,'civicrm/group/search',NULL,'Group Members','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:29:\"CRM_Contact_Controller_Search\";','s:8:\"mode=256\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:13:\"Manage Groups\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/group&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:1:{s:7:\"comment\";s:164:\"Note: group search already respect ACL, so a strict permission at url level is not required. A simple/basic permission like \'access CiviCRM\' could be used. CRM-5417\";}'),(180,1,'civicrm/group/add',NULL,'New Group','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:11:\"edit groups\";}i:1;s:3:\"and\";}','s:20:\"CRM_Group_Controller\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:13:\"Manage Groups\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/group&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(181,1,'civicrm/ajax/grouplist',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:19:\"CRM_Group_Page_AJAX\";i:1;s:12:\"getGroupList\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(182,1,'civicrm/import',NULL,'Import','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:15:\"import contacts\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:29:\"CRM_Contact_Import_Controller\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,400,1,1,NULL,'a:0:{}'),(183,1,'civicrm/import/contact',NULL,'Import Contacts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:15:\"import contacts\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:29:\"CRM_Contact_Import_Controller\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:6:\"Import\";s:3:\"url\";s:54:\"/civicrm-master/index.php?q=civicrm/import&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,410,1,1,NULL,'a:0:{}'),(184,1,'civicrm/import/activity',NULL,'Import Activities','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:15:\"import contacts\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:30:\"CRM_Activity_Import_Controller\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:6:\"Import\";s:3:\"url\";s:54:\"/civicrm-master/index.php?q=civicrm/import&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,420,1,1,NULL,'a:0:{}'),(185,1,'civicrm/import/custom','id=%%id%%','Import Multi-value Custom Data','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:28:\"CRM_Custom_Import_Controller\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:6:\"Import\";s:3:\"url\";s:54:\"/civicrm-master/index.php?q=civicrm/import&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,420,1,1,NULL,'a:0:{}'),(186,1,'civicrm/ajax/status',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:15:\"import contacts\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:28:\"CRM_Contact_Import_Page_AJAX\";i:1;s:6:\"status\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(187,1,'civicrm/ajax/jqState',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:27:\"CRM_Core_Page_AJAX_Location\";i:1;s:7:\"jqState\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,NULL,NULL,1,NULL,0,1,1,0,NULL,'a:0:{}'),(188,1,'civicrm/ajax/jqCounty',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:27:\"CRM_Core_Page_AJAX_Location\";i:1;s:8:\"jqCounty\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,NULL,NULL,1,NULL,0,1,1,0,NULL,'a:0:{}'),(189,1,'civicrm/upgrade',NULL,'Upgrade CiviCRM','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:24:\"CRM_Upgrade_Page_Upgrade\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(190,1,'civicrm/export',NULL,'Download Errors','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Export_BAO_Export\";i:1;s:6:\"invoke\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(191,1,'civicrm/export/contact',NULL,'Export Contacts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Export_BAO_Export\";i:1;s:6:\"invoke\";}',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Download Errors\";s:3:\"url\";s:54:\"/civicrm-master/index.php?q=civicrm/export&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,0,NULL,'a:0:{}'),(192,1,'civicrm/export/standalone',NULL,'Export','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:32:\"CRM_Export_Controller_Standalone\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Download Errors\";s:3:\"url\";s:54:\"/civicrm-master/index.php?q=civicrm/export&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(193,1,'civicrm/admin/options/acl_role',NULL,'ACL Roles','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/admin&reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:61:\"/civicrm-master/index.php?q=civicrm/admin/options&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,1,1,0,NULL,'a:0:{}'),(194,1,'civicrm/acl',NULL,'Manage ACLs','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:16:\"CRM_ACL_Page_ACL\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(195,1,'civicrm/acl/entityrole',NULL,'Assign Users to ACL Roles','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:23:\"CRM_ACL_Page_EntityRole\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:11:\"Manage ACLs\";s:3:\"url\";s:51:\"/civicrm-master/index.php?q=civicrm/acl&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(196,1,'civicrm/acl/basic',NULL,'ACL','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:21:\"CRM_ACL_Page_ACLBasic\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:11:\"Manage ACLs\";s:3:\"url\";s:51:\"/civicrm-master/index.php?q=civicrm/acl&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(197,1,'civicrm/standalone/register',NULL,'Registration Page','s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:28:\"CRM_Standalone_Form_Register\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,NULL,NULL,1,NULL,0,1,1,0,NULL,'a:0:{}'),(198,1,'civicrm/file',NULL,'Browse Uploaded files','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access uploaded files\";}i:1;s:3:\"and\";}','s:18:\"CRM_Core_Page_File\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(199,1,'civicrm/file/delete',NULL,'Delete File','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:17:\"CRM_Core_BAO_File\";i:1;s:16:\"deleteAttachment\";}',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:21:\"Browse Uploaded files\";s:3:\"url\";s:52:\"/civicrm-master/index.php?q=civicrm/file&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(200,1,'civicrm/friend',NULL,'Tell a Friend','s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:15:\"CRM_Friend_Form\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,NULL,NULL,1,NULL,0,1,1,0,NULL,'a:0:{}'),(201,1,'civicrm/logout',NULL,'Log out','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:16:\"CRM_Utils_System\";i:1;s:6:\"logout\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,9999,1,1,NULL,'a:0:{}'),(202,1,'civicrm/i18n',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:17:\"translate CiviCRM\";}i:1;s:3:\"and\";}','s:18:\"CRM_Core_I18n_Form\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(203,1,'civicrm/ajax/attachment',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"access AJAX API\";}i:1;s:2:\"or\";}','a:2:{i:0;s:29:\"CRM_Core_Page_AJAX_Attachment\";i:1;s:10:\"attachFile\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(204,1,'civicrm/api',NULL,'CiviCRM API v3','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Admin_Page_APIExplorer\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(205,1,'civicrm/ajax/apiexample',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:26:\"CRM_Admin_Page_APIExplorer\";i:1;s:14:\"getExampleFile\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(206,1,'civicrm/ajax/apidoc',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:26:\"CRM_Admin_Page_APIExplorer\";i:1;s:6:\"getDoc\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(207,1,'civicrm/ajax/rest',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"access AJAX API\";}i:1;s:2:\"or\";}','a:2:{i:0;s:14:\"CRM_Utils_REST\";i:1;s:4:\"ajax\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(208,1,'civicrm/api/json',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:14:\"CRM_Utils_REST\";i:1;s:8:\"ajaxJson\";}',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:14:\"CiviCRM API v3\";s:3:\"url\";s:51:\"/civicrm-master/index.php?q=civicrm/api&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(209,1,'civicrm/inline',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:14:\"CRM_Utils_REST\";i:1;s:12:\"loadTemplate\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(210,1,'civicrm/ajax/chart',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:38:\"CRM_Contribute_Form_ContributionCharts\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(211,1,'civicrm/asset/builder',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"*always allow*\";}i:1;s:3:\"and\";}','a:2:{i:0;s:23:\"\\Civi\\Core\\AssetBuilder\";i:1;s:7:\"pageRun\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(212,1,'civicrm/contribute/ajax/tableview',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:29:\"CRM_Contribute_Page_DashBoard\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:58:\"/civicrm-master/index.php?q=civicrm/contribute&reset=1\";}}',NULL,NULL,2,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(213,1,'civicrm/payment/ipn',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','a:2:{i:0;s:16:\"CRM_Core_Payment\";i:1;s:9:\"handleIPN\";}',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:11:\"New Payment\";s:3:\"url\";s:70:\"/civicrm-master/index.php?q=civicrm/payment&reset=1&action=add\";}}',NULL,NULL,2,NULL,1,NULL,0,1,1,0,NULL,'a:0:{}'),(214,1,'civicrm/batch',NULL,'Batch Data Entry','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:20:\"CRM_Batch_Page_Batch\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(215,1,'civicrm/batch/add',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:20:\"CRM_Batch_Form_Batch\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:16:\"Batch Data Entry\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/batch&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(216,1,'civicrm/batch/entry',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:20:\"CRM_Batch_Form_Entry\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:16:\"Batch Data Entry\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/batch&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(217,1,'civicrm/ajax/batch',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','a:2:{i:0;s:19:\"CRM_Batch_Page_AJAX\";i:1;s:9:\"batchSave\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(218,1,'civicrm/ajax/batchlist',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:19:\"CRM_Batch_Page_AJAX\";i:1;s:12:\"getBatchList\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(219,1,'civicrm/ajax/inline',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:18:\"CRM_Core_Page_AJAX\";i:1;s:3:\"run\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(220,1,'civicrm/dev/qunit',NULL,'QUnit','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','s:19:\"CRM_Core_Page_QUnit\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(221,1,'civicrm/profile-editor/schema',NULL,'ProfileEditor','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:25:\"CRM_UF_Page_ProfileEditor\";i:1;s:13:\"getSchemaJSON\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(222,1,'civicrm/a',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:23:\"\\Civi\\Angular\\Page\\Main\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(223,1,'civicrm/ajax/angular-modules',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"*always allow*\";}i:1;s:3:\"and\";}','s:26:\"\\Civi\\Angular\\Page\\Modules\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(224,1,'civicrm/ajax/recurringentity/update-mode',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:34:\"CRM_Core_Page_AJAX_RecurringEntity\";i:1;s:10:\"updateMode\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(225,1,'civicrm/recurringentity/preview',NULL,'Confirm dates','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:36:\"CRM_Core_Page_RecurringEntityPreview\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(226,1,'civicrm/ajax/l10n-js',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:18:\"CRM_Core_Resources\";i:1;s:20:\"outputLocalizationJS\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(227,1,'civicrm/shortcode',NULL,'Insert CiviCRM Content','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:23:\"CRM_Core_Form_ShortCode\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(228,1,'civicrm/task/add-to-group',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:32:\"CRM_Contact_Form_Task_AddToGroup\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(229,1,'civicrm/task/remove-from-group',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:37:\"CRM_Contact_Form_Task_RemoveFromGroup\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(230,1,'civicrm/task/add-to-tag',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:30:\"CRM_Contact_Form_Task_AddToTag\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(231,1,'civicrm/task/remove-from-tag',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:35:\"CRM_Contact_Form_Task_RemoveFromTag\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(232,1,'civicrm/task/send-email',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:27:\"CRM_Contact_Form_Task_Email\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(233,1,'civicrm/task/make-mailing-label',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:27:\"CRM_Contact_Form_Task_Label\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(234,1,'civicrm/task/pick-profile',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:33:\"CRM_Contact_Form_Task_PickProfile\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(235,1,'civicrm/task/print-document',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:25:\"CRM_Contact_Form_Task_PDF\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(236,1,'civicrm/task/unhold-email',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:28:\"CRM_Contact_Form_Task_Unhold\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(237,1,'civicrm/task/alter-contact-preference',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:38:\"CRM_Contact_Form_Task_AlterPreferences\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(238,1,'civicrm/task/delete-contact',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:28:\"CRM_Contact_Form_Task_Delete\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(239,1,'civicrm/payment/form',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:26:\"CRM_Financial_Form_Payment\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:11:\"New Payment\";s:3:\"url\";s:70:\"/civicrm-master/index.php?q=civicrm/payment&reset=1&action=add\";}}',NULL,NULL,2,NULL,1,NULL,0,0,1,0,NULL,'a:0:{}'),(240,1,'civicrm/payment/edit',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:30:\"CRM_Financial_Form_PaymentEdit\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:11:\"New Payment\";s:3:\"url\";s:70:\"/civicrm-master/index.php?q=civicrm/payment&reset=1&action=add\";}}',NULL,NULL,2,NULL,NULL,NULL,0,1,1,0,NULL,'a:1:{s:9:\"component\";s:14:\"CiviContribute\";}'),(241,1,'civicrm/pcp',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:16:\"CRM_PCP_Form_PCP\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,NULL,NULL,1,NULL,0,1,1,0,NULL,'a:0:{}'),(242,1,'civicrm/pcp/campaign',NULL,'Setup a Personal Campaign Page - Account Information','s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:25:\"make online contributions\";}i:1;s:3:\"and\";}','s:22:\"CRM_PCP_Controller_PCP\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,NULL,NULL,1,NULL,0,0,1,0,NULL,'a:0:{}'),(243,1,'civicrm/pcp/info',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:20:\"CRM_PCP_Page_PCPInfo\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,NULL,NULL,1,NULL,0,1,1,0,NULL,'a:0:{}'),(244,1,'civicrm/admin/pcp','context=contribute','Personal Campaign Pages','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:16:\"CRM_PCP_Page_PCP\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/admin&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,362,1,0,NULL,'a:3:{s:4:\"desc\";s:49:\"View and manage existing personal campaign pages.\";s:10:\"adminGroup\";s:14:\"CiviContribute\";s:4:\"icon\";s:34:\"admin/small/contribution_types.png\";}'),(245,1,'civicrm/profile',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:23:\"CRM_Profile_Page_Router\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,NULL,NULL,1,NULL,0,0,1,0,NULL,'a:0:{}'),(246,1,'civicrm/profile/create',NULL,'CiviCRM Profile Create','s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:23:\"CRM_Profile_Page_Router\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,NULL,NULL,1,NULL,0,0,1,0,NULL,'a:0:{}'),(247,1,'civicrm/profile/view',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:21:\"CRM_Profile_Page_View\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,NULL,NULL,1,NULL,0,1,1,0,NULL,'a:0:{}'),(248,1,'civicrm/tag',NULL,'Tags (Categories)','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:11:\"manage tags\";}i:1;s:2:\"or\";}','s:16:\"CRM_Tag_Page_Tag\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,25,1,0,NULL,'a:3:{s:4:\"desc\";s:158:\"Tags are useful for segmenting the contacts in your database into categories (e.g. Staff Member, Donor, Volunteer, etc.). Create and edit available tags here.\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";s:4:\"icon\";s:18:\"admin/small/11.png\";}'),(249,1,'civicrm/tag/edit','action=add','New Tag','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:11:\"manage tags\";}i:1;s:2:\"or\";}','s:17:\"CRM_Tag_Form_Edit\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:17:\"Tags (Categories)\";s:3:\"url\";s:51:\"/civicrm-master/index.php?q=civicrm/tag&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(250,1,'civicrm/tag/merge',NULL,'Merge Tags','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:11:\"manage tags\";}i:1;s:2:\"or\";}','s:18:\"CRM_Tag_Form_Merge\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:17:\"Tags (Categories)\";s:3:\"url\";s:51:\"/civicrm-master/index.php?q=civicrm/tag&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(251,1,'civicrm/ajax/tagTree',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:11:\"manage tags\";}i:1;s:2:\"or\";}','a:2:{i:0;s:19:\"CRM_Admin_Page_AJAX\";i:1;s:10:\"getTagTree\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(252,1,'civicrm/event',NULL,'CiviEvent Dashboard','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:24:\"CRM_Event_Page_DashBoard\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,1,NULL,NULL,NULL,0,800,1,1,NULL,'a:1:{s:9:\"component\";s:9:\"CiviEvent\";}'),(253,1,'civicrm/participant/add','action=add','Register New Participant','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:18:\"CRM_Event_Page_Tab\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:1:{s:9:\"component\";s:9:\"CiviEvent\";}'),(254,1,'civicrm/event/info',NULL,'Event Information','s:1:\"1\";','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:24:\"CRM_Event_Page_EventInfo\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/event&reset=1\";}}',NULL,NULL,1,NULL,1,NULL,0,1,1,0,NULL,'a:0:{}'),(255,1,'civicrm/event/register',NULL,'Event Registration','s:1:\"1\";','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:33:\"CRM_Event_Controller_Registration\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/event&reset=1\";}}',NULL,NULL,1,NULL,1,NULL,1,1,1,0,NULL,'a:0:{}'),(256,1,'civicrm/event/confirm',NULL,'Confirm Event Registration','s:1:\"1\";','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:46:\"CRM_Event_Form_Registration_ParticipantConfirm\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/event&reset=1\";}}',NULL,NULL,1,NULL,1,NULL,1,1,1,0,NULL,'a:0:{}'),(257,1,'civicrm/event/ical',NULL,'Current and Upcoming Events','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:15:\"view event info\";}i:1;s:3:\"and\";}','s:24:\"CRM_Event_Page_ICalendar\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/event&reset=1\";}}',NULL,NULL,1,NULL,1,NULL,0,0,1,0,NULL,'a:0:{}'),(258,1,'civicrm/event/participant',NULL,'Event Participants List','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:23:\"view event participants\";}i:1;s:3:\"and\";}','s:33:\"CRM_Event_Page_ParticipantListing\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/event&reset=1\";}}',NULL,NULL,1,NULL,1,NULL,0,0,1,0,NULL,'a:0:{}'),(259,1,'civicrm/admin/event',NULL,'Manage Events','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:26:\"CRM_Event_Page_ManageEvent\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/admin&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,370,1,0,NULL,'a:3:{s:4:\"desc\";s:136:\"Create and edit event configuration including times, locations, online registration forms, and fees. Links for iCal and RSS syndication.\";s:10:\"adminGroup\";s:9:\"CiviEvent\";s:4:\"icon\";s:28:\"admin/small/event_manage.png\";}'),(260,1,'civicrm/admin/eventTemplate',NULL,'Event Templates','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:28:\"CRM_Admin_Page_EventTemplate\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/admin&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,375,1,0,NULL,'a:3:{s:4:\"desc\";s:115:\"Administrators can create Event Templates - which are basically master event records pre-filled with default values\";s:10:\"adminGroup\";s:9:\"CiviEvent\";s:4:\"icon\";s:24:\"admin/small/template.png\";}'),(261,1,'civicrm/admin/options/event_type',NULL,'Event Types','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/admin&reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:61:\"/civicrm-master/index.php?q=civicrm/admin/options&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,385,1,0,NULL,'a:3:{s:4:\"desc\";s:143:\"Use Event Types to categorize your events. Event feeds can be filtered by Event Type and participant searches can use Event Type as a criteria.\";s:10:\"adminGroup\";s:9:\"CiviEvent\";s:4:\"icon\";s:26:\"admin/small/event_type.png\";}'),(262,1,'civicrm/admin/participant_status',NULL,'Participant Status','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:36:\"CRM_Admin_Page_ParticipantStatusType\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/admin&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,390,1,0,NULL,'a:3:{s:4:\"desc\";s:154:\"Define statuses for event participants here (e.g. Registered, Attended, Cancelled...). You can then assign statuses and search for participants by status.\";s:10:\"adminGroup\";s:9:\"CiviEvent\";s:4:\"icon\";s:28:\"admin/small/parti_status.png\";}'),(263,1,'civicrm/admin/options/participant_role',NULL,'Participant Role','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/admin&reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:61:\"/civicrm-master/index.php?q=civicrm/admin/options&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,395,1,0,NULL,'a:3:{s:4:\"desc\";s:138:\"Define participant roles for events here (e.g. Attendee, Host, Speaker...). You can then assign roles and search for participants by role.\";s:10:\"adminGroup\";s:9:\"CiviEvent\";s:4:\"icon\";s:26:\"admin/small/parti_role.png\";}'),(264,1,'civicrm/admin/options/participant_listing',NULL,'Participant Listing Templates','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/admin&reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:61:\"/civicrm-master/index.php?q=civicrm/admin/options&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,398,1,0,NULL,'a:3:{s:4:\"desc\";s:48:\"Template to control participant listing display.\";s:10:\"adminGroup\";s:9:\"CiviEvent\";s:4:\"icon\";s:18:\"admin/small/01.png\";}'),(265,1,'civicrm/admin/conference_slots','group=conference_slot','Conference Slot Labels','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/admin&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,415,1,0,NULL,'a:2:{s:4:\"desc\";s:35:\"Define conference slots and labels.\";s:10:\"adminGroup\";s:9:\"CiviEvent\";}'),(266,1,'civicrm/event/search',NULL,'Find Participants','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:27:\"CRM_Event_Controller_Search\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/event&reset=1\";}}',NULL,NULL,1,NULL,NULL,NULL,0,810,1,1,NULL,'a:0:{}'),(267,1,'civicrm/event/manage',NULL,'Manage Events','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:26:\"CRM_Event_Page_ManageEvent\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/event&reset=1\";}}',NULL,NULL,1,NULL,NULL,NULL,1,820,1,1,NULL,'a:0:{}'),(268,1,'civicrm/event/badge',NULL,'Print Event Name Badge','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:25:\"CRM_Event_Form_Task_Badge\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/event&reset=1\";}}',NULL,NULL,1,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(269,1,'civicrm/event/manage/settings',NULL,'Event Info and Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:36:\"CRM_Event_Form_ManageEvent_EventInfo\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/event&reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Manage Events\";s:3:\"url\";s:60:\"/civicrm-master/index.php?q=civicrm/event/manage&reset=1\";}}',NULL,NULL,1,NULL,NULL,NULL,1,910,1,0,NULL,'a:0:{}'),(270,1,'civicrm/event/manage/location',NULL,'Event Location','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:35:\"CRM_Event_Form_ManageEvent_Location\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/event&reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Manage Events\";s:3:\"url\";s:60:\"/civicrm-master/index.php?q=civicrm/event/manage&reset=1\";}}',NULL,NULL,1,NULL,NULL,NULL,1,930,1,0,NULL,'a:0:{}'),(271,1,'civicrm/event/manage/fee',NULL,'Event Fees','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:30:\"CRM_Event_Form_ManageEvent_Fee\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/event&reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Manage Events\";s:3:\"url\";s:60:\"/civicrm-master/index.php?q=civicrm/event/manage&reset=1\";}}',NULL,NULL,1,NULL,NULL,NULL,1,920,1,0,NULL,'a:0:{}'),(272,1,'civicrm/event/manage/registration',NULL,'Event Online Registration','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:39:\"CRM_Event_Form_ManageEvent_Registration\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/event&reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Manage Events\";s:3:\"url\";s:60:\"/civicrm-master/index.php?q=civicrm/event/manage&reset=1\";}}',NULL,NULL,1,NULL,NULL,NULL,1,930,1,0,NULL,'a:0:{}'),(273,1,'civicrm/event/manage/friend',NULL,'Tell a Friend','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:21:\"CRM_Friend_Form_Event\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/event&reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Manage Events\";s:3:\"url\";s:60:\"/civicrm-master/index.php?q=civicrm/event/manage&reset=1\";}}',NULL,NULL,1,NULL,NULL,NULL,1,940,1,0,NULL,'a:0:{}'),(274,1,'civicrm/event/manage/reminder',NULL,'Schedule Reminders','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:44:\"CRM_Event_Form_ManageEvent_ScheduleReminders\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/event&reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Manage Events\";s:3:\"url\";s:60:\"/civicrm-master/index.php?q=civicrm/event/manage&reset=1\";}}',NULL,NULL,1,NULL,NULL,NULL,1,950,1,0,NULL,'a:0:{}'),(275,1,'civicrm/event/manage/repeat',NULL,'Repeat Event','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:33:\"CRM_Event_Form_ManageEvent_Repeat\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/event&reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Manage Events\";s:3:\"url\";s:60:\"/civicrm-master/index.php?q=civicrm/event/manage&reset=1\";}}',NULL,NULL,1,NULL,NULL,NULL,1,960,1,0,NULL,'a:0:{}'),(276,1,'civicrm/event/manage/conference',NULL,'Conference Slots','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:37:\"CRM_Event_Form_ManageEvent_Conference\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/event&reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Manage Events\";s:3:\"url\";s:60:\"/civicrm-master/index.php?q=civicrm/event/manage&reset=1\";}}',NULL,NULL,1,NULL,NULL,NULL,1,950,1,0,NULL,'a:0:{}'),(277,1,'civicrm/event/add','action=add','New Event','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:36:\"CRM_Event_Form_ManageEvent_EventInfo\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/event&reset=1\";}}',NULL,NULL,1,NULL,NULL,NULL,0,830,1,0,NULL,'a:0:{}'),(278,1,'civicrm/event/import',NULL,'Import Participants','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:16:\"access CiviEvent\";i:1;s:23:\"edit event participants\";}i:1;s:3:\"and\";}','s:27:\"CRM_Event_Import_Controller\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/event&reset=1\";}}',NULL,NULL,1,NULL,NULL,NULL,0,840,1,1,NULL,'a:0:{}'),(279,1,'civicrm/event/price',NULL,'Manage Price Sets','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:18:\"CRM_Price_Page_Set\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/event&reset=1\";}}',NULL,NULL,1,NULL,NULL,NULL,0,850,1,1,NULL,'a:0:{}'),(280,1,'civicrm/event/selfsvcupdate',NULL,'Self-service Registration Update','s:1:\"1\";','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:28:\"CRM_Event_Form_SelfSvcUpdate\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/event&reset=1\";}}',NULL,NULL,1,NULL,1,NULL,0,880,1,1,NULL,'a:0:{}'),(281,1,'civicrm/event/selfsvctransfer',NULL,'Self-service Registration Transfer','s:1:\"1\";','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:30:\"CRM_Event_Form_SelfSvcTransfer\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/event&reset=1\";}}',NULL,NULL,1,NULL,1,NULL,0,890,1,1,NULL,'a:0:{}'),(282,1,'civicrm/contact/view/participant',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:18:\"CRM_Event_Page_Tab\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:76:\"/civicrm-master/index.php?q=civicrm/contact/view&reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,4,1,0,NULL,'a:0:{}'),(283,1,'civicrm/ajax/eventFee',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','a:2:{i:0;s:19:\"CRM_Event_Page_AJAX\";i:1;s:8:\"eventFee\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(284,1,'civicrm/ajax/locBlock',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','a:2:{i:0;s:27:\"CRM_Core_Page_AJAX_Location\";i:1;s:11:\"getLocBlock\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(285,1,'civicrm/ajax/event/add_participant_to_cart',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:32:\"CRM_Event_Cart_Page_CheckoutAJAX\";i:1;s:23:\"add_participant_to_cart\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(286,1,'civicrm/ajax/event/remove_participant_from_cart',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:32:\"CRM_Event_Cart_Page_CheckoutAJAX\";i:1;s:28:\"remove_participant_from_cart\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(287,1,'civicrm/event/add_to_cart',NULL,'Add Event To Cart','s:1:\"1\";','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:29:\"CRM_Event_Cart_Page_AddToCart\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/event&reset=1\";}}',NULL,NULL,1,NULL,1,NULL,0,1,1,0,NULL,'a:0:{}'),(288,1,'civicrm/event/cart_checkout',NULL,'Cart Checkout','s:1:\"1\";','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:34:\"CRM_Event_Cart_Controller_Checkout\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/event&reset=1\";}}',NULL,NULL,1,NULL,1,NULL,1,1,1,0,NULL,'a:0:{}'),(289,1,'civicrm/event/remove_from_cart',NULL,'Remove From Cart','s:1:\"1\";','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:34:\"CRM_Event_Cart_Page_RemoveFromCart\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/event&reset=1\";}}',NULL,NULL,1,NULL,1,NULL,0,1,1,0,NULL,'a:0:{}'),(290,1,'civicrm/event/view_cart',NULL,'View Cart','s:1:\"1\";','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:28:\"CRM_Event_Cart_Page_ViewCart\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/event&reset=1\";}}',NULL,NULL,1,NULL,1,NULL,0,1,1,0,NULL,'a:0:{}'),(291,1,'civicrm/event/participant/feeselection',NULL,'Change Registration Selections','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:38:\"CRM_Event_Form_ParticipantFeeSelection\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/event&reset=1\";}i:2;a:2:{s:5:\"title\";s:23:\"Event Participants List\";s:3:\"url\";s:65:\"/civicrm-master/index.php?q=civicrm/event/participant&reset=1\";}}',NULL,NULL,1,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(292,1,'civicrm/event/manage/pcp',NULL,'Personal Campaign Pages','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:18:\"CRM_PCP_Form_Event\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/event&reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Manage Events\";s:3:\"url\";s:60:\"/civicrm-master/index.php?q=civicrm/event/manage&reset=1\";}}',NULL,NULL,1,NULL,NULL,NULL,1,540,1,1,NULL,'a:0:{}'),(293,1,'civicrm/event/pcp',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:16:\"CRM_PCP_Form_PCP\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/event&reset=1\";}}',NULL,NULL,1,NULL,1,NULL,0,1,1,0,NULL,'a:0:{}'),(294,1,'civicrm/event/campaign',NULL,'Setup a Personal Campaign Page - Account Information','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:25:\"make online contributions\";}i:1;s:3:\"and\";}','s:22:\"CRM_PCP_Controller_PCP\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/event&reset=1\";}}',NULL,NULL,1,NULL,1,NULL,0,0,1,0,NULL,'a:0:{}'),(295,1,'civicrm/contribute',NULL,'CiviContribute Dashboard','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:29:\"CRM_Contribute_Page_DashBoard\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,2,NULL,NULL,NULL,0,500,1,1,NULL,'a:1:{s:9:\"component\";s:14:\"CiviContribute\";}'),(296,1,'civicrm/contribute/add','action=add','New Contribution','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:23:\"CRM_Contribute_Page_Tab\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:58:\"/civicrm-master/index.php?q=civicrm/contribute&reset=1\";}}',NULL,NULL,2,NULL,NULL,NULL,0,1,1,1,NULL,'a:1:{s:9:\"component\";s:14:\"CiviContribute\";}'),(297,1,'civicrm/contribute/chart',NULL,'Contribution Summary - Chart View','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:38:\"CRM_Contribute_Form_ContributionCharts\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:58:\"/civicrm-master/index.php?q=civicrm/contribute&reset=1\";}}',NULL,NULL,2,NULL,NULL,NULL,0,1,1,0,NULL,'a:1:{s:9:\"component\";s:14:\"CiviContribute\";}'),(298,1,'civicrm/contribute/transact',NULL,'CiviContribute','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:25:\"make online contributions\";}i:1;s:3:\"and\";}','s:38:\"CRM_Contribute_Controller_Contribution\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:58:\"/civicrm-master/index.php?q=civicrm/contribute&reset=1\";}}',NULL,NULL,2,NULL,1,NULL,1,0,1,0,NULL,'a:0:{}'),(299,1,'civicrm/admin/contribute',NULL,'Manage Contribution Pages','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:36:\"CRM_Contribute_Page_ContributionPage\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/admin&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,360,1,0,NULL,'a:3:{s:4:\"desc\";s:242:\"CiviContribute allows you to create and maintain any number of Online Contribution Pages. You can create different pages for different programs or campaigns - and customize text, amounts, types of information collected from contributors, etc.\";s:10:\"adminGroup\";s:14:\"CiviContribute\";s:4:\"icon\";s:41:\"admin/small/online_contribution_pages.png\";}'),(300,1,'civicrm/admin/contribute/settings',NULL,'Title and Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:45:\"CRM_Contribute_Form_ContributionPage_Settings\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/admin&reset=1\";}i:2;a:2:{s:5:\"title\";s:25:\"Manage Contribution Pages\";s:3:\"url\";s:64:\"/civicrm-master/index.php?q=civicrm/admin/contribute&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,400,1,0,NULL,'a:0:{}'),(301,1,'civicrm/admin/contribute/amount',NULL,'Contribution Amounts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:43:\"CRM_Contribute_Form_ContributionPage_Amount\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/admin&reset=1\";}i:2;a:2:{s:5:\"title\";s:25:\"Manage Contribution Pages\";s:3:\"url\";s:64:\"/civicrm-master/index.php?q=civicrm/admin/contribute&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,410,1,0,NULL,'a:0:{}'),(302,1,'civicrm/admin/contribute/membership',NULL,'Membership Section','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:31:\"CRM_Member_Form_MembershipBlock\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/admin&reset=1\";}i:2;a:2:{s:5:\"title\";s:25:\"Manage Contribution Pages\";s:3:\"url\";s:64:\"/civicrm-master/index.php?q=civicrm/admin/contribute&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,420,1,0,NULL,'a:0:{}'),(303,1,'civicrm/admin/contribute/custom',NULL,'Include Profiles','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:43:\"CRM_Contribute_Form_ContributionPage_Custom\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/admin&reset=1\";}i:2;a:2:{s:5:\"title\";s:25:\"Manage Contribution Pages\";s:3:\"url\";s:64:\"/civicrm-master/index.php?q=civicrm/admin/contribute&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,430,1,0,NULL,'a:0:{}'),(304,1,'civicrm/admin/contribute/thankyou',NULL,'Thank-you and Receipting','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:45:\"CRM_Contribute_Form_ContributionPage_ThankYou\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/admin&reset=1\";}i:2;a:2:{s:5:\"title\";s:25:\"Manage Contribution Pages\";s:3:\"url\";s:64:\"/civicrm-master/index.php?q=civicrm/admin/contribute&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,430,1,0,NULL,'a:0:{}'),(305,1,'civicrm/admin/contribute/friend',NULL,'Tell a Friend','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Friend_Form_Contribute\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/admin&reset=1\";}i:2;a:2:{s:5:\"title\";s:25:\"Manage Contribution Pages\";s:3:\"url\";s:64:\"/civicrm-master/index.php?q=civicrm/admin/contribute&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,440,1,0,NULL,'a:0:{}'),(306,1,'civicrm/admin/contribute/widget',NULL,'Configure Widget','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:43:\"CRM_Contribute_Form_ContributionPage_Widget\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/admin&reset=1\";}i:2;a:2:{s:5:\"title\";s:25:\"Manage Contribution Pages\";s:3:\"url\";s:64:\"/civicrm-master/index.php?q=civicrm/admin/contribute&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,460,1,0,NULL,'a:0:{}'),(307,1,'civicrm/admin/contribute/premium',NULL,'Premiums','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:44:\"CRM_Contribute_Form_ContributionPage_Premium\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/admin&reset=1\";}i:2;a:2:{s:5:\"title\";s:25:\"Manage Contribution Pages\";s:3:\"url\";s:64:\"/civicrm-master/index.php?q=civicrm/admin/contribute&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,470,1,0,NULL,'a:0:{}'),(308,1,'civicrm/admin/contribute/addProductToPage',NULL,'Add Products to This Page','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:47:\"CRM_Contribute_Form_ContributionPage_AddProduct\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/admin&reset=1\";}i:2;a:2:{s:5:\"title\";s:25:\"Manage Contribution Pages\";s:3:\"url\";s:64:\"/civicrm-master/index.php?q=civicrm/admin/contribute&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,480,1,0,NULL,'a:0:{}'),(309,1,'civicrm/admin/contribute/add','action=add','New Contribution Page','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:42:\"CRM_Contribute_Controller_ContributionPage\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/admin&reset=1\";}i:2;a:2:{s:5:\"title\";s:25:\"Manage Contribution Pages\";s:3:\"url\";s:64:\"/civicrm-master/index.php?q=civicrm/admin/contribute&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,1,1,0,NULL,'a:0:{}'),(310,1,'civicrm/admin/contribute/managePremiums',NULL,'Manage Premiums','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:34:\"CRM_Contribute_Page_ManagePremiums\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/admin&reset=1\";}i:2;a:2:{s:5:\"title\";s:25:\"Manage Contribution Pages\";s:3:\"url\";s:64:\"/civicrm-master/index.php?q=civicrm/admin/contribute&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,365,1,0,NULL,'a:3:{s:4:\"desc\";s:175:\"CiviContribute allows you to configure any number of Premiums which can be offered to contributors as incentives / thank-you gifts. Define the premiums you want to offer here.\";s:10:\"adminGroup\";s:14:\"CiviContribute\";s:4:\"icon\";s:24:\"admin/small/Premiums.png\";}'),(311,1,'civicrm/admin/financial/financialType',NULL,'Financial Types','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:32:\"CRM_Financial_Page_FinancialType\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/admin&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,580,1,0,NULL,'a:2:{s:4:\"desc\";s:64:\"Formerly civicrm_contribution_type merged into this table in 4.1\";s:10:\"adminGroup\";s:14:\"CiviContribute\";}'),(312,1,'civicrm/payment','action=add','New Payment','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:37:\"CRM_Contribute_Form_AdditionalPayment\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,2,NULL,NULL,NULL,0,1,1,1,NULL,'a:1:{s:9:\"component\";s:14:\"CiviContribute\";}'),(313,1,'civicrm/admin/financial/financialAccount',NULL,'Financial Accounts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:35:\"CRM_Financial_Page_FinancialAccount\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/admin&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,370,1,0,NULL,'a:3:{s:4:\"desc\";s:128:\"Financial types are used to categorize contributions for reporting and accounting purposes. These are also referred to as Funds.\";s:10:\"adminGroup\";s:14:\"CiviContribute\";s:4:\"icon\";s:34:\"admin/small/contribution_types.png\";}'),(314,1,'civicrm/admin/options/payment_instrument',NULL,'Payment Methods','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/admin&reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:61:\"/civicrm-master/index.php?q=civicrm/admin/options&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,380,1,0,NULL,'a:3:{s:4:\"desc\";s:224:\"You may choose to record the payment instrument used for each contribution. Common payment methods are installed by default (e.g. Check, Cash, Credit Card...). If your site requires additional payment methods, add them here.\";s:10:\"adminGroup\";s:14:\"CiviContribute\";s:4:\"icon\";s:35:\"admin/small/payment_instruments.png\";}'),(315,1,'civicrm/admin/options/accept_creditcard',NULL,'Accepted Credit Cards','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/admin&reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:61:\"/civicrm-master/index.php?q=civicrm/admin/options&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,395,1,0,NULL,'a:3:{s:4:\"desc\";s:94:\"Credit card options that will be offered to contributors using your Online Contribution pages.\";s:10:\"adminGroup\";s:14:\"CiviContribute\";s:4:\"icon\";s:36:\"admin/small/accepted_creditcards.png\";}'),(316,1,'civicrm/admin/options/soft_credit_type',NULL,'Soft Credit Types','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/admin&reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:61:\"/civicrm-master/index.php?q=civicrm/admin/options&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,1,1,0,NULL,'a:3:{s:4:\"desc\";s:86:\"Soft Credit Types that will be offered to contributors during soft credit contribution\";s:10:\"adminGroup\";s:14:\"CiviContribute\";s:4:\"icon\";s:32:\"admin/small/soft_credit_type.png\";}'),(317,1,'civicrm/contact/view/contribution',NULL,'Contributions','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:23:\"CRM_Contribute_Page_Tab\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:76:\"/civicrm-master/index.php?q=civicrm/contact/view&reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(318,1,'civicrm/contact/view/contributionrecur',NULL,'Recurring Contributions','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:37:\"CRM_Contribute_Page_ContributionRecur\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:76:\"/civicrm-master/index.php?q=civicrm/contact/view&reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(319,1,'civicrm/contact/view/contribution/additionalinfo',NULL,'Additional Info','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:34:\"CRM_Contribute_Form_AdditionalInfo\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:76:\"/civicrm-master/index.php?q=civicrm/contact/view&reset=1&cid=%%cid%%\";}i:2;a:2:{s:5:\"title\";s:13:\"Contributions\";s:3:\"url\";s:73:\"/civicrm-master/index.php?q=civicrm/contact/view/contribution&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(320,1,'civicrm/contribute/search',NULL,'Find Contributions','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:32:\"CRM_Contribute_Controller_Search\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:58:\"/civicrm-master/index.php?q=civicrm/contribute&reset=1\";}}',NULL,NULL,2,NULL,NULL,NULL,0,510,1,1,NULL,'a:0:{}'),(321,1,'civicrm/contribute/searchBatch',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:37:\"CRM_Contribute_Controller_SearchBatch\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:58:\"/civicrm-master/index.php?q=civicrm/contribute&reset=1\";}}',NULL,NULL,2,NULL,NULL,NULL,0,588,1,1,NULL,'a:0:{}'),(322,1,'civicrm/contribute/import',NULL,'Import Contributions','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:21:\"access CiviContribute\";i:1;s:18:\"edit contributions\";}i:1;s:3:\"and\";}','s:32:\"CRM_Contribute_Import_Controller\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:58:\"/civicrm-master/index.php?q=civicrm/contribute&reset=1\";}}',NULL,NULL,2,NULL,NULL,NULL,0,520,1,1,NULL,'a:0:{}'),(323,1,'civicrm/contribute/manage',NULL,'Manage Contribution Pages','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:36:\"CRM_Contribute_Page_ContributionPage\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:58:\"/civicrm-master/index.php?q=civicrm/contribute&reset=1\";}}',NULL,NULL,2,NULL,NULL,NULL,0,530,1,1,NULL,'a:0:{}'),(324,1,'civicrm/contribute/additionalinfo',NULL,'AdditionalInfo Form','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:34:\"CRM_Contribute_Form_AdditionalInfo\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:58:\"/civicrm-master/index.php?q=civicrm/contribute&reset=1\";}}',NULL,NULL,2,NULL,NULL,NULL,0,0,1,0,NULL,'a:0:{}'),(325,1,'civicrm/ajax/permlocation',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:25:\"make online contributions\";}i:1;s:3:\"and\";}','a:2:{i:0;s:27:\"CRM_Core_Page_AJAX_Location\";i:1;s:23:\"getPermissionedLocation\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(326,1,'civicrm/contribute/unsubscribe',NULL,'Cancel Subscription','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:25:\"make online contributions\";}i:1;s:3:\"and\";}','s:38:\"CRM_Contribute_Form_CancelSubscription\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:58:\"/civicrm-master/index.php?q=civicrm/contribute&reset=1\";}}',NULL,NULL,2,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(327,1,'civicrm/contribute/onbehalf',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:25:\"make online contributions\";}i:1;s:3:\"and\";}','s:43:\"CRM_Contribute_Form_Contribution_OnBehalfOf\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:58:\"/civicrm-master/index.php?q=civicrm/contribute&reset=1\";}}',NULL,NULL,2,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(328,1,'civicrm/contribute/updatebilling',NULL,'Update Billing Details','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:25:\"make online contributions\";}i:1;s:3:\"and\";}','s:33:\"CRM_Contribute_Form_UpdateBilling\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:58:\"/civicrm-master/index.php?q=civicrm/contribute&reset=1\";}}',NULL,NULL,2,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(329,1,'civicrm/contribute/updaterecur',NULL,'Update Subscription','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:25:\"make online contributions\";}i:1;s:3:\"and\";}','s:38:\"CRM_Contribute_Form_UpdateSubscription\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:58:\"/civicrm-master/index.php?q=civicrm/contribute&reset=1\";}}',NULL,NULL,2,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(330,1,'civicrm/contribute/subscriptionstatus',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:25:\"make online contributions\";}i:1;s:3:\"and\";}','s:38:\"CRM_Contribute_Page_SubscriptionStatus\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:58:\"/civicrm-master/index.php?q=civicrm/contribute&reset=1\";}}',NULL,NULL,2,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(331,1,'civicrm/admin/financial/financialType/accounts',NULL,'Financial Type Accounts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:39:\"CRM_Financial_Page_FinancialTypeAccount\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/admin&reset=1\";}i:2;a:2:{s:5:\"title\";s:15:\"Financial Types\";s:3:\"url\";s:77:\"/civicrm-master/index.php?q=civicrm/admin/financial/financialType&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,581,1,0,NULL,'a:0:{}'),(332,1,'civicrm/financial/batch',NULL,'Accounting Batch','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:19:\"create manual batch\";}i:1;s:3:\"and\";}','s:33:\"CRM_Financial_Page_FinancialBatch\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,585,1,0,NULL,'a:0:{}'),(333,1,'civicrm/financial/financialbatches',NULL,'Accounting Batches','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:24:\"CRM_Financial_Page_Batch\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,586,1,0,NULL,'a:0:{}'),(334,1,'civicrm/batchtransaction',NULL,'Accounting Batch','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:35:\"CRM_Financial_Page_BatchTransaction\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,600,1,0,NULL,'a:0:{}'),(335,1,'civicrm/financial/batch/export',NULL,'Accounting Batch Export','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:19:\"create manual batch\";}i:1;s:3:\"and\";}','s:25:\"CRM_Financial_Form_Export\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:16:\"Accounting Batch\";s:3:\"url\";s:63:\"/civicrm-master/index.php?q=civicrm/financial/batch&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,610,1,0,NULL,'a:0:{}'),(336,1,'civicrm/payment/view','action=view','View Payment','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:31:\"CRM_Contribute_Page_PaymentInfo\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:11:\"New Payment\";s:3:\"url\";s:70:\"/civicrm-master/index.php?q=civicrm/payment&reset=1&action=add\";}}',NULL,NULL,2,NULL,NULL,NULL,0,1,1,1,NULL,'a:1:{s:9:\"component\";s:14:\"CiviContribute\";}'),(337,1,'civicrm/admin/setting/preferences/contribute',NULL,'CiviContribute Component Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:21:\"access CiviContribute\";i:1;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','s:37:\"CRM_Admin_Form_Preferences_Contribute\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/admin&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,1,1,0,NULL,'a:2:{s:4:\"desc\";s:42:\"Configure global CiviContribute behaviors.\";s:10:\"adminGroup\";s:14:\"CiviContribute\";}'),(338,1,'civicrm/contribute/invoice',NULL,'PDF Invoice','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:20:\"checkDownloadInvoice\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','a:2:{i:0;s:32:\"CRM_Contribute_Form_Task_Invoice\";i:1;s:11:\"getPrintPDF\";}',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:58:\"/civicrm-master/index.php?q=civicrm/contribute&reset=1\";}}',NULL,NULL,2,NULL,NULL,NULL,0,620,1,1,NULL,'a:1:{s:9:\"component\";s:14:\"CiviContribute\";}'),(339,1,'civicrm/contribute/invoice/email',NULL,'Email Invoice','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:20:\"checkDownloadInvoice\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:32:\"CRM_Contribute_Form_Task_Invoice\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:58:\"/civicrm-master/index.php?q=civicrm/contribute&reset=1\";}i:2;a:2:{s:5:\"title\";s:11:\"PDF Invoice\";s:3:\"url\";s:66:\"/civicrm-master/index.php?q=civicrm/contribute/invoice&reset=1\";}}',NULL,NULL,2,NULL,NULL,NULL,0,630,1,1,NULL,'a:1:{s:9:\"component\";s:14:\"CiviContribute\";}'),(340,1,'civicrm/ajax/softcontributionlist',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:24:\"CRM_Contribute_Page_AJAX\";i:1;s:23:\"getSoftContributionRows\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(341,1,'civicrm/contribute/contributionrecur-payments',NULL,'Recurring Contribution\'s Payments','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:45:\"CRM_Contribute_Page_ContributionRecurPayments\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:58:\"/civicrm-master/index.php?q=civicrm/contribute&reset=1\";}}',NULL,NULL,2,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(342,1,'civicrm/membership/recurring-contributions',NULL,'Membership Recurring Contributions','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:38:\"CRM_Member_Page_RecurringContributions\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(343,1,'civicrm/admin/contribute/pcp',NULL,'Personal Campaign Pages','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:23:\"CRM_PCP_Form_Contribute\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/admin&reset=1\";}i:2;a:2:{s:5:\"title\";s:25:\"Manage Contribution Pages\";s:3:\"url\";s:64:\"/civicrm-master/index.php?q=civicrm/admin/contribute&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,450,1,0,NULL,'a:0:{}'),(344,1,'civicrm/contribute/campaign',NULL,'Setup a Personal Campaign Page - Account Information','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:25:\"make online contributions\";}i:1;s:3:\"and\";}','s:22:\"CRM_PCP_Controller_PCP\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:58:\"/civicrm-master/index.php?q=civicrm/contribute&reset=1\";}}',NULL,NULL,2,NULL,1,NULL,0,0,1,0,NULL,'a:0:{}'),(345,1,'civicrm/member',NULL,'CiviMember Dashboard','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:17:\"access CiviMember\";}i:1;s:3:\"and\";}','s:25:\"CRM_Member_Page_DashBoard\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,3,NULL,NULL,NULL,0,700,1,1,NULL,'a:1:{s:9:\"component\";s:10:\"CiviMember\";}'),(346,1,'civicrm/member/add','action=add','New Membership','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:17:\"access CiviMember\";}i:1;s:3:\"and\";}','s:19:\"CRM_Member_Page_Tab\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:20:\"CiviMember Dashboard\";s:3:\"url\";s:54:\"/civicrm-master/index.php?q=civicrm/member&reset=1\";}}',NULL,NULL,3,NULL,NULL,NULL,0,1,1,0,NULL,'a:1:{s:9:\"component\";s:10:\"CiviMember\";}'),(347,1,'civicrm/admin/member/membershipType',NULL,'Membership Types','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:30:\"CRM_Member_Page_MembershipType\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/admin&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,370,1,0,NULL,'a:3:{s:4:\"desc\";s:174:\"Define the types of memberships you want to offer. For each type, you can specify a \'name\' (Gold Member, Honor Society Member...), a description, duration, and a minimum fee.\";s:10:\"adminGroup\";s:10:\"CiviMember\";s:4:\"icon\";s:31:\"admin/small/membership_type.png\";}'),(348,1,'civicrm/admin/member/membershipStatus',NULL,'Membership Status Rules','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:32:\"CRM_Member_Page_MembershipStatus\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/admin&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,380,1,0,NULL,'a:3:{s:4:\"desc\";s:187:\"Status \'rules\' define the current status for a membership based on that membership\'s start and end dates. You can adjust the default status options and rules as needed to meet your needs.\";s:10:\"adminGroup\";s:10:\"CiviMember\";s:4:\"icon\";s:33:\"admin/small/membership_status.png\";}'),(349,1,'civicrm/contact/view/membership','force=1,cid=%%cid%%','Memberships','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:19:\"CRM_Member_Page_Tab\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:76:\"/civicrm-master/index.php?q=civicrm/contact/view&reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,2,1,0,NULL,'a:0:{}'),(350,1,'civicrm/membership/view',NULL,'Memberships','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:17:\"access CiviMember\";}i:1;s:3:\"and\";}','s:30:\"CRM_Member_Form_MembershipView\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,390,1,0,NULL,'a:0:{}'),(351,1,'civicrm/member/search',NULL,'Find Memberships','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:17:\"access CiviMember\";}i:1;s:3:\"and\";}','s:28:\"CRM_Member_Controller_Search\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:20:\"CiviMember Dashboard\";s:3:\"url\";s:54:\"/civicrm-master/index.php?q=civicrm/member&reset=1\";}}',NULL,NULL,3,NULL,NULL,NULL,0,710,1,1,NULL,'a:0:{}'),(352,1,'civicrm/member/import',NULL,'Import Memberships','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:17:\"access CiviMember\";i:1;s:16:\"edit memberships\";}i:1;s:3:\"and\";}','s:28:\"CRM_Member_Import_Controller\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:20:\"CiviMember Dashboard\";s:3:\"url\";s:54:\"/civicrm-master/index.php?q=civicrm/member&reset=1\";}}',NULL,NULL,3,NULL,NULL,NULL,0,720,1,1,NULL,'a:0:{}'),(353,1,'civicrm/ajax/memType',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:17:\"access CiviMember\";}i:1;s:3:\"and\";}','a:2:{i:0;s:20:\"CRM_Member_Page_AJAX\";i:1;s:21:\"getMemberTypeDefaults\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(354,1,'civicrm/admin/member/membershipType/add',NULL,'Membership Types','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:17:\"access CiviMember\";i:1;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','s:30:\"CRM_Member_Form_MembershipType\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/admin&reset=1\";}i:2;a:2:{s:5:\"title\";s:16:\"Membership Types\";s:3:\"url\";s:75:\"/civicrm-master/index.php?q=civicrm/admin/member/membershipType&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,1,1,0,NULL,'a:0:{}'),(355,1,'civicrm/mailing',NULL,'CiviMail','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:15:\"access CiviMail\";i:1;s:15:\"create mailings\";i:2;s:8:\"send SMS\";}i:1;s:2:\"or\";}','s:23:\"CRM_Mailing_Page_Browse\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,4,NULL,NULL,NULL,0,600,1,1,NULL,'a:1:{s:9:\"component\";s:8:\"CiviMail\";}'),(356,1,'civicrm/admin/mail',NULL,'Mailer Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"access CiviMail\";}i:1;s:3:\"and\";}','s:27:\"CRM_Admin_Form_Setting_Mail\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/admin&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,400,1,0,NULL,'a:3:{s:4:\"desc\";s:61:\"Configure spool period, throttling and other mailer settings.\";s:10:\"adminGroup\";s:8:\"CiviMail\";s:4:\"icon\";s:18:\"admin/small/07.png\";}'),(357,1,'civicrm/admin/component',NULL,'Headers, Footers, and Automated Messages','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"access CiviMail\";}i:1;s:3:\"and\";}','s:26:\"CRM_Mailing_Page_Component\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/admin&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,410,1,0,NULL,'a:3:{s:4:\"desc\";s:143:\"Configure the header and footer used for mailings. Customize the content of automated Subscribe, Unsubscribe, Resubscribe and Opt-out messages.\";s:10:\"adminGroup\";s:8:\"CiviMail\";s:4:\"icon\";s:23:\"admin/small/Profile.png\";}'),(358,1,'civicrm/admin/options/from_email_address/civimail',NULL,'From Email Addresses','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:4:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/admin&reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:61:\"/civicrm-master/index.php?q=civicrm/admin/options&reset=1\";}i:3;a:2:{s:5:\"title\";s:20:\"From Email Addresses\";s:3:\"url\";s:80:\"/civicrm-master/index.php?q=civicrm/admin/options/from_email_address&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,415,1,0,NULL,'a:3:{s:4:\"desc\";s:74:\"List of Email Addresses which can be used when sending emails to contacts.\";s:10:\"adminGroup\";s:8:\"CiviMail\";s:4:\"icon\";s:21:\"admin/small/title.png\";}'),(359,1,'civicrm/admin/mailSettings',NULL,'Mail Accounts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"access CiviMail\";}i:1;s:3:\"and\";}','s:27:\"CRM_Admin_Page_MailSettings\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/admin&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,420,1,0,NULL,'a:3:{s:4:\"desc\";s:32:\"Configure email account setting.\";s:10:\"adminGroup\";s:8:\"CiviMail\";s:4:\"icon\";s:18:\"admin/small/07.png\";}'),(360,1,'civicrm/mailing/send',NULL,'New Mailing','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:15:\"access CiviMail\";i:1;s:15:\"create mailings\";i:2;s:17:\"schedule mailings\";}i:1;s:2:\"or\";}','s:27:\"CRM_Mailing_Controller_Send\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:8:\"CiviMail\";s:3:\"url\";s:55:\"/civicrm-master/index.php?q=civicrm/mailing&reset=1\";}}',NULL,NULL,4,NULL,NULL,NULL,0,610,1,1,NULL,'a:0:{}'),(361,1,'civicrm/mailing/browse/scheduled','scheduled=true','Find Mailings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:5:{i:0;s:15:\"access CiviMail\";i:1;s:16:\"approve mailings\";i:2;s:15:\"create mailings\";i:3;s:17:\"schedule mailings\";i:4;s:8:\"send SMS\";}i:1;s:2:\"or\";}','s:23:\"CRM_Mailing_Page_Browse\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:8:\"CiviMail\";s:3:\"url\";s:55:\"/civicrm-master/index.php?q=civicrm/mailing&reset=1\";}}',NULL,NULL,4,NULL,NULL,NULL,0,620,1,1,NULL,'a:0:{}'),(362,1,'civicrm/mailing/browse/unscheduled','scheduled=false','Find Mailings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:15:\"access CiviMail\";i:1;s:15:\"create mailings\";i:2;s:17:\"schedule mailings\";}i:1;s:2:\"or\";}','s:23:\"CRM_Mailing_Page_Browse\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:8:\"CiviMail\";s:3:\"url\";s:55:\"/civicrm-master/index.php?q=civicrm/mailing&reset=1\";}}',NULL,NULL,4,NULL,NULL,NULL,0,620,1,1,NULL,'a:0:{}'),(363,1,'civicrm/mailing/browse/archived',NULL,'Find Mailings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:15:\"access CiviMail\";i:1;s:15:\"create mailings\";}i:1;s:2:\"or\";}','s:23:\"CRM_Mailing_Page_Browse\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:8:\"CiviMail\";s:3:\"url\";s:55:\"/civicrm-master/index.php?q=civicrm/mailing&reset=1\";}}',NULL,NULL,4,NULL,NULL,NULL,0,625,1,1,NULL,'a:0:{}'),(364,1,'civicrm/mailing/component',NULL,'Headers, Footers, and Automated Messages','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Mailing_Page_Component\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:8:\"CiviMail\";s:3:\"url\";s:55:\"/civicrm-master/index.php?q=civicrm/mailing&reset=1\";}}',NULL,NULL,4,NULL,NULL,NULL,0,630,1,1,NULL,'a:0:{}'),(365,1,'civicrm/mailing/unsubscribe',NULL,'Unsubscribe','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:43:\"access CiviMail subscribe/unsubscribe pages\";}i:1;s:3:\"and\";}','s:28:\"CRM_Mailing_Form_Unsubscribe\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:8:\"CiviMail\";s:3:\"url\";s:55:\"/civicrm-master/index.php?q=civicrm/mailing&reset=1\";}}',NULL,NULL,4,NULL,1,NULL,0,640,1,0,NULL,'a:0:{}'),(366,1,'civicrm/mailing/resubscribe',NULL,'Resubscribe','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:43:\"access CiviMail subscribe/unsubscribe pages\";}i:1;s:3:\"and\";}','s:28:\"CRM_Mailing_Page_Resubscribe\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:8:\"CiviMail\";s:3:\"url\";s:55:\"/civicrm-master/index.php?q=civicrm/mailing&reset=1\";}}',NULL,NULL,4,NULL,1,NULL,0,645,1,0,NULL,'a:0:{}'),(367,1,'civicrm/mailing/optout',NULL,'Opt-out','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:43:\"access CiviMail subscribe/unsubscribe pages\";}i:1;s:3:\"and\";}','s:23:\"CRM_Mailing_Form_Optout\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:8:\"CiviMail\";s:3:\"url\";s:55:\"/civicrm-master/index.php?q=civicrm/mailing&reset=1\";}}',NULL,NULL,4,NULL,1,NULL,0,650,1,0,NULL,'a:0:{}'),(368,1,'civicrm/mailing/confirm',NULL,'Confirm','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:43:\"access CiviMail subscribe/unsubscribe pages\";}i:1;s:3:\"and\";}','s:24:\"CRM_Mailing_Page_Confirm\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:8:\"CiviMail\";s:3:\"url\";s:55:\"/civicrm-master/index.php?q=civicrm/mailing&reset=1\";}}',NULL,NULL,4,NULL,1,NULL,0,660,1,0,NULL,'a:0:{}'),(369,1,'civicrm/mailing/subscribe',NULL,'Subscribe','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:43:\"access CiviMail subscribe/unsubscribe pages\";}i:1;s:3:\"and\";}','s:26:\"CRM_Mailing_Form_Subscribe\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:8:\"CiviMail\";s:3:\"url\";s:55:\"/civicrm-master/index.php?q=civicrm/mailing&reset=1\";}}',NULL,NULL,4,NULL,1,NULL,0,660,1,0,NULL,'a:0:{}'),(370,1,'civicrm/mailing/preview',NULL,'Preview Mailing','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:4:{i:0;s:15:\"access CiviMail\";i:1;s:16:\"approve mailings\";i:2;s:15:\"create mailings\";i:3;s:17:\"schedule mailings\";}i:1;s:2:\"or\";}','s:24:\"CRM_Mailing_Page_Preview\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:8:\"CiviMail\";s:3:\"url\";s:55:\"/civicrm-master/index.php?q=civicrm/mailing&reset=1\";}}',NULL,NULL,4,NULL,NULL,NULL,0,670,1,0,NULL,'a:0:{}'),(371,1,'civicrm/mailing/report','mid=%%mid%%','Mailing Report','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:15:\"access CiviMail\";i:1;s:15:\"create mailings\";}i:1;s:2:\"or\";}','s:23:\"CRM_Mailing_Page_Report\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:8:\"CiviMail\";s:3:\"url\";s:55:\"/civicrm-master/index.php?q=civicrm/mailing&reset=1\";}}',NULL,NULL,4,NULL,NULL,NULL,0,680,1,0,NULL,'a:0:{}'),(372,1,'civicrm/mailing/forward',NULL,'Forward Mailing','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:43:\"access CiviMail subscribe/unsubscribe pages\";}i:1;s:3:\"and\";}','s:31:\"CRM_Mailing_Form_ForwardMailing\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:8:\"CiviMail\";s:3:\"url\";s:55:\"/civicrm-master/index.php?q=civicrm/mailing&reset=1\";}}',NULL,NULL,4,NULL,1,NULL,0,685,1,0,NULL,'a:0:{}'),(373,1,'civicrm/mailing/queue',NULL,'Sending Mail','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:15:\"access CiviMail\";}i:1;s:3:\"and\";}','s:23:\"CRM_Mailing_Page_Browse\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:8:\"CiviMail\";s:3:\"url\";s:55:\"/civicrm-master/index.php?q=civicrm/mailing&reset=1\";}}',NULL,NULL,4,NULL,NULL,NULL,0,690,1,0,NULL,'a:0:{}'),(374,1,'civicrm/mailing/report/event',NULL,'Mailing Event','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:15:\"access CiviMail\";}i:1;s:3:\"and\";}','s:22:\"CRM_Mailing_Page_Event\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:8:\"CiviMail\";s:3:\"url\";s:55:\"/civicrm-master/index.php?q=civicrm/mailing&reset=1\";}i:2;a:2:{s:5:\"title\";s:14:\"Mailing Report\";s:3:\"url\";s:78:\"/civicrm-master/index.php?q=civicrm/mailing/report&reset=1&mid=%%mid%%\";}}',NULL,NULL,4,NULL,NULL,NULL,0,695,1,0,NULL,'a:0:{}'),(375,1,'civicrm/ajax/template',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Mailing_Page_AJAX\";i:1;s:8:\"template\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(376,1,'civicrm/mailing/view',NULL,'View Mailing','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:28:\"view public CiviMail content\";i:1;s:15:\"access CiviMail\";i:2;s:16:\"approve mailings\";}i:1;s:2:\"or\";}','s:21:\"CRM_Mailing_Page_View\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:8:\"CiviMail\";s:3:\"url\";s:55:\"/civicrm-master/index.php?q=civicrm/mailing&reset=1\";}}',NULL,NULL,4,NULL,1,NULL,0,800,1,0,NULL,'a:0:{}'),(377,1,'civicrm/mailing/approve',NULL,'Approve Mailing','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:15:\"access CiviMail\";i:1;s:16:\"approve mailings\";}i:1;s:2:\"or\";}','s:24:\"CRM_Mailing_Form_Approve\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:8:\"CiviMail\";s:3:\"url\";s:55:\"/civicrm-master/index.php?q=civicrm/mailing&reset=1\";}}',NULL,NULL,4,NULL,NULL,NULL,0,850,1,0,NULL,'a:0:{}'),(378,1,'civicrm/contact/view/mailing',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:20:\"CRM_Mailing_Page_Tab\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:76:\"/civicrm-master/index.php?q=civicrm/contact/view&reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(379,1,'civicrm/ajax/contactmailing',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Mailing_Page_AJAX\";i:1;s:18:\"getContactMailings\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(380,1,'civicrm/grant',NULL,'CiviGrant Dashboard','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviGrant\";}i:1;s:3:\"and\";}','s:24:\"CRM_Grant_Page_DashBoard\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,5,NULL,NULL,NULL,0,1000,1,1,NULL,'a:1:{s:9:\"component\";s:9:\"CiviGrant\";}'),(381,1,'civicrm/grant/info',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviGrant\";}i:1;s:3:\"and\";}','s:24:\"CRM_Grant_Page_DashBoard\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviGrant Dashboard\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/grant&reset=1\";}}',NULL,NULL,5,NULL,NULL,NULL,0,0,1,0,NULL,'a:0:{}'),(382,1,'civicrm/grant/search',NULL,'Find Grants','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviGrant\";}i:1;s:3:\"and\";}','s:27:\"CRM_Grant_Controller_Search\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviGrant Dashboard\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/grant&reset=1\";}}',NULL,NULL,5,NULL,NULL,NULL,0,1010,1,1,NULL,'a:0:{}'),(383,1,'civicrm/grant/add','action=add','New Grant','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviGrant\";}i:1;s:3:\"and\";}','s:18:\"CRM_Grant_Page_Tab\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviGrant Dashboard\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/grant&reset=1\";}}',NULL,NULL,5,NULL,NULL,NULL,0,1,1,1,NULL,'a:1:{s:9:\"component\";s:9:\"CiviGrant\";}'),(384,1,'civicrm/contact/view/grant',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviGrant\";}i:1;s:3:\"and\";}','s:18:\"CRM_Grant_Page_Tab\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:76:\"/civicrm-master/index.php?q=civicrm/contact/view&reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(385,1,'civicrm/pledge',NULL,'CiviPledge Dashboard','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:17:\"access CiviPledge\";}i:1;s:3:\"and\";}','s:25:\"CRM_Pledge_Page_DashBoard\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,6,NULL,NULL,NULL,0,550,1,1,NULL,'a:1:{s:9:\"component\";s:10:\"CiviPledge\";}'),(386,1,'civicrm/pledge/search',NULL,'Find Pledges','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:17:\"access CiviPledge\";}i:1;s:3:\"and\";}','s:28:\"CRM_Pledge_Controller_Search\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:20:\"CiviPledge Dashboard\";s:3:\"url\";s:54:\"/civicrm-master/index.php?q=civicrm/pledge&reset=1\";}}',NULL,NULL,6,NULL,NULL,NULL,0,560,1,1,NULL,'a:0:{}'),(387,1,'civicrm/contact/view/pledge','force=1,cid=%%cid%%','Pledges','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:17:\"access CiviPledge\";}i:1;s:3:\"and\";}','s:19:\"CRM_Pledge_Page_Tab\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:76:\"/civicrm-master/index.php?q=civicrm/contact/view&reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,570,1,0,NULL,'a:0:{}'),(388,1,'civicrm/pledge/add','action=add','New Pledge','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:17:\"access CiviPledge\";}i:1;s:3:\"and\";}','s:19:\"CRM_Pledge_Page_Tab\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:20:\"CiviPledge Dashboard\";s:3:\"url\";s:54:\"/civicrm-master/index.php?q=civicrm/pledge&reset=1\";}}',NULL,NULL,6,NULL,NULL,NULL,0,1,1,1,NULL,'a:1:{s:9:\"component\";s:10:\"CiviPledge\";}'),(389,1,'civicrm/pledge/payment',NULL,'Pledge Payments','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:17:\"access CiviPledge\";}i:1;s:3:\"and\";}','s:23:\"CRM_Pledge_Page_Payment\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:20:\"CiviPledge Dashboard\";s:3:\"url\";s:54:\"/civicrm-master/index.php?q=civicrm/pledge&reset=1\";}}',NULL,NULL,6,NULL,NULL,NULL,0,580,1,0,NULL,'a:0:{}'),(390,1,'civicrm/ajax/pledgeAmount',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:17:\"access CiviPledge\";i:1;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:20:\"CRM_Pledge_Page_AJAX\";i:1;s:17:\"getPledgeDefaults\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(391,1,'civicrm/case',NULL,'CiviCase Dashboard','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:23:\"CRM_Case_Page_DashBoard\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,7,NULL,NULL,NULL,0,900,1,1,NULL,'a:1:{s:9:\"component\";s:8:\"CiviCase\";}'),(392,1,'civicrm/case/add',NULL,'Open Case','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:18:\"CRM_Case_Form_Case\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"CiviCase Dashboard\";s:3:\"url\";s:52:\"/civicrm-master/index.php?q=civicrm/case&reset=1\";}}',NULL,NULL,7,NULL,NULL,NULL,0,1,1,1,NULL,'a:1:{s:9:\"component\";s:8:\"CiviCase\";}'),(393,1,'civicrm/case/search',NULL,'Find Cases','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Case_Controller_Search\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"CiviCase Dashboard\";s:3:\"url\";s:52:\"/civicrm-master/index.php?q=civicrm/case&reset=1\";}}',NULL,NULL,7,NULL,NULL,NULL,0,910,1,1,NULL,'a:0:{}'),(394,1,'civicrm/case/activity',NULL,'Case Activity','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Case_Form_Activity\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"CiviCase Dashboard\";s:3:\"url\";s:52:\"/civicrm-master/index.php?q=civicrm/case&reset=1\";}}',NULL,NULL,7,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(395,1,'civicrm/case/report',NULL,'Case Activity Audit','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:31:\"access all cases and activities\";}i:1;s:3:\"and\";}','s:20:\"CRM_Case_Form_Report\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"CiviCase Dashboard\";s:3:\"url\";s:52:\"/civicrm-master/index.php?q=civicrm/case&reset=1\";}}',NULL,NULL,7,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(396,1,'civicrm/case/cd/edit',NULL,'Case Custom Set','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:24:\"CRM_Case_Form_CustomData\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"CiviCase Dashboard\";s:3:\"url\";s:52:\"/civicrm-master/index.php?q=civicrm/case&reset=1\";}}',NULL,NULL,7,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(397,1,'civicrm/contact/view/case',NULL,'Case','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:17:\"CRM_Case_Page_Tab\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:76:\"/civicrm-master/index.php?q=civicrm/contact/view&reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(398,1,'civicrm/case/activity/view',NULL,'Activity View','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Case_Form_ActivityView\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"CiviCase Dashboard\";s:3:\"url\";s:52:\"/civicrm-master/index.php?q=civicrm/case&reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Case Activity\";s:3:\"url\";s:61:\"/civicrm-master/index.php?q=civicrm/case/activity&reset=1\";}}',NULL,NULL,7,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(399,1,'civicrm/contact/view/case/editClient',NULL,'Assign to Another Client','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:24:\"CRM_Case_Form_EditClient\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:76:\"/civicrm-master/index.php?q=civicrm/contact/view&reset=1&cid=%%cid%%\";}i:2;a:2:{s:5:\"title\";s:4:\"Case\";s:3:\"url\";s:65:\"/civicrm-master/index.php?q=civicrm/contact/view/case&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(400,1,'civicrm/case/addToCase',NULL,'File on Case','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:28:\"CRM_Case_Form_ActivityToCase\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"CiviCase Dashboard\";s:3:\"url\";s:52:\"/civicrm-master/index.php?q=civicrm/case&reset=1\";}}',NULL,NULL,7,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(401,1,'civicrm/case/details',NULL,'Case Details','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:25:\"CRM_Case_Page_CaseDetails\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"CiviCase Dashboard\";s:3:\"url\";s:52:\"/civicrm-master/index.php?q=civicrm/case&reset=1\";}}',NULL,NULL,7,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(402,1,'civicrm/admin/setting/case',NULL,'CiviCase Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:27:\"CRM_Admin_Form_Setting_Case\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/admin&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,380,1,0,NULL,'a:2:{s:10:\"adminGroup\";s:8:\"CiviCase\";s:4:\"icon\";s:18:\"admin/small/36.png\";}'),(403,1,'civicrm/admin/options/case_type',NULL,'Case Types','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:19:\"administer CiviCase\";}i:1;s:3:\"and\";}','s:22:\"CRM_Core_Page_Redirect\";','s:24:\"url=civicrm/a/#/caseType\";','a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/admin&reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:61:\"/civicrm-master/index.php?q=civicrm/admin/options&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,390,1,0,NULL,'a:3:{s:4:\"desc\";s:137:\"List of types which can be assigned to Cases. (Enable the Cases tab from System Settings - Enable Components if you want to track cases.)\";s:10:\"adminGroup\";s:8:\"CiviCase\";s:4:\"icon\";s:25:\"admin/small/case_type.png\";}'),(404,1,'civicrm/admin/options/redaction_rule',NULL,'Redaction Rules','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:19:\"administer CiviCase\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/admin&reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:61:\"/civicrm-master/index.php?q=civicrm/admin/options&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,400,1,0,NULL,'a:3:{s:4:\"desc\";s:223:\"List of rules which can be applied to user input strings so that the redacted output can be recognized as repeated instances of the same string or can be identified as a \"semantic type of the data element\" within case data.\";s:10:\"adminGroup\";s:8:\"CiviCase\";s:4:\"icon\";s:30:\"admin/small/redaction_type.png\";}'),(405,1,'civicrm/admin/options/case_status',NULL,'Case Statuses','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:19:\"administer CiviCase\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/admin&reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:61:\"/civicrm-master/index.php?q=civicrm/admin/options&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,400,1,0,NULL,'a:3:{s:4:\"desc\";s:48:\"List of statuses that can be assigned to a case.\";s:10:\"adminGroup\";s:8:\"CiviCase\";s:4:\"icon\";s:25:\"admin/small/case_type.png\";}'),(406,1,'civicrm/admin/options/encounter_medium',NULL,'Encounter Mediums','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:19:\"administer CiviCase\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/admin&reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:61:\"/civicrm-master/index.php?q=civicrm/admin/options&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,400,1,0,NULL,'a:3:{s:4:\"desc\";s:26:\"List of encounter mediums.\";s:10:\"adminGroup\";s:8:\"CiviCase\";s:4:\"icon\";s:25:\"admin/small/case_type.png\";}'),(407,1,'civicrm/case/report/print',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:31:\"access all cases and activities\";}i:1;s:3:\"and\";}','a:2:{i:0;s:28:\"CRM_Case_XMLProcessor_Report\";i:1;s:15:\"printCaseReport\";}',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"CiviCase Dashboard\";s:3:\"url\";s:52:\"/civicrm-master/index.php?q=civicrm/case&reset=1\";}i:2;a:2:{s:5:\"title\";s:19:\"Case Activity Audit\";s:3:\"url\";s:59:\"/civicrm-master/index.php?q=civicrm/case/report&reset=1\";}}',NULL,NULL,7,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(408,1,'civicrm/case/ajax/addclient',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:18:\"CRM_Case_Page_AJAX\";i:1;s:9:\"addClient\";}',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"CiviCase Dashboard\";s:3:\"url\";s:52:\"/civicrm-master/index.php?q=civicrm/case&reset=1\";}}',NULL,NULL,7,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(409,1,'civicrm/case/ajax/processtags',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:18:\"CRM_Case_Page_AJAX\";i:1;s:15:\"processCaseTags\";}',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"CiviCase Dashboard\";s:3:\"url\";s:52:\"/civicrm-master/index.php?q=civicrm/case&reset=1\";}}',NULL,NULL,7,NULL,NULL,NULL,0,1,1,3,NULL,'a:0:{}'),(410,1,'civicrm/case/ajax/details',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:18:\"CRM_Case_Page_AJAX\";i:1;s:11:\"CaseDetails\";}',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"CiviCase Dashboard\";s:3:\"url\";s:52:\"/civicrm-master/index.php?q=civicrm/case&reset=1\";}}',NULL,NULL,7,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(411,1,'civicrm/ajax/delcaserole',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:18:\"CRM_Case_Page_AJAX\";i:1;s:15:\"deleteCaseRoles\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(412,1,'civicrm/ajax/get-cases',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:18:\"CRM_Case_Page_AJAX\";i:1;s:8:\"getCases\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(413,1,'civicrm/report',NULL,'CiviReport','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:17:\"access CiviReport\";}i:1;s:3:\"and\";}','s:22:\"CRM_Report_Page_Report\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,8,NULL,NULL,NULL,0,1200,1,1,NULL,'a:1:{s:9:\"component\";s:10:\"CiviReport\";}'),(414,1,'civicrm/report/list',NULL,'CiviCRM Reports','s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:17:\"access CiviReport\";}i:1;s:3:\"and\";}','s:28:\"CRM_Report_Page_InstanceList\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"CiviReport\";s:3:\"url\";s:54:\"/civicrm-master/index.php?q=civicrm/report&reset=1\";}}',NULL,NULL,8,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(415,1,'civicrm/report/template/list',NULL,'Create New Report from Template','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:18:\"administer Reports\";}i:1;s:3:\"and\";}','s:28:\"CRM_Report_Page_TemplateList\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"CiviReport\";s:3:\"url\";s:54:\"/civicrm-master/index.php?q=civicrm/report&reset=1\";}}',NULL,NULL,8,NULL,NULL,NULL,0,1220,1,1,NULL,'a:0:{}'),(416,1,'civicrm/report/options/report_template',NULL,'Manage Templates','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:18:\"administer Reports\";}i:1;s:3:\"and\";}','s:23:\"CRM_Report_Page_Options\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"CiviReport\";s:3:\"url\";s:54:\"/civicrm-master/index.php?q=civicrm/report&reset=1\";}}',NULL,NULL,8,NULL,NULL,NULL,0,1241,1,1,NULL,'a:0:{}'),(417,1,'civicrm/admin/report/register',NULL,'Register Report','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:18:\"administer Reports\";}i:1;s:3:\"and\";}','s:24:\"CRM_Report_Form_Register\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/admin&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,1,1,0,NULL,'a:1:{s:4:\"desc\";s:30:\"Register the Report templates.\";}'),(418,1,'civicrm/report/instance',NULL,'Report','s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:17:\"access CiviReport\";}i:1;s:3:\"and\";}','s:24:\"CRM_Report_Page_Instance\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"CiviReport\";s:3:\"url\";s:54:\"/civicrm-master/index.php?q=civicrm/report&reset=1\";}}',NULL,NULL,8,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(419,1,'civicrm/admin/report/template/list',NULL,'Create New Report from Template','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:17:\"access CiviReport\";}i:1;s:3:\"and\";}','s:28:\"CRM_Report_Page_TemplateList\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/admin&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,1,1,0,NULL,'a:3:{s:4:\"desc\";s:49:\"Component wise listing of all available templates\";s:10:\"adminGroup\";s:10:\"CiviReport\";s:4:\"icon\";s:31:\"admin/small/report_template.gif\";}'),(420,1,'civicrm/admin/report/options/report_template',NULL,'Manage Templates','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:17:\"access CiviReport\";}i:1;s:3:\"and\";}','s:23:\"CRM_Report_Page_Options\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/admin&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,1,1,0,NULL,'a:3:{s:4:\"desc\";s:45:\"Browse, Edit and Delete the Report templates.\";s:10:\"adminGroup\";s:10:\"CiviReport\";s:4:\"icon\";s:24:\"admin/small/template.png\";}'),(421,1,'civicrm/admin/report/list',NULL,'Reports Listing','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:28:\"CRM_Report_Page_InstanceList\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/admin&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,1,1,0,NULL,'a:3:{s:4:\"desc\";s:60:\"Browse existing report, change report criteria and settings.\";s:10:\"adminGroup\";s:10:\"CiviReport\";s:4:\"icon\";s:27:\"admin/small/report_list.gif\";}'),(422,1,'civicrm/report/chart',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:17:\"access CiviReport\";}i:1;s:3:\"and\";}','a:2:{i:0;s:15:\"CRM_Report_Form\";i:1;s:16:\"uploadChartImage\";}',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"CiviReport\";s:3:\"url\";s:54:\"/civicrm-master/index.php?q=civicrm/report&reset=1\";}}',NULL,NULL,8,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(423,1,'civicrm/campaign',NULL,'Campaign Dashboard','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:23:\"administer CiviCampaign\";i:1;s:15:\"manage campaign\";}i:1;s:2:\"or\";}','s:27:\"CRM_Campaign_Page_DashBoard\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,9,NULL,NULL,NULL,0,1,1,0,NULL,'a:1:{s:9:\"component\";s:12:\"CiviCampaign\";}'),(424,1,'civicrm/campaign/add',NULL,'New Campaign','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:23:\"administer CiviCampaign\";i:1;s:15:\"manage campaign\";}i:1;s:2:\"or\";}','s:26:\"CRM_Campaign_Form_Campaign\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Campaign Dashboard\";s:3:\"url\";s:56:\"/civicrm-master/index.php?q=civicrm/campaign&reset=1\";}}',NULL,NULL,9,NULL,NULL,NULL,0,1,1,0,NULL,'a:1:{s:9:\"component\";s:12:\"CiviCampaign\";}'),(425,1,'civicrm/survey/add',NULL,'New Survey','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:23:\"administer CiviCampaign\";i:1;s:15:\"manage campaign\";}i:1;s:2:\"or\";}','s:29:\"CRM_Campaign_Form_Survey_Main\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:1:{s:9:\"component\";s:12:\"CiviCampaign\";}'),(426,1,'civicrm/campaign/vote',NULL,'Conduct Survey','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:4:{i:0;s:23:\"administer CiviCampaign\";i:1;s:15:\"manage campaign\";i:2;s:25:\"reserve campaign contacts\";i:3;s:27:\"interview campaign contacts\";}i:1;s:2:\"or\";}','s:22:\"CRM_Campaign_Page_Vote\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Campaign Dashboard\";s:3:\"url\";s:56:\"/civicrm-master/index.php?q=civicrm/campaign&reset=1\";}}',NULL,NULL,9,NULL,NULL,NULL,0,1,1,0,NULL,'a:1:{s:9:\"component\";s:12:\"CiviCampaign\";}'),(427,1,'civicrm/admin/campaign/surveyType',NULL,'Survey Types','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:23:\"administer CiviCampaign\";}i:1;s:3:\"and\";}','s:28:\"CRM_Campaign_Page_SurveyType\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/admin&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,1,1,0,NULL,'a:3:{s:4:\"icon\";s:18:\"admin/small/05.png\";s:10:\"adminGroup\";s:12:\"CiviCampaign\";s:9:\"component\";s:12:\"CiviCampaign\";}'),(428,1,'civicrm/admin/options/campaign_type',NULL,'Campaign Types','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/admin&reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:61:\"/civicrm-master/index.php?q=civicrm/admin/options&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,2,1,0,NULL,'a:4:{s:4:\"desc\";s:47:\"categorize your campaigns using campaign types.\";s:10:\"adminGroup\";s:12:\"CiviCampaign\";s:4:\"icon\";s:18:\"admin/small/05.png\";s:9:\"component\";s:12:\"CiviCampaign\";}'),(429,1,'civicrm/admin/options/campaign_status',NULL,'Campaign Status','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/admin&reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:61:\"/civicrm-master/index.php?q=civicrm/admin/options&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,3,1,0,NULL,'a:4:{s:4:\"desc\";s:34:\"Define statuses for campaign here.\";s:10:\"adminGroup\";s:12:\"CiviCampaign\";s:4:\"icon\";s:18:\"admin/small/05.png\";s:9:\"component\";s:12:\"CiviCampaign\";}'),(430,1,'civicrm/admin/options/engagement_index',NULL,'Engagement Index','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:53:\"/civicrm-master/index.php?q=civicrm/admin&reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:61:\"/civicrm-master/index.php?q=civicrm/admin/options&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,4,1,0,NULL,'a:4:{s:4:\"desc\";s:18:\"Engagement levels.\";s:10:\"adminGroup\";s:12:\"CiviCampaign\";s:4:\"icon\";s:18:\"admin/small/05.png\";s:9:\"component\";s:12:\"CiviCampaign\";}'),(431,1,'civicrm/survey/search','op=interview','Record Respondents Interview','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:23:\"administer CiviCampaign\";i:1;s:15:\"manage campaign\";i:2;s:27:\"interview campaign contacts\";}i:1;s:2:\"or\";}','s:30:\"CRM_Campaign_Controller_Search\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:1:{s:9:\"component\";s:12:\"CiviCampaign\";}'),(432,1,'civicrm/campaign/gotv',NULL,'GOTV (Track Voters)','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:4:{i:0;s:23:\"administer CiviCampaign\";i:1;s:15:\"manage campaign\";i:2;s:25:\"release campaign contacts\";i:3;s:22:\"gotv campaign contacts\";}i:1;s:2:\"or\";}','s:22:\"CRM_Campaign_Form_Gotv\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Campaign Dashboard\";s:3:\"url\";s:56:\"/civicrm-master/index.php?q=civicrm/campaign&reset=1\";}}',NULL,NULL,9,NULL,NULL,NULL,0,1,1,0,NULL,'a:1:{s:9:\"component\";s:12:\"CiviCampaign\";}'),(433,1,'civicrm/petition/add',NULL,'New Petition','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:23:\"administer CiviCampaign\";i:1;s:15:\"manage campaign\";}i:1;s:2:\"or\";}','s:26:\"CRM_Campaign_Form_Petition\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(434,1,'civicrm/petition/sign',NULL,'Sign Petition','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"sign CiviCRM Petition\";}i:1;s:3:\"and\";}','s:36:\"CRM_Campaign_Form_Petition_Signature\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,NULL,NULL,1,NULL,0,1,1,0,NULL,'a:0:{}'),(435,1,'civicrm/petition/browse',NULL,'View Petition Signatures','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Campaign_Page_Petition\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(436,1,'civicrm/petition/confirm',NULL,'Email address verified','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"sign CiviCRM Petition\";}i:1;s:3:\"and\";}','s:34:\"CRM_Campaign_Page_Petition_Confirm\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,NULL,NULL,1,NULL,0,1,1,0,NULL,'a:0:{}'),(437,1,'civicrm/petition/thankyou',NULL,'Thank You','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"sign CiviCRM Petition\";}i:1;s:3:\"and\";}','s:35:\"CRM_Campaign_Page_Petition_ThankYou\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,NULL,NULL,1,NULL,0,1,1,0,NULL,'a:0:{}'),(438,1,'civicrm/campaign/registerInterview',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:23:\"administer CiviCampaign\";i:1;s:15:\"manage campaign\";i:2;s:27:\"interview campaign contacts\";}i:1;s:2:\"or\";}','a:2:{i:0;s:22:\"CRM_Campaign_Page_AJAX\";i:1;s:17:\"registerInterview\";}',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Campaign Dashboard\";s:3:\"url\";s:56:\"/civicrm-master/index.php?q=civicrm/campaign&reset=1\";}}',NULL,NULL,9,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(439,1,'civicrm/survey/configure/main',NULL,'Configure Survey','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:23:\"administer CiviCampaign\";i:1;s:15:\"manage campaign\";}i:1;s:2:\"or\";}','s:29:\"CRM_Campaign_Form_Survey_Main\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(440,1,'civicrm/survey/configure/questions',NULL,'Configure Survey','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:23:\"administer CiviCampaign\";i:1;s:15:\"manage campaign\";}i:1;s:2:\"or\";}','s:34:\"CRM_Campaign_Form_Survey_Questions\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(441,1,'civicrm/survey/configure/results',NULL,'Configure Survey','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:23:\"administer CiviCampaign\";i:1;s:15:\"manage campaign\";}i:1;s:2:\"or\";}','s:32:\"CRM_Campaign_Form_Survey_Results\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(442,1,'civicrm/survey/delete',NULL,'Delete Survey','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:23:\"administer CiviCampaign\";i:1;s:15:\"manage campaign\";}i:1;s:2:\"or\";}','s:31:\"CRM_Campaign_Form_Survey_Delete\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:47:\"/civicrm-master/index.php?q=civicrm&reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL,'a:0:{}'),(443,1,'admin',NULL,NULL,NULL,NULL,NULL,NULL,'a:15:{s:26:\"Customize Data and Screens\";a:3:{s:12:\"component_id\";N;s:6:\"fields\";a:19:{s:20:\"{weight}.Custom Data\";a:6:{s:5:\"title\";s:11:\"Custom Data\";s:4:\"desc\";s:109:\"Configure custom fields to collect and store custom data which is not included in the standard CiviCRM forms.\";s:2:\"id\";s:10:\"CustomData\";s:3:\"url\";s:66:\"/civicrm-master/index.php?q=civicrm/admin/custom/group&reset=1\";s:4:\"icon\";s:26:\"admin/small/custm_data.png\";s:5:\"extra\";N;}s:17:\"{weight}.Profiles\";a:6:{s:5:\"title\";s:8:\"Profiles\";s:4:\"desc\";s:151:\"Profiles allow you to aggregate groups of fields and include them in your site as input forms, contact display pages, and search and listings features.\";s:2:\"id\";s:8:\"Profiles\";s:3:\"url\";s:62:\"/civicrm-master/index.php?q=civicrm/admin/uf/group&reset=1\";s:4:\"icon\";s:23:\"admin/small/Profile.png\";s:5:\"extra\";N;}s:23:\"{weight}.Activity Types\";a:6:{s:5:\"title\";s:14:\"Activity Types\";s:4:\"desc\";s:155:\"CiviCRM has several built-in activity types (meetings, phone calls, emails sent). Track other types of interactions by creating custom activity types here.\";s:2:\"id\";s:13:\"ActivityTypes\";s:3:\"url\";s:75:\"/civicrm-master/index.php?q=civicrm/admin/options/activity_type&reset=1\";s:4:\"icon\";s:18:\"admin/small/05.png\";s:5:\"extra\";N;}s:27:\"{weight}.Relationship Types\";a:6:{s:5:\"title\";s:18:\"Relationship Types\";s:4:\"desc\";s:148:\"Contacts can be linked to each other through Relationships (e.g. Spouse, Employer, etc.). Define the types of relationships you want to record here.\";s:2:\"id\";s:17:\"RelationshipTypes\";s:3:\"url\";s:61:\"/civicrm-master/index.php?q=civicrm/admin/reltype&reset=1\";s:4:\"icon\";s:25:\"admin/small/rela_type.png\";s:5:\"extra\";N;}s:22:\"{weight}.Contact Types\";a:6:{s:5:\"title\";s:13:\"Contact Types\";s:4:\"desc\";N;s:2:\"id\";s:12:\"ContactTypes\";s:3:\"url\";s:69:\"/civicrm-master/index.php?q=civicrm/admin/options/subtype&reset=1\";s:4:\"icon\";s:18:\"admin/small/09.png\";s:5:\"extra\";N;}s:23:\"{weight}.Gender Options\";a:6:{s:5:\"title\";s:14:\"Gender Options\";s:4:\"desc\";s:79:\"Options for assigning gender to individual contacts (e.g. Male, Female, Other).\";s:2:\"id\";s:13:\"GenderOptions\";s:3:\"url\";s:68:\"/civicrm-master/index.php?q=civicrm/admin/options/gender&reset=1\";s:4:\"icon\";s:18:\"admin/small/01.png\";s:5:\"extra\";N;}s:40:\"{weight}.Individual Prefixes (Ms, Mr...)\";a:6:{s:5:\"title\";s:31:\"Individual Prefixes (Ms, Mr...)\";s:4:\"desc\";s:66:\"Options for individual contact prefixes (e.g. Ms., Mr., Dr. etc.).\";s:2:\"id\";s:27:\"IndividualPrefixes_Ms_Mr...\";s:3:\"url\";s:79:\"/civicrm-master/index.php?q=civicrm/admin/options/individual_prefix&reset=1\";s:4:\"icon\";s:21:\"admin/small/title.png\";s:5:\"extra\";N;}s:40:\"{weight}.Individual Suffixes (Jr, Sr...)\";a:6:{s:5:\"title\";s:31:\"Individual Suffixes (Jr, Sr...)\";s:4:\"desc\";s:61:\"Options for individual contact suffixes (e.g. Jr., Sr. etc.).\";s:2:\"id\";s:27:\"IndividualSuffixes_Jr_Sr...\";s:3:\"url\";s:79:\"/civicrm-master/index.php?q=civicrm/admin/options/individual_suffix&reset=1\";s:4:\"icon\";s:18:\"admin/small/10.png\";s:5:\"extra\";N;}s:39:\"{weight}.Location Types (Home, Work...)\";a:6:{s:5:\"title\";s:30:\"Location Types (Home, Work...)\";s:4:\"desc\";s:94:\"Options for categorizing contact addresses and phone numbers (e.g. Home, Work, Billing, etc.).\";s:2:\"id\";s:26:\"LocationTypes_Home_Work...\";s:3:\"url\";s:66:\"/civicrm-master/index.php?q=civicrm/admin/locationType&reset=1\";s:4:\"icon\";s:18:\"admin/small/13.png\";s:5:\"extra\";N;}s:22:\"{weight}.Website Types\";a:6:{s:5:\"title\";s:13:\"Website Types\";s:4:\"desc\";s:48:\"Options for assigning website types to contacts.\";s:2:\"id\";s:12:\"WebsiteTypes\";s:3:\"url\";s:74:\"/civicrm-master/index.php?q=civicrm/admin/options/website_type&reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:35:\"{weight}.Instant Messenger Services\";a:6:{s:5:\"title\";s:26:\"Instant Messenger Services\";s:4:\"desc\";s:79:\"List of IM services which can be used when recording screen-names for contacts.\";s:2:\"id\";s:24:\"InstantMessengerServices\";s:3:\"url\";s:87:\"/civicrm-master/index.php?q=civicrm/admin/options/instant_messenger_service&reset=1\";s:4:\"icon\";s:18:\"admin/small/07.png\";s:5:\"extra\";N;}s:31:\"{weight}.Mobile Phone Providers\";a:6:{s:5:\"title\";s:22:\"Mobile Phone Providers\";s:4:\"desc\";s:90:\"List of mobile phone providers which can be assigned when recording contact phone numbers.\";s:2:\"id\";s:20:\"MobilePhoneProviders\";s:3:\"url\";s:77:\"/civicrm-master/index.php?q=civicrm/admin/options/mobile_provider&reset=1\";s:4:\"icon\";s:18:\"admin/small/08.png\";s:5:\"extra\";N;}s:19:\"{weight}.Phone Type\";a:6:{s:5:\"title\";s:10:\"Phone Type\";s:4:\"desc\";s:80:\"Options for assigning phone type to contacts (e.g Phone,\n Mobile, Fax, Pager)\";s:2:\"id\";s:9:\"PhoneType\";s:3:\"url\";s:72:\"/civicrm-master/index.php?q=civicrm/admin/options/phone_type&reset=1\";s:4:\"icon\";s:7:\"tel.gif\";s:5:\"extra\";N;}s:28:\"{weight}.Display Preferences\";a:6:{s:5:\"title\";s:19:\"Display Preferences\";s:4:\"desc\";N;s:2:\"id\";s:18:\"DisplayPreferences\";s:3:\"url\";s:81:\"/civicrm-master/index.php?q=civicrm/admin/setting/preferences/display&reset=1\";s:4:\"icon\";s:18:\"admin/small/36.png\";s:5:\"extra\";N;}s:27:\"{weight}.Search Preferences\";a:6:{s:5:\"title\";s:18:\"Search Preferences\";s:4:\"desc\";N;s:2:\"id\";s:17:\"SearchPreferences\";s:3:\"url\";s:68:\"/civicrm-master/index.php?q=civicrm/admin/setting/search&reset=1\";s:4:\"icon\";s:18:\"admin/small/36.png\";s:5:\"extra\";N;}s:24:\"{weight}.Navigation Menu\";a:6:{s:5:\"title\";s:15:\"Navigation Menu\";s:4:\"desc\";s:79:\"Add or remove menu items, and modify the order of items on the navigation menu.\";s:2:\"id\";s:14:\"NavigationMenu\";s:3:\"url\";s:58:\"/civicrm-master/index.php?q=civicrm/admin/menu&reset=1\";s:4:\"icon\";s:24:\"admin/small/template.png\";s:5:\"extra\";N;}s:26:\"{weight}.Word Replacements\";a:6:{s:5:\"title\";s:17:\"Word Replacements\";s:4:\"desc\";s:18:\"Word Replacements.\";s:2:\"id\";s:16:\"WordReplacements\";s:3:\"url\";s:78:\"/civicrm-master/index.php?q=civicrm/admin/options/wordreplacements&reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:31:\"{weight}.Manage Custom Searches\";a:6:{s:5:\"title\";s:22:\"Manage Custom Searches\";s:4:\"desc\";s:225:\"Developers and accidental techies with a bit of PHP and SQL knowledge can create new search forms to handle specific search and reporting needs which aren\'t covered by the built-in Advanced Search and Search Builder features.\";s:2:\"id\";s:20:\"ManageCustomSearches\";s:3:\"url\";s:75:\"/civicrm-master/index.php?q=civicrm/admin/options/custom_search&reset=1\";s:4:\"icon\";s:24:\"admin/small/template.png\";s:5:\"extra\";N;}s:26:\"{weight}.Tags (Categories)\";a:6:{s:5:\"title\";s:17:\"Tags (Categories)\";s:4:\"desc\";s:158:\"Tags are useful for segmenting the contacts in your database into categories (e.g. Staff Member, Donor, Volunteer, etc.). Create and edit available tags here.\";s:2:\"id\";s:15:\"Tags_Categories\";s:3:\"url\";s:51:\"/civicrm-master/index.php?q=civicrm/tag&reset=1\";s:4:\"icon\";s:18:\"admin/small/11.png\";s:5:\"extra\";N;}}s:9:\"perColumn\";d:10;}s:14:\"Communications\";a:3:{s:12:\"component_id\";N;s:6:\"fields\";a:11:{s:46:\"{weight}.Organization Address and Contact Info\";a:6:{s:5:\"title\";s:37:\"Organization Address and Contact Info\";s:4:\"desc\";s:150:\"Configure primary contact name, email, return-path and address information. This information is used by CiviMail to identify the sending organization.\";s:2:\"id\";s:33:\"OrganizationAddressandContactInfo\";s:3:\"url\";s:78:\"/civicrm-master/index.php?q=civicrm/admin/domain&action=update&reset=1\";s:4:\"icon\";s:22:\"admin/small/domain.png\";s:5:\"extra\";N;}s:29:\"{weight}.From Email Addresses\";a:6:{s:5:\"title\";s:20:\"From Email Addresses\";s:4:\"desc\";s:74:\"List of Email Addresses which can be used when sending emails to contacts.\";s:2:\"id\";s:18:\"FromEmailAddresses\";s:3:\"url\";s:80:\"/civicrm-master/index.php?q=civicrm/admin/options/from_email_address&reset=1\";s:4:\"icon\";s:21:\"admin/small/title.png\";s:5:\"extra\";N;}s:26:\"{weight}.Message Templates\";a:6:{s:5:\"title\";s:17:\"Message Templates\";s:4:\"desc\";s:130:\"Message templates allow you to save and re-use messages with layouts which you can use when sending email to one or more contacts.\";s:2:\"id\";s:16:\"MessageTemplates\";s:3:\"url\";s:70:\"/civicrm-master/index.php?q=civicrm/admin/messageTemplates&reset=1\";s:4:\"icon\";s:24:\"admin/small/template.png\";s:5:\"extra\";N;}s:27:\"{weight}.Schedule Reminders\";a:6:{s:5:\"title\";s:18:\"Schedule Reminders\";s:4:\"desc\";s:19:\"Schedule Reminders.\";s:2:\"id\";s:17:\"ScheduleReminders\";s:3:\"url\";s:71:\"/civicrm-master/index.php?q=civicrm/admin/scheduleReminders&reset=1\";s:4:\"icon\";s:24:\"admin/small/template.png\";s:5:\"extra\";N;}s:40:\"{weight}.Preferred Communication Methods\";a:6:{s:5:\"title\";s:31:\"Preferred Communication Methods\";s:4:\"desc\";s:117:\"One or more preferred methods of communication can be assigned to each contact. Customize the available options here.\";s:2:\"id\";s:29:\"PreferredCommunicationMethods\";s:3:\"url\";s:92:\"/civicrm-master/index.php?q=civicrm/admin/options/preferred_communication_method&reset=1\";s:4:\"icon\";s:29:\"admin/small/communication.png\";s:5:\"extra\";N;}s:22:\"{weight}.Label Formats\";a:6:{s:5:\"title\";s:13:\"Label Formats\";s:4:\"desc\";s:67:\"Configure Label Formats that are used when creating mailing labels.\";s:2:\"id\";s:12:\"LabelFormats\";s:3:\"url\";s:66:\"/civicrm-master/index.php?q=civicrm/admin/labelFormats&reset=1\";s:4:\"icon\";s:24:\"admin/small/template.png\";s:5:\"extra\";N;}s:33:\"{weight}.Print Page (PDF) Formats\";a:6:{s:5:\"title\";s:24:\"Print Page (PDF) Formats\";s:4:\"desc\";s:95:\"Configure PDF Page Formats that can be assigned to Message Templates when creating PDF letters.\";s:2:\"id\";s:20:\"PrintPage_PDFFormats\";s:3:\"url\";s:64:\"/civicrm-master/index.php?q=civicrm/admin/pdfFormats&reset=1\";s:4:\"icon\";s:24:\"admin/small/template.png\";s:5:\"extra\";N;}s:36:\"{weight}.Communication Style Options\";a:6:{s:5:\"title\";s:27:\"Communication Style Options\";s:4:\"desc\";s:42:\"Options for Communication Style selection.\";s:2:\"id\";s:25:\"CommunicationStyleOptions\";s:3:\"url\";s:81:\"/civicrm-master/index.php?q=civicrm/admin/options/communication_style&reset=1\";s:4:\"icon\";s:18:\"admin/small/01.png\";s:5:\"extra\";N;}s:31:\"{weight}.Email Greeting Formats\";a:6:{s:5:\"title\";s:22:\"Email Greeting Formats\";s:4:\"desc\";s:75:\"Options for assigning email greetings to individual and household contacts.\";s:2:\"id\";s:20:\"EmailGreetingFormats\";s:3:\"url\";s:76:\"/civicrm-master/index.php?q=civicrm/admin/options/email_greeting&reset=1\";s:4:\"icon\";s:18:\"admin/small/01.png\";s:5:\"extra\";N;}s:32:\"{weight}.Postal Greeting Formats\";a:6:{s:5:\"title\";s:23:\"Postal Greeting Formats\";s:4:\"desc\";s:76:\"Options for assigning postal greetings to individual and household contacts.\";s:2:\"id\";s:21:\"PostalGreetingFormats\";s:3:\"url\";s:77:\"/civicrm-master/index.php?q=civicrm/admin/options/postal_greeting&reset=1\";s:4:\"icon\";s:18:\"admin/small/01.png\";s:5:\"extra\";N;}s:26:\"{weight}.Addressee Formats\";a:6:{s:5:\"title\";s:17:\"Addressee Formats\";s:4:\"desc\";s:83:\"Options for assigning addressee to individual, household and organization contacts.\";s:2:\"id\";s:16:\"AddresseeFormats\";s:3:\"url\";s:71:\"/civicrm-master/index.php?q=civicrm/admin/options/addressee&reset=1\";s:4:\"icon\";s:18:\"admin/small/01.png\";s:5:\"extra\";N;}}s:9:\"perColumn\";d:6;}s:12:\"Localization\";a:3:{s:12:\"component_id\";N;s:6:\"fields\";a:4:{s:39:\"{weight}.Languages, Currency, Locations\";a:6:{s:5:\"title\";s:30:\"Languages, Currency, Locations\";s:4:\"desc\";N;s:2:\"id\";s:28:\"Languages_Currency_Locations\";s:3:\"url\";s:74:\"/civicrm-master/index.php?q=civicrm/admin/setting/localization&reset=1\";s:4:\"icon\";s:18:\"admin/small/36.png\";s:5:\"extra\";N;}s:25:\"{weight}.Address Settings\";a:6:{s:5:\"title\";s:16:\"Address Settings\";s:4:\"desc\";N;s:2:\"id\";s:15:\"AddressSettings\";s:3:\"url\";s:81:\"/civicrm-master/index.php?q=civicrm/admin/setting/preferences/address&reset=1\";s:4:\"icon\";s:18:\"admin/small/36.png\";s:5:\"extra\";N;}s:21:\"{weight}.Date Formats\";a:6:{s:5:\"title\";s:12:\"Date Formats\";s:4:\"desc\";N;s:2:\"id\";s:11:\"DateFormats\";s:3:\"url\";s:66:\"/civicrm-master/index.php?q=civicrm/admin/setting/date&reset=1\";s:4:\"icon\";s:18:\"admin/small/36.png\";s:5:\"extra\";N;}s:28:\"{weight}.Preferred Languages\";a:6:{s:5:\"title\";s:19:\"Preferred Languages\";s:4:\"desc\";s:30:\"Options for contact languages.\";s:2:\"id\";s:18:\"PreferredLanguages\";s:3:\"url\";s:71:\"/civicrm-master/index.php?q=civicrm/admin/options/languages&reset=1\";s:4:\"icon\";s:18:\"admin/small/36.png\";s:5:\"extra\";N;}}s:9:\"perColumn\";d:2;}s:21:\"Users and Permissions\";a:3:{s:12:\"component_id\";N;s:6:\"fields\";a:2:{s:23:\"{weight}.Access Control\";a:6:{s:5:\"title\";s:14:\"Access Control\";s:4:\"desc\";s:73:\"Grant or deny access to actions (view, edit...), features and components.\";s:2:\"id\";s:13:\"AccessControl\";s:3:\"url\";s:60:\"/civicrm-master/index.php?q=civicrm/admin/access&reset=1\";s:4:\"icon\";s:18:\"admin/small/03.png\";s:5:\"extra\";N;}s:38:\"{weight}.Synchronize Users to Contacts\";a:6:{s:5:\"title\";s:29:\"Synchronize Users to Contacts\";s:4:\"desc\";s:71:\"Automatically create a CiviCRM contact record for each CMS user record.\";s:2:\"id\";s:26:\"SynchronizeUserstoContacts\";s:3:\"url\";s:63:\"/civicrm-master/index.php?q=civicrm/admin/synchUser&reset=1\";s:4:\"icon\";s:26:\"admin/small/Synch_user.png\";s:5:\"extra\";N;}}s:9:\"perColumn\";d:1;}s:15:\"System Settings\";a:3:{s:12:\"component_id\";N;s:6:\"fields\";a:18:{s:32:\"{weight}.Configuration Checklist\";a:6:{s:5:\"title\";s:23:\"Configuration Checklist\";s:4:\"desc\";s:55:\"List of configuration tasks with links to each setting.\";s:2:\"id\";s:22:\"ConfigurationChecklist\";s:3:\"url\";s:64:\"/civicrm-master/index.php?q=civicrm/admin/configtask&reset=1\";s:4:\"icon\";s:9:\"check.gif\";s:5:\"extra\";N;}s:34:\"{weight}.Enable CiviCRM Components\";a:6:{s:5:\"title\";s:25:\"Enable CiviCRM Components\";s:4:\"desc\";s:269:\"Enable or disable components (e.g. CiviEvent, CiviMember, etc.) for your site based on the features you need. We recommend disabling any components not being used in order to simplify the user interface. You can easily re-enable components at any time from this screen.\";s:2:\"id\";s:23:\"EnableCiviCRMComponents\";s:3:\"url\";s:71:\"/civicrm-master/index.php?q=civicrm/admin/setting/component&reset=1\";s:4:\"icon\";s:18:\"admin/small/36.png\";s:5:\"extra\";N;}s:26:\"{weight}.Manage Extensions\";a:6:{s:5:\"title\";s:17:\"Manage Extensions\";s:4:\"desc\";s:0:\"\";s:2:\"id\";s:16:\"ManageExtensions\";s:3:\"url\";s:64:\"/civicrm-master/index.php?q=civicrm/admin/extensions&reset=1\";s:4:\"icon\";s:26:\"admin/small/price_sets.png\";s:5:\"extra\";N;}s:32:\"{weight}.Outbound Email Settings\";a:6:{s:5:\"title\";s:23:\"Outbound Email Settings\";s:4:\"desc\";N;s:2:\"id\";s:21:\"OutboundEmailSettings\";s:3:\"url\";s:66:\"/civicrm-master/index.php?q=civicrm/admin/setting/smtp&reset=1\";s:4:\"icon\";s:18:\"admin/small/07.png\";s:5:\"extra\";N;}s:37:\"{weight}.Settings - Payment Processor\";a:6:{s:5:\"title\";s:28:\"Settings - Payment Processor\";s:4:\"desc\";s:48:\"Payment Processor setup for CiviCRM transactions\";s:2:\"id\";s:25:\"Settings-PaymentProcessor\";s:3:\"url\";s:70:\"/civicrm-master/index.php?q=civicrm/admin/paymentProcessor&reset=1\";s:4:\"icon\";s:41:\"admin/small/online_contribution_pages.png\";s:5:\"extra\";N;}s:30:\"{weight}.Mapping and Geocoding\";a:6:{s:5:\"title\";s:21:\"Mapping and Geocoding\";s:4:\"desc\";N;s:2:\"id\";s:19:\"MappingandGeocoding\";s:3:\"url\";s:69:\"/civicrm-master/index.php?q=civicrm/admin/setting/mapping&reset=1\";s:4:\"icon\";s:18:\"admin/small/36.png\";s:5:\"extra\";N;}s:62:\"{weight}.Misc (Undelete, PDFs, Limits, Logging, Captcha, etc.)\";a:6:{s:5:\"title\";s:53:\"Misc (Undelete, PDFs, Limits, Logging, Captcha, etc.)\";s:4:\"desc\";s:91:\"Enable undelete/move to trash feature, detailed change logging, ReCAPTCHA to protect forms.\";s:2:\"id\";s:46:\"Misc_Undelete_PDFs_Limits_Logging_Captcha_etc.\";s:3:\"url\";s:66:\"/civicrm-master/index.php?q=civicrm/admin/setting/misc&reset=1\";s:4:\"icon\";s:18:\"admin/small/36.png\";s:5:\"extra\";N;}s:20:\"{weight}.Directories\";a:6:{s:5:\"title\";s:11:\"Directories\";s:4:\"desc\";N;s:2:\"id\";s:11:\"Directories\";s:3:\"url\";s:66:\"/civicrm-master/index.php?q=civicrm/admin/setting/path&reset=1\";s:4:\"icon\";s:18:\"admin/small/36.png\";s:5:\"extra\";N;}s:22:\"{weight}.Resource URLs\";a:6:{s:5:\"title\";s:13:\"Resource URLs\";s:4:\"desc\";N;s:2:\"id\";s:12:\"ResourceURLs\";s:3:\"url\";s:65:\"/civicrm-master/index.php?q=civicrm/admin/setting/url&reset=1\";s:4:\"icon\";s:18:\"admin/small/36.png\";s:5:\"extra\";N;}s:40:\"{weight}.Cleanup Caches and Update Paths\";a:6:{s:5:\"title\";s:31:\"Cleanup Caches and Update Paths\";s:4:\"desc\";s:157:\"Reset the Base Directory Path and Base URL settings - generally when a CiviCRM site is moved to another location in the file system and/or to another domain.\";s:2:\"id\";s:27:\"CleanupCachesandUpdatePaths\";s:3:\"url\";s:81:\"/civicrm-master/index.php?q=civicrm/admin/setting/updateConfigBackend&reset=1\";s:4:\"icon\";s:26:\"admin/small/updatepath.png\";s:5:\"extra\";N;}s:33:\"{weight}.CMS Database Integration\";a:6:{s:5:\"title\";s:24:\"CMS Database Integration\";s:4:\"desc\";N;s:2:\"id\";s:22:\"CMSDatabaseIntegration\";s:3:\"url\";s:64:\"/civicrm-master/index.php?q=civicrm/admin/setting/uf&reset=1\";s:4:\"icon\";s:18:\"admin/small/36.png\";s:5:\"extra\";N;}s:36:\"{weight}.Safe File Extension Options\";a:6:{s:5:\"title\";s:27:\"Safe File Extension Options\";s:4:\"desc\";s:44:\"File Extensions that can be considered safe.\";s:2:\"id\";s:24:\"SafeFileExtensionOptions\";s:3:\"url\";s:81:\"/civicrm-master/index.php?q=civicrm/admin/options/safe_file_extension&reset=1\";s:4:\"icon\";s:18:\"admin/small/01.png\";s:5:\"extra\";N;}s:22:\"{weight}.Option Groups\";a:6:{s:5:\"title\";s:13:\"Option Groups\";s:4:\"desc\";s:35:\"Access all meta-data option groups.\";s:2:\"id\";s:12:\"OptionGroups\";s:3:\"url\";s:61:\"/civicrm-master/index.php?q=civicrm/admin/options&reset=1\";s:4:\"icon\";s:18:\"admin/small/01.png\";s:5:\"extra\";N;}s:31:\"{weight}.Import/Export Mappings\";a:6:{s:5:\"title\";s:22:\"Import/Export Mappings\";s:4:\"desc\";s:141:\"Import and Export mappings allow you to easily run the same job multiple times. This option allows you to rename or delete existing mappings.\";s:2:\"id\";s:21:\"Import_ExportMappings\";s:3:\"url\";s:61:\"/civicrm-master/index.php?q=civicrm/admin/mapping&reset=1\";s:4:\"icon\";s:33:\"admin/small/import_export_map.png\";s:5:\"extra\";N;}s:18:\"{weight}.Debugging\";a:6:{s:5:\"title\";s:9:\"Debugging\";s:4:\"desc\";N;s:2:\"id\";s:9:\"Debugging\";s:3:\"url\";s:67:\"/civicrm-master/index.php?q=civicrm/admin/setting/debug&reset=1\";s:4:\"icon\";s:18:\"admin/small/36.png\";s:5:\"extra\";N;}s:28:\"{weight}.Multi Site Settings\";a:6:{s:5:\"title\";s:19:\"Multi Site Settings\";s:4:\"desc\";N;s:2:\"id\";s:17:\"MultiSiteSettings\";s:3:\"url\";s:83:\"/civicrm-master/index.php?q=civicrm/admin/setting/preferences/multisite&reset=1\";s:4:\"icon\";s:18:\"admin/small/36.png\";s:5:\"extra\";N;}s:23:\"{weight}.Scheduled Jobs\";a:6:{s:5:\"title\";s:14:\"Scheduled Jobs\";s:4:\"desc\";s:35:\"Managing periodially running tasks.\";s:2:\"id\";s:13:\"ScheduledJobs\";s:3:\"url\";s:57:\"/civicrm-master/index.php?q=civicrm/admin/job&reset=1\";s:4:\"icon\";s:18:\"admin/small/13.png\";s:5:\"extra\";N;}s:22:\"{weight}.Sms Providers\";a:6:{s:5:\"title\";s:13:\"Sms Providers\";s:4:\"desc\";s:27:\"To configure a sms provider\";s:2:\"id\";s:12:\"SmsProviders\";s:3:\"url\";s:66:\"/civicrm-master/index.php?q=civicrm/admin/sms/provider&reset=1\";s:4:\"icon\";s:18:\"admin/small/36.png\";s:5:\"extra\";N;}}s:9:\"perColumn\";d:9;}s:12:\"CiviCampaign\";a:3:{s:12:\"component_id\";N;s:6:\"fields\";a:5:{s:40:\"{weight}.CiviCampaign Component Settings\";a:6:{s:5:\"title\";s:31:\"CiviCampaign Component Settings\";s:4:\"desc\";s:40:\"Configure global CiviCampaign behaviors.\";s:2:\"id\";s:29:\"CiviCampaignComponentSettings\";s:3:\"url\";s:82:\"/civicrm-master/index.php?q=civicrm/admin/setting/preferences/campaign&reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:21:\"{weight}.Survey Types\";a:6:{s:5:\"title\";s:12:\"Survey Types\";s:4:\"desc\";N;s:2:\"id\";s:11:\"SurveyTypes\";s:3:\"url\";s:73:\"/civicrm-master/index.php?q=civicrm/admin/campaign/surveyType&reset=1\";s:4:\"icon\";s:18:\"admin/small/05.png\";s:5:\"extra\";N;}s:23:\"{weight}.Campaign Types\";a:6:{s:5:\"title\";s:14:\"Campaign Types\";s:4:\"desc\";s:47:\"categorize your campaigns using campaign types.\";s:2:\"id\";s:13:\"CampaignTypes\";s:3:\"url\";s:75:\"/civicrm-master/index.php?q=civicrm/admin/options/campaign_type&reset=1\";s:4:\"icon\";s:18:\"admin/small/05.png\";s:5:\"extra\";N;}s:24:\"{weight}.Campaign Status\";a:6:{s:5:\"title\";s:15:\"Campaign Status\";s:4:\"desc\";s:34:\"Define statuses for campaign here.\";s:2:\"id\";s:14:\"CampaignStatus\";s:3:\"url\";s:77:\"/civicrm-master/index.php?q=civicrm/admin/options/campaign_status&reset=1\";s:4:\"icon\";s:18:\"admin/small/05.png\";s:5:\"extra\";N;}s:25:\"{weight}.Engagement Index\";a:6:{s:5:\"title\";s:16:\"Engagement Index\";s:4:\"desc\";s:18:\"Engagement levels.\";s:2:\"id\";s:15:\"EngagementIndex\";s:3:\"url\";s:78:\"/civicrm-master/index.php?q=civicrm/admin/options/engagement_index&reset=1\";s:4:\"icon\";s:18:\"admin/small/05.png\";s:5:\"extra\";N;}}s:9:\"perColumn\";d:3;}s:9:\"CiviEvent\";a:3:{s:12:\"component_id\";N;s:6:\"fields\";a:9:{s:37:\"{weight}.CiviEvent Component Settings\";a:6:{s:5:\"title\";s:28:\"CiviEvent Component Settings\";s:4:\"desc\";s:37:\"Configure global CiviEvent behaviors.\";s:2:\"id\";s:26:\"CiviEventComponentSettings\";s:3:\"url\";s:79:\"/civicrm-master/index.php?q=civicrm/admin/setting/preferences/event&reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:33:\"{weight}.Event Name Badge Layouts\";a:6:{s:5:\"title\";s:24:\"Event Name Badge Layouts\";s:4:\"desc\";s:107:\"Configure name badge layouts for event participants, including logos and what data to include on the badge.\";s:2:\"id\";s:21:\"EventNameBadgeLayouts\";s:3:\"url\";s:83:\"/civicrm-master/index.php?q=civicrm/admin/badgelayout&action=browse&reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:22:\"{weight}.Manage Events\";a:6:{s:5:\"title\";s:13:\"Manage Events\";s:4:\"desc\";s:136:\"Create and edit event configuration including times, locations, online registration forms, and fees. Links for iCal and RSS syndication.\";s:2:\"id\";s:12:\"ManageEvents\";s:3:\"url\";s:59:\"/civicrm-master/index.php?q=civicrm/admin/event&reset=1\";s:4:\"icon\";s:28:\"admin/small/event_manage.png\";s:5:\"extra\";N;}s:24:\"{weight}.Event Templates\";a:6:{s:5:\"title\";s:15:\"Event Templates\";s:4:\"desc\";s:115:\"Administrators can create Event Templates - which are basically master event records pre-filled with default values\";s:2:\"id\";s:14:\"EventTemplates\";s:3:\"url\";s:67:\"/civicrm-master/index.php?q=civicrm/admin/eventTemplate&reset=1\";s:4:\"icon\";s:24:\"admin/small/template.png\";s:5:\"extra\";N;}s:20:\"{weight}.Event Types\";a:6:{s:5:\"title\";s:11:\"Event Types\";s:4:\"desc\";s:143:\"Use Event Types to categorize your events. Event feeds can be filtered by Event Type and participant searches can use Event Type as a criteria.\";s:2:\"id\";s:10:\"EventTypes\";s:3:\"url\";s:72:\"/civicrm-master/index.php?q=civicrm/admin/options/event_type&reset=1\";s:4:\"icon\";s:26:\"admin/small/event_type.png\";s:5:\"extra\";N;}s:27:\"{weight}.Participant Status\";a:6:{s:5:\"title\";s:18:\"Participant Status\";s:4:\"desc\";s:154:\"Define statuses for event participants here (e.g. Registered, Attended, Cancelled...). You can then assign statuses and search for participants by status.\";s:2:\"id\";s:17:\"ParticipantStatus\";s:3:\"url\";s:72:\"/civicrm-master/index.php?q=civicrm/admin/participant_status&reset=1\";s:4:\"icon\";s:28:\"admin/small/parti_status.png\";s:5:\"extra\";N;}s:25:\"{weight}.Participant Role\";a:6:{s:5:\"title\";s:16:\"Participant Role\";s:4:\"desc\";s:138:\"Define participant roles for events here (e.g. Attendee, Host, Speaker...). You can then assign roles and search for participants by role.\";s:2:\"id\";s:15:\"ParticipantRole\";s:3:\"url\";s:78:\"/civicrm-master/index.php?q=civicrm/admin/options/participant_role&reset=1\";s:4:\"icon\";s:26:\"admin/small/parti_role.png\";s:5:\"extra\";N;}s:38:\"{weight}.Participant Listing Templates\";a:6:{s:5:\"title\";s:29:\"Participant Listing Templates\";s:4:\"desc\";s:48:\"Template to control participant listing display.\";s:2:\"id\";s:27:\"ParticipantListingTemplates\";s:3:\"url\";s:81:\"/civicrm-master/index.php?q=civicrm/admin/options/participant_listing&reset=1\";s:4:\"icon\";s:18:\"admin/small/01.png\";s:5:\"extra\";N;}s:31:\"{weight}.Conference Slot Labels\";a:6:{s:5:\"title\";s:22:\"Conference Slot Labels\";s:4:\"desc\";s:35:\"Define conference slots and labels.\";s:2:\"id\";s:20:\"ConferenceSlotLabels\";s:3:\"url\";s:96:\"/civicrm-master/index.php?q=civicrm/admin/conference_slots&group=conference_slot&reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}}s:9:\"perColumn\";d:5;}s:8:\"CiviMail\";a:3:{s:12:\"component_id\";N;s:6:\"fields\";a:5:{s:36:\"{weight}.CiviMail Component Settings\";a:6:{s:5:\"title\";s:27:\"CiviMail Component Settings\";s:4:\"desc\";s:36:\"Configure global CiviMail behaviors.\";s:2:\"id\";s:25:\"CiviMailComponentSettings\";s:3:\"url\";s:81:\"/civicrm-master/index.php?q=civicrm/admin/setting/preferences/mailing&reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:24:\"{weight}.Mailer Settings\";a:6:{s:5:\"title\";s:15:\"Mailer Settings\";s:4:\"desc\";s:61:\"Configure spool period, throttling and other mailer settings.\";s:2:\"id\";s:14:\"MailerSettings\";s:3:\"url\";s:58:\"/civicrm-master/index.php?q=civicrm/admin/mail&reset=1\";s:4:\"icon\";s:18:\"admin/small/07.png\";s:5:\"extra\";N;}s:49:\"{weight}.Headers, Footers, and Automated Messages\";a:6:{s:5:\"title\";s:40:\"Headers, Footers, and Automated Messages\";s:4:\"desc\";s:143:\"Configure the header and footer used for mailings. Customize the content of automated Subscribe, Unsubscribe, Resubscribe and Opt-out messages.\";s:2:\"id\";s:36:\"Headers_Footers_andAutomatedMessages\";s:3:\"url\";s:63:\"/civicrm-master/index.php?q=civicrm/admin/component&reset=1\";s:4:\"icon\";s:23:\"admin/small/Profile.png\";s:5:\"extra\";N;}s:29:\"{weight}.From Email Addresses\";a:6:{s:5:\"title\";s:20:\"From Email Addresses\";s:4:\"desc\";s:74:\"List of Email Addresses which can be used when sending emails to contacts.\";s:2:\"id\";s:18:\"FromEmailAddresses\";s:3:\"url\";s:89:\"/civicrm-master/index.php?q=civicrm/admin/options/from_email_address/civimail&reset=1\";s:4:\"icon\";s:21:\"admin/small/title.png\";s:5:\"extra\";N;}s:22:\"{weight}.Mail Accounts\";a:6:{s:5:\"title\";s:13:\"Mail Accounts\";s:4:\"desc\";s:32:\"Configure email account setting.\";s:2:\"id\";s:12:\"MailAccounts\";s:3:\"url\";s:66:\"/civicrm-master/index.php?q=civicrm/admin/mailSettings&reset=1\";s:4:\"icon\";s:18:\"admin/small/07.png\";s:5:\"extra\";N;}}s:9:\"perColumn\";d:3;}s:10:\"CiviMember\";a:3:{s:12:\"component_id\";N;s:6:\"fields\";a:3:{s:38:\"{weight}.CiviMember Component Settings\";a:6:{s:5:\"title\";s:29:\"CiviMember Component Settings\";s:4:\"desc\";s:38:\"Configure global CiviMember behaviors.\";s:2:\"id\";s:27:\"CiviMemberComponentSettings\";s:3:\"url\";s:80:\"/civicrm-master/index.php?q=civicrm/admin/setting/preferences/member&reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:25:\"{weight}.Membership Types\";a:6:{s:5:\"title\";s:16:\"Membership Types\";s:4:\"desc\";s:174:\"Define the types of memberships you want to offer. For each type, you can specify a \'name\' (Gold Member, Honor Society Member...), a description, duration, and a minimum fee.\";s:2:\"id\";s:15:\"MembershipTypes\";s:3:\"url\";s:75:\"/civicrm-master/index.php?q=civicrm/admin/member/membershipType&reset=1\";s:4:\"icon\";s:31:\"admin/small/membership_type.png\";s:5:\"extra\";N;}s:32:\"{weight}.Membership Status Rules\";a:6:{s:5:\"title\";s:23:\"Membership Status Rules\";s:4:\"desc\";s:187:\"Status \'rules\' define the current status for a membership based on that membership\'s start and end dates. You can adjust the default status options and rules as needed to meet your needs.\";s:2:\"id\";s:21:\"MembershipStatusRules\";s:3:\"url\";s:77:\"/civicrm-master/index.php?q=civicrm/admin/member/membershipStatus&reset=1\";s:4:\"icon\";s:33:\"admin/small/membership_status.png\";s:5:\"extra\";N;}}s:9:\"perColumn\";d:2;}s:6:\"Manage\";a:3:{s:12:\"component_id\";N;s:6:\"fields\";a:3:{s:27:\"{weight}.Scheduled Jobs Log\";a:6:{s:5:\"title\";s:18:\"Scheduled Jobs Log\";s:4:\"desc\";s:46:\"Browsing the log of periodially running tasks.\";s:2:\"id\";s:16:\"ScheduledJobsLog\";s:3:\"url\";s:60:\"/civicrm-master/index.php?q=civicrm/admin/joblog&reset=1\";s:4:\"icon\";s:18:\"admin/small/13.png\";s:5:\"extra\";N;}s:42:\"{weight}.Find and Merge Duplicate Contacts\";a:6:{s:5:\"title\";s:33:\"Find and Merge Duplicate Contacts\";s:4:\"desc\";s:158:\"Manage the rules used to identify potentially duplicate contact records. Scan for duplicates using a selected rule and merge duplicate contact data as needed.\";s:2:\"id\";s:29:\"FindandMergeDuplicateContacts\";s:3:\"url\";s:67:\"/civicrm-master/index.php?q=civicrm/contact/deduperules&reset=1\";s:4:\"icon\";s:34:\"admin/small/duplicate_matching.png\";s:5:\"extra\";N;}s:26:\"{weight}.Dedupe Exceptions\";a:6:{s:5:\"title\";s:17:\"Dedupe Exceptions\";s:4:\"desc\";N;s:2:\"id\";s:16:\"DedupeExceptions\";s:3:\"url\";s:64:\"/civicrm-master/index.php?q=civicrm/dedupe/exception&reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}}s:9:\"perColumn\";d:2;}s:12:\"Option Lists\";a:3:{s:12:\"component_id\";N;s:6:\"fields\";a:1:{s:20:\"{weight}.Grant Types\";a:6:{s:5:\"title\";s:11:\"Grant Types\";s:4:\"desc\";s:148:\"List of types which can be assigned to Grants. (Enable CiviGrant from Administer > Systme Settings > Enable Components if you want to track grants.)\";s:2:\"id\";s:10:\"GrantTypes\";s:3:\"url\";s:72:\"/civicrm-master/index.php?q=civicrm/admin/options/grant_type&reset=1\";s:4:\"icon\";s:26:\"admin/small/grant_type.png\";s:5:\"extra\";N;}}s:9:\"perColumn\";d:1;}s:9:\"Customize\";a:3:{s:12:\"component_id\";N;s:6:\"fields\";a:1:{s:19:\"{weight}.Price Sets\";a:6:{s:5:\"title\";s:10:\"Price Sets\";s:4:\"desc\";s:205:\"Price sets allow you to offer multiple options with associated fees (e.g. pre-conference workshops, additional meals, etc.). Configure Price Sets for events which need more than a single set of fee levels.\";s:2:\"id\";s:9:\"PriceSets\";s:3:\"url\";s:59:\"/civicrm-master/index.php?q=civicrm/admin/price&reset=1\";s:4:\"icon\";s:26:\"admin/small/price_sets.png\";s:5:\"extra\";N;}}s:9:\"perColumn\";d:1;}s:14:\"CiviContribute\";a:3:{s:12:\"component_id\";N;s:6:\"fields\";a:9:{s:32:\"{weight}.Personal Campaign Pages\";a:6:{s:5:\"title\";s:23:\"Personal Campaign Pages\";s:4:\"desc\";s:49:\"View and manage existing personal campaign pages.\";s:2:\"id\";s:21:\"PersonalCampaignPages\";s:3:\"url\";s:80:\"/civicrm-master/index.php?q=civicrm/admin/pcp&context=contribute&reset=1\";s:4:\"icon\";s:34:\"admin/small/contribution_types.png\";s:5:\"extra\";N;}s:34:\"{weight}.Manage Contribution Pages\";a:6:{s:5:\"title\";s:25:\"Manage Contribution Pages\";s:4:\"desc\";s:242:\"CiviContribute allows you to create and maintain any number of Online Contribution Pages. You can create different pages for different programs or campaigns - and customize text, amounts, types of information collected from contributors, etc.\";s:2:\"id\";s:23:\"ManageContributionPages\";s:3:\"url\";s:64:\"/civicrm-master/index.php?q=civicrm/admin/contribute&reset=1\";s:4:\"icon\";s:41:\"admin/small/online_contribution_pages.png\";s:5:\"extra\";N;}s:24:\"{weight}.Manage Premiums\";a:6:{s:5:\"title\";s:15:\"Manage Premiums\";s:4:\"desc\";s:175:\"CiviContribute allows you to configure any number of Premiums which can be offered to contributors as incentives / thank-you gifts. Define the premiums you want to offer here.\";s:2:\"id\";s:14:\"ManagePremiums\";s:3:\"url\";s:79:\"/civicrm-master/index.php?q=civicrm/admin/contribute/managePremiums&reset=1\";s:4:\"icon\";s:24:\"admin/small/Premiums.png\";s:5:\"extra\";N;}s:24:\"{weight}.Financial Types\";a:6:{s:5:\"title\";s:15:\"Financial Types\";s:4:\"desc\";s:64:\"Formerly civicrm_contribution_type merged into this table in 4.1\";s:2:\"id\";s:14:\"FinancialTypes\";s:3:\"url\";s:77:\"/civicrm-master/index.php?q=civicrm/admin/financial/financialType&reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:27:\"{weight}.Financial Accounts\";a:6:{s:5:\"title\";s:18:\"Financial Accounts\";s:4:\"desc\";s:128:\"Financial types are used to categorize contributions for reporting and accounting purposes. These are also referred to as Funds.\";s:2:\"id\";s:17:\"FinancialAccounts\";s:3:\"url\";s:80:\"/civicrm-master/index.php?q=civicrm/admin/financial/financialAccount&reset=1\";s:4:\"icon\";s:34:\"admin/small/contribution_types.png\";s:5:\"extra\";N;}s:24:\"{weight}.Payment Methods\";a:6:{s:5:\"title\";s:15:\"Payment Methods\";s:4:\"desc\";s:224:\"You may choose to record the payment instrument used for each contribution. Common payment methods are installed by default (e.g. Check, Cash, Credit Card...). If your site requires additional payment methods, add them here.\";s:2:\"id\";s:14:\"PaymentMethods\";s:3:\"url\";s:80:\"/civicrm-master/index.php?q=civicrm/admin/options/payment_instrument&reset=1\";s:4:\"icon\";s:35:\"admin/small/payment_instruments.png\";s:5:\"extra\";N;}s:30:\"{weight}.Accepted Credit Cards\";a:6:{s:5:\"title\";s:21:\"Accepted Credit Cards\";s:4:\"desc\";s:94:\"Credit card options that will be offered to contributors using your Online Contribution pages.\";s:2:\"id\";s:19:\"AcceptedCreditCards\";s:3:\"url\";s:79:\"/civicrm-master/index.php?q=civicrm/admin/options/accept_creditcard&reset=1\";s:4:\"icon\";s:36:\"admin/small/accepted_creditcards.png\";s:5:\"extra\";N;}s:26:\"{weight}.Soft Credit Types\";a:6:{s:5:\"title\";s:17:\"Soft Credit Types\";s:4:\"desc\";s:86:\"Soft Credit Types that will be offered to contributors during soft credit contribution\";s:2:\"id\";s:15:\"SoftCreditTypes\";s:3:\"url\";s:78:\"/civicrm-master/index.php?q=civicrm/admin/options/soft_credit_type&reset=1\";s:4:\"icon\";s:32:\"admin/small/soft_credit_type.png\";s:5:\"extra\";N;}s:42:\"{weight}.CiviContribute Component Settings\";a:6:{s:5:\"title\";s:33:\"CiviContribute Component Settings\";s:4:\"desc\";s:42:\"Configure global CiviContribute behaviors.\";s:2:\"id\";s:31:\"CiviContributeComponentSettings\";s:3:\"url\";s:84:\"/civicrm-master/index.php?q=civicrm/admin/setting/preferences/contribute&reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}}s:9:\"perColumn\";d:5;}s:8:\"CiviCase\";a:3:{s:12:\"component_id\";N;s:6:\"fields\";a:5:{s:26:\"{weight}.CiviCase Settings\";a:6:{s:5:\"title\";s:17:\"CiviCase Settings\";s:4:\"desc\";N;s:2:\"id\";s:16:\"CiviCaseSettings\";s:3:\"url\";s:66:\"/civicrm-master/index.php?q=civicrm/admin/setting/case&reset=1\";s:4:\"icon\";s:18:\"admin/small/36.png\";s:5:\"extra\";N;}s:19:\"{weight}.Case Types\";a:6:{s:5:\"title\";s:10:\"Case Types\";s:4:\"desc\";s:137:\"List of types which can be assigned to Cases. (Enable the Cases tab from System Settings - Enable Components if you want to track cases.)\";s:2:\"id\";s:9:\"CaseTypes\";s:3:\"url\";s:71:\"/civicrm-master/index.php?q=civicrm/admin/options/case_type&reset=1\";s:4:\"icon\";s:25:\"admin/small/case_type.png\";s:5:\"extra\";N;}s:24:\"{weight}.Redaction Rules\";a:6:{s:5:\"title\";s:15:\"Redaction Rules\";s:4:\"desc\";s:223:\"List of rules which can be applied to user input strings so that the redacted output can be recognized as repeated instances of the same string or can be identified as a \"semantic type of the data element\" within case data.\";s:2:\"id\";s:14:\"RedactionRules\";s:3:\"url\";s:76:\"/civicrm-master/index.php?q=civicrm/admin/options/redaction_rule&reset=1\";s:4:\"icon\";s:30:\"admin/small/redaction_type.png\";s:5:\"extra\";N;}s:22:\"{weight}.Case Statuses\";a:6:{s:5:\"title\";s:13:\"Case Statuses\";s:4:\"desc\";s:48:\"List of statuses that can be assigned to a case.\";s:2:\"id\";s:12:\"CaseStatuses\";s:3:\"url\";s:73:\"/civicrm-master/index.php?q=civicrm/admin/options/case_status&reset=1\";s:4:\"icon\";s:25:\"admin/small/case_type.png\";s:5:\"extra\";N;}s:26:\"{weight}.Encounter Mediums\";a:6:{s:5:\"title\";s:17:\"Encounter Mediums\";s:4:\"desc\";s:26:\"List of encounter mediums.\";s:2:\"id\";s:16:\"EncounterMediums\";s:3:\"url\";s:78:\"/civicrm-master/index.php?q=civicrm/admin/options/encounter_medium&reset=1\";s:4:\"icon\";s:25:\"admin/small/case_type.png\";s:5:\"extra\";N;}}s:9:\"perColumn\";d:3;}s:10:\"CiviReport\";a:3:{s:12:\"component_id\";N;s:6:\"fields\";a:3:{s:40:\"{weight}.Create New Report from Template\";a:6:{s:5:\"title\";s:31:\"Create New Report from Template\";s:4:\"desc\";s:49:\"Component wise listing of all available templates\";s:2:\"id\";s:27:\"CreateNewReportfromTemplate\";s:3:\"url\";s:74:\"/civicrm-master/index.php?q=civicrm/admin/report/template/list&reset=1\";s:4:\"icon\";s:31:\"admin/small/report_template.gif\";s:5:\"extra\";N;}s:25:\"{weight}.Manage Templates\";a:6:{s:5:\"title\";s:16:\"Manage Templates\";s:4:\"desc\";s:45:\"Browse, Edit and Delete the Report templates.\";s:2:\"id\";s:15:\"ManageTemplates\";s:3:\"url\";s:84:\"/civicrm-master/index.php?q=civicrm/admin/report/options/report_template&reset=1\";s:4:\"icon\";s:24:\"admin/small/template.png\";s:5:\"extra\";N;}s:24:\"{weight}.Reports Listing\";a:6:{s:5:\"title\";s:15:\"Reports Listing\";s:4:\"desc\";s:60:\"Browse existing report, change report criteria and settings.\";s:2:\"id\";s:14:\"ReportsListing\";s:3:\"url\";s:65:\"/civicrm-master/index.php?q=civicrm/admin/report/list&reset=1\";s:4:\"icon\";s:27:\"admin/small/report_list.gif\";s:5:\"extra\";N;}}s:9:\"perColumn\";d:2;}}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,1,NULL,'a:0:{}'); /*!40000 ALTER TABLE `civicrm_menu` ENABLE KEYS */; UNLOCK TABLES; @@ -986,7 +986,7 @@ UNLOCK TABLES; LOCK TABLES `civicrm_note` WRITE; /*!40000 ALTER TABLE `civicrm_note` DISABLE KEYS */; -INSERT INTO `civicrm_note` (`id`, `entity_table`, `entity_id`, `note`, `contact_id`, `modified_date`, `subject`, `privacy`) VALUES (1,'civicrm_contact',48,'Organize the Terry Fox run',1,'2017-11-20',NULL,'0'),(2,'civicrm_contact',62,'Arrange for cricket match with Sunil Gavaskar',1,'2018-02-11',NULL,'0'),(3,'civicrm_contact',71,'Get the registration done for NGO status',1,'2017-11-29',NULL,'0'),(4,'civicrm_contact',142,'Contact the Commissioner of Charities',1,'2018-04-28',NULL,'0'),(5,'civicrm_contact',10,'Reminder screening of \"Black\" on next Friday',1,'2018-01-14',NULL,'0'),(6,'civicrm_contact',49,'Arrange for cricket match with Sunil Gavaskar',1,'2018-01-17',NULL,'0'),(7,'civicrm_contact',42,'Arrange for cricket match with Sunil Gavaskar',1,'2017-07-24',NULL,'0'),(8,'civicrm_contact',199,'Chart out route map for next 10k run',1,'2017-08-22',NULL,'0'),(9,'civicrm_contact',101,'Contact the Commissioner of Charities',1,'2018-01-13',NULL,'0'),(10,'civicrm_contact',144,'Connect for presentation',1,'2017-06-15',NULL,'0'),(11,'civicrm_contact',189,'Get the registration done for NGO status',1,'2017-11-12',NULL,'0'),(12,'civicrm_contact',91,'Send reminder for annual dinner',1,'2017-05-21',NULL,'0'),(13,'civicrm_contact',9,'Send newsletter for April 2005',1,'2018-02-06',NULL,'0'),(14,'civicrm_contact',75,'Chart out route map for next 10k run',1,'2017-07-14',NULL,'0'),(15,'civicrm_contact',107,'Reminder screening of \"Black\" on next Friday',1,'2018-02-26',NULL,'0'),(16,'civicrm_contact',160,'Contact the Commissioner of Charities',1,'2018-03-26',NULL,'0'),(17,'civicrm_contact',129,'Connect for presentation',1,'2017-12-04',NULL,'0'),(18,'civicrm_contact',45,'Send newsletter for April 2005',1,'2018-03-05',NULL,'0'),(19,'civicrm_contact',39,'Chart out route map for next 10k run',1,'2017-08-06',NULL,'0'),(20,'civicrm_contact',25,'Get the registration done for NGO status',1,'2018-05-11',NULL,'0'); +INSERT INTO `civicrm_note` (`id`, `entity_table`, `entity_id`, `note`, `contact_id`, `modified_date`, `subject`, `privacy`) VALUES (1,'civicrm_contact',88,'Reminder screening of \"Black\" on next Friday',1,'2017-10-17',NULL,'0'),(2,'civicrm_contact',72,'Arrange collection of funds from members',1,'2017-07-04',NULL,'0'),(3,'civicrm_contact',87,'Invite members for the Steve Prefontaine 10k dream run',1,'2017-07-06',NULL,'0'),(4,'civicrm_contact',36,'Get the registration done for NGO status',1,'2018-02-12',NULL,'0'),(5,'civicrm_contact',182,'Contact the Commissioner of Charities',1,'2017-08-29',NULL,'0'),(6,'civicrm_contact',53,'Organize the Terry Fox run',1,'2018-02-15',NULL,'0'),(7,'civicrm_contact',190,'Arrange collection of funds from members',1,'2017-07-17',NULL,'0'),(8,'civicrm_contact',18,'Reminder screening of \"Black\" on next Friday',1,'2017-07-11',NULL,'0'),(9,'civicrm_contact',87,'Arrange for cricket match with Sunil Gavaskar',1,'2018-04-10',NULL,'0'),(10,'civicrm_contact',11,'Invite members for the Steve Prefontaine 10k dream run',1,'2018-01-23',NULL,'0'),(11,'civicrm_contact',10,'Contact the Commissioner of Charities',1,'2017-12-25',NULL,'0'),(12,'civicrm_contact',16,'Connect for presentation',1,'2017-11-18',NULL,'0'),(13,'civicrm_contact',24,'Get the registration done for NGO status',1,'2017-11-05',NULL,'0'),(14,'civicrm_contact',98,'Organize the Terry Fox run',1,'2018-01-30',NULL,'0'),(15,'civicrm_contact',73,'Arrange for cricket match with Sunil Gavaskar',1,'2017-06-09',NULL,'0'),(16,'civicrm_contact',66,'Reminder screening of \"Black\" on next Friday',1,'2017-05-30',NULL,'0'),(17,'civicrm_contact',21,'Connect for presentation',1,'2017-10-06',NULL,'0'),(18,'civicrm_contact',170,'Organize the Terry Fox run',1,'2017-11-07',NULL,'0'),(19,'civicrm_contact',119,'Contact the Commissioner of Charities',1,'2018-04-07',NULL,'0'),(20,'civicrm_contact',80,'Arrange collection of funds from members',1,'2018-05-19',NULL,'0'); /*!40000 ALTER TABLE `civicrm_note` ENABLE KEYS */; UNLOCK TABLES; @@ -1025,7 +1025,7 @@ UNLOCK TABLES; LOCK TABLES `civicrm_participant` WRITE; /*!40000 ALTER TABLE `civicrm_participant` DISABLE KEYS */; -INSERT INTO `civicrm_participant` (`id`, `contact_id`, `event_id`, `status_id`, `role_id`, `register_date`, `source`, `fee_level`, `is_test`, `is_pay_later`, `fee_amount`, `registered_by_id`, `discount_id`, `fee_currency`, `campaign_id`, `discount_amount`, `cart_id`, `must_wait`, `transferred_to_contact_id`) VALUES (1,6,1,1,'1','2009-01-21 00:00:00','Check','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL),(2,187,2,2,'2','2008-05-07 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL),(3,10,3,3,'3','2008-05-05 00:00:00','Credit Card','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL),(4,52,1,4,'4','2008-10-21 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL),(5,173,2,1,'1','2008-01-10 00:00:00','Check','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL),(6,166,3,2,'2','2008-03-05 00:00:00','Direct Transfer','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL),(7,183,1,3,'3','2009-07-21 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL),(8,181,2,4,'4','2009-03-07 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL),(9,40,3,1,'1','2008-02-05 00:00:00','Direct Transfer','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL),(10,27,1,2,'2','2008-02-01 00:00:00','Check','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL),(11,9,2,3,'3','2009-01-10 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL),(12,3,3,4,'4','2009-03-06 00:00:00','Credit Card','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL),(13,91,1,1,'2','2008-06-04 00:00:00','Credit Card','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL),(14,58,2,2,'3','2008-01-10 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL),(15,101,3,4,'1','2008-07-04 00:00:00','Check','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL),(16,67,1,4,'2','2009-01-21 00:00:00','Credit Card','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL),(17,73,2,2,'3','2008-01-10 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL),(18,117,3,3,'1','2009-03-05 00:00:00','Credit Card','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL),(19,46,1,2,'1','2008-10-21 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL),(20,197,2,4,'1','2009-01-10 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL),(21,43,3,1,'4','2008-03-25 00:00:00','Check','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL),(22,62,1,2,'3','2009-10-21 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL),(23,4,2,4,'1','2008-01-10 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL),(24,99,3,3,'1','2008-03-11 00:00:00','Credit Card','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL),(25,152,3,2,'2','2008-04-05 00:00:00','Direct Transfer','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL),(26,50,1,1,'1','2009-01-21 00:00:00','Check','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL),(27,14,2,2,'2','2008-05-07 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL),(28,81,3,3,'3','2009-12-12 00:00:00','Direct Transfer','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL),(29,154,1,4,'4','2009-12-13 00:00:00','Credit Card','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL),(30,39,2,1,'1','2009-12-14 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL),(31,75,3,2,'2','2009-12-15 00:00:00','Credit Card','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL),(32,42,1,3,'3','2009-07-21 00:00:00','Check','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL),(33,147,2,4,'4','2009-03-07 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL),(34,143,3,1,'1','2009-12-15 00:00:00','Credit Card','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL),(35,72,1,2,'2','2009-12-13 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL),(36,17,2,3,'3','2009-01-10 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL),(37,140,3,4,'4','2009-03-06 00:00:00','Check','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL),(38,35,1,1,'2','2009-12-13 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL),(39,65,2,2,'3','2008-01-10 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL),(40,115,3,4,'1','2009-12-14 00:00:00','Credit Card','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL),(41,193,1,4,'2','2009-01-21 00:00:00','Credit Card','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL),(42,196,2,2,'3','2009-12-15 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL),(43,74,3,3,'1','2009-03-05 00:00:00','Credit Card','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL),(44,141,1,2,'1','2009-12-13 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL),(45,145,2,4,'1','2009-01-10 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL),(46,96,3,1,'4','2009-12-13 00:00:00','Check','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL),(47,139,1,2,'3','2009-10-21 00:00:00','Credit Card','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL),(48,11,2,4,'1','2009-12-10 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL),(49,30,3,3,'1','2009-03-11 00:00:00','Credit Card','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL),(50,83,3,2,'2','2009-04-05 00:00:00','Check','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL); +INSERT INTO `civicrm_participant` (`id`, `contact_id`, `event_id`, `status_id`, `role_id`, `register_date`, `source`, `fee_level`, `is_test`, `is_pay_later`, `fee_amount`, `registered_by_id`, `discount_id`, `fee_currency`, `campaign_id`, `discount_amount`, `cart_id`, `must_wait`, `transferred_to_contact_id`) VALUES (1,112,1,1,'1','2009-01-21 00:00:00','Check','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL),(2,51,2,2,'2','2008-05-07 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL),(3,114,3,3,'3','2008-05-05 00:00:00','Credit Card','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL),(4,109,1,4,'4','2008-10-21 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL),(5,96,2,1,'1','2008-01-10 00:00:00','Check','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL),(6,124,3,2,'2','2008-03-05 00:00:00','Direct Transfer','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL),(7,153,1,3,'3','2009-07-21 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL),(8,31,2,4,'4','2009-03-07 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL),(9,177,3,1,'1','2008-02-05 00:00:00','Direct Transfer','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL),(10,106,1,2,'2','2008-02-01 00:00:00','Check','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL),(11,61,2,3,'3','2009-01-10 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL),(12,151,3,4,'4','2009-03-06 00:00:00','Credit Card','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL),(13,19,1,1,'2','2008-06-04 00:00:00','Credit Card','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL),(14,41,2,2,'3','2008-01-10 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL),(15,199,3,4,'1','2008-07-04 00:00:00','Check','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL),(16,115,1,4,'2','2009-01-21 00:00:00','Credit Card','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL),(17,63,2,2,'3','2008-01-10 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL),(18,89,3,3,'1','2009-03-05 00:00:00','Credit Card','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL),(19,137,1,2,'1','2008-10-21 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL),(20,35,2,4,'1','2009-01-10 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL),(21,110,3,1,'4','2008-03-25 00:00:00','Check','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL),(22,103,1,2,'3','2009-10-21 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL),(23,9,2,4,'1','2008-01-10 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL),(24,166,3,3,'1','2008-03-11 00:00:00','Credit Card','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL),(25,2,3,2,'2','2008-04-05 00:00:00','Direct Transfer','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL),(26,7,1,1,'1','2009-01-21 00:00:00','Check','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL),(27,155,2,2,'2','2008-05-07 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL),(28,113,3,3,'3','2009-12-12 00:00:00','Direct Transfer','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL),(29,188,1,4,'4','2009-12-13 00:00:00','Credit Card','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL),(30,101,2,1,'1','2009-12-14 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL),(31,186,3,2,'2','2009-12-15 00:00:00','Credit Card','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL),(32,129,1,3,'3','2009-07-21 00:00:00','Check','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL),(33,133,2,4,'4','2009-03-07 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL),(34,108,3,1,'1','2009-12-15 00:00:00','Credit Card','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL),(35,4,1,2,'2','2009-12-13 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL),(36,85,2,3,'3','2009-01-10 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL),(37,20,3,4,'4','2009-03-06 00:00:00','Check','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL),(38,25,1,1,'2','2009-12-13 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL),(39,121,2,2,'3','2008-01-10 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL),(40,48,3,4,'1','2009-12-14 00:00:00','Credit Card','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL),(41,131,1,4,'2','2009-01-21 00:00:00','Credit Card','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL),(42,86,2,2,'3','2009-12-15 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL),(43,44,3,3,'1','2009-03-05 00:00:00','Credit Card','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL),(44,73,1,2,'1','2009-12-13 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL),(45,128,2,4,'1','2009-01-10 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL),(46,164,3,1,'4','2009-12-13 00:00:00','Check','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL),(47,182,1,2,'3','2009-10-21 00:00:00','Credit Card','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL),(48,66,2,4,'1','2009-12-10 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL),(49,162,3,3,'1','2009-03-11 00:00:00','Credit Card','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL),(50,190,3,2,'2','2009-04-05 00:00:00','Check','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL); /*!40000 ALTER TABLE `civicrm_participant` ENABLE KEYS */; UNLOCK TABLES; @@ -1035,7 +1035,7 @@ UNLOCK TABLES; LOCK TABLES `civicrm_participant_payment` WRITE; /*!40000 ALTER TABLE `civicrm_participant_payment` DISABLE KEYS */; -INSERT INTO `civicrm_participant_payment` (`id`, `participant_id`, `contribution_id`) VALUES (1,12,45),(2,23,46),(3,1,47),(4,11,48),(5,3,49),(6,48,50),(7,27,51),(8,36,52),(9,10,53),(10,49,54),(11,38,55),(12,30,56),(13,9,57),(14,32,58),(15,21,59),(16,19,60),(17,26,61),(18,4,62),(19,14,63),(20,22,64),(21,39,65),(22,16,66),(23,35,67),(24,17,68),(25,43,69),(26,31,70),(27,28,71),(28,50,72),(29,13,73),(30,46,74),(31,24,75),(32,15,76),(33,40,77),(34,18,78),(35,47,79),(36,37,80),(37,44,81),(38,34,82),(39,45,83),(40,33,84),(41,25,85),(42,29,86),(43,6,87),(44,5,88),(45,8,89),(46,7,90),(47,2,91),(48,41,92),(49,42,93),(50,20,94); +INSERT INTO `civicrm_participant_payment` (`id`, `participant_id`, `contribution_id`) VALUES (1,25,45),(2,35,46),(3,26,47),(4,23,48),(5,13,49),(6,37,50),(7,38,51),(8,8,52),(9,20,53),(10,14,54),(11,43,55),(12,40,56),(13,2,57),(14,11,58),(15,17,59),(16,48,60),(17,44,61),(18,36,62),(19,42,63),(20,18,64),(21,5,65),(22,30,66),(23,22,67),(24,10,68),(25,34,69),(26,4,70),(27,21,71),(28,1,72),(29,28,73),(30,3,74),(31,16,75),(32,39,76),(33,6,77),(34,45,78),(35,32,79),(36,41,80),(37,33,81),(38,19,82),(39,12,83),(40,7,84),(41,27,85),(42,49,86),(43,46,87),(44,24,88),(45,9,89),(46,47,90),(47,31,91),(48,29,92),(49,50,93),(50,15,94); /*!40000 ALTER TABLE `civicrm_participant_payment` ENABLE KEYS */; UNLOCK TABLES; @@ -1083,7 +1083,7 @@ UNLOCK TABLES; LOCK TABLES `civicrm_pcp` WRITE; /*!40000 ALTER TABLE `civicrm_pcp` DISABLE KEYS */; -INSERT INTO `civicrm_pcp` (`id`, `contact_id`, `status_id`, `title`, `intro_text`, `page_text`, `donate_link_text`, `page_id`, `page_type`, `pcp_block_id`, `is_thermometer`, `is_honor_roll`, `goal_amount`, `currency`, `is_active`, `is_notify`) VALUES (1,135,2,'My Personal Civi Fundraiser','I\'m on a mission to get all my friends and family to help support my favorite open-source civic sector CRM.','

Friends and family - please help build much needed infrastructure for the civic sector by supporting my personal campaign!

\r\n

You can learn more about CiviCRM here.

\r\n

Then click the Contribute Now button to go to our easy-to-use online contribution form.

','Contribute Now',1,'contribute',1,1,1,5000.00,'USD',1,1); +INSERT INTO `civicrm_pcp` (`id`, `contact_id`, `status_id`, `title`, `intro_text`, `page_text`, `donate_link_text`, `page_id`, `page_type`, `pcp_block_id`, `is_thermometer`, `is_honor_roll`, `goal_amount`, `currency`, `is_active`, `is_notify`) VALUES (1,57,2,'My Personal Civi Fundraiser','I\'m on a mission to get all my friends and family to help support my favorite open-source civic sector CRM.','

Friends and family - please help build much needed infrastructure for the civic sector by supporting my personal campaign!

\r\n

You can learn more about CiviCRM here.

\r\n

Then click the Contribute Now button to go to our easy-to-use online contribution form.

','Contribute Now',1,'contribute',1,1,1,5000.00,'USD',1,1); /*!40000 ALTER TABLE `civicrm_pcp` ENABLE KEYS */; UNLOCK TABLES; @@ -1112,7 +1112,7 @@ UNLOCK TABLES; LOCK TABLES `civicrm_phone` WRITE; /*!40000 ALTER TABLE `civicrm_phone` DISABLE KEYS */; -INSERT INTO `civicrm_phone` (`id`, `contact_id`, `location_type_id`, `is_primary`, `is_billing`, `mobile_provider_id`, `phone`, `phone_ext`, `phone_numeric`, `phone_type_id`) VALUES (1,196,1,1,0,NULL,'(773) 637-8823',NULL,'7736378823',1),(2,196,1,0,0,NULL,'536-4351',NULL,'5364351',1),(3,193,1,1,0,NULL,'452-9725',NULL,'4529725',2),(4,93,1,1,0,NULL,'516-8349',NULL,'5168349',1),(5,93,1,0,0,NULL,'(497) 280-5003',NULL,'4972805003',2),(6,184,1,1,0,NULL,'(845) 411-5000',NULL,'8454115000',2),(7,184,1,0,0,NULL,'(514) 829-3175',NULL,'5148293175',2),(8,77,1,1,0,NULL,'413-1482',NULL,'4131482',1),(9,42,1,1,0,NULL,'761-1459',NULL,'7611459',2),(10,42,1,0,0,NULL,'484-6030',NULL,'4846030',2),(11,20,1,1,0,NULL,'(350) 842-1176',NULL,'3508421176',1),(12,198,1,1,0,NULL,'772-1329',NULL,'7721329',2),(13,13,1,1,0,NULL,'371-2222',NULL,'3712222',1),(14,83,1,1,0,NULL,'(478) 499-2022',NULL,'4784992022',1),(15,97,1,1,0,NULL,'(411) 354-1667',NULL,'4113541667',2),(16,97,1,0,0,NULL,'(240) 618-4227',NULL,'2406184227',2),(17,110,1,1,0,NULL,'(344) 745-5290',NULL,'3447455290',2),(18,110,1,0,0,NULL,'(223) 374-9475',NULL,'2233749475',1),(19,178,1,1,0,NULL,'288-5860',NULL,'2885860',1),(20,177,1,1,0,NULL,'(893) 869-2959',NULL,'8938692959',2),(21,157,1,1,0,NULL,'250-5553',NULL,'2505553',2),(22,157,1,0,0,NULL,'(226) 720-3750',NULL,'2267203750',2),(23,14,1,1,0,NULL,'(239) 220-3797',NULL,'2392203797',2),(24,65,1,1,0,NULL,'(562) 712-9640',NULL,'5627129640',1),(25,78,1,1,0,NULL,'867-7266',NULL,'8677266',1),(26,78,1,0,0,NULL,'684-4676',NULL,'6844676',1),(27,47,1,1,0,NULL,'(693) 857-2883',NULL,'6938572883',1),(28,47,1,0,0,NULL,'(422) 373-7432',NULL,'4223737432',2),(29,57,1,1,0,NULL,'(503) 774-8920',NULL,'5037748920',2),(30,57,1,0,0,NULL,'677-2473',NULL,'6772473',2),(31,61,1,1,0,NULL,'541-5157',NULL,'5415157',2),(32,61,1,0,0,NULL,'(637) 298-7533',NULL,'6372987533',2),(33,84,1,1,0,NULL,'585-5537',NULL,'5855537',1),(34,145,1,1,0,NULL,'230-4189',NULL,'2304189',1),(35,41,1,1,0,NULL,'(898) 459-8835',NULL,'8984598835',1),(36,28,1,1,0,NULL,'822-8217',NULL,'8228217',2),(37,28,1,0,0,NULL,'(778) 500-3126',NULL,'7785003126',1),(38,124,1,1,0,NULL,'(885) 217-1448',NULL,'8852171448',1),(39,124,1,0,0,NULL,'(564) 812-5915',NULL,'5648125915',2),(40,27,1,1,0,NULL,'317-7006',NULL,'3177006',2),(41,19,1,1,0,NULL,'(487) 232-8389',NULL,'4872328389',2),(42,55,1,1,0,NULL,'(567) 797-5757',NULL,'5677975757',2),(43,200,1,1,0,NULL,'(316) 894-6484',NULL,'3168946484',1),(44,59,1,1,0,NULL,'(496) 471-2003',NULL,'4964712003',2),(45,71,1,1,0,NULL,'596-9440',NULL,'5969440',1),(46,71,1,0,0,NULL,'456-8715',NULL,'4568715',2),(47,119,1,1,0,NULL,'439-3741',NULL,'4393741',1),(48,21,1,1,0,NULL,'(387) 564-4652',NULL,'3875644652',2),(49,36,1,1,0,NULL,'611-4119',NULL,'6114119',1),(50,82,1,1,0,NULL,'377-9230',NULL,'3779230',1),(51,8,1,1,0,NULL,'(389) 422-9465',NULL,'3894229465',2),(52,29,1,1,0,NULL,'(327) 821-5900',NULL,'3278215900',2),(53,54,1,1,0,NULL,'(595) 450-9152',NULL,'5954509152',2),(54,54,1,0,0,NULL,'860-4936',NULL,'8604936',1),(55,107,1,1,0,NULL,'682-1473',NULL,'6821473',2),(56,107,1,0,0,NULL,'(877) 761-1789',NULL,'8777611789',2),(57,162,1,1,0,NULL,'(706) 606-3607',NULL,'7066063607',1),(58,162,1,0,0,NULL,'(248) 628-9277',NULL,'2486289277',2),(59,22,1,1,0,NULL,'(404) 569-3700',NULL,'4045693700',2),(60,22,1,0,0,NULL,'(414) 781-7952',NULL,'4147817952',1),(61,72,1,1,0,NULL,'578-4300',NULL,'5784300',2),(62,72,1,0,0,NULL,'(277) 286-9896',NULL,'2772869896',1),(63,139,1,1,0,NULL,'(370) 698-5715',NULL,'3706985715',1),(64,139,1,0,0,NULL,'340-7041',NULL,'3407041',1),(65,81,1,1,0,NULL,'743-9369',NULL,'7439369',1),(66,43,1,1,0,NULL,'264-9801',NULL,'2649801',2),(67,191,1,1,0,NULL,'631-4307',NULL,'6314307',1),(68,191,1,0,0,NULL,'722-7997',NULL,'7227997',2),(69,128,1,1,0,NULL,'(775) 567-4314',NULL,'7755674314',2),(70,128,1,0,0,NULL,'(501) 526-7057',NULL,'5015267057',1),(71,151,1,1,0,NULL,'658-8493',NULL,'6588493',2),(72,151,1,0,0,NULL,'(207) 204-3681',NULL,'2072043681',1),(73,15,1,1,0,NULL,'265-1960',NULL,'2651960',2),(74,15,1,0,0,NULL,'(738) 577-2568',NULL,'7385772568',2),(75,91,1,1,0,NULL,'399-3447',NULL,'3993447',2),(76,91,1,0,0,NULL,'(831) 655-5589',NULL,'8316555589',2),(77,166,1,1,0,NULL,'(618) 335-1548',NULL,'6183351548',2),(78,166,1,0,0,NULL,'400-4401',NULL,'4004401',1),(79,199,1,1,0,NULL,'(570) 588-1649',NULL,'5705881649',1),(80,199,1,0,0,NULL,'834-7212',NULL,'8347212',1),(81,168,1,1,0,NULL,'(471) 820-9676',NULL,'4718209676',1),(82,168,1,0,0,NULL,'(599) 396-6242',NULL,'5993966242',2),(83,52,1,1,0,NULL,'670-9916',NULL,'6709916',2),(84,52,1,0,0,NULL,'(539) 578-4826',NULL,'5395784826',2),(85,123,1,1,0,NULL,'(826) 207-9464',NULL,'8262079464',2),(86,123,1,0,0,NULL,'742-6730',NULL,'7426730',1),(87,2,1,1,0,NULL,'231-5320',NULL,'2315320',1),(88,2,1,0,0,NULL,'(733) 435-4576',NULL,'7334354576',2),(89,183,1,1,0,NULL,'(378) 425-4203',NULL,'3784254203',2),(90,144,1,1,0,NULL,'321-5157',NULL,'3215157',1),(91,66,1,1,0,NULL,'256-8299',NULL,'2568299',1),(92,66,1,0,0,NULL,'(511) 372-1249',NULL,'5113721249',2),(93,130,1,1,0,NULL,'855-6983',NULL,'8556983',2),(94,87,1,1,0,NULL,'541-7844',NULL,'5417844',2),(95,80,1,1,0,NULL,'423-1880',NULL,'4231880',2),(96,148,1,1,0,NULL,'(768) 397-7187',NULL,'7683977187',1),(97,148,1,0,0,NULL,'(798) 229-6313',NULL,'7982296313',1),(98,113,1,1,0,NULL,'533-2349',NULL,'5332349',2),(99,113,1,0,0,NULL,'556-5998',NULL,'5565998',1),(100,133,1,1,0,NULL,'735-2076',NULL,'7352076',2),(101,133,1,0,0,NULL,'544-9077',NULL,'5449077',2),(102,187,1,1,0,NULL,'820-3428',NULL,'8203428',2),(103,187,1,0,0,NULL,'403-3447',NULL,'4033447',2),(104,6,1,1,0,NULL,'(408) 409-2422',NULL,'4084092422',1),(105,6,1,0,0,NULL,'300-4366',NULL,'3004366',1),(106,112,1,1,0,NULL,'771-9402',NULL,'7719402',1),(107,112,1,0,0,NULL,'436-2682',NULL,'4362682',2),(108,11,1,1,0,NULL,'661-7435',NULL,'6617435',1),(109,96,1,1,0,NULL,'(866) 272-8264',NULL,'8662728264',2),(110,99,1,1,0,NULL,'768-8269',NULL,'7688269',1),(111,99,1,0,0,NULL,'215-8152',NULL,'2158152',1),(112,63,1,1,0,NULL,'(833) 657-1426',NULL,'8336571426',1),(113,126,1,1,0,NULL,'812-1163',NULL,'8121163',2),(114,126,1,0,0,NULL,'(245) 678-7202',NULL,'2456787202',2),(115,79,1,1,0,NULL,'646-3504',NULL,'6463504',1),(116,137,1,1,0,NULL,'(782) 804-6879',NULL,'7828046879',2),(117,137,1,0,0,NULL,'683-7616',NULL,'6837616',1),(118,197,1,1,0,NULL,'(526) 616-2261',NULL,'5266162261',2),(119,197,1,0,0,NULL,'727-5275',NULL,'7275275',2),(120,3,1,1,0,NULL,'246-7673',NULL,'2467673',2),(121,3,1,0,0,NULL,'462-3787',NULL,'4623787',2),(122,120,1,1,0,NULL,'(405) 819-1328',NULL,'4058191328',2),(123,120,1,0,0,NULL,'435-8060',NULL,'4358060',1),(124,76,1,1,0,NULL,'(623) 425-7105',NULL,'6234257105',1),(125,194,1,1,0,NULL,'872-5309',NULL,'8725309',1),(126,194,1,0,0,NULL,'(676) 593-4418',NULL,'6765934418',2),(127,46,1,1,0,NULL,'(713) 684-5421',NULL,'7136845421',1),(128,48,1,1,0,NULL,'401-6955',NULL,'4016955',1),(129,188,1,1,0,NULL,'(463) 800-4326',NULL,'4638004326',1),(130,188,1,0,0,NULL,'(718) 376-5395',NULL,'7183765395',2),(131,104,1,1,0,NULL,'(265) 574-2905',NULL,'2655742905',1),(132,26,1,1,0,NULL,'(726) 750-5737',NULL,'7267505737',2),(133,26,1,0,0,NULL,'(770) 760-2920',NULL,'7707602920',1),(134,169,1,1,0,NULL,'(282) 495-8883',NULL,'2824958883',1),(135,12,1,1,0,NULL,'(395) 543-9465',NULL,'3955439465',2),(136,12,1,0,0,NULL,'776-8415',NULL,'7768415',2),(137,16,1,1,0,NULL,'823-5927',NULL,'8235927',1),(138,74,1,1,0,NULL,'(492) 642-3801',NULL,'4926423801',1),(139,74,1,0,0,NULL,'(412) 299-6738',NULL,'4122996738',2),(140,131,1,1,0,NULL,'449-8143',NULL,'4498143',2),(141,92,1,1,0,NULL,'464-8449',NULL,'4648449',2),(142,92,1,0,0,NULL,'(821) 493-3089',NULL,'8214933089',2),(143,179,1,1,0,NULL,'836-6548',NULL,'8366548',1),(144,179,1,0,0,NULL,'202-5156',NULL,'2025156',2),(145,140,1,1,0,NULL,'(712) 303-1107',NULL,'7123031107',1),(146,38,1,1,0,NULL,'322-8707',NULL,'3228707',1),(147,38,1,0,0,NULL,'(823) 432-2502',NULL,'8234322502',2),(148,172,1,1,0,NULL,'583-2955',NULL,'5832955',1),(149,172,1,0,0,NULL,'430-3463',NULL,'4303463',1),(150,106,1,1,0,NULL,'598-7614',NULL,'5987614',1),(151,147,1,1,0,NULL,'(893) 565-6862',NULL,'8935656862',1),(152,185,1,1,0,NULL,'362-9893',NULL,'3629893',2),(153,185,1,0,0,NULL,'365-8940',NULL,'3658940',2),(154,159,1,1,0,NULL,'(898) 659-8108',NULL,'8986598108',2),(155,88,1,1,0,NULL,'695-8116',NULL,'6958116',2),(156,88,1,0,0,NULL,'(892) 454-9128',NULL,'8924549128',2),(157,4,1,1,0,NULL,'(811) 319-7334',NULL,'8113197334',1),(158,50,1,1,0,NULL,'241-1184',NULL,'2411184',1),(159,50,1,0,0,NULL,'(782) 464-1741',NULL,'7824641741',1),(160,40,1,1,0,NULL,'(232) 372-9043',NULL,'2323729043',1),(161,40,1,0,0,NULL,'312-6582',NULL,'3126582',2),(162,192,1,1,0,NULL,'(600) 807-4714',NULL,'6008074714',2),(163,192,1,0,0,NULL,'613-9406',NULL,'6139406',2),(164,122,1,1,0,NULL,'(462) 614-8026',NULL,'4626148026',1),(165,60,1,1,0,NULL,'(853) 274-9333',NULL,'8532749333',1),(166,109,1,1,0,NULL,'(424) 476-9907',NULL,'4244769907',2),(167,118,1,1,0,NULL,'(495) 522-3936',NULL,'4955223936',2),(168,190,1,1,0,NULL,'(519) 856-6822',NULL,'5198566822',2),(169,190,1,0,0,NULL,'(421) 882-8014',NULL,'4218828014',1),(170,102,1,1,0,NULL,'760-4187',NULL,'7604187',1),(171,134,1,1,0,NULL,'611-3227',NULL,'6113227',1),(172,189,1,1,0,NULL,'(806) 712-1558',NULL,'8067121558',2),(173,175,1,1,0,NULL,'251-4073',NULL,'2514073',1),(174,175,1,0,0,NULL,'683-1230',NULL,'6831230',1),(175,195,1,1,0,NULL,'(510) 560-3743',NULL,'5105603743',1),(176,NULL,1,0,0,NULL,'204 222-1000',NULL,'2042221000',1),(177,NULL,1,0,0,NULL,'204 223-1000',NULL,'2042231000',1),(178,NULL,1,0,0,NULL,'303 323-1000',NULL,'3033231000',1); +INSERT INTO `civicrm_phone` (`id`, `contact_id`, `location_type_id`, `is_primary`, `is_billing`, `mobile_provider_id`, `phone`, `phone_ext`, `phone_numeric`, `phone_type_id`) VALUES (1,96,1,1,0,NULL,'(507) 672-5246',NULL,'5076725246',2),(2,148,1,1,0,NULL,'(707) 300-4569',NULL,'7073004569',2),(3,108,1,1,0,NULL,'(344) 829-5895',NULL,'3448295895',1),(4,38,1,1,0,NULL,'642-9501',NULL,'6429501',2),(5,161,1,1,0,NULL,'434-9768',NULL,'4349768',2),(6,161,1,0,0,NULL,'641-1515',NULL,'6411515',1),(7,155,1,1,0,NULL,'884-5677',NULL,'8845677',2),(8,155,1,0,0,NULL,'487-9868',NULL,'4879868',2),(9,154,1,1,0,NULL,'(401) 216-8909',NULL,'4012168909',2),(10,92,1,1,0,NULL,'237-7771',NULL,'2377771',2),(11,52,1,1,0,NULL,'818-3980',NULL,'8183980',1),(12,107,1,1,0,NULL,'(203) 604-6477',NULL,'2036046477',2),(13,107,1,0,0,NULL,'589-4843',NULL,'5894843',1),(14,94,1,1,0,NULL,'(547) 851-7208',NULL,'5478517208',1),(15,94,1,0,0,NULL,'(227) 765-3049',NULL,'2277653049',1),(16,125,1,1,0,NULL,'411-3708',NULL,'4113708',2),(17,125,1,0,0,NULL,'880-6979',NULL,'8806979',1),(18,115,1,1,0,NULL,'597-3858',NULL,'5973858',1),(19,115,1,0,0,NULL,'611-7919',NULL,'6117919',1),(20,80,1,1,0,NULL,'678-4010',NULL,'6784010',1),(21,80,1,0,0,NULL,'(777) 224-6611',NULL,'7772246611',2),(22,109,1,1,0,NULL,'(230) 572-7897',NULL,'2305727897',1),(23,109,1,0,0,NULL,'485-7404',NULL,'4857404',1),(24,194,1,1,0,NULL,'822-1587',NULL,'8221587',2),(25,194,1,0,0,NULL,'613-9396',NULL,'6139396',1),(26,60,1,1,0,NULL,'895-9533',NULL,'8959533',1),(27,133,1,1,0,NULL,'228-2024',NULL,'2282024',1),(28,127,1,1,0,NULL,'520-1748',NULL,'5201748',2),(29,127,1,0,0,NULL,'742-9351',NULL,'7429351',1),(30,190,1,1,0,NULL,'863-3584',NULL,'8633584',2),(31,190,1,0,0,NULL,'(372) 554-4746',NULL,'3725544746',1),(32,191,1,1,0,NULL,'318-2948',NULL,'3182948',1),(33,191,1,0,0,NULL,'356-6958',NULL,'3566958',2),(34,121,1,1,0,NULL,'(360) 738-3781',NULL,'3607383781',1),(35,121,1,0,0,NULL,'(879) 810-2149',NULL,'8798102149',1),(36,62,1,1,0,NULL,'807-5196',NULL,'8075196',1),(37,62,1,0,0,NULL,'294-1753',NULL,'2941753',2),(38,113,1,1,0,NULL,'641-8091',NULL,'6418091',1),(39,13,1,1,0,NULL,'(543) 598-8943',NULL,'5435988943',1),(40,71,1,1,0,NULL,'(443) 769-4062',NULL,'4437694062',2),(41,71,1,0,0,NULL,'353-4841',NULL,'3534841',2),(42,110,1,1,0,NULL,'(789) 382-5664',NULL,'7893825664',1),(43,110,1,0,0,NULL,'849-9134',NULL,'8499134',1),(44,152,1,1,0,NULL,'434-4238',NULL,'4344238',2),(45,152,1,0,0,NULL,'(697) 332-3990',NULL,'6973323990',1),(46,149,1,1,0,NULL,'(553) 752-5871',NULL,'5537525871',2),(47,36,1,1,0,NULL,'(620) 663-1793',NULL,'6206631793',2),(48,36,1,0,0,NULL,'(551) 686-2557',NULL,'5516862557',2),(49,136,1,1,0,NULL,'(520) 249-4118',NULL,'5202494118',2),(50,150,1,1,0,NULL,'(611) 644-8688',NULL,'6116448688',2),(51,63,1,1,0,NULL,'639-5202',NULL,'6395202',2),(52,63,1,0,0,NULL,'342-4758',NULL,'3424758',1),(53,131,1,1,0,NULL,'704-2888',NULL,'7042888',2),(54,193,1,1,0,NULL,'785-8033',NULL,'7858033',2),(55,193,1,0,0,NULL,'388-6558',NULL,'3886558',1),(56,5,1,1,0,NULL,'841-3631',NULL,'8413631',1),(57,5,1,0,0,NULL,'(728) 755-2318',NULL,'7287552318',1),(58,31,1,1,0,NULL,'(225) 678-3064',NULL,'2256783064',2),(59,31,1,0,0,NULL,'578-5667',NULL,'5785667',1),(60,2,1,1,0,NULL,'254-8403',NULL,'2548403',1),(61,66,1,1,0,NULL,'812-4258',NULL,'8124258',2),(62,66,1,0,0,NULL,'(815) 430-9621',NULL,'8154309621',2),(63,59,1,1,0,NULL,'(715) 496-5734',NULL,'7154965734',2),(64,28,1,1,0,NULL,'336-1989',NULL,'3361989',1),(65,129,1,1,0,NULL,'656-8538',NULL,'6568538',1),(66,129,1,0,0,NULL,'(372) 593-5300',NULL,'3725935300',1),(67,171,1,1,0,NULL,'(750) 374-1574',NULL,'7503741574',1),(68,171,1,0,0,NULL,'344-4957',NULL,'3444957',1),(69,186,1,1,0,NULL,'(812) 754-4411',NULL,'8127544411',1),(70,186,1,0,0,NULL,'(773) 350-1110',NULL,'7733501110',1),(71,126,1,1,0,NULL,'(236) 698-8705',NULL,'2366988705',2),(72,126,1,0,0,NULL,'(231) 762-4171',NULL,'2317624171',2),(73,143,1,1,0,NULL,'(300) 882-6626',NULL,'3008826626',1),(74,143,1,0,0,NULL,'(866) 478-2901',NULL,'8664782901',2),(75,98,1,1,0,NULL,'893-8279',NULL,'8938279',1),(76,98,1,0,0,NULL,'(445) 815-1589',NULL,'4458151589',1),(77,53,1,1,0,NULL,'499-3207',NULL,'4993207',2),(78,53,1,0,0,NULL,'(216) 202-5031',NULL,'2162025031',2),(79,170,1,1,0,NULL,'(781) 205-2601',NULL,'7812052601',2),(80,200,1,1,0,NULL,'(812) 658-3556',NULL,'8126583556',1),(81,93,1,1,0,NULL,'(434) 535-7576',NULL,'4345357576',2),(82,93,1,0,0,NULL,'768-8805',NULL,'7688805',2),(83,49,1,1,0,NULL,'(215) 755-6008',NULL,'2157556008',1),(84,49,1,0,0,NULL,'498-4973',NULL,'4984973',2),(85,58,1,1,0,NULL,'402-2334',NULL,'4022334',2),(86,58,1,0,0,NULL,'(841) 402-8922',NULL,'8414028922',2),(87,168,1,1,0,NULL,'(298) 687-9849',NULL,'2986879849',2),(88,24,1,1,0,NULL,'226-3059',NULL,'2263059',1),(89,24,1,0,0,NULL,'868-1460',NULL,'8681460',1),(90,30,1,1,0,NULL,'537-3653',NULL,'5373653',1),(91,30,1,0,0,NULL,'829-9079',NULL,'8299079',2),(92,50,1,1,0,NULL,'(417) 249-7284',NULL,'4172497284',2),(93,50,1,0,0,NULL,'752-6101',NULL,'7526101',2),(94,45,1,1,0,NULL,'(612) 856-7346',NULL,'6128567346',2),(95,87,1,1,0,NULL,'(817) 664-5162',NULL,'8176645162',2),(96,118,1,1,0,NULL,'(873) 819-8022',NULL,'8738198022',2),(97,118,1,0,0,NULL,'799-2894',NULL,'7992894',2),(98,20,1,1,0,NULL,'(500) 784-2976',NULL,'5007842976',2),(99,20,1,0,0,NULL,'(639) 386-3466',NULL,'6393863466',2),(100,21,1,1,0,NULL,'(571) 489-9039',NULL,'5714899039',1),(101,48,1,1,0,NULL,'843-2463',NULL,'8432463',1),(102,48,1,0,0,NULL,'(495) 362-1693',NULL,'4953621693',1),(103,198,1,1,0,NULL,'775-7636',NULL,'7757636',2),(104,198,1,0,0,NULL,'(356) 662-7771',NULL,'3566627771',1),(105,82,1,1,0,NULL,'778-3054',NULL,'7783054',2),(106,177,1,1,0,NULL,'(279) 552-6850',NULL,'2795526850',2),(107,132,1,1,0,NULL,'395-9522',NULL,'3959522',1),(108,132,1,0,0,NULL,'(224) 875-5792',NULL,'2248755792',2),(109,156,1,1,0,NULL,'(553) 632-4485',NULL,'5536324485',1),(110,32,1,1,0,NULL,'(347) 371-2195',NULL,'3473712195',1),(111,124,1,1,0,NULL,'481-3255',NULL,'4813255',1),(112,124,1,0,0,NULL,'202-5494',NULL,'2025494',1),(113,172,1,1,0,NULL,'(207) 604-4873',NULL,'2076044873',1),(114,172,1,0,0,NULL,'(805) 591-3208',NULL,'8055913208',2),(115,15,1,1,0,NULL,'(349) 583-7177',NULL,'3495837177',2),(116,22,1,1,0,NULL,'404-6854',NULL,'4046854',2),(117,40,1,1,0,NULL,'609-9782',NULL,'6099782',1),(118,40,1,0,0,NULL,'524-8414',NULL,'5248414',1),(119,123,1,1,0,NULL,'836-1136',NULL,'8361136',2),(120,180,1,1,0,NULL,'305-9007',NULL,'3059007',2),(121,180,1,0,0,NULL,'525-3511',NULL,'5253511',1),(122,184,1,1,0,NULL,'(653) 481-5234',NULL,'6534815234',2),(123,8,1,1,0,NULL,'(888) 412-4460',NULL,'8884124460',1),(124,112,1,1,0,NULL,'(685) 612-2023',NULL,'6856122023',2),(125,138,1,1,0,NULL,'839-8027',NULL,'8398027',2),(126,153,1,1,0,NULL,'(726) 862-9912',NULL,'7268629912',1),(127,44,1,1,0,NULL,'457-9935',NULL,'4579935',1),(128,44,1,0,0,NULL,'(412) 208-3303',NULL,'4122083303',2),(129,119,1,1,0,NULL,'820-2823',NULL,'8202823',2),(130,78,1,1,0,NULL,'600-3659',NULL,'6003659',1),(131,144,1,1,0,NULL,'446-2331',NULL,'4462331',2),(132,164,1,1,0,NULL,'565-9544',NULL,'5659544',2),(133,106,1,1,0,NULL,'(622) 331-1600',NULL,'6223311600',2),(134,73,1,1,0,NULL,'714-8146',NULL,'7148146',1),(135,163,1,1,0,NULL,'(805) 802-7921',NULL,'8058027921',2),(136,197,1,1,0,NULL,'392-4508',NULL,'3924508',1),(137,197,1,0,0,NULL,'698-1961',NULL,'6981961',2),(138,196,1,1,0,NULL,'(445) 784-8543',NULL,'4457848543',1),(139,196,1,0,0,NULL,'(693) 539-8688',NULL,'6935398688',2),(140,11,1,1,0,NULL,'387-5538',NULL,'3875538',1),(141,11,1,0,0,NULL,'(623) 559-5058',NULL,'6235595058',1),(142,140,1,1,0,NULL,'(561) 877-3390',NULL,'5618773390',1),(143,27,1,1,0,NULL,'(509) 482-7487',NULL,'5094827487',2),(144,97,1,1,0,NULL,'488-8935',NULL,'4888935',1),(145,97,1,0,0,NULL,'(645) 209-1705',NULL,'6452091705',1),(146,35,1,1,0,NULL,'521-7754',NULL,'5217754',1),(147,79,1,1,0,NULL,'806-4274',NULL,'8064274',1),(148,47,1,1,0,NULL,'(550) 735-7307',NULL,'5507357307',1),(149,47,1,0,0,NULL,'(823) 687-7371',NULL,'8236877371',2),(150,61,1,1,0,NULL,'(339) 564-8485',NULL,'3395648485',1),(151,61,1,0,0,NULL,'646-5490',NULL,'6465490',2),(152,134,1,1,0,NULL,'647-2533',NULL,'6472533',1),(153,134,1,0,0,NULL,'249-3397',NULL,'2493397',2),(154,158,1,1,0,NULL,'471-1451',NULL,'4711451',2),(155,37,1,1,0,NULL,'(726) 738-4278',NULL,'7267384278',2),(156,102,1,1,0,NULL,'(571) 637-9125',NULL,'5716379125',2),(157,102,1,0,0,NULL,'232-3048',NULL,'2323048',2),(158,26,1,1,0,NULL,'(217) 807-1455',NULL,'2178071455',2),(159,179,1,1,0,NULL,'(516) 656-9628',NULL,'5166569628',1),(160,75,1,1,0,NULL,'(614) 366-4776',NULL,'6143664776',1),(161,75,1,0,0,NULL,'(871) 319-5763',NULL,'8713195763',2),(162,130,1,1,0,NULL,'831-7159',NULL,'8317159',2),(163,130,1,0,0,NULL,'(223) 351-8863',NULL,'2233518863',2),(164,141,1,1,0,NULL,'(788) 446-5625',NULL,'7884465625',2),(165,141,1,0,0,NULL,'(517) 853-5084',NULL,'5178535084',2),(166,70,1,1,0,NULL,'370-2426',NULL,'3702426',2),(167,70,1,0,0,NULL,'(696) 220-7755',NULL,'6962207755',1),(168,NULL,1,0,0,NULL,'204 222-1000',NULL,'2042221000',1),(169,NULL,1,0,0,NULL,'204 223-1000',NULL,'2042231000',1),(170,NULL,1,0,0,NULL,'303 323-1000',NULL,'3033231000',1); /*!40000 ALTER TABLE `civicrm_phone` ENABLE KEYS */; UNLOCK TABLES; @@ -1269,7 +1269,7 @@ UNLOCK TABLES; LOCK TABLES `civicrm_relationship` WRITE; /*!40000 ALTER TABLE `civicrm_relationship` DISABLE KEYS */; -INSERT INTO `civicrm_relationship` (`id`, `contact_id_a`, `contact_id_b`, `relationship_type_id`, `start_date`, `end_date`, `is_active`, `description`, `is_permission_a_b`, `is_permission_b_a`, `case_id`) VALUES (1,31,2,1,NULL,NULL,1,NULL,0,0,NULL),(2,49,2,1,NULL,NULL,1,NULL,0,0,NULL),(3,31,183,1,NULL,NULL,1,NULL,0,0,NULL),(4,49,183,1,NULL,NULL,1,NULL,0,0,NULL),(5,49,31,4,NULL,NULL,1,NULL,0,0,NULL),(6,183,165,8,NULL,NULL,1,NULL,0,0,NULL),(7,31,165,8,NULL,NULL,1,NULL,0,0,NULL),(8,49,165,8,NULL,NULL,1,NULL,0,0,NULL),(9,2,165,7,NULL,NULL,0,NULL,0,0,NULL),(10,183,2,2,NULL,NULL,0,NULL,0,0,NULL),(11,66,144,1,NULL,NULL,1,NULL,0,0,NULL),(12,130,144,1,NULL,NULL,1,NULL,0,0,NULL),(13,66,105,1,NULL,NULL,1,NULL,0,0,NULL),(14,130,105,1,NULL,NULL,1,NULL,0,0,NULL),(15,130,66,4,NULL,NULL,1,NULL,0,0,NULL),(16,105,100,8,NULL,NULL,1,NULL,0,0,NULL),(17,66,100,8,NULL,NULL,1,NULL,0,0,NULL),(18,130,100,8,NULL,NULL,1,NULL,0,0,NULL),(19,144,100,7,NULL,NULL,0,NULL,0,0,NULL),(20,105,144,2,NULL,NULL,0,NULL,0,0,NULL),(21,34,87,1,NULL,NULL,1,NULL,0,0,NULL),(22,95,87,1,NULL,NULL,1,NULL,0,0,NULL),(23,34,80,1,NULL,NULL,1,NULL,0,0,NULL),(24,95,80,1,NULL,NULL,1,NULL,0,0,NULL),(25,95,34,4,NULL,NULL,1,NULL,0,0,NULL),(26,80,161,8,NULL,NULL,1,NULL,0,0,NULL),(27,34,161,8,NULL,NULL,1,NULL,0,0,NULL),(28,95,161,8,NULL,NULL,1,NULL,0,0,NULL),(29,87,161,7,NULL,NULL,0,NULL,0,0,NULL),(30,80,87,2,NULL,NULL,0,NULL,0,0,NULL),(31,148,173,1,NULL,NULL,1,NULL,0,0,NULL),(32,113,173,1,NULL,NULL,1,NULL,0,0,NULL),(33,148,121,1,NULL,NULL,1,NULL,0,0,NULL),(34,113,121,1,NULL,NULL,1,NULL,0,0,NULL),(35,113,148,4,NULL,NULL,1,NULL,0,0,NULL),(36,121,5,8,NULL,NULL,1,NULL,0,0,NULL),(37,148,5,8,NULL,NULL,1,NULL,0,0,NULL),(38,113,5,8,NULL,NULL,1,NULL,0,0,NULL),(39,173,5,7,NULL,NULL,1,NULL,0,0,NULL),(40,121,173,2,NULL,NULL,1,NULL,0,0,NULL),(41,187,133,1,NULL,NULL,1,NULL,0,0,NULL),(42,6,133,1,NULL,NULL,1,NULL,0,0,NULL),(43,187,35,1,NULL,NULL,1,NULL,0,0,NULL),(44,6,35,1,NULL,NULL,1,NULL,0,0,NULL),(45,6,187,4,NULL,NULL,1,NULL,0,0,NULL),(46,35,25,8,NULL,NULL,1,NULL,0,0,NULL),(47,187,25,8,NULL,NULL,1,NULL,0,0,NULL),(48,6,25,8,NULL,NULL,1,NULL,0,0,NULL),(49,133,25,7,NULL,NULL,1,NULL,0,0,NULL),(50,35,133,2,NULL,NULL,1,NULL,0,0,NULL),(51,11,112,1,NULL,NULL,1,NULL,0,0,NULL),(52,96,112,1,NULL,NULL,1,NULL,0,0,NULL),(53,11,75,1,NULL,NULL,1,NULL,0,0,NULL),(54,96,75,1,NULL,NULL,1,NULL,0,0,NULL),(55,96,11,4,NULL,NULL,1,NULL,0,0,NULL),(56,75,132,8,NULL,NULL,1,NULL,0,0,NULL),(57,11,132,8,NULL,NULL,1,NULL,0,0,NULL),(58,96,132,8,NULL,NULL,1,NULL,0,0,NULL),(59,112,132,7,NULL,NULL,0,NULL,0,0,NULL),(60,75,112,2,NULL,NULL,0,NULL,0,0,NULL),(61,126,99,1,NULL,NULL,1,NULL,0,0,NULL),(62,79,99,1,NULL,NULL,1,NULL,0,0,NULL),(63,126,63,1,NULL,NULL,1,NULL,0,0,NULL),(64,79,63,1,NULL,NULL,1,NULL,0,0,NULL),(65,79,126,4,NULL,NULL,1,NULL,0,0,NULL),(66,63,116,8,NULL,NULL,1,NULL,0,0,NULL),(67,126,116,8,NULL,NULL,1,NULL,0,0,NULL),(68,79,116,8,NULL,NULL,1,NULL,0,0,NULL),(69,99,116,7,NULL,NULL,0,NULL,0,0,NULL),(70,63,99,2,NULL,NULL,0,NULL,0,0,NULL),(71,197,137,1,NULL,NULL,1,NULL,0,0,NULL),(72,3,137,1,NULL,NULL,1,NULL,0,0,NULL),(73,197,160,1,NULL,NULL,1,NULL,0,0,NULL),(74,3,160,1,NULL,NULL,1,NULL,0,0,NULL),(75,3,197,4,NULL,NULL,1,NULL,0,0,NULL),(76,160,108,8,NULL,NULL,1,NULL,0,0,NULL),(77,197,108,8,NULL,NULL,1,NULL,0,0,NULL),(78,3,108,8,NULL,NULL,1,NULL,0,0,NULL),(79,137,108,7,NULL,NULL,0,NULL,0,0,NULL),(80,160,137,2,NULL,NULL,0,NULL,0,0,NULL),(81,153,120,1,NULL,NULL,1,NULL,0,0,NULL),(82,194,120,1,NULL,NULL,1,NULL,0,0,NULL),(83,153,76,1,NULL,NULL,1,NULL,0,0,NULL),(84,194,76,1,NULL,NULL,1,NULL,0,0,NULL),(85,194,153,4,NULL,NULL,1,NULL,0,0,NULL),(86,76,89,8,NULL,NULL,1,NULL,0,0,NULL),(87,153,89,8,NULL,NULL,1,NULL,0,0,NULL),(88,194,89,8,NULL,NULL,1,NULL,0,0,NULL),(89,120,89,7,NULL,NULL,1,NULL,0,0,NULL),(90,76,120,2,NULL,NULL,1,NULL,0,0,NULL),(91,48,136,1,NULL,NULL,1,NULL,0,0,NULL),(92,188,136,1,NULL,NULL,1,NULL,0,0,NULL),(93,48,46,1,NULL,NULL,1,NULL,0,0,NULL),(94,188,46,1,NULL,NULL,1,NULL,0,0,NULL),(95,188,48,4,NULL,NULL,1,NULL,0,0,NULL),(96,46,181,8,NULL,NULL,1,NULL,0,0,NULL),(97,48,181,8,NULL,NULL,1,NULL,0,0,NULL),(98,188,181,8,NULL,NULL,1,NULL,0,0,NULL),(99,136,181,7,NULL,NULL,1,NULL,0,0,NULL),(100,46,136,2,NULL,NULL,1,NULL,0,0,NULL),(101,45,138,1,NULL,NULL,1,NULL,0,0,NULL),(102,104,138,1,NULL,NULL,1,NULL,0,0,NULL),(103,45,143,1,NULL,NULL,1,NULL,0,0,NULL),(104,104,143,1,NULL,NULL,1,NULL,0,0,NULL),(105,104,45,4,NULL,NULL,1,NULL,0,0,NULL),(106,143,62,8,NULL,NULL,1,NULL,0,0,NULL),(107,45,62,8,NULL,NULL,1,NULL,0,0,NULL),(108,104,62,8,NULL,NULL,1,NULL,0,0,NULL),(109,138,62,7,NULL,NULL,1,NULL,0,0,NULL),(110,143,138,2,NULL,NULL,1,NULL,0,0,NULL),(111,73,26,1,NULL,NULL,1,NULL,0,0,NULL),(112,12,26,1,NULL,NULL,1,NULL,0,0,NULL),(113,73,169,1,NULL,NULL,1,NULL,0,0,NULL),(114,12,169,1,NULL,NULL,1,NULL,0,0,NULL),(115,12,73,4,NULL,NULL,1,NULL,0,0,NULL),(116,169,70,8,NULL,NULL,1,NULL,0,0,NULL),(117,73,70,8,NULL,NULL,1,NULL,0,0,NULL),(118,12,70,8,NULL,NULL,1,NULL,0,0,NULL),(119,26,70,7,NULL,NULL,1,NULL,0,0,NULL),(120,169,26,2,NULL,NULL,1,NULL,0,0,NULL),(121,74,155,1,NULL,NULL,1,NULL,0,0,NULL),(122,131,155,1,NULL,NULL,1,NULL,0,0,NULL),(123,74,16,1,NULL,NULL,1,NULL,0,0,NULL),(124,131,16,1,NULL,NULL,1,NULL,0,0,NULL),(125,131,74,4,NULL,NULL,1,NULL,0,0,NULL),(126,16,7,8,NULL,NULL,1,NULL,0,0,NULL),(127,74,7,8,NULL,NULL,1,NULL,0,0,NULL),(128,131,7,8,NULL,NULL,1,NULL,0,0,NULL),(129,155,7,7,NULL,NULL,1,NULL,0,0,NULL),(130,16,155,2,NULL,NULL,1,NULL,0,0,NULL),(131,170,92,1,NULL,NULL,1,NULL,0,0,NULL),(132,140,92,1,NULL,NULL,1,NULL,0,0,NULL),(133,170,179,1,NULL,NULL,1,NULL,0,0,NULL),(134,140,179,1,NULL,NULL,1,NULL,0,0,NULL),(135,140,170,4,NULL,NULL,1,NULL,0,0,NULL),(136,179,114,8,NULL,NULL,1,NULL,0,0,NULL),(137,170,114,8,NULL,NULL,1,NULL,0,0,NULL),(138,140,114,8,NULL,NULL,1,NULL,0,0,NULL),(139,92,114,7,NULL,NULL,1,NULL,0,0,NULL),(140,179,92,2,NULL,NULL,1,NULL,0,0,NULL),(141,106,38,1,NULL,NULL,1,NULL,0,0,NULL),(142,147,38,1,NULL,NULL,1,NULL,0,0,NULL),(143,106,172,1,NULL,NULL,1,NULL,0,0,NULL),(144,147,172,1,NULL,NULL,1,NULL,0,0,NULL),(145,147,106,4,NULL,NULL,1,NULL,0,0,NULL),(146,172,174,8,NULL,NULL,1,NULL,0,0,NULL),(147,106,174,8,NULL,NULL,1,NULL,0,0,NULL),(148,147,174,8,NULL,NULL,1,NULL,0,0,NULL),(149,38,174,7,NULL,NULL,1,NULL,0,0,NULL),(150,172,38,2,NULL,NULL,1,NULL,0,0,NULL),(151,88,185,1,NULL,NULL,1,NULL,0,0,NULL),(152,4,185,1,NULL,NULL,1,NULL,0,0,NULL),(153,88,159,1,NULL,NULL,1,NULL,0,0,NULL),(154,4,159,1,NULL,NULL,1,NULL,0,0,NULL),(155,4,88,4,NULL,NULL,1,NULL,0,0,NULL),(156,159,9,8,NULL,NULL,1,NULL,0,0,NULL),(157,88,9,8,NULL,NULL,1,NULL,0,0,NULL),(158,4,9,8,NULL,NULL,1,NULL,0,0,NULL),(159,185,9,7,NULL,NULL,1,NULL,0,0,NULL),(160,159,185,2,NULL,NULL,1,NULL,0,0,NULL),(161,33,50,1,NULL,NULL,1,NULL,0,0,NULL),(162,192,50,1,NULL,NULL,1,NULL,0,0,NULL),(163,33,40,1,NULL,NULL,1,NULL,0,0,NULL),(164,192,40,1,NULL,NULL,1,NULL,0,0,NULL),(165,192,33,4,NULL,NULL,1,NULL,0,0,NULL),(166,40,37,8,NULL,NULL,1,NULL,0,0,NULL),(167,33,37,8,NULL,NULL,1,NULL,0,0,NULL),(168,192,37,8,NULL,NULL,1,NULL,0,0,NULL),(169,50,37,7,NULL,NULL,1,NULL,0,0,NULL),(170,40,50,2,NULL,NULL,1,NULL,0,0,NULL),(171,109,122,1,NULL,NULL,1,NULL,0,0,NULL),(172,53,122,1,NULL,NULL,1,NULL,0,0,NULL),(173,109,60,1,NULL,NULL,1,NULL,0,0,NULL),(174,53,60,1,NULL,NULL,1,NULL,0,0,NULL),(175,53,109,4,NULL,NULL,1,NULL,0,0,NULL),(176,60,182,8,NULL,NULL,1,NULL,0,0,NULL),(177,109,182,8,NULL,NULL,1,NULL,0,0,NULL),(178,53,182,8,NULL,NULL,1,NULL,0,0,NULL),(179,122,182,7,NULL,NULL,1,NULL,0,0,NULL),(180,60,122,2,NULL,NULL,1,NULL,0,0,NULL),(181,85,118,1,NULL,NULL,1,NULL,0,0,NULL),(182,102,118,1,NULL,NULL,1,NULL,0,0,NULL),(183,85,190,1,NULL,NULL,1,NULL,0,0,NULL),(184,102,190,1,NULL,NULL,1,NULL,0,0,NULL),(185,102,85,4,NULL,NULL,1,NULL,0,0,NULL),(186,190,180,8,NULL,NULL,1,NULL,0,0,NULL),(187,85,180,8,NULL,NULL,1,NULL,0,0,NULL),(188,102,180,8,NULL,NULL,1,NULL,0,0,NULL),(189,118,180,7,NULL,NULL,1,NULL,0,0,NULL),(190,190,118,2,NULL,NULL,1,NULL,0,0,NULL),(191,175,134,1,NULL,NULL,1,NULL,0,0,NULL),(192,195,134,1,NULL,NULL,1,NULL,0,0,NULL),(193,175,189,1,NULL,NULL,1,NULL,0,0,NULL),(194,195,189,1,NULL,NULL,1,NULL,0,0,NULL),(195,195,175,4,NULL,NULL,1,NULL,0,0,NULL),(196,189,18,8,NULL,NULL,1,NULL,0,0,NULL),(197,175,18,8,NULL,NULL,1,NULL,0,0,NULL),(198,195,18,8,NULL,NULL,1,NULL,0,0,NULL),(199,134,18,7,NULL,NULL,1,NULL,0,0,NULL),(200,189,134,2,NULL,NULL,1,NULL,0,0,NULL),(201,160,24,5,NULL,NULL,1,NULL,0,0,NULL),(202,125,30,5,NULL,NULL,1,NULL,0,0,NULL),(203,40,32,5,NULL,NULL,1,NULL,0,0,NULL),(204,35,39,5,NULL,NULL,1,NULL,0,0,NULL),(205,141,56,5,NULL,NULL,1,NULL,0,0,NULL),(206,118,86,5,NULL,NULL,1,NULL,0,0,NULL),(207,95,98,5,NULL,NULL,1,NULL,0,0,NULL),(208,162,103,5,NULL,NULL,1,NULL,0,0,NULL),(209,197,111,5,NULL,NULL,1,NULL,0,0,NULL),(210,83,115,5,NULL,NULL,1,NULL,0,0,NULL),(211,17,117,5,NULL,NULL,1,NULL,0,0,NULL),(212,72,146,5,NULL,NULL,1,NULL,0,0,NULL),(213,105,164,5,NULL,NULL,1,NULL,0,0,NULL),(214,60,167,5,NULL,NULL,1,NULL,0,0,NULL),(215,130,201,5,NULL,NULL,1,NULL,0,0,NULL); +INSERT INTO `civicrm_relationship` (`id`, `contact_id_a`, `contact_id_b`, `relationship_type_id`, `start_date`, `end_date`, `is_active`, `description`, `is_permission_a_b`, `is_permission_b_a`, `case_id`) VALUES (1,4,24,1,NULL,NULL,1,NULL,0,0,NULL),(2,142,24,1,NULL,NULL,1,NULL,0,0,NULL),(3,4,25,1,NULL,NULL,1,NULL,0,0,NULL),(4,142,25,1,NULL,NULL,1,NULL,0,0,NULL),(5,142,4,4,NULL,NULL,1,NULL,0,0,NULL),(6,25,104,8,NULL,NULL,1,NULL,0,0,NULL),(7,4,104,8,NULL,NULL,1,NULL,0,0,NULL),(8,142,104,8,NULL,NULL,1,NULL,0,0,NULL),(9,24,104,7,NULL,NULL,0,NULL,0,0,NULL),(10,25,24,2,NULL,NULL,0,NULL,0,0,NULL),(11,45,30,1,NULL,NULL,1,NULL,0,0,NULL),(12,182,30,1,NULL,NULL,1,NULL,0,0,NULL),(13,45,50,1,NULL,NULL,1,NULL,0,0,NULL),(14,182,50,1,NULL,NULL,1,NULL,0,0,NULL),(15,182,45,4,NULL,NULL,1,NULL,0,0,NULL),(16,50,174,8,NULL,NULL,1,NULL,0,0,NULL),(17,45,174,8,NULL,NULL,1,NULL,0,0,NULL),(18,182,174,8,NULL,NULL,1,NULL,0,0,NULL),(19,30,174,7,NULL,NULL,1,NULL,0,0,NULL),(20,50,30,2,NULL,NULL,1,NULL,0,0,NULL),(21,19,87,1,NULL,NULL,1,NULL,0,0,NULL),(22,20,87,1,NULL,NULL,1,NULL,0,0,NULL),(23,19,118,1,NULL,NULL,1,NULL,0,0,NULL),(24,20,118,1,NULL,NULL,1,NULL,0,0,NULL),(25,20,19,4,NULL,NULL,1,NULL,0,0,NULL),(26,118,83,8,NULL,NULL,1,NULL,0,0,NULL),(27,19,83,8,NULL,NULL,1,NULL,0,0,NULL),(28,20,83,8,NULL,NULL,1,NULL,0,0,NULL),(29,87,83,7,NULL,NULL,0,NULL,0,0,NULL),(30,118,87,2,NULL,NULL,0,NULL,0,0,NULL),(31,198,21,1,NULL,NULL,1,NULL,0,0,NULL),(32,82,21,1,NULL,NULL,1,NULL,0,0,NULL),(33,198,48,1,NULL,NULL,1,NULL,0,0,NULL),(34,82,48,1,NULL,NULL,1,NULL,0,0,NULL),(35,82,198,4,NULL,NULL,1,NULL,0,0,NULL),(36,48,185,8,NULL,NULL,1,NULL,0,0,NULL),(37,198,185,8,NULL,NULL,1,NULL,0,0,NULL),(38,82,185,8,NULL,NULL,1,NULL,0,0,NULL),(39,21,185,7,NULL,NULL,1,NULL,0,0,NULL),(40,48,21,2,NULL,NULL,1,NULL,0,0,NULL),(41,81,177,1,NULL,NULL,1,NULL,0,0,NULL),(42,156,177,1,NULL,NULL,1,NULL,0,0,NULL),(43,81,132,1,NULL,NULL,1,NULL,0,0,NULL),(44,156,132,1,NULL,NULL,1,NULL,0,0,NULL),(45,156,81,4,NULL,NULL,1,NULL,0,0,NULL),(46,132,85,8,NULL,NULL,1,NULL,0,0,NULL),(47,81,85,8,NULL,NULL,1,NULL,0,0,NULL),(48,156,85,8,NULL,NULL,1,NULL,0,0,NULL),(49,177,85,7,NULL,NULL,0,NULL,0,0,NULL),(50,132,177,2,NULL,NULL,0,NULL,0,0,NULL),(51,120,114,1,NULL,NULL,1,NULL,0,0,NULL),(52,137,114,1,NULL,NULL,1,NULL,0,0,NULL),(53,120,32,1,NULL,NULL,1,NULL,0,0,NULL),(54,137,32,1,NULL,NULL,1,NULL,0,0,NULL),(55,137,120,4,NULL,NULL,1,NULL,0,0,NULL),(56,32,29,8,NULL,NULL,1,NULL,0,0,NULL),(57,120,29,8,NULL,NULL,1,NULL,0,0,NULL),(58,137,29,8,NULL,NULL,1,NULL,0,0,NULL),(59,114,29,7,NULL,NULL,1,NULL,0,0,NULL),(60,32,114,2,NULL,NULL,1,NULL,0,0,NULL),(61,124,139,1,NULL,NULL,1,NULL,0,0,NULL),(62,172,139,1,NULL,NULL,1,NULL,0,0,NULL),(63,124,76,1,NULL,NULL,1,NULL,0,0,NULL),(64,172,76,1,NULL,NULL,1,NULL,0,0,NULL),(65,172,124,4,NULL,NULL,1,NULL,0,0,NULL),(66,76,12,8,NULL,NULL,1,NULL,0,0,NULL),(67,124,12,8,NULL,NULL,1,NULL,0,0,NULL),(68,172,12,8,NULL,NULL,1,NULL,0,0,NULL),(69,139,12,7,NULL,NULL,0,NULL,0,0,NULL),(70,76,139,2,NULL,NULL,0,NULL,0,0,NULL),(71,22,15,1,NULL,NULL,1,NULL,0,0,NULL),(72,40,15,1,NULL,NULL,1,NULL,0,0,NULL),(73,22,7,1,NULL,NULL,1,NULL,0,0,NULL),(74,40,7,1,NULL,NULL,1,NULL,0,0,NULL),(75,40,22,4,NULL,NULL,1,NULL,0,0,NULL),(76,7,89,8,NULL,NULL,1,NULL,0,0,NULL),(77,22,89,8,NULL,NULL,1,NULL,0,0,NULL),(78,40,89,8,NULL,NULL,1,NULL,0,0,NULL),(79,15,89,7,NULL,NULL,1,NULL,0,0,NULL),(80,7,15,2,NULL,NULL,1,NULL,0,0,NULL),(81,180,6,1,NULL,NULL,1,NULL,0,0,NULL),(82,147,6,1,NULL,NULL,1,NULL,0,0,NULL),(83,180,123,1,NULL,NULL,1,NULL,0,0,NULL),(84,147,123,1,NULL,NULL,1,NULL,0,0,NULL),(85,147,180,4,NULL,NULL,1,NULL,0,0,NULL),(86,123,51,8,NULL,NULL,1,NULL,0,0,NULL),(87,180,51,8,NULL,NULL,1,NULL,0,0,NULL),(88,147,51,8,NULL,NULL,1,NULL,0,0,NULL),(89,6,51,7,NULL,NULL,1,NULL,0,0,NULL),(90,123,6,2,NULL,NULL,1,NULL,0,0,NULL),(91,184,176,1,NULL,NULL,1,NULL,0,0,NULL),(92,64,176,1,NULL,NULL,1,NULL,0,0,NULL),(93,184,166,1,NULL,NULL,1,NULL,0,0,NULL),(94,64,166,1,NULL,NULL,1,NULL,0,0,NULL),(95,64,184,4,NULL,NULL,1,NULL,0,0,NULL),(96,166,41,8,NULL,NULL,1,NULL,0,0,NULL),(97,184,41,8,NULL,NULL,1,NULL,0,0,NULL),(98,64,41,8,NULL,NULL,1,NULL,0,0,NULL),(99,176,41,7,NULL,NULL,0,NULL,0,0,NULL),(100,166,176,2,NULL,NULL,0,NULL,0,0,NULL),(101,138,8,1,NULL,NULL,1,NULL,0,0,NULL),(102,153,8,1,NULL,NULL,1,NULL,0,0,NULL),(103,138,112,1,NULL,NULL,1,NULL,0,0,NULL),(104,153,112,1,NULL,NULL,1,NULL,0,0,NULL),(105,153,138,4,NULL,NULL,1,NULL,0,0,NULL),(106,112,90,8,NULL,NULL,1,NULL,0,0,NULL),(107,138,90,8,NULL,NULL,1,NULL,0,0,NULL),(108,153,90,8,NULL,NULL,1,NULL,0,0,NULL),(109,8,90,7,NULL,NULL,0,NULL,0,0,NULL),(110,112,8,2,NULL,NULL,0,NULL,0,0,NULL),(111,78,44,1,NULL,NULL,1,NULL,0,0,NULL),(112,144,44,1,NULL,NULL,1,NULL,0,0,NULL),(113,78,119,1,NULL,NULL,1,NULL,0,0,NULL),(114,144,119,1,NULL,NULL,1,NULL,0,0,NULL),(115,144,78,4,NULL,NULL,1,NULL,0,0,NULL),(116,119,72,8,NULL,NULL,1,NULL,0,0,NULL),(117,78,72,8,NULL,NULL,1,NULL,0,0,NULL),(118,144,72,8,NULL,NULL,1,NULL,0,0,NULL),(119,44,72,7,NULL,NULL,0,NULL,0,0,NULL),(120,119,44,2,NULL,NULL,0,NULL,0,0,NULL),(121,73,164,1,NULL,NULL,1,NULL,0,0,NULL),(122,105,164,1,NULL,NULL,1,NULL,0,0,NULL),(123,73,106,1,NULL,NULL,1,NULL,0,0,NULL),(124,105,106,1,NULL,NULL,1,NULL,0,0,NULL),(125,105,73,4,NULL,NULL,1,NULL,0,0,NULL),(126,106,116,8,NULL,NULL,1,NULL,0,0,NULL),(127,73,116,8,NULL,NULL,1,NULL,0,0,NULL),(128,105,116,8,NULL,NULL,1,NULL,0,0,NULL),(129,164,116,7,NULL,NULL,1,NULL,0,0,NULL),(130,106,164,2,NULL,NULL,1,NULL,0,0,NULL),(131,196,163,1,NULL,NULL,1,NULL,0,0,NULL),(132,11,163,1,NULL,NULL,1,NULL,0,0,NULL),(133,196,197,1,NULL,NULL,1,NULL,0,0,NULL),(134,11,197,1,NULL,NULL,1,NULL,0,0,NULL),(135,11,196,4,NULL,NULL,1,NULL,0,0,NULL),(136,197,42,8,NULL,NULL,1,NULL,0,0,NULL),(137,196,42,8,NULL,NULL,1,NULL,0,0,NULL),(138,11,42,8,NULL,NULL,1,NULL,0,0,NULL),(139,163,42,7,NULL,NULL,1,NULL,0,0,NULL),(140,197,163,2,NULL,NULL,1,NULL,0,0,NULL),(141,27,201,1,NULL,NULL,1,NULL,0,0,NULL),(142,97,201,1,NULL,NULL,1,NULL,0,0,NULL),(143,27,140,1,NULL,NULL,1,NULL,0,0,NULL),(144,97,140,1,NULL,NULL,1,NULL,0,0,NULL),(145,97,27,4,NULL,NULL,1,NULL,0,0,NULL),(146,140,175,8,NULL,NULL,1,NULL,0,0,NULL),(147,27,175,8,NULL,NULL,1,NULL,0,0,NULL),(148,97,175,8,NULL,NULL,1,NULL,0,0,NULL),(149,201,175,7,NULL,NULL,1,NULL,0,0,NULL),(150,140,201,2,NULL,NULL,1,NULL,0,0,NULL),(151,47,35,1,NULL,NULL,1,NULL,0,0,NULL),(152,61,35,1,NULL,NULL,1,NULL,0,0,NULL),(153,47,79,1,NULL,NULL,1,NULL,0,0,NULL),(154,61,79,1,NULL,NULL,1,NULL,0,0,NULL),(155,61,47,4,NULL,NULL,1,NULL,0,0,NULL),(156,79,183,8,NULL,NULL,1,NULL,0,0,NULL),(157,47,183,8,NULL,NULL,1,NULL,0,0,NULL),(158,61,183,8,NULL,NULL,1,NULL,0,0,NULL),(159,35,183,7,NULL,NULL,0,NULL,0,0,NULL),(160,79,35,2,NULL,NULL,0,NULL,0,0,NULL),(161,122,134,1,NULL,NULL,1,NULL,0,0,NULL),(162,37,134,1,NULL,NULL,1,NULL,0,0,NULL),(163,122,158,1,NULL,NULL,1,NULL,0,0,NULL),(164,37,158,1,NULL,NULL,1,NULL,0,0,NULL),(165,37,122,4,NULL,NULL,1,NULL,0,0,NULL),(166,158,192,8,NULL,NULL,1,NULL,0,0,NULL),(167,122,192,8,NULL,NULL,1,NULL,0,0,NULL),(168,37,192,8,NULL,NULL,1,NULL,0,0,NULL),(169,134,192,7,NULL,NULL,1,NULL,0,0,NULL),(170,158,134,2,NULL,NULL,1,NULL,0,0,NULL),(171,179,102,1,NULL,NULL,1,NULL,0,0,NULL),(172,75,102,1,NULL,NULL,1,NULL,0,0,NULL),(173,179,26,1,NULL,NULL,1,NULL,0,0,NULL),(174,75,26,1,NULL,NULL,1,NULL,0,0,NULL),(175,75,179,4,NULL,NULL,1,NULL,0,0,NULL),(176,26,157,8,NULL,NULL,1,NULL,0,0,NULL),(177,179,157,8,NULL,NULL,1,NULL,0,0,NULL),(178,75,157,8,NULL,NULL,1,NULL,0,0,NULL),(179,102,157,7,NULL,NULL,0,NULL,0,0,NULL),(180,26,102,2,NULL,NULL,0,NULL,0,0,NULL),(181,86,130,1,NULL,NULL,1,NULL,0,0,NULL),(182,70,130,1,NULL,NULL,1,NULL,0,0,NULL),(183,86,141,1,NULL,NULL,1,NULL,0,0,NULL),(184,70,141,1,NULL,NULL,1,NULL,0,0,NULL),(185,70,86,4,NULL,NULL,1,NULL,0,0,NULL),(186,141,68,8,NULL,NULL,1,NULL,0,0,NULL),(187,86,68,8,NULL,NULL,1,NULL,0,0,NULL),(188,70,68,8,NULL,NULL,1,NULL,0,0,NULL),(189,130,68,7,NULL,NULL,1,NULL,0,0,NULL),(190,141,130,2,NULL,NULL,1,NULL,0,0,NULL),(191,65,165,1,NULL,NULL,1,NULL,0,0,NULL),(192,74,165,1,NULL,NULL,1,NULL,0,0,NULL),(193,65,55,1,NULL,NULL,1,NULL,0,0,NULL),(194,74,55,1,NULL,NULL,1,NULL,0,0,NULL),(195,74,65,4,NULL,NULL,1,NULL,0,0,NULL),(196,55,77,8,NULL,NULL,1,NULL,0,0,NULL),(197,65,77,8,NULL,NULL,1,NULL,0,0,NULL),(198,74,77,8,NULL,NULL,1,NULL,0,0,NULL),(199,165,77,7,NULL,NULL,0,NULL,0,0,NULL),(200,55,165,2,NULL,NULL,0,NULL,0,0,NULL),(201,45,10,5,NULL,NULL,1,NULL,0,0,NULL),(202,14,16,5,NULL,NULL,1,NULL,0,0,NULL),(203,96,33,5,NULL,NULL,1,NULL,0,0,NULL),(204,21,34,5,NULL,NULL,1,NULL,0,0,NULL),(205,62,39,5,NULL,NULL,1,NULL,0,0,NULL),(206,97,84,5,NULL,NULL,1,NULL,0,0,NULL),(207,108,88,5,NULL,NULL,1,NULL,0,0,NULL),(208,172,99,5,NULL,NULL,1,NULL,0,0,NULL),(209,43,101,5,NULL,NULL,1,NULL,0,0,NULL),(210,196,103,5,NULL,NULL,1,NULL,0,0,NULL),(211,149,135,5,NULL,NULL,1,NULL,0,0,NULL),(212,44,151,5,NULL,NULL,1,NULL,0,0,NULL),(213,40,159,5,NULL,NULL,1,NULL,0,0,NULL),(214,64,162,5,NULL,NULL,1,NULL,0,0,NULL),(215,118,169,5,NULL,NULL,1,NULL,0,0,NULL),(216,123,178,5,NULL,NULL,1,NULL,0,0,NULL),(217,167,189,5,NULL,NULL,1,NULL,0,0,NULL),(218,92,195,5,NULL,NULL,1,NULL,0,0,NULL),(219,79,199,5,NULL,NULL,1,NULL,0,0,NULL); /*!40000 ALTER TABLE `civicrm_relationship` ENABLE KEYS */; UNLOCK TABLES; @@ -1345,7 +1345,7 @@ UNLOCK TABLES; LOCK TABLES `civicrm_subscription_history` WRITE; /*!40000 ALTER TABLE `civicrm_subscription_history` DISABLE KEYS */; -INSERT INTO `civicrm_subscription_history` (`id`, `contact_id`, `group_id`, `date`, `method`, `status`, `tracking`) VALUES (1,196,2,'2017-10-05 07:48:01','Email','Added',NULL),(2,193,2,'2017-06-28 02:47:37','Admin','Added',NULL),(3,93,2,'2017-12-26 18:38:33','Admin','Added',NULL),(4,135,2,'2018-03-14 02:46:51','Admin','Added',NULL),(5,184,2,'2017-10-13 15:54:01','Admin','Added',NULL),(6,77,2,'2018-03-19 18:38:46','Admin','Added',NULL),(7,42,2,'2017-09-05 03:02:12','Email','Added',NULL),(8,20,2,'2017-12-20 20:53:02','Admin','Added',NULL),(9,198,2,'2017-06-27 06:36:39','Email','Added',NULL),(10,13,2,'2018-01-12 08:16:40','Email','Added',NULL),(11,94,2,'2018-04-22 09:40:17','Admin','Added',NULL),(12,83,2,'2017-06-13 23:27:14','Admin','Added',NULL),(13,154,2,'2017-08-05 23:35:33','Admin','Added',NULL),(14,90,2,'2017-08-21 22:08:17','Admin','Added',NULL),(15,97,2,'2017-10-14 14:39:24','Email','Added',NULL),(16,110,2,'2017-10-26 17:41:48','Email','Added',NULL),(17,178,2,'2017-11-27 20:07:13','Email','Added',NULL),(18,177,2,'2018-01-15 13:54:44','Email','Added',NULL),(19,157,2,'2017-10-26 19:34:14','Email','Added',NULL),(20,14,2,'2017-10-23 09:53:00','Admin','Added',NULL),(21,65,2,'2018-02-12 20:40:47','Admin','Added',NULL),(22,78,2,'2018-03-31 06:58:46','Admin','Added',NULL),(23,47,2,'2017-11-21 08:37:56','Admin','Added',NULL),(24,57,2,'2018-04-18 01:31:00','Admin','Added',NULL),(25,61,2,'2018-01-26 17:44:26','Admin','Added',NULL),(26,163,2,'2018-03-05 15:47:51','Admin','Added',NULL),(27,101,2,'2018-04-04 17:42:18','Email','Added',NULL),(28,149,2,'2018-02-21 12:42:37','Email','Added',NULL),(29,84,2,'2018-02-24 00:15:43','Admin','Added',NULL),(30,125,2,'2017-09-23 14:49:47','Admin','Added',NULL),(31,145,2,'2017-10-04 20:20:56','Email','Added',NULL),(32,17,2,'2017-11-22 05:21:55','Email','Added',NULL),(33,41,2,'2017-09-11 04:25:22','Email','Added',NULL),(34,28,2,'2017-08-30 03:20:58','Admin','Added',NULL),(35,124,2,'2017-08-06 01:33:41','Email','Added',NULL),(36,27,2,'2018-01-16 22:17:17','Email','Added',NULL),(37,186,2,'2017-05-25 11:28:49','Email','Added',NULL),(38,44,2,'2017-06-08 22:14:06','Admin','Added',NULL),(39,19,2,'2017-11-26 13:25:53','Email','Added',NULL),(40,55,2,'2018-01-30 13:05:56','Email','Added',NULL),(41,200,2,'2018-03-01 00:56:14','Admin','Added',NULL),(42,58,2,'2017-08-03 15:34:39','Email','Added',NULL),(43,59,2,'2017-07-13 15:07:27','Email','Added',NULL),(44,71,2,'2018-02-17 10:04:07','Admin','Added',NULL),(45,119,2,'2018-03-11 22:34:04','Admin','Added',NULL),(46,21,2,'2018-02-23 20:23:21','Admin','Added',NULL),(47,67,2,'2017-05-24 02:08:58','Admin','Added',NULL),(48,36,2,'2018-03-23 07:12:35','Email','Added',NULL),(49,82,2,'2017-12-12 11:57:09','Admin','Added',NULL),(50,69,2,'2017-07-03 02:12:27','Admin','Added',NULL),(51,8,2,'2017-12-12 05:43:49','Email','Added',NULL),(52,29,2,'2018-01-13 10:01:56','Admin','Added',NULL),(53,54,2,'2018-01-17 10:39:35','Email','Added',NULL),(54,107,2,'2018-03-28 10:06:40','Email','Added',NULL),(55,162,2,'2017-12-21 05:04:30','Admin','Added',NULL),(56,152,2,'2017-06-02 01:02:04','Admin','Added',NULL),(57,127,2,'2017-09-17 22:30:06','Email','Added',NULL),(58,158,2,'2018-04-30 17:39:20','Email','Added',NULL),(59,22,2,'2017-10-09 13:05:17','Admin','Added',NULL),(60,72,2,'2017-12-30 23:05:04','Admin','Added',NULL),(61,139,3,'2017-06-22 02:55:36','Admin','Added',NULL),(62,150,3,'2017-06-18 22:59:24','Email','Added',NULL),(63,81,3,'2017-12-02 10:33:08','Email','Added',NULL),(64,43,3,'2017-07-03 19:50:39','Admin','Added',NULL),(65,191,3,'2017-11-08 01:41:14','Admin','Added',NULL),(66,128,3,'2017-11-09 08:49:09','Admin','Added',NULL),(67,151,3,'2017-07-08 23:01:26','Admin','Added',NULL),(68,15,3,'2017-06-28 18:31:33','Admin','Added',NULL),(69,91,3,'2017-11-11 19:25:10','Email','Added',NULL),(70,141,3,'2017-10-08 14:10:52','Admin','Added',NULL),(71,23,3,'2018-02-14 18:22:46','Admin','Added',NULL),(72,166,3,'2017-11-29 17:34:31','Admin','Added',NULL),(73,171,3,'2018-02-25 22:13:30','Admin','Added',NULL),(74,199,3,'2018-03-18 04:45:58','Email','Added',NULL),(75,168,3,'2018-03-07 08:33:18','Email','Added',NULL),(76,196,4,'2017-09-14 01:23:55','Email','Added',NULL),(77,20,4,'2017-12-13 18:59:34','Email','Added',NULL),(78,97,4,'2017-06-06 08:55:20','Email','Added',NULL),(79,78,4,'2017-06-11 13:27:29','Admin','Added',NULL),(80,84,4,'2018-05-04 03:18:49','Email','Added',NULL),(81,27,4,'2018-02-25 12:46:52','Admin','Added',NULL),(82,59,4,'2017-11-26 12:51:03','Admin','Added',NULL),(83,69,4,'2018-01-30 03:51:44','Admin','Added',NULL); +INSERT INTO `civicrm_subscription_history` (`id`, `contact_id`, `group_id`, `date`, `method`, `status`, `tracking`) VALUES (1,146,2,'2017-06-15 15:09:09','Email','Added',NULL),(2,96,2,'2017-11-19 17:33:53','Admin','Added',NULL),(3,67,2,'2017-10-08 00:39:45','Email','Added',NULL),(4,57,2,'2018-04-15 18:37:04','Email','Added',NULL),(5,148,2,'2017-10-26 07:42:11','Admin','Added',NULL),(6,108,2,'2017-10-08 18:05:12','Admin','Added',NULL),(7,38,2,'2017-10-07 11:44:17','Email','Added',NULL),(8,161,2,'2018-05-19 05:13:19','Admin','Added',NULL),(9,155,2,'2017-08-05 00:22:30','Email','Added',NULL),(10,154,2,'2018-01-24 20:43:39','Email','Added',NULL),(11,23,2,'2017-06-24 17:14:11','Email','Added',NULL),(12,92,2,'2017-11-22 07:48:00','Admin','Added',NULL),(13,52,2,'2017-10-26 20:07:12','Email','Added',NULL),(14,107,2,'2018-02-07 08:43:32','Email','Added',NULL),(15,94,2,'2017-07-30 22:35:10','Email','Added',NULL),(16,3,2,'2017-12-15 10:24:11','Email','Added',NULL),(17,125,2,'2017-05-31 08:39:41','Email','Added',NULL),(18,115,2,'2017-06-10 00:20:03','Admin','Added',NULL),(19,173,2,'2017-08-07 04:59:08','Email','Added',NULL),(20,80,2,'2017-08-08 12:41:41','Email','Added',NULL),(21,109,2,'2017-11-24 23:32:03','Admin','Added',NULL),(22,69,2,'2017-05-26 18:33:48','Admin','Added',NULL),(23,194,2,'2018-05-15 00:24:34','Admin','Added',NULL),(24,181,2,'2017-11-08 14:15:54','Email','Added',NULL),(25,60,2,'2017-07-25 21:32:21','Admin','Added',NULL),(26,133,2,'2017-07-28 05:14:03','Admin','Added',NULL),(27,127,2,'2018-02-26 12:08:47','Admin','Added',NULL),(28,190,2,'2017-11-07 18:36:34','Email','Added',NULL),(29,191,2,'2017-10-12 15:53:45','Email','Added',NULL),(30,121,2,'2017-10-29 18:46:01','Admin','Added',NULL),(31,62,2,'2017-09-15 08:42:37','Email','Added',NULL),(32,160,2,'2018-01-08 05:07:48','Email','Added',NULL),(33,113,2,'2017-08-18 08:34:58','Admin','Added',NULL),(34,13,2,'2017-07-07 18:57:55','Email','Added',NULL),(35,95,2,'2017-12-10 16:34:50','Email','Added',NULL),(36,71,2,'2018-04-01 07:09:00','Admin','Added',NULL),(37,110,2,'2017-10-13 05:15:46','Admin','Added',NULL),(38,43,2,'2017-10-25 10:56:14','Email','Added',NULL),(39,54,2,'2017-07-13 20:47:40','Admin','Added',NULL),(40,17,2,'2017-06-23 22:17:51','Admin','Added',NULL),(41,152,2,'2017-09-20 19:49:02','Email','Added',NULL),(42,149,2,'2018-05-02 17:01:58','Admin','Added',NULL),(43,188,2,'2018-03-14 13:21:05','Admin','Added',NULL),(44,36,2,'2018-01-16 01:14:58','Email','Added',NULL),(45,187,2,'2017-12-02 18:44:39','Email','Added',NULL),(46,167,2,'2017-11-21 02:17:48','Email','Added',NULL),(47,136,2,'2018-04-24 09:28:41','Admin','Added',NULL),(48,150,2,'2017-07-08 07:00:25','Admin','Added',NULL),(49,9,2,'2017-07-29 07:56:20','Email','Added',NULL),(50,63,2,'2017-06-08 06:26:42','Email','Added',NULL),(51,111,2,'2017-07-23 16:25:08','Admin','Added',NULL),(52,131,2,'2018-02-28 08:24:50','Email','Added',NULL),(53,193,2,'2017-07-11 23:56:02','Admin','Added',NULL),(54,5,2,'2018-01-30 15:18:25','Email','Added',NULL),(55,31,2,'2017-12-05 08:34:47','Email','Added',NULL),(56,46,2,'2017-11-12 06:14:57','Email','Added',NULL),(57,14,2,'2018-03-31 07:53:27','Admin','Added',NULL),(58,117,2,'2018-03-08 13:13:25','Admin','Added',NULL),(59,2,2,'2018-01-15 10:49:20','Admin','Added',NULL),(60,66,2,'2018-01-12 06:02:17','Admin','Added',NULL),(61,59,3,'2018-03-27 01:29:00','Admin','Added',NULL),(62,28,3,'2017-10-13 03:56:12','Email','Added',NULL),(63,129,3,'2018-01-23 06:50:02','Email','Added',NULL),(64,171,3,'2018-01-12 14:27:15','Email','Added',NULL),(65,186,3,'2018-04-01 02:09:07','Email','Added',NULL),(66,91,3,'2017-10-14 04:04:17','Email','Added',NULL),(67,128,3,'2017-11-07 03:01:43','Admin','Added',NULL),(68,126,3,'2017-09-18 04:59:49','Admin','Added',NULL),(69,143,3,'2017-11-27 23:14:27','Email','Added',NULL),(70,98,3,'2017-10-01 13:12:55','Email','Added',NULL),(71,53,3,'2017-10-02 21:52:51','Admin','Added',NULL),(72,170,3,'2017-08-28 23:49:41','Admin','Added',NULL),(73,200,3,'2018-04-18 19:02:55','Admin','Added',NULL),(74,93,3,'2018-04-01 06:17:58','Email','Added',NULL),(75,18,3,'2018-04-14 15:58:18','Email','Added',NULL),(76,146,4,'2018-01-08 07:43:43','Email','Added',NULL),(77,161,4,'2017-10-28 09:44:43','Admin','Added',NULL),(78,94,4,'2017-07-15 13:20:47','Admin','Added',NULL),(79,69,4,'2017-10-23 23:41:19','Email','Added',NULL),(80,191,4,'2017-06-15 00:42:13','Admin','Added',NULL),(81,71,4,'2017-09-22 01:16:30','Admin','Added',NULL),(82,188,4,'2017-07-18 21:59:41','Email','Added',NULL),(83,63,4,'2018-02-06 11:35:33','Email','Added',NULL); /*!40000 ALTER TABLE `civicrm_subscription_history` ENABLE KEYS */; UNLOCK TABLES; @@ -1441,7 +1441,7 @@ UNLOCK TABLES; LOCK TABLES `civicrm_website` WRITE; /*!40000 ALTER TABLE `civicrm_website` DISABLE KEYS */; -INSERT INTO `civicrm_website` (`id`, `contact_id`, `url`, `website_type_id`) VALUES (1,86,'http://creativeartspartnership.org',1),(2,129,'http://globaldevelopment.org',1),(3,176,'http://ohiowellness.org',1),(4,39,'http://baypeace.org',1),(5,103,'http://texaseducationfund.org',1),(6,111,'http://oaklandfood.org',1),(7,64,'http://mapleagriculture.org',1),(8,164,'http://sierraeducation.org',1),(9,30,'http://globalhealthtrust.org',1),(10,68,'http://cadelleducation.org',1),(11,201,'http://manilafellowship.org',1),(12,167,'http://washingtonfamilyfund.org',1),(13,146,'http://wvempowermentfellowship.org',1),(14,32,'http://beechinitiative.org',1),(15,51,'http://greensoftwarenetwork.org',1),(16,56,'http://arizonaalliance.org',1); +INSERT INTO `civicrm_website` (`id`, `contact_id`, `url`, `website_type_id`) VALUES (1,162,'http://unitedalliance.org',1),(2,88,'http://indianadevelopmentalliance.org',1),(3,151,'http://bathactioncollective.org',1),(4,169,'http://mckenneysoftware.org',1),(5,10,'http://nebraskasolutions.org',1),(6,100,'http://leburndevelopment.org',1),(7,84,'http://creativemusicnetwork.org',1),(8,195,'http://iolafamilyfellowship.org',1),(9,101,'http://lincolnagriculturesolutions.org',1),(10,178,'http://wisconsinactionfund.org',1),(11,34,'http://ruralliteracy.org',1),(12,16,'http://arkansasfellowship.org',1),(13,103,'http://creativefamilyalliance.org',1),(14,99,'http://wfdevelopmentcollective.org',1); /*!40000 ALTER TABLE `civicrm_website` ENABLE KEYS */; UNLOCK TABLES; @@ -1473,7 +1473,7 @@ UNLOCK TABLES; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; --- Dump completed on 2018-05-19 15:31:56 +-- Dump completed on 2018-05-22 1:57:24 -- +--------------------------------------------------------------------+ -- | CiviCRM version 5 | -- +--------------------------------------------------------------------+ diff --git a/tests/phpunit/CRM/Dedupe/MergerTest.php b/tests/phpunit/CRM/Dedupe/MergerTest.php index 022875fbe819..4ebf200baf77 100644 --- a/tests/phpunit/CRM/Dedupe/MergerTest.php +++ b/tests/phpunit/CRM/Dedupe/MergerTest.php @@ -889,6 +889,9 @@ public function getStaticCIDRefs() { 1 => 'scheduled_id', 2 => 'approver_id', ), + 'civicrm_file' => array( + 'created_id', + ), 'civicrm_mailing_abtest' => array( 0 => 'created_id', ), diff --git a/tests/phpunit/api/v3/AttachmentTest.php b/tests/phpunit/api/v3/AttachmentTest.php index 041984a50e33..d98b4ca58504 100644 --- a/tests/phpunit/api/v3/AttachmentTest.php +++ b/tests/phpunit/api/v3/AttachmentTest.php @@ -476,7 +476,7 @@ public function testCreateShouldNotUpdateTheCreatedId() { $updatedAttachment = $this->callAPISuccess('Attachment', 'get', array( 'id' => $fileId, 'entity_id' => $attachmentParams['entity_id'], - 'entity_table' => $attachmentParams['entity_table'] + 'entity_table' => $attachmentParams['entity_table'], )); $this->assertNotEmpty($loggedInUser); diff --git a/xml/schema/Core/File.xml b/xml/schema/Core/File.xml index 2ba4b864f53b..925e1f64893d 100644 --- a/xml/schema/Core/File.xml +++ b/xml/schema/Core/File.xml @@ -69,13 +69,13 @@ int unsigned Created By Contact ID FK to civicrm_contact, who uploaded this file - 4.7 + 5.3 created_id civicrm_contact
id - 4.7 + 5.3 SET NULL