From 1421174eba12becb62e4a519f26f8ab1a07c53b5 Mon Sep 17 00:00:00 2001 From: monishdeb Date: Tue, 28 Jan 2014 18:20:49 +0530 Subject: [PATCH] CRM-13981 additional fixes ---------------------------------------- * CRM-13981: Migrate "In Honor of" to Soft Credits http://issues.civicrm.org/jira/browse/CRM-13981 --- CRM/Contact/Form/ProfileContact.php | 13 +- CRM/Contribute/BAO/Contribution.php | 2 +- CRM/Contribute/BAO/ContributionPage.php | 11 +- CRM/Contribute/BAO/ContributionSoft.php | 63 ++- CRM/Contribute/Form/AdditionalInfo.php | 24 +- CRM/Contribute/Form/Contribution.php | 16 +- CRM/Contribute/Form/Contribution/Confirm.php | 30 +- CRM/Contribute/Form/Contribution/ThankYou.php | 24 +- CRM/Contribute/Form/SoftCredit.php | 34 +- CRM/Pledge/BAO/Pledge.php | 19 - CRM/Pledge/BAO/Query.php | 24 - .../civicrm_msg_template.tpl | 16 + .../contribution_offline_receipt_html.tpl | 265 +++++++++ .../contribution_offline_receipt_text.tpl | 98 ++++ .../contribution_online_receipt_html.tpl | 391 ++++++++++++++ .../contribution_online_receipt_text.tpl | 180 +++++++ .../membership_online_receipt_html.tpl | 509 ++++++++++++++++++ .../membership_online_receipt_text.tpl | 220 ++++++++ .../pledge_acknowledge_html.tpl | 117 ++++ .../pledge_acknowledge_text.tpl | 45 ++ CRM/Upgrade/Incremental/php/FourFive.php | 3 + .../Incremental/sql/4.5.alpha1.mysql.tpl | 8 +- sql/civicrm_generated.mysql | 58 +- templates/CRM/Pledge/Form/Search/Common.tpl | 5 +- .../phpunit/CiviTest/CiviSeleniumTestCase.php | 5 +- .../Contribute/OnlineContributionTest.php | 22 +- .../contribution_offline_receipt_html.tpl | 36 +- .../contribution_offline_receipt_text.tpl | 13 +- .../contribution_online_receipt_html.tpl | 27 +- .../contribution_online_receipt_text.tpl | 11 +- .../membership_online_receipt_html.tpl | 27 +- .../membership_online_receipt_text.tpl | 9 +- .../pledge_acknowledge_html.tpl | 15 - .../pledge_acknowledge_text.tpl | 10 - 34 files changed, 2101 insertions(+), 249 deletions(-) create mode 100644 CRM/Upgrade/4.5.alpha1.msg_template/civicrm_msg_template.tpl create mode 100644 CRM/Upgrade/4.5.alpha1.msg_template/message_templates/contribution_offline_receipt_html.tpl create mode 100644 CRM/Upgrade/4.5.alpha1.msg_template/message_templates/contribution_offline_receipt_text.tpl create mode 100644 CRM/Upgrade/4.5.alpha1.msg_template/message_templates/contribution_online_receipt_html.tpl create mode 100644 CRM/Upgrade/4.5.alpha1.msg_template/message_templates/contribution_online_receipt_text.tpl create mode 100644 CRM/Upgrade/4.5.alpha1.msg_template/message_templates/membership_online_receipt_html.tpl create mode 100644 CRM/Upgrade/4.5.alpha1.msg_template/message_templates/membership_online_receipt_text.tpl create mode 100644 CRM/Upgrade/4.5.alpha1.msg_template/message_templates/pledge_acknowledge_html.tpl create mode 100644 CRM/Upgrade/4.5.alpha1.msg_template/message_templates/pledge_acknowledge_text.tpl diff --git a/CRM/Contact/Form/ProfileContact.php b/CRM/Contact/Form/ProfileContact.php index 9dd8702332..1ddf063961 100644 --- a/CRM/Contact/Form/ProfileContact.php +++ b/CRM/Contact/Form/ProfileContact.php @@ -110,7 +110,6 @@ class CRM_Contact_Form_ProfileContact { static function postProcess($form) { $params = $form->_params; - $values = $form->_values; if ($form->get('honor_block_is_active') && !empty($params['soft_credit_type_id'])) { $honorId = null; @@ -140,6 +139,18 @@ class CRM_Contact_Form_ProfileContact { $softParams['amount'] = $contribution->total_amount; } CRM_Contribute_BAO_ContributionSoft::add($softParams); + + if (CRM_Utils_Array::value('is_email_receipt', $form->_values)) { + $form->_values['honor'] = array( + 'soft_credit_type' => CRM_Utils_Array::value( + $params['soft_credit_type_id'], + CRM_Core_OptionGroup::values("soft_credit_type") + ), + 'honor_id' => $honorId, + 'honor_profile_id' => $params['honoree_profile_id'], + 'honor_profile_values' => $params['honor'] + ); + } } } } diff --git a/CRM/Contribute/BAO/Contribution.php b/CRM/Contribute/BAO/Contribution.php index 06f5e28dbc..43398269c2 100644 --- a/CRM/Contribute/BAO/Contribution.php +++ b/CRM/Contribute/BAO/Contribution.php @@ -336,7 +336,7 @@ class CRM_Contribute_BAO_Contribution extends CRM_Contribute_DAO_Contribution { $softParams['soft_credit_type_id'] = CRM_Core_OptionGroup::getValue('soft_credit_type', 'pcp', 'name'); CRM_Contribute_BAO_ContributionSoft::add($softParams); } - elseif (!empty($params['soft_credit'])) { + elseif (isset($params['soft_credit'])) { $softParams = $params['soft_credit']; if (!empty($softIDs)) { diff --git a/CRM/Contribute/BAO/ContributionPage.php b/CRM/Contribute/BAO/ContributionPage.php index 605bd3a30c..7b3651c3f3 100644 --- a/CRM/Contribute/BAO/ContributionPage.php +++ b/CRM/Contribute/BAO/ContributionPage.php @@ -287,6 +287,15 @@ class CRM_Contribute_BAO_ContributionPage extends CRM_Contribute_DAO_Contributio } self::buildCustomDisplay($postID, 'customPost', $userID, $template, $params['custom_post_id']); } + if (isset($values['honor'])) { + $honorValues = $values['honor']; + CRM_Contribute_BAO_ContributionSoft::formatHonoreeProfileFields( + $template, + $honorValues['honor_profile_values'], + $honorValues['honor_profile_id'], + $honorValues['honor_id'] + ); + } $title = isset($values['title']) ? $values['title'] : CRM_Contribute_PseudoConstant::contributionPage($values['contribution_page_id']); @@ -489,7 +498,7 @@ class CRM_Contribute_BAO_ContributionPage extends CRM_Contribute_DAO_Contributio 'toName' => $displayName, 'toEmail' => $email, ); - //CRM-13811 + //CRM-13811 if ($pageID) { $templatesParams['cc'] = CRM_Utils_Array::value('cc_receipt', $value[$pageID]); $templatesParams['bcc'] = CRM_Utils_Array::value('bcc_receipt', $value[$pageID]); diff --git a/CRM/Contribute/BAO/ContributionSoft.php b/CRM/Contribute/BAO/ContributionSoft.php index 30838400d9..287e7c8aa6 100644 --- a/CRM/Contribute/BAO/ContributionSoft.php +++ b/CRM/Contribute/BAO/ContributionSoft.php @@ -153,7 +153,7 @@ class CRM_Contribute_BAO_ContributionSoft extends CRM_Contribute_DAO_Contributio ); $query = ' - SELECT ccs.id, pcp_id, pcp_display_in_roll, pcp_roll_nickname, pcp_personal_note, amount, contact_id, c.display_name, ccs.soft_credit_type_id + SELECT ccs.id, pcp_id, pcp_display_in_roll, pcp_roll_nickname, pcp_personal_note, currency, amount, contact_id, c.display_name, ccs.soft_credit_type_id FROM civicrm_contribution_soft ccs INNER JOIN civicrm_contact c on c.id = ccs.contact_id WHERE contribution_id = %1; '; @@ -174,6 +174,7 @@ class CRM_Contribute_BAO_ContributionSoft extends CRM_Contribute_DAO_Contributio $softContribution['soft_credit'][$count] = array( 'contact_id' => $dao->contact_id, 'soft_credit_id' => $dao->id, + 'currency' => $dao->currency, 'amount' => $dao->amount, 'contact_name' => $dao->display_name, 'soft_credit_type' => $dao->soft_credit_type_id, @@ -297,5 +298,65 @@ class CRM_Contribute_BAO_ContributionSoft extends CRM_Contribute_DAO_Contributio } return $result; } + + /* + * Function to assign honor profile fields to template/form, if $honorId (as soft-credit's contact_id) + * is passed then whole honoreeprofile fields with title/value assoc array assigned or only honoreeName + * is assigned + * + * @static + */ + + static function formatHonoreeProfileFields($form, $params, $honoreeprofileId, $honorId = NULL) { + $profileContactType = CRM_Core_BAO_UFGroup::getContactType($honoreeprofileId); + $profileFields = CRM_Core_BAO_UFGroup::getFields($honoreeprofileId); + $honoreeProfileFields = $values = array(); + + if ($honorId) { + CRM_Core_BAO_UFGroup::getValues($honorId, $profileFields, $values, FALSE, $params); + } + + //remove name related fields and construct name string with prefix/suffix + //which will be later assigned to template + switch ($profileContactType) { + case 'Individual': + if (array_key_exists('prefix_id', $params)) { + $honorName = CRM_Utils_Array::value(CRM_Utils_Array::value('prefix_id', $params), + CRM_Core_PseudoConstant::get('CRM_Contact_DAO_Contact', 'prefix_id') + ); + unset($profileFields['prefix_id']); + } + $honorName .= ' ' . $params['first_name'] . ' ' . $params['last_name']; + unset($profileFields['first_name']); + unset($profileFields['last_name']); + if (array_key_exists('suffix_id', $params)) { + $honorName .= ' ' . CRM_Utils_Array::value(CRM_Utils_Array::value('suffix_id', $params), + CRM_Core_PseudoConstant::get('CRM_Contact_DAO_Contact', 'suffix_id') + ); + unset($profileFields['suffix_id']); + } + break; + case 'Organization': + $honorName = $params['organization_name']; + unset($profileFields['organization_name']); + break; + case 'Household': + $honorName = $params['household_name']; + unset($profileFields['household_name']); + break; + } + + if ($honorId) { + $honoreeProfileFields['Name'] = $honorName; + foreach ($profileFields as $name => $field) { + $title = $field['title']; + $honoreeProfileFields[$title] = $values[$title]; + } + $form->assign('honoreeProfile', $honoreeProfileFields); + } + else { + $form->assign('honorName', $honorName); + } + } } diff --git a/CRM/Contribute/Form/AdditionalInfo.php b/CRM/Contribute/Form/AdditionalInfo.php index 4b827a1f76..14a54ee953 100644 --- a/CRM/Contribute/Form/AdditionalInfo.php +++ b/CRM/Contribute/Form/AdditionalInfo.php @@ -324,19 +324,17 @@ class CRM_Contribute_Form_AdditionalInfo { } // retrieve individual prefix value for honoree - if (!empty($params['hidden_Honoree'])) { - $individualPrefix = CRM_Core_PseudoConstant::get('CRM_Contact_DAO_Contact', 'prefix_id'); - $honor = CRM_Core_PseudoConstant::get('CRM_Contribute_DAO_Contribution', 'honor_type_id'); - $params['honor_prefix'] = CRM_Utils_Array::value(CRM_Utils_Array::value('honor_prefix_id', - $params - ), - $individualPrefix - ); - $params["honor_type"] = CRM_Utils_Array::value(CRM_Utils_Array::value('honor_type_id', - $params - ), - $honor - ); + if (isset($params['soft_credit'])) { + $softCreditTypes = $softCredits = array(); + foreach ($params['soft_credit'] as $key => $softCredit) { + $softCredits[$key] = array( + 'Name' => $softCredit['contact_name'], + 'Amount' => CRM_Utils_Money::format($softCredit['amount'], $softCredit['currency']) + ); + $softCreditTypes[$key] = $softCredit['soft_credit_type_label']; + } + $form->assign('softCreditTypes', $softCreditTypes); + $form->assign('softCredits', $softCredits); } // retrieve premium product name and assigned fulfilled diff --git a/CRM/Contribute/Form/Contribution.php b/CRM/Contribute/Form/Contribution.php index 3350b78bbb..ead3c67751 100644 --- a/CRM/Contribute/Form/Contribution.php +++ b/CRM/Contribute/Form/Contribution.php @@ -139,6 +139,7 @@ class CRM_Contribute_Form_Contribution extends CRM_Contribute_Form_AbstractEditP protected $_formType; protected $_cdType; + public $_honoreeProfileType; /** * Function to set variables up before form is built @@ -266,6 +267,10 @@ class CRM_Contribute_Form_Contribution extends CRM_Contribute_Form_AbstractEditP // omitting contactImage from title for now since the summary overlay css doesn't work outside of our crm-container CRM_Utils_System::setTitle(ts('Contribution from') . ' ' . $displayName); } + + if ($this->_id) { + CRM_Contribute_Form_SoftCredit::preprocess($this); + } } function setDefaultValues() { @@ -1013,8 +1018,13 @@ class CRM_Contribute_Form_Contribution extends CRM_Contribute_Form_AbstractEditP } } else { - //build soft credit params - if (!empty($submittedValues['soft_credit_contact_select_id'])) { + $isEmpty = array_keys(array_flip($submittedValues['soft_credit_contact_select_id'])); + if ($this->_id && count($isEmpty) == 1 && key($isEmpty) == NULL) { + //Delete existing soft credit records if soft credit list is empty on update + CRM_Contribute_BAO_ContributionSoft::del(array('contribution_id' => $this->_id)); + } + else { + //build soft credit params $softParams = $softIDs =array(); foreach ($submittedValues['soft_credit_contact_select_id'] as $key => $val) { if ($val && $submittedValues['soft_credit_amount'][$key]) { @@ -1197,6 +1207,8 @@ class CRM_Contribute_Form_Contribution extends CRM_Contribute_Form_AbstractEditP $formValues['contact_id'] = $this->_contactID; $formValues['contribution_id'] = $contribution->id; + $formValues += CRM_Contribute_BAO_ContributionSoft::getSoftContribution($contribution->id); + // to get 'from email id' for send receipt $this->fromEmailId = $formValues['from_email_address']; $sendReceipt = CRM_Contribute_Form_AdditionalInfo::emailReceipt($this, $formValues); diff --git a/CRM/Contribute/Form/Contribution/Confirm.php b/CRM/Contribute/Form/Contribution/Confirm.php index e58ecbe7be..5a9cfcb09d 100644 --- a/CRM/Contribute/Form/Contribution/Confirm.php +++ b/CRM/Contribute/Form/Contribution/Confirm.php @@ -371,29 +371,7 @@ class CRM_Contribute_Form_Contribution_Confirm extends CRM_Contribute_Form_Contr $this->assign('honor_block_is_active', $honor_block_is_active); $this->assign('soft_credit_type', $softCreditTypes[$params['soft_credit_type_id']]); - $profileContactType = CRM_Core_BAO_UFGroup::getContactType($params['honoree_profile_id']); - switch ($profileContactType) { - case 'Individual': - if (array_key_exists('prefix_id', $params['honor'])) { - $honorName = CRM_Utils_Array::value(CRM_Utils_Array::value('prefix_id',$params['honor']), - CRM_Core_PseudoConstant::get('CRM_Contact_DAO_Contact', 'prefix_id') - ); - } - $honorName .= ' ' . $params['honor']['first_name'] . ' ' . $params['honor']['last_name']; - if (array_key_exists('suffix_id', $params['honor'])) { - $honorName .= ' ' . CRM_Utils_Array::value(CRM_Utils_Array::value('suffix_id',$params['honor']), - CRM_Core_PseudoConstant::get('CRM_Contact_DAO_Contact', 'suffix_id') - ); - } - break; - case 'Organization': - $honorName = $params['honor']['organization_name']; - break; - case 'Household': - $honorName = $params['honor']['household_name']; - break; - } - $this->assign('honorName', $honorName); + CRM_Contribute_BAO_ContributionSoft::formatHonoreeProfileFields($this, $params['honor'], $params['honoree_profile_id']); $fieldTypes = array('Contact'); $fieldTypes[] = CRM_Core_BAO_UFGroup::getContactType($params['honoree_profile_id']); @@ -960,9 +938,6 @@ class CRM_Contribute_Form_Contribution_Confirm extends CRM_Contribute_Form_Contr $fieldTypes ); } - - //processing honor contact into soft-credit contribution - CRM_Contact_Form_ProfileContact::postProcess($this); } /** @@ -1316,6 +1291,9 @@ class CRM_Contribute_Form_Contribution_Confirm extends CRM_Contribute_Form_Contr $form->_contributionID = $contribution->id; } + //CRM-13981, processing honor contact into soft-credit contribution + CRM_Contact_Form_ProfileContact::postProcess($form); + // process soft credit / pcp pages CRM_Contribute_Form_Contribution_Confirm::processPcpSoft($params, $contribution); diff --git a/CRM/Contribute/Form/Contribution/ThankYou.php b/CRM/Contribute/Form/Contribution/ThankYou.php index 66d900e1b6..3bd3618dce 100644 --- a/CRM/Contribute/Form/Contribution/ThankYou.php +++ b/CRM/Contribute/Form/Contribution/ThankYou.php @@ -126,29 +126,7 @@ class CRM_Contribute_Form_Contribution_ThankYou extends CRM_Contribute_Form_Cont $this->assign('honor_block_is_active', $honor_block_is_active); $this->assign('soft_credit_type', $softCreditTypes[$params['soft_credit_type_id']]); - $profileContactType = CRM_Core_BAO_UFGroup::getContactType($params['honoree_profile_id']); - switch ($profileContactType) { - case 'Individual': - if (array_key_exists('prefix_id', $params['honor'])) { - $honorName = CRM_Utils_Array::value(CRM_Utils_Array::value('prefix_id',$params['honor']), - CRM_Core_PseudoConstant::get('CRM_Contact_DAO_Contact', 'prefix_id') - ); - } - $honorName .= ' ' . $params['honor']['first_name'] . ' ' . $params['honor']['last_name']; - if (array_key_exists('suffix_id', $params['honor'])) { - $honorName .= ' ' . CRM_Utils_Array::value(CRM_Utils_Array::value('suffix_id',$params['honor']), - CRM_Core_PseudoConstant::get('CRM_Contact_DAO_Contact', 'suffix_id') - ); - } - break; - case 'Organization': - $honorName = $params['honor']['organization_name']; - break; - case 'Household': - $honorName = $params['honor']['household_name']; - break; - } - $this->assign('honorName', $honorName); + CRM_Contribute_BAO_ContributionSoft::formatHonoreeProfileFields($this, $params['honor'], $params['honoree_profile_id']); $fieldTypes = array('Contact'); $fieldTypes[] = CRM_Core_BAO_UFGroup::getContactType($params['honoree_profile_id']); diff --git a/CRM/Contribute/Form/SoftCredit.php b/CRM/Contribute/Form/SoftCredit.php index eab4cb5e26..1767047a30 100644 --- a/CRM/Contribute/Form/SoftCredit.php +++ b/CRM/Contribute/Form/SoftCredit.php @@ -38,6 +38,33 @@ */ class CRM_Contribute_Form_SoftCredit { + /** + * Function to set variables up before form is built + * + * @return void + * @access static + */ + static function preProcess(&$form) { + $contriDAO = new CRM_Contribute_DAO_Contribution(); + $contriDAO->id = $form->_id; + $contriDAO->find(TRUE); + if ($contriDAO->contribution_page_id) { + $ufJoinParams = array( + 'module' => 'soft_credit', + 'entity_table' => 'civicrm_contribution_page', + 'entity_id' => $contriDAO->contribution_page_id, + ); + $profileId = CRM_Core_BAO_UFJoin::getUFGroupIds($ufJoinParams); + + //check if any honree profile is enabled if yes then assign its profile type to $_honoreeProfileType + // which will be used to constraint soft-credit contact type in formRule, CRM-13981 + if ($profileId[0]) { + $form->_honoreeProfileType = CRM_Core_BAO_UFGroup::getContactType($profileId[0]); + } + } + } + + /** * Function used to build form element for soft credit block * @@ -197,7 +224,7 @@ class CRM_Contribute_Form_SoftCredit { foreach ($fields['soft_credit_amount'] as $key => $val) { if (!empty($fields['soft_credit_contact_select_id'][$key])) { if ($repeat[$fields['soft_credit_contact_select_id'][$key]] > 1) { - $errors["soft_credit_contact_select_id[$key]"] = ts('You cannot enter multiple soft credits for the same contact.'); + $errors["soft_credit_contact[$key]"] = ts('You cannot enter multiple soft credits for the same contact.'); } if ($self->_action == CRM_Core_Action::ADD && $fields['soft_credit_amount'][$key] && (CRM_Utils_Rule::cleanMoney($fields['soft_credit_amount'][$key]) > CRM_Utils_Rule::cleanMoney($fields['total_amount']))) { @@ -206,9 +233,14 @@ class CRM_Contribute_Form_SoftCredit { if (empty($fields['soft_credit_amount'][$key])) { $errors["soft_credit_amount[$key]"] = ts('Please enter the soft credit amount.'); } + $contactType = CRM_Contact_BAO_Contact::getContactType($fields['soft_credit_contact_select_id'][$key]); + if ($self->_honoreeProfileType && $self->_honoreeProfileType != $contactType) { + $errors["soft_credit_contact[$key]"] = ts('Please choose a contact of type %1', array(1 => $self->_honoreeProfileType)); + } } } } + return $errors; } } diff --git a/CRM/Pledge/BAO/Pledge.php b/CRM/Pledge/BAO/Pledge.php index 5c20db62e5..b303842824 100644 --- a/CRM/Pledge/BAO/Pledge.php +++ b/CRM/Pledge/BAO/Pledge.php @@ -545,25 +545,6 @@ GROUP BY currency $form->assign('payments', $payments); } - //assign honor fields. - $honor_block_is_active = FALSE; - //make sure we have values for it - if (!empty($params['honor_type_id']) && - ((!empty($params['honor_first_name']) && !empty($params['honor_last_name'])) || - (!empty($params['honor_email'])) - ) - ) { - $honor_block_is_active = TRUE; - $prefix = CRM_Core_PseudoConstant::get('CRM_Contact_DAO_Contact', 'prefix_id'); - $honor = CRM_Core_PseudoConstant::get('CRM_Pledge_DAO_Pledge', 'honor_type_id'); - $form->assign('honor_type', $honor[$params['honor_type_id']]); - $form->assign('honor_prefix', $prefix[$params['honor_prefix_id']]); - $form->assign('honor_first_name', $params['honor_first_name']); - $form->assign('honor_last_name', $params['honor_last_name']); - $form->assign('honor_email', $params['honor_email']); - } - $form->assign('honor_block_is_active', $honor_block_is_active); - //handle domain token values $domain = CRM_Core_BAO_Domain::getDomain(); $tokens = array('domain' => array('name', 'phone', 'address', 'email'), diff --git a/CRM/Pledge/BAO/Query.php b/CRM/Pledge/BAO/Query.php index 22ebe26572..c21945c4af 100644 --- a/CRM/Pledge/BAO/Query.php +++ b/CRM/Pledge/BAO/Query.php @@ -375,23 +375,6 @@ class CRM_Pledge_BAO_Query { $query->_tables['civicrm_pledge'] = $query->_whereTables['civicrm_pledge'] = 1; return; - case 'pledge_in_honor_of': - $strtolower = function_exists('mb_strtolower') ? 'mb_strtolower' : 'strtolower'; - $name = trim($value); - $newName = str_replace(',', " ", $name); - $pieces = explode(' ', $newName); - foreach ($pieces as $piece) { - $value = $strtolower(CRM_Core_DAO::escapeString(trim($piece))); - $value = "'%$value%'"; - $sub[] = " ( pledge_contact_b.sort_name LIKE $value )"; - } - - $query->_where[$grouping][] = ' ( ' . implode(' OR ', $sub) . ' ) '; - $query->_qill[$grouping][] = ts('Honor name like - \'%1\'', array(1 => $name)); - $query->_tables['pledge_contact_b'] = $query->_whereTables['pledge_contact_b'] = 1; - $query->_tables['civicrm_pledge'] = $query->_whereTables['civicrm_pledge'] = 1; - return; - case 'pledge_id': $query->_where[$grouping][] = "civicrm_pledge.id $op $value"; $query->_tables['civicrm_pledge'] = $query->_whereTables['civicrm_pledge'] = 1; @@ -436,10 +419,6 @@ class CRM_Pledge_BAO_Query { $from .= " $side JOIN civicrm_financial_type ON civicrm_pledge.financial_type_id = civicrm_financial_type.id "; break; - case 'pledge_contact_b': - $from .= " $side JOIN civicrm_contact pledge_contact_b ON (civicrm_pledge.honor_contact_id = pledge_contact_b.id )"; - break; - case 'civicrm_pledge_payment': $from .= " $side JOIN civicrm_pledge_payment ON civicrm_pledge_payment.pledge_id = civicrm_pledge.id "; break; @@ -582,9 +561,6 @@ class CRM_Pledge_BAO_Query { CRM_Contribute_PseudoConstant::contributionPage() ); - //add fields for honor search - $form->addElement('text', 'pledge_in_honor_of', ts('In Honor Of')); - //add fields for pledge frequency $form->add('text', 'pledge_frequency_interval', ts('Every'), array('size' => 8, 'maxlength' => 8)); $form->addRule('pledge_frequency_interval', ts('Please enter valid Pledge Frequency Interval'), 'integer'); diff --git a/CRM/Upgrade/4.5.alpha1.msg_template/civicrm_msg_template.tpl b/CRM/Upgrade/4.5.alpha1.msg_template/civicrm_msg_template.tpl new file mode 100644 index 0000000000..df84772493 --- /dev/null +++ b/CRM/Upgrade/4.5.alpha1.msg_template/civicrm_msg_template.tpl @@ -0,0 +1,16 @@ +{php} + $dir = SMARTY_DIR . '/../../CRM/Upgrade/4.5.alpha1.msg_template/message_templates'; + $templates = array(); + foreach (preg_grep('/\.tpl$/', scandir($dir)) as $filename) { + $parts = explode('_', basename($filename, '.tpl')); + $templates[] = array('type' => array_pop($parts), 'name' => implode('_', $parts), 'filename' => "$dir/$filename"); + } + $this->assign('templates', $templates); +{/php} + +{foreach from=$templates item=tpl} + {fetch assign=content file=$tpl.filename} + SELECT @workflow_id := MAX(id) FROM civicrm_option_value WHERE name = '{$tpl.name}'; + SELECT @content := msg_{$tpl.type} FROM civicrm_msg_template WHERE workflow_id = @workflow_id AND is_reserved = 1 LIMIT 1; + UPDATE civicrm_msg_template SET msg_{$tpl.type} = '{$content|escape:"quotes"}' WHERE workflow_id = @workflow_id AND (is_reserved = 1 OR (is_default = 1 AND msg_{$tpl.type} = @content)); +{/foreach} diff --git a/CRM/Upgrade/4.5.alpha1.msg_template/message_templates/contribution_offline_receipt_html.tpl b/CRM/Upgrade/4.5.alpha1.msg_template/message_templates/contribution_offline_receipt_html.tpl new file mode 100644 index 0000000000..985ddc5585 --- /dev/null +++ b/CRM/Upgrade/4.5.alpha1.msg_template/message_templates/contribution_offline_receipt_html.tpl @@ -0,0 +1,265 @@ + + + + + + + + +{capture assign=headerStyle}colspan="2" style="text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;"{/capture} +{capture assign=labelStyle }style="padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;"{/capture} +{capture assign=valueStyle }style="padding: 4px; border-bottom: 1px solid #999;"{/capture} + +
+ + + + + + + + + + + + + + + +
+ + {if $formValues.receipt_text} +

{$formValues.receipt_text|htmlize}

+ {else} +

{ts}Thanks for your support.{/ts}

+ {/if} + +

{ts}Please print this receipt for your records.{/ts}

+ +
+ + + + + + + + + + {if $lineItem and !$is_quick_config} + {foreach from=$lineItem item=value key=priceset} + + + + {/foreach} + {/if} + + + + + + + {if $receive_date} + + + + + {/if} + + {if $receipt_date} + + + + + {/if} + + {if $formValues.paidBy and !$formValues.hidden_CreditCard} + + + + + {if $formValues.check_number} + + + + + {/if} + {/if} + + {if $formValues.trxn_id} + + + + + {/if} + + {if $ccContribution} + + + + + + + + + + + + + {/if} + + {if $softCreditTypes and $softCredits} + {foreach from=$softCreditTypes item=softCreditType key=n} + + + + {foreach from=$softCredits.$n item=value key=label} + + + + + {/foreach} + {/foreach} + {/if} + + {if $customGroup} + {foreach from=$customGroup item=value key=customName} + + + + {foreach from=$value item=v key=n} + + + + + {/foreach} + {/foreach} + {/if} + + {if $formValues.product_name} + + + + + + + {if $formValues.product_option} + + + + + {/if} + {if $formValues.product_sku} + + + + + {/if} + {if $fulfilled_date} + + + + + {/if} + {/if} + +
+ {ts}Contribution Information{/ts} +
+ {ts}Financial Type{/ts} + + {$formValues.contributionType_name} +
+ {* FIXME: style this table so that it looks like the text version (justification, etc.) *} + + + + + + + {foreach from=$value item=line} + + + + + + + {/foreach} +
{ts}Item{/ts}{ts}Qty{/ts}{ts}Each{/ts}{ts}Total{/ts}
+ {if $line.html_type eq 'Text'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description}
{$line.description|truncate:30:"..."}
{/if} +
+ {$line.qty} + + {$line.unit_price|crmMoney:$currency} + + {$line.line_total|crmMoney:$currency} +
+
+ {ts}Total Amount{/ts} + + {$formValues.total_amount|crmMoney:$currency} +
+ {ts}Received Date{/ts} + + {$receive_date|truncate:10:''|crmDate} +
+ {ts}Receipt Date{/ts} + + {$receipt_date|truncate:10:''|crmDate} +
+ {ts}Paid By{/ts} + + {$formValues.paidBy} +
+ {ts}Check Number{/ts} + + {$formValues.check_number} +
+ {ts}Transaction ID{/ts} + + {$formValues.trxn_id} +
+ {ts}Billing Name and Address{/ts} +
+ {$billingName}
+ {$address|nl2br} +
+ {ts}Credit Card Information{/ts} +
+ {$credit_card_type}
+ {$credit_card_number}
+ {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:''|crmDate} +
+ {$softCreditType} +
+ {$label} + + {$value} +
+ {$customName} +
+ {$n} + + {$v} +
+ {ts}Premium Information{/ts} +
+ {$formValues.product_name} +
+ {ts}Option{/ts} + + {$formValues.product_option} +
+ {ts}SKU{/ts} + + {$formValues.product_sku} +
+ {ts}Sent{/ts} + + {$fulfilled_date|truncate:10:''|crmDate} +
+
+
+ + + diff --git a/CRM/Upgrade/4.5.alpha1.msg_template/message_templates/contribution_offline_receipt_text.tpl b/CRM/Upgrade/4.5.alpha1.msg_template/message_templates/contribution_offline_receipt_text.tpl new file mode 100644 index 0000000000..91e39addc7 --- /dev/null +++ b/CRM/Upgrade/4.5.alpha1.msg_template/message_templates/contribution_offline_receipt_text.tpl @@ -0,0 +1,98 @@ +{if $formValues.receipt_text} +{$formValues.receipt_text} +{else}{ts}Thanks for your support.{/ts}{/if} + +{ts}Please print this receipt for your records.{/ts} + + +=========================================================== +{ts}Contribution Information{/ts} + +=========================================================== +{ts}Financial Type{/ts}: {$formValues.contributionType_name} +{if $lineItem} +{foreach from=$lineItem item=value key=priceset} +--------------------------------------------------------- +{capture assign=ts_item}{ts}Item{/ts}{/capture} +{capture assign=ts_qty}{ts}Qty{/ts}{/capture} +{capture assign=ts_each}{ts}Each{/ts}{/capture} +{capture assign=ts_total}{ts}Total{/ts}{/capture} +{$ts_item|string_format:"%-30s"} {$ts_qty|string_format:"%5s"} {$ts_each|string_format:"%10s"} {$ts_total|string_format:"%10s"} +---------------------------------------------------------- +{foreach from=$value item=line} +{capture assign=ts_item}{if $line.html_type eq 'Text'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description} {$line.description}{/if}{/capture}{$ts_item|truncate:30:"..."|string_format:"%-30s"} {$line.qty|string_format:"%5s"} {$line.unit_price|crmMoney:$currency|string_format:"%10s"} {$line.line_total|crmMoney:$currency|string_format:"%10s"} +{/foreach} +{/foreach} +{/if} + +{ts}Total Amount{/ts}: {$formValues.total_amount|crmMoney:$currency} +{if $receive_date} +{ts}Received Date{/ts}: {$receive_date|truncate:10:''|crmDate} +{/if} +{if $receipt_date} +{ts}Receipt Date{/ts}: {$receipt_date|truncate:10:''|crmDate} +{/if} +{if $formValues.paidBy and !$formValues.hidden_CreditCard} +{ts}Paid By{/ts}: {$formValues.paidBy} +{if $formValues.check_number} +{ts}Check Number{/ts}: {$formValues.check_number} +{/if} +{/if} +{if $formValues.trxn_id} +{ts}Transaction ID{/ts}: {$formValues.trxn_id} +{/if} + +{if $ccContribution} +=========================================================== +{ts}Billing Name and Address{/ts} + +=========================================================== +{$billingName} +{$address} + +=========================================================== +{ts}Credit Card Information{/ts} + +=========================================================== +{$credit_card_type} +{$credit_card_number} +{ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:''|crmDate} +{/if} +{if $customGroup} +{foreach from=$customGroup item=value key=customName} +=========================================================== +{$customName} +=========================================================== +{foreach from=$value item=v key=n} +{$n}: {$v} +{/foreach} +{/foreach} +{/if} + +{if $softCreditTypes and $softCredits} +{foreach from=$softCreditTypes item=softCreditType key=n} +=========================================================== +{softCreditType} +=========================================================== +{foreach from=$softCredits.$n item=value key=label} +{$label}: {$value} +{/foreach} +{/foreach} +{/if} + +{if $formValues.product_name} +=========================================================== +{ts}Premium Information{/ts} + +=========================================================== +{$formValues.product_name} +{if $formValues.product_option} +{ts}Option{/ts}: {$formValues.product_option} +{/if} +{if $formValues.product_sku} +{ts}SKU{/ts}: {$formValues.product_sku} +{/if} +{if $fulfilled_date} +{ts}Sent{/ts}: {$fulfilled_date|crmDate} +{/if} +{/if} diff --git a/CRM/Upgrade/4.5.alpha1.msg_template/message_templates/contribution_online_receipt_html.tpl b/CRM/Upgrade/4.5.alpha1.msg_template/message_templates/contribution_online_receipt_html.tpl new file mode 100644 index 0000000000..547823ac92 --- /dev/null +++ b/CRM/Upgrade/4.5.alpha1.msg_template/message_templates/contribution_online_receipt_html.tpl @@ -0,0 +1,391 @@ + + + + + + + + +{capture assign=headerStyle}colspan="2" style="text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;"{/capture} +{capture assign=labelStyle }style="padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;"{/capture} +{capture assign=valueStyle }style="padding: 4px; border-bottom: 1px solid #999;"{/capture} + +
+ + + + + + + + + + + +
+ + {if $receipt_text} +

{$receipt_text|htmlize}

+ {/if} + + {if $is_pay_later} +

{$pay_later_receipt}

{* FIXME: this might be text rather than HTML *} + {else} +

{ts}Please print this confirmation for your records.{/ts}

+ {/if} + +
+ + + {if $amount} + + + + + + + {if $lineItem and $priceSetID and !$is_quick_config} + + {foreach from=$lineItem item=value key=priceset} + + + + {/foreach} + + + + + + {else} + + + + + + + {/if} + + {/if} + + + {if $receive_date} + + + + + {/if} + + {if $is_monetary and $trxn_id} + + + + + {/if} + + {if $is_recur} + {if $contributeMode eq 'notify' or $contributeMode eq 'directIPN'} + + + {if $updateSubscriptionBillingUrl} + + + + {/if} + + + + + {/if} + {/if} + + {if $honor_block_is_active} + + + + {foreach from=$honoreeProfile item=value key=label} + + + + + {/foreach} + {/if} + + {if $pcpBlock} + + + + + + + + {if $pcp_roll_nickname} + + + + + {/if} + {if $pcp_personal_note} + + + + + {/if} + {/if} + + {if $onBehalfProfile} + + + + {foreach from=$onBehalfProfile item=onBehalfValue key=onBehalfName} + + + + + {/foreach} + {/if} + + {if $isShare} + + + + {/if} + + {if ! ($contributeMode eq 'notify' OR $contributeMode eq 'directIPN') and $is_monetary} + {if $is_pay_later} + + + + + + + {elseif $amount GT 0} + + + + + + + {/if} + {/if} + + {if $contributeMode eq 'direct' AND !$is_pay_later AND $amount GT 0} + + + + + + + {/if} + + {if $selectPremium} + + + + + + + {if $option} + + + + + {/if} + {if $sku} + + + + + {/if} + {if $start_date} + + + + + {/if} + {if $end_date} + + + + + {/if} + {if $contact_email OR $contact_phone} + + + + {/if} + {if $is_deductible AND $price} + + + + {/if} + {/if} + + {if $customPre} + + + + {foreach from=$customPre item=customValue key=customName} + {if ($trackingFields and ! in_array($customName, $trackingFields)) or ! $trackingFields} + + + + + {/if} + {/foreach} + {/if} + + {if $customPost} + + + + {foreach from=$customPost item=customValue key=customName} + {if ($trackingFields and ! in_array($customName, $trackingFields)) or ! $trackingFields} + + + + + {/if} + {/foreach} + {/if} + +
+ {ts}Contribution Information{/ts} +
+ {* FIXME: style this table so that it looks like the text version (justification, etc.) *} + + + + + + + {foreach from=$value item=line} + + + + + + + {/foreach} +
{ts}Item{/ts}{ts}Qty{/ts}{ts}Each{/ts}{ts}Total{/ts}
+ {if $line.html_type eq 'Text'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description}
{$line.description|truncate:30:"..."}
{/if} +
+ {$line.qty} + + {$line.unit_price|crmMoney:$currency} + + {$line.line_total|crmMoney:$currency} +
+
+ {ts}Total Amount{/ts} + + {$amount|crmMoney:$currency} +
+ {ts}Amount{/ts} + + {$amount|crmMoney:$currency} {if $amount_level} - {$amount_level}{/if} +
+ {ts}Date{/ts} + + {$receive_date|crmDate} +
+ {ts}Transaction #{/ts} + + {$trxn_id} +
+ {ts 1=$cancelSubscriptionUrl}This is a recurring contribution. You can cancel future contributions by visiting this web page.{/ts} +
+ {ts 1=$updateSubscriptionBillingUrl}You can update billing details for this recurring contribution by visiting this web page.{/ts} +
+ {ts 1=$updateSubscriptionUrl}You can update recurring contribution amount or change the number of installments for this recurring contribution by visiting this web page.{/ts} +
+ {$soft_credit_type} +
+ {$label} + + {$value} +
+ {ts}Personal Campaign Page{/ts} +
+ {ts}Display In Honor Roll{/ts} + + {if $pcp_display_in_roll}{ts}Yes{/ts}{else}{ts}No{/ts}{/if} +
+ {ts}Nickname{/ts} + + {$pcp_roll_nickname} +
+ {ts}Personal Note{/ts} + + {$pcp_personal_note} +
+ {$onBehalfProfile_grouptitle} +
+ {$onBehalfName} + + {$onBehalfValue} +
+ {capture assign=contributionUrl}{crmURL p='civicrm/contribute/transact' q="reset=1&id=`$contributionPageId`" a=true fe=1 h=1}{/capture} + {include file="CRM/common/SocialNetwork.tpl" emailMode=true url=$contributionUrl title=$title pageURL=$contributionUrl} +
+ {ts}Registered Email{/ts} +
+ {$email} +
+ {ts}Billing Name and Address{/ts} +
+ {$billingName}
+ {$address|nl2br}
+ {$email} +
+ {ts}Credit Card Information{/ts} +
+ {$credit_card_type}
+ {$credit_card_number}
+ {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:''|crmDate}
+
+ {ts}Premium Information{/ts} +
+ {$product_name} +
+ {ts}Option{/ts} + + {$option} +
+ {ts}SKU{/ts} + + {$sku} +
+ {ts}Start Date{/ts} + + {$start_date|crmDate} +
+ {ts}End Date{/ts} + + {$end_date|crmDate} +
+

{ts}For information about this premium, contact:{/ts}

+ {if $contact_email} +

{$contact_email}

+ {/if} + {if $contact_phone} +

{$contact_phone}

+ {/if} +
+

{ts 1=$price|crmMoney:$currency}The value of this premium is %1. This may affect the amount of the tax deduction you can claim. Consult your tax advisor for more information.{/ts}

+
+ {$customPre_grouptitle} +
+ {$customName} + + {$customValue} +
+ {$customPost_grouptitle} +
+ {$customName} + + {$customValue} +
+
+ + + diff --git a/CRM/Upgrade/4.5.alpha1.msg_template/message_templates/contribution_online_receipt_text.tpl b/CRM/Upgrade/4.5.alpha1.msg_template/message_templates/contribution_online_receipt_text.tpl new file mode 100644 index 0000000000..2c85b65437 --- /dev/null +++ b/CRM/Upgrade/4.5.alpha1.msg_template/message_templates/contribution_online_receipt_text.tpl @@ -0,0 +1,180 @@ +{if $receipt_text} +{$receipt_text} +{/if} +{if $is_pay_later} + +=========================================================== +{$pay_later_receipt} +=========================================================== +{else} + +{ts}Please print this receipt for your records.{/ts} +{/if} + +{if $amount} +=========================================================== +{ts}Contribution Information{/ts} + +=========================================================== +{if $lineItem and $priceSetID and !$is_quick_config} +{foreach from=$lineItem item=value key=priceset} +--------------------------------------------------------- +{capture assign=ts_item}{ts}Item{/ts}{/capture} +{capture assign=ts_qty}{ts}Qty{/ts}{/capture} +{capture assign=ts_each}{ts}Each{/ts}{/capture} +{capture assign=ts_total}{ts}Total{/ts}{/capture} +{$ts_item|string_format:"%-30s"} {$ts_qty|string_format:"%5s"} {$ts_each|string_format:"%10s"} {$ts_total|string_format:"%10s"} +---------------------------------------------------------- +{foreach from=$value item=line} +{capture assign=ts_item}{if $line.html_type eq 'Text'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description} {$line.description}{/if}{/capture}{$ts_item|truncate:30:"..."|string_format:"%-30s"} {$line.qty|string_format:"%5s"} {$line.unit_price|crmMoney:$currency|string_format:"%10s"} {$line.line_total|crmMoney:$currency|string_format:"%10s"} +{/foreach} +{/foreach} + +{ts}Total Amount{/ts}: {$amount|crmMoney:$currency} +{else} +{ts}Amount{/ts}: {$amount|crmMoney:$currency} {if $amount_level } - {$amount_level} {/if} +{/if} +{/if} +{if $receive_date} + +{ts}Date{/ts}: {$receive_date|crmDate} +{/if} +{if $is_monetary and $trxn_id} +{ts}Transaction #{/ts}: {$trxn_id} +{/if} + +{if $is_recur and ($contributeMode eq 'notify' or $contributeMode eq 'directIPN')} +{ts}This is a recurring contribution. You can cancel future contributions at:{/ts} + +{$cancelSubscriptionUrl} + +{if $updateSubscriptionBillingUrl} +{ts}You can update billing details for this recurring contribution at:{/ts} + +{$updateSubscriptionBillingUrl} + +{/if} +{ts}You can update recurring contribution amount or change the number of installments for this recurring contribution at:{/ts} + +{$updateSubscriptionUrl} + +{/if} + +{if $honor_block_is_active} +=========================================================== +{$soft_credit_type} +=========================================================== +{foreach from=$honoreeProfile item=value key=label} +{$label}: {$value} +{/foreach} + +{/if} +{if $pcpBlock} +=========================================================== +{ts}Personal Campaign Page{/ts} + +=========================================================== +{ts}Display In Honor Roll{/ts}: {if $pcp_display_in_roll}{ts}Yes{/ts}{else}{ts}No{/ts}{/if} + +{if $pcp_roll_nickname}{ts}Nickname{/ts}: {$pcp_roll_nickname}{/if} + +{if $pcp_personal_note}{ts}Personal Note{/ts}: {$pcp_personal_note}{/if} + +{/if} +{if $onBehalfProfile} +=========================================================== +{ts}On Behalf Of{/ts} + +=========================================================== +{foreach from=$onBehalfProfile item=onBehalfValue key=onBehalfName} +{$onBehalfName}: {$onBehalfValue} +{/foreach} +{/if} + +{if !( $contributeMode eq 'notify' OR $contributeMode eq 'directIPN' ) and $is_monetary} +{if $is_pay_later} +=========================================================== +{ts}Registered Email{/ts} + +=========================================================== +{$email} +{elseif $amount GT 0} +=========================================================== +{ts}Billing Name and Address{/ts} + +=========================================================== +{$billingName} +{$address} + +{$email} +{/if} {* End ! is_pay_later condition. *} +{/if} +{if $contributeMode eq 'direct' AND !$is_pay_later AND $amount GT 0} + +=========================================================== +{ts}Credit Card Information{/ts} + +=========================================================== +{$credit_card_type} +{$credit_card_number} +{ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:''|crmDate} +{/if} + +{if $selectPremium } +=========================================================== +{ts}Premium Information{/ts} + +=========================================================== +{$product_name} +{if $option} +{ts}Option{/ts}: {$option} +{/if} +{if $sku} +{ts}SKU{/ts}: {$sku} +{/if} +{if $start_date} +{ts}Start Date{/ts}: {$start_date|crmDate} +{/if} +{if $end_date} +{ts}End Date{/ts}: {$end_date|crmDate} +{/if} +{if $contact_email OR $contact_phone} + +{ts}For information about this premium, contact:{/ts} + +{if $contact_email} + {$contact_email} +{/if} +{if $contact_phone} + {$contact_phone} +{/if} +{/if} +{if $is_deductible AND $price} + +{ts 1=$price|crmMoney:$currency}The value of this premium is %1. This may affect the amount of the tax deduction you can claim. Consult your tax advisor for more information.{/ts}{/if} +{/if} + +{if $customPre} +=========================================================== +{$customPre_grouptitle} + +=========================================================== +{foreach from=$customPre item=customValue key=customName} +{if ( $trackingFields and ! in_array( $customName, $trackingFields ) ) or ! $trackingFields} + {$customName}: {$customValue} +{/if} +{/foreach} +{/if} + + +{if $customPost} +=========================================================== +{$customPost_grouptitle} + +=========================================================== +{foreach from=$customPost item=customValue key=customName} +{if ( $trackingFields and ! in_array( $customName, $trackingFields ) ) or ! $trackingFields} + {$customName}: {$customValue} +{/if} +{/foreach} +{/if} diff --git a/CRM/Upgrade/4.5.alpha1.msg_template/message_templates/membership_online_receipt_html.tpl b/CRM/Upgrade/4.5.alpha1.msg_template/message_templates/membership_online_receipt_html.tpl new file mode 100644 index 0000000000..af216f8956 --- /dev/null +++ b/CRM/Upgrade/4.5.alpha1.msg_template/message_templates/membership_online_receipt_html.tpl @@ -0,0 +1,509 @@ + + + + + + + + +{capture assign=headerStyle}colspan="2" style="text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;"{/capture} +{capture assign=labelStyle }style="padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;"{/capture} +{capture assign=valueStyle }style="padding: 4px; border-bottom: 1px solid #999;"{/capture} + +
+ + + + + + + + + + + +
+ + {if $receipt_text} +

{$receipt_text|htmlize}

+ {/if} + + {if $is_pay_later} +

{$pay_later_receipt}

{* FIXME: this might be text rather than HTML *} + {else} +

{ts}Please print this confirmation for your records.{/ts}

+ {/if} + +
+ + + {if $membership_assign && !$useForMember} + + + + + + + + {if $mem_start_date} + + + + + {/if} + {if $mem_end_date} + + + + + {/if} + {/if} + + + {if $amount} + + + + + {if !$useForMember and $membership_amount and $is_quick_config} + + + + + + {if $amount} + {if ! $is_separate_payment } + + + + + {else} + + + + + {/if} + {/if} + + + + + + {elseif !$useForMember && $lineItem and $priceSetID and !$is_quick_config} + + {foreach from=$lineItem item=value key=priceset} + + + + {/foreach} + + + + + + {else} + {if $useForMember && $lineItem and !$is_quick_config} + {foreach from=$lineItem item=value key=priceset} + + + + {/foreach} + {/if} + + + + + + {/if} + + + {elseif $membership_amount} + + + + + + + + + + + + {/if} + + {if $receive_date} + + + + + {/if} + + {if $is_monetary and $trxn_id} + + + + + {/if} + + {if $membership_trx_id} + + + + + {/if} + {if $is_recur} + {if $contributeMode eq 'notify' or $contributeMode eq 'directIPN'} + + + + + + + {/if} + {/if} + + {if $honor_block_is_active} + + + + {foreach from=$honoreeProfile item=value key=label} + + + + + {/foreach} + {/if} + + {if $pcpBlock} + + + + + + + + {if $pcp_roll_nickname} + + + + + {/if} + {if $pcp_personal_note} + + + + + {/if} + {/if} + + {if $onBehalfProfile} + + + + {foreach from=$onBehalfProfile item=onBehalfValue key=onBehalfName} + + + + + {/foreach} + {/if} + + {if ! ($contributeMode eq 'notify' OR $contributeMode eq 'directIPN') and $is_monetary} + {if $is_pay_later} + + + + + + + {elseif $amount GT 0 OR $membership_amount GT 0} + + + + + + + {/if} + {/if} + + {if $contributeMode eq 'direct' AND !$is_pay_later AND ($amount GT 0 OR $membership_amount GT 0)} + + + + + + + {/if} + + {if $selectPremium} + + + + + + + {if $option} + + + + + {/if} + {if $sku} + + + + + {/if} + {if $start_date} + + + + + {/if} + {if $end_date} + + + + + {/if} + {if $contact_email OR $contact_phone} + + + + {/if} + {if $is_deductible AND $price} + + + + {/if} + {/if} + + {if $customPre} + + + + {foreach from=$customPre item=customValue key=customName} + {if ($trackingFields and ! in_array($customName, $trackingFields)) or ! $trackingFields} + + + + + {/if} + {/foreach} + {/if} + + {if $customPost} + + + + {foreach from=$customPost item=customValue key=customName} + {if ($trackingFields and ! in_array($customName, $trackingFields)) or ! $trackingFields} + + + + + {/if} + {/foreach} + {/if} + +
+ {ts}Membership Information{/ts} +
+ {ts}Membership Type{/ts} + + {$membership_name} +
+ {ts}Membership Start Date{/ts} + + {$mem_start_date|crmDate} +
+ {ts}Membership End Date{/ts} + + {$mem_end_date|crmDate} +
+ {ts}Membership Fee{/ts} +
+ {ts 1=$membership_name}%1 Membership{/ts} + + {$membership_amount|crmMoney} +
+ {ts}Contribution Amount{/ts} + + {$amount|crmMoney} +
+ {ts}Additional Contribution{/ts} + + {$amount|crmMoney} +
+ {ts}Total{/ts} + + {$amount+$membership_amount|crmMoney} +
+ {* FIXME: style this table so that it looks like the text version (justification, etc.) *} + + + + + + + {foreach from=$value item=line} + + + + + + + {/foreach} +
{ts}Item{/ts}{ts}Qty{/ts}{ts}Each{/ts}{ts}Total{/ts}
+ {$line.description|truncate:30:"..."} + + {$line.qty} + + {$line.unit_price|crmMoney} + + {$line.line_total|crmMoney} +
+
+ {ts}Total Amount{/ts} + + {$amount|crmMoney} +
+ {* FIXME: style this table so that it looks like the text version (justification, etc.) *} + + + + + + + {foreach from=$value item=line} + + + + + + + {/foreach} +
{ts}Item{/ts}{ts}Fee{/ts}{ts}Membership Start Date{/ts}{ts}Membership End Date{/ts}
+ {if $line.html_type eq 'Text'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description}
{$line.description|truncate:30:"..."}
{/if} +
+ {$line.line_total|crmMoney} + + {$line.start_date} + + {$line.end_date} +
+
+ {ts}Amount{/ts} + + {$amount|crmMoney} {if $amount_level} - {$amount_level}{/if} +
+ {ts}Membership Fee{/ts} +
+ {ts 1=$membership_name}%1 Membership{/ts} + + {$membership_amount|crmMoney} +
+ {ts}Date{/ts} + + {$receive_date|crmDate} +
+ {ts}Transaction #{/ts} + + {$trxn_id} +
+ {ts}Membership Transaction #{/ts} + + {$membership_trx_id} +
+ {ts 1=$cancelSubscriptionUrl}This membership will be renewed automatically. You can cancel the auto-renewal option by visiting this web page.{/ts} +
+ {ts 1=$updateSubscriptionBillingUrl}You can update billing details for this automatically renewed membership by visiting this web page.{/ts} +
+ {$soft_credit_type} +
+ {$label} + + {$value} +
+ {ts}Personal Campaign Page{/ts} +
+ {ts}Display In Honor Roll{/ts} + + {if $pcp_display_in_roll}{ts}Yes{/ts}{else}{ts}No{/ts}{/if} +
+ {ts}Nickname{/ts} + + {$pcp_roll_nickname} +
+ {ts}Personal Note{/ts} + + {$pcp_personal_note} +
+ {$onBehalfProfile_grouptitle} +
+ {$onBehalfName} + + {$onBehalfValue} +
+ {ts}Registered Email{/ts} +
+ {$email} +
+ {ts}Billing Name and Address{/ts} +
+ {$billingName}
+ {$address|nl2br}
+ {$email} +
+ {ts}Credit Card Information{/ts} +
+ {$credit_card_type}
+ {$credit_card_number}
+ {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:''|crmDate}
+
+ {ts}Premium Information{/ts} +
+ {$product_name} +
+ {ts}Option{/ts} + + {$option} +
+ {ts}SKU{/ts} + + {$sku} +
+ {ts}Start Date{/ts} + + {$start_date|crmDate} +
+ {ts}End Date{/ts} + + {$end_date|crmDate} +
+

{ts}For information about this premium, contact:{/ts}

+ {if $contact_email} +

{$contact_email}

+ {/if} + {if $contact_phone} +

{$contact_phone}

+ {/if} +
+

{ts 1=$price|crmMoney}The value of this premium is %1. This may affect the amount of the tax deduction you can claim. Consult your tax advisor for more information.{/ts}

+
+ {$customPre_grouptitle} +
+ {$customName} + + {$customValue} +
+ {$customPost_grouptitle} +
+ {$customName} + + {$customValue} +
+
+ + + diff --git a/CRM/Upgrade/4.5.alpha1.msg_template/message_templates/membership_online_receipt_text.tpl b/CRM/Upgrade/4.5.alpha1.msg_template/message_templates/membership_online_receipt_text.tpl new file mode 100644 index 0000000000..481eaf84a6 --- /dev/null +++ b/CRM/Upgrade/4.5.alpha1.msg_template/message_templates/membership_online_receipt_text.tpl @@ -0,0 +1,220 @@ +{if $receipt_text} +{$receipt_text} +{/if} +{if $is_pay_later} + +=========================================================== +{$pay_later_receipt} +=========================================================== +{else} + +{ts}Please print this receipt for your records.{/ts} +{/if} + +{if $membership_assign && !$useForMember} +=========================================================== +{ts}Membership Information{/ts} + +=========================================================== +{ts}Membership Type{/ts}: {$membership_name} +{if $mem_start_date}{ts}Membership Start Date{/ts}: {$mem_start_date|crmDate} +{/if} +{if $mem_end_date}{ts}Membership End Date{/ts}: {$mem_end_date|crmDate} +{/if} + +{/if} +{if $amount} +=========================================================== +{ts}Membership Fee{/ts} + +=========================================================== +{if !$useForMember && $membership_amount && $is_quick_config} +{ts 1=$membership_name}%1 Membership{/ts}: {$membership_amount|crmMoney} +{if $amount} +{if ! $is_separate_payment } +{ts}Contribution Amount{/ts}: {$amount|crmMoney} +{else} +{ts}Additional Contribution{/ts}: {$amount|crmMoney} +{/if} +{/if} +------------------------------------------- +{ts}Total{/ts}: {$amount+$membership_amount|crmMoney} +{elseif !$useForMember && $lineItem and $priceSetID & !$is_quick_config} +{foreach from=$lineItem item=value key=priceset} +--------------------------------------------------------- +{capture assign=ts_item}{ts}Item{/ts}{/capture} +{capture assign=ts_qty}{ts}Qty{/ts}{/capture} +{capture assign=ts_each}{ts}Each{/ts}{/capture} +{capture assign=ts_total}{ts}Total{/ts}{/capture} +{$ts_item|string_format:"%-30s"} {$ts_qty|string_format:"%5s"} {$ts_each|string_format:"%10s"} {$ts_total|string_format:"%10s"} +---------------------------------------------------------- +{foreach from=$value item=line} +{$line.description|truncate:30:"..."|string_format:"%-30s"} {$line.qty|string_format:"%5s"} {$line.unit_price|crmMoney|string_format:"%10s"} {$line.line_total|crmMoney|string_format:"%10s"} +{/foreach} +{/foreach} + +{ts}Total Amount{/ts}: {$amount|crmMoney} +{else} +{if $useForMember && $lineItem && !$is_quick_config} +{foreach from=$lineItem item=value key=priceset} +{capture assign=ts_item}{ts}Item{/ts}{/capture} +{capture assign=ts_total}{ts}Fee{/ts}{/capture} +{capture assign=ts_start_date}{ts}Membership Start Date{/ts}{/capture} +{capture assign=ts_end_date}{ts}Membership End Date{/ts}{/capture} +{$ts_item|string_format:"%-30s"} {$ts_total|string_format:"%10s"} {$ts_start_date|string_format:"%20s"} {$ts_end_date|string_format:"%20s"} +-------------------------------------------------------------------------------------------------- + +{foreach from=$value item=line} +{capture assign=ts_item}{if $line.html_type eq 'Text'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description} {$line.description}{/if}{/capture}{$ts_item|truncate:30:"..."|string_format:"%-30s"} {$line.line_total|crmMoney|string_format:"%10s"} {$line.start_date|string_format:"%20s"} {$line.end_date|string_format:"%20s"} +{/foreach} +{/foreach} +-------------------------------------------------------------------------------------------------- +{/if} +{ts}Amount{/ts}: {$amount|crmMoney} {if $amount_level } - {$amount_level} {/if} +{/if} +{elseif $membership_amount} +=========================================================== +{ts}Membership Fee{/ts} + +=========================================================== +{ts 1=$membership_name}%1 Membership{/ts}: {$membership_amount|crmMoney} +{/if} + +{if $receive_date} + +{ts}Date{/ts}: {$receive_date|crmDate} +{/if} +{if $is_monetary and $trxn_id} +{ts}Transaction #{/ts}: {$trxn_id} + +{/if} +{if $membership_trx_id} +{ts}Membership Transaction #{/ts}: {$membership_trx_id} + +{/if} +{if $is_recur} +{if $contributeMode eq 'notify' or $contributeMode eq 'directIPN'} +{ts 1=$cancelSubscriptionUrl}This membership will be renewed automatically. You can cancel the auto-renewal option by visiting this web page: %1.{/ts} + +{ts 1=$updateSubscriptionBillingUrl}You can update billing details for this automatically renewed membership by visiting this web page.{/ts} +{/if} +{/if} + +{if $honor_block_is_active } +=========================================================== +{$soft_credit_type} +=========================================================== +{foreach from=$honoreeProfile item=value key=label} +{$label}: {$value} +{/foreach} + +{/if} +{if $pcpBlock} +=========================================================== +{ts}Personal Campaign Page{/ts} + +=========================================================== +{ts}Display In Honor Roll{/ts}: {if $pcp_display_in_roll}{ts}Yes{/ts}{else}{ts}No{/ts}{/if} + +{if $pcp_roll_nickname}{ts}Nickname{/ts}: {$pcp_roll_nickname}{/if} + +{if $pcp_personal_note}{ts}Personal Note{/ts}: {$pcp_personal_note}{/if} + +{/if} +{if $onBehalfProfile} +=========================================================== +{ts}On Behalf Of{/ts} + +=========================================================== +{foreach from=$onBehalfProfile item=onBehalfValue key=onBehalfName} +{$onBehalfName}: {$onBehalfValue} +{/foreach} +{/if} + +{if !( $contributeMode eq 'notify' OR $contributeMode eq 'directIPN' ) and $is_monetary} +{if $is_pay_later} +=========================================================== +{ts}Registered Email{/ts} + +=========================================================== +{$email} +{elseif $amount GT 0 OR $membership_amount GT 0 } +=========================================================== +{ts}Billing Name and Address{/ts} + +=========================================================== +{$billingName} +{$address} + +{$email} +{/if} {* End ! is_pay_later condition. *} +{/if} +{if $contributeMode eq 'direct' AND !$is_pay_later AND ( $amount GT 0 OR $membership_amount GT 0 ) } + +=========================================================== +{ts}Credit Card Information{/ts} + +=========================================================== +{$credit_card_type} +{$credit_card_number} +{ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:''|crmDate} +{/if} + +{if $selectPremium } +=========================================================== +{ts}Premium Information{/ts} + +=========================================================== +{$product_name} +{if $option} +{ts}Option{/ts}: {$option} +{/if} +{if $sku} +{ts}SKU{/ts}: {$sku} +{/if} +{if $start_date} +{ts}Start Date{/ts}: {$start_date|crmDate} +{/if} +{if $end_date} +{ts}End Date{/ts}: {$end_date|crmDate} +{/if} +{if $contact_email OR $contact_phone} + +{ts}For information about this premium, contact:{/ts} + +{if $contact_email} + {$contact_email} +{/if} +{if $contact_phone} + {$contact_phone} +{/if} +{/if} +{if $is_deductible AND $price} + +{ts 1=$price|crmMoney}The value of this premium is %1. This may affect the amount of the tax deduction you can claim. Consult your tax advisor for more information.{/ts}{/if} +{/if} + +{if $customPre} +=========================================================== +{$customPre_grouptitle} + +=========================================================== +{foreach from=$customPre item=customValue key=customName} +{if ( $trackingFields and ! in_array( $customName, $trackingFields ) ) or ! $trackingFields} + {$customName}: {$customValue} +{/if} +{/foreach} +{/if} + + +{if $customPost} +=========================================================== +{$customPost_grouptitle} + +=========================================================== +{foreach from=$customPost item=customValue key=customName} +{if ( $trackingFields and ! in_array( $customName, $trackingFields ) ) or ! $trackingFields} + {$customName}: {$customValue} +{/if} +{/foreach} +{/if} diff --git a/CRM/Upgrade/4.5.alpha1.msg_template/message_templates/pledge_acknowledge_html.tpl b/CRM/Upgrade/4.5.alpha1.msg_template/message_templates/pledge_acknowledge_html.tpl new file mode 100644 index 0000000000..c0727c4078 --- /dev/null +++ b/CRM/Upgrade/4.5.alpha1.msg_template/message_templates/pledge_acknowledge_html.tpl @@ -0,0 +1,117 @@ + + + + + + + + +{capture assign=headerStyle}colspan="2" style="text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;"{/capture} +{capture assign=labelStyle }style="padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;"{/capture} +{capture assign=valueStyle }style="padding: 4px; border-bottom: 1px solid #999;"{/capture} + +
+ + + + + + + + + + + + + + + +
+

{ts 1=$contact.display_name}dear %1{/ts},

+

{ts}thank you for your generous pledge. please print this acknowledgment for your records.{/ts}

+
+ + + + + + + + + + + + + + + + + + + + {if $payments} + {assign var="count" value="1"} + {foreach from=$payments item=payment} + + + + + {assign var="count" value=`$count+1`} + {/foreach} + {/if} + + + + + + {if $customGroup} + {foreach from=$customGroup item=value key=customName} + + + + {foreach from=$value item=v key=n} + + + + + {/foreach} + {/foreach} + {/if} + +
+ {ts}Pledge Information{/ts} +
+ {ts}Pledge Received{/ts} + + {$create_date|truncate:10:''|crmDate} +
+ {ts}Total Pledge Amount{/ts} + + {$total_pledge_amount|crmMoney:$currency} +
+ {ts}Payment Schedule{/ts} +
+

{ts 1=$scheduled_amount|crmMoney:$currency 2=$frequency_interval 3=$frequency_unit 4=$installments}%1 every %2 %3 for %4 installments.{/ts}

+ + {if $frequency_day} +

{ts 1=$frequency_day 2=$frequency_unit}Payments are due on day %1 of the %2.{/ts}

+ {/if} +
+ {ts 1=$count}Payment %1{/ts} + + {$payment.amount|crmMoney:$currency} {if $payment.status eq 1}{ts}paid{/ts} {$payment.receive_date|truncate:10:''|crmDate}{else}{ts}due{/ts} {$payment.due_date|truncate:10:''|crmDate}{/if} +
+

{ts 1=$domain.phone 2=$domain.email}Please contact us at %1 or send email to %2 if you have questions +or need to modify your payment schedule.{/ts}

+
+ {$customName} +
+ {$n} + + {$v} +
+
+
+ + + diff --git a/CRM/Upgrade/4.5.alpha1.msg_template/message_templates/pledge_acknowledge_text.tpl b/CRM/Upgrade/4.5.alpha1.msg_template/message_templates/pledge_acknowledge_text.tpl new file mode 100644 index 0000000000..571f1b1bea --- /dev/null +++ b/CRM/Upgrade/4.5.alpha1.msg_template/message_templates/pledge_acknowledge_text.tpl @@ -0,0 +1,45 @@ +{ts 1=$contact.display_name}Dear %1{/ts}, + +{ts}Thank you for your generous pledge. Please print this acknowledgment for your records.{/ts} + +=========================================================== +{ts}Pledge Information{/ts} + +=========================================================== +{ts}Pledge Received{/ts}: {$create_date|truncate:10:''|crmDate} +{ts}Total Pledge Amount{/ts}: {$total_pledge_amount|crmMoney:$currency} + +=========================================================== +{ts}Payment Schedule{/ts} + +=========================================================== +{ts 1=$scheduled_amount|crmMoney:$currency 2=$frequency_interval 3=$frequency_unit 4=$installments}%1 every %2 %3 for %4 installments.{/ts} + +{if $frequency_day} + +{ts 1=$frequency_day 2=$frequency_unit}Payments are due on day %1 of the %2.{/ts} +{/if} + +{if $payments} +{assign var="count" value="1"} +{foreach from=$payments item=payment} + +{ts 1=$count}Payment %1{/ts}: {$payment.amount|crmMoney:$currency} {if $payment.status eq 1}{ts}paid{/ts} {$payment.receive_date|truncate:10:''|crmDate}{else}{ts}due{/ts} {$payment.due_date|truncate:10:''|crmDate}{/if} +{assign var="count" value=`$count+1`} +{/foreach} +{/if} + + +{ts 1=$domain.phone 2=$domain.email}Please contact us at %1 or send email to %2 if you have questions +or need to modify your payment schedule.{/ts} + +{if $customGroup} +{foreach from=$customGroup item=value key=customName} +=========================================================== +{$customName} +=========================================================== +{foreach from=$value item=v key=n} +{$n}: {$v} +{/foreach} +{/foreach} +{/if} diff --git a/CRM/Upgrade/Incremental/php/FourFive.php b/CRM/Upgrade/Incremental/php/FourFive.php index c125053e71..ec5940f9b2 100644 --- a/CRM/Upgrade/Incremental/php/FourFive.php +++ b/CRM/Upgrade/Incremental/php/FourFive.php @@ -59,6 +59,9 @@ class CRM_Upgrade_Incremental_php_FourFive { * @return void */ function setPostUpgradeMessage(&$postUpgradeMessage, $rev) { + if ($rev == '4.5.alpha1') { + $postUpgradeMessage .= '

' . ts('Default versions of the following System Workflow Message Templates have been modified to handle new functionality: If you have modified these templates, please review the new default versions and implement updates as needed to your copies (Administer > Communications > Message Templates > System Workflow Messages).'); + } } function upgrade_4_5_alpha1($rev) { diff --git a/CRM/Upgrade/Incremental/sql/4.5.alpha1.mysql.tpl b/CRM/Upgrade/Incremental/sql/4.5.alpha1.mysql.tpl index ab49122df8..34d81d23bc 100644 --- a/CRM/Upgrade/Incremental/sql/4.5.alpha1.mysql.tpl +++ b/CRM/Upgrade/Incremental/sql/4.5.alpha1.mysql.tpl @@ -1,5 +1,7 @@ {* file to handle db changes in 4.5.alpha1 during upgrade *} +{include file='../CRM/Upgrade/4.5.alpha1.msg_template/civicrm_msg_template.tpl'} + ALTER TABLE `civicrm_contact` ADD COLUMN `formal_title` varchar(64) COMMENT 'Formal (academic or similar) title in front of name. (Prof., Dr. etc.)' AFTER `suffix_id`; @@ -126,14 +128,14 @@ INSERT INTO `civicrm_uf_group` VALUES ('honoree_individual', 'Individual, Contact', {localize}'{ts escape="sql"}Honoree Individual{/ts}'{/localize}, 0, 1); -SELECT @uf_group_id_honoree_individual := max(id) from civicrm_uf_group where name = 'honoree_individual'; +SELECT @uf_group_id_honoree_individual := id from civicrm_uf_group where name = 'honoree_individual'; INSERT INTO `civicrm_uf_field` (`uf_group_id`, `field_name`, `is_required`, `is_reserved`, `weight`, `visibility`, `in_selector`, `is_searchable`, `location_type_id`, {localize field='label'}`label`{/localize}, field_type) VALUES (@uf_group_id_honoree_individual, 'prefix_id', 0, 1, 1, 'User and User Admin Only', 0, 1, NULL, '{ts escape="sql"}Individual Prefix{/ts}', 'Individual'), (@uf_group_id_honoree_individual, 'first_name', 0, 1, 2, 'User and User Admin Only', 0, 1, NULL, '{ts escape="sql"}First Name{/ts}', 'Individual'), - (@uf_group_id_honoree_individual, 'last_name', 0, 1, 3, 'User and User Admin Only', 0, 1, NULL, '{ts escape="sql"}Last Name{/ts}', 'Individual') + (@uf_group_id_honoree_individual, 'last_name', 0, 1, 3, 'User and User Admin Only', 0, 1, NULL, '{ts escape="sql"}Last Name{/ts}', 'Individual'), (@uf_group_id_honoree_individual, 'email', 0, 1, 4, 'User and User Admin Only', 0, 1, 1, '{ts escape="sql"}Email Address{/ts}', 'Individual'); ALTER TABLE `civicrm_uf_join` @@ -149,9 +151,11 @@ ALTER TABLE `civicrm_uf_join` ALTER TABLE civicrm_contribution_page DROP honor_block_text; {/if} +ALTER TABLE civicrm_contribution DROP FOREIGN KEY `FK_civicrm_contribution_honor_contact_id`; ALTER TABLE civicrm_contribution DROP honor_contact_id; ALTER TABLE civicrm_contribution DROP honor_type_id; +ALTER TABLE civicrm_pledge DROP FOREIGN KEY `FK_civicrm_pledge_honor_contact_id`; ALTER TABLE civicrm_pledge DROP honor_contact_id; ALTER TABLE civicrm_pledge DROP honor_type_id; diff --git a/sql/civicrm_generated.mysql b/sql/civicrm_generated.mysql index a795736f24..67eb48fa3b 100644 --- a/sql/civicrm_generated.mysql +++ b/sql/civicrm_generated.mysql @@ -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`) VALUES (1,NULL,10,'Subject for Pledge Acknowledgment','2013-03-27 08:34:29',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(2,NULL,10,'Subject for Pledge Acknowledgment','2013-02-15 02:44:58',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(3,NULL,9,'Subject for Tell a Friend','2014-01-21 11:16:26',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(4,NULL,8,'Subject for Membership Renewal','2013-06-28 05:49:02',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(5,NULL,8,'Subject for Membership Renewal','2013-05-26 07:30:34',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(6,NULL,9,'Subject for Tell a Friend','2013-10-14 03:14:48',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(7,NULL,8,'Subject for Membership Renewal','2013-04-11 05:16:34',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(8,NULL,9,'Subject for Tell a Friend','2013-11-23 06:18:56',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(9,NULL,8,'Subject for Membership Renewal','2013-10-25 01:37:41',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(10,NULL,10,'Subject for Pledge Acknowledgment','2013-10-05 06:15:28',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(11,NULL,9,'Subject for Tell a Friend','2013-05-27 12:37:17',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(12,NULL,7,'Subject for Membership Signup','2013-06-05 11:17:50',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(13,NULL,9,'Subject for Tell a Friend','2014-01-21 09:04:44',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(14,NULL,7,'Subject for Membership Signup','2013-12-30 07:20:13',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(15,NULL,7,'Subject for Membership Signup','2013-12-12 11:42:54',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(16,NULL,8,'Subject for Membership Renewal','2013-03-27 09:23:50',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(17,NULL,9,'Subject for Tell a Friend','2013-03-20 01:05:58',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(18,NULL,8,'Subject for Membership Renewal','2013-05-19 01:19:26',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(19,NULL,8,'Subject for Membership Renewal','2013-03-24 11:53:51',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(20,NULL,10,'Subject for Pledge Acknowledgment','2013-03-22 09:09:08',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(21,NULL,8,'Subject for Membership Renewal','2014-01-15 10:27:42',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(22,NULL,8,'Subject for Membership Renewal','2013-05-24 03:55:00',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(23,NULL,9,'Subject for Tell a Friend','2013-03-30 05:55:19',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(24,NULL,9,'Subject for Tell a Friend','2013-09-15 02:44:17',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(25,NULL,9,'Subject for Tell a Friend','2013-05-30 12:10:20',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(26,NULL,7,'Subject for Membership Signup','2013-12-30 05:58:18',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(27,NULL,9,'Subject for Tell a Friend','2013-08-11 12:57:23',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(28,NULL,10,'Subject for Pledge Acknowledgment','2013-06-07 01:22:30',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(29,NULL,7,'Subject for Membership Signup','2013-08-21 02:24:54',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(30,NULL,9,'Subject for Tell a Friend','2013-10-04 12:30:46',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(31,NULL,9,'Subject for Tell a Friend','2014-01-05 09:37:23',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(32,NULL,10,'Subject for Pledge Acknowledgment','2013-09-09 09:20:01',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(33,NULL,10,'Subject for Pledge Acknowledgment','2013-07-07 08:05:04',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(34,NULL,10,'Subject for Pledge Acknowledgment','2013-09-01 10:11:42',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(35,NULL,9,'Subject for Tell a Friend','2013-09-05 01:31:15',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(36,NULL,7,'Subject for Membership Signup','2013-02-04 07:27:07',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(37,NULL,9,'Subject for Tell a Friend','2013-02-26 01:42:36',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(38,NULL,10,'Subject for Pledge Acknowledgment','2013-10-03 09:47:56',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(39,NULL,10,'Subject for Pledge Acknowledgment','2013-10-02 07:45:14',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(40,NULL,10,'Subject for Pledge Acknowledgment','2013-07-19 10:11:02',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(41,NULL,9,'Subject for Tell a Friend','2013-08-17 08:44:46',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(42,NULL,9,'Subject for Tell a Friend','2013-08-21 09:03:49',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(43,NULL,7,'Subject for Membership Signup','2014-01-12 04:01:43',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(44,NULL,9,'Subject for Tell a Friend','2013-02-05 01:26:46',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(45,NULL,10,'Subject for Pledge Acknowledgment','2013-09-21 10:26:30',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(46,NULL,8,'Subject for Membership Renewal','2013-02-06 05:52:53',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(47,NULL,8,'Subject for Membership Renewal','2013-12-29 05:51:51',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(48,NULL,7,'Subject for Membership Signup','2013-04-02 10:16:04',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(49,NULL,7,'Subject for Membership Signup','2013-05-14 02:25:35',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(50,NULL,10,'Subject for Pledge Acknowledgment','2013-02-16 03:30:08',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(51,NULL,7,'Subject for Membership Signup','2013-12-29 09:57:23',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(52,NULL,8,'Subject for Membership Renewal','2013-09-28 05:55:09',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(53,NULL,10,'Subject for Pledge Acknowledgment','2013-09-11 04:24:00',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(54,NULL,7,'Subject for Membership Signup','2013-03-24 08:02:31',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(55,NULL,8,'Subject for Membership Renewal','2013-06-05 02:04:01',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(56,NULL,8,'Subject for Membership Renewal','2013-09-19 03:51:05',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(57,NULL,9,'Subject for Tell a Friend','2013-05-03 09:29:22',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(58,NULL,7,'Subject for Membership Signup','2013-05-11 06:36:30',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(59,NULL,9,'Subject for Tell a Friend','2013-10-24 06:04:52',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(60,NULL,10,'Subject for Pledge Acknowledgment','2013-09-09 05:09:11',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(61,NULL,9,'Subject for Tell a Friend','2013-02-08 04:08:28',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(62,NULL,10,'Subject for Pledge Acknowledgment','2013-11-18 04:46:31',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(63,NULL,7,'Subject for Membership Signup','2013-06-26 08:47:17',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(64,NULL,7,'Subject for Membership Signup','2013-10-23 11:10:10',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(65,NULL,9,'Subject for Tell a Friend','2013-04-07 01:05:20',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(66,NULL,9,'Subject for Tell a Friend','2013-09-25 01:56:36',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(67,NULL,8,'Subject for Membership Renewal','2013-04-26 06:55:50',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(68,NULL,10,'Subject for Pledge Acknowledgment','2014-01-15 09:37:34',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(69,NULL,9,'Subject for Tell a Friend','2013-09-03 04:17:56',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(70,NULL,10,'Subject for Pledge Acknowledgment','2013-11-09 12:59:18',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(71,NULL,9,'Subject for Tell a Friend','2013-10-25 07:51:49',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(72,NULL,7,'Subject for Membership Signup','2013-07-16 04:11:58',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(73,NULL,8,'Subject for Membership Renewal','2013-11-15 08:09:44',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(74,NULL,9,'Subject for Tell a Friend','2013-04-12 01:04:39',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(75,NULL,8,'Subject for Membership Renewal','2013-06-14 06:12:18',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(76,NULL,10,'Subject for Pledge Acknowledgment','2013-05-14 01:01:41',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(77,NULL,9,'Subject for Tell a Friend','2013-03-30 12:54:18',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(78,NULL,9,'Subject for Tell a Friend','2013-03-21 01:54:14',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(79,NULL,7,'Subject for Membership Signup','2013-05-30 10:15:55',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(80,NULL,10,'Subject for Pledge Acknowledgment','2013-01-30 10:03:52',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(81,NULL,7,'Subject for Membership Signup','2013-11-11 05:49:39',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(82,NULL,8,'Subject for Membership Renewal','2013-02-23 09:55:10',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(83,NULL,9,'Subject for Tell a Friend','2013-09-18 01:38:46',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(84,NULL,9,'Subject for Tell a Friend','2014-01-13 01:36:45',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(85,NULL,9,'Subject for Tell a Friend','2013-07-06 11:42:04',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(86,NULL,7,'Subject for Membership Signup','2013-04-09 11:10:57',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(87,NULL,9,'Subject for Tell a Friend','2013-04-05 09:35:03',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(88,NULL,9,'Subject for Tell a Friend','2013-08-19 05:23:21',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(89,NULL,10,'Subject for Pledge Acknowledgment','2013-10-22 05:04:36',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(90,NULL,10,'Subject for Pledge Acknowledgment','2013-05-11 01:24:10',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(91,NULL,9,'Subject for Tell a Friend','2013-10-21 04:12:39',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(92,NULL,8,'Subject for Membership Renewal','2013-12-18 03:34:17',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(93,NULL,9,'Subject for Tell a Friend','2013-02-13 07:24:30',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(94,NULL,7,'Subject for Membership Signup','2013-11-23 04:03:02',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(95,NULL,7,'Subject for Membership Signup','2013-03-06 11:09:05',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(96,NULL,7,'Subject for Membership Signup','2013-12-06 08:09:09',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(97,NULL,8,'Subject for Membership Renewal','2013-08-10 02:48:46',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(98,NULL,10,'Subject for Pledge Acknowledgment','2013-12-11 06:31:13',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(99,NULL,9,'Subject for Tell a Friend','2014-01-14 01:28:54',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(100,NULL,7,'Subject for Membership Signup','2013-08-05 12:28:41',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(101,NULL,7,'Subject for Membership Signup','2013-12-07 05:58:55',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(102,NULL,9,'Subject for Tell a Friend','2013-12-11 12:55:07',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(103,NULL,7,'Subject for Membership Signup','2013-02-14 01:19:46',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(104,NULL,10,'Subject for Pledge Acknowledgment','2013-08-13 07:21:23',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(105,NULL,10,'Subject for Pledge Acknowledgment','2013-09-23 02:37:29',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(106,NULL,7,'Subject for Membership Signup','2013-10-22 08:08:47',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(107,NULL,10,'Subject for Pledge Acknowledgment','2013-12-27 04:25:20',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(108,NULL,10,'Subject for Pledge Acknowledgment','2013-08-02 12:49:41',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(109,NULL,7,'Subject for Membership Signup','2013-07-25 06:42:42',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(110,NULL,10,'Subject for Pledge Acknowledgment','2013-02-14 08:36:54',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(111,NULL,8,'Subject for Membership Renewal','2013-04-02 02:19:57',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(112,NULL,10,'Subject for Pledge Acknowledgment','2013-12-05 08:46:22',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(113,NULL,7,'Subject for Membership Signup','2013-01-25 02:57:16',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(114,NULL,8,'Subject for Membership Renewal','2013-03-22 12:41:14',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(115,NULL,9,'Subject for Tell a Friend','2013-03-28 06:06:13',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(116,NULL,8,'Subject for Membership Renewal','2013-07-26 08:18:02',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(117,NULL,7,'Subject for Membership Signup','2013-08-22 01:25:11',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(118,NULL,10,'Subject for Pledge Acknowledgment','2013-05-05 03:01:58',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(119,NULL,8,'Subject for Membership Renewal','2013-08-07 12:04:06',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(120,NULL,8,'Subject for Membership Renewal','2013-11-18 01:57:01',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(121,NULL,9,'Subject for Tell a Friend','2013-05-19 02:34:05',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(122,NULL,10,'Subject for Pledge Acknowledgment','2013-07-08 12:08:36',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(123,NULL,7,'Subject for Membership Signup','2013-08-30 07:52:56',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(124,NULL,9,'Subject for Tell a Friend','2013-11-01 03:18:07',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(125,NULL,7,'Subject for Membership Signup','2013-08-02 06:49:23',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(126,NULL,8,'Subject for Membership Renewal','2014-01-06 08:57:56',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(127,NULL,7,'Subject for Membership Signup','2013-05-24 09:37:41',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(128,NULL,10,'Subject for Pledge Acknowledgment','2013-07-04 12:21:54',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(129,NULL,9,'Subject for Tell a Friend','2013-11-12 02:04:55',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(130,NULL,7,'Subject for Membership Signup','2013-07-01 04:41:37',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(131,NULL,8,'Subject for Membership Renewal','2013-04-17 02:52:31',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(132,NULL,9,'Subject for Tell a Friend','2013-02-14 06:13:19',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(133,NULL,8,'Subject for Membership Renewal','2013-12-08 02:31:26',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(134,NULL,7,'Subject for Membership Signup','2013-06-05 03:11:12',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(135,NULL,8,'Subject for Membership Renewal','2013-09-08 05:45:45',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(136,NULL,10,'Subject for Pledge Acknowledgment','2013-10-04 11:50:53',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(137,NULL,9,'Subject for Tell a Friend','2013-02-08 12:13:13',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(138,NULL,9,'Subject for Tell a Friend','2013-12-03 10:47:57',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(139,NULL,7,'Subject for Membership Signup','2013-09-29 10:03:16',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(140,NULL,8,'Subject for Membership Renewal','2013-04-07 09:22:59',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(141,NULL,10,'Subject for Pledge Acknowledgment','2013-12-06 12:39:58',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(142,NULL,8,'Subject for Membership Renewal','2013-03-24 12:15:09',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(143,NULL,8,'Subject for Membership Renewal','2013-01-29 01:14:36',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(144,NULL,7,'Subject for Membership Signup','2013-09-23 01:49:21',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(145,NULL,7,'Subject for Membership Signup','2013-10-21 01:00:23',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(146,NULL,10,'Subject for Pledge Acknowledgment','2013-05-19 02:06:47',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(147,NULL,7,'Subject for Membership Signup','2013-12-06 01:37:06',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(148,NULL,9,'Subject for Tell a Friend','2013-08-17 10:10:38',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(149,NULL,7,'Subject for Membership Signup','2013-04-01 11:23:36',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(150,NULL,9,'Subject for Tell a Friend','2013-03-03 12:20:47',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(151,NULL,9,'Subject for Tell a Friend','2013-11-05 07:34:51',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(152,NULL,7,'Subject for Membership Signup','2013-08-31 08:02:02',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(153,NULL,10,'Subject for Pledge Acknowledgment','2013-04-07 10:42:50',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(154,NULL,9,'Subject for Tell a Friend','2013-10-10 03:28:49',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(155,NULL,8,'Subject for Membership Renewal','2013-03-20 05:57:19',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(156,NULL,7,'Subject for Membership Signup','2013-07-30 08:14:58',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(157,NULL,7,'Subject for Membership Signup','2013-04-01 11:53:58',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(158,NULL,8,'Subject for Membership Renewal','2013-03-09 10:27:23',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(159,NULL,9,'Subject for Tell a Friend','2013-01-24 02:55:51',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(160,NULL,8,'Subject for Membership Renewal','2013-06-18 08:07:45',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(161,NULL,8,'Subject for Membership Renewal','2013-09-11 03:50:04',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(162,NULL,8,'Subject for Membership Renewal','2013-09-11 04:48:25',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(163,NULL,10,'Subject for Pledge Acknowledgment','2013-02-02 12:27:57',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(164,NULL,10,'Subject for Pledge Acknowledgment','2013-04-18 06:17:19',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(165,NULL,7,'Subject for Membership Signup','2013-03-23 05:14:29',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(166,NULL,7,'Subject for Membership Signup','2013-04-12 05:14:51',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(167,NULL,10,'Subject for Pledge Acknowledgment','2013-10-11 11:30:27',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(168,NULL,8,'Subject for Membership Renewal','2013-03-21 11:58:36',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(169,NULL,7,'Subject for Membership Signup','2014-01-07 10:18:56',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(170,NULL,10,'Subject for Pledge Acknowledgment','2013-05-11 02:05:32',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(171,NULL,8,'Subject for Membership Renewal','2013-10-03 01:28:22',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(172,NULL,7,'Subject for Membership Signup','2013-05-07 01:07:22',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(173,NULL,9,'Subject for Tell a Friend','2013-12-05 12:47:37',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(174,NULL,10,'Subject for Pledge Acknowledgment','2013-11-16 03:03:14',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(175,NULL,10,'Subject for Pledge Acknowledgment','2013-09-11 12:16:41',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(176,NULL,10,'Subject for Pledge Acknowledgment','2014-01-20 01:21:20',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(177,NULL,7,'Subject for Membership Signup','2013-11-29 09:46:57',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(178,NULL,10,'Subject for Pledge Acknowledgment','2013-08-10 04:15:49',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(179,NULL,9,'Subject for Tell a Friend','2013-07-31 07:00:12',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(180,NULL,10,'Subject for Pledge Acknowledgment','2013-07-06 04:14:30',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(181,NULL,7,'Subject for Membership Signup','2013-03-27 05:06:47',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(182,NULL,7,'Subject for Membership Signup','2013-05-11 10:11:27',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(183,NULL,8,'Subject for Membership Renewal','2013-03-21 07:29:32',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(184,NULL,7,'Subject for Membership Signup','2013-07-07 03:01:08',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(185,NULL,8,'Subject for Membership Renewal','2013-07-25 12:40:06',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(186,NULL,8,'Subject for Membership Renewal','2013-12-07 05:47:46',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(187,NULL,8,'Subject for Membership Renewal','2013-01-28 02:08:34',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(188,NULL,8,'Subject for Membership Renewal','2013-12-06 08:00:20',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(189,NULL,7,'Subject for Membership Signup','2013-06-23 06:13:38',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(190,NULL,10,'Subject for Pledge Acknowledgment','2013-05-15 04:24:21',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(191,NULL,9,'Subject for Tell a Friend','2013-12-06 03:14:18',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(192,NULL,7,'Subject for Membership Signup','2013-05-26 06:20:39',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(193,NULL,10,'Subject for Pledge Acknowledgment','2013-05-27 07:31:26',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(194,NULL,9,'Subject for Tell a Friend','2013-06-03 10:34:02',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(195,NULL,9,'Subject for Tell a Friend','2013-04-24 12:18:04',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(196,NULL,9,'Subject for Tell a Friend','2013-12-01 02:34:05',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(197,NULL,8,'Subject for Membership Renewal','2013-10-26 12:03:48',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(198,NULL,8,'Subject for Membership Renewal','2013-05-28 04:46:48',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(199,NULL,9,'Subject for Tell a Friend','2013-02-05 04:48:08',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(200,NULL,10,'Subject for Pledge Acknowledgment','2013-11-06 08:22:34',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(201,NULL,8,'Subject for Membership Renewal','2013-12-14 10:27:13',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(202,NULL,10,'Subject for Pledge Acknowledgment','2013-03-02 01:04:14',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(203,NULL,10,'Subject for Pledge Acknowledgment','2013-07-27 05:15:39',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(204,NULL,8,'Subject for Membership Renewal','2013-08-23 12:56:50',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(205,NULL,8,'Subject for Membership Renewal','2013-03-17 02:20:52',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(206,NULL,8,'Subject for Membership Renewal','2013-03-28 06:05:41',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(207,NULL,10,'Subject for Pledge Acknowledgment','2013-04-27 08:48:46',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(208,NULL,9,'Subject for Tell a Friend','2013-04-15 08:21:49',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(209,NULL,7,'Subject for Membership Signup','2013-08-02 11:26:03',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(210,NULL,8,'Subject for Membership Renewal','2013-12-13 06:35:06',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(211,NULL,10,'Subject for Pledge Acknowledgment','2013-07-27 09:33:30',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(212,NULL,7,'Subject for Membership Signup','2013-10-22 01:04:03',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(213,NULL,7,'Subject for Membership Signup','2013-05-11 04:19:23',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(214,NULL,7,'Subject for Membership Signup','2014-01-20 05:18:55',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(215,NULL,8,'Subject for Membership Renewal','2013-09-14 09:49:15',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(216,NULL,9,'Subject for Tell a Friend','2013-05-06 08:35:06',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(217,NULL,10,'Subject for Pledge Acknowledgment','2014-01-18 11:40:18',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(218,NULL,9,'Subject for Tell a Friend','2013-01-28 12:49:16',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(219,NULL,7,'Subject for Membership Signup','2013-06-22 01:58:36',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(220,NULL,9,'Subject for Tell a Friend','2013-11-01 05:24:25',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(221,NULL,9,'Subject for Tell a Friend','2013-04-16 11:39:51',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(222,NULL,10,'Subject for Pledge Acknowledgment','2013-02-02 06:17:07',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(223,NULL,10,'Subject for Pledge Acknowledgment','2013-01-31 03:08:47',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(224,NULL,8,'Subject for Membership Renewal','2013-02-11 03:02:30',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(225,NULL,9,'Subject for Tell a Friend','2013-02-17 01:13:11',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(226,NULL,10,'Subject for Pledge Acknowledgment','2013-07-27 01:44:09',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(227,NULL,10,'Subject for Pledge Acknowledgment','2013-03-10 07:57:29',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(228,NULL,8,'Subject for Membership Renewal','2014-01-05 04:59:38',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(229,NULL,10,'Subject for Pledge Acknowledgment','2013-11-16 12:52:21',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(230,NULL,8,'Subject for Membership Renewal','2013-06-16 04:29:25',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(231,NULL,8,'Subject for Membership Renewal','2013-03-26 10:10:16',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(232,NULL,8,'Subject for Membership Renewal','2013-03-08 06:37:41',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(233,NULL,10,'Subject for Pledge Acknowledgment','2014-01-20 02:14:13',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(234,NULL,10,'Subject for Pledge Acknowledgment','2013-04-12 09:17:18',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(235,NULL,8,'Subject for Membership Renewal','2013-03-06 01:18:19',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(236,NULL,8,'Subject for Membership Renewal','2014-01-10 08:42:52',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(237,NULL,8,'Subject for Membership Renewal','2013-12-05 03:20:00',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(238,NULL,9,'Subject for Tell a Friend','2013-12-07 05:30:38',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(239,NULL,9,'Subject for Tell a Friend','2013-04-05 09:01:33',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(240,NULL,8,'Subject for Membership Renewal','2013-10-22 02:52:14',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(241,NULL,7,'Subject for Membership Signup','2013-07-04 03:25:18',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(242,NULL,8,'Subject for Membership Renewal','2013-12-03 12:23:08',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(243,NULL,10,'Subject for Pledge Acknowledgment','2013-07-29 07:30:44',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(244,NULL,9,'Subject for Tell a Friend','2013-10-19 08:14:14',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(245,NULL,9,'Subject for Tell a Friend','2013-08-26 07:57:25',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(246,NULL,10,'Subject for Pledge Acknowledgment','2013-03-24 01:23:41',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(247,NULL,7,'Subject for Membership Signup','2013-10-26 08:46:35',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(248,NULL,9,'Subject for Tell a Friend','2014-01-10 05:39:24',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(249,NULL,10,'Subject for Pledge Acknowledgment','2013-03-10 08:12:35',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(250,NULL,8,'Subject for Membership Renewal','2013-12-09 05:21:12',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(251,NULL,8,'Subject for Membership Renewal','2013-01-24 11:39:44',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(252,NULL,8,'Subject for Membership Renewal','2013-05-03 09:14:33',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(253,NULL,10,'Subject for Pledge Acknowledgment','2013-05-04 03:09:40',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(254,NULL,9,'Subject for Tell a Friend','2013-12-16 07:27:41',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(255,NULL,9,'Subject for Tell a Friend','2013-09-23 02:15:42',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(256,NULL,10,'Subject for Pledge Acknowledgment','2013-09-30 05:06:15',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(257,NULL,10,'Subject for Pledge Acknowledgment','2013-08-18 03:03:03',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(258,NULL,7,'Subject for Membership Signup','2014-01-10 08:29:45',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(259,NULL,10,'Subject for Pledge Acknowledgment','2013-09-30 01:04:43',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(260,NULL,10,'Subject for Pledge Acknowledgment','2013-07-01 05:59:18',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(261,NULL,8,'Subject for Membership Renewal','2013-09-25 07:05:39',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(262,NULL,9,'Subject for Tell a Friend','2013-03-12 07:19:33',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(263,NULL,10,'Subject for Pledge Acknowledgment','2013-08-04 12:12:13',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(264,NULL,7,'Subject for Membership Signup','2013-02-13 03:32:22',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(265,NULL,9,'Subject for Tell a Friend','2013-11-06 08:11:16',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(266,NULL,7,'Subject for Membership Signup','2013-08-29 05:11:39',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(267,NULL,10,'Subject for Pledge Acknowledgment','2013-01-24 05:03:10',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(268,NULL,9,'Subject for Tell a Friend','2013-06-13 04:59:59',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(269,NULL,8,'Subject for Membership Renewal','2013-05-11 02:06:31',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(270,NULL,9,'Subject for Tell a Friend','2013-02-25 10:27:35',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(271,NULL,8,'Subject for Membership Renewal','2013-12-10 06:52:39',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(272,NULL,8,'Subject for Membership Renewal','2013-06-17 04:11:28',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(273,NULL,7,'Subject for Membership Signup','2013-10-21 11:13:36',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(274,NULL,10,'Subject for Pledge Acknowledgment','2013-03-05 05:13:56',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(275,NULL,9,'Subject for Tell a Friend','2013-09-04 11:11:09',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(276,NULL,9,'Subject for Tell a Friend','2013-04-18 06:55:43',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(277,NULL,8,'Subject for Membership Renewal','2013-10-16 03:11:53',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(278,NULL,10,'Subject for Pledge Acknowledgment','2014-01-12 04:18:15',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(279,NULL,10,'Subject for Pledge Acknowledgment','2013-12-23 09:48:07',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(280,NULL,9,'Subject for Tell a Friend','2013-02-22 03:52:28',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(281,NULL,9,'Subject for Tell a Friend','2013-06-27 08:01:38',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(282,NULL,8,'Subject for Membership Renewal','2013-06-09 03:59:55',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(283,NULL,7,'Subject for Membership Signup','2013-11-10 06:02:40',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(284,NULL,9,'Subject for Tell a Friend','2013-02-23 08:54:19',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(285,NULL,10,'Subject for Pledge Acknowledgment','2013-05-28 01:25:41',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(286,NULL,7,'Subject for Membership Signup','2014-01-22 03:21:27',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(287,NULL,7,'Subject for Membership Signup','2013-03-30 10:13:40',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(288,NULL,9,'Subject for Tell a Friend','2013-05-26 03:18:10',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(289,NULL,10,'Subject for Pledge Acknowledgment','2013-11-16 08:05:46',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(290,NULL,7,'Subject for Membership Signup','2013-09-04 06:39:41',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(291,NULL,8,'Subject for Membership Renewal','2013-11-05 06:09:17',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(292,NULL,7,'Subject for Membership Signup','2013-02-08 05:01:54',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(293,NULL,7,'Subject for Membership Signup','2013-09-06 06:41:44',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(294,NULL,9,'Subject for Tell a Friend','2013-07-27 03:46:47',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(295,NULL,10,'Subject for Pledge Acknowledgment','2013-06-17 07:16:36',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(296,NULL,9,'Subject for Tell a Friend','2013-11-15 05:02:38',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(297,NULL,8,'Subject for Membership Renewal','2013-06-20 09:17:24',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(298,NULL,7,'Subject for Membership Signup','2013-11-02 01:32:35',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(299,NULL,10,'Subject for Pledge Acknowledgment','2013-04-16 11:45:22',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(300,NULL,7,'Subject for Membership Signup','2013-04-28 11:30:25',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(301,NULL,10,'Subject for Pledge Acknowledgment','2013-07-15 06:44:55',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(302,NULL,10,'Subject for Pledge Acknowledgment','2014-01-23 11:25:23',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(303,NULL,9,'Subject for Tell a Friend','2013-10-17 12:58:20',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(304,NULL,7,'Subject for Membership Signup','2013-11-29 03:06:33',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(305,NULL,10,'Subject for Pledge Acknowledgment','2013-09-22 03:37:00',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(306,NULL,9,'Subject for Tell a Friend','2013-02-20 03:08:09',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(307,NULL,7,'Subject for Membership Signup','2013-12-11 08:47:39',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(308,NULL,10,'Subject for Pledge Acknowledgment','2013-03-16 07:42:26',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(309,NULL,8,'Subject for Membership Renewal','2013-03-12 10:03:05',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(310,NULL,9,'Subject for Tell a Friend','2013-01-28 02:17:16',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(311,NULL,10,'Subject for Pledge Acknowledgment','2013-02-27 01:21:49',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(312,NULL,8,'Subject for Membership Renewal','2013-09-24 08:41:13',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(313,NULL,8,'Subject for Membership Renewal','2013-09-05 01:11:56',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(314,NULL,7,'Subject for Membership Signup','2013-02-22 12:04:02',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(315,NULL,9,'Subject for Tell a Friend','2013-12-15 11:51:14',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(316,NULL,7,'Subject for Membership Signup','2013-11-10 11:29:05',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(317,NULL,9,'Subject for Tell a Friend','2013-12-02 08:16:08',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(318,NULL,9,'Subject for Tell a Friend','2013-09-09 10:18:11',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(319,NULL,10,'Subject for Pledge Acknowledgment','2013-02-01 05:38:25',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(320,NULL,10,'Subject for Pledge Acknowledgment','2014-01-07 03:26:57',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(321,NULL,9,'Subject for Tell a Friend','2013-12-17 02:59:18',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(322,NULL,8,'Subject for Membership Renewal','2013-10-12 05:31:22',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(323,NULL,7,'Subject for Membership Signup','2013-05-14 02:33:29',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(324,NULL,8,'Subject for Membership Renewal','2013-10-05 08:49:35',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(325,NULL,9,'Subject for Tell a Friend','2014-01-06 07:23:32',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(326,NULL,7,'Subject for Membership Signup','2013-11-06 08:30:31',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(327,NULL,10,'Subject for Pledge Acknowledgment','2013-12-07 06:31:17',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(328,NULL,8,'Subject for Membership Renewal','2013-12-18 04:18:38',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(329,NULL,7,'Subject for Membership Signup','2013-07-09 08:25:45',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(330,NULL,9,'Subject for Tell a Friend','2013-10-17 08:11:29',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(331,NULL,7,'Subject for Membership Signup','2013-12-26 07:50:51',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(332,NULL,7,'Subject for Membership Signup','2013-12-07 05:50:09',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(333,NULL,9,'Subject for Tell a Friend','2013-10-22 02:20:15',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(334,NULL,10,'Subject for Pledge Acknowledgment','2013-07-27 01:57:01',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(335,NULL,7,'Subject for Membership Signup','2013-03-08 05:38:56',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(336,NULL,9,'Subject for Tell a Friend','2013-12-10 09:50:52',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(337,NULL,8,'Subject for Membership Renewal','2013-04-28 09:42:46',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(338,NULL,8,'Subject for Membership Renewal','2013-03-07 10:24:50',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(339,NULL,7,'Subject for Membership Signup','2013-09-24 03:46:51',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(340,NULL,7,'Subject for Membership Signup','2013-09-18 05:17:19',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(341,NULL,7,'Subject for Membership Signup','2014-01-15 01:16:24',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(342,NULL,9,'Subject for Tell a Friend','2013-07-13 02:12:49',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(343,NULL,9,'Subject for Tell a Friend','2013-04-09 08:34:39',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(344,NULL,8,'Subject for Membership Renewal','2013-04-27 10:26:45',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(345,NULL,10,'Subject for Pledge Acknowledgment','2013-09-30 11:54:06',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(346,NULL,7,'Subject for Membership Signup','2013-03-07 03:52:59',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(347,NULL,7,'Subject for Membership Signup','2013-03-31 10:28:43',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(348,NULL,7,'Subject for Membership Signup','2013-08-16 06:48:33',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(349,NULL,10,'Subject for Pledge Acknowledgment','2013-03-11 04:51:43',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(350,NULL,9,'Subject for Tell a Friend','2014-01-07 01:20:53',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(351,NULL,10,'Subject for Pledge Acknowledgment','2013-04-04 04:26:47',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(352,NULL,10,'Subject for Pledge Acknowledgment','2013-09-21 12:15:03',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(353,NULL,8,'Subject for Membership Renewal','2013-04-03 04:16:50',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(354,NULL,7,'Subject for Membership Signup','2013-12-24 07:16:52',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(355,NULL,10,'Subject for Pledge Acknowledgment','2013-12-07 08:40:57',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(356,NULL,9,'Subject for Tell a Friend','2013-07-22 10:53:43',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(357,NULL,10,'Subject for Pledge Acknowledgment','2013-06-29 01:22:34',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(358,NULL,9,'Subject for Tell a Friend','2013-11-08 11:58:18',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(359,NULL,7,'Subject for Membership Signup','2013-10-01 09:25:34',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(360,NULL,8,'Subject for Membership Renewal','2013-03-21 11:57:11',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(361,NULL,7,'Subject for Membership Signup','2013-08-28 02:50:01',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(362,NULL,8,'Subject for Membership Renewal','2013-07-16 05:35:07',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(363,NULL,9,'Subject for Tell a Friend','2013-07-05 12:37:34',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(364,NULL,7,'Subject for Membership Signup','2013-01-29 04:55:19',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(365,NULL,9,'Subject for Tell a Friend','2013-12-19 07:56:46',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(366,NULL,9,'Subject for Tell a Friend','2013-08-30 04:02:22',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(367,NULL,10,'Subject for Pledge Acknowledgment','2013-11-15 10:49:05',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(368,NULL,10,'Subject for Pledge Acknowledgment','2013-11-23 01:50:16',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(369,NULL,10,'Subject for Pledge Acknowledgment','2013-04-17 09:33:44',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(370,NULL,10,'Subject for Pledge Acknowledgment','2013-05-06 10:35:26',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(371,NULL,8,'Subject for Membership Renewal','2014-01-16 05:30:02',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(372,NULL,7,'Subject for Membership Signup','2013-12-10 09:47:54',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(373,NULL,10,'Subject for Pledge Acknowledgment','2013-11-01 07:34:29',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(374,NULL,7,'Subject for Membership Signup','2013-08-04 06:52:26',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(375,NULL,10,'Subject for Pledge Acknowledgment','2013-03-20 02:22:15',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(376,NULL,8,'Subject for Membership Renewal','2013-03-05 04:17:02',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(377,NULL,8,'Subject for Membership Renewal','2013-12-08 10:16:46',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(378,NULL,10,'Subject for Pledge Acknowledgment','2014-01-19 12:56:36',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(379,NULL,7,'Subject for Membership Signup','2013-12-21 01:55:42',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(380,NULL,8,'Subject for Membership Renewal','2014-01-20 01:28:39',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(381,NULL,10,'Subject for Pledge Acknowledgment','2013-03-07 12:32:23',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(382,NULL,7,'Subject for Membership Signup','2013-06-25 09:52:11',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(383,NULL,8,'Subject for Membership Renewal','2013-10-16 02:45:47',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(384,NULL,10,'Subject for Pledge Acknowledgment','2013-11-29 05:11:31',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(385,NULL,9,'Subject for Tell a Friend','2013-04-11 02:03:47',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(386,NULL,9,'Subject for Tell a Friend','2013-08-11 04:01:48',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(387,NULL,8,'Subject for Membership Renewal','2013-12-03 06:36:51',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(388,NULL,8,'Subject for Membership Renewal','2013-03-14 10:52:24',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(389,NULL,9,'Subject for Tell a Friend','2013-12-24 05:00:51',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(390,NULL,7,'Subject for Membership Signup','2013-02-01 06:24:23',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(391,NULL,9,'Subject for Tell a Friend','2013-12-10 04:20:40',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(392,NULL,10,'Subject for Pledge Acknowledgment','2013-04-10 05:14:43',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(393,NULL,8,'Subject for Membership Renewal','2014-01-08 01:15:23',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(394,NULL,8,'Subject for Membership Renewal','2013-11-07 04:50:30',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(395,NULL,9,'Subject for Tell a Friend','2013-05-18 02:42:28',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(396,NULL,10,'Subject for Pledge Acknowledgment','2013-05-06 06:03:51',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(397,NULL,10,'Subject for Pledge Acknowledgment','2013-10-03 10:17:47',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(398,NULL,10,'Subject for Pledge Acknowledgment','2013-02-15 06:51:22',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(399,NULL,9,'Subject for Tell a Friend','2013-12-21 08:01:26',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(400,NULL,9,'Subject for Tell a Friend','2013-02-18 03:09:25',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(401,NULL,9,'Subject for Tell a Friend','2013-01-24 07:45:11',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(402,NULL,9,'Subject for Tell a Friend','2013-05-06 07:53:26',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(403,NULL,7,'Subject for Membership Signup','2014-01-07 10:59:14',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(404,NULL,7,'Subject for Membership Signup','2013-04-01 10:06:33',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(405,NULL,8,'Subject for Membership Renewal','2013-08-23 07:13:34',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(406,NULL,7,'Subject for Membership Signup','2013-03-18 12:31:37',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(407,NULL,7,'Subject for Membership Signup','2013-07-24 12:49:42',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(408,NULL,9,'Subject for Tell a Friend','2013-09-09 06:32:30',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(409,NULL,8,'Subject for Membership Renewal','2013-08-14 06:49:47',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(410,NULL,8,'Subject for Membership Renewal','2013-09-05 06:13:42',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(411,NULL,10,'Subject for Pledge Acknowledgment','2013-06-01 09:26:27',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(412,NULL,9,'Subject for Tell a Friend','2013-12-22 06:20:25',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(413,NULL,10,'Subject for Pledge Acknowledgment','2013-08-13 06:15:23',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(414,NULL,9,'Subject for Tell a Friend','2013-06-06 03:42:11',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(415,NULL,7,'Subject for Membership Signup','2013-08-20 07:18:00',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(416,NULL,8,'Subject for Membership Renewal','2013-12-10 12:24:25',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(417,NULL,10,'Subject for Pledge Acknowledgment','2013-06-13 06:52:10',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(418,NULL,9,'Subject for Tell a Friend','2013-06-09 03:41:05',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(419,NULL,8,'Subject for Membership Renewal','2013-09-15 04:19:28',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(420,NULL,9,'Subject for Tell a Friend','2013-10-02 11:28:50',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(421,NULL,8,'Subject for Membership Renewal','2013-09-18 04:52:29',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(422,NULL,7,'Subject for Membership Signup','2013-08-05 01:59:58',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(423,NULL,10,'Subject for Pledge Acknowledgment','2013-12-21 01:14:23',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(424,NULL,10,'Subject for Pledge Acknowledgment','2013-10-04 11:15:46',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(425,NULL,8,'Subject for Membership Renewal','2013-08-23 12:41:37',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(426,NULL,8,'Subject for Membership Renewal','2013-09-27 04:06:48',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(427,NULL,9,'Subject for Tell a Friend','2013-02-21 03:05:28',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(428,NULL,8,'Subject for Membership Renewal','2013-11-16 06:31:33',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(429,NULL,10,'Subject for Pledge Acknowledgment','2013-11-28 05:24:44',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(430,NULL,10,'Subject for Pledge Acknowledgment','2013-12-25 07:46:09',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(431,NULL,8,'Subject for Membership Renewal','2013-06-02 03:28:30',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(432,NULL,10,'Subject for Pledge Acknowledgment','2013-12-03 03:49:10',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(433,NULL,9,'Subject for Tell a Friend','2013-10-31 03:11:23',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(434,NULL,7,'Subject for Membership Signup','2013-04-10 03:32:03',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(435,NULL,9,'Subject for Tell a Friend','2013-07-18 05:58:59',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(436,NULL,8,'Subject for Membership Renewal','2013-01-27 07:05:48',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(437,NULL,9,'Subject for Tell a Friend','2013-05-12 09:19:04',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(438,NULL,10,'Subject for Pledge Acknowledgment','2013-08-05 11:47:02',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(439,NULL,9,'Subject for Tell a Friend','2013-06-17 02:18:41',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(440,NULL,8,'Subject for Membership Renewal','2013-02-08 02:30:39',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(441,NULL,9,'Subject for Tell a Friend','2013-12-19 02:37:39',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(442,NULL,9,'Subject for Tell a Friend','2013-05-03 12:08:53',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(443,NULL,9,'Subject for Tell a Friend','2013-10-10 12:23:15',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(444,NULL,9,'Subject for Tell a Friend','2013-01-31 09:33:52',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(445,NULL,7,'Subject for Membership Signup','2013-02-16 09:44:43',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(446,NULL,7,'Subject for Membership Signup','2013-09-04 04:11:42',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(447,NULL,9,'Subject for Tell a Friend','2013-06-12 02:09:01',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(448,NULL,8,'Subject for Membership Renewal','2013-03-17 02:56:21',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(449,NULL,9,'Subject for Tell a Friend','2013-03-23 12:41:22',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(450,NULL,7,'Subject for Membership Signup','2013-05-24 06:42:51',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(464,1,7,'General','2014-01-23 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(465,2,7,'Student','2014-01-22 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(466,3,7,'General','2014-01-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(467,4,7,'Student','2014-01-20 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(468,5,7,'Student','2013-01-19 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(469,6,7,'Student','2014-01-18 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(470,7,7,'General','2014-01-17 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(471,8,7,'Student','2014-01-16 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(472,9,7,'General','2014-01-15 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(473,10,7,'General','2011-11-12 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(474,11,7,'Lifetime','2014-01-13 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(475,12,7,'Student','2014-01-12 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(476,13,7,'General','2014-01-11 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(477,14,7,'Student','2014-01-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(478,15,7,'General','2011-10-03 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(479,16,7,'Student','2014-01-08 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(480,17,7,'General','2014-01-07 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(481,18,7,'Student','2014-01-06 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(482,19,7,'General','2014-01-05 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(483,20,7,'General','2011-08-24 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(484,21,7,'General','2014-01-03 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(485,22,7,'Lifetime','2014-01-02 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(486,23,7,'General','2014-01-01 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(487,24,7,'Student','2013-12-31 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(488,25,7,'General','2011-07-15 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(489,26,7,'Student','2013-12-29 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(490,27,7,'General','2013-12-28 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(491,28,7,'Student','2013-12-27 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(492,29,7,'General','2013-12-26 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(493,30,7,'General','2011-06-05 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(494,14,6,'$ 100.00 - General Membership: Offline signup','2014-01-23 23:37:54',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(495,15,6,'$ 50.00 - Student Membership: Offline signup','2014-01-23 23:37:54',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(496,16,6,'$ 100.00 - General Membership: Offline signup','2014-01-23 23:37:54',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(497,17,6,'$ 50.00 - Student Membership: Offline signup','2014-01-23 23:37:54',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(498,18,6,'$ 50.00 - Student Membership: Offline signup','2014-01-23 23:37:54',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(499,19,6,'$ 50.00 - Student Membership: Offline signup','2014-01-23 23:37:54',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(500,20,6,'$ 100.00 - General Membership: Offline signup','2014-01-23 23:37:54',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(501,21,6,'$ 50.00 - Student Membership: Offline signup','2014-01-23 23:37:54',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(502,22,6,'$ 100.00 - General Membership: Offline signup','2014-01-23 23:37:54',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(503,23,6,'$ 100.00 - General Membership: Offline signup','2014-01-23 23:37:54',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(504,24,6,'$ 1200.00 - Lifetime Membership: Offline signup','2014-01-23 23:37:54',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(505,25,6,'$ 50.00 - Student Membership: Offline signup','2014-01-23 23:37:54',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(506,26,6,'$ 100.00 - General Membership: Offline signup','2014-01-23 23:37:54',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(507,27,6,'$ 50.00 - Student Membership: Offline signup','2014-01-23 23:37:54',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(508,28,6,'$ 100.00 - General Membership: Offline signup','2014-01-23 23:37:54',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(509,29,6,'$ 50.00 - Student Membership: Offline signup','2014-01-23 23:37:54',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(510,30,6,'$ 100.00 - General Membership: Offline signup','2014-01-23 23:37:54',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(511,31,6,'$ 50.00 - Student Membership: Offline signup','2014-01-23 23:37:54',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(512,32,6,'$ 100.00 - General Membership: Offline signup','2014-01-23 23:37:54',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(513,33,6,'$ 100.00 - General Membership: Offline signup','2014-01-23 23:37:54',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(514,34,6,'$ 100.00 - General Membership: Offline signup','2014-01-23 23:37:54',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(515,35,6,'$ 1200.00 - Lifetime Membership: Offline signup','2014-01-23 23:37:54',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(516,36,6,'$ 100.00 - General Membership: Offline signup','2014-01-23 23:37:54',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(517,37,6,'$ 50.00 - Student Membership: Offline signup','2014-01-23 23:37:54',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(518,38,6,'$ 100.00 - General Membership: Offline signup','2014-01-23 23:37:54',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(519,39,6,'$ 50.00 - Student Membership: Offline signup','2014-01-23 23:37:54',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(520,40,6,'$ 100.00 - General Membership: Offline signup','2014-01-23 23:37:54',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(521,41,6,'$ 50.00 - Student Membership: Offline signup','2014-01-23 23:37:54',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(522,42,6,'$ 100.00 - General Membership: Offline signup','2014-01-23 23:37:54',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(523,43,6,'$ 100.00 - General Membership: Offline signup','2014-01-23 23:37:54',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(575,45,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2014-01-23 23:38:07',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(576,46,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2014-01-23 23:38:07',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(577,47,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2014-01-23 23:38:07',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(578,48,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2014-01-23 23:38:07',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(579,49,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2014-01-23 23:38:07',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(580,50,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2014-01-23 23:38:07',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(581,51,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2014-01-23 23:38:07',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(582,52,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2014-01-23 23:38:07',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(583,53,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2014-01-23 23:38:07',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(584,54,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2014-01-23 23:38:07',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(585,55,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2014-01-23 23:38:07',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(586,56,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2014-01-23 23:38:07',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(587,57,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2014-01-23 23:38:07',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(588,58,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2014-01-23 23:38:07',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(589,59,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2014-01-23 23:38:07',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(590,60,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2014-01-23 23:38:07',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(591,61,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2014-01-23 23:38:07',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(592,62,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2014-01-23 23:38:07',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(593,63,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2014-01-23 23:38:07',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(594,64,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2014-01-23 23:38:07',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(595,65,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2014-01-23 23:38:07',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(596,66,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2014-01-23 23:38:07',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(597,67,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2014-01-23 23:38:07',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(598,68,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2014-01-23 23:38:07',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(599,69,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2014-01-23 23:38:07',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(600,70,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2014-01-23 23:38:07',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(601,71,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2014-01-23 23:38:07',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(602,72,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2014-01-23 23:38:07',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(603,73,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2014-01-23 23:38:07',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(604,74,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2014-01-23 23:38:07',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(605,75,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2014-01-23 23:38:07',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(606,76,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2014-01-23 23:38:07',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(607,77,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2014-01-23 23:38:07',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(608,78,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2014-01-23 23:38:07',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(609,79,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2014-01-23 23:38:07',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(610,80,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2014-01-23 23:38:07',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(611,81,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2014-01-23 23:38:07',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(612,82,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2014-01-23 23:38:07',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(613,83,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2014-01-23 23:38:07',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(614,84,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2014-01-23 23:38:07',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(615,85,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2014-01-23 23:38:07',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(616,86,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2014-01-23 23:38:07',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(617,87,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2014-01-23 23:38:07',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(618,88,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2014-01-23 23:38:07',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(619,89,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2014-01-23 23:38:07',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(620,90,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2014-01-23 23:38:07',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(621,91,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2014-01-23 23:38:07',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(622,92,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2014-01-23 23:38:07',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(623,93,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2014-01-23 23:38:07',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(624,94,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2014-01-23 23:38:07',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL); +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`) VALUES (1,NULL,10,'Subject for Pledge Acknowledgment','2014-01-15 06:13:18',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(2,NULL,9,'Subject for Tell a Friend','2013-12-08 09:45:21',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(3,NULL,10,'Subject for Pledge Acknowledgment','2013-09-08 11:41:01',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(4,NULL,9,'Subject for Tell a Friend','2013-06-04 09:48:34',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(5,NULL,8,'Subject for Membership Renewal','2013-11-20 10:02:13',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(6,NULL,8,'Subject for Membership Renewal','2013-06-11 04:42:02',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(7,NULL,9,'Subject for Tell a Friend','2013-05-01 12:54:43',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(8,NULL,10,'Subject for Pledge Acknowledgment','2013-12-28 01:37:06',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(9,NULL,7,'Subject for Membership Signup','2013-02-09 04:30:19',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(10,NULL,9,'Subject for Tell a Friend','2013-06-29 04:08:58',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(11,NULL,7,'Subject for Membership Signup','2013-06-11 09:55:43',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(12,NULL,10,'Subject for Pledge Acknowledgment','2013-10-04 10:04:42',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(13,NULL,7,'Subject for Membership Signup','2014-01-03 12:57:15',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(14,NULL,9,'Subject for Tell a Friend','2013-07-05 06:36:05',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(15,NULL,7,'Subject for Membership Signup','2013-02-28 02:20:16',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(16,NULL,7,'Subject for Membership Signup','2013-03-18 10:09:20',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(17,NULL,9,'Subject for Tell a Friend','2013-10-07 08:52:24',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(18,NULL,9,'Subject for Tell a Friend','2013-03-31 06:58:44',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(19,NULL,9,'Subject for Tell a Friend','2013-07-27 01:34:09',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(20,NULL,7,'Subject for Membership Signup','2013-09-23 09:30:23',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(21,NULL,7,'Subject for Membership Signup','2013-11-22 12:03:53',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(22,NULL,9,'Subject for Tell a Friend','2013-07-09 04:39:42',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(23,NULL,8,'Subject for Membership Renewal','2013-12-21 07:38:19',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(24,NULL,8,'Subject for Membership Renewal','2013-03-21 05:11:06',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(25,NULL,7,'Subject for Membership Signup','2013-09-28 06:44:07',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(26,NULL,7,'Subject for Membership Signup','2014-01-07 05:37:52',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(27,NULL,9,'Subject for Tell a Friend','2013-04-20 10:16:36',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(28,NULL,9,'Subject for Tell a Friend','2014-01-19 12:25:18',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(29,NULL,10,'Subject for Pledge Acknowledgment','2013-04-09 08:40:11',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(30,NULL,9,'Subject for Tell a Friend','2014-01-09 06:33:04',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(31,NULL,9,'Subject for Tell a Friend','2014-01-22 05:42:41',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(32,NULL,9,'Subject for Tell a Friend','2013-04-30 04:27:43',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(33,NULL,8,'Subject for Membership Renewal','2013-10-02 08:34:41',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(34,NULL,9,'Subject for Tell a Friend','2013-06-11 07:25:10',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(35,NULL,10,'Subject for Pledge Acknowledgment','2013-05-07 08:06:21',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(36,NULL,10,'Subject for Pledge Acknowledgment','2013-06-01 02:15:13',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(37,NULL,7,'Subject for Membership Signup','2013-03-24 10:43:22',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(38,NULL,10,'Subject for Pledge Acknowledgment','2013-12-29 06:03:04',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(39,NULL,9,'Subject for Tell a Friend','2013-08-22 09:12:30',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(40,NULL,7,'Subject for Membership Signup','2013-06-22 12:56:09',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(41,NULL,10,'Subject for Pledge Acknowledgment','2013-12-02 10:54:14',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(42,NULL,8,'Subject for Membership Renewal','2013-08-15 04:14:42',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(43,NULL,9,'Subject for Tell a Friend','2013-09-05 11:46:50',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(44,NULL,10,'Subject for Pledge Acknowledgment','2014-01-10 06:41:26',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(45,NULL,9,'Subject for Tell a Friend','2013-03-11 09:48:35',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(46,NULL,7,'Subject for Membership Signup','2013-06-23 06:05:31',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(47,NULL,10,'Subject for Pledge Acknowledgment','2013-05-30 01:45:10',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(48,NULL,7,'Subject for Membership Signup','2013-08-18 10:20:24',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(49,NULL,8,'Subject for Membership Renewal','2013-11-22 07:02:46',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(50,NULL,7,'Subject for Membership Signup','2013-03-25 09:12:45',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(51,NULL,9,'Subject for Tell a Friend','2013-10-06 06:05:36',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(52,NULL,8,'Subject for Membership Renewal','2014-01-06 06:35:23',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(53,NULL,8,'Subject for Membership Renewal','2013-10-21 12:41:06',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(54,NULL,9,'Subject for Tell a Friend','2013-08-18 05:37:31',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(55,NULL,9,'Subject for Tell a Friend','2013-12-26 10:48:31',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(56,NULL,8,'Subject for Membership Renewal','2013-11-30 11:42:48',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(57,NULL,10,'Subject for Pledge Acknowledgment','2013-08-29 04:20:40',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(58,NULL,8,'Subject for Membership Renewal','2013-10-22 03:24:41',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(59,NULL,10,'Subject for Pledge Acknowledgment','2013-02-06 12:34:09',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(60,NULL,8,'Subject for Membership Renewal','2013-08-23 10:07:42',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(61,NULL,9,'Subject for Tell a Friend','2013-10-11 10:19:51',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(62,NULL,8,'Subject for Membership Renewal','2013-08-28 12:31:31',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(63,NULL,10,'Subject for Pledge Acknowledgment','2013-12-01 01:04:29',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(64,NULL,10,'Subject for Pledge Acknowledgment','2014-01-05 11:00:58',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(65,NULL,10,'Subject for Pledge Acknowledgment','2013-02-02 08:34:20',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(66,NULL,7,'Subject for Membership Signup','2013-07-24 08:03:49',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(67,NULL,8,'Subject for Membership Renewal','2013-12-13 06:34:59',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(68,NULL,10,'Subject for Pledge Acknowledgment','2013-05-08 09:18:04',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(69,NULL,10,'Subject for Pledge Acknowledgment','2013-12-03 03:45:29',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(70,NULL,9,'Subject for Tell a Friend','2013-05-13 05:30:25',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(71,NULL,7,'Subject for Membership Signup','2014-01-23 03:16:59',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(72,NULL,8,'Subject for Membership Renewal','2013-07-22 09:52:06',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(73,NULL,7,'Subject for Membership Signup','2013-01-30 03:19:27',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(74,NULL,7,'Subject for Membership Signup','2013-10-20 11:37:51',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(75,NULL,8,'Subject for Membership Renewal','2013-03-31 03:57:59',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(76,NULL,10,'Subject for Pledge Acknowledgment','2013-07-17 05:03:02',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(77,NULL,7,'Subject for Membership Signup','2013-07-06 05:00:20',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(78,NULL,9,'Subject for Tell a Friend','2013-09-06 12:58:51',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(79,NULL,9,'Subject for Tell a Friend','2013-07-29 07:50:34',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(80,NULL,7,'Subject for Membership Signup','2013-07-17 01:14:30',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(81,NULL,8,'Subject for Membership Renewal','2013-09-27 11:31:20',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(82,NULL,9,'Subject for Tell a Friend','2013-11-01 06:44:49',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(83,NULL,10,'Subject for Pledge Acknowledgment','2013-09-11 09:41:15',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(84,NULL,8,'Subject for Membership Renewal','2013-03-31 04:00:51',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(85,NULL,7,'Subject for Membership Signup','2013-02-15 08:39:28',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(86,NULL,10,'Subject for Pledge Acknowledgment','2013-02-25 04:13:15',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(87,NULL,7,'Subject for Membership Signup','2013-10-22 05:15:20',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(88,NULL,7,'Subject for Membership Signup','2013-03-03 07:03:54',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(89,NULL,7,'Subject for Membership Signup','2013-04-30 01:10:25',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(90,NULL,8,'Subject for Membership Renewal','2013-07-14 03:52:21',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(91,NULL,7,'Subject for Membership Signup','2013-02-20 09:18:25',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(92,NULL,8,'Subject for Membership Renewal','2013-02-12 08:54:15',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(93,NULL,9,'Subject for Tell a Friend','2013-07-11 09:36:52',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(94,NULL,10,'Subject for Pledge Acknowledgment','2013-06-19 01:59:22',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(95,NULL,9,'Subject for Tell a Friend','2013-11-29 11:46:39',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(96,NULL,9,'Subject for Tell a Friend','2013-04-26 03:45:27',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(97,NULL,7,'Subject for Membership Signup','2013-10-28 12:41:41',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(98,NULL,7,'Subject for Membership Signup','2013-04-03 06:10:45',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(99,NULL,7,'Subject for Membership Signup','2013-10-06 02:59:44',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(100,NULL,7,'Subject for Membership Signup','2013-06-05 06:14:17',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(101,NULL,7,'Subject for Membership Signup','2013-11-06 08:20:33',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(102,NULL,8,'Subject for Membership Renewal','2013-07-29 02:10:33',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(103,NULL,7,'Subject for Membership Signup','2013-12-10 07:10:57',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(104,NULL,10,'Subject for Pledge Acknowledgment','2014-01-14 07:22:47',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(105,NULL,8,'Subject for Membership Renewal','2013-11-21 12:51:58',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(106,NULL,7,'Subject for Membership Signup','2013-12-15 10:40:51',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(107,NULL,8,'Subject for Membership Renewal','2013-10-13 08:53:08',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(108,NULL,9,'Subject for Tell a Friend','2013-12-25 02:15:08',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(109,NULL,7,'Subject for Membership Signup','2013-08-31 08:49:07',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(110,NULL,9,'Subject for Tell a Friend','2013-10-06 04:38:20',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(111,NULL,10,'Subject for Pledge Acknowledgment','2013-12-17 12:35:32',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(112,NULL,8,'Subject for Membership Renewal','2013-12-04 08:42:17',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(113,NULL,7,'Subject for Membership Signup','2013-04-04 05:10:26',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(114,NULL,9,'Subject for Tell a Friend','2013-12-24 07:01:03',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(115,NULL,10,'Subject for Pledge Acknowledgment','2013-09-11 07:23:33',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(116,NULL,7,'Subject for Membership Signup','2013-04-29 01:10:51',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(117,NULL,9,'Subject for Tell a Friend','2013-09-04 02:43:10',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(118,NULL,10,'Subject for Pledge Acknowledgment','2013-09-28 11:34:08',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(119,NULL,7,'Subject for Membership Signup','2014-01-03 01:10:58',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(120,NULL,10,'Subject for Pledge Acknowledgment','2013-11-30 06:27:43',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(121,NULL,7,'Subject for Membership Signup','2013-02-24 11:07:21',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(122,NULL,10,'Subject for Pledge Acknowledgment','2013-05-18 04:26:03',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(123,NULL,9,'Subject for Tell a Friend','2013-10-25 05:11:35',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(124,NULL,10,'Subject for Pledge Acknowledgment','2013-06-03 06:52:22',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(125,NULL,8,'Subject for Membership Renewal','2013-06-11 05:23:51',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(126,NULL,8,'Subject for Membership Renewal','2013-05-05 10:42:53',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(127,NULL,7,'Subject for Membership Signup','2013-07-18 10:47:17',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(128,NULL,10,'Subject for Pledge Acknowledgment','2013-02-03 07:05:44',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(129,NULL,10,'Subject for Pledge Acknowledgment','2013-04-21 08:48:26',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(130,NULL,8,'Subject for Membership Renewal','2013-12-22 11:09:47',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(131,NULL,8,'Subject for Membership Renewal','2013-02-20 10:30:45',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(132,NULL,10,'Subject for Pledge Acknowledgment','2013-12-09 07:07:22',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(133,NULL,8,'Subject for Membership Renewal','2013-02-20 10:47:20',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(134,NULL,10,'Subject for Pledge Acknowledgment','2013-04-15 10:35:45',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(135,NULL,10,'Subject for Pledge Acknowledgment','2013-05-28 07:27:36',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(136,NULL,7,'Subject for Membership Signup','2013-11-07 01:02:51',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(137,NULL,10,'Subject for Pledge Acknowledgment','2013-12-23 08:39:29',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(138,NULL,9,'Subject for Tell a Friend','2013-10-08 08:39:21',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(139,NULL,8,'Subject for Membership Renewal','2013-01-30 09:44:46',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(140,NULL,8,'Subject for Membership Renewal','2013-05-22 06:20:51',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(141,NULL,8,'Subject for Membership Renewal','2013-06-16 01:20:55',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(142,NULL,10,'Subject for Pledge Acknowledgment','2013-08-23 08:00:21',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(143,NULL,10,'Subject for Pledge Acknowledgment','2013-02-24 08:15:18',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(144,NULL,9,'Subject for Tell a Friend','2013-02-23 02:17:44',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(145,NULL,10,'Subject for Pledge Acknowledgment','2013-04-21 08:58:12',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(146,NULL,10,'Subject for Pledge Acknowledgment','2013-10-22 05:27:27',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(147,NULL,8,'Subject for Membership Renewal','2013-06-28 08:22:04',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(148,NULL,10,'Subject for Pledge Acknowledgment','2013-08-02 07:26:55',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(149,NULL,9,'Subject for Tell a Friend','2013-06-15 10:47:13',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(150,NULL,7,'Subject for Membership Signup','2013-03-03 12:09:48',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(151,NULL,7,'Subject for Membership Signup','2013-04-29 09:54:34',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(152,NULL,8,'Subject for Membership Renewal','2014-01-21 10:59:09',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(153,NULL,8,'Subject for Membership Renewal','2013-02-04 07:07:25',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(154,NULL,9,'Subject for Tell a Friend','2013-03-28 05:37:26',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(155,NULL,7,'Subject for Membership Signup','2013-02-21 07:20:56',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(156,NULL,7,'Subject for Membership Signup','2013-09-26 08:14:35',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(157,NULL,9,'Subject for Tell a Friend','2013-03-02 09:00:04',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(158,NULL,10,'Subject for Pledge Acknowledgment','2013-12-15 09:30:11',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(159,NULL,10,'Subject for Pledge Acknowledgment','2013-07-21 12:02:06',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(160,NULL,10,'Subject for Pledge Acknowledgment','2014-01-02 05:05:47',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(161,NULL,8,'Subject for Membership Renewal','2013-11-17 11:40:47',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(162,NULL,9,'Subject for Tell a Friend','2014-01-18 05:30:53',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(163,NULL,10,'Subject for Pledge Acknowledgment','2013-02-18 07:29:35',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(164,NULL,8,'Subject for Membership Renewal','2013-02-01 02:01:58',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(165,NULL,10,'Subject for Pledge Acknowledgment','2013-05-21 08:40:21',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(166,NULL,10,'Subject for Pledge Acknowledgment','2013-05-21 12:33:59',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(167,NULL,8,'Subject for Membership Renewal','2013-03-08 03:14:54',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(168,NULL,9,'Subject for Tell a Friend','2013-09-18 09:08:13',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(169,NULL,9,'Subject for Tell a Friend','2013-03-25 11:25:32',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(170,NULL,10,'Subject for Pledge Acknowledgment','2013-08-31 06:56:33',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(171,NULL,10,'Subject for Pledge Acknowledgment','2013-07-09 08:23:13',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(172,NULL,10,'Subject for Pledge Acknowledgment','2013-06-10 11:46:32',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(173,NULL,10,'Subject for Pledge Acknowledgment','2013-12-05 10:53:16',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(174,NULL,9,'Subject for Tell a Friend','2013-04-17 08:41:30',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(175,NULL,9,'Subject for Tell a Friend','2013-08-04 02:10:58',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(176,NULL,8,'Subject for Membership Renewal','2014-01-15 02:38:26',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(177,NULL,9,'Subject for Tell a Friend','2013-02-08 11:45:55',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(178,NULL,7,'Subject for Membership Signup','2013-05-27 01:09:43',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(179,NULL,10,'Subject for Pledge Acknowledgment','2013-08-31 05:42:09',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(180,NULL,9,'Subject for Tell a Friend','2013-12-07 11:42:49',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(181,NULL,9,'Subject for Tell a Friend','2013-04-08 05:35:00',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(182,NULL,9,'Subject for Tell a Friend','2013-09-07 08:54:20',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(183,NULL,10,'Subject for Pledge Acknowledgment','2014-01-10 02:51:40',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(184,NULL,7,'Subject for Membership Signup','2013-03-27 08:20:50',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(185,NULL,10,'Subject for Pledge Acknowledgment','2013-04-03 09:54:04',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(186,NULL,10,'Subject for Pledge Acknowledgment','2013-12-31 08:33:11',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(187,NULL,10,'Subject for Pledge Acknowledgment','2013-11-12 04:42:02',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(188,NULL,7,'Subject for Membership Signup','2013-05-26 08:25:54',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(189,NULL,10,'Subject for Pledge Acknowledgment','2013-11-02 02:59:45',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(190,NULL,10,'Subject for Pledge Acknowledgment','2013-05-28 03:47:34',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(191,NULL,9,'Subject for Tell a Friend','2013-10-18 03:31:23',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(192,NULL,8,'Subject for Membership Renewal','2013-05-05 10:27:07',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(193,NULL,8,'Subject for Membership Renewal','2013-05-19 04:16:57',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(194,NULL,7,'Subject for Membership Signup','2013-06-07 09:03:49',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(195,NULL,8,'Subject for Membership Renewal','2013-07-03 12:57:26',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(196,NULL,9,'Subject for Tell a Friend','2013-09-02 08:16:28',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(197,NULL,8,'Subject for Membership Renewal','2013-07-06 09:52:01',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(198,NULL,8,'Subject for Membership Renewal','2013-03-15 04:06:56',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(199,NULL,9,'Subject for Tell a Friend','2013-08-24 04:05:19',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(200,NULL,8,'Subject for Membership Renewal','2013-12-26 05:47:49',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(201,NULL,10,'Subject for Pledge Acknowledgment','2013-05-15 02:47:11',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(202,NULL,9,'Subject for Tell a Friend','2013-03-18 01:16:08',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(203,NULL,8,'Subject for Membership Renewal','2013-10-31 02:42:10',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(204,NULL,8,'Subject for Membership Renewal','2013-07-13 12:14:30',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(205,NULL,7,'Subject for Membership Signup','2013-06-17 03:35:52',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(206,NULL,10,'Subject for Pledge Acknowledgment','2014-01-16 02:13:34',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(207,NULL,10,'Subject for Pledge Acknowledgment','2013-09-04 06:17:05',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(208,NULL,8,'Subject for Membership Renewal','2013-07-03 03:26:26',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(209,NULL,9,'Subject for Tell a Friend','2013-09-27 05:18:34',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(210,NULL,9,'Subject for Tell a Friend','2013-06-23 05:51:13',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(211,NULL,8,'Subject for Membership Renewal','2013-05-09 12:19:24',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(212,NULL,8,'Subject for Membership Renewal','2013-06-12 02:46:38',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(213,NULL,10,'Subject for Pledge Acknowledgment','2013-11-09 12:37:25',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(214,NULL,10,'Subject for Pledge Acknowledgment','2013-06-19 02:02:59',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(215,NULL,8,'Subject for Membership Renewal','2013-10-13 01:17:37',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(216,NULL,10,'Subject for Pledge Acknowledgment','2013-03-06 05:10:32',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(217,NULL,8,'Subject for Membership Renewal','2013-09-11 06:04:49',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(218,NULL,7,'Subject for Membership Signup','2013-07-19 04:31:30',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(219,NULL,10,'Subject for Pledge Acknowledgment','2013-03-20 11:03:18',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(220,NULL,10,'Subject for Pledge Acknowledgment','2013-06-09 08:03:29',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(221,NULL,7,'Subject for Membership Signup','2013-05-25 03:52:45',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(222,NULL,7,'Subject for Membership Signup','2013-03-12 02:44:32',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(223,NULL,8,'Subject for Membership Renewal','2013-03-03 04:22:26',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(224,NULL,7,'Subject for Membership Signup','2013-08-22 04:03:00',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(225,NULL,8,'Subject for Membership Renewal','2013-12-06 06:34:25',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(226,NULL,10,'Subject for Pledge Acknowledgment','2014-01-13 06:15:34',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(227,NULL,8,'Subject for Membership Renewal','2013-03-01 04:00:50',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(228,NULL,7,'Subject for Membership Signup','2013-03-13 08:36:31',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(229,NULL,9,'Subject for Tell a Friend','2013-10-07 03:11:14',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(230,NULL,8,'Subject for Membership Renewal','2013-06-04 12:21:10',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(231,NULL,7,'Subject for Membership Signup','2013-06-09 04:32:47',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(232,NULL,10,'Subject for Pledge Acknowledgment','2013-06-01 02:31:14',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(233,NULL,9,'Subject for Tell a Friend','2014-01-25 04:43:35',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(234,NULL,9,'Subject for Tell a Friend','2013-11-25 03:41:38',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(235,NULL,8,'Subject for Membership Renewal','2013-09-19 03:57:45',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(236,NULL,10,'Subject for Pledge Acknowledgment','2013-12-10 11:44:31',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(237,NULL,7,'Subject for Membership Signup','2013-03-15 01:24:45',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(238,NULL,8,'Subject for Membership Renewal','2013-08-23 10:35:40',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(239,NULL,7,'Subject for Membership Signup','2013-04-26 01:44:59',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(240,NULL,9,'Subject for Tell a Friend','2013-11-02 07:10:26',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(241,NULL,10,'Subject for Pledge Acknowledgment','2013-09-16 05:48:45',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(242,NULL,8,'Subject for Membership Renewal','2013-08-19 02:36:26',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(243,NULL,10,'Subject for Pledge Acknowledgment','2013-08-23 05:32:49',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(244,NULL,7,'Subject for Membership Signup','2013-11-22 02:47:20',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(245,NULL,7,'Subject for Membership Signup','2013-11-25 02:47:56',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(246,NULL,8,'Subject for Membership Renewal','2013-07-02 12:33:01',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(247,NULL,9,'Subject for Tell a Friend','2013-11-20 08:33:20',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(248,NULL,9,'Subject for Tell a Friend','2013-09-24 02:08:48',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(249,NULL,8,'Subject for Membership Renewal','2013-07-28 02:35:48',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(250,NULL,8,'Subject for Membership Renewal','2013-07-09 07:27:48',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(251,NULL,9,'Subject for Tell a Friend','2013-11-01 09:19:54',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(252,NULL,8,'Subject for Membership Renewal','2013-05-01 01:41:38',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(253,NULL,8,'Subject for Membership Renewal','2013-12-03 05:03:41',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(254,NULL,10,'Subject for Pledge Acknowledgment','2013-06-01 05:46:08',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(255,NULL,8,'Subject for Membership Renewal','2013-08-15 05:09:51',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(256,NULL,7,'Subject for Membership Signup','2013-04-02 11:55:15',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(257,NULL,7,'Subject for Membership Signup','2013-02-20 11:34:15',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(258,NULL,8,'Subject for Membership Renewal','2013-06-06 06:05:02',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(259,NULL,10,'Subject for Pledge Acknowledgment','2013-07-08 02:33:59',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(260,NULL,10,'Subject for Pledge Acknowledgment','2013-09-28 03:44:51',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(261,NULL,8,'Subject for Membership Renewal','2013-03-28 02:26:09',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(262,NULL,7,'Subject for Membership Signup','2013-10-29 04:30:50',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(263,NULL,7,'Subject for Membership Signup','2013-02-03 06:44:54',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(264,NULL,10,'Subject for Pledge Acknowledgment','2013-06-05 02:36:07',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(265,NULL,10,'Subject for Pledge Acknowledgment','2013-12-01 12:59:27',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(266,NULL,8,'Subject for Membership Renewal','2013-04-20 05:04:00',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(267,NULL,10,'Subject for Pledge Acknowledgment','2013-03-31 02:02:36',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(268,NULL,10,'Subject for Pledge Acknowledgment','2013-04-26 02:56:38',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(269,NULL,10,'Subject for Pledge Acknowledgment','2013-08-23 02:50:28',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(270,NULL,7,'Subject for Membership Signup','2013-04-07 11:25:42',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(271,NULL,9,'Subject for Tell a Friend','2013-08-07 07:27:31',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(272,NULL,7,'Subject for Membership Signup','2013-02-06 11:55:38',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(273,NULL,10,'Subject for Pledge Acknowledgment','2014-01-27 12:09:40',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(274,NULL,7,'Subject for Membership Signup','2013-11-27 10:35:05',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(275,NULL,7,'Subject for Membership Signup','2013-07-19 08:25:51',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(276,NULL,7,'Subject for Membership Signup','2013-09-08 08:29:13',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(277,NULL,10,'Subject for Pledge Acknowledgment','2013-06-20 09:21:12',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(278,NULL,8,'Subject for Membership Renewal','2013-12-13 09:12:38',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(279,NULL,9,'Subject for Tell a Friend','2013-08-05 05:58:04',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(280,NULL,10,'Subject for Pledge Acknowledgment','2013-09-20 04:29:03',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(281,NULL,8,'Subject for Membership Renewal','2013-04-27 04:25:41',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(282,NULL,7,'Subject for Membership Signup','2013-04-30 11:14:45',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(283,NULL,9,'Subject for Tell a Friend','2013-03-25 06:08:14',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(284,NULL,8,'Subject for Membership Renewal','2013-07-30 05:38:36',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(285,NULL,8,'Subject for Membership Renewal','2013-09-12 08:39:54',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(286,NULL,10,'Subject for Pledge Acknowledgment','2014-01-14 03:34:00',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(287,NULL,9,'Subject for Tell a Friend','2013-11-21 07:40:57',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(288,NULL,7,'Subject for Membership Signup','2013-05-06 10:30:19',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(289,NULL,8,'Subject for Membership Renewal','2013-04-20 08:56:59',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(290,NULL,10,'Subject for Pledge Acknowledgment','2013-02-21 08:47:42',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(291,NULL,10,'Subject for Pledge Acknowledgment','2013-07-04 03:15:54',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(292,NULL,7,'Subject for Membership Signup','2014-01-09 05:17:35',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(293,NULL,10,'Subject for Pledge Acknowledgment','2013-10-03 08:22:22',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(294,NULL,7,'Subject for Membership Signup','2013-05-27 10:38:45',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(295,NULL,8,'Subject for Membership Renewal','2014-01-01 02:37:23',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(296,NULL,7,'Subject for Membership Signup','2014-01-12 12:44:51',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(297,NULL,9,'Subject for Tell a Friend','2013-06-04 01:02:13',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(298,NULL,8,'Subject for Membership Renewal','2013-02-14 12:24:33',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(299,NULL,7,'Subject for Membership Signup','2013-04-11 11:17:49',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(300,NULL,9,'Subject for Tell a Friend','2014-01-27 12:33:24',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(301,NULL,7,'Subject for Membership Signup','2013-11-20 09:38:41',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(302,NULL,10,'Subject for Pledge Acknowledgment','2013-12-07 11:33:46',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(303,NULL,7,'Subject for Membership Signup','2013-04-08 04:53:12',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(304,NULL,9,'Subject for Tell a Friend','2013-07-22 03:13:41',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(305,NULL,8,'Subject for Membership Renewal','2013-10-14 06:25:28',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(306,NULL,9,'Subject for Tell a Friend','2014-01-17 05:20:34',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(307,NULL,8,'Subject for Membership Renewal','2013-05-15 01:40:10',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(308,NULL,9,'Subject for Tell a Friend','2013-11-17 10:20:18',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(309,NULL,10,'Subject for Pledge Acknowledgment','2013-07-08 03:01:29',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(310,NULL,10,'Subject for Pledge Acknowledgment','2013-11-02 04:28:07',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(311,NULL,9,'Subject for Tell a Friend','2013-02-10 05:09:58',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(312,NULL,10,'Subject for Pledge Acknowledgment','2013-04-29 06:14:47',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(313,NULL,7,'Subject for Membership Signup','2013-04-17 10:01:04',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(314,NULL,9,'Subject for Tell a Friend','2013-06-24 10:45:43',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(315,NULL,7,'Subject for Membership Signup','2013-03-29 09:43:49',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(316,NULL,8,'Subject for Membership Renewal','2013-04-09 08:33:18',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(317,NULL,7,'Subject for Membership Signup','2013-04-03 04:59:33',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(318,NULL,9,'Subject for Tell a Friend','2013-10-20 07:25:02',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(319,NULL,9,'Subject for Tell a Friend','2013-09-26 03:26:54',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(320,NULL,10,'Subject for Pledge Acknowledgment','2013-04-05 06:30:43',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(321,NULL,9,'Subject for Tell a Friend','2013-07-22 05:53:36',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(322,NULL,9,'Subject for Tell a Friend','2013-07-30 04:34:06',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(323,NULL,10,'Subject for Pledge Acknowledgment','2013-04-24 01:04:52',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(324,NULL,7,'Subject for Membership Signup','2013-02-22 01:13:14',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(325,NULL,8,'Subject for Membership Renewal','2013-02-24 11:54:47',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(326,NULL,10,'Subject for Pledge Acknowledgment','2013-04-29 01:51:49',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(327,NULL,7,'Subject for Membership Signup','2013-06-13 05:02:28',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(328,NULL,9,'Subject for Tell a Friend','2014-01-19 07:27:19',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(329,NULL,7,'Subject for Membership Signup','2013-04-29 07:37:30',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(330,NULL,10,'Subject for Pledge Acknowledgment','2013-10-15 06:39:00',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(331,NULL,7,'Subject for Membership Signup','2013-03-01 11:22:32',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(332,NULL,9,'Subject for Tell a Friend','2013-01-30 09:51:42',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(333,NULL,9,'Subject for Tell a Friend','2013-09-12 06:32:37',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(334,NULL,10,'Subject for Pledge Acknowledgment','2013-04-19 12:39:51',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(335,NULL,8,'Subject for Membership Renewal','2014-01-16 05:26:39',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(336,NULL,9,'Subject for Tell a Friend','2013-07-04 06:24:21',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(337,NULL,9,'Subject for Tell a Friend','2013-08-19 10:55:31',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(338,NULL,10,'Subject for Pledge Acknowledgment','2014-01-02 04:49:48',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(339,NULL,7,'Subject for Membership Signup','2013-08-31 06:28:13',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(340,NULL,7,'Subject for Membership Signup','2013-04-26 05:54:11',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(341,NULL,10,'Subject for Pledge Acknowledgment','2013-03-27 07:46:45',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(342,NULL,8,'Subject for Membership Renewal','2013-02-10 10:39:46',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(343,NULL,8,'Subject for Membership Renewal','2013-06-11 11:57:30',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(344,NULL,7,'Subject for Membership Signup','2013-09-15 09:52:39',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(345,NULL,8,'Subject for Membership Renewal','2013-02-09 07:21:51',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(346,NULL,8,'Subject for Membership Renewal','2013-12-13 09:31:13',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(347,NULL,10,'Subject for Pledge Acknowledgment','2013-08-31 10:55:47',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(348,NULL,9,'Subject for Tell a Friend','2013-11-16 11:13:35',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(349,NULL,9,'Subject for Tell a Friend','2013-08-18 09:43:29',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(350,NULL,8,'Subject for Membership Renewal','2013-11-05 03:14:00',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(351,NULL,9,'Subject for Tell a Friend','2013-07-07 06:53:19',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(352,NULL,8,'Subject for Membership Renewal','2013-04-29 08:18:24',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(353,NULL,8,'Subject for Membership Renewal','2014-01-02 06:42:21',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(354,NULL,7,'Subject for Membership Signup','2013-06-10 05:01:12',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(355,NULL,7,'Subject for Membership Signup','2013-05-26 10:58:44',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(356,NULL,7,'Subject for Membership Signup','2013-04-01 12:09:12',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(357,NULL,10,'Subject for Pledge Acknowledgment','2014-01-21 05:25:31',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(358,NULL,7,'Subject for Membership Signup','2013-10-07 10:17:28',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(359,NULL,9,'Subject for Tell a Friend','2013-06-21 12:23:24',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(360,NULL,7,'Subject for Membership Signup','2013-09-15 07:19:08',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(361,NULL,9,'Subject for Tell a Friend','2014-01-26 07:29:35',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(362,NULL,8,'Subject for Membership Renewal','2013-12-19 03:56:24',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(363,NULL,9,'Subject for Tell a Friend','2013-10-02 07:59:26',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(364,NULL,9,'Subject for Tell a Friend','2013-11-16 10:02:21',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(365,NULL,10,'Subject for Pledge Acknowledgment','2013-06-26 02:23:38',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(366,NULL,10,'Subject for Pledge Acknowledgment','2013-08-28 11:05:32',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(367,NULL,7,'Subject for Membership Signup','2013-02-02 02:12:51',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(368,NULL,9,'Subject for Tell a Friend','2014-01-10 09:39:33',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(369,NULL,8,'Subject for Membership Renewal','2013-09-12 12:12:55',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(370,NULL,7,'Subject for Membership Signup','2014-01-27 04:27:35',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(371,NULL,10,'Subject for Pledge Acknowledgment','2013-07-05 11:28:15',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(372,NULL,7,'Subject for Membership Signup','2013-07-01 03:12:48',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(373,NULL,7,'Subject for Membership Signup','2013-12-18 03:28:45',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(374,NULL,7,'Subject for Membership Signup','2013-11-15 05:49:20',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(375,NULL,10,'Subject for Pledge Acknowledgment','2013-08-07 11:15:22',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(376,NULL,8,'Subject for Membership Renewal','2013-07-16 08:05:26',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(377,NULL,9,'Subject for Tell a Friend','2014-01-22 06:16:29',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(378,NULL,7,'Subject for Membership Signup','2013-12-24 02:42:07',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(379,NULL,9,'Subject for Tell a Friend','2013-11-16 02:41:16',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(380,NULL,8,'Subject for Membership Renewal','2013-06-02 05:07:34',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(381,NULL,8,'Subject for Membership Renewal','2013-11-08 12:41:50',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(382,NULL,9,'Subject for Tell a Friend','2013-04-02 11:40:53',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(383,NULL,9,'Subject for Tell a Friend','2013-10-20 01:25:32',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(384,NULL,8,'Subject for Membership Renewal','2014-01-19 03:26:59',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(385,NULL,10,'Subject for Pledge Acknowledgment','2013-11-08 03:56:05',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(386,NULL,10,'Subject for Pledge Acknowledgment','2013-02-23 11:03:51',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(387,NULL,8,'Subject for Membership Renewal','2013-07-29 04:07:44',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(388,NULL,10,'Subject for Pledge Acknowledgment','2013-07-23 06:20:01',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(389,NULL,9,'Subject for Tell a Friend','2013-09-29 10:43:44',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(390,NULL,8,'Subject for Membership Renewal','2014-01-08 09:47:20',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(391,NULL,7,'Subject for Membership Signup','2013-03-14 03:08:44',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(392,NULL,7,'Subject for Membership Signup','2014-01-16 05:36:44',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(393,NULL,8,'Subject for Membership Renewal','2013-04-21 02:02:57',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(394,NULL,10,'Subject for Pledge Acknowledgment','2013-03-20 11:36:06',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(395,NULL,10,'Subject for Pledge Acknowledgment','2013-07-29 03:55:25',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(396,NULL,7,'Subject for Membership Signup','2013-04-16 04:37:47',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(397,NULL,8,'Subject for Membership Renewal','2013-03-14 08:58:20',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(398,NULL,7,'Subject for Membership Signup','2013-11-15 10:51:19',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(399,NULL,7,'Subject for Membership Signup','2013-08-31 01:58:32',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(400,NULL,8,'Subject for Membership Renewal','2013-03-24 11:32:11',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(401,NULL,10,'Subject for Pledge Acknowledgment','2013-11-12 06:53:26',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(402,NULL,8,'Subject for Membership Renewal','2013-10-28 01:31:29',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(403,NULL,7,'Subject for Membership Signup','2013-10-10 02:40:21',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(404,NULL,9,'Subject for Tell a Friend','2013-02-21 05:41:58',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(405,NULL,9,'Subject for Tell a Friend','2013-10-23 06:19:17',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(406,NULL,10,'Subject for Pledge Acknowledgment','2013-12-15 12:35:25',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(407,NULL,7,'Subject for Membership Signup','2014-01-15 02:12:28',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(408,NULL,7,'Subject for Membership Signup','2013-12-24 10:35:00',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(409,NULL,10,'Subject for Pledge Acknowledgment','2014-01-22 05:49:03',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(410,NULL,8,'Subject for Membership Renewal','2013-07-31 06:38:11',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(411,NULL,9,'Subject for Tell a Friend','2013-02-19 05:29:20',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(412,NULL,7,'Subject for Membership Signup','2013-04-11 12:38:41',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(413,NULL,10,'Subject for Pledge Acknowledgment','2013-03-15 05:43:01',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(414,NULL,9,'Subject for Tell a Friend','2013-02-05 07:10:47',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(415,NULL,10,'Subject for Pledge Acknowledgment','2013-06-29 05:03:17',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(416,NULL,7,'Subject for Membership Signup','2013-06-14 08:24:34',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(417,NULL,8,'Subject for Membership Renewal','2013-05-12 03:59:04',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(418,NULL,7,'Subject for Membership Signup','2013-11-04 01:54:31',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(419,NULL,10,'Subject for Pledge Acknowledgment','2013-08-26 07:19:54',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(420,NULL,8,'Subject for Membership Renewal','2013-05-31 02:52:28',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(421,NULL,7,'Subject for Membership Signup','2013-11-02 01:08:33',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(422,NULL,7,'Subject for Membership Signup','2013-08-13 02:22:59',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(423,NULL,9,'Subject for Tell a Friend','2013-04-17 01:18:37',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(424,NULL,8,'Subject for Membership Renewal','2014-01-13 08:58:24',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(425,NULL,8,'Subject for Membership Renewal','2013-10-24 08:46:25',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(426,NULL,7,'Subject for Membership Signup','2013-10-20 11:45:32',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(427,NULL,8,'Subject for Membership Renewal','2014-01-14 08:59:10',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(428,NULL,7,'Subject for Membership Signup','2013-11-18 03:02:01',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(429,NULL,8,'Subject for Membership Renewal','2014-01-14 12:00:55',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(430,NULL,10,'Subject for Pledge Acknowledgment','2014-01-06 05:22:51',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(431,NULL,10,'Subject for Pledge Acknowledgment','2013-07-05 07:27:43',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(432,NULL,8,'Subject for Membership Renewal','2013-03-22 05:33:16',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(433,NULL,7,'Subject for Membership Signup','2013-11-16 07:58:11',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(434,NULL,8,'Subject for Membership Renewal','2013-06-06 04:04:07',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(435,NULL,10,'Subject for Pledge Acknowledgment','2013-06-26 07:16:48',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(436,NULL,10,'Subject for Pledge Acknowledgment','2013-02-02 08:02:20',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(437,NULL,9,'Subject for Tell a Friend','2013-05-14 03:26:45',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(438,NULL,9,'Subject for Tell a Friend','2013-01-31 03:22:33',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(439,NULL,10,'Subject for Pledge Acknowledgment','2013-08-01 05:15:28',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(440,NULL,10,'Subject for Pledge Acknowledgment','2013-12-06 02:39:49',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(441,NULL,9,'Subject for Tell a Friend','2013-05-08 03:57:58',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(442,NULL,9,'Subject for Tell a Friend','2013-11-07 02:03:05',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(443,NULL,9,'Subject for Tell a Friend','2014-01-10 08:29:30',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(444,NULL,9,'Subject for Tell a Friend','2013-11-28 02:56:56',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(445,NULL,10,'Subject for Pledge Acknowledgment','2013-07-25 05:48:29',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(446,NULL,9,'Subject for Tell a Friend','2013-08-30 06:23:26',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(447,NULL,8,'Subject for Membership Renewal','2013-11-10 06:29:23',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(448,NULL,9,'Subject for Tell a Friend','2013-12-16 06:52:49',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(449,NULL,7,'Subject for Membership Signup','2013-03-18 10:56:24',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(450,NULL,9,'Subject for Tell a Friend','2013-08-16 11:18:21',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(464,1,7,'General','2014-01-28 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(465,2,7,'Student','2014-01-27 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(466,3,7,'General','2014-01-26 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(467,4,7,'Student','2014-01-25 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(468,5,7,'General','2011-12-27 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(469,6,7,'Student','2014-01-23 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(470,7,7,'General','2014-01-22 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(471,8,7,'Student','2014-01-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(472,9,7,'General','2014-01-20 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(473,10,7,'Student','2013-01-19 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(474,11,7,'Lifetime','2014-01-18 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(475,12,7,'Student','2014-01-17 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(476,13,7,'General','2014-01-16 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(477,14,7,'Student','2014-01-15 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(478,15,7,'General','2011-10-08 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(479,16,7,'Student','2014-01-13 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(480,17,7,'General','2014-01-12 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(481,18,7,'Student','2014-01-11 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(482,19,7,'General','2014-01-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(483,20,7,'Student','2013-01-09 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(484,21,7,'General','2014-01-08 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(485,22,7,'Lifetime','2014-01-07 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(486,23,7,'General','2014-01-06 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(487,24,7,'Student','2014-01-05 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(488,25,7,'General','2011-07-20 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(489,26,7,'Student','2014-01-03 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(490,27,7,'General','2014-01-02 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(491,28,7,'Student','2014-01-01 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(492,29,7,'General','2013-12-31 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(493,30,7,'General','2011-06-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(494,14,6,'$ 100.00 - General Membership: Offline signup','2014-01-28 18:16:14',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(495,15,6,'$ 50.00 - Student Membership: Offline signup','2014-01-28 18:16:14',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(496,16,6,'$ 100.00 - General Membership: Offline signup','2014-01-28 18:16:14',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(497,17,6,'$ 50.00 - Student Membership: Offline signup','2014-01-28 18:16:14',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(498,18,6,'$ 100.00 - General Membership: Offline signup','2014-01-28 18:16:14',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(499,19,6,'$ 50.00 - Student Membership: Offline signup','2014-01-28 18:16:14',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(500,20,6,'$ 100.00 - General Membership: Offline signup','2014-01-28 18:16:14',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(501,21,6,'$ 50.00 - Student Membership: Offline signup','2014-01-28 18:16:14',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(502,22,6,'$ 100.00 - General Membership: Offline signup','2014-01-28 18:16:14',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(503,23,6,'$ 50.00 - Student Membership: Offline signup','2014-01-28 18:16:14',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(504,24,6,'$ 1200.00 - Lifetime Membership: Offline signup','2014-01-28 18:16:14',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(505,25,6,'$ 50.00 - Student Membership: Offline signup','2014-01-28 18:16:14',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(506,26,6,'$ 100.00 - General Membership: Offline signup','2014-01-28 18:16:14',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(507,27,6,'$ 50.00 - Student Membership: Offline signup','2014-01-28 18:16:14',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(508,28,6,'$ 100.00 - General Membership: Offline signup','2014-01-28 18:16:14',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(509,29,6,'$ 50.00 - Student Membership: Offline signup','2014-01-28 18:16:14',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(510,30,6,'$ 100.00 - General Membership: Offline signup','2014-01-28 18:16:14',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(511,31,6,'$ 50.00 - Student Membership: Offline signup','2014-01-28 18:16:14',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(512,32,6,'$ 100.00 - General Membership: Offline signup','2014-01-28 18:16:14',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(513,33,6,'$ 50.00 - Student Membership: Offline signup','2014-01-28 18:16:14',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(514,34,6,'$ 100.00 - General Membership: Offline signup','2014-01-28 18:16:14',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(515,35,6,'$ 1200.00 - Lifetime Membership: Offline signup','2014-01-28 18:16:14',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(516,36,6,'$ 100.00 - General Membership: Offline signup','2014-01-28 18:16:14',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(517,37,6,'$ 50.00 - Student Membership: Offline signup','2014-01-28 18:16:14',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(518,38,6,'$ 100.00 - General Membership: Offline signup','2014-01-28 18:16:14',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(519,39,6,'$ 50.00 - Student Membership: Offline signup','2014-01-28 18:16:14',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(520,40,6,'$ 100.00 - General Membership: Offline signup','2014-01-28 18:16:14',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(521,41,6,'$ 50.00 - Student Membership: Offline signup','2014-01-28 18:16:14',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(522,42,6,'$ 100.00 - General Membership: Offline signup','2014-01-28 18:16:14',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(523,43,6,'$ 100.00 - General Membership: Offline signup','2014-01-28 18:16:14',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(575,45,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2014-01-28 18:16:27',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(576,46,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2014-01-28 18:16:27',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(577,47,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2014-01-28 18:16:27',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(578,48,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2014-01-28 18:16:27',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(579,49,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2014-01-28 18:16:27',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(580,50,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2014-01-28 18:16:27',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(581,51,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2014-01-28 18:16:27',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(582,52,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2014-01-28 18:16:27',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(583,53,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2014-01-28 18:16:27',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(584,54,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2014-01-28 18:16:27',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(585,55,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2014-01-28 18:16:27',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(586,56,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2014-01-28 18:16:27',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(587,57,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2014-01-28 18:16:27',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(588,58,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2014-01-28 18:16:27',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(589,59,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2014-01-28 18:16:27',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(590,60,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2014-01-28 18:16:27',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(591,61,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2014-01-28 18:16:27',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(592,62,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2014-01-28 18:16:27',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(593,63,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2014-01-28 18:16:27',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(594,64,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2014-01-28 18:16:27',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(595,65,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2014-01-28 18:16:27',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(596,66,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2014-01-28 18:16:27',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(597,67,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2014-01-28 18:16:27',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(598,68,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2014-01-28 18:16:27',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(599,69,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2014-01-28 18:16:27',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(600,70,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2014-01-28 18:16:27',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(601,71,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2014-01-28 18:16:27',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(602,72,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2014-01-28 18:16:27',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(603,73,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2014-01-28 18:16:27',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(604,74,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2014-01-28 18:16:27',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(605,75,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2014-01-28 18:16:27',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(606,76,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2014-01-28 18:16:27',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(607,77,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2014-01-28 18:16:27',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(608,78,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2014-01-28 18:16:27',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(609,79,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2014-01-28 18:16:27',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(610,80,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2014-01-28 18:16:27',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(611,81,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2014-01-28 18:16:27',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(612,82,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2014-01-28 18:16:27',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(613,83,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2014-01-28 18:16:27',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(614,84,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2014-01-28 18:16:27',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(615,85,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2014-01-28 18:16:27',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(616,86,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2014-01-28 18:16:27',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(617,87,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2014-01-28 18:16:27',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(618,88,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2014-01-28 18:16:27',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(619,89,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2014-01-28 18:16:27',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(620,90,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2014-01-28 18:16:27',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(621,91,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2014-01-28 18:16:27',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(622,92,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2014-01-28 18:16:27',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(623,93,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2014-01-28 18:16:27',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(624,94,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2014-01-28 18:16:27',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL); /*!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 (237,152,1,1),(441,294,1,3),(530,350,1,3),(680,451,2,2),(783,554,2,2),(200,129,3,3),(325,214,3,1),(527,348,4,1),(681,452,4,2),(231,149,5,1),(370,247,5,1),(794,565,5,2),(106,69,6,3),(283,184,6,1),(431,288,6,3),(682,453,6,2),(192,124,7,3),(55,36,8,1),(265,172,8,1),(417,280,8,3),(683,454,8,2),(760,531,8,2),(114,74,9,3),(478,318,9,3),(500,332,9,1),(517,342,9,3),(257,166,10,1),(315,208,10,3),(621,412,11,3),(205,132,12,3),(429,287,12,1),(134,86,13,1),(356,238,13,3),(379,254,13,3),(523,346,13,1),(157,100,14,1),(278,181,14,1),(385,258,14,1),(39,26,15,1),(161,102,15,3),(227,147,15,1),(365,244,15,3),(538,356,15,3),(772,543,15,2),(485,323,16,1),(502,333,16,3),(519,343,16,3),(571,379,16,1),(684,455,16,2),(594,395,17,3),(664,442,18,3),(272,177,19,1),(685,456,19,2),(701,472,19,2),(731,502,19,2),(776,547,19,2),(194,125,21,1),(197,127,21,1),(470,314,21,1),(494,329,21,1),(698,469,21,2),(728,499,21,2),(149,95,23,1),(795,566,23,2),(507,336,24,3),(294,192,25,1),(607,403,25,1),(777,548,25,2),(171,109,26,1),(636,422,26,1),(800,571,26,2),(579,385,27,3),(763,534,27,2),(476,317,30,3),(786,557,30,2),(73,48,31,1),(292,191,31,3),(427,286,31,1),(472,315,31,3),(694,465,31,2),(724,495,31,2),(33,23,32,3),(53,35,32,3),(691,462,32,2),(692,463,32,2),(4,3,33,3),(437,292,33,1),(130,84,34,3),(337,221,34,3),(688,459,34,2),(187,121,35,3),(289,189,35,1),(459,306,35,3),(565,374,35,1),(75,49,36,1),(222,144,36,1),(447,298,36,1),(715,486,36,2),(745,516,36,2),(771,542,36,2),(151,96,37,1),(361,241,37,1),(422,283,37,1),(626,415,37,1),(801,572,37,2),(1,1,38,2),(2,2,38,2),(3,3,38,2),(5,4,38,2),(6,5,38,2),(7,6,38,2),(9,7,38,2),(10,8,38,2),(12,9,38,2),(13,10,38,2),(14,11,38,2),(16,12,38,2),(18,13,38,2),(20,14,38,2),(22,15,38,2),(24,16,38,2),(25,17,38,2),(27,18,38,2),(28,19,38,2),(29,20,38,2),(30,21,38,2),(31,22,38,2),(32,23,38,2),(34,24,38,2),(36,25,38,2),(38,26,38,2),(40,27,38,2),(42,28,38,2),(43,29,38,2),(45,30,38,2),(47,31,38,2),(49,32,38,2),(50,33,38,2),(51,34,38,2),(52,35,38,2),(54,36,38,2),(56,37,38,2),(58,38,38,2),(59,39,38,2),(60,40,38,2),(61,41,38,2),(63,42,38,2),(65,43,38,2),(67,44,38,2),(69,45,38,2),(70,46,38,2),(71,47,38,2),(72,48,38,2),(74,49,38,2),(76,50,38,2),(77,51,38,2),(79,52,38,2),(80,53,38,2),(81,54,38,2),(83,55,38,2),(84,56,38,2),(85,57,38,2),(87,58,38,2),(89,59,38,2),(91,60,38,2),(92,61,38,2),(94,62,38,2),(95,63,38,2),(97,64,38,2),(99,65,38,2),(101,66,38,2),(102,66,38,3),(103,67,38,2),(104,68,38,2),(105,69,38,2),(107,70,38,2),(108,71,38,2),(110,72,38,2),(112,73,38,2),(113,74,38,2),(115,75,38,2),(116,76,38,2),(117,77,38,2),(119,78,38,2),(121,79,38,2),(123,80,38,2),(124,81,38,2),(126,82,38,2),(127,83,38,2),(129,84,38,2),(131,85,38,2),(133,86,38,2),(135,87,38,2),(137,88,38,2),(139,89,38,2),(140,90,38,2),(141,91,38,2),(143,92,38,2),(144,93,38,2),(146,94,38,2),(148,95,38,2),(150,96,38,2),(152,97,38,2),(153,98,38,2),(154,99,38,2),(156,100,38,2),(158,101,38,2),(160,102,38,2),(162,103,38,2),(164,104,38,2),(165,105,38,2),(166,106,38,2),(168,107,38,2),(169,108,38,2),(170,109,38,2),(172,110,38,2),(173,111,38,2),(174,112,38,2),(175,113,38,2),(177,114,38,2),(178,115,38,2),(180,116,38,2),(181,117,38,2),(183,118,38,2),(184,119,38,2),(185,120,38,2),(186,121,38,2),(188,122,38,2),(189,123,38,2),(191,124,38,2),(193,125,38,2),(195,126,38,2),(196,127,38,2),(198,128,38,2),(199,129,38,2),(201,130,38,2),(203,131,38,2),(204,132,38,2),(206,133,38,2),(207,134,38,2),(209,135,38,2),(210,136,38,2),(211,137,38,2),(213,138,38,2),(215,139,38,2),(217,140,38,2),(218,141,38,2),(219,142,38,2),(220,143,38,2),(221,144,38,2),(223,145,38,2),(225,146,38,2),(226,147,38,2),(228,148,38,2),(230,149,38,2),(232,150,38,2),(419,281,38,3),(86,57,39,3),(155,99,39,3),(216,139,40,1),(233,150,40,3),(543,359,40,1),(797,568,40,2),(722,493,41,2),(752,523,41,2),(754,525,41,2),(630,418,43,3),(690,461,43,2),(248,159,44,3),(787,558,44,2),(182,117,45,1),(305,199,45,3),(412,276,45,3),(587,390,45,1),(605,402,45,3),(624,414,45,3),(653,435,45,3),(599,399,46,3),(778,549,46,2),(712,483,48,2),(742,513,48,2),(111,72,49,1),(240,154,49,3),(755,526,49,2),(297,194,50,3),(555,366,50,3),(48,31,51,3),(78,51,51,1),(758,529,51,2),(44,29,53,1),(128,83,53,3),(142,91,53,3),(179,115,53,3),(513,340,53,1),(651,434,53,1),(764,535,53,2),(358,239,54,3),(498,331,54,1),(541,358,54,3),(649,433,55,3),(118,77,56,3),(176,113,56,1),(616,408,56,3),(803,574,56,2),(98,64,57,1),(575,382,57,1),(774,545,57,2),(90,59,58,3),(328,216,58,3),(372,248,58,3),(546,361,58,1),(761,532,58,2),(163,103,59,1),(190,123,59,1),(267,173,59,3),(321,212,59,1),(454,303,59,3),(713,484,59,2),(743,514,59,2),(57,37,60,3),(136,87,61,3),(167,106,61,1),(224,145,62,1),(333,219,62,1),(456,304,62,1),(461,307,62,1),(562,372,62,1),(659,439,62,3),(718,489,62,2),(748,519,62,2),(11,8,63,3),(46,30,64,3),(66,43,64,1),(609,404,64,1),(798,569,64,2),(125,81,65,1),(393,264,65,1),(15,11,66,3),(96,63,66,1),(612,406,66,1),(82,54,67,1),(120,78,67,3),(138,88,67,3),(367,245,67,3),(666,443,67,3),(674,447,67,3),(41,27,68,3),(511,339,68,1),(757,528,68,2),(202,130,70,1),(397,266,70,1),(488,325,70,3),(100,65,71,3),(403,270,71,3),(549,363,71,3),(589,391,71,3),(689,460,71,2),(700,471,71,2),(730,501,71,2),(280,182,72,1),(439,293,72,1),(642,427,72,3),(679,450,72,1),(708,479,72,2),(738,509,72,2),(64,42,73,3),(261,169,73,1),(581,386,73,3),(668,444,73,3),(672,446,73,1),(791,562,73,2),(243,156,74,1),(407,273,74,1),(88,58,75,1),(535,354,75,1),(662,441,75,3),(68,44,76,3),(229,148,78,3),(245,157,78,1),(342,225,78,3),(26,17,79,3),(132,85,79,3),(147,94,79,1),(212,137,79,3),(670,445,79,1),(37,25,80,3),(505,335,80,1),(721,492,80,2),(751,522,80,2),(214,138,81,3),(400,268,81,3),(424,284,81,3),(23,15,82,1),(686,457,82,2),(585,389,83,3),(614,407,83,1),(275,179,84,3),(122,79,85,1),(331,218,85,3),(395,265,85,3),(553,365,85,3),(603,401,85,3),(703,474,85,2),(733,504,85,2),(779,550,85,2),(93,61,86,3),(434,290,86,1),(474,316,86,1),(109,71,87,3),(696,467,87,2),(726,497,87,2),(317,209,88,1),(525,347,88,1),(781,552,88,2),(8,6,89,3),(255,165,89,1),(301,196,89,3),(381,255,89,3),(208,134,90,1),(710,481,90,2),(740,511,90,2),(410,275,91,3),(496,330,91,3),(677,449,91,3),(773,544,91,2),(17,12,92,1),(687,458,92,2),(515,341,93,1),(551,364,93,1),(601,400,93,3),(145,93,94,3),(323,213,94,1),(656,437,94,3),(769,540,94,2),(21,14,95,1),(159,101,95,1),(235,151,95,3),(390,262,95,3),(450,300,95,1),(482,321,95,3),(633,420,95,3),(62,41,96,3),(335,220,96,3),(35,24,97,3),(465,310,97,3),(767,538,97,2),(299,195,98,3),(444,296,98,3),(490,326,98,1),(693,464,100,2),(723,494,100,2),(19,13,101,3),(719,490,102,2),(749,520,102,2),(234,151,105,2),(236,152,105,2),(238,153,105,2),(239,154,105,2),(241,155,105,2),(242,156,105,2),(244,157,105,2),(246,158,105,2),(247,159,105,2),(249,160,105,2),(250,161,105,2),(251,162,105,2),(252,163,105,2),(253,164,105,2),(254,165,105,2),(256,166,105,2),(258,167,105,2),(259,168,105,2),(260,169,105,2),(262,170,105,2),(263,171,105,2),(264,172,105,2),(266,173,105,2),(268,174,105,2),(269,175,105,2),(270,176,105,2),(271,177,105,2),(273,178,105,2),(274,179,105,2),(276,180,105,2),(277,181,105,2),(279,182,105,2),(281,183,105,2),(282,184,105,2),(284,185,105,2),(285,186,105,2),(286,187,105,2),(287,188,105,2),(288,189,105,2),(290,190,105,2),(291,191,105,2),(293,192,105,2),(295,193,105,2),(296,194,105,2),(298,195,105,2),(300,196,105,2),(302,197,105,2),(303,198,105,2),(304,199,105,2),(306,200,105,2),(307,201,105,2),(308,202,105,2),(309,203,105,2),(310,204,105,2),(311,205,105,2),(312,206,105,2),(313,207,105,2),(314,208,105,2),(316,209,105,2),(318,210,105,2),(319,211,105,2),(320,212,105,2),(322,213,105,2),(324,214,105,2),(326,215,105,2),(327,216,105,2),(329,217,105,2),(330,218,105,2),(332,219,105,2),(334,220,105,2),(336,221,105,2),(338,222,105,2),(339,223,105,2),(340,224,105,2),(341,225,105,2),(343,226,105,2),(344,227,105,2),(345,228,105,2),(346,229,105,2),(347,230,105,2),(348,231,105,2),(349,232,105,2),(350,233,105,2),(351,234,105,2),(352,235,105,2),(353,236,105,2),(354,237,105,2),(355,238,105,2),(357,239,105,2),(359,240,105,2),(360,241,105,2),(362,242,105,2),(363,243,105,2),(364,244,105,2),(366,245,105,2),(368,246,105,2),(369,247,105,2),(371,248,105,2),(373,249,105,2),(374,250,105,2),(375,251,105,2),(376,252,105,2),(377,253,105,2),(378,254,105,2),(380,255,105,2),(382,256,105,2),(383,257,105,2),(384,258,105,2),(386,259,105,2),(387,260,105,2),(388,261,105,2),(389,262,105,2),(391,263,105,2),(392,264,105,2),(394,265,105,2),(396,266,105,2),(398,267,105,2),(399,268,105,2),(401,269,105,2),(402,270,105,2),(404,271,105,2),(405,272,105,2),(406,273,105,2),(408,274,105,2),(409,275,105,2),(411,276,105,2),(413,277,105,2),(414,278,105,2),(415,279,105,2),(416,280,105,2),(418,281,105,2),(420,282,105,2),(421,283,105,2),(423,284,105,2),(425,285,105,2),(426,286,105,2),(428,287,105,2),(430,288,105,2),(432,289,105,2),(433,290,105,2),(435,291,105,2),(436,292,105,2),(438,293,105,2),(440,294,105,2),(442,295,105,2),(443,296,105,2),(445,297,105,2),(446,298,105,2),(448,299,105,2),(449,300,105,2),(768,539,105,2),(775,546,108,2),(788,559,109,2),(714,485,110,2),(744,515,110,2),(796,567,110,2),(711,482,111,2),(741,512,111,2),(451,301,114,2),(452,302,114,2),(453,303,114,2),(455,304,114,2),(457,305,114,2),(458,306,114,2),(460,307,114,2),(462,308,114,2),(463,309,114,2),(464,310,114,2),(466,311,114,2),(467,312,114,2),(468,313,114,2),(469,314,114,2),(471,315,114,2),(473,316,114,2),(475,317,114,2),(477,318,114,2),(479,319,114,2),(480,320,114,2),(481,321,114,2),(483,322,114,2),(484,323,114,2),(486,324,114,2),(487,325,114,2),(489,326,114,2),(491,327,114,2),(492,328,114,2),(493,329,114,2),(495,330,114,2),(497,331,114,2),(499,332,114,2),(501,333,114,2),(503,334,114,2),(504,335,114,2),(506,336,114,2),(508,337,114,2),(509,338,114,2),(510,339,114,2),(512,340,114,2),(514,341,114,2),(516,342,114,2),(518,343,114,2),(520,344,114,2),(521,345,114,2),(522,346,114,2),(524,347,114,2),(526,348,114,2),(528,349,114,2),(529,350,114,2),(531,351,114,2),(532,352,114,2),(533,353,114,2),(534,354,114,2),(536,355,114,2),(537,356,114,2),(539,357,114,2),(540,358,114,2),(542,359,114,2),(544,360,114,2),(545,361,114,2),(547,362,114,2),(548,363,114,2),(550,364,114,2),(552,365,114,2),(554,366,114,2),(556,367,114,2),(557,368,114,2),(558,369,114,2),(559,370,114,2),(560,371,114,2),(561,372,114,2),(563,373,114,2),(564,374,114,2),(566,375,114,2),(567,376,114,2),(568,377,114,2),(569,378,114,2),(570,379,114,2),(572,380,114,2),(573,381,114,2),(574,382,114,2),(576,383,114,2),(577,384,114,2),(578,385,114,2),(580,386,114,2),(582,387,114,2),(583,388,114,2),(584,389,114,2),(586,390,114,2),(588,391,114,2),(590,392,114,2),(591,393,114,2),(592,394,114,2),(593,395,114,2),(595,396,114,2),(596,397,114,2),(597,398,114,2),(598,399,114,2),(600,400,114,2),(602,401,114,2),(604,402,114,2),(606,403,114,2),(608,404,114,2),(610,405,114,2),(611,406,114,2),(613,407,114,2),(615,408,114,2),(617,409,114,2),(618,410,114,2),(619,411,114,2),(620,412,114,2),(622,413,114,2),(623,414,114,2),(625,415,114,2),(627,416,114,2),(628,417,114,2),(629,418,114,2),(631,419,114,2),(632,420,114,2),(634,421,114,2),(635,422,114,2),(637,423,114,2),(638,424,114,2),(639,425,114,2),(640,426,114,2),(641,427,114,2),(643,428,114,2),(644,429,114,2),(645,430,114,2),(646,431,114,2),(647,432,114,2),(648,433,114,2),(650,434,114,2),(652,435,114,2),(654,436,114,2),(655,437,114,2),(657,438,114,2),(658,439,114,2),(660,440,114,2),(661,441,114,2),(663,442,114,2),(665,443,114,2),(667,444,114,2),(669,445,114,2),(671,446,114,2),(673,447,114,2),(675,448,114,2),(676,449,114,2),(678,450,114,2),(799,570,114,2),(759,530,119,2),(782,553,121,2),(704,475,122,2),(734,505,122,2),(792,563,131,2),(707,478,135,2),(737,508,135,2),(789,560,141,2),(762,533,142,2),(697,468,143,2),(727,498,143,2),(705,476,150,2),(735,506,150,2),(770,541,150,2),(709,480,151,2),(739,510,151,2),(785,556,151,2),(802,573,156,2),(784,555,160,2),(695,466,165,2),(725,496,165,2),(780,551,170,2),(699,470,172,2),(729,500,172,2),(720,491,177,2),(750,521,177,2),(793,564,178,2),(717,488,182,2),(747,518,182,2),(766,537,184,2),(702,473,185,2),(732,503,185,2),(765,536,188,2),(706,477,189,2),(736,507,189,2),(716,487,191,2),(746,517,191,2),(756,527,194,2),(790,561,201,2); +INSERT INTO `civicrm_activity_contact` (`id`, `activity_id`, `contact_id`, `record_type_id`) VALUES (265,177,1,3),(649,437,1,3),(235,155,2,1),(386,263,2,1),(492,332,2,3),(669,449,2,1),(672,451,2,2),(755,534,2,2),(88,54,3,3),(154,98,3,1),(274,182,3,3),(758,537,3,2),(673,452,4,2),(693,472,4,2),(723,502,4,2),(26,16,5,1),(520,351,5,3),(791,570,5,2),(352,239,6,1),(674,453,6,2),(792,571,7,2),(150,96,8,3),(384,262,8,1),(675,454,8,2),(132,85,9,1),(327,222,11,1),(601,404,12,3),(603,405,12,3),(301,202,13,3),(67,40,14,1),(359,244,14,1),(770,549,14,2),(260,174,15,3),(430,294,15,1),(438,299,15,1),(413,282,16,1),(676,455,16,2),(44,26,17,1),(617,414,17,3),(128,82,18,3),(227,150,18,1),(415,283,18,3),(707,486,18,2),(737,516,18,2),(364,247,19,3),(526,355,19,1),(677,456,19,2),(145,93,20,3),(3,2,21,3),(119,77,21,1),(691,470,21,2),(721,500,21,2),(55,32,22,3),(148,95,22,3),(453,308,22,3),(608,408,22,1),(152,97,23,1),(225,149,24,3),(623,418,24,1),(657,442,24,3),(783,562,24,2),(349,237,25,1),(38,22,26,3),(219,144,26,3),(297,199,26,3),(366,248,26,3),(510,344,27,1),(702,481,27,2),(732,511,27,2),(79,48,28,1),(172,109,28,1),(191,121,28,1),(167,106,29,1),(631,423,29,3),(635,426,29,1),(97,61,30,3),(156,99,30,1),(340,231,30,1),(483,327,30,1),(701,480,30,2),(731,510,30,2),(708,487,31,2),(738,517,31,2),(777,556,31,2),(48,28,32,3),(194,123,32,3),(683,462,32,2),(684,463,32,2),(84,51,33,3),(113,73,33,1),(103,66,34,1),(376,256,34,1),(599,403,34,1),(680,459,34,2),(711,490,34,2),(741,520,34,2),(71,43,35,3),(115,74,35,1),(405,276,35,1),(505,340,35,1),(30,18,36,3),(245,162,36,3),(272,181,36,3),(343,233,36,3),(361,245,36,1),(775,554,36,2),(24,15,37,1),(537,361,37,3),(540,363,37,3),(788,567,37,2),(20,13,38,1),(282,188,38,1),(433,296,38,1),(784,563,38,2),(17,11,39,1),(28,17,39,3),(183,116,39,1),(524,354,39,1),(606,407,39,1),(700,479,39,2),(730,509,39,2),(768,547,40,2),(139,89,41,1),(535,360,41,1),(76,46,42,1),(137,88,43,1),(441,301,43,2),(443,302,43,2),(444,303,43,2),(446,304,43,2),(448,305,43,2),(449,306,43,2),(451,307,43,2),(452,308,43,2),(454,309,43,2),(455,310,43,2),(456,311,43,2),(458,312,43,2),(459,313,43,2),(461,314,43,2),(463,315,43,2),(465,316,43,2),(466,317,43,2),(468,318,43,2),(470,319,43,2),(472,320,43,2),(473,321,43,2),(475,322,43,2),(477,323,43,2),(478,324,43,2),(480,325,43,2),(481,326,43,2),(482,327,43,2),(484,328,43,2),(486,329,43,2),(488,330,43,2),(490,331,43,1),(489,331,43,2),(491,332,43,2),(493,333,43,2),(495,334,43,2),(496,335,43,2),(497,336,43,2),(499,337,43,2),(501,338,43,2),(502,339,43,2),(504,340,43,2),(506,341,43,2),(507,342,43,2),(508,343,43,2),(509,344,43,2),(511,345,43,2),(512,346,43,2),(513,347,43,2),(514,348,43,2),(516,349,43,2),(518,350,43,2),(519,351,43,2),(521,352,43,2),(522,353,43,2),(523,354,43,2),(525,355,43,2),(527,356,43,2),(529,357,43,2),(530,358,43,2),(532,359,43,2),(534,360,43,2),(536,361,43,2),(538,362,43,2),(539,363,43,2),(541,364,43,2),(543,365,43,2),(544,366,43,2),(545,367,43,2),(547,368,43,2),(549,369,43,2),(550,370,43,2),(552,371,43,2),(553,372,43,2),(555,373,43,2),(557,374,43,2),(559,375,43,2),(560,376,43,2),(561,377,43,2),(563,378,43,2),(565,379,43,2),(567,380,43,2),(568,381,43,2),(569,382,43,2),(571,383,43,2),(573,384,43,2),(574,385,43,2),(575,386,43,2),(576,387,43,2),(577,388,43,2),(578,389,43,2),(580,390,43,2),(581,391,43,2),(583,392,43,2),(585,393,43,2),(586,394,43,2),(587,395,43,2),(588,396,43,2),(590,397,43,2),(591,398,43,2),(593,399,43,2),(595,400,43,2),(596,401,43,2),(597,402,43,2),(598,403,43,2),(600,404,43,2),(602,405,43,2),(604,406,43,2),(605,407,43,2),(607,408,43,2),(609,409,43,2),(610,410,43,2),(611,411,43,2),(613,412,43,2),(615,413,43,2),(616,414,43,2),(618,415,43,2),(619,416,43,2),(621,417,43,2),(622,418,43,2),(624,419,43,2),(625,420,43,2),(626,421,43,2),(628,422,43,2),(630,423,43,2),(632,424,43,2),(633,425,43,2),(634,426,43,2),(636,427,43,2),(637,428,43,2),(639,429,43,2),(640,430,43,2),(641,431,43,2),(642,432,43,2),(643,433,43,2),(645,434,43,2),(646,435,43,2),(647,436,43,2),(648,437,43,2),(650,438,43,2),(652,439,43,2),(653,440,43,2),(654,441,43,2),(656,442,43,2),(658,443,43,2),(660,444,43,2),(662,445,43,2),(663,446,43,2),(665,447,43,2),(666,448,43,2),(668,449,43,2),(670,450,43,2),(682,461,43,2),(125,80,44,1),(142,91,44,1),(460,313,44,1),(551,370,45,1),(589,396,45,1),(229,151,46,1),(661,444,46,3),(667,448,46,3),(170,108,47,3),(209,136,47,1),(629,422,47,1),(696,475,47,2),(726,505,47,2),(51,30,49,3),(325,221,49,1),(46,27,50,3),(440,300,50,3),(542,364,50,3),(548,368,50,3),(564,378,50,1),(579,389,51,3),(34,20,52,1),(689,468,52,2),(719,498,52,2),(409,279,53,3),(462,314,53,3),(290,194,54,1),(479,324,54,1),(531,358,54,1),(570,382,54,3),(685,464,54,2),(715,494,54,2),(121,78,55,3),(188,119,55,1),(457,311,55,3),(651,438,55,3),(305,205,56,1),(394,270,56,1),(528,356,56,1),(614,412,56,1),(199,127,57,1),(180,114,58,3),(270,180,58,3),(485,328,58,3),(638,428,58,1),(713,492,58,2),(743,522,58,2),(110,71,59,1),(354,240,59,3),(422,288,59,1),(427,292,59,1),(445,303,59,1),(500,337,59,3),(712,491,59,2),(742,521,59,2),(435,297,60,3),(474,321,60,3),(515,348,60,3),(90,55,61,3),(252,168,61,3),(655,441,61,3),(769,548,61,2),(6,4,62,3),(469,318,62,3),(58,34,64,3),(212,138,64,3),(286,191,64,3),(584,392,64,1),(32,19,65,3),(321,218,65,1),(566,379,65,3),(65,39,66,3),(185,117,66,3),(293,196,66,3),(627,421,66,1),(517,349,67,3),(239,157,68,3),(420,287,68,3),(330,224,69,1),(503,339,69,1),(464,315,70,1),(681,460,71,2),(123,79,72,3),(594,399,72,1),(664,446,72,3),(757,536,72,2),(36,21,73,1),(163,103,73,1),(345,234,73,3),(396,271,73,3),(764,543,73,2),(15,10,74,3),(533,359,74,3),(554,372,74,1),(705,484,74,2),(735,514,74,2),(450,306,75,3),(498,336,75,3),(592,398,75,1),(310,209,77,3),(108,70,78,3),(442,301,78,1),(572,383,78,3),(771,550,78,2),(53,31,79,3),(82,50,79,1),(267,178,79,1),(378,257,79,1),(476,322,80,3),(760,539,80,2),(13,9,81,1),(22,14,81,3),(659,443,81,3),(74,45,82,3),(237,156,82,1),(277,184,82,1),(556,373,82,1),(678,457,82,2),(756,535,82,2),(562,377,83,3),(690,469,83,2),(720,499,83,2),(546,367,84,1),(620,416,84,1),(780,559,86,2),(337,229,87,3),(494,333,87,3),(467,317,88,1),(644,433,88,1),(694,473,88,2),(724,503,88,2),(790,569,88,2),(42,25,89,1),(401,274,89,1),(471,319,89,3),(312,210,90,3),(398,272,90,1),(612,411,90,3),(178,113,91,1),(233,154,91,3),(370,251,91,3),(558,374,91,1),(671,450,91,3),(785,564,91,2),(135,87,92,1),(228,151,92,2),(230,152,92,2),(231,153,92,2),(232,154,92,2),(234,155,92,2),(236,156,92,2),(238,157,92,2),(240,158,92,2),(241,159,92,2),(242,160,92,2),(243,161,92,2),(244,162,92,2),(246,163,92,2),(247,164,92,2),(248,165,92,2),(249,166,92,2),(250,167,92,2),(251,168,92,2),(253,169,92,2),(255,170,92,2),(256,171,92,2),(257,172,92,2),(258,173,92,2),(259,174,92,2),(261,175,92,2),(263,176,92,2),(264,177,92,2),(266,178,92,2),(268,179,92,2),(269,180,92,2),(271,181,92,2),(273,182,92,2),(275,183,92,2),(276,184,92,2),(278,185,92,2),(279,186,92,2),(280,187,92,2),(281,188,92,2),(283,189,92,2),(284,190,92,2),(285,191,92,2),(287,192,92,2),(288,193,92,2),(289,194,92,2),(291,195,92,2),(292,196,92,2),(294,197,92,2),(295,198,92,2),(296,199,92,2),(298,200,92,2),(299,201,92,2),(300,202,92,2),(302,203,92,2),(303,204,92,2),(304,205,92,2),(306,206,92,2),(307,207,92,2),(308,208,92,2),(309,209,92,2),(311,210,92,2),(313,211,92,2),(314,212,92,2),(315,213,92,2),(316,214,92,2),(317,215,92,2),(318,216,92,2),(319,217,92,2),(320,218,92,2),(322,219,92,2),(323,220,92,2),(324,221,92,2),(326,222,92,2),(328,223,92,2),(329,224,92,2),(331,225,92,2),(332,226,92,2),(333,227,92,2),(335,228,92,1),(334,228,92,2),(336,229,92,2),(338,230,92,2),(339,231,92,2),(341,232,92,2),(342,233,92,2),(344,234,92,2),(346,235,92,2),(347,236,92,2),(348,237,92,2),(350,238,92,2),(351,239,92,2),(353,240,92,2),(355,241,92,2),(356,242,92,2),(357,243,92,2),(358,244,92,2),(360,245,92,2),(362,246,92,2),(363,247,92,2),(365,248,92,2),(367,249,92,2),(368,250,92,2),(369,251,92,2),(371,252,92,2),(372,253,92,2),(373,254,92,2),(374,255,92,2),(375,256,92,2),(377,257,92,2),(379,258,92,2),(380,259,92,2),(381,260,92,2),(382,261,92,2),(383,262,92,2),(385,263,92,2),(387,264,92,2),(388,265,92,2),(389,266,92,2),(390,267,92,2),(391,268,92,2),(392,269,92,2),(393,270,92,2),(395,271,92,2),(397,272,92,2),(399,273,92,2),(400,274,92,2),(402,275,92,2),(404,276,92,2),(406,277,92,2),(407,278,92,2),(408,279,92,2),(410,280,92,2),(411,281,92,2),(412,282,92,2),(414,283,92,2),(416,284,92,2),(417,285,92,2),(418,286,92,2),(419,287,92,2),(421,288,92,2),(423,289,92,2),(424,290,92,2),(425,291,92,2),(426,292,92,2),(428,293,92,2),(429,294,92,2),(431,295,92,2),(432,296,92,2),(434,297,92,2),(436,298,92,2),(437,299,92,2),(439,300,92,2),(679,458,92,2),(789,568,92,2),(158,100,94,1),(403,275,94,1),(582,391,94,1),(62,37,96,1),(10,7,97,3),(174,110,97,3),(262,175,97,3),(794,573,97,2),(487,329,100,1),(749,528,100,2),(160,101,101,1),(254,169,101,3),(447,304,101,3),(762,541,104,2),(748,527,105,2),(795,574,106,2),(763,542,108,2),(1,1,109,2),(2,2,109,2),(4,3,109,2),(5,4,109,2),(7,5,109,2),(8,6,109,2),(9,7,109,2),(11,8,109,2),(12,9,109,2),(14,10,109,2),(16,11,109,2),(18,12,109,2),(19,13,109,2),(21,14,109,2),(23,15,109,2),(25,16,109,2),(27,17,109,2),(29,18,109,2),(31,19,109,2),(33,20,109,2),(35,21,109,2),(37,22,109,2),(39,23,109,2),(40,24,109,2),(41,25,109,2),(43,26,109,2),(45,27,109,2),(47,28,109,2),(49,29,109,2),(50,30,109,2),(52,31,109,2),(54,32,109,2),(56,33,109,2),(57,34,109,2),(59,35,109,2),(60,36,109,2),(61,37,109,2),(63,38,109,2),(64,39,109,2),(66,40,109,2),(68,41,109,2),(69,42,109,2),(70,43,109,2),(72,44,109,2),(73,45,109,2),(75,46,109,2),(77,47,109,2),(78,48,109,2),(80,49,109,2),(81,50,109,2),(83,51,109,2),(85,52,109,2),(86,53,109,2),(87,54,109,2),(89,55,109,2),(91,56,109,2),(92,57,109,2),(93,58,109,2),(94,59,109,2),(95,60,109,2),(96,61,109,2),(98,62,109,2),(99,63,109,2),(100,64,109,2),(101,65,109,2),(102,66,109,2),(104,67,109,2),(105,68,109,2),(106,69,109,2),(107,70,109,2),(109,71,109,2),(111,72,109,2),(112,73,109,2),(114,74,109,2),(116,75,109,2),(117,76,109,2),(118,77,109,2),(120,78,109,2),(122,79,109,2),(124,80,109,2),(126,81,109,2),(127,82,109,2),(129,83,109,2),(130,84,109,2),(131,85,109,2),(133,86,109,2),(134,87,109,2),(136,88,109,2),(138,89,109,2),(140,90,109,2),(141,91,109,2),(143,92,109,2),(144,93,109,2),(146,94,109,2),(147,95,109,2),(149,96,109,2),(151,97,109,2),(153,98,109,2),(155,99,109,2),(157,100,109,2),(159,101,109,2),(161,102,109,2),(162,103,109,2),(164,104,109,2),(165,105,109,2),(166,106,109,2),(168,107,109,2),(169,108,109,2),(171,109,109,2),(173,110,109,2),(175,111,109,2),(176,112,109,2),(177,113,109,2),(179,114,109,2),(181,115,109,2),(182,116,109,2),(184,117,109,2),(186,118,109,2),(187,119,109,2),(189,120,109,2),(190,121,109,2),(192,122,109,2),(193,123,109,2),(195,124,109,2),(196,125,109,2),(197,126,109,2),(198,127,109,2),(200,128,109,2),(201,129,109,2),(202,130,109,2),(203,131,109,2),(204,132,109,2),(205,133,109,2),(206,134,109,2),(207,135,109,2),(208,136,109,2),(210,137,109,2),(211,138,109,2),(213,139,109,2),(214,140,109,2),(215,141,109,2),(216,142,109,2),(217,143,109,2),(218,144,109,2),(220,145,109,2),(221,146,109,2),(222,147,109,2),(223,148,109,2),(224,149,109,2),(226,150,109,2),(695,474,112,2),(725,504,112,2),(714,493,114,2),(744,523,114,2),(709,488,120,2),(739,518,120,2),(766,545,121,2),(779,558,122,2),(776,555,123,2),(773,552,124,2),(706,485,125,2),(736,515,125,2),(781,560,127,2),(699,478,128,2),(729,508,128,2),(692,471,129,2),(722,501,129,2),(767,546,129,2),(697,476,130,2),(727,506,130,2),(703,482,132,2),(733,512,132,2),(761,540,133,2),(752,531,134,2),(710,489,137,2),(740,519,137,2),(782,561,137,2),(772,551,140,2),(786,565,142,2),(759,538,149,2),(688,467,150,2),(718,497,150,2),(787,566,157,2),(774,553,161,2),(698,477,162,2),(728,507,162,2),(765,544,167,2),(686,465,171,2),(716,495,171,2),(793,572,173,2),(753,532,174,2),(747,526,175,2),(751,530,177,2),(778,557,178,2),(750,529,184,2),(746,525,187,2),(754,533,195,2),(687,466,197,2),(717,496,197,2),(704,483,201,2),(734,513,201,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,112,1,1,0,'896J Green Blvd SW',896,'J',NULL,'Green','Blvd','SW',NULL,NULL,NULL,NULL,'Woodward',1,1035,NULL,'73801',NULL,1228,36.433665,-99.40838,0,NULL,NULL,NULL),(2,113,1,1,0,'572B Jackson Dr NW',572,'B',NULL,'Jackson','Dr','NW',NULL,NULL,NULL,NULL,'Bon Air',1,1000,NULL,'35032',NULL,1228,33.256886,-86.338572,0,NULL,NULL,NULL),(3,169,1,1,0,'391Q States Ave E',391,'Q',NULL,'States','Ave','E',NULL,NULL,NULL,NULL,'Willard',1,1034,NULL,'44890',NULL,1228,41.073672,-82.72435,0,NULL,NULL,NULL),(4,125,1,1,0,'505Y Bay Blvd W',505,'Y',NULL,'Bay','Blvd','W',NULL,NULL,NULL,NULL,'Harriet',1,1003,NULL,'72639',NULL,1228,36.021569,-92.48605,0,NULL,NULL,NULL),(5,177,1,1,0,'5P Van Ness Rd SW',5,'P',NULL,'Van Ness','Rd','SW',NULL,NULL,NULL,NULL,'Michigan City',1,1023,NULL,'38647',NULL,1228,34.975571,-89.25982,0,NULL,NULL,NULL),(6,159,1,1,0,'310W Bay Ln SE',310,'W',NULL,'Bay','Ln','SE',NULL,NULL,NULL,NULL,'Mountain Top',1,1037,NULL,'18707',NULL,1228,41.133482,-75.9194,0,NULL,NULL,NULL),(7,92,1,1,0,'770V Dowlen Blvd S',770,'V',NULL,'Dowlen','Blvd','S',NULL,NULL,NULL,NULL,'Choctaw',1,1003,NULL,'72028',NULL,1228,35.57727,-92.545572,0,NULL,NULL,NULL),(8,44,1,1,0,'808K Dowlen St S',808,'K',NULL,'Dowlen','St','S',NULL,NULL,NULL,NULL,'Amity',1,1037,NULL,'19815',NULL,1228,40.318615,-75.755807,0,NULL,NULL,NULL),(9,93,1,1,0,'761M Van Ness Dr E',761,'M',NULL,'Van Ness','Dr','E',NULL,NULL,NULL,NULL,'Jamieson',1,1036,NULL,'97909',NULL,1228,44.207973,-117.45677,0,NULL,NULL,NULL),(10,89,1,1,0,'871L Caulder Path SE',871,'L',NULL,'Caulder','Path','SE',NULL,NULL,NULL,NULL,'Atlanta',1,1009,NULL,'31199',NULL,1228,33.844371,-84.47405,0,NULL,NULL,NULL),(11,4,1,1,0,'344V Van Ness Pl S',344,'V',NULL,'Van Ness','Pl','S',NULL,NULL,NULL,NULL,'Vail',1,1014,NULL,'51465',NULL,1228,42.072884,-95.20261,0,NULL,NULL,NULL),(12,164,1,1,0,'397F Beech Rd N',397,'F',NULL,'Beech','Rd','N',NULL,NULL,NULL,NULL,'Newport',1,1028,NULL,'03773',NULL,1228,43.358339,-72.18321,0,NULL,NULL,NULL),(13,90,1,1,0,'546K Jackson Path W',546,'K',NULL,'Jackson','Path','W',NULL,NULL,NULL,NULL,'Adjuntas',1,1056,NULL,'00601',NULL,1228,18.180103,-66.74947,0,NULL,NULL,NULL),(14,67,1,1,0,'160W Martin Luther King Ave SE',160,'W',NULL,'Martin Luther King','Ave','SE',NULL,NULL,NULL,NULL,'Albany',1,1031,NULL,'12262',NULL,1228,42.614852,-73.970812,0,NULL,NULL,NULL),(15,151,1,1,0,'959S Lincoln Ln S',959,'S',NULL,'Lincoln','Ln','S',NULL,NULL,NULL,NULL,'Barneveld',1,1031,NULL,'13304',NULL,1228,43.242724,-75.1659,0,NULL,NULL,NULL),(16,82,1,1,0,'376M Caulder Pl SW',376,'M',NULL,'Caulder','Pl','SW',NULL,NULL,NULL,NULL,'Saint Ann',1,1024,NULL,'63074',NULL,1228,38.727184,-90.38551,0,NULL,NULL,NULL),(17,57,1,1,0,'401I Pine Ave W',401,'I',NULL,'Pine','Ave','W',NULL,NULL,NULL,NULL,'Lexington',1,1016,NULL,'40536',NULL,1228,38.032075,-84.508361,0,NULL,NULL,NULL),(18,66,1,1,0,'995U Lincoln Blvd SE',995,'U',NULL,'Lincoln','Blvd','SE',NULL,NULL,NULL,NULL,'Turney',1,1024,NULL,'64493',NULL,1228,39.634086,-94.31921,0,NULL,NULL,NULL),(19,188,1,1,0,'595I Jackson Path SE',595,'I',NULL,'Jackson','Path','SE',NULL,NULL,NULL,NULL,'Quantico',1,1045,NULL,'22134',NULL,1228,38.503139,-77.33372,0,NULL,NULL,NULL),(20,160,1,1,0,'802T Main Way NW',802,'T',NULL,'Main','Way','NW',NULL,NULL,NULL,NULL,'Gay',1,1009,NULL,'30218',NULL,1228,33.121379,-84.58776,0,NULL,NULL,NULL),(21,28,1,1,0,'32G Jackson Ln S',32,'G',NULL,'Jackson','Ln','S',NULL,NULL,NULL,NULL,'The Plains',1,1045,NULL,'20198',NULL,1228,38.889848,-77.75907,0,NULL,NULL,NULL),(22,70,1,1,0,'674J Van Ness Path E',674,'J',NULL,'Van Ness','Path','E',NULL,NULL,NULL,NULL,'Sidney',1,1031,NULL,'13838',NULL,1228,42.304177,-75.39563,0,NULL,NULL,NULL),(23,156,1,1,0,'102J Northpoint Path S',102,'J',NULL,'Northpoint','Path','S',NULL,NULL,NULL,NULL,'Brownsville',1,1048,NULL,'53006',NULL,1228,43.623996,-88.51089,0,NULL,NULL,NULL),(24,166,1,1,0,'848G Woodbridge Rd E',848,'G',NULL,'Woodbridge','Rd','E',NULL,NULL,NULL,NULL,'Baskerville',1,1045,NULL,'23915',NULL,1228,36.694531,-78.28794,0,NULL,NULL,NULL),(25,190,1,1,0,'794T Beech Blvd S',794,'T',NULL,'Beech','Blvd','S',NULL,NULL,NULL,NULL,'Denver',1,1005,NULL,'80203',NULL,1228,39.731286,-104.98306,0,NULL,NULL,NULL),(26,49,1,1,0,'966V Martin Luther King Rd NE',966,'V',NULL,'Martin Luther King','Rd','NE',NULL,NULL,NULL,NULL,'Simpson',1,1012,NULL,'62985',NULL,1228,37.458878,-88.69466,0,NULL,NULL,NULL),(27,196,1,1,0,'728D Maple Rd SW',728,'D',NULL,'Maple','Rd','SW',NULL,NULL,NULL,NULL,'Goldsboro',1,1019,NULL,'21636',NULL,1228,39.026033,-75.7936,0,NULL,NULL,NULL),(28,173,1,1,0,'283L Pine Path N',283,'L',NULL,'Pine','Path','N',NULL,NULL,NULL,NULL,'Hall Summit',1,1017,NULL,'71034',NULL,1228,32.176112,-93.30398,0,NULL,NULL,NULL),(29,99,1,1,0,'261I Pine Blvd SW',261,'I',NULL,'Pine','Blvd','SW',NULL,NULL,NULL,NULL,'King City',1,1004,NULL,'93930',NULL,1228,36.21106,-121.05986,0,NULL,NULL,NULL),(30,128,1,1,0,'168K Green Ave NW',168,'K',NULL,'Green','Ave','NW',NULL,NULL,NULL,NULL,'Alamance',1,1032,NULL,'27201',NULL,1228,36.031836,-79.485643,0,NULL,NULL,NULL),(31,110,1,1,0,'49A Pine Dr SE',49,'A',NULL,'Pine','Dr','SE',NULL,NULL,NULL,NULL,'Chaffee',1,1024,NULL,'63740',NULL,1228,37.182556,-89.68379,0,NULL,NULL,NULL),(32,76,1,1,0,'162C College Blvd NE',162,'C',NULL,'College','Blvd','NE',NULL,NULL,NULL,NULL,'Richmond',1,1013,NULL,'47375',NULL,1228,39.860417,-85.015983,0,NULL,NULL,NULL),(33,77,1,1,0,'495K Caulder Path W',495,'K',NULL,'Caulder','Path','W',NULL,NULL,NULL,NULL,'Kittrell',1,1032,NULL,'27544',NULL,1228,36.215193,-78.43861,0,NULL,NULL,NULL),(34,114,1,1,0,'697L Bay Ave SW',697,'L',NULL,'Bay','Ave','SW',NULL,NULL,NULL,NULL,'Mansfield',1,1041,NULL,'38236',NULL,1228,36.167573,-88.26817,0,NULL,NULL,NULL),(35,11,1,1,0,'983K Woodbridge Ln NE',983,'K',NULL,'Woodbridge','Ln','NE',NULL,NULL,NULL,NULL,'Visalia',1,1004,NULL,'93291',NULL,1228,36.351009,-119.33655,0,NULL,NULL,NULL),(36,168,1,1,0,'392A Beech St W',392,'A',NULL,'Beech','St','W',NULL,NULL,NULL,NULL,'Corinth',1,1042,NULL,'76210',NULL,1228,33.143186,-97.088337,0,NULL,NULL,NULL),(37,192,1,1,0,'893L Martin Luther King Path NE',893,'L',NULL,'Martin Luther King','Path','NE',NULL,NULL,NULL,NULL,'Peoria',1,1012,NULL,'61629',NULL,1228,40.692037,-89.588747,0,NULL,NULL,NULL),(38,63,1,1,0,'338W Van Ness Way N',338,'W',NULL,'Van Ness','Way','N',NULL,NULL,NULL,NULL,'Athens',1,1021,NULL,'49011',NULL,1228,42.089314,-85.23333,0,NULL,NULL,NULL),(39,18,1,1,0,'55N Van Ness Way E',55,'N',NULL,'Van Ness','Way','E',NULL,NULL,NULL,NULL,'Locust Grove',1,1009,NULL,'30248',NULL,1228,33.351277,-84.10645,0,NULL,NULL,NULL),(40,174,1,1,0,'147O Woodbridge St W',147,'O',NULL,'Woodbridge','St','W',NULL,NULL,NULL,NULL,'Elkins',1,1003,NULL,'72727',NULL,1228,35.970492,-93.94296,0,NULL,NULL,NULL),(41,171,1,1,0,'274S Jackson Pl SW',274,'S',NULL,'Jackson','Pl','SW',NULL,NULL,NULL,NULL,'Westville',1,1039,NULL,'29175',NULL,1228,34.443733,-80.60138,0,NULL,NULL,NULL),(42,87,1,1,0,'275E Bay Pl W',275,'E',NULL,'Bay','Pl','W',NULL,NULL,NULL,NULL,'Sinclair',1,1049,NULL,'82354',NULL,1228,41.778225,-107.119867,0,NULL,NULL,NULL),(43,185,1,1,0,'359D El Camino Ln S',359,'D',NULL,'El Camino','Ln','S',NULL,NULL,NULL,NULL,'Fresno',1,1004,NULL,'93726',NULL,1228,36.795249,-119.76293,0,NULL,NULL,NULL),(44,94,1,1,0,'156K Van Ness Blvd E',156,'K',NULL,'Van Ness','Blvd','E',NULL,NULL,NULL,NULL,'Courtland',1,1000,NULL,'35618',NULL,1228,34.665033,-87.30978,0,NULL,NULL,NULL),(45,41,1,1,0,'928E Northpoint Pl W',928,'E',NULL,'Northpoint','Pl','W',NULL,NULL,NULL,NULL,'Fort Collins',1,1005,NULL,'80522',NULL,1228,40.642907,-105.057005,0,NULL,NULL,NULL),(46,193,1,1,0,'118J Caulder Blvd S',118,'J',NULL,'Caulder','Blvd','S',NULL,NULL,NULL,NULL,'Oak View',1,1004,NULL,'93022',NULL,1228,34.401466,-119.30082,0,NULL,NULL,NULL),(47,100,1,1,0,'244E Beech Path S',244,'E',NULL,'Beech','Path','S',NULL,NULL,NULL,NULL,'Dycusburg',1,1016,NULL,'42037',NULL,1228,37.157866,-88.183598,0,NULL,NULL,NULL),(48,5,1,1,0,'900A Beech Way N',900,'A',NULL,'Beech','Way','N',NULL,NULL,NULL,NULL,'Sherwood',1,1048,NULL,'54169',NULL,1228,44.173538,-88.27525,0,NULL,NULL,NULL),(49,200,1,1,0,'757Q Cadell Way NE',757,'Q',NULL,'Cadell','Way','NE',NULL,NULL,NULL,NULL,'Hico',1,1042,NULL,'76457',NULL,1228,31.944207,-98.02763,0,NULL,NULL,NULL),(50,21,1,1,0,'425M Cadell Path E',425,'M',NULL,'Cadell','Path','E',NULL,NULL,NULL,NULL,'Wallula',1,1046,NULL,'99363',NULL,1228,46.059013,-118.88468,0,NULL,NULL,NULL),(51,22,1,1,0,'67N Bay Rd NE',67,'N',NULL,'Bay','Rd','NE',NULL,NULL,NULL,NULL,'Topton',1,1032,NULL,'28781',NULL,1228,35.241747,-83.62998,0,NULL,NULL,NULL),(52,117,1,1,0,'284R Second Ave S',284,'R',NULL,'Second','Ave','S',NULL,NULL,NULL,NULL,'Kerens',1,1047,NULL,'26276',NULL,1228,39.019639,-79.74614,0,NULL,NULL,NULL),(53,153,1,1,0,'295X Martin Luther King Dr N',295,'X',NULL,'Martin Luther King','Dr','N',NULL,NULL,NULL,NULL,'Rhinehart',1,1017,NULL,'71363',NULL,1228,31.596272,-91.77941,0,NULL,NULL,NULL),(54,86,1,1,0,'45K Van Ness Way NE',45,'K',NULL,'Van Ness','Way','NE',NULL,NULL,NULL,NULL,'Coronado',1,1004,NULL,'92178',NULL,1228,33.016928,-116.846046,0,NULL,NULL,NULL),(55,65,1,1,0,'69G Northpoint Way E',69,'G',NULL,'Northpoint','Way','E',NULL,NULL,NULL,NULL,'Ewing',1,1016,NULL,'41039',NULL,1228,38.424954,-83.86286,0,NULL,NULL,NULL),(56,73,1,1,0,'448F Dowlen Pl NE',448,'F',NULL,'Dowlen','Pl','NE',NULL,NULL,NULL,NULL,'Chiloquin',1,1036,NULL,'97264',NULL,1228,42.577154,-121.860525,0,NULL,NULL,NULL),(57,106,1,1,0,'304H College Ln N',304,'H',NULL,'College','Ln','N',NULL,NULL,NULL,NULL,'Mountain Home',1,1003,NULL,'72653',NULL,1228,36.329026,-92.35781,0,NULL,NULL,NULL),(58,183,1,1,0,'552U El Camino Dr NE',552,'U',NULL,'El Camino','Dr','NE',NULL,NULL,NULL,NULL,'Bahama',1,1032,NULL,'27503',NULL,1228,36.158344,-78.87419,0,NULL,NULL,NULL),(59,178,1,1,0,'168W Woodbridge Way N',168,'W',NULL,'Woodbridge','Way','N',NULL,NULL,NULL,NULL,'Glyndon',1,1019,NULL,'21071',NULL,1228,39.472604,-76.81424,0,NULL,NULL,NULL),(60,198,1,1,0,'974Z Woodbridge Rd W',974,'Z',NULL,'Woodbridge','Rd','W',NULL,NULL,NULL,NULL,'Potrero',1,1004,NULL,'91963',NULL,1228,32.620782,-116.60671,0,NULL,NULL,NULL),(61,78,1,1,0,'72B Van Ness Dr W',72,'B',NULL,'Van Ness','Dr','W',NULL,NULL,NULL,NULL,'Glenarm',1,1012,NULL,'62536',NULL,1228,39.642083,-89.65936,0,NULL,NULL,NULL),(62,148,1,1,0,'7C Lincoln Ave W',7,'C',NULL,'Lincoln','Ave','W',NULL,NULL,NULL,NULL,'Sturkie',1,1003,NULL,'72578',NULL,1228,36.479925,-91.8863,0,NULL,NULL,NULL),(63,161,1,1,0,'712D Green Ave SE',712,'D',NULL,'Green','Ave','SE',NULL,NULL,NULL,NULL,'Whiteclay',1,1026,NULL,'69365',NULL,1228,42.963117,-102.51068,0,NULL,NULL,NULL),(64,101,1,1,0,'335R Woodbridge Ln S',335,'R',NULL,'Woodbridge','Ln','S',NULL,NULL,NULL,NULL,'Philadelphia',1,1037,NULL,'19192',NULL,1228,39.951112,-75.167622,0,NULL,NULL,NULL),(65,6,1,1,0,'2B El Camino Path NE',2,'B',NULL,'El Camino','Path','NE',NULL,NULL,NULL,NULL,'Somerset',1,1029,NULL,'08875',NULL,1228,40.580918,-74.711731,0,NULL,NULL,NULL),(66,138,1,1,0,'98N El Camino Dr NE',98,'N',NULL,'El Camino','Dr','NE',NULL,NULL,NULL,NULL,'Sharon',1,1020,NULL,'02067',NULL,1228,42.113749,-71.17923,0,NULL,NULL,NULL),(67,17,1,1,0,'338L Bay Dr SW',338,'L',NULL,'Bay','Dr','SW',NULL,NULL,NULL,NULL,'Urbana',1,1003,NULL,'71768',NULL,1228,33.198024,-92.52891,0,NULL,NULL,NULL),(68,163,1,1,0,'999T Dowlen Ln NW',999,'T',NULL,'Dowlen','Ln','NW',NULL,NULL,NULL,NULL,'South Portland',1,1018,NULL,'04106',NULL,1228,43.631549,-70.27272,0,NULL,NULL,NULL),(69,33,1,1,0,'720S Pine Ln N',720,'S',NULL,'Pine','Ln','N',NULL,NULL,NULL,NULL,'Kansas City',1,1024,NULL,'64137',NULL,1228,38.929356,-94.53932,0,NULL,NULL,NULL),(70,23,1,1,0,'71A States Dr S',71,'A',NULL,'States','Dr','S',NULL,NULL,NULL,NULL,'Snoqualmie',1,1046,NULL,'98065',NULL,1228,47.530639,-121.83053,0,NULL,NULL,NULL),(71,157,3,1,0,'216M Second Path SE',216,'M',NULL,'Second','Path','SE',NULL,'Payables Dept.',NULL,NULL,'Yale',1,1035,NULL,'74085',NULL,1228,36.10865,-96.70231,0,NULL,NULL,NULL),(72,152,2,1,0,'216M Second Path SE',216,'M',NULL,'Second','Path','SE',NULL,'Payables Dept.',NULL,NULL,'Yale',1,1035,NULL,'74085',NULL,1228,36.10865,-96.70231,0,NULL,NULL,71),(73,58,3,1,0,'420J Bay Ave NW',420,'J',NULL,'Bay','Ave','NW',NULL,'Attn: Development',NULL,NULL,'Sarcoxie',1,1024,NULL,'64862',NULL,1228,37.086771,-94.12545,0,NULL,NULL,NULL),(74,48,2,1,0,'420J Bay Ave NW',420,'J',NULL,'Bay','Ave','NW',NULL,'Attn: Development',NULL,NULL,'Sarcoxie',1,1024,NULL,'64862',NULL,1228,37.086771,-94.12545,0,NULL,NULL,73),(75,132,3,1,0,'455F Jackson Pl NE',455,'F',NULL,'Jackson','Pl','NE',NULL,'Receiving',NULL,NULL,'Great River',1,1031,NULL,'11739',NULL,1228,40.922326,-72.637078,0,NULL,NULL,NULL),(76,46,2,1,0,'455F Jackson Pl NE',455,'F',NULL,'Jackson','Pl','NE',NULL,'Receiving',NULL,NULL,'Great River',1,1031,NULL,'11739',NULL,1228,40.922326,-72.637078,0,NULL,NULL,75),(77,8,3,1,0,'807Z El Camino Pl NE',807,'Z',NULL,'El Camino','Pl','NE',NULL,'Churchgate',NULL,NULL,'Tecumseh',1,1021,NULL,'49286',NULL,1228,42.012268,-83.93878,0,NULL,NULL,NULL),(78,187,3,1,0,'768J Bay Dr E',768,'J',NULL,'Bay','Dr','E',NULL,'Editorial Dept',NULL,NULL,'Fort Wayne',1,1013,NULL,'46825',NULL,1228,41.150677,-85.12181,0,NULL,NULL,NULL),(79,142,3,1,0,'249T Beech Pl N',249,'T',NULL,'Beech','Pl','N',NULL,'Urgent',NULL,NULL,'Marshall',1,1045,NULL,'20115',NULL,1228,38.855848,-77.88174,0,NULL,NULL,NULL),(80,192,2,0,0,'249T Beech Pl N',249,'T',NULL,'Beech','Pl','N',NULL,'Urgent',NULL,NULL,'Marshall',1,1045,NULL,'20115',NULL,1228,38.855848,-77.88174,0,NULL,NULL,79),(81,186,3,1,0,'446X States Pl N',446,'X',NULL,'States','Pl','N',NULL,'Attn: Accounting',NULL,NULL,'Ten Mile',1,1041,NULL,'37880',NULL,1228,35.684788,-84.67782,0,NULL,NULL,NULL),(82,180,2,1,0,'446X States Pl N',446,'X',NULL,'States','Pl','N',NULL,'Attn: Accounting',NULL,NULL,'Ten Mile',1,1041,NULL,'37880',NULL,1228,35.684788,-84.67782,0,NULL,NULL,81),(83,158,3,1,0,'675Y Maple Rd E',675,'Y',NULL,'Maple','Rd','E',NULL,'Mailstop 101',NULL,NULL,'Saint Petersburg',1,1008,NULL,'33713',NULL,1228,27.787904,-82.68039,0,NULL,NULL,NULL),(84,104,3,1,0,'165R Dowlen Path S',165,'R',NULL,'Dowlen','Path','S',NULL,'Payables Dept.',NULL,NULL,'Oceanside',1,1004,NULL,'92054',NULL,1228,33.202463,-117.36077,0,NULL,NULL,NULL),(85,74,2,1,0,'165R Dowlen Path S',165,'R',NULL,'Dowlen','Path','S',NULL,'Payables Dept.',NULL,NULL,'Oceanside',1,1004,NULL,'92054',NULL,1228,33.202463,-117.36077,0,NULL,NULL,84),(86,84,3,1,0,'95D Jackson Path W',95,'D',NULL,'Jackson','Path','W',NULL,'Payables Dept.',NULL,NULL,'Hollis Center',1,1018,NULL,'04042',NULL,1228,43.611238,-70.63265,0,NULL,NULL,NULL),(87,114,2,0,0,'95D Jackson Path W',95,'D',NULL,'Jackson','Path','W',NULL,'Payables Dept.',NULL,NULL,'Hollis Center',1,1018,NULL,'04042',NULL,1228,43.611238,-70.63265,0,NULL,NULL,86),(88,53,3,1,0,'761P Pine Rd SW',761,'P',NULL,'Pine','Rd','SW',NULL,'Editorial Dept',NULL,NULL,'Pleasant Hill',1,1034,NULL,'45359',NULL,1228,40.053483,-84.35202,0,NULL,NULL,NULL),(89,139,2,1,0,'761P Pine Rd SW',761,'P',NULL,'Pine','Rd','SW',NULL,'Editorial Dept',NULL,NULL,'Pleasant Hill',1,1034,NULL,'45359',NULL,1228,40.053483,-84.35202,0,NULL,NULL,88),(90,119,3,1,0,'287J El Camino Ave SE',287,'J',NULL,'El Camino','Ave','SE',NULL,'Subscriptions Dept',NULL,NULL,'Averill Park',1,1031,NULL,'12018',NULL,1228,42.62742,-73.53494,0,NULL,NULL,NULL),(91,64,3,1,0,'295B Martin Luther King Blvd NE',295,'B',NULL,'Martin Luther King','Blvd','NE',NULL,'Editorial Dept',NULL,NULL,'Clear Fork',1,1047,NULL,'24822',NULL,1228,37.62127,-81.69408,0,NULL,NULL,NULL),(92,67,2,0,0,'295B Martin Luther King Blvd NE',295,'B',NULL,'Martin Luther King','Blvd','NE',NULL,'Editorial Dept',NULL,NULL,'Clear Fork',1,1047,NULL,'24822',NULL,1228,37.62127,-81.69408,0,NULL,NULL,91),(93,98,3,1,0,'535B Martin Luther King Pl SW',535,'B',NULL,'Martin Luther King','Pl','SW',NULL,'Subscriptions Dept',NULL,NULL,'Great Falls',1,1025,NULL,'59405',NULL,1228,47.476152,-111.26909,0,NULL,NULL,NULL),(94,175,3,1,0,'175T Main Dr NW',175,'T',NULL,'Main','Dr','NW',NULL,'c/o PO Plus',NULL,NULL,'Suffolk',1,1045,NULL,'23434',NULL,1228,36.735893,-76.59656,0,NULL,NULL,NULL),(95,34,2,1,0,'175T Main Dr NW',175,'T',NULL,'Main','Dr','NW',NULL,'c/o PO Plus',NULL,NULL,'Suffolk',1,1045,NULL,'23434',NULL,1228,36.735893,-76.59656,0,NULL,NULL,94),(96,12,3,1,0,'432E College Ln SW',432,'E',NULL,'College','Ln','SW',NULL,'Donor Relations',NULL,NULL,'Willmar',1,1022,NULL,'56201',NULL,1228,45.118846,-95.04504,0,NULL,NULL,NULL),(97,109,2,1,0,'432E College Ln SW',432,'E',NULL,'College','Ln','SW',NULL,'Donor Relations',NULL,NULL,'Willmar',1,1022,NULL,'56201',NULL,1228,45.118846,-95.04504,0,NULL,NULL,96),(98,69,3,1,0,'976V Caulder Ln SE',976,'V',NULL,'Caulder','Ln','SE',NULL,'Churchgate',NULL,NULL,'Ossian',1,1013,NULL,'46777',NULL,1228,40.880397,-85.15936,0,NULL,NULL,NULL),(99,47,3,1,0,'24S Maple Dr SE',24,'S',NULL,'Maple','Dr','SE',NULL,'Community Relations',NULL,NULL,'Springfield',1,1012,NULL,'62776',NULL,1228,39.749457,-89.606017,0,NULL,NULL,NULL),(100,179,3,1,0,'120W States Path W',120,'W',NULL,'States','Path','W',NULL,'Community Relations',NULL,NULL,'Covington',1,1016,NULL,'41014',NULL,1228,39.067811,-84.5039,0,NULL,NULL,NULL),(101,162,2,1,0,'120W States Path W',120,'W',NULL,'States','Path','W',NULL,'Community Relations',NULL,NULL,'Covington',1,1016,NULL,'41014',NULL,1228,39.067811,-84.5039,0,NULL,NULL,100),(102,50,3,1,0,'193Z College Pl E',193,'Z',NULL,'College','Pl','E',NULL,'Receiving',NULL,NULL,'Hortense',1,1009,NULL,'31543',NULL,1228,31.320167,-81.85818,0,NULL,NULL,NULL),(103,29,1,1,0,'67N Bay Rd NE',67,'N',NULL,'Bay','Rd','NE',NULL,NULL,NULL,NULL,'Topton',1,1032,NULL,'28781',NULL,1228,35.241747,-83.62998,0,NULL,NULL,51),(104,136,1,1,0,'67N Bay Rd NE',67,'N',NULL,'Bay','Rd','NE',NULL,NULL,NULL,NULL,'Topton',1,1032,NULL,'28781',NULL,1228,35.241747,-83.62998,0,NULL,NULL,51),(105,74,1,0,0,'67N Bay Rd NE',67,'N',NULL,'Bay','Rd','NE',NULL,NULL,NULL,NULL,'Topton',1,1032,NULL,'28781',NULL,1228,35.241747,-83.62998,0,NULL,NULL,51),(106,24,1,1,0,'67N Bay Rd NE',67,'N',NULL,'Bay','Rd','NE',NULL,NULL,NULL,NULL,'Topton',1,1032,NULL,'28781',NULL,1228,35.241747,-83.62998,0,NULL,NULL,51),(107,72,1,1,0,'284R Second Ave S',284,'R',NULL,'Second','Ave','S',NULL,NULL,NULL,NULL,'Kerens',1,1047,NULL,'26276',NULL,1228,39.019639,-79.74614,0,NULL,NULL,52),(108,180,1,0,0,'284R Second Ave S',284,'R',NULL,'Second','Ave','S',NULL,NULL,NULL,NULL,'Kerens',1,1047,NULL,'26276',NULL,1228,39.019639,-79.74614,0,NULL,NULL,52),(109,115,1,1,0,'284R Second Ave S',284,'R',NULL,'Second','Ave','S',NULL,NULL,NULL,NULL,'Kerens',1,1047,NULL,'26276',NULL,1228,39.019639,-79.74614,0,NULL,NULL,52),(110,14,1,1,0,'284R Second Ave S',284,'R',NULL,'Second','Ave','S',NULL,NULL,NULL,NULL,'Kerens',1,1047,NULL,'26276',NULL,1228,39.019639,-79.74614,0,NULL,NULL,52),(111,20,1,1,0,'295X Martin Luther King Dr N',295,'X',NULL,'Martin Luther King','Dr','N',NULL,NULL,NULL,NULL,'Rhinehart',1,1017,NULL,'71363',NULL,1228,31.596272,-91.77941,0,NULL,NULL,53),(112,61,1,1,0,'295X Martin Luther King Dr N',295,'X',NULL,'Martin Luther King','Dr','N',NULL,NULL,NULL,NULL,'Rhinehart',1,1017,NULL,'71363',NULL,1228,31.596272,-91.77941,0,NULL,NULL,53),(113,134,1,1,0,'295X Martin Luther King Dr N',295,'X',NULL,'Martin Luther King','Dr','N',NULL,NULL,NULL,NULL,'Rhinehart',1,1017,NULL,'71363',NULL,1228,31.596272,-91.77941,0,NULL,NULL,53),(114,15,1,1,0,'295X Martin Luther King Dr N',295,'X',NULL,'Martin Luther King','Dr','N',NULL,NULL,NULL,NULL,'Rhinehart',1,1017,NULL,'71363',NULL,1228,31.596272,-91.77941,0,NULL,NULL,53),(115,39,1,1,0,'45K Van Ness Way NE',45,'K',NULL,'Van Ness','Way','NE',NULL,NULL,NULL,NULL,'Coronado',1,1004,NULL,'92178',NULL,1228,33.016928,-116.846046,0,NULL,NULL,54),(116,46,1,0,0,'45K Van Ness Way NE',45,'K',NULL,'Van Ness','Way','NE',NULL,NULL,NULL,NULL,'Coronado',1,1004,NULL,'92178',NULL,1228,33.016928,-116.846046,0,NULL,NULL,54),(117,56,1,1,0,'45K Van Ness Way NE',45,'K',NULL,'Van Ness','Way','NE',NULL,NULL,NULL,NULL,'Coronado',1,1004,NULL,'92178',NULL,1228,33.016928,-116.846046,0,NULL,NULL,54),(118,31,1,1,0,'595S Northpoint Blvd SE',595,'S',NULL,'Northpoint','Blvd','SE',NULL,NULL,NULL,NULL,'South Pittsburg',1,1041,NULL,'37380',NULL,1228,35.045886,-85.72513,0,NULL,NULL,NULL),(119,96,1,1,0,'69G Northpoint Way E',69,'G',NULL,'Northpoint','Way','E',NULL,NULL,NULL,NULL,'Ewing',1,1016,NULL,'41039',NULL,1228,38.424954,-83.86286,0,NULL,NULL,55),(120,105,1,1,0,'69G Northpoint Way E',69,'G',NULL,'Northpoint','Way','E',NULL,NULL,NULL,NULL,'Ewing',1,1016,NULL,'41039',NULL,1228,38.424954,-83.86286,0,NULL,NULL,55),(121,38,1,1,0,'69G Northpoint Way E',69,'G',NULL,'Northpoint','Way','E',NULL,NULL,NULL,NULL,'Ewing',1,1016,NULL,'41039',NULL,1228,38.424954,-83.86286,0,NULL,NULL,55),(122,129,1,1,0,'69G Northpoint Way E',69,'G',NULL,'Northpoint','Way','E',NULL,NULL,NULL,NULL,'Ewing',1,1016,NULL,'41039',NULL,1228,38.424954,-83.86286,0,NULL,NULL,55),(123,130,1,1,0,'448F Dowlen Pl NE',448,'F',NULL,'Dowlen','Pl','NE',NULL,NULL,NULL,NULL,'Chiloquin',1,1036,NULL,'97264',NULL,1228,42.577154,-121.860525,0,NULL,NULL,56),(124,60,1,1,0,'448F Dowlen Pl NE',448,'F',NULL,'Dowlen','Pl','NE',NULL,NULL,NULL,NULL,'Chiloquin',1,1036,NULL,'97264',NULL,1228,42.577154,-121.860525,0,NULL,NULL,56),(125,26,1,1,0,'448F Dowlen Pl NE',448,'F',NULL,'Dowlen','Pl','NE',NULL,NULL,NULL,NULL,'Chiloquin',1,1036,NULL,'97264',NULL,1228,42.577154,-121.860525,0,NULL,NULL,56),(126,184,1,1,0,'72Q Bay Ave NE',72,'Q',NULL,'Bay','Ave','NE',NULL,NULL,NULL,NULL,'Fishtail',1,1025,NULL,'59028',NULL,1228,45.373162,-109.64134,0,NULL,NULL,NULL),(127,141,1,1,0,'304H College Ln N',304,'H',NULL,'College','Ln','N',NULL,NULL,NULL,NULL,'Mountain Home',1,1003,NULL,'72653',NULL,1228,36.329026,-92.35781,0,NULL,NULL,57),(128,195,1,1,0,'304H College Ln N',304,'H',NULL,'College','Ln','N',NULL,NULL,NULL,NULL,'Mountain Home',1,1003,NULL,'72653',NULL,1228,36.329026,-92.35781,0,NULL,NULL,57),(129,10,1,1,0,'304H College Ln N',304,'H',NULL,'College','Ln','N',NULL,NULL,NULL,NULL,'Mountain Home',1,1003,NULL,'72653',NULL,1228,36.329026,-92.35781,0,NULL,NULL,57),(130,122,1,1,0,'193O Dowlen Blvd NE',193,'O',NULL,'Dowlen','Blvd','NE',NULL,NULL,NULL,NULL,'Wilder',1,1041,NULL,'38589',NULL,1228,36.29017,-85.08484,0,NULL,NULL,NULL),(131,111,1,1,0,'552U El Camino Dr NE',552,'U',NULL,'El Camino','Dr','NE',NULL,NULL,NULL,NULL,'Bahama',1,1032,NULL,'27503',NULL,1228,36.158344,-78.87419,0,NULL,NULL,58),(132,79,1,1,0,'552U El Camino Dr NE',552,'U',NULL,'El Camino','Dr','NE',NULL,NULL,NULL,NULL,'Bahama',1,1032,NULL,'27503',NULL,1228,36.158344,-78.87419,0,NULL,NULL,58),(133,121,1,1,0,'552U El Camino Dr NE',552,'U',NULL,'El Camino','Dr','NE',NULL,NULL,NULL,NULL,'Bahama',1,1032,NULL,'27503',NULL,1228,36.158344,-78.87419,0,NULL,NULL,58),(134,131,1,1,0,'552U El Camino Dr NE',552,'U',NULL,'El Camino','Dr','NE',NULL,NULL,NULL,NULL,'Bahama',1,1032,NULL,'27503',NULL,1228,36.158344,-78.87419,0,NULL,NULL,58),(135,191,1,1,0,'168W Woodbridge Way N',168,'W',NULL,'Woodbridge','Way','N',NULL,NULL,NULL,NULL,'Glyndon',1,1019,NULL,'21071',NULL,1228,39.472604,-76.81424,0,NULL,NULL,59),(136,59,1,1,0,'168W Woodbridge Way N',168,'W',NULL,'Woodbridge','Way','N',NULL,NULL,NULL,NULL,'Glyndon',1,1019,NULL,'21071',NULL,1228,39.472604,-76.81424,0,NULL,NULL,59),(137,154,1,1,0,'168W Woodbridge Way N',168,'W',NULL,'Woodbridge','Way','N',NULL,NULL,NULL,NULL,'Glyndon',1,1019,NULL,'21071',NULL,1228,39.472604,-76.81424,0,NULL,NULL,59),(138,162,1,0,0,'31G Lincoln Way E',31,'G',NULL,'Lincoln','Way','E',NULL,NULL,NULL,NULL,'Adak',1,1001,NULL,'99546',NULL,1228,51.87957,-176.63675,0,NULL,NULL,NULL),(139,19,1,1,0,'974Z Woodbridge Rd W',974,'Z',NULL,'Woodbridge','Rd','W',NULL,NULL,NULL,NULL,'Potrero',1,1004,NULL,'91963',NULL,1228,32.620782,-116.60671,0,NULL,NULL,60),(140,35,1,1,0,'974Z Woodbridge Rd W',974,'Z',NULL,'Woodbridge','Rd','W',NULL,NULL,NULL,NULL,'Potrero',1,1004,NULL,'91963',NULL,1228,32.620782,-116.60671,0,NULL,NULL,60),(141,48,1,0,0,'974Z Woodbridge Rd W',974,'Z',NULL,'Woodbridge','Rd','W',NULL,NULL,NULL,NULL,'Potrero',1,1004,NULL,'91963',NULL,1228,32.620782,-116.60671,0,NULL,NULL,60),(142,80,1,1,0,'950L Jackson Ln NW',950,'L',NULL,'Jackson','Ln','NW',NULL,NULL,NULL,NULL,'Saint Amant',1,1017,NULL,'70774',NULL,1228,30.212699,-90.81947,0,NULL,NULL,NULL),(143,32,1,1,0,'72B Van Ness Dr W',72,'B',NULL,'Van Ness','Dr','W',NULL,NULL,NULL,NULL,'Glenarm',1,1012,NULL,'62536',NULL,1228,39.642083,-89.65936,0,NULL,NULL,61),(144,144,1,1,0,'72B Van Ness Dr W',72,'B',NULL,'Van Ness','Dr','W',NULL,NULL,NULL,NULL,'Glenarm',1,1012,NULL,'62536',NULL,1228,39.642083,-89.65936,0,NULL,NULL,61),(145,95,1,1,0,'72B Van Ness Dr W',72,'B',NULL,'Van Ness','Dr','W',NULL,NULL,NULL,NULL,'Glenarm',1,1012,NULL,'62536',NULL,1228,39.642083,-89.65936,0,NULL,NULL,61),(146,109,1,0,0,'72B Van Ness Dr W',72,'B',NULL,'Van Ness','Dr','W',NULL,NULL,NULL,NULL,'Glenarm',1,1012,NULL,'62536',NULL,1228,39.642083,-89.65936,0,NULL,NULL,61),(147,194,1,1,0,'7C Lincoln Ave W',7,'C',NULL,'Lincoln','Ave','W',NULL,NULL,NULL,NULL,'Sturkie',1,1003,NULL,'72578',NULL,1228,36.479925,-91.8863,0,NULL,NULL,62),(148,149,1,1,0,'7C Lincoln Ave W',7,'C',NULL,'Lincoln','Ave','W',NULL,NULL,NULL,NULL,'Sturkie',1,1003,NULL,'72578',NULL,1228,36.479925,-91.8863,0,NULL,NULL,62),(149,155,1,1,0,'7C Lincoln Ave W',7,'C',NULL,'Lincoln','Ave','W',NULL,NULL,NULL,NULL,'Sturkie',1,1003,NULL,'72578',NULL,1228,36.479925,-91.8863,0,NULL,NULL,62),(150,197,1,1,0,'890R Woodbridge St NE',890,'R',NULL,'Woodbridge','St','NE',NULL,NULL,NULL,NULL,'Monticello',1,1031,NULL,'12701',NULL,1228,41.653071,-74.69748,0,NULL,NULL,NULL),(151,165,1,1,0,'712D Green Ave SE',712,'D',NULL,'Green','Ave','SE',NULL,NULL,NULL,NULL,'Whiteclay',1,1026,NULL,'69365',NULL,1228,42.963117,-102.51068,0,NULL,NULL,63),(152,107,1,1,0,'712D Green Ave SE',712,'D',NULL,'Green','Ave','SE',NULL,NULL,NULL,NULL,'Whiteclay',1,1026,NULL,'69365',NULL,1228,42.963117,-102.51068,0,NULL,NULL,63),(153,37,1,1,0,'712D Green Ave SE',712,'D',NULL,'Green','Ave','SE',NULL,NULL,NULL,NULL,'Whiteclay',1,1026,NULL,'69365',NULL,1228,42.963117,-102.51068,0,NULL,NULL,63),(154,62,1,1,0,'712D Green Ave SE',712,'D',NULL,'Green','Ave','SE',NULL,NULL,NULL,NULL,'Whiteclay',1,1026,NULL,'69365',NULL,1228,42.963117,-102.51068,0,NULL,NULL,63),(155,13,1,1,0,'335R Woodbridge Ln S',335,'R',NULL,'Woodbridge','Ln','S',NULL,NULL,NULL,NULL,'Philadelphia',1,1037,NULL,'19192',NULL,1228,39.951112,-75.167622,0,NULL,NULL,64),(156,199,1,1,0,'335R Woodbridge Ln S',335,'R',NULL,'Woodbridge','Ln','S',NULL,NULL,NULL,NULL,'Philadelphia',1,1037,NULL,'19192',NULL,1228,39.951112,-75.167622,0,NULL,NULL,64),(157,2,1,1,0,'335R Woodbridge Ln S',335,'R',NULL,'Woodbridge','Ln','S',NULL,NULL,NULL,NULL,'Philadelphia',1,1037,NULL,'19192',NULL,1228,39.951112,-75.167622,0,NULL,NULL,64),(158,71,1,1,0,'335R Woodbridge Ln S',335,'R',NULL,'Woodbridge','Ln','S',NULL,NULL,NULL,NULL,'Philadelphia',1,1037,NULL,'19192',NULL,1228,39.951112,-75.167622,0,NULL,NULL,64),(159,126,1,1,0,'2B El Camino Path NE',2,'B',NULL,'El Camino','Path','NE',NULL,NULL,NULL,NULL,'Somerset',1,1029,NULL,'08875',NULL,1228,40.580918,-74.711731,0,NULL,NULL,65),(160,54,1,1,0,'2B El Camino Path NE',2,'B',NULL,'El Camino','Path','NE',NULL,NULL,NULL,NULL,'Somerset',1,1029,NULL,'08875',NULL,1228,40.580918,-74.711731,0,NULL,NULL,65),(161,147,1,1,0,'2B El Camino Path NE',2,'B',NULL,'El Camino','Path','NE',NULL,NULL,NULL,NULL,'Somerset',1,1029,NULL,'08875',NULL,1228,40.580918,-74.711731,0,NULL,NULL,65),(162,97,1,1,0,'2B El Camino Path NE',2,'B',NULL,'El Camino','Path','NE',NULL,NULL,NULL,NULL,'Somerset',1,1029,NULL,'08875',NULL,1228,40.580918,-74.711731,0,NULL,NULL,65),(163,145,1,1,0,'98N El Camino Dr NE',98,'N',NULL,'El Camino','Dr','NE',NULL,NULL,NULL,NULL,'Sharon',1,1020,NULL,'02067',NULL,1228,42.113749,-71.17923,0,NULL,NULL,66),(164,133,1,1,0,'98N El Camino Dr NE',98,'N',NULL,'El Camino','Dr','NE',NULL,NULL,NULL,NULL,'Sharon',1,1020,NULL,'02067',NULL,1228,42.113749,-71.17923,0,NULL,NULL,66),(165,140,1,1,0,'98N El Camino Dr NE',98,'N',NULL,'El Camino','Dr','NE',NULL,NULL,NULL,NULL,'Sharon',1,1020,NULL,'02067',NULL,1228,42.113749,-71.17923,0,NULL,NULL,66),(166,116,1,1,0,'98N El Camino Dr NE',98,'N',NULL,'El Camino','Dr','NE',NULL,NULL,NULL,NULL,'Sharon',1,1020,NULL,'02067',NULL,1228,42.113749,-71.17923,0,NULL,NULL,66),(167,52,1,1,0,'338L Bay Dr SW',338,'L',NULL,'Bay','Dr','SW',NULL,NULL,NULL,NULL,'Urbana',1,1003,NULL,'71768',NULL,1228,33.198024,-92.52891,0,NULL,NULL,67),(168,139,1,0,0,'338L Bay Dr SW',338,'L',NULL,'Bay','Dr','SW',NULL,NULL,NULL,NULL,'Urbana',1,1003,NULL,'71768',NULL,1228,33.198024,-92.52891,0,NULL,NULL,67),(169,43,1,1,0,'338L Bay Dr SW',338,'L',NULL,'Bay','Dr','SW',NULL,NULL,NULL,NULL,'Urbana',1,1003,NULL,'71768',NULL,1228,33.198024,-92.52891,0,NULL,NULL,67),(170,9,1,1,0,'536W Green Blvd W',536,'W',NULL,'Green','Blvd','W',NULL,NULL,NULL,NULL,'Washington',1,1050,NULL,'20372',NULL,1228,38.893311,-77.014647,0,NULL,NULL,NULL),(171,176,1,1,0,'999T Dowlen Ln NW',999,'T',NULL,'Dowlen','Ln','NW',NULL,NULL,NULL,NULL,'South Portland',1,1018,NULL,'04106',NULL,1228,43.631549,-70.27272,0,NULL,NULL,68),(172,170,1,1,0,'999T Dowlen Ln NW',999,'T',NULL,'Dowlen','Ln','NW',NULL,NULL,NULL,NULL,'South Portland',1,1018,NULL,'04106',NULL,1228,43.631549,-70.27272,0,NULL,NULL,68),(173,182,1,1,0,'999T Dowlen Ln NW',999,'T',NULL,'Dowlen','Ln','NW',NULL,NULL,NULL,NULL,'South Portland',1,1018,NULL,'04106',NULL,1228,43.631549,-70.27272,0,NULL,NULL,68),(174,40,1,1,0,'999T Dowlen Ln NW',999,'T',NULL,'Dowlen','Ln','NW',NULL,NULL,NULL,NULL,'South Portland',1,1018,NULL,'04106',NULL,1228,43.631549,-70.27272,0,NULL,NULL,68),(175,123,1,1,0,'720S Pine Ln N',720,'S',NULL,'Pine','Ln','N',NULL,NULL,NULL,NULL,'Kansas City',1,1024,NULL,'64137',NULL,1228,38.929356,-94.53932,0,NULL,NULL,69),(176,68,1,1,0,'720S Pine Ln N',720,'S',NULL,'Pine','Ln','N',NULL,NULL,NULL,NULL,'Kansas City',1,1024,NULL,'64137',NULL,1228,38.929356,-94.53932,0,NULL,NULL,69),(177,181,1,1,0,'720S Pine Ln N',720,'S',NULL,'Pine','Ln','N',NULL,NULL,NULL,NULL,'Kansas City',1,1024,NULL,'64137',NULL,1228,38.929356,-94.53932,0,NULL,NULL,69),(178,27,1,1,0,'720S Pine Ln N',720,'S',NULL,'Pine','Ln','N',NULL,NULL,NULL,NULL,'Kansas City',1,1024,NULL,'64137',NULL,1228,38.929356,-94.53932,0,NULL,NULL,69),(179,108,1,1,0,'71A States Dr S',71,'A',NULL,'States','Dr','S',NULL,NULL,NULL,NULL,'Snoqualmie',1,1046,NULL,'98065',NULL,1228,47.530639,-121.83053,0,NULL,NULL,70),(180,25,1,1,0,'71A States Dr S',71,'A',NULL,'States','Dr','S',NULL,NULL,NULL,NULL,'Snoqualmie',1,1046,NULL,'98065',NULL,1228,47.530639,-121.83053,0,NULL,NULL,70),(181,34,1,0,0,'71A States Dr S',71,'A',NULL,'States','Dr','S',NULL,NULL,NULL,NULL,'Snoqualmie',1,1046,NULL,'98065',NULL,1228,47.530639,-121.83053,0,NULL,NULL,70),(182,7,1,1,0,'818E Jackson Pl NW',818,'E',NULL,'Jackson','Pl','NW',NULL,NULL,NULL,NULL,'Hamilton',1,1005,NULL,'81638',NULL,1228,40.298366,-107.51756,0,NULL,NULL,NULL),(183,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),(184,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),(185,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,112,1,1,0,'512P Caulder Dr W',512,'P',NULL,'Caulder','Dr','W',NULL,NULL,NULL,NULL,'Genoa',1,1026,NULL,'68640',NULL,1228,41.44996,-97.75199,0,NULL,NULL,NULL),(2,41,1,1,0,'51O Green Path NW',51,'O',NULL,'Green','Path','NW',NULL,NULL,NULL,NULL,'Copperopolis',1,1004,NULL,'95228',NULL,1228,37.942532,-120.65786,0,NULL,NULL,NULL),(3,178,1,1,0,'771R Northpoint Way S',771,'R',NULL,'Northpoint','Way','S',NULL,NULL,NULL,NULL,'Carmichaels',1,1037,NULL,'15320',NULL,1228,39.883336,-79.98393,0,NULL,NULL,NULL),(4,29,1,1,0,'978I Dowlen Path NE',978,'I',NULL,'Dowlen','Path','NE',NULL,NULL,NULL,NULL,'Pillsbury',1,1033,NULL,'58065',NULL,1228,46.650741,-98.195722,0,NULL,NULL,NULL),(5,180,1,1,0,'530R Second Blvd E',530,'R',NULL,'Second','Blvd','E',NULL,NULL,NULL,NULL,'Smithfield',1,1045,NULL,'23431',NULL,1228,36.898915,-76.687745,0,NULL,NULL,NULL),(6,66,1,1,0,'530V Main Ave SE',530,'V',NULL,'Main','Ave','SE',NULL,NULL,NULL,NULL,'Vancouver',1,1046,NULL,'98662',NULL,1228,45.671806,-122.57894,0,NULL,NULL,NULL),(7,32,1,1,0,'840M Cadell Way NW',840,'M',NULL,'Cadell','Way','NW',NULL,NULL,NULL,NULL,'Weston',1,1049,NULL,'82731',NULL,1228,44.799642,-105.24695,0,NULL,NULL,NULL),(8,134,1,1,0,'647B El Camino Blvd SW',647,'B',NULL,'El Camino','Blvd','SW',NULL,NULL,NULL,NULL,'Garrison',1,1033,NULL,'58888',NULL,1228,47.612579,-101.304214,0,NULL,NULL,NULL),(9,26,1,1,0,'135V States St NE',135,'V',NULL,'States','St','NE',NULL,NULL,NULL,NULL,'Ash Grove',1,1024,NULL,'65604',NULL,1228,37.270684,-93.59815,0,NULL,NULL,NULL),(10,165,1,1,0,'804P Martin Luther King Ln W',804,'P',NULL,'Martin Luther King','Ln','W',NULL,NULL,NULL,NULL,'Holladay',1,1041,NULL,'38341',NULL,1228,35.866499,-88.09896,0,NULL,NULL,NULL),(11,179,1,1,0,'709B Lincoln Way NE',709,'B',NULL,'Lincoln','Way','NE',NULL,NULL,NULL,NULL,'Thurston',1,1026,NULL,'68062',NULL,1228,42.187938,-96.67747,0,NULL,NULL,NULL),(12,159,1,1,0,'737S Northpoint Ln SW',737,'S',NULL,'Northpoint','Ln','SW',NULL,NULL,NULL,NULL,'Monkton',1,1019,NULL,'21111',NULL,1228,39.575605,-76.59123,0,NULL,NULL,NULL),(13,8,1,1,0,'873Y Main Way S',873,'Y',NULL,'Main','Way','S',NULL,NULL,NULL,NULL,'Wray',1,1005,NULL,'80758',NULL,1228,40.064734,-102.21336,0,NULL,NULL,NULL),(14,86,1,1,0,'643F Dowlen Path NW',643,'F',NULL,'Dowlen','Path','NW',NULL,NULL,NULL,NULL,'West Babylon',1,1031,NULL,'11704',NULL,1228,40.719249,-73.35829,0,NULL,NULL,NULL),(15,139,1,1,0,'448W States St S',448,'W',NULL,'States','St','S',NULL,NULL,NULL,NULL,'San Antonio',1,1042,NULL,'78206',NULL,1228,29.437532,-98.461582,0,NULL,NULL,NULL),(16,116,1,1,0,'466D Northpoint St NE',466,'D',NULL,'Northpoint','St','NE',NULL,NULL,NULL,NULL,'Boise',1,1011,NULL,'83708',NULL,1228,43.459855,-116.243984,0,NULL,NULL,NULL),(17,186,1,1,0,'216B Maple Path NE',216,'B',NULL,'Maple','Path','NE',NULL,NULL,NULL,NULL,'Letcher',1,1040,NULL,'57359',NULL,1228,43.896226,-98.14931,0,NULL,NULL,NULL),(18,108,1,1,0,'701I Woodbridge Path W',701,'I',NULL,'Woodbridge','Path','W',NULL,NULL,NULL,NULL,'Middletown',1,1037,NULL,'17057',NULL,1228,40.201341,-76.73557,0,NULL,NULL,NULL),(19,24,1,1,0,'619T Caulder Rd E',619,'T',NULL,'Caulder','Rd','E',NULL,NULL,NULL,NULL,'Marquand',1,1024,NULL,'63655',NULL,1228,37.416023,-90.18886,0,NULL,NULL,NULL),(20,146,1,1,0,'998G Northpoint Rd NE',998,'G',NULL,'Northpoint','Rd','NE',NULL,NULL,NULL,NULL,'Flint',1,1021,NULL,'48506',NULL,1228,43.047826,-83.64688,0,NULL,NULL,NULL),(21,3,1,1,0,'442E Lincoln Way S',442,'E',NULL,'Lincoln','Way','S',NULL,NULL,NULL,NULL,'East Pittsburgh',1,1037,NULL,'15112',NULL,1228,40.399436,-79.83794,0,NULL,NULL,NULL),(22,69,1,1,0,'396B Van Ness Blvd SE',396,'B',NULL,'Van Ness','Blvd','SE',NULL,NULL,NULL,NULL,'Miami',1,1047,NULL,'25134',NULL,1228,38.153818,-81.44962,0,NULL,NULL,NULL),(23,89,1,1,0,'612Q Caulder Ln NE',612,'Q',NULL,'Caulder','Ln','NE',NULL,NULL,NULL,NULL,'Stockton',1,1004,NULL,'95206',NULL,1228,37.922024,-121.3025,0,NULL,NULL,NULL),(24,172,1,1,0,'969P States St W',969,'P',NULL,'States','St','W',NULL,NULL,NULL,NULL,'Spinnerstown',1,1037,NULL,'18968',NULL,1228,40.328645,-75.10278,0,NULL,NULL,NULL),(25,182,1,1,0,'645H Caulder Rd E',645,'H',NULL,'Caulder','Rd','E',NULL,NULL,NULL,NULL,'Batesville',1,1003,NULL,'72501',NULL,1228,35.78108,-91.63835,0,NULL,NULL,NULL),(26,131,1,1,0,'4P Caulder Dr SE',4,'P',NULL,'Caulder','Dr','SE',NULL,NULL,NULL,NULL,'Garrett',1,1049,NULL,'82058',NULL,1228,42.22772,-105.66184,0,NULL,NULL,NULL),(27,193,1,1,0,'24Y Woodbridge Dr SW',24,'Y',NULL,'Woodbridge','Dr','SW',NULL,NULL,NULL,NULL,'Austin',1,1042,NULL,'78755',NULL,1228,30.326374,-97.771258,0,NULL,NULL,NULL),(28,191,1,1,0,'691B Main Ave W',691,'B',NULL,'Main','Ave','W',NULL,NULL,NULL,NULL,'Kansas City',1,1024,NULL,'64127',NULL,1228,39.089704,-94.53968,0,NULL,NULL,NULL),(29,175,1,1,0,'453T Second Way W',453,'T',NULL,'Second','Way','W',NULL,NULL,NULL,NULL,'North Star',1,1034,NULL,'45350',NULL,1228,40.135426,-84.619129,0,NULL,NULL,NULL),(30,123,1,1,0,'818X Lincoln Blvd W',818,'X',NULL,'Lincoln','Blvd','W',NULL,NULL,NULL,NULL,'Casco',1,1018,NULL,'04015',NULL,1228,43.952597,-70.51377,0,NULL,NULL,NULL),(31,189,1,1,0,'711P Van Ness St NW',711,'P',NULL,'Van Ness','St','NW',NULL,NULL,NULL,NULL,'Molena',1,1009,NULL,'30258',NULL,1228,32.999261,-84.47168,0,NULL,NULL,NULL),(32,121,1,1,0,'382A Green Rd S',382,'A',NULL,'Green','Rd','S',NULL,NULL,NULL,NULL,'Quogue',1,1031,NULL,'11959',NULL,1228,40.825411,-72.60506,0,NULL,NULL,NULL),(33,194,1,1,0,'648X Woodbridge Ave SW',648,'X',NULL,'Woodbridge','Ave','SW',NULL,NULL,NULL,NULL,'Henderson',1,1027,NULL,'89074',NULL,1228,36.038181,-115.086999,0,NULL,NULL,NULL),(34,7,1,1,0,'903G Woodbridge Dr NE',903,'G',NULL,'Woodbridge','Dr','NE',NULL,NULL,NULL,NULL,'Houston',1,1042,NULL,'77269',NULL,1228,29.83399,-95.434241,0,NULL,NULL,NULL),(35,92,1,1,0,'313G Martin Luther King Ave W',313,'G',NULL,'Martin Luther King','Ave','W',NULL,NULL,NULL,NULL,'Palisade',1,1022,NULL,'56469',NULL,1228,46.702947,-93.5203,0,NULL,NULL,NULL),(36,83,1,1,0,'243S Pine St SW',243,'S',NULL,'Pine','St','SW',NULL,NULL,NULL,NULL,'Parkston',1,1040,NULL,'57366',NULL,1228,43.391523,-97.94713,0,NULL,NULL,NULL),(37,171,1,1,0,'832I Martin Luther King Way E',832,'I',NULL,'Martin Luther King','Way','E',NULL,NULL,NULL,NULL,'Reardan',1,1046,NULL,'99029',NULL,1228,47.693129,-117.86164,0,NULL,NULL,NULL),(38,73,1,1,0,'671N States Ln E',671,'N',NULL,'States','Ln','E',NULL,NULL,NULL,NULL,'Monticello',1,1022,NULL,'55586',NULL,1228,45.200875,-93.888099,0,NULL,NULL,NULL),(39,118,1,1,0,'907G College Rd SW',907,'G',NULL,'College','Rd','SW',NULL,NULL,NULL,NULL,'Energy',1,1042,NULL,'76452',NULL,1228,31.758351,-98.40613,0,NULL,NULL,NULL),(40,12,1,1,0,'713B Lincoln Ln SE',713,'B',NULL,'Lincoln','Ln','SE',NULL,NULL,NULL,NULL,'Oxbow',1,1018,NULL,'04764',NULL,1228,46.416656,-68.47646,0,NULL,NULL,NULL),(41,132,1,1,0,'983Z Bay St W',983,'Z',NULL,'Bay','St','W',NULL,NULL,NULL,NULL,'Brookfield',1,1048,NULL,'53045',NULL,1228,43.055315,-88.1503,0,NULL,NULL,NULL),(42,127,1,1,0,'169F Second Blvd N',169,'F',NULL,'Second','Blvd','N',NULL,NULL,NULL,NULL,'Rolling Prairie',1,1013,NULL,'46371',NULL,1228,41.677087,-86.60481,0,NULL,NULL,NULL),(43,61,1,1,0,'24Q Bay Blvd SE',24,'Q',NULL,'Bay','Blvd','SE',NULL,NULL,NULL,NULL,'Steeleville',1,1012,NULL,'62288',NULL,1228,38.002188,-89.66723,0,NULL,NULL,NULL),(44,77,1,1,0,'485D Caulder Path E',485,'D',NULL,'Caulder','Path','E',NULL,NULL,NULL,NULL,'Hillyard',1,1012,NULL,'62676',NULL,1228,39.128248,-89.923215,0,NULL,NULL,NULL),(45,135,1,1,0,'760G Second St S',760,'G',NULL,'Second','St','S',NULL,NULL,NULL,NULL,'Cypress',1,1012,NULL,'62923',NULL,1228,37.34,-89.03177,0,NULL,NULL,NULL),(46,185,1,1,0,'298L Maple Dr N',298,'L',NULL,'Maple','Dr','N',NULL,NULL,NULL,NULL,'Boise',1,1011,NULL,'83703',NULL,1228,43.668396,-116.25707,0,NULL,NULL,NULL),(47,151,1,1,0,'174G Dowlen Pl SE',174,'G',NULL,'Dowlen','Pl','SE',NULL,NULL,NULL,NULL,'Winston Salem',1,1032,NULL,'27155',NULL,1228,36.027482,-80.20728,0,NULL,NULL,NULL),(48,81,1,1,0,'186C Beech Ave E',186,'C',NULL,'Beech','Ave','E',NULL,NULL,NULL,NULL,'Berclair',1,1042,NULL,'78107',NULL,1228,28.53232,-97.5888,0,NULL,NULL,NULL),(49,97,1,1,0,'11S El Camino St N',11,'S',NULL,'El Camino','St','N',NULL,NULL,NULL,NULL,'Tampa',1,1008,NULL,'33618',NULL,1228,28.071502,-82.49392,0,NULL,NULL,NULL),(50,25,1,1,0,'218Q Jackson Rd SE',218,'Q',NULL,'Jackson','Rd','SE',NULL,NULL,NULL,NULL,'Oviedo',1,1008,NULL,'32766',NULL,1228,28.639275,-81.11906,0,NULL,NULL,NULL),(51,150,1,1,0,'893I Second Pl NW',893,'I',NULL,'Second','Pl','NW',NULL,NULL,NULL,NULL,'Frankfort',1,1015,NULL,'66427',NULL,1228,39.689409,-96.43876,0,NULL,NULL,NULL),(52,141,1,1,0,'28A College Ln W',28,'A',NULL,'College','Ln','W',NULL,NULL,NULL,NULL,'Pearblossom',1,1004,NULL,'93553',NULL,1228,34.487552,-117.89885,0,NULL,NULL,NULL),(53,37,1,1,0,'941U College Way N',941,'U',NULL,'College','Way','N',NULL,NULL,NULL,NULL,'Encinitas',1,1004,NULL,'92024',NULL,1228,33.053092,-117.26855,0,NULL,NULL,NULL),(54,137,1,1,0,'126C Cadell Path NE',126,'C',NULL,'Cadell','Path','NE',NULL,NULL,NULL,NULL,'Walford',1,1014,NULL,'52351',NULL,1228,41.876767,-91.83532,0,NULL,NULL,NULL),(55,109,1,1,0,'770G Jackson Pl N',770,'G',NULL,'Jackson','Pl','N',NULL,NULL,NULL,NULL,'Hallandale',1,1008,NULL,'33009',NULL,1228,25.987069,-80.15004,0,NULL,NULL,NULL),(56,15,1,1,0,'17S Jackson Ave SE',17,'S',NULL,'Jackson','Ave','SE',NULL,NULL,NULL,NULL,'Mountain Home',1,1003,NULL,'72654',NULL,1228,36.23638,-92.372635,0,NULL,NULL,NULL),(57,125,1,1,0,'784Z Woodbridge Dr SW',784,'Z',NULL,'Woodbridge','Dr','SW',NULL,NULL,NULL,NULL,'Glendale',1,1004,NULL,'91221',NULL,1228,33.786594,-118.298662,0,NULL,NULL,NULL),(58,181,1,1,0,'542J Maple Dr SE',542,'J',NULL,'Maple','Dr','SE',NULL,NULL,NULL,NULL,'Genesee Depot',1,1048,NULL,'53127',NULL,1228,42.960098,-88.374455,0,NULL,NULL,NULL),(59,93,1,1,0,'125A Cadell Ave E',125,'A',NULL,'Cadell','Ave','E',NULL,NULL,NULL,NULL,'Citra',1,1008,NULL,'32113',NULL,1228,29.393366,-82.09805,0,NULL,NULL,NULL),(60,40,1,1,0,'226X Caulder Ave SW',226,'X',NULL,'Caulder','Ave','SW',NULL,NULL,NULL,NULL,'Beaverville',1,1012,NULL,'60912',NULL,1228,40.968579,-87.61611,0,NULL,NULL,NULL),(61,169,1,1,0,'608S Van Ness Ave NE',608,'S',NULL,'Van Ness','Ave','NE',NULL,NULL,NULL,NULL,'Vail',1,1014,NULL,'51465',NULL,1228,42.072884,-95.20261,0,NULL,NULL,NULL),(62,102,1,1,0,'96N Northpoint Ln NE',96,'N',NULL,'Northpoint','Ln','NE',NULL,NULL,NULL,NULL,'Palatine',1,1012,NULL,'60078',NULL,1228,41.811929,-87.68732,0,NULL,NULL,NULL),(63,100,1,1,0,'556X Dowlen Ln N',556,'X',NULL,'Dowlen','Ln','N',NULL,NULL,NULL,NULL,'Toms River',1,1029,NULL,'08755',NULL,1228,40.010092,-74.23032,0,NULL,NULL,NULL),(64,65,1,1,0,'107M Lincoln St E',107,'M',NULL,'Lincoln','St','E',NULL,NULL,NULL,NULL,'Greensboro',1,1032,NULL,'27455',NULL,1228,36.156707,-79.80644,0,NULL,NULL,NULL),(65,50,1,1,0,'87V Dowlen Way E',87,'V',NULL,'Dowlen','Way','E',NULL,NULL,NULL,NULL,'New Bavaria',1,1034,NULL,'43548',NULL,1228,41.190188,-84.17549,0,NULL,NULL,NULL),(66,84,1,1,0,'61C Main St NE',61,'C',NULL,'Main','St','NE',NULL,NULL,NULL,NULL,'Lyons',1,1015,NULL,'67554',NULL,1228,38.356474,-98.2025,0,NULL,NULL,NULL),(67,157,1,1,0,'765I Jackson Ave E',765,'I',NULL,'Jackson','Ave','E',NULL,NULL,NULL,NULL,'Lincoln',1,1026,NULL,'68501',NULL,1228,40.865142,-96.823133,0,NULL,NULL,NULL),(68,11,1,1,0,'104B Lincoln Blvd W',104,'B',NULL,'Lincoln','Blvd','W',NULL,NULL,NULL,NULL,'Dallas',1,1042,NULL,'75219',NULL,1228,32.812462,-96.81412,0,NULL,NULL,NULL),(69,126,1,1,0,'942E Second Way S',942,'E',NULL,'Second','Way','S',NULL,NULL,NULL,NULL,'Hardyville',1,1045,NULL,'23070',NULL,1228,37.551549,-76.39294,0,NULL,NULL,NULL),(70,107,1,1,0,'303A Dowlen Ln N',303,'A',NULL,'Dowlen','Ln','N',NULL,NULL,NULL,NULL,'Whelen Springs',1,1003,NULL,'71772',NULL,1228,33.832537,-93.1238,0,NULL,NULL,NULL),(71,164,1,1,0,'356X Beech Ln W',356,'X',NULL,'Beech','Ln','W',NULL,NULL,NULL,NULL,'Hendersonville',1,1032,NULL,'28792',NULL,1228,35.353837,-82.41625,0,NULL,NULL,NULL),(72,106,1,1,0,'145B Maple Blvd SE',145,'B',NULL,'Maple','Blvd','SE',NULL,NULL,NULL,NULL,'Paullina',1,1014,NULL,'51046',NULL,1228,42.976116,-95.65772,0,NULL,NULL,NULL),(73,36,1,1,0,'587C Main Ave NW',587,'C',NULL,'Main','Ave','NW',NULL,NULL,NULL,NULL,'Madison',1,1048,NULL,'53782',NULL,1228,43.06956,-89.423861,0,NULL,NULL,NULL),(74,104,1,1,0,'506B Dowlen Ln SW',506,'B',NULL,'Dowlen','Ln','SW',NULL,NULL,NULL,NULL,'Browning',1,1025,NULL,'59417',NULL,1228,48.556986,-113.0698,0,NULL,NULL,NULL),(75,85,1,1,0,'227T Van Ness Rd E',227,'T',NULL,'Van Ness','Rd','E',NULL,NULL,NULL,NULL,'McKee',1,1016,NULL,'40447',NULL,1228,37.457017,-84.03435,0,NULL,NULL,NULL),(76,57,1,1,0,'399I Van Ness Way E',399,'I',NULL,'Van Ness','Way','E',NULL,NULL,NULL,NULL,'Bridgeton',1,1013,NULL,'47836',NULL,1228,39.647929,-87.17529,0,NULL,NULL,NULL),(77,105,1,1,0,'939L Dowlen Ln NW',939,'L',NULL,'Dowlen','Ln','NW',NULL,NULL,NULL,NULL,'Butte Des Morts',1,1048,NULL,'54927',NULL,1228,44.101044,-88.65531,0,NULL,NULL,NULL),(78,44,1,1,0,'711X Caulder Dr SW',711,'X',NULL,'Caulder','Dr','SW',NULL,NULL,NULL,NULL,'Tucson',1,1002,NULL,'85731',NULL,1228,32.088034,-110.708174,0,NULL,NULL,NULL),(79,94,1,1,0,'620L Martin Luther King St S',620,'L',NULL,'Martin Luther King','St','S',NULL,NULL,NULL,NULL,'Elbe',1,1046,NULL,'98330',NULL,1228,46.761546,-122.17858,0,NULL,NULL,NULL),(80,45,3,1,0,'57Y Maple Path S',57,'Y',NULL,'Maple','Path','S',NULL,'Community Relations',NULL,NULL,'Artemas',1,1037,NULL,'17211',NULL,1228,39.742192,-78.42113,0,NULL,NULL,NULL),(81,109,2,0,0,'57Y Maple Path S',57,'Y',NULL,'Maple','Path','S',NULL,'Community Relations',NULL,NULL,'Artemas',1,1037,NULL,'17211',NULL,1228,39.742192,-78.42113,0,NULL,NULL,80),(82,9,3,1,0,'724H Cadell Blvd SW',724,'H',NULL,'Cadell','Blvd','SW',NULL,'Urgent',NULL,NULL,'Duluth',1,1022,NULL,'55811',NULL,1228,46.821489,-92.18242,0,NULL,NULL,NULL),(83,27,2,1,0,'724H Cadell Blvd SW',724,'H',NULL,'Cadell','Blvd','SW',NULL,'Urgent',NULL,NULL,'Duluth',1,1022,NULL,'55811',NULL,1228,46.821489,-92.18242,0,NULL,NULL,82),(84,90,3,1,0,'182Y Dowlen Way S',182,'Y',NULL,'Dowlen','Way','S',NULL,'Mailstop 101',NULL,NULL,'Lima',1,1034,NULL,'45806',NULL,1228,40.668448,-84.1331,0,NULL,NULL,NULL),(85,200,2,1,0,'182Y Dowlen Way S',182,'Y',NULL,'Dowlen','Way','S',NULL,'Mailstop 101',NULL,NULL,'Lima',1,1034,NULL,'45806',NULL,1228,40.668448,-84.1331,0,NULL,NULL,84),(86,46,3,1,0,'701U Green Way S',701,'U',NULL,'Green','Way','S',NULL,'Churchgate',NULL,NULL,'Rapid City',1,1021,NULL,'49676',NULL,1228,44.829056,-85.27959,0,NULL,NULL,NULL),(87,129,2,1,0,'701U Green Way S',701,'U',NULL,'Green','Way','S',NULL,'Churchgate',NULL,NULL,'Rapid City',1,1021,NULL,'49676',NULL,1228,44.829056,-85.27959,0,NULL,NULL,86),(88,149,3,1,0,'379R El Camino Blvd N',379,'R',NULL,'El Camino','Blvd','N',NULL,'Disbursements',NULL,NULL,'Los Angeles',1,1004,NULL,'90071',NULL,1228,34.052709,-118.2559,0,NULL,NULL,NULL),(89,83,2,0,0,'379R El Camino Blvd N',379,'R',NULL,'El Camino','Blvd','N',NULL,'Disbursements',NULL,NULL,'Los Angeles',1,1004,NULL,'90071',NULL,1228,34.052709,-118.2559,0,NULL,NULL,88),(90,160,3,1,0,'873X Cadell Path E',873,'X',NULL,'Cadell','Path','E',NULL,'Churchgate',NULL,NULL,'Wewoka',1,1035,NULL,'74884',NULL,1228,35.166644,-96.5066,0,NULL,NULL,NULL),(91,35,3,1,0,'703G Cadell Ln SW',703,'G',NULL,'Cadell','Ln','SW',NULL,'Disbursements',NULL,NULL,'Arlee',1,1025,NULL,'59821',NULL,1228,47.169203,-114.05215,0,NULL,NULL,NULL),(92,177,3,1,0,'211Z College Path W',211,'Z',NULL,'College','Path','W',NULL,'Payables Dept.',NULL,NULL,'Rudyard',1,1021,NULL,'49780',NULL,1228,46.204512,-84.73671,0,NULL,NULL,NULL),(93,43,2,1,0,'211Z College Path W',211,'Z',NULL,'College','Path','W',NULL,'Payables Dept.',NULL,NULL,'Rudyard',1,1021,NULL,'49780',NULL,1228,46.204512,-84.73671,0,NULL,NULL,92),(94,10,3,1,0,'41N Green Ave N',41,'N',NULL,'Green','Ave','N',NULL,'Disbursements',NULL,NULL,'Providence',1,1043,NULL,'84332',NULL,1228,41.701304,-111.8096,0,NULL,NULL,NULL),(95,144,3,1,0,'81H Cadell Ln NW',81,'H',NULL,'Cadell','Ln','NW',NULL,'Donor Relations',NULL,NULL,'El Paso',1,1042,NULL,'79911',NULL,1228,31.694842,-106.299987,0,NULL,NULL,NULL),(96,47,2,1,0,'81H Cadell Ln NW',81,'H',NULL,'Cadell','Ln','NW',NULL,'Donor Relations',NULL,NULL,'El Paso',1,1042,NULL,'79911',NULL,1228,31.694842,-106.299987,0,NULL,NULL,95),(97,5,3,1,0,'387T Cadell Ln S',387,'T',NULL,'Cadell','Ln','S',NULL,'Attn: Development',NULL,NULL,'Colby',1,1015,NULL,'67701',NULL,1228,39.394701,-101.04485,0,NULL,NULL,NULL),(98,62,2,1,0,'387T Cadell Ln S',387,'T',NULL,'Cadell','Ln','S',NULL,'Attn: Development',NULL,NULL,'Colby',1,1015,NULL,'67701',NULL,1228,39.394701,-101.04485,0,NULL,NULL,97),(99,124,3,1,0,'10K Green Rd SW',10,'K',NULL,'Green','Rd','SW',NULL,'Churchgate',NULL,NULL,'Liberal',1,1024,NULL,'64762',NULL,1228,37.555366,-94.51496,0,NULL,NULL,NULL),(100,146,2,0,0,'10K Green Rd SW',10,'K',NULL,'Green','Rd','SW',NULL,'Churchgate',NULL,NULL,'Liberal',1,1024,NULL,'64762',NULL,1228,37.555366,-94.51496,0,NULL,NULL,99),(101,113,3,1,0,'118Q Woodbridge Ln SE',118,'Q',NULL,'Woodbridge','Ln','SE',NULL,'Community Relations',NULL,NULL,'Columbia',1,1000,NULL,'36319',NULL,1228,31.312599,-85.14456,0,NULL,NULL,NULL),(102,31,2,1,0,'118Q Woodbridge Ln SE',118,'Q',NULL,'Woodbridge','Ln','SE',NULL,'Community Relations',NULL,NULL,'Columbia',1,1000,NULL,'36319',NULL,1228,31.312599,-85.14456,0,NULL,NULL,101),(103,64,3,1,0,'886D Martin Luther King Ave N',886,'D',NULL,'Martin Luther King','Ave','N',NULL,'Donor Relations',NULL,NULL,'Fayetteville',1,1032,NULL,'28306',NULL,1228,35.003712,-78.92179,0,NULL,NULL,NULL),(104,22,3,1,0,'943E El Camino Ave SW',943,'E',NULL,'El Camino','Ave','SW',NULL,'Mailstop 101',NULL,NULL,'Minneapolis',1,1022,NULL,'55459',NULL,1228,45.015914,-93.47188,0,NULL,NULL,NULL),(105,26,2,0,0,'943E El Camino Ave SW',943,'E',NULL,'El Camino','Ave','SW',NULL,'Mailstop 101',NULL,NULL,'Minneapolis',1,1022,NULL,'55459',NULL,1228,45.015914,-93.47188,0,NULL,NULL,104),(106,91,3,1,0,'378B El Camino Rd NW',378,'B',NULL,'El Camino','Rd','NW',NULL,'Payables Dept.',NULL,NULL,'Lexington',1,1016,NULL,'40594',NULL,1228,38.028269,-84.471505,0,NULL,NULL,NULL),(107,191,2,0,0,'378B El Camino Rd NW',378,'B',NULL,'El Camino','Rd','NW',NULL,'Payables Dept.',NULL,NULL,'Lexington',1,1016,NULL,'40594',NULL,1228,38.028269,-84.471505,0,NULL,NULL,106),(108,49,3,1,0,'346E Green Rd SE',346,'E',NULL,'Green','Rd','SE',NULL,'Donor Relations',NULL,NULL,'Powhattan',1,1015,NULL,'66650',NULL,1228,39.672989,-95.788948,0,NULL,NULL,NULL),(109,71,2,1,0,'346E Green Rd SE',346,'E',NULL,'Green','Rd','SE',NULL,'Donor Relations',NULL,NULL,'Powhattan',1,1015,NULL,'66650',NULL,1228,39.672989,-95.788948,0,NULL,NULL,108),(110,153,3,1,0,'371L Dowlen Way SE',371,'L',NULL,'Dowlen','Way','SE',NULL,'Mailstop 101',NULL,NULL,'Warner Robins',1,1009,NULL,'31095',NULL,1228,32.487403,-83.669655,0,NULL,NULL,NULL),(111,63,3,1,0,'421V Green Ln NW',421,'V',NULL,'Green','Ln','NW',NULL,'Attn: Development',NULL,NULL,'Trimble',1,1034,NULL,'45782',NULL,1228,39.483798,-82.07788,0,NULL,NULL,NULL),(112,165,2,0,0,'421V Green Ln NW',421,'V',NULL,'Green','Ln','NW',NULL,'Attn: Development',NULL,NULL,'Trimble',1,1034,NULL,'45782',NULL,1228,39.483798,-82.07788,0,NULL,NULL,111),(113,23,3,1,0,'783K Jackson Pl E',783,'K',NULL,'Jackson','Pl','E',NULL,'Disbursements',NULL,NULL,'Independence',1,1004,NULL,'93526',NULL,1228,36.851729,-118.20743,0,NULL,NULL,NULL),(114,2,2,1,0,'783K Jackson Pl E',783,'K',NULL,'Jackson','Pl','E',NULL,'Disbursements',NULL,NULL,'Independence',1,1004,NULL,'93526',NULL,1228,36.851729,-118.20743,0,NULL,NULL,113),(115,98,1,1,0,'226X Caulder Ave SW',226,'X',NULL,'Caulder','Ave','SW',NULL,NULL,NULL,NULL,'Beaverville',1,1012,NULL,'60912',NULL,1228,40.968579,-87.61611,0,NULL,NULL,60),(116,120,1,1,0,'226X Caulder Ave SW',226,'X',NULL,'Caulder','Ave','SW',NULL,NULL,NULL,NULL,'Beaverville',1,1012,NULL,'60912',NULL,1228,40.968579,-87.61611,0,NULL,NULL,60),(117,136,1,1,0,'226X Caulder Ave SW',226,'X',NULL,'Caulder','Ave','SW',NULL,NULL,NULL,NULL,'Beaverville',1,1012,NULL,'60912',NULL,1228,40.968579,-87.61611,0,NULL,NULL,60),(118,93,1,0,0,'56B Bay Rd S',56,'B',NULL,'Bay','Rd','S',NULL,NULL,NULL,NULL,'Greenwood',1,1026,NULL,'68366',NULL,1228,40.974167,-96.43555,0,NULL,NULL,NULL),(119,163,1,1,0,'608S Van Ness Ave NE',608,'S',NULL,'Van Ness','Ave','NE',NULL,NULL,NULL,NULL,'Vail',1,1014,NULL,'51465',NULL,1228,42.072884,-95.20261,0,NULL,NULL,61),(120,67,1,1,0,'608S Van Ness Ave NE',608,'S',NULL,'Van Ness','Ave','NE',NULL,NULL,NULL,NULL,'Vail',1,1014,NULL,'51465',NULL,1228,42.072884,-95.20261,0,NULL,NULL,61),(121,87,1,1,0,'608S Van Ness Ave NE',608,'S',NULL,'Van Ness','Ave','NE',NULL,NULL,NULL,NULL,'Vail',1,1014,NULL,'51465',NULL,1228,42.072884,-95.20261,0,NULL,NULL,61),(122,167,1,1,0,'608S Van Ness Ave NE',608,'S',NULL,'Van Ness','Ave','NE',NULL,NULL,NULL,NULL,'Vail',1,1014,NULL,'51465',NULL,1228,42.072884,-95.20261,0,NULL,NULL,61),(123,111,1,1,0,'96N Northpoint Ln NE',96,'N',NULL,'Northpoint','Ln','NE',NULL,NULL,NULL,NULL,'Palatine',1,1012,NULL,'60078',NULL,1228,41.811929,-87.68732,0,NULL,NULL,62),(124,31,1,0,0,'96N Northpoint Ln NE',96,'N',NULL,'Northpoint','Ln','NE',NULL,NULL,NULL,NULL,'Palatine',1,1012,NULL,'60078',NULL,1228,41.811929,-87.68732,0,NULL,NULL,62),(125,115,1,1,0,'96N Northpoint Ln NE',96,'N',NULL,'Northpoint','Ln','NE',NULL,NULL,NULL,NULL,'Palatine',1,1012,NULL,'60078',NULL,1228,41.811929,-87.68732,0,NULL,NULL,62),(126,60,1,1,0,'338P Pine Dr N',338,'P',NULL,'Pine','Dr','N',NULL,NULL,NULL,NULL,'Falls Church',1,1045,NULL,'22046',NULL,1228,38.886311,-77.18098,0,NULL,NULL,NULL),(127,6,1,1,0,'556X Dowlen Ln N',556,'X',NULL,'Dowlen','Ln','N',NULL,NULL,NULL,NULL,'Toms River',1,1029,NULL,'08755',NULL,1228,40.010092,-74.23032,0,NULL,NULL,63),(128,21,1,1,0,'556X Dowlen Ln N',556,'X',NULL,'Dowlen','Ln','N',NULL,NULL,NULL,NULL,'Toms River',1,1029,NULL,'08755',NULL,1228,40.010092,-74.23032,0,NULL,NULL,63),(129,148,1,1,0,'556X Dowlen Ln N',556,'X',NULL,'Dowlen','Ln','N',NULL,NULL,NULL,NULL,'Toms River',1,1029,NULL,'08755',NULL,1228,40.010092,-74.23032,0,NULL,NULL,63),(130,122,1,1,0,'556X Dowlen Ln N',556,'X',NULL,'Dowlen','Ln','N',NULL,NULL,NULL,NULL,'Toms River',1,1029,NULL,'08755',NULL,1228,40.010092,-74.23032,0,NULL,NULL,63),(131,56,1,1,0,'107M Lincoln St E',107,'M',NULL,'Lincoln','St','E',NULL,NULL,NULL,NULL,'Greensboro',1,1032,NULL,'27455',NULL,1228,36.156707,-79.80644,0,NULL,NULL,64),(132,166,1,1,0,'107M Lincoln St E',107,'M',NULL,'Lincoln','St','E',NULL,NULL,NULL,NULL,'Greensboro',1,1032,NULL,'27455',NULL,1228,36.156707,-79.80644,0,NULL,NULL,64),(133,147,1,1,0,'107M Lincoln St E',107,'M',NULL,'Lincoln','St','E',NULL,NULL,NULL,NULL,'Greensboro',1,1032,NULL,'27455',NULL,1228,36.156707,-79.80644,0,NULL,NULL,64),(134,184,1,1,0,'8O Woodbridge Ln E',8,'O',NULL,'Woodbridge','Ln','E',NULL,NULL,NULL,NULL,'Cuba',1,1034,NULL,'45114',NULL,1228,39.362778,-83.86432,0,NULL,NULL,NULL),(135,88,1,1,0,'87V Dowlen Way E',87,'V',NULL,'Dowlen','Way','E',NULL,NULL,NULL,NULL,'New Bavaria',1,1034,NULL,'43548',NULL,1228,41.190188,-84.17549,0,NULL,NULL,65),(136,14,1,1,0,'87V Dowlen Way E',87,'V',NULL,'Dowlen','Way','E',NULL,NULL,NULL,NULL,'New Bavaria',1,1034,NULL,'43548',NULL,1228,41.190188,-84.17549,0,NULL,NULL,65),(137,2,1,0,0,'87V Dowlen Way E',87,'V',NULL,'Dowlen','Way','E',NULL,NULL,NULL,NULL,'New Bavaria',1,1034,NULL,'43548',NULL,1228,41.190188,-84.17549,0,NULL,NULL,65),(138,48,1,1,0,'87V Dowlen Way E',87,'V',NULL,'Dowlen','Way','E',NULL,NULL,NULL,NULL,'New Bavaria',1,1034,NULL,'43548',NULL,1228,41.190188,-84.17549,0,NULL,NULL,65),(139,59,1,1,0,'61C Main St NE',61,'C',NULL,'Main','St','NE',NULL,NULL,NULL,NULL,'Lyons',1,1015,NULL,'67554',NULL,1228,38.356474,-98.2025,0,NULL,NULL,66),(140,20,1,1,0,'61C Main St NE',61,'C',NULL,'Main','St','NE',NULL,NULL,NULL,NULL,'Lyons',1,1015,NULL,'67554',NULL,1228,38.356474,-98.2025,0,NULL,NULL,66),(141,110,1,1,0,'61C Main St NE',61,'C',NULL,'Main','St','NE',NULL,NULL,NULL,NULL,'Lyons',1,1015,NULL,'67554',NULL,1228,38.356474,-98.2025,0,NULL,NULL,66),(142,129,1,0,0,'61C Main St NE',61,'C',NULL,'Main','St','NE',NULL,NULL,NULL,NULL,'Lyons',1,1015,NULL,'67554',NULL,1228,38.356474,-98.2025,0,NULL,NULL,66),(143,119,1,1,0,'765I Jackson Ave E',765,'I',NULL,'Jackson','Ave','E',NULL,NULL,NULL,NULL,'Lincoln',1,1026,NULL,'68501',NULL,1228,40.865142,-96.823133,0,NULL,NULL,67),(144,173,1,1,0,'765I Jackson Ave E',765,'I',NULL,'Jackson','Ave','E',NULL,NULL,NULL,NULL,'Lincoln',1,1026,NULL,'68501',NULL,1228,40.865142,-96.823133,0,NULL,NULL,67),(145,128,1,1,0,'765I Jackson Ave E',765,'I',NULL,'Jackson','Ave','E',NULL,NULL,NULL,NULL,'Lincoln',1,1026,NULL,'68501',NULL,1228,40.865142,-96.823133,0,NULL,NULL,67),(146,162,1,1,0,'765I Jackson Ave E',765,'I',NULL,'Jackson','Ave','E',NULL,NULL,NULL,NULL,'Lincoln',1,1026,NULL,'68501',NULL,1228,40.865142,-96.823133,0,NULL,NULL,67),(147,156,1,1,0,'104B Lincoln Blvd W',104,'B',NULL,'Lincoln','Blvd','W',NULL,NULL,NULL,NULL,'Dallas',1,1042,NULL,'75219',NULL,1228,32.812462,-96.81412,0,NULL,NULL,68),(148,51,1,1,0,'104B Lincoln Blvd W',104,'B',NULL,'Lincoln','Blvd','W',NULL,NULL,NULL,NULL,'Dallas',1,1042,NULL,'75219',NULL,1228,32.812462,-96.81412,0,NULL,NULL,68),(149,71,1,0,0,'104B Lincoln Blvd W',104,'B',NULL,'Lincoln','Blvd','W',NULL,NULL,NULL,NULL,'Dallas',1,1042,NULL,'75219',NULL,1228,32.812462,-96.81412,0,NULL,NULL,68),(150,17,1,1,0,'104B Lincoln Blvd W',104,'B',NULL,'Lincoln','Blvd','W',NULL,NULL,NULL,NULL,'Dallas',1,1042,NULL,'75219',NULL,1228,32.812462,-96.81412,0,NULL,NULL,68),(151,117,1,1,0,'942E Second Way S',942,'E',NULL,'Second','Way','S',NULL,NULL,NULL,NULL,'Hardyville',1,1045,NULL,'23070',NULL,1228,37.551549,-76.39294,0,NULL,NULL,69),(152,78,1,1,0,'942E Second Way S',942,'E',NULL,'Second','Way','S',NULL,NULL,NULL,NULL,'Hardyville',1,1045,NULL,'23070',NULL,1228,37.551549,-76.39294,0,NULL,NULL,69),(153,53,1,1,0,'942E Second Way S',942,'E',NULL,'Second','Way','S',NULL,NULL,NULL,NULL,'Hardyville',1,1045,NULL,'23070',NULL,1228,37.551549,-76.39294,0,NULL,NULL,69),(154,190,1,1,0,'94Z Green Way N',94,'Z',NULL,'Green','Way','N',NULL,NULL,NULL,NULL,'Shiprock',1,1030,NULL,'87420',NULL,1228,36.748026,-108.80023,0,NULL,NULL,NULL),(155,188,1,1,0,'303A Dowlen Ln N',303,'A',NULL,'Dowlen','Ln','N',NULL,NULL,NULL,NULL,'Whelen Springs',1,1003,NULL,'71772',NULL,1228,33.832537,-93.1238,0,NULL,NULL,70),(156,4,1,1,0,'303A Dowlen Ln N',303,'A',NULL,'Dowlen','Ln','N',NULL,NULL,NULL,NULL,'Whelen Springs',1,1003,NULL,'71772',NULL,1228,33.832537,-93.1238,0,NULL,NULL,70),(157,138,1,1,0,'303A Dowlen Ln N',303,'A',NULL,'Dowlen','Ln','N',NULL,NULL,NULL,NULL,'Whelen Springs',1,1003,NULL,'71772',NULL,1228,33.832537,-93.1238,0,NULL,NULL,70),(158,161,1,1,0,'303A Dowlen Ln N',303,'A',NULL,'Dowlen','Ln','N',NULL,NULL,NULL,NULL,'Whelen Springs',1,1003,NULL,'71772',NULL,1228,33.832537,-93.1238,0,NULL,NULL,70),(159,168,1,1,0,'356X Beech Ln W',356,'X',NULL,'Beech','Ln','W',NULL,NULL,NULL,NULL,'Hendersonville',1,1032,NULL,'28792',NULL,1228,35.353837,-82.41625,0,NULL,NULL,71),(160,170,1,1,0,'356X Beech Ln W',356,'X',NULL,'Beech','Ln','W',NULL,NULL,NULL,NULL,'Hendersonville',1,1032,NULL,'28792',NULL,1228,35.353837,-82.41625,0,NULL,NULL,71),(161,33,1,1,0,'356X Beech Ln W',356,'X',NULL,'Beech','Ln','W',NULL,NULL,NULL,NULL,'Hendersonville',1,1032,NULL,'28792',NULL,1228,35.353837,-82.41625,0,NULL,NULL,71),(162,19,1,1,0,'356X Beech Ln W',356,'X',NULL,'Beech','Ln','W',NULL,NULL,NULL,NULL,'Hendersonville',1,1032,NULL,'28792',NULL,1228,35.353837,-82.41625,0,NULL,NULL,71),(163,143,1,1,0,'145B Maple Blvd SE',145,'B',NULL,'Maple','Blvd','SE',NULL,NULL,NULL,NULL,'Paullina',1,1014,NULL,'51046',NULL,1228,42.976116,-95.65772,0,NULL,NULL,72),(164,72,1,1,0,'145B Maple Blvd SE',145,'B',NULL,'Maple','Blvd','SE',NULL,NULL,NULL,NULL,'Paullina',1,1014,NULL,'51046',NULL,1228,42.976116,-95.65772,0,NULL,NULL,72),(165,62,1,0,0,'145B Maple Blvd SE',145,'B',NULL,'Maple','Blvd','SE',NULL,NULL,NULL,NULL,'Paullina',1,1014,NULL,'51046',NULL,1228,42.976116,-95.65772,0,NULL,NULL,72),(166,13,1,1,0,'145B Maple Blvd SE',145,'B',NULL,'Maple','Blvd','SE',NULL,NULL,NULL,NULL,'Paullina',1,1014,NULL,'51046',NULL,1228,42.976116,-95.65772,0,NULL,NULL,72),(167,145,1,1,0,'587C Main Ave NW',587,'C',NULL,'Main','Ave','NW',NULL,NULL,NULL,NULL,'Madison',1,1048,NULL,'53782',NULL,1228,43.06956,-89.423861,0,NULL,NULL,73),(168,187,1,1,0,'587C Main Ave NW',587,'C',NULL,'Main','Ave','NW',NULL,NULL,NULL,NULL,'Madison',1,1048,NULL,'53782',NULL,1228,43.06956,-89.423861,0,NULL,NULL,73),(169,130,1,1,0,'587C Main Ave NW',587,'C',NULL,'Main','Ave','NW',NULL,NULL,NULL,NULL,'Madison',1,1048,NULL,'53782',NULL,1228,43.06956,-89.423861,0,NULL,NULL,73),(170,74,1,1,0,'587C Main Ave NW',587,'C',NULL,'Main','Ave','NW',NULL,NULL,NULL,NULL,'Madison',1,1048,NULL,'53782',NULL,1228,43.06956,-89.423861,0,NULL,NULL,73),(171,76,1,1,0,'506B Dowlen Ln SW',506,'B',NULL,'Dowlen','Ln','SW',NULL,NULL,NULL,NULL,'Browning',1,1025,NULL,'59417',NULL,1228,48.556986,-113.0698,0,NULL,NULL,74),(172,195,1,1,0,'506B Dowlen Ln SW',506,'B',NULL,'Dowlen','Ln','SW',NULL,NULL,NULL,NULL,'Browning',1,1025,NULL,'59417',NULL,1228,48.556986,-113.0698,0,NULL,NULL,74),(173,39,1,1,0,'506B Dowlen Ln SW',506,'B',NULL,'Dowlen','Ln','SW',NULL,NULL,NULL,NULL,'Browning',1,1025,NULL,'59417',NULL,1228,48.556986,-113.0698,0,NULL,NULL,74),(174,28,1,1,0,'549S States Pl W',549,'S',NULL,'States','Pl','W',NULL,NULL,NULL,NULL,'Jerome',1,1024,NULL,'65529',NULL,1228,37.926116,-91.98054,0,NULL,NULL,NULL),(175,176,1,1,0,'227T Van Ness Rd E',227,'T',NULL,'Van Ness','Rd','E',NULL,NULL,NULL,NULL,'McKee',1,1016,NULL,'40447',NULL,1228,37.457017,-84.03435,0,NULL,NULL,75),(176,95,1,1,0,'227T Van Ness Rd E',227,'T',NULL,'Van Ness','Rd','E',NULL,NULL,NULL,NULL,'McKee',1,1016,NULL,'40447',NULL,1228,37.457017,-84.03435,0,NULL,NULL,75),(177,79,1,1,0,'227T Van Ness Rd E',227,'T',NULL,'Van Ness','Rd','E',NULL,NULL,NULL,NULL,'McKee',1,1016,NULL,'40447',NULL,1228,37.457017,-84.03435,0,NULL,NULL,75),(178,70,1,1,0,'227T Van Ness Rd E',227,'T',NULL,'Van Ness','Rd','E',NULL,NULL,NULL,NULL,'McKee',1,1016,NULL,'40447',NULL,1228,37.457017,-84.03435,0,NULL,NULL,75),(179,68,1,1,0,'399I Van Ness Way E',399,'I',NULL,'Van Ness','Way','E',NULL,NULL,NULL,NULL,'Bridgeton',1,1013,NULL,'47836',NULL,1228,39.647929,-87.17529,0,NULL,NULL,76),(180,142,1,1,0,'399I Van Ness Way E',399,'I',NULL,'Van Ness','Way','E',NULL,NULL,NULL,NULL,'Bridgeton',1,1013,NULL,'47836',NULL,1228,39.647929,-87.17529,0,NULL,NULL,76),(181,199,1,1,0,'399I Van Ness Way E',399,'I',NULL,'Van Ness','Way','E',NULL,NULL,NULL,NULL,'Bridgeton',1,1013,NULL,'47836',NULL,1228,39.647929,-87.17529,0,NULL,NULL,76),(182,18,1,1,0,'399I Van Ness Way E',399,'I',NULL,'Van Ness','Way','E',NULL,NULL,NULL,NULL,'Bridgeton',1,1013,NULL,'47836',NULL,1228,39.647929,-87.17529,0,NULL,NULL,76),(183,155,1,1,0,'939L Dowlen Ln NW',939,'L',NULL,'Dowlen','Ln','NW',NULL,NULL,NULL,NULL,'Butte Des Morts',1,1048,NULL,'54927',NULL,1228,44.101044,-88.65531,0,NULL,NULL,77),(184,200,1,0,0,'939L Dowlen Ln NW',939,'L',NULL,'Dowlen','Ln','NW',NULL,NULL,NULL,NULL,'Butte Des Morts',1,1048,NULL,'54927',NULL,1228,44.101044,-88.65531,0,NULL,NULL,77),(185,96,1,1,0,'939L Dowlen Ln NW',939,'L',NULL,'Dowlen','Ln','NW',NULL,NULL,NULL,NULL,'Butte Des Morts',1,1048,NULL,'54927',NULL,1228,44.101044,-88.65531,0,NULL,NULL,77),(186,154,1,1,0,'939L Dowlen Ln NW',939,'L',NULL,'Dowlen','Ln','NW',NULL,NULL,NULL,NULL,'Butte Des Morts',1,1048,NULL,'54927',NULL,1228,44.101044,-88.65531,0,NULL,NULL,77),(187,58,1,1,0,'711X Caulder Dr SW',711,'X',NULL,'Caulder','Dr','SW',NULL,NULL,NULL,NULL,'Tucson',1,1002,NULL,'85731',NULL,1228,32.088034,-110.708174,0,NULL,NULL,78),(188,201,1,1,0,'711X Caulder Dr SW',711,'X',NULL,'Caulder','Dr','SW',NULL,NULL,NULL,NULL,'Tucson',1,1002,NULL,'85731',NULL,1228,32.088034,-110.708174,0,NULL,NULL,78),(189,140,1,1,0,'711X Caulder Dr SW',711,'X',NULL,'Caulder','Dr','SW',NULL,NULL,NULL,NULL,'Tucson',1,1002,NULL,'85731',NULL,1228,32.088034,-110.708174,0,NULL,NULL,78),(190,196,1,1,0,'711X Caulder Dr SW',711,'X',NULL,'Caulder','Dr','SW',NULL,NULL,NULL,NULL,'Tucson',1,1002,NULL,'85731',NULL,1228,32.088034,-110.708174,0,NULL,NULL,78),(191,47,1,0,0,'620L Martin Luther King St S',620,'L',NULL,'Martin Luther King','St','S',NULL,NULL,NULL,NULL,'Elbe',1,1046,NULL,'98330',NULL,1228,46.761546,-122.17858,0,NULL,NULL,79),(192,114,1,1,0,'620L Martin Luther King St S',620,'L',NULL,'Martin Luther King','St','S',NULL,NULL,NULL,NULL,'Elbe',1,1046,NULL,'98330',NULL,1228,46.761546,-122.17858,0,NULL,NULL,79),(193,103,1,1,0,'620L Martin Luther King St S',620,'L',NULL,'Martin Luther King','St','S',NULL,NULL,NULL,NULL,'Elbe',1,1046,NULL,'98330',NULL,1228,46.761546,-122.17858,0,NULL,NULL,79),(194,197,1,1,0,'620L Martin Luther King St S',620,'L',NULL,'Martin Luther King','St','S',NULL,NULL,NULL,NULL,'Elbe',1,1046,NULL,'98330',NULL,1228,46.761546,-122.17858,0,NULL,NULL,79),(195,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),(196,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),(197,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; @@ -135,7 +135,7 @@ UNLOCK TABLES; LOCK TABLES `civicrm_cache` WRITE; /*!40000 ALTER TABLE `civicrm_cache` DISABLE KEYS */; -INSERT INTO `civicrm_cache` (`id`, `group_name`, `path`, `data`, `component_id`, `created_date`, `expired_date`) VALUES (1,'ext','mapper/moduleFiles','a:0:{}',NULL,'2014-01-23 23:35:19',NULL),(2,'CiviCRM setting Spec','All','a:82:{s:32:\"address_standardization_provider\";a:12:{s:10:\"group_name\";s:19:\"Address Preferences\";s:5:\"group\";s:7:\"address\";s:4:\"name\";s:32:\"address_standardization_provider\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:6:\"Select\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:33:\"Address Standardization Provider.\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";s:486:\"CiviCRM includes an optional plugin for interfacing with the United States Postal Services (USPS) Address Standardization web service. You must register to use the USPS service at https://www.usps.com/business/webtools-address-information.htm. If you are approved, they will provide you with a User ID and the URL for the service. Plugins for other address standardization services may be available from 3rd party developers. If installed, they will be included in the drop-down below. \";}s:30:\"address_standardization_userid\";a:12:{s:10:\"group_name\";s:19:\"Address Preferences\";s:5:\"group\";s:7:\"address\";s:4:\"name\";s:30:\"address_standardization_userid\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:19:\"Web service user ID\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:27:\"address_standardization_url\";a:13:{s:10:\"group_name\";s:19:\"Address Preferences\";s:5:\"group\";s:7:\"address\";s:4:\"name\";s:27:\"address_standardization_url\";s:4:\"type\";s:4:\"Text\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:15:\"Web service url\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";s:16:\"Web service URL.\";s:17:\"validate_callback\";s:19:\"CRM_Utils_Rule::url\";}s:15:\"tag_unconfirmed\";a:12:{s:10:\"group_name\";s:20:\"Campaign Preferences\";s:5:\"group\";s:8:\"campaign\";s:4:\"name\";s:15:\"tag_unconfirmed\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";s:11:\"Unconfirmed\";s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:36:\"Tag for Unconfirmed Petition Signers\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";s:94:\"If set, new contacts that are created when signing a petition are assigned a tag of this name.\";}s:17:\"petition_contacts\";a:12:{s:10:\"group_name\";s:20:\"Campaign Preferences\";s:5:\"group\";s:8:\"campaign\";s:4:\"name\";s:17:\"petition_contacts\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";s:17:\"Petition Contacts\";s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:22:\"Petition Signers Group\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";s:94:\"If set, new contacts that are created when signing a petition are assigned a tag of this name.\";}s:23:\"cvv_backoffice_required\";a:12:{s:10:\"group_name\";s:22:\"Contribute Preferences\";s:5:\"group\";s:10:\"contribute\";s:4:\"name\";s:23:\"cvv_backoffice_required\";s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";s:1:\"1\";s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:28:\"CVV required for backoffice?\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:65:\"Is the CVV code required for back office credit card transactions\";s:9:\"help_text\";s:137:\"If set it back-office credit card transactions will required a cvv code. Leave as required unless you have a very strong reason to change\";}s:20:\"contact_view_options\";a:13:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:20:\"contact_view_options\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:10:\"checkboxes\";s:14:\"pseudoconstant\";a:1:{s:15:\"optionGroupName\";s:20:\"contact_view_options\";}s:7:\"default\";s:28:\"123456789101113\";s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:16:\"Viewing Contacts\";s:9:\"is_domain\";s:1:\"1\";s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:20:\"contact_edit_options\";a:13:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:20:\"contact_edit_options\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:10:\"checkboxes\";s:14:\"pseudoconstant\";a:1:{s:15:\"optionGroupName\";s:20:\"contact_edit_options\";}s:7:\"default\";s:25:\"1234567891011\";s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:16:\"Editing Contacts\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:23:\"advanced_search_options\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:4:\"name\";s:23:\"advanced_search_options\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:10:\"checkboxes\";s:14:\"pseudoconstant\";a:1:{s:15:\"optionGroupName\";s:23:\"advanced_search_options\";}s:7:\"default\";s:43:\"1234567891012131516171819\";s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:14:\"Contact Search\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:22:\"user_dashboard_options\";a:13:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:22:\"user_dashboard_options\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:10:\"checkboxes\";s:14:\"pseudoconstant\";a:1:{s:15:\"optionGroupName\";s:22:\"user_dashboard_options\";}s:7:\"default\";s:17:\"12345789\";s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:17:\"Contact Dashboard\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:15:\"address_options\";a:13:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:15:\"address_options\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:4:\"Text\";s:14:\"pseudoconstant\";a:1:{s:15:\"optionGroupName\";s:15:\"address_options\";}s:7:\"default\";s:19:\"1245891011\";s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:18:\"Addressing Options\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:14:\"address_format\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:14:\"address_format\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:8:\"TextArea\";s:7:\"default\";s:198:\"{contact.address_name}\n{contact.street_address}\n{contact.supplemental_address_1}\n{contact.supplemental_address_2}\n{contact.city}{, }{contact.state_province}{ }{contact.postal_code}\n{contact.country}\";s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:14:\"Address Format\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:14:\"mailing_format\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:14:\"mailing_format\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";s:195:\"{contact.addressee}\n{contact.street_address}\n{contact.supplemental_address_1}\n{contact.supplemental_address_2}\n{contact.city}{, }{contact.state_province}{ }{contact.postal_code}\n{contact.country}\";s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:14:\"Mailing Format\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:19:\"display_name_format\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:19:\"display_name_format\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";s:102:\"{contact.individual_prefix}{ }{contact.first_name}{ }{contact.last_name}{ }{contact.individual_suffix}\";s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:19:\"Display Name Format\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:16:\"sort_name_format\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:16:\"sort_name_format\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";s:43:\"{contact.last_name}{, }{contact.first_name}\";s:3:\"add\";s:3:\"4.1\";s:5:\"title\";N;s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:9:\"editor_id\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:9:\"editor_id\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:5:\"title\";N;s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:26:\"contact_ajax_check_similar\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:26:\"contact_ajax_check_similar\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:5:\"title\";N;s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:30:\"activity_assignee_notification\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:30:\"activity_assignee_notification\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:25:\"Notify Activity Assignees\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:34:\"activity_assignee_notification_ics\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:34:\"activity_assignee_notification_ics\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:41:\"Include ICal Invite to Activity Assignees\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:28:\"contact_autocomplete_options\";a:13:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:28:\"contact_autocomplete_options\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:10:\"checkboxes\";s:14:\"pseudoconstant\";a:1:{s:15:\"optionGroupName\";s:28:\"contact_autocomplete_options\";}s:7:\"default\";s:15:\"1234567\";s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:38:\"Contact Reference Autocomplete Options\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:25:\"contact_reference_options\";a:13:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:25:\"contact_reference_options\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:10:\"checkboxes\";s:14:\"pseudoconstant\";a:1:{s:15:\"optionGroupName\";s:25:\"contact_reference_options\";}s:7:\"default\";s:15:\"1234567\";s:3:\"add\";s:3:\"4.1\";s:5:\"title\";N;s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:15:\"max_attachments\";a:16:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:15:\"max_attachments\";s:10:\"legacy_key\";s:14:\"maxAttachments\";s:8:\"prefetch\";i:0;s:4:\"type\";s:7:\"Integer\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:4:\"text\";s:15:\"html_attributes\";a:2:{s:4:\"size\";i:2;s:9:\"maxlength\";i:8;}s:7:\"default\";i:3;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:19:\"Maximum Attachments\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:93:\"Maximum number of files (documents, images, etc.) which can attached to emails or activities.\";s:9:\"help_text\";N;}s:11:\"maxFileSize\";a:16:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:11:\"maxFileSize\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:7:\"Integer\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:4:\"text\";s:15:\"html_attributes\";a:2:{s:4:\"size\";i:2;s:9:\"maxlength\";i:8;}s:7:\"default\";i:3;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:25:\"Maximum File Size (in MB)\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:140:\"Maximum Size of file (documents, images, etc.) which can attached to emails or activities.
Note: php.ini should support this file size.\";s:9:\"help_text\";N;}s:16:\"contact_undelete\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:16:\"contact_undelete\";s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";i:1;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:26:\"Contact Trash and Undelete\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:200:\"If enabled, deleted contacts will be moved to trash (instead of being destroyed). Users with the proper permission are able to search for the deleted contacts and restore them (or delete permanently).\";s:9:\"help_text\";N;}s:24:\"allowPermDeleteFinancial\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:24:\"allowPermDeleteFinancial\";s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";b:0;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:24:\"Contact Permanent Delete\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:81:\"Allow Permanent Delete for contacts who are linked to live financial transactions\";s:9:\"help_text\";N;}s:12:\"versionAlert\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:12:\"versionAlert\";s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";i:1;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:18:\"New Version Alerts\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:212:\"Displays an on-screen alert to users with \"Administer CiviCRM\" permissions when a new version of CiviCRM is available. This setting will only work if the \"Version Check & Statistics Reporting\" setting is enabled.\";s:9:\"help_text\";N;}s:12:\"versionCheck\";a:14:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:12:\"versionCheck\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";i:1;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:36:\"Version Check & Statistics Reporting\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:847:\"If enabled, CiviCRM automatically checks availablity of a newer version of the software. New version alerts will be displayed on the main CiviCRM Administration page.\nWhen enabled, statistics about your CiviCRM installation are reported anonymously to the CiviCRM team to assist in prioritizing ongoing development efforts. The following information is gathered: CiviCRM version, versions of PHP, MySQL and framework (Drupal/Joomla/standalone), and default language. Counts (but no actual data) of the following record types are reported: contacts, activities, cases, relationships, contributions, contribution pages, contribution products, contribution widgets, discounts, price sets, profiles, events, participants, tell-a-friend pages, grants, mailings, memberships, membership blocks, pledges, pledge blocks and active payment processor types.\";s:9:\"help_text\";N;}s:21:\"doNotAttachPDFReceipt\";a:14:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:21:\"doNotAttachPDFReceipt\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";i:1;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:27:\"Attach PDF copy to receipts\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:98:\"If enabled, CiviCRM sends PDF receipt as an attachment during event signup or online contribution.\";s:9:\"help_text\";N;}s:15:\"wkhtmltopdfPath\";a:16:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:15:\"wkhtmltopdfPath\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:4:\"Text\";s:15:\"html_attributes\";a:2:{s:4:\"size\";i:64;s:9:\"maxlength\";i:256;}s:7:\"default\";N;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:30:\"Path to wkhtmltopdf executable\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:18:\"recaptchaPublicKey\";a:16:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:18:\"recaptchaPublicKey\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:4:\"Text\";s:15:\"html_attributes\";a:2:{s:4:\"size\";i:64;s:9:\"maxlength\";i:64;}s:7:\"default\";N;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:20:\"Recaptcha Public Key\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:19:\"recaptchaPrivateKey\";a:16:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:19:\"recaptchaPrivateKey\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:4:\"Text\";s:15:\"html_attributes\";a:2:{s:4:\"size\";i:64;s:9:\"maxlength\";i:64;}s:7:\"default\";N;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:21:\"Recaptcha Private Key\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:21:\"dashboardCacheTimeout\";a:16:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:21:\"dashboardCacheTimeout\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:7:\"Integer\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:4:\"Text\";s:15:\"html_attributes\";a:2:{s:4:\"size\";i:3;s:9:\"maxlength\";i:5;}s:7:\"default\";N;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:23:\"Dashboard cache timeout\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:15:\"checksumTimeout\";a:16:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:15:\"checksumTimeout\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:7:\"Integer\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:4:\"Text\";s:15:\"html_attributes\";a:2:{s:4:\"size\";i:2;s:9:\"maxlength\";i:8;}s:7:\"default\";i:7;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:17:\"Checksum Lifespan\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:7:\"blogUrl\";a:16:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:7:\"blogUrl\";s:8:\"prefetch\";i:0;s:11:\"config_only\";i:0;s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:4:\"Text\";s:15:\"html_attributes\";a:2:{s:4:\"size\";i:64;s:9:\"maxlength\";i:128;}s:7:\"default\";s:9:\"*default*\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:13:\"Blog Feed URL\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:38:\"Blog feed URL used by the blog dashlet\";s:9:\"help_text\";s:68:\"Use \"*default*\" for the system default or override with a custom URL\";}s:20:\"communityMessagesUrl\";a:16:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:20:\"communityMessagesUrl\";s:8:\"prefetch\";i:0;s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:4:\"Text\";s:15:\"html_attributes\";a:2:{s:4:\"size\";i:64;s:9:\"maxlength\";i:128;}s:7:\"default\";s:9:\"*default*\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:22:\"Community Messages URL\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:44:\"Service providing CiviCRM community messages\";s:9:\"help_text\";s:68:\"Use \"*default*\" for the system default or override with a custom URL\";}s:12:\"resCacheCode\";a:16:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:12:\"resCacheCode\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:4:\"Text\";s:15:\"html_attributes\";a:2:{s:4:\"size\";i:16;s:9:\"maxlength\";i:16;}s:7:\"default\";N;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:19:\"Resource Cache Code\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:62:\"Code appended to resource URLs (JS/CSS) to coerce HTTP caching\";s:9:\"help_text\";N;}s:9:\"verifySSL\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:9:\"verifySSL\";s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";i:1;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:0:\"\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:79:\"If disabled, backend HTTPS services will allow unverified, insecure connections\";s:9:\"help_text\";s:140:\"Unless you are absolutely unable to configure your server to check the SSL certificate of the remote server you should leave this set to Yes\";}s:10:\"wpBasePage\";a:14:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:10:\"wpBasePage\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:4:\"text\";s:15:\"quick_form_type\";s:7:\"Element\";s:8:\"prefetch\";i:1;s:7:\"default\";s:0:\"\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:19:\"WordPress Base Page\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:54:\"If set, CiviCRM will use this setting as the base url.\";s:9:\"help_text\";s:177:\"By default, CiviCRM will generate front-facing pages using the home page at http://wp/ as its base. If you want to use a different template for CiviCRM pages, set the path here.\";}s:23:\"secondDegRelPermissions\";a:14:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:23:\"secondDegRelPermissions\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";i:0;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:44:\"Allow second-degree relationship permissions\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:136:\"If enabled, contacts with the permission to edit a related contact will inherit that contact\'s permission to edit other related contacts\";s:9:\"help_text\";N;}s:17:\"enable_components\";a:15:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:17:\"enable_components\";s:4:\"type\";s:5:\"Array\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:14:\"advmultiselect\";s:15:\"html_attributes\";a:3:{s:4:\"size\";i:5;s:5:\"style\";s:11:\"width:150px\";s:5:\"class\";s:14:\"advmultiselect\";}s:7:\"default\";a:6:{i:0;s:9:\"CiviEvent\";i:1;s:14:\"CiviContribute\";i:2;s:10:\"CiviMember\";i:3;s:8:\"CiviMail\";i:4;s:10:\"CiviReport\";i:5;s:10:\"CiviPledge\";}s:3:\"add\";s:3:\"4.4\";s:5:\"title\";s:17:\"Enable Components\";s:9:\"is_domain\";s:1:\"1\";s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;s:9:\"on_change\";a:2:{i:0;a:2:{i:0;s:13:\"CRM_Case_Info\";i:1;s:18:\"onToggleComponents\";}i:1;a:2:{i:0;s:18:\"CRM_Core_Component\";i:1;s:22:\"flushEnabledComponents\";}}}s:16:\"disable_core_css\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:16:\"disable_core_css\";s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";s:1:\"0\";s:3:\"add\";s:3:\"4.4\";s:5:\"title\";s:19:\"Disable CiviCRM css\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:55:\"Prevent the stylesheet \"civicrm.css\" from being loaded.\";s:9:\"help_text\";N;}s:13:\"debug_enabled\";a:15:{s:10:\"group_name\";s:21:\"Developer Preferences\";s:5:\"group\";s:9:\"developer\";s:4:\"name\";s:13:\"debug_enabled\";s:11:\"config_only\";i:1;s:10:\"config_key\";s:5:\"debug\";s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";s:1:\"0\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:16:\"Enable Debugging\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:130:\"Set this value to Yes if you want to use one of CiviCRM\'s debugging tools. This feature should NOT be enabled for production sites\";s:8:\"prefetch\";i:1;s:9:\"help_text\";s:39:\"Do not turn this on on production sites\";}s:20:\"userFrameworkLogging\";a:14:{s:10:\"group_name\";s:21:\"Developer Preferences\";s:5:\"group\";s:9:\"developer\";s:4:\"name\";s:20:\"userFrameworkLogging\";s:11:\"config_only\";i:1;s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";s:1:\"0\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:30:\"Enable Drupal Watchdog Logging\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:102:\"Set this value to Yes if you want CiviCRM error/debugging messages to also appear in Drupal error logs\";s:8:\"prefetch\";i:1;s:9:\"help_text\";s:239:\"Set this value to Yes if you want CiviCRM error/debugging messages the appear in your CMS\' error log.\nIn the case of Drupal, this will cause all CiviCRM error messages to appear in the watchdog (assuming you have Drupal\'s watchdog enabled)\";}s:9:\"backtrace\";a:13:{s:10:\"group_name\";s:21:\"Developer Preferences\";s:5:\"group\";s:9:\"developer\";s:4:\"name\";s:9:\"backtrace\";s:11:\"config_only\";i:1;s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";s:1:\"0\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:17:\"Display Backtrace\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:155:\"Set this value to Yes if you want to display a backtrace listing when a fatal error is encountered. This feature should NOT be enabled for production sites\";s:8:\"prefetch\";i:1;}s:18:\"fatalErrorTemplate\";a:13:{s:10:\"group_name\";s:21:\"Developer Preferences\";s:5:\"group\";s:9:\"developer\";s:4:\"name\";s:18:\"fatalErrorTemplate\";s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:4:\"text\";s:7:\"default\";s:20:\"CRM/common/fatal.tpl\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:20:\"Fatal Error Template\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:123:\"Enter the path and filename for a custom Smarty template if you want to define your own screen for displaying fatal errors.\";s:8:\"prefetch\";i:1;}s:17:\"fatalErrorHandler\";a:13:{s:10:\"group_name\";s:21:\"Developer Preferences\";s:5:\"group\";s:9:\"developer\";s:4:\"name\";s:17:\"fatalErrorHandler\";s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:4:\"text\";s:7:\"default\";s:4:\"null\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:19:\"Fatal Error Handler\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:136:\"Enter the path and class for a custom PHP error-handling function if you want to override built-in CiviCRM error handling for your site.\";s:8:\"prefetch\";i:1;}s:9:\"uploadDir\";a:13:{s:10:\"group_name\";s:21:\"Directory Preferences\";s:5:\"group\";s:9:\"directory\";s:4:\"name\";s:9:\"uploadDir\";s:4:\"type\";s:3:\"Url\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:8:\"prefetch\";i:1;s:5:\"title\";N;s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";s:94:\"If set, new contacts that are created when signing a petition are assigned a tag of this name.\";}s:14:\"imageUploadDir\";a:13:{s:10:\"group_name\";s:21:\"Directory Preferences\";s:5:\"group\";s:9:\"directory\";s:4:\"name\";s:14:\"imageUploadDir\";s:4:\"type\";s:3:\"Url\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:8:\"prefetch\";i:1;s:5:\"title\";N;s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:19:\"customFileUploadDir\";a:13:{s:10:\"group_name\";s:21:\"Directory Preferences\";s:5:\"group\";s:9:\"directory\";s:4:\"name\";s:19:\"customFileUploadDir\";s:4:\"type\";s:3:\"Url\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:8:\"prefetch\";i:1;s:5:\"title\";N;s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:17:\"customTemplateDir\";a:13:{s:10:\"group_name\";s:21:\"Directory Preferences\";s:5:\"group\";s:9:\"directory\";s:4:\"name\";s:17:\"customTemplateDir\";s:4:\"type\";s:3:\"Url\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:8:\"prefetch\";i:1;s:5:\"title\";N;s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:16:\"customPHPPathDir\";a:13:{s:10:\"group_name\";s:21:\"Directory Preferences\";s:5:\"group\";s:9:\"directory\";s:4:\"name\";s:16:\"customPHPPathDir\";s:4:\"type\";s:3:\"Url\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:8:\"prefetch\";i:1;s:5:\"title\";N;s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:13:\"extensionsDir\";a:13:{s:10:\"group_name\";s:21:\"Directory Preferences\";s:5:\"group\";s:9:\"directory\";s:4:\"name\";s:13:\"extensionsDir\";s:4:\"type\";s:3:\"Url\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:8:\"prefetch\";i:1;s:5:\"title\";N;s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:17:\"event_enable_cart\";a:12:{s:4:\"name\";s:11:\"enable_cart\";s:10:\"group_name\";s:17:\"Event Preferences\";s:5:\"group\";s:5:\"event\";s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:7:\"default\";i:0;s:3:\"add\";d:4.0999999999999996;s:5:\"title\";s:17:\"Enable Event Cart\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:1;s:11:\"description\";s:8:\"WRITE ME\";s:9:\"help_text\";s:8:\"WRITE ME\";}s:25:\"monetaryThousandSeparator\";a:16:{s:10:\"group_name\";s:24:\"Localization Preferences\";s:5:\"group\";s:12:\"localization\";s:4:\"name\";s:25:\"monetaryThousandSeparator\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:4:\"text\";s:15:\"html_attributes\";a:1:{s:4:\"size\";i:2;}s:7:\"default\";s:1:\",\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:19:\"Thousands Separator\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:20:\"monetaryDecimalPoint\";a:16:{s:10:\"group_name\";s:24:\"Localization Preferences\";s:5:\"group\";s:12:\"localization\";s:4:\"name\";s:20:\"monetaryDecimalPoint\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:4:\"text\";s:15:\"html_attributes\";a:1:{s:4:\"size\";i:2;}s:7:\"default\";s:1:\".\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:17:\"Decimal Delimiter\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:11:\"moneyformat\";a:15:{s:10:\"group_name\";s:24:\"Localization Preferences\";s:5:\"group\";s:12:\"localization\";s:4:\"name\";s:11:\"moneyformat\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:4:\"text\";s:7:\"default\";s:5:\"%c %a\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:23:\"Monetary Amount Display\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:16:\"moneyvalueformat\";a:15:{s:10:\"group_name\";s:24:\"Localization Preferences\";s:5:\"group\";s:12:\"localization\";s:4:\"name\";s:16:\"moneyvalueformat\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:4:\"text\";s:7:\"default\";s:3:\"%!i\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:23:\"Monetary Amount Display\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:15:\"defaultCurrency\";a:16:{s:10:\"group_name\";s:24:\"Localization Preferences\";s:5:\"group\";s:12:\"localization\";s:4:\"name\";s:15:\"defaultCurrency\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:4:\"text\";s:15:\"html_attributes\";a:1:{s:4:\"size\";i:2;}s:7:\"default\";s:3:\"USD\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:16:\"Default Currency\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:75:\"Default currency assigned to contributions and other monetary transactions.\";s:9:\"help_text\";N;}s:21:\"defaultContactCountry\";a:16:{s:10:\"group_name\";s:24:\"Localization Preferences\";s:5:\"group\";s:12:\"localization\";s:4:\"name\";s:21:\"defaultContactCountry\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:4:\"text\";s:15:\"html_attributes\";a:1:{s:4:\"size\";i:4;}s:7:\"default\";s:4:\"1228\";s:3:\"add\";s:3:\"4.4\";s:5:\"title\";s:15:\"Default Country\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:68:\"This value is selected by default when adding a new contact address.\";s:9:\"help_text\";N;}s:12:\"countryLimit\";a:16:{s:10:\"group_name\";s:24:\"Localization Preferences\";s:5:\"group\";s:12:\"localization\";s:4:\"name\";s:12:\"countryLimit\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:5:\"Array\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:14:\"advmultiselect\";s:15:\"html_attributes\";a:3:{s:4:\"size\";i:5;s:5:\"style\";s:11:\"width:150px\";s:5:\"class\";s:14:\"advmultiselect\";}s:7:\"default\";s:4:\"null\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:19:\"Available Countries\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:0:\"\";s:9:\"help_text\";N;}s:13:\"provinceLimit\";a:16:{s:10:\"group_name\";s:24:\"Localization Preferences\";s:5:\"group\";s:12:\"localization\";s:4:\"name\";s:13:\"provinceLimit\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:5:\"Array\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:14:\"advmultiselect\";s:15:\"html_attributes\";a:3:{s:4:\"size\";i:5;s:5:\"style\";s:11:\"width:150px\";s:5:\"class\";s:14:\"advmultiselect\";}s:7:\"default\";s:4:\"null\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:30:\"Available States and Provinces\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:0:\"\";s:9:\"help_text\";N;}s:13:\"inheritLocale\";a:14:{s:10:\"group_name\";s:24:\"Localization Preferences\";s:5:\"group\";s:12:\"localization\";s:4:\"name\";s:13:\"inheritLocale\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";s:1:\"0\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:20:\"Inherit CMS Language\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:0:\"\";s:9:\"help_text\";N;}s:18:\"dateformatDatetime\";a:13:{s:10:\"group_name\";s:24:\"Localization Preferences\";s:5:\"group\";s:12:\"localization\";s:4:\"name\";s:18:\"dateformatDatetime\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:7:\"default\";s:20:\"%B %E%f, %Y %l:%M %P\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:22:\"Complete Date and Time\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:0:\"\";s:9:\"help_text\";N;}s:14:\"dateformatFull\";a:13:{s:10:\"group_name\";s:24:\"Localization Preferences\";s:5:\"group\";s:12:\"localization\";s:4:\"name\";s:14:\"dateformatFull\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:7:\"default\";s:11:\"%B %E%f, %Y\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:13:\"Complete Date\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:0:\"\";s:9:\"help_text\";N;}s:17:\"dateformatPartial\";a:13:{s:10:\"group_name\";s:24:\"Localization Preferences\";s:5:\"group\";s:12:\"localization\";s:4:\"name\";s:17:\"dateformatPartial\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:7:\"default\";s:5:\"%B %Y\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:14:\"Month and Year\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:0:\"\";s:9:\"help_text\";N;}s:10:\"lcMessages\";a:13:{s:10:\"group_name\";s:24:\"Localization Preferences\";s:5:\"group\";s:12:\"localization\";s:4:\"name\";s:10:\"lcMessages\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:7:\"default\";s:5:\"en_US\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:16:\"Default Language\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:0:\"\";s:9:\"help_text\";N;}s:20:\"profile_double_optin\";a:12:{s:10:\"group_name\";s:19:\"Mailing Preferences\";s:5:\"group\";s:7:\"mailing\";s:4:\"name\";s:20:\"profile_double_optin\";s:4:\"type\";s:7:\"Integer\";s:9:\"html_type\";s:8:\"checkbox\";s:7:\"default\";i:0;s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:47:\"Enable Double Opt-in for Profile Group(s) field\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:189:\"When CiviMail is enabled, users who \"subscribe\" to a group from a profile Group(s) checkbox will receive a confirmation email. They must respond (opt-in) before they are added to the group.\";s:9:\"help_text\";N;}s:22:\"track_civimail_replies\";a:13:{s:10:\"group_name\";s:19:\"Mailing Preferences\";s:5:\"group\";s:7:\"mailing\";s:4:\"name\";s:22:\"track_civimail_replies\";s:4:\"type\";s:7:\"Integer\";s:9:\"html_type\";s:8:\"checkbox\";s:7:\"default\";i:0;s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:47:\"Enable Double Opt-in for Profile Group(s) field\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:189:\"When CiviMail is enabled, users who \"subscribe\" to a group from a profile Group(s) checkbox will receive a confirmation email. They must respond (opt-in) before they are added to the group.\";s:9:\"help_text\";N;s:17:\"validate_callback\";s:41:\"CRM_Core_BAO_Setting::validateBoolSetting\";}s:17:\"civimail_workflow\";a:12:{s:10:\"group_name\";s:19:\"Mailing Preferences\";s:5:\"group\";s:7:\"mailing\";s:4:\"name\";s:17:\"civimail_workflow\";s:4:\"type\";s:7:\"Integer\";s:9:\"html_type\";s:8:\"checkbox\";s:7:\"default\";i:0;s:3:\"add\";s:3:\"4.1\";s:5:\"title\";N;s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:189:\"When CiviMail is enabled, users who \"subscribe\" to a group from a profile Group(s) checkbox will receive a confirmation email. They must respond (opt-in) before they are added to the group.\";s:9:\"help_text\";N;}s:25:\"civimail_server_wide_lock\";a:12:{s:10:\"group_name\";s:19:\"Mailing Preferences\";s:5:\"group\";s:7:\"mailing\";s:4:\"name\";s:25:\"civimail_server_wide_lock\";s:4:\"type\";s:7:\"Integer\";s:9:\"html_type\";s:8:\"checkbox\";s:7:\"default\";i:0;s:3:\"add\";s:3:\"4.1\";s:5:\"title\";N;s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:15:\"mailing_backend\";a:12:{s:10:\"group_name\";s:19:\"Mailing Preferences\";s:5:\"group\";s:7:\"mailing\";s:4:\"name\";s:15:\"mailing_backend\";s:4:\"type\";s:5:\"Array\";s:9:\"html_type\";s:8:\"checkbox\";s:7:\"default\";i:0;s:3:\"add\";s:3:\"4.1\";s:5:\"title\";N;s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:33:\"profile_add_to_group_double_optin\";a:12:{s:10:\"group_name\";s:19:\"Mailing Preferences\";s:5:\"group\";s:7:\"mailing\";s:4:\"name\";s:33:\"profile_add_to_group_double_optin\";s:4:\"type\";s:7:\"Integer\";s:9:\"html_type\";s:8:\"checkbox\";s:7:\"default\";i:0;s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:47:\"Enable Double Opt-in for Profile Group(s) field\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:189:\"When CiviMail is enabled, users who \"subscribe\" to a group from a profile Group(s) checkbox will receive a confirmation email. They must respond (opt-in) before they are added to the group.\";s:9:\"help_text\";N;}s:30:\"disable_mandatory_tokens_check\";a:12:{s:10:\"group_name\";s:19:\"Mailing Preferences\";s:5:\"group\";s:7:\"mailing\";s:4:\"name\";s:30:\"disable_mandatory_tokens_check\";s:4:\"type\";s:7:\"Integer\";s:9:\"html_type\";s:8:\"checkbox\";s:7:\"default\";i:0;s:3:\"add\";s:3:\"4.4\";s:5:\"title\";s:34:\"Disable check for mandatory tokens\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:345:\"Don\'t check for presence of mandatory tokens (domain address; unsubscribe/opt-out) before sending mailings. WARNING: Mandatory tokens are a safe-guard which facilitate compliance with the US CAN-SPAM Act. They should only be disabled if your organization adopts other mechanisms for compliance or if your organization is not subject to CAN-SPAM.\";s:9:\"help_text\";N;}s:33:\"default_renewal_contribution_page\";a:13:{s:10:\"group_name\";s:18:\"Member Preferences\";s:5:\"group\";s:6:\"member\";s:4:\"name\";s:33:\"default_renewal_contribution_page\";s:4:\"type\";s:7:\"Integer\";s:9:\"html_type\";s:6:\"Select\";s:7:\"default\";N;s:14:\"pseudoconstant\";a:1:{s:4:\"name\";s:16:\"contributionPage\";}s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:38:\"Default online membership renewal page\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:348:\"If you select a default online contribution page for self-service membership renewals, a \"renew\" link pointing to that page will be displayed on the Contact Dashboard for memberships which were entered offline. You will need to ensure that the membership block for the selected online contribution page includes any currently available memberships.\";s:9:\"help_text\";N;}s:10:\"is_enabled\";a:10:{s:10:\"group_name\";s:22:\"Multi Site Preferences\";s:5:\"group\";s:9:\"multisite\";s:4:\"name\";s:10:\"is_enabled\";s:4:\"type\";s:7:\"Integer\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:20:\"Multisite is enabled\";s:9:\"help_text\";N;}s:15:\"domain_group_id\";a:10:{s:10:\"group_name\";s:22:\"Multi Site Preferences\";s:5:\"group\";s:9:\"multisite\";s:4:\"name\";s:15:\"domain_group_id\";s:4:\"type\";s:7:\"Integer\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:25:\"event_price_set_domain_id\";a:10:{s:10:\"group_name\";s:22:\"Multi Site Preferences\";s:5:\"group\";s:9:\"multisite\";s:4:\"name\";s:25:\"event_price_set_domain_id\";s:4:\"type\";s:7:\"Integer\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:0:\"\";s:9:\"help_text\";N;}s:19:\"uniq_email_per_site\";a:10:{s:10:\"group_name\";s:22:\"Multi Site Preferences\";s:5:\"group\";s:9:\"multisite\";s:4:\"name\";s:19:\"uniq_email_per_site\";s:4:\"type\";s:7:\"Integer\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:0:\"\";s:9:\"help_text\";N;}s:25:\"search_autocomplete_count\";a:15:{s:10:\"group_name\";s:18:\"Search Preferences\";s:5:\"group\";s:18:\"Search Preferences\";s:4:\"name\";s:25:\"search_autocomplete_count\";s:8:\"prefetch\";i:0;s:4:\"type\";s:7:\"Integer\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:4:\"text\";s:15:\"html_attributes\";a:2:{s:4:\"size\";i:2;s:9:\"maxlength\";i:2;}s:7:\"default\";i:10;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:20:\"Autocomplete Results\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:86:\"The maximum number of contacts to show at a time when typing in an autocomplete field.\";s:9:\"help_text\";N;}s:24:\"userFrameworkResourceURL\";a:12:{s:5:\"group\";s:3:\"url\";s:10:\"group_name\";s:15:\"URL Preferences\";s:4:\"name\";s:24:\"userFrameworkResourceURL\";s:4:\"type\";s:6:\"String\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:8:\"prefetch\";i:1;s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:20:\"CiviCRM Resource URL\";s:9:\"help_text\";N;s:17:\"validate_callback\";s:19:\"CRM_Utils_Rule::url\";}s:14:\"imageUploadURL\";a:12:{s:5:\"group\";s:3:\"url\";s:10:\"group_name\";s:15:\"URL Preferences\";s:4:\"name\";s:14:\"imageUploadURL\";s:4:\"type\";s:6:\"String\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:8:\"prefetch\";i:1;s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:16:\"Image Upload URL\";s:9:\"help_text\";N;s:17:\"validate_callback\";s:19:\"CRM_Utils_Rule::url\";}s:12:\"customCSSURL\";a:12:{s:5:\"group\";s:3:\"url\";s:10:\"group_name\";s:15:\"URL Preferences\";s:4:\"name\";s:12:\"customCSSURL\";s:4:\"type\";s:6:\"String\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:8:\"prefetch\";i:1;s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:22:\"Custom CiviCRM CSS URL\";s:9:\"help_text\";N;s:17:\"validate_callback\";s:19:\"CRM_Utils_Rule::url\";}}',NULL,'2014-01-23 23:35:19',NULL),(3,'CiviCRM setting Specs','settingsMetadata___name_uploadDir','a:1:{s:9:\"uploadDir\";a:13:{s:10:\"group_name\";s:21:\"Directory Preferences\";s:5:\"group\";s:9:\"directory\";s:4:\"name\";s:9:\"uploadDir\";s:4:\"type\";s:3:\"Url\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:8:\"prefetch\";i:1;s:5:\"title\";N;s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";s:94:\"If set, new contacts that are created when signing a petition are assigned a tag of this name.\";}}',NULL,'2014-01-23 23:35:19',NULL),(4,'CiviCRM setting Specs','settingsMetadata___name_imageUploadDir','a:1:{s:14:\"imageUploadDir\";a:13:{s:10:\"group_name\";s:21:\"Directory Preferences\";s:5:\"group\";s:9:\"directory\";s:4:\"name\";s:14:\"imageUploadDir\";s:4:\"type\";s:3:\"Url\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:8:\"prefetch\";i:1;s:5:\"title\";N;s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}}',NULL,'2014-01-23 23:35:20',NULL),(5,'CiviCRM setting Specs','settingsMetadata___name_customFileUploadDir','a:1:{s:19:\"customFileUploadDir\";a:13:{s:10:\"group_name\";s:21:\"Directory Preferences\";s:5:\"group\";s:9:\"directory\";s:4:\"name\";s:19:\"customFileUploadDir\";s:4:\"type\";s:3:\"Url\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:8:\"prefetch\";i:1;s:5:\"title\";N;s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}}',NULL,'2014-01-23 23:35:20',NULL),(6,'CiviCRM setting Specs','settingsMetadata___name_userFrameworkResourceURL','a:1:{s:24:\"userFrameworkResourceURL\";a:12:{s:5:\"group\";s:3:\"url\";s:10:\"group_name\";s:15:\"URL Preferences\";s:4:\"name\";s:24:\"userFrameworkResourceURL\";s:4:\"type\";s:6:\"String\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:8:\"prefetch\";i:1;s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:20:\"CiviCRM Resource URL\";s:9:\"help_text\";N;s:17:\"validate_callback\";s:19:\"CRM_Utils_Rule::url\";}}',NULL,'2014-01-23 23:35:20',NULL),(7,'CiviCRM setting Specs','settingsMetadata___name_imageUploadURL','a:1:{s:14:\"imageUploadURL\";a:12:{s:5:\"group\";s:3:\"url\";s:10:\"group_name\";s:15:\"URL Preferences\";s:4:\"name\";s:14:\"imageUploadURL\";s:4:\"type\";s:6:\"String\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:8:\"prefetch\";i:1;s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:16:\"Image Upload URL\";s:9:\"help_text\";N;s:17:\"validate_callback\";s:19:\"CRM_Utils_Rule::url\";}}',NULL,'2014-01-23 23:35:20',NULL); +INSERT INTO `civicrm_cache` (`id`, `group_name`, `path`, `data`, `component_id`, `created_date`, `expired_date`) VALUES (1,'ext','mapper/moduleFiles','a:0:{}',NULL,'2014-01-28 18:13:35',NULL),(2,'CiviCRM setting Spec','All','a:82:{s:32:\"address_standardization_provider\";a:12:{s:10:\"group_name\";s:19:\"Address Preferences\";s:5:\"group\";s:7:\"address\";s:4:\"name\";s:32:\"address_standardization_provider\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:6:\"Select\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:33:\"Address Standardization Provider.\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";s:486:\"CiviCRM includes an optional plugin for interfacing with the United States Postal Services (USPS) Address Standardization web service. You must register to use the USPS service at https://www.usps.com/business/webtools-address-information.htm. If you are approved, they will provide you with a User ID and the URL for the service. Plugins for other address standardization services may be available from 3rd party developers. If installed, they will be included in the drop-down below. \";}s:30:\"address_standardization_userid\";a:12:{s:10:\"group_name\";s:19:\"Address Preferences\";s:5:\"group\";s:7:\"address\";s:4:\"name\";s:30:\"address_standardization_userid\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:19:\"Web service user ID\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:27:\"address_standardization_url\";a:13:{s:10:\"group_name\";s:19:\"Address Preferences\";s:5:\"group\";s:7:\"address\";s:4:\"name\";s:27:\"address_standardization_url\";s:4:\"type\";s:4:\"Text\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:15:\"Web service url\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";s:16:\"Web service URL.\";s:17:\"validate_callback\";s:19:\"CRM_Utils_Rule::url\";}s:15:\"tag_unconfirmed\";a:12:{s:10:\"group_name\";s:20:\"Campaign Preferences\";s:5:\"group\";s:8:\"campaign\";s:4:\"name\";s:15:\"tag_unconfirmed\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";s:11:\"Unconfirmed\";s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:36:\"Tag for Unconfirmed Petition Signers\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";s:94:\"If set, new contacts that are created when signing a petition are assigned a tag of this name.\";}s:17:\"petition_contacts\";a:12:{s:10:\"group_name\";s:20:\"Campaign Preferences\";s:5:\"group\";s:8:\"campaign\";s:4:\"name\";s:17:\"petition_contacts\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";s:17:\"Petition Contacts\";s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:22:\"Petition Signers Group\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";s:94:\"If set, new contacts that are created when signing a petition are assigned a tag of this name.\";}s:23:\"cvv_backoffice_required\";a:12:{s:10:\"group_name\";s:22:\"Contribute Preferences\";s:5:\"group\";s:10:\"contribute\";s:4:\"name\";s:23:\"cvv_backoffice_required\";s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";s:1:\"1\";s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:28:\"CVV required for backoffice?\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:65:\"Is the CVV code required for back office credit card transactions\";s:9:\"help_text\";s:137:\"If set it back-office credit card transactions will required a cvv code. Leave as required unless you have a very strong reason to change\";}s:20:\"contact_view_options\";a:13:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:20:\"contact_view_options\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:10:\"checkboxes\";s:14:\"pseudoconstant\";a:1:{s:15:\"optionGroupName\";s:20:\"contact_view_options\";}s:7:\"default\";s:28:\"123456789101113\";s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:16:\"Viewing Contacts\";s:9:\"is_domain\";s:1:\"1\";s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:20:\"contact_edit_options\";a:13:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:20:\"contact_edit_options\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:10:\"checkboxes\";s:14:\"pseudoconstant\";a:1:{s:15:\"optionGroupName\";s:20:\"contact_edit_options\";}s:7:\"default\";s:25:\"1234567891011\";s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:16:\"Editing Contacts\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:23:\"advanced_search_options\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:4:\"name\";s:23:\"advanced_search_options\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:10:\"checkboxes\";s:14:\"pseudoconstant\";a:1:{s:15:\"optionGroupName\";s:23:\"advanced_search_options\";}s:7:\"default\";s:43:\"1234567891012131516171819\";s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:14:\"Contact Search\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:22:\"user_dashboard_options\";a:13:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:22:\"user_dashboard_options\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:10:\"checkboxes\";s:14:\"pseudoconstant\";a:1:{s:15:\"optionGroupName\";s:22:\"user_dashboard_options\";}s:7:\"default\";s:17:\"12345789\";s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:17:\"Contact Dashboard\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:15:\"address_options\";a:13:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:15:\"address_options\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:4:\"Text\";s:14:\"pseudoconstant\";a:1:{s:15:\"optionGroupName\";s:15:\"address_options\";}s:7:\"default\";s:19:\"1245891011\";s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:18:\"Addressing Options\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:14:\"address_format\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:14:\"address_format\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:8:\"TextArea\";s:7:\"default\";s:198:\"{contact.address_name}\n{contact.street_address}\n{contact.supplemental_address_1}\n{contact.supplemental_address_2}\n{contact.city}{, }{contact.state_province}{ }{contact.postal_code}\n{contact.country}\";s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:14:\"Address Format\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:14:\"mailing_format\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:14:\"mailing_format\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";s:195:\"{contact.addressee}\n{contact.street_address}\n{contact.supplemental_address_1}\n{contact.supplemental_address_2}\n{contact.city}{, }{contact.state_province}{ }{contact.postal_code}\n{contact.country}\";s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:14:\"Mailing Format\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:19:\"display_name_format\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:19:\"display_name_format\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";s:102:\"{contact.individual_prefix}{ }{contact.first_name}{ }{contact.last_name}{ }{contact.individual_suffix}\";s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:19:\"Display Name Format\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:16:\"sort_name_format\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:16:\"sort_name_format\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";s:43:\"{contact.last_name}{, }{contact.first_name}\";s:3:\"add\";s:3:\"4.1\";s:5:\"title\";N;s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:9:\"editor_id\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:9:\"editor_id\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:5:\"title\";N;s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:26:\"contact_ajax_check_similar\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:26:\"contact_ajax_check_similar\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:5:\"title\";N;s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:30:\"activity_assignee_notification\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:30:\"activity_assignee_notification\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:25:\"Notify Activity Assignees\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:34:\"activity_assignee_notification_ics\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:34:\"activity_assignee_notification_ics\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:41:\"Include ICal Invite to Activity Assignees\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:28:\"contact_autocomplete_options\";a:13:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:28:\"contact_autocomplete_options\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:10:\"checkboxes\";s:14:\"pseudoconstant\";a:1:{s:15:\"optionGroupName\";s:28:\"contact_autocomplete_options\";}s:7:\"default\";s:15:\"1234567\";s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:38:\"Contact Reference Autocomplete Options\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:25:\"contact_reference_options\";a:13:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:25:\"contact_reference_options\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:10:\"checkboxes\";s:14:\"pseudoconstant\";a:1:{s:15:\"optionGroupName\";s:25:\"contact_reference_options\";}s:7:\"default\";s:15:\"1234567\";s:3:\"add\";s:3:\"4.1\";s:5:\"title\";N;s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:15:\"max_attachments\";a:16:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:15:\"max_attachments\";s:10:\"legacy_key\";s:14:\"maxAttachments\";s:8:\"prefetch\";i:0;s:4:\"type\";s:7:\"Integer\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:4:\"text\";s:15:\"html_attributes\";a:2:{s:4:\"size\";i:2;s:9:\"maxlength\";i:8;}s:7:\"default\";i:3;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:19:\"Maximum Attachments\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:93:\"Maximum number of files (documents, images, etc.) which can attached to emails or activities.\";s:9:\"help_text\";N;}s:11:\"maxFileSize\";a:16:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:11:\"maxFileSize\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:7:\"Integer\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:4:\"text\";s:15:\"html_attributes\";a:2:{s:4:\"size\";i:2;s:9:\"maxlength\";i:8;}s:7:\"default\";i:3;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:25:\"Maximum File Size (in MB)\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:140:\"Maximum Size of file (documents, images, etc.) which can attached to emails or activities.
Note: php.ini should support this file size.\";s:9:\"help_text\";N;}s:16:\"contact_undelete\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:16:\"contact_undelete\";s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";i:1;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:26:\"Contact Trash and Undelete\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:200:\"If enabled, deleted contacts will be moved to trash (instead of being destroyed). Users with the proper permission are able to search for the deleted contacts and restore them (or delete permanently).\";s:9:\"help_text\";N;}s:24:\"allowPermDeleteFinancial\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:24:\"allowPermDeleteFinancial\";s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";b:0;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:24:\"Contact Permanent Delete\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:81:\"Allow Permanent Delete for contacts who are linked to live financial transactions\";s:9:\"help_text\";N;}s:12:\"versionAlert\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:12:\"versionAlert\";s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";i:1;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:18:\"New Version Alerts\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:212:\"Displays an on-screen alert to users with \"Administer CiviCRM\" permissions when a new version of CiviCRM is available. This setting will only work if the \"Version Check & Statistics Reporting\" setting is enabled.\";s:9:\"help_text\";N;}s:12:\"versionCheck\";a:14:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:12:\"versionCheck\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";i:1;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:36:\"Version Check & Statistics Reporting\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:847:\"If enabled, CiviCRM automatically checks availablity of a newer version of the software. New version alerts will be displayed on the main CiviCRM Administration page.\nWhen enabled, statistics about your CiviCRM installation are reported anonymously to the CiviCRM team to assist in prioritizing ongoing development efforts. The following information is gathered: CiviCRM version, versions of PHP, MySQL and framework (Drupal/Joomla/standalone), and default language. Counts (but no actual data) of the following record types are reported: contacts, activities, cases, relationships, contributions, contribution pages, contribution products, contribution widgets, discounts, price sets, profiles, events, participants, tell-a-friend pages, grants, mailings, memberships, membership blocks, pledges, pledge blocks and active payment processor types.\";s:9:\"help_text\";N;}s:21:\"doNotAttachPDFReceipt\";a:14:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:21:\"doNotAttachPDFReceipt\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";i:1;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:27:\"Attach PDF copy to receipts\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:98:\"If enabled, CiviCRM sends PDF receipt as an attachment during event signup or online contribution.\";s:9:\"help_text\";N;}s:15:\"wkhtmltopdfPath\";a:16:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:15:\"wkhtmltopdfPath\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:4:\"Text\";s:15:\"html_attributes\";a:2:{s:4:\"size\";i:64;s:9:\"maxlength\";i:256;}s:7:\"default\";N;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:30:\"Path to wkhtmltopdf executable\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:18:\"recaptchaPublicKey\";a:16:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:18:\"recaptchaPublicKey\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:4:\"Text\";s:15:\"html_attributes\";a:2:{s:4:\"size\";i:64;s:9:\"maxlength\";i:64;}s:7:\"default\";N;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:20:\"Recaptcha Public Key\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:19:\"recaptchaPrivateKey\";a:16:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:19:\"recaptchaPrivateKey\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:4:\"Text\";s:15:\"html_attributes\";a:2:{s:4:\"size\";i:64;s:9:\"maxlength\";i:64;}s:7:\"default\";N;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:21:\"Recaptcha Private Key\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:21:\"dashboardCacheTimeout\";a:16:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:21:\"dashboardCacheTimeout\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:7:\"Integer\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:4:\"Text\";s:15:\"html_attributes\";a:2:{s:4:\"size\";i:3;s:9:\"maxlength\";i:5;}s:7:\"default\";N;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:23:\"Dashboard cache timeout\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:15:\"checksumTimeout\";a:16:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:15:\"checksumTimeout\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:7:\"Integer\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:4:\"Text\";s:15:\"html_attributes\";a:2:{s:4:\"size\";i:2;s:9:\"maxlength\";i:8;}s:7:\"default\";i:7;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:17:\"Checksum Lifespan\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:7:\"blogUrl\";a:16:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:7:\"blogUrl\";s:8:\"prefetch\";i:0;s:11:\"config_only\";i:0;s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:4:\"Text\";s:15:\"html_attributes\";a:2:{s:4:\"size\";i:64;s:9:\"maxlength\";i:128;}s:7:\"default\";s:9:\"*default*\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:13:\"Blog Feed URL\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:38:\"Blog feed URL used by the blog dashlet\";s:9:\"help_text\";s:68:\"Use \"*default*\" for the system default or override with a custom URL\";}s:20:\"communityMessagesUrl\";a:16:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:20:\"communityMessagesUrl\";s:8:\"prefetch\";i:0;s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:4:\"Text\";s:15:\"html_attributes\";a:2:{s:4:\"size\";i:64;s:9:\"maxlength\";i:128;}s:7:\"default\";s:9:\"*default*\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:22:\"Community Messages URL\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:44:\"Service providing CiviCRM community messages\";s:9:\"help_text\";s:68:\"Use \"*default*\" for the system default or override with a custom URL\";}s:12:\"resCacheCode\";a:16:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:12:\"resCacheCode\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:4:\"Text\";s:15:\"html_attributes\";a:2:{s:4:\"size\";i:16;s:9:\"maxlength\";i:16;}s:7:\"default\";N;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:19:\"Resource Cache Code\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:62:\"Code appended to resource URLs (JS/CSS) to coerce HTTP caching\";s:9:\"help_text\";N;}s:9:\"verifySSL\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:9:\"verifySSL\";s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";i:1;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:0:\"\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:79:\"If disabled, backend HTTPS services will allow unverified, insecure connections\";s:9:\"help_text\";s:140:\"Unless you are absolutely unable to configure your server to check the SSL certificate of the remote server you should leave this set to Yes\";}s:10:\"wpBasePage\";a:14:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:10:\"wpBasePage\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:4:\"text\";s:15:\"quick_form_type\";s:7:\"Element\";s:8:\"prefetch\";i:1;s:7:\"default\";s:0:\"\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:19:\"WordPress Base Page\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:54:\"If set, CiviCRM will use this setting as the base url.\";s:9:\"help_text\";s:177:\"By default, CiviCRM will generate front-facing pages using the home page at http://wp/ as its base. If you want to use a different template for CiviCRM pages, set the path here.\";}s:23:\"secondDegRelPermissions\";a:14:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:23:\"secondDegRelPermissions\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";i:0;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:44:\"Allow second-degree relationship permissions\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:136:\"If enabled, contacts with the permission to edit a related contact will inherit that contact\'s permission to edit other related contacts\";s:9:\"help_text\";N;}s:17:\"enable_components\";a:15:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:17:\"enable_components\";s:4:\"type\";s:5:\"Array\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:14:\"advmultiselect\";s:15:\"html_attributes\";a:3:{s:4:\"size\";i:5;s:5:\"style\";s:11:\"width:150px\";s:5:\"class\";s:14:\"advmultiselect\";}s:7:\"default\";a:6:{i:0;s:9:\"CiviEvent\";i:1;s:14:\"CiviContribute\";i:2;s:10:\"CiviMember\";i:3;s:8:\"CiviMail\";i:4;s:10:\"CiviReport\";i:5;s:10:\"CiviPledge\";}s:3:\"add\";s:3:\"4.4\";s:5:\"title\";s:17:\"Enable Components\";s:9:\"is_domain\";s:1:\"1\";s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;s:9:\"on_change\";a:2:{i:0;a:2:{i:0;s:13:\"CRM_Case_Info\";i:1;s:18:\"onToggleComponents\";}i:1;a:2:{i:0;s:18:\"CRM_Core_Component\";i:1;s:22:\"flushEnabledComponents\";}}}s:16:\"disable_core_css\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:16:\"disable_core_css\";s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";s:1:\"0\";s:3:\"add\";s:3:\"4.4\";s:5:\"title\";s:19:\"Disable CiviCRM css\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:55:\"Prevent the stylesheet \"civicrm.css\" from being loaded.\";s:9:\"help_text\";N;}s:13:\"debug_enabled\";a:15:{s:10:\"group_name\";s:21:\"Developer Preferences\";s:5:\"group\";s:9:\"developer\";s:4:\"name\";s:13:\"debug_enabled\";s:11:\"config_only\";i:1;s:10:\"config_key\";s:5:\"debug\";s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";s:1:\"0\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:16:\"Enable Debugging\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:130:\"Set this value to Yes if you want to use one of CiviCRM\'s debugging tools. This feature should NOT be enabled for production sites\";s:8:\"prefetch\";i:1;s:9:\"help_text\";s:39:\"Do not turn this on on production sites\";}s:20:\"userFrameworkLogging\";a:14:{s:10:\"group_name\";s:21:\"Developer Preferences\";s:5:\"group\";s:9:\"developer\";s:4:\"name\";s:20:\"userFrameworkLogging\";s:11:\"config_only\";i:1;s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";s:1:\"0\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:30:\"Enable Drupal Watchdog Logging\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:102:\"Set this value to Yes if you want CiviCRM error/debugging messages to also appear in Drupal error logs\";s:8:\"prefetch\";i:1;s:9:\"help_text\";s:239:\"Set this value to Yes if you want CiviCRM error/debugging messages the appear in your CMS\' error log.\nIn the case of Drupal, this will cause all CiviCRM error messages to appear in the watchdog (assuming you have Drupal\'s watchdog enabled)\";}s:9:\"backtrace\";a:13:{s:10:\"group_name\";s:21:\"Developer Preferences\";s:5:\"group\";s:9:\"developer\";s:4:\"name\";s:9:\"backtrace\";s:11:\"config_only\";i:1;s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";s:1:\"0\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:17:\"Display Backtrace\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:155:\"Set this value to Yes if you want to display a backtrace listing when a fatal error is encountered. This feature should NOT be enabled for production sites\";s:8:\"prefetch\";i:1;}s:18:\"fatalErrorTemplate\";a:13:{s:10:\"group_name\";s:21:\"Developer Preferences\";s:5:\"group\";s:9:\"developer\";s:4:\"name\";s:18:\"fatalErrorTemplate\";s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:4:\"text\";s:7:\"default\";s:20:\"CRM/common/fatal.tpl\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:20:\"Fatal Error Template\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:123:\"Enter the path and filename for a custom Smarty template if you want to define your own screen for displaying fatal errors.\";s:8:\"prefetch\";i:1;}s:17:\"fatalErrorHandler\";a:13:{s:10:\"group_name\";s:21:\"Developer Preferences\";s:5:\"group\";s:9:\"developer\";s:4:\"name\";s:17:\"fatalErrorHandler\";s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:4:\"text\";s:7:\"default\";s:4:\"null\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:19:\"Fatal Error Handler\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:136:\"Enter the path and class for a custom PHP error-handling function if you want to override built-in CiviCRM error handling for your site.\";s:8:\"prefetch\";i:1;}s:9:\"uploadDir\";a:13:{s:10:\"group_name\";s:21:\"Directory Preferences\";s:5:\"group\";s:9:\"directory\";s:4:\"name\";s:9:\"uploadDir\";s:4:\"type\";s:3:\"Url\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:8:\"prefetch\";i:1;s:5:\"title\";N;s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";s:94:\"If set, new contacts that are created when signing a petition are assigned a tag of this name.\";}s:14:\"imageUploadDir\";a:13:{s:10:\"group_name\";s:21:\"Directory Preferences\";s:5:\"group\";s:9:\"directory\";s:4:\"name\";s:14:\"imageUploadDir\";s:4:\"type\";s:3:\"Url\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:8:\"prefetch\";i:1;s:5:\"title\";N;s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:19:\"customFileUploadDir\";a:13:{s:10:\"group_name\";s:21:\"Directory Preferences\";s:5:\"group\";s:9:\"directory\";s:4:\"name\";s:19:\"customFileUploadDir\";s:4:\"type\";s:3:\"Url\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:8:\"prefetch\";i:1;s:5:\"title\";N;s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:17:\"customTemplateDir\";a:13:{s:10:\"group_name\";s:21:\"Directory Preferences\";s:5:\"group\";s:9:\"directory\";s:4:\"name\";s:17:\"customTemplateDir\";s:4:\"type\";s:3:\"Url\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:8:\"prefetch\";i:1;s:5:\"title\";N;s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:16:\"customPHPPathDir\";a:13:{s:10:\"group_name\";s:21:\"Directory Preferences\";s:5:\"group\";s:9:\"directory\";s:4:\"name\";s:16:\"customPHPPathDir\";s:4:\"type\";s:3:\"Url\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:8:\"prefetch\";i:1;s:5:\"title\";N;s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:13:\"extensionsDir\";a:13:{s:10:\"group_name\";s:21:\"Directory Preferences\";s:5:\"group\";s:9:\"directory\";s:4:\"name\";s:13:\"extensionsDir\";s:4:\"type\";s:3:\"Url\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:8:\"prefetch\";i:1;s:5:\"title\";N;s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:17:\"event_enable_cart\";a:12:{s:4:\"name\";s:11:\"enable_cart\";s:10:\"group_name\";s:17:\"Event Preferences\";s:5:\"group\";s:5:\"event\";s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:7:\"default\";i:0;s:3:\"add\";d:4.0999999999999996;s:5:\"title\";s:17:\"Enable Event Cart\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:1;s:11:\"description\";s:8:\"WRITE ME\";s:9:\"help_text\";s:8:\"WRITE ME\";}s:25:\"monetaryThousandSeparator\";a:16:{s:10:\"group_name\";s:24:\"Localization Preferences\";s:5:\"group\";s:12:\"localization\";s:4:\"name\";s:25:\"monetaryThousandSeparator\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:4:\"text\";s:15:\"html_attributes\";a:1:{s:4:\"size\";i:2;}s:7:\"default\";s:1:\",\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:19:\"Thousands Separator\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:20:\"monetaryDecimalPoint\";a:16:{s:10:\"group_name\";s:24:\"Localization Preferences\";s:5:\"group\";s:12:\"localization\";s:4:\"name\";s:20:\"monetaryDecimalPoint\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:4:\"text\";s:15:\"html_attributes\";a:1:{s:4:\"size\";i:2;}s:7:\"default\";s:1:\".\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:17:\"Decimal Delimiter\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:11:\"moneyformat\";a:15:{s:10:\"group_name\";s:24:\"Localization Preferences\";s:5:\"group\";s:12:\"localization\";s:4:\"name\";s:11:\"moneyformat\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:4:\"text\";s:7:\"default\";s:5:\"%c %a\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:23:\"Monetary Amount Display\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:16:\"moneyvalueformat\";a:15:{s:10:\"group_name\";s:24:\"Localization Preferences\";s:5:\"group\";s:12:\"localization\";s:4:\"name\";s:16:\"moneyvalueformat\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:4:\"text\";s:7:\"default\";s:3:\"%!i\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:23:\"Monetary Amount Display\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:15:\"defaultCurrency\";a:16:{s:10:\"group_name\";s:24:\"Localization Preferences\";s:5:\"group\";s:12:\"localization\";s:4:\"name\";s:15:\"defaultCurrency\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:4:\"text\";s:15:\"html_attributes\";a:1:{s:4:\"size\";i:2;}s:7:\"default\";s:3:\"USD\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:16:\"Default Currency\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:75:\"Default currency assigned to contributions and other monetary transactions.\";s:9:\"help_text\";N;}s:21:\"defaultContactCountry\";a:16:{s:10:\"group_name\";s:24:\"Localization Preferences\";s:5:\"group\";s:12:\"localization\";s:4:\"name\";s:21:\"defaultContactCountry\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:4:\"text\";s:15:\"html_attributes\";a:1:{s:4:\"size\";i:4;}s:7:\"default\";s:4:\"1228\";s:3:\"add\";s:3:\"4.4\";s:5:\"title\";s:15:\"Default Country\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:68:\"This value is selected by default when adding a new contact address.\";s:9:\"help_text\";N;}s:12:\"countryLimit\";a:16:{s:10:\"group_name\";s:24:\"Localization Preferences\";s:5:\"group\";s:12:\"localization\";s:4:\"name\";s:12:\"countryLimit\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:5:\"Array\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:14:\"advmultiselect\";s:15:\"html_attributes\";a:3:{s:4:\"size\";i:5;s:5:\"style\";s:11:\"width:150px\";s:5:\"class\";s:14:\"advmultiselect\";}s:7:\"default\";s:4:\"null\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:19:\"Available Countries\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:0:\"\";s:9:\"help_text\";N;}s:13:\"provinceLimit\";a:16:{s:10:\"group_name\";s:24:\"Localization Preferences\";s:5:\"group\";s:12:\"localization\";s:4:\"name\";s:13:\"provinceLimit\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:5:\"Array\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:14:\"advmultiselect\";s:15:\"html_attributes\";a:3:{s:4:\"size\";i:5;s:5:\"style\";s:11:\"width:150px\";s:5:\"class\";s:14:\"advmultiselect\";}s:7:\"default\";s:4:\"null\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:30:\"Available States and Provinces\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:0:\"\";s:9:\"help_text\";N;}s:13:\"inheritLocale\";a:14:{s:10:\"group_name\";s:24:\"Localization Preferences\";s:5:\"group\";s:12:\"localization\";s:4:\"name\";s:13:\"inheritLocale\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";s:1:\"0\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:20:\"Inherit CMS Language\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:0:\"\";s:9:\"help_text\";N;}s:18:\"dateformatDatetime\";a:13:{s:10:\"group_name\";s:24:\"Localization Preferences\";s:5:\"group\";s:12:\"localization\";s:4:\"name\";s:18:\"dateformatDatetime\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:7:\"default\";s:20:\"%B %E%f, %Y %l:%M %P\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:22:\"Complete Date and Time\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:0:\"\";s:9:\"help_text\";N;}s:14:\"dateformatFull\";a:13:{s:10:\"group_name\";s:24:\"Localization Preferences\";s:5:\"group\";s:12:\"localization\";s:4:\"name\";s:14:\"dateformatFull\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:7:\"default\";s:11:\"%B %E%f, %Y\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:13:\"Complete Date\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:0:\"\";s:9:\"help_text\";N;}s:17:\"dateformatPartial\";a:13:{s:10:\"group_name\";s:24:\"Localization Preferences\";s:5:\"group\";s:12:\"localization\";s:4:\"name\";s:17:\"dateformatPartial\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:7:\"default\";s:5:\"%B %Y\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:14:\"Month and Year\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:0:\"\";s:9:\"help_text\";N;}s:10:\"lcMessages\";a:13:{s:10:\"group_name\";s:24:\"Localization Preferences\";s:5:\"group\";s:12:\"localization\";s:4:\"name\";s:10:\"lcMessages\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:7:\"default\";s:5:\"en_US\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:16:\"Default Language\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:0:\"\";s:9:\"help_text\";N;}s:20:\"profile_double_optin\";a:12:{s:10:\"group_name\";s:19:\"Mailing Preferences\";s:5:\"group\";s:7:\"mailing\";s:4:\"name\";s:20:\"profile_double_optin\";s:4:\"type\";s:7:\"Integer\";s:9:\"html_type\";s:8:\"checkbox\";s:7:\"default\";i:0;s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:47:\"Enable Double Opt-in for Profile Group(s) field\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:189:\"When CiviMail is enabled, users who \"subscribe\" to a group from a profile Group(s) checkbox will receive a confirmation email. They must respond (opt-in) before they are added to the group.\";s:9:\"help_text\";N;}s:22:\"track_civimail_replies\";a:13:{s:10:\"group_name\";s:19:\"Mailing Preferences\";s:5:\"group\";s:7:\"mailing\";s:4:\"name\";s:22:\"track_civimail_replies\";s:4:\"type\";s:7:\"Integer\";s:9:\"html_type\";s:8:\"checkbox\";s:7:\"default\";i:0;s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:47:\"Enable Double Opt-in for Profile Group(s) field\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:189:\"When CiviMail is enabled, users who \"subscribe\" to a group from a profile Group(s) checkbox will receive a confirmation email. They must respond (opt-in) before they are added to the group.\";s:9:\"help_text\";N;s:17:\"validate_callback\";s:41:\"CRM_Core_BAO_Setting::validateBoolSetting\";}s:17:\"civimail_workflow\";a:12:{s:10:\"group_name\";s:19:\"Mailing Preferences\";s:5:\"group\";s:7:\"mailing\";s:4:\"name\";s:17:\"civimail_workflow\";s:4:\"type\";s:7:\"Integer\";s:9:\"html_type\";s:8:\"checkbox\";s:7:\"default\";i:0;s:3:\"add\";s:3:\"4.1\";s:5:\"title\";N;s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:189:\"When CiviMail is enabled, users who \"subscribe\" to a group from a profile Group(s) checkbox will receive a confirmation email. They must respond (opt-in) before they are added to the group.\";s:9:\"help_text\";N;}s:25:\"civimail_server_wide_lock\";a:12:{s:10:\"group_name\";s:19:\"Mailing Preferences\";s:5:\"group\";s:7:\"mailing\";s:4:\"name\";s:25:\"civimail_server_wide_lock\";s:4:\"type\";s:7:\"Integer\";s:9:\"html_type\";s:8:\"checkbox\";s:7:\"default\";i:0;s:3:\"add\";s:3:\"4.1\";s:5:\"title\";N;s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:15:\"mailing_backend\";a:12:{s:10:\"group_name\";s:19:\"Mailing Preferences\";s:5:\"group\";s:7:\"mailing\";s:4:\"name\";s:15:\"mailing_backend\";s:4:\"type\";s:5:\"Array\";s:9:\"html_type\";s:8:\"checkbox\";s:7:\"default\";i:0;s:3:\"add\";s:3:\"4.1\";s:5:\"title\";N;s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:33:\"profile_add_to_group_double_optin\";a:12:{s:10:\"group_name\";s:19:\"Mailing Preferences\";s:5:\"group\";s:7:\"mailing\";s:4:\"name\";s:33:\"profile_add_to_group_double_optin\";s:4:\"type\";s:7:\"Integer\";s:9:\"html_type\";s:8:\"checkbox\";s:7:\"default\";i:0;s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:47:\"Enable Double Opt-in for Profile Group(s) field\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:189:\"When CiviMail is enabled, users who \"subscribe\" to a group from a profile Group(s) checkbox will receive a confirmation email. They must respond (opt-in) before they are added to the group.\";s:9:\"help_text\";N;}s:30:\"disable_mandatory_tokens_check\";a:12:{s:10:\"group_name\";s:19:\"Mailing Preferences\";s:5:\"group\";s:7:\"mailing\";s:4:\"name\";s:30:\"disable_mandatory_tokens_check\";s:4:\"type\";s:7:\"Integer\";s:9:\"html_type\";s:8:\"checkbox\";s:7:\"default\";i:0;s:3:\"add\";s:3:\"4.4\";s:5:\"title\";s:34:\"Disable check for mandatory tokens\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:345:\"Don\'t check for presence of mandatory tokens (domain address; unsubscribe/opt-out) before sending mailings. WARNING: Mandatory tokens are a safe-guard which facilitate compliance with the US CAN-SPAM Act. They should only be disabled if your organization adopts other mechanisms for compliance or if your organization is not subject to CAN-SPAM.\";s:9:\"help_text\";N;}s:33:\"default_renewal_contribution_page\";a:13:{s:10:\"group_name\";s:18:\"Member Preferences\";s:5:\"group\";s:6:\"member\";s:4:\"name\";s:33:\"default_renewal_contribution_page\";s:4:\"type\";s:7:\"Integer\";s:9:\"html_type\";s:6:\"Select\";s:7:\"default\";N;s:14:\"pseudoconstant\";a:1:{s:4:\"name\";s:16:\"contributionPage\";}s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:38:\"Default online membership renewal page\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:348:\"If you select a default online contribution page for self-service membership renewals, a \"renew\" link pointing to that page will be displayed on the Contact Dashboard for memberships which were entered offline. You will need to ensure that the membership block for the selected online contribution page includes any currently available memberships.\";s:9:\"help_text\";N;}s:10:\"is_enabled\";a:10:{s:10:\"group_name\";s:22:\"Multi Site Preferences\";s:5:\"group\";s:9:\"multisite\";s:4:\"name\";s:10:\"is_enabled\";s:4:\"type\";s:7:\"Integer\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:20:\"Multisite is enabled\";s:9:\"help_text\";N;}s:15:\"domain_group_id\";a:10:{s:10:\"group_name\";s:22:\"Multi Site Preferences\";s:5:\"group\";s:9:\"multisite\";s:4:\"name\";s:15:\"domain_group_id\";s:4:\"type\";s:7:\"Integer\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:25:\"event_price_set_domain_id\";a:10:{s:10:\"group_name\";s:22:\"Multi Site Preferences\";s:5:\"group\";s:9:\"multisite\";s:4:\"name\";s:25:\"event_price_set_domain_id\";s:4:\"type\";s:7:\"Integer\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:0:\"\";s:9:\"help_text\";N;}s:19:\"uniq_email_per_site\";a:10:{s:10:\"group_name\";s:22:\"Multi Site Preferences\";s:5:\"group\";s:9:\"multisite\";s:4:\"name\";s:19:\"uniq_email_per_site\";s:4:\"type\";s:7:\"Integer\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:0:\"\";s:9:\"help_text\";N;}s:25:\"search_autocomplete_count\";a:15:{s:10:\"group_name\";s:18:\"Search Preferences\";s:5:\"group\";s:18:\"Search Preferences\";s:4:\"name\";s:25:\"search_autocomplete_count\";s:8:\"prefetch\";i:0;s:4:\"type\";s:7:\"Integer\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:4:\"text\";s:15:\"html_attributes\";a:2:{s:4:\"size\";i:2;s:9:\"maxlength\";i:2;}s:7:\"default\";i:10;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:20:\"Autocomplete Results\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:86:\"The maximum number of contacts to show at a time when typing in an autocomplete field.\";s:9:\"help_text\";N;}s:24:\"userFrameworkResourceURL\";a:12:{s:5:\"group\";s:3:\"url\";s:10:\"group_name\";s:15:\"URL Preferences\";s:4:\"name\";s:24:\"userFrameworkResourceURL\";s:4:\"type\";s:6:\"String\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:8:\"prefetch\";i:1;s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:20:\"CiviCRM Resource URL\";s:9:\"help_text\";N;s:17:\"validate_callback\";s:19:\"CRM_Utils_Rule::url\";}s:14:\"imageUploadURL\";a:12:{s:5:\"group\";s:3:\"url\";s:10:\"group_name\";s:15:\"URL Preferences\";s:4:\"name\";s:14:\"imageUploadURL\";s:4:\"type\";s:6:\"String\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:8:\"prefetch\";i:1;s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:16:\"Image Upload URL\";s:9:\"help_text\";N;s:17:\"validate_callback\";s:19:\"CRM_Utils_Rule::url\";}s:12:\"customCSSURL\";a:12:{s:5:\"group\";s:3:\"url\";s:10:\"group_name\";s:15:\"URL Preferences\";s:4:\"name\";s:12:\"customCSSURL\";s:4:\"type\";s:6:\"String\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:8:\"prefetch\";i:1;s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:22:\"Custom CiviCRM CSS URL\";s:9:\"help_text\";N;s:17:\"validate_callback\";s:19:\"CRM_Utils_Rule::url\";}}',NULL,'2014-01-28 18:13:36',NULL),(3,'CiviCRM setting Specs','settingsMetadata___name_uploadDir','a:1:{s:9:\"uploadDir\";a:13:{s:10:\"group_name\";s:21:\"Directory Preferences\";s:5:\"group\";s:9:\"directory\";s:4:\"name\";s:9:\"uploadDir\";s:4:\"type\";s:3:\"Url\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:8:\"prefetch\";i:1;s:5:\"title\";N;s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";s:94:\"If set, new contacts that are created when signing a petition are assigned a tag of this name.\";}}',NULL,'2014-01-28 18:13:36',NULL),(4,'CiviCRM setting Specs','settingsMetadata___name_imageUploadDir','a:1:{s:14:\"imageUploadDir\";a:13:{s:10:\"group_name\";s:21:\"Directory Preferences\";s:5:\"group\";s:9:\"directory\";s:4:\"name\";s:14:\"imageUploadDir\";s:4:\"type\";s:3:\"Url\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:8:\"prefetch\";i:1;s:5:\"title\";N;s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}}',NULL,'2014-01-28 18:13:36',NULL),(5,'CiviCRM setting Specs','settingsMetadata___name_customFileUploadDir','a:1:{s:19:\"customFileUploadDir\";a:13:{s:10:\"group_name\";s:21:\"Directory Preferences\";s:5:\"group\";s:9:\"directory\";s:4:\"name\";s:19:\"customFileUploadDir\";s:4:\"type\";s:3:\"Url\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:8:\"prefetch\";i:1;s:5:\"title\";N;s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}}',NULL,'2014-01-28 18:13:36',NULL),(6,'CiviCRM setting Specs','settingsMetadata___name_userFrameworkResourceURL','a:1:{s:24:\"userFrameworkResourceURL\";a:12:{s:5:\"group\";s:3:\"url\";s:10:\"group_name\";s:15:\"URL Preferences\";s:4:\"name\";s:24:\"userFrameworkResourceURL\";s:4:\"type\";s:6:\"String\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:8:\"prefetch\";i:1;s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:20:\"CiviCRM Resource URL\";s:9:\"help_text\";N;s:17:\"validate_callback\";s:19:\"CRM_Utils_Rule::url\";}}',NULL,'2014-01-28 18:13:36',NULL),(7,'CiviCRM setting Specs','settingsMetadata___name_imageUploadURL','a:1:{s:14:\"imageUploadURL\";a:12:{s:5:\"group\";s:3:\"url\";s:10:\"group_name\";s:15:\"URL Preferences\";s:4:\"name\";s:14:\"imageUploadURL\";s:4:\"type\";s:6:\"String\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:8:\"prefetch\";i:1;s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:16:\"Image Upload URL\";s:9:\"help_text\";N;s:17:\"validate_callback\";s:19:\"CRM_Utils_Rule::url\";}}',NULL,'2014-01-28 18:13:36',NULL); /*!40000 ALTER TABLE `civicrm_cache` ENABLE KEYS */; UNLOCK TABLES; @@ -200,7 +200,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,'2014-01-23 18:04:59'),(2,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Deforest, Andrew','Andrew Deforest Jr.',NULL,NULL,NULL,NULL,NULL,'Both','-710233712',NULL,'Sample Data','Andrew','X','Deforest',NULL,1,NULL,NULL,1,NULL,'Dear Andrew',1,NULL,'Dear Andrew',1,NULL,'Andrew Deforest Jr.',NULL,2,'2001-09-28',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:06:00'),(3,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'junkos@lol.info','junkos@lol.info',NULL,NULL,NULL,'4',NULL,'Both','546020935',NULL,'Sample Data',NULL,NULL,NULL,4,NULL,NULL,NULL,1,NULL,'Dear junkos@lol.info',1,NULL,'Dear junkos@lol.info',1,NULL,'junkos@lol.info',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:05:35'),(4,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'omarjacobs56@mymail.co.in','omarjacobs56@mymail.co.in',NULL,NULL,NULL,NULL,NULL,'Both','-1175199901',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,NULL,1,NULL,'Dear omarjacobs56@mymail.co.in',1,NULL,'Dear omarjacobs56@mymail.co.in',1,NULL,'omarjacobs56@mymail.co.in',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:05:36'),(5,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Terrell, Brigette','Brigette Terrell',NULL,NULL,NULL,'2',NULL,'Both','-1731963716',NULL,'Sample Data','Brigette','','Terrell',NULL,NULL,NULL,NULL,1,NULL,'Dear Brigette',1,NULL,'Dear Brigette',1,NULL,'Brigette Terrell',NULL,NULL,'1967-03-01',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:05:49'),(6,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Łąchowski family','Łąchowski family',NULL,NULL,NULL,NULL,NULL,'Both','-1887890041',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Łąchowski family',5,NULL,'Dear Łąchowski family',2,NULL,'Łąchowski family',NULL,NULL,NULL,0,NULL,'Łąchowski family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:06:06'),(7,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Olsen, Jackson','Jackson Olsen',NULL,NULL,NULL,NULL,NULL,'Both','2108387664',NULL,'Sample Data','Jackson','','Olsen',NULL,NULL,NULL,NULL,1,NULL,'Dear Jackson',1,NULL,'Dear Jackson',1,NULL,'Jackson Olsen',NULL,2,'1960-12-14',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:06:03'),(8,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Michigan Culture Center','Michigan Culture Center',NULL,NULL,NULL,'5',NULL,'Both','-360941914',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Michigan Culture Center',NULL,NULL,NULL,0,NULL,NULL,184,'Michigan Culture Center',NULL,NULL,NULL,0,NULL,'2014-01-23 18:06:08'),(9,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'kathleeni@example.info','kathleeni@example.info',NULL,NULL,NULL,'2',NULL,'Both','826426883',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear kathleeni@example.info',1,NULL,'Dear kathleeni@example.info',1,NULL,'kathleeni@example.info',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:06:01'),(10,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Samuels, Maria','Maria Samuels II',NULL,NULL,NULL,'5',NULL,'Both','986532772',NULL,'Sample Data','Maria','','Samuels',NULL,3,NULL,NULL,1,NULL,'Dear Maria',1,NULL,'Dear Maria',1,NULL,'Maria Samuels II',NULL,2,'2001-02-06',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:05:55'),(11,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'González, Allan','Mr. Allan González III',NULL,NULL,NULL,NULL,NULL,'Both','-1780315413',NULL,'Sample Data','Allan','','González',3,4,NULL,NULL,1,NULL,'Dear Allan',1,NULL,'Dear Allan',1,NULL,'Mr. Allan González III',NULL,NULL,'1936-08-24',1,'2013-09-12',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:05:46'),(12,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'College Technology Solutions','College Technology Solutions',NULL,NULL,NULL,'5',NULL,'Both','-121129432',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'College Technology Solutions',NULL,NULL,NULL,0,NULL,NULL,109,'College Technology Solutions',NULL,NULL,NULL,0,NULL,'2014-01-23 18:06:12'),(13,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Samuels-Deforest, Elina','Elina Samuels-Deforest',NULL,NULL,NULL,'1',NULL,'Both','1507414875',NULL,'Sample Data','Elina','F','Samuels-Deforest',NULL,NULL,NULL,NULL,1,NULL,'Dear Elina',1,NULL,'Dear Elina',1,NULL,'Elina Samuels-Deforest',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:06:00'),(14,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Deforest, Rosario','Mr. Rosario Deforest III',NULL,NULL,NULL,'5',NULL,'Both','1073464974',NULL,'Sample Data','Rosario','','Deforest',3,4,NULL,NULL,1,NULL,'Dear Rosario',1,NULL,'Dear Rosario',1,NULL,'Mr. Rosario Deforest III',NULL,2,'1972-12-10',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:05:51'),(15,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Yadav, Jay','Jay Yadav III',NULL,NULL,NULL,'3',NULL,'Both','-977690228',NULL,'Sample Data','Jay','Y','Yadav',NULL,4,NULL,NULL,1,NULL,'Dear Jay',1,NULL,'Dear Jay',1,NULL,'Jay Yadav III',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:05:51'),(16,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Wilson, Brzęczysław','Brzęczysław Wilson Sr.',NULL,NULL,NULL,NULL,NULL,'Both','-808658743',NULL,'Sample Data','Brzęczysław','','Wilson',NULL,2,NULL,NULL,1,NULL,'Dear Brzęczysław',1,NULL,'Dear Brzęczysław',1,NULL,'Brzęczysław Wilson Sr.',NULL,2,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:05:35'),(17,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Ivanov-Blackwell family','Ivanov-Blackwell family',NULL,NULL,NULL,NULL,NULL,'Both','1057032554',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Ivanov-Blackwell family',5,NULL,'Dear Ivanov-Blackwell family',2,NULL,'Ivanov-Blackwell family',NULL,NULL,NULL,0,NULL,'Ivanov-Blackwell family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:06:07'),(18,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Müller, Carylon','Ms. Carylon Müller',NULL,NULL,NULL,NULL,NULL,'Both','-2121270031',NULL,'Sample Data','Carylon','','Müller',2,NULL,NULL,NULL,1,NULL,'Dear Carylon',1,NULL,'Dear Carylon',1,NULL,'Ms. Carylon Müller',NULL,NULL,'1934-08-15',1,'2013-12-14',NULL,NULL,'Martin Luther King Development Services',NULL,NULL,98,0,NULL,'2014-01-23 18:06:11'),(19,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Bachman-Barkley, Kandace','Mrs. Kandace Bachman-Barkley',NULL,NULL,NULL,NULL,NULL,'Both','472086655',NULL,'Sample Data','Kandace','','Bachman-Barkley',1,NULL,NULL,NULL,1,NULL,'Dear Kandace',1,NULL,'Dear Kandace',1,NULL,'Mrs. Kandace Bachman-Barkley',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:05:57'),(20,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'samuels.arlyne@mymail.org','samuels.arlyne@mymail.org',NULL,NULL,NULL,NULL,NULL,'Both','-1163289353',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear samuels.arlyne@mymail.org',1,NULL,'Dear samuels.arlyne@mymail.org',1,NULL,'samuels.arlyne@mymail.org',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:05:51'),(21,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'bryonterry@airmail.co.uk','bryonterry@airmail.co.uk',NULL,NULL,NULL,NULL,NULL,'Both','1209121243',NULL,'Sample Data',NULL,NULL,NULL,NULL,2,NULL,NULL,1,NULL,'Dear bryonterry@airmail.co.uk',1,NULL,'Dear bryonterry@airmail.co.uk',1,NULL,'bryonterry@airmail.co.uk',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:05:50'),(22,'Household',NULL,0,0,0,0,0,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,NULL,'2014-01-23 18:06:05'),(23,'Household',NULL,1,0,0,0,1,0,NULL,NULL,'Łąchowski-Olsen family','Łąchowski-Olsen family',NULL,NULL,NULL,'5',NULL,'Both','-803828956',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Łąchowski-Olsen family',5,NULL,'Dear Łąchowski-Olsen family',2,NULL,'Łąchowski-Olsen family',NULL,NULL,NULL,0,NULL,'Łąchowski-Olsen family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:06:07'),(24,'Individual',NULL,1,1,0,0,0,0,NULL,NULL,'Barkley, Erik','Mr. Erik Barkley III',NULL,NULL,NULL,NULL,NULL,'Both','-1845982879',NULL,'Sample Data','Erik','T','Barkley',3,4,NULL,NULL,1,NULL,'Dear Erik',1,NULL,'Dear Erik',1,NULL,'Mr. Erik Barkley III',NULL,NULL,'1972-11-17',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:05:50'),(25,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Łąchowski-Olsen, Laree','Laree Łąchowski-Olsen',NULL,NULL,NULL,NULL,NULL,'Both','1753282491',NULL,'Sample Data','Laree','','Łąchowski-Olsen',NULL,NULL,NULL,NULL,1,NULL,'Dear Laree',1,NULL,'Dear Laree',1,NULL,'Laree Łąchowski-Olsen',NULL,1,'1982-05-09',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:06:04'),(26,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'McReynolds, Kenny','Kenny McReynolds',NULL,NULL,NULL,'3',NULL,'Both','-740367804',NULL,'Sample Data','Kenny','','McReynolds',NULL,NULL,NULL,NULL,1,NULL,'Dear Kenny',1,NULL,'Dear Kenny',1,NULL,'Kenny McReynolds',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:05:54'),(27,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Łąchowski, Ray','Dr. Ray Łąchowski',NULL,NULL,NULL,'2',NULL,'Both','1851411219',NULL,'Sample Data','Ray','','Łąchowski',4,NULL,NULL,NULL,1,NULL,'Dear Ray',1,NULL,'Dear Ray',1,NULL,'Dr. Ray Łąchowski',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:06:03'),(28,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Díaz, Brzęczysław','Brzęczysław Díaz Sr.',NULL,NULL,NULL,'4',NULL,'Both','1409442649',NULL,'Sample Data','Brzęczysław','R','Díaz',NULL,2,NULL,NULL,1,NULL,'Dear Brzęczysław',1,NULL,'Dear Brzęczysław',1,NULL,'Brzęczysław Díaz Sr.',NULL,2,'1965-09-30',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:05:39'),(29,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Terrell, Sharyn','Dr. Sharyn Terrell',NULL,NULL,NULL,'5',NULL,'Both','1538962314',NULL,'Sample Data','Sharyn','O','Terrell',4,NULL,NULL,NULL,1,NULL,'Dear Sharyn',1,NULL,'Dear Sharyn',1,NULL,'Dr. Sharyn Terrell',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:05:50'),(30,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Müller, Barry','Dr. Barry Müller Jr.',NULL,NULL,NULL,NULL,NULL,'Both','1377313598',NULL,'Sample Data','Barry','','Müller',4,1,NULL,NULL,1,NULL,'Dear Barry',1,NULL,'Dear Barry',1,NULL,'Dr. Barry Müller Jr.',NULL,NULL,'1929-09-07',1,'2013-04-26',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:05:33'),(31,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Wagner, Rolando','Rolando Wagner Sr.',NULL,NULL,NULL,'5',NULL,'Both','596894405',NULL,'Sample Data','Rolando','W','Wagner',NULL,2,NULL,NULL,1,NULL,'Dear Rolando',1,NULL,'Dear Rolando',1,NULL,'Rolando Wagner Sr.',NULL,2,'1955-11-09',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:05:52'),(32,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Cooper, Princess','Ms. Princess Cooper',NULL,NULL,NULL,'3',NULL,'Both','-779049152',NULL,'Sample Data','Princess','E','Cooper',2,NULL,NULL,NULL,1,NULL,'Dear Princess',1,NULL,'Dear Princess',1,NULL,'Ms. Princess Cooper',NULL,1,'1961-04-21',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:05:58'),(33,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Łąchowski-Robertson family','Łąchowski-Robertson family',NULL,NULL,NULL,'2',NULL,'Both','1953421944',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Łąchowski-Robertson family',5,NULL,'Dear Łąchowski-Robertson family',2,NULL,'Łąchowski-Robertson family',NULL,NULL,NULL,0,NULL,'Łąchowski-Robertson family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:06:07'),(34,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Łąchowski-Olsen, Brzęczysław','Brzęczysław Łąchowski-Olsen',NULL,NULL,NULL,'3',NULL,'Both','1625832331',NULL,'Sample Data','Brzęczysław','J','Łąchowski-Olsen',NULL,NULL,NULL,NULL,1,NULL,'Dear Brzęczysław',1,NULL,'Dear Brzęczysław',1,NULL,'Brzęczysław Łąchowski-Olsen',NULL,NULL,'1999-11-09',0,NULL,NULL,NULL,'Virginia Software Trust',NULL,NULL,175,0,NULL,'2014-01-23 18:06:11'),(35,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'barkley.megan23@testmail.com','barkley.megan23@testmail.com',NULL,NULL,NULL,NULL,NULL,'Both','-512022035',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear barkley.megan23@testmail.com',1,NULL,'Dear barkley.megan23@testmail.com',1,NULL,'barkley.megan23@testmail.com',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:05:57'),(36,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Barkley, Elizabeth','Elizabeth Barkley',NULL,NULL,NULL,'3',NULL,'Both','-213121437',NULL,'Sample Data','Elizabeth','C','Barkley',NULL,NULL,NULL,NULL,1,NULL,'Dear Elizabeth',1,NULL,'Dear Elizabeth',1,NULL,'Elizabeth Barkley',NULL,NULL,NULL,1,NULL,NULL,NULL,'Friends Empowerment Services',NULL,NULL,158,0,NULL,'2014-01-23 18:06:09'),(37,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Ivanov, Kacey','Kacey Ivanov',NULL,NULL,NULL,'5',NULL,'Both','-1858019729',NULL,'Sample Data','Kacey','','Ivanov',NULL,NULL,NULL,NULL,1,NULL,'Dear Kacey',1,NULL,'Dear Kacey',1,NULL,'Kacey Ivanov',NULL,NULL,'1991-01-18',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:05:59'),(38,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Adams-Díaz, Iris','Iris Adams-Díaz',NULL,NULL,NULL,NULL,NULL,'Both','1986204083',NULL,'Sample Data','Iris','','Adams-Díaz',NULL,NULL,NULL,NULL,1,NULL,'Dear Iris',1,NULL,'Dear Iris',1,NULL,'Iris Adams-Díaz',NULL,1,'1995-03-16',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:05:54'),(39,'Individual',NULL,0,1,0,0,1,0,NULL,NULL,'Ivanov, Kiara','Dr. Kiara Ivanov',NULL,NULL,NULL,NULL,NULL,'Both','1100955182',NULL,'Sample Data','Kiara','','Ivanov',4,NULL,NULL,NULL,1,NULL,'Dear Kiara',1,NULL,'Dear Kiara',1,NULL,'Dr. Kiara Ivanov',NULL,1,'1971-11-17',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:05:53'),(40,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Ivanov, Troy','Dr. Troy Ivanov',NULL,NULL,NULL,'1',NULL,'Both','-2055814734',NULL,'Sample Data','Troy','T','Ivanov',4,NULL,NULL,NULL,1,NULL,'Dear Troy',1,NULL,'Dear Troy',1,NULL,'Dr. Troy Ivanov',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:06:02'),(41,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Samson, Margaret','Ms. Margaret Samson',NULL,NULL,NULL,'4',NULL,'Both','749664303',NULL,'Sample Data','Margaret','','Samson',2,NULL,NULL,NULL,1,NULL,'Dear Margaret',1,NULL,'Dear Margaret',1,NULL,'Ms. Margaret Samson',NULL,1,'1946-12-17',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:05:48'),(42,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Samuels, Kacey','Dr. Kacey Samuels',NULL,NULL,NULL,'1',NULL,'Both','397451289',NULL,'Sample Data','Kacey','','Samuels',4,NULL,NULL,NULL,1,NULL,'Dear Kacey',1,NULL,'Dear Kacey',1,NULL,'Dr. Kacey Samuels',NULL,1,'1961-12-21',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:05:38'),(43,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'ashliei58@fishmail.co.uk','ashliei58@fishmail.co.uk',NULL,NULL,NULL,NULL,NULL,'Both','-1346393976',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear ashliei58@fishmail.co.uk',1,NULL,'Dear ashliei58@fishmail.co.uk',1,NULL,'ashliei58@fishmail.co.uk',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:06:02'),(44,'Individual',NULL,0,1,0,0,1,0,NULL,NULL,'McReynolds, Allan','Allan McReynolds III',NULL,NULL,NULL,'1',NULL,'Both','-475400183',NULL,'Sample Data','Allan','Z','McReynolds',NULL,4,NULL,NULL,1,NULL,'Dear Allan',1,NULL,'Dear Allan',1,NULL,'Allan McReynolds III',NULL,NULL,'1992-02-11',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:05:35'),(45,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'claudioo75@spamalot.info','claudioo75@spamalot.info',NULL,NULL,NULL,NULL,NULL,'Both','899646181',NULL,'Sample Data',NULL,NULL,NULL,4,NULL,NULL,NULL,1,NULL,'Dear claudioo75@spamalot.info',1,NULL,'Dear claudioo75@spamalot.info',1,NULL,'claudioo75@spamalot.info',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:05:44'),(46,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Wagner-Ivanov, Scarlet','Scarlet Wagner-Ivanov',NULL,NULL,NULL,'1',NULL,'Both','540743113',NULL,'Sample Data','Scarlet','','Wagner-Ivanov',NULL,NULL,NULL,NULL,1,NULL,'Dear Scarlet',1,NULL,'Dear Scarlet',1,NULL,'Scarlet Wagner-Ivanov',NULL,1,'1995-04-19',0,NULL,NULL,NULL,'Progressive Agriculture Initiative',NULL,NULL,132,0,NULL,'2014-01-23 18:06:08'),(47,'Organization',NULL,1,1,0,0,0,0,NULL,NULL,'Springfield Sustainability Association','Springfield Sustainability Association',NULL,NULL,NULL,NULL,NULL,'Both','-1546128163',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Springfield Sustainability Association',NULL,NULL,NULL,0,NULL,NULL,NULL,'Springfield Sustainability Association',NULL,NULL,NULL,0,NULL,'2014-01-23 18:06:12'),(48,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Barkley, Teresa','Mrs. Teresa Barkley',NULL,NULL,NULL,NULL,NULL,'Both','3210918',NULL,'Sample Data','Teresa','C','Barkley',1,NULL,NULL,NULL,1,NULL,'Dear Teresa',1,NULL,'Dear Teresa',1,NULL,'Mrs. Teresa Barkley',NULL,1,NULL,0,NULL,NULL,NULL,'Sarcoxie Software Partners',NULL,NULL,58,0,NULL,'2014-01-23 18:06:07'),(49,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Barkley, Valene','Dr. Valene Barkley',NULL,NULL,NULL,NULL,NULL,'Both','-255888956',NULL,'Sample Data','Valene','','Barkley',4,NULL,NULL,NULL,1,NULL,'Dear Valene',1,NULL,'Dear Valene',1,NULL,'Dr. Valene Barkley',NULL,1,'1967-12-10',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:05:41'),(50,'Organization',NULL,0,1,0,0,0,0,NULL,NULL,'College Family Network','College Family Network',NULL,NULL,NULL,'2',NULL,'Both','860724111',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'College Family Network',NULL,NULL,NULL,0,NULL,NULL,124,'College Family Network',NULL,NULL,NULL,0,NULL,'2014-01-23 18:06:13'),(51,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Díaz, Claudio','Mr. Claudio Díaz Sr.',NULL,NULL,NULL,NULL,NULL,'Both','-153992532',NULL,'Sample Data','Claudio','','Díaz',3,2,NULL,NULL,1,NULL,'Dear Claudio',1,NULL,'Dear Claudio',1,NULL,'Mr. Claudio Díaz Sr.',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:05:44'),(52,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Blackwell, Josefa','Josefa Blackwell',NULL,NULL,NULL,NULL,NULL,'Both','-701901873',NULL,'Sample Data','Josefa','','Blackwell',NULL,NULL,NULL,NULL,1,NULL,'Dear Josefa',1,NULL,'Dear Josefa',1,NULL,'Josefa Blackwell',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:06:01'),(53,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Ohio Agriculture Partnership','Ohio Agriculture Partnership',NULL,NULL,NULL,'4',NULL,'Both','570647099',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Ohio Agriculture Partnership',NULL,NULL,NULL,0,NULL,NULL,139,'Ohio Agriculture Partnership',NULL,NULL,NULL,0,NULL,'2014-01-23 18:06:10'),(54,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Łąchowski, Valene','Dr. Valene Łąchowski',NULL,NULL,NULL,NULL,NULL,'Both','234804735',NULL,'Sample Data','Valene','E','Łąchowski',4,NULL,NULL,NULL,1,NULL,'Dear Valene',1,NULL,'Dear Valene',1,NULL,'Dr. Valene Łąchowski',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:06:00'),(55,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Łąchowski, Shad','Mr. Shad Łąchowski',NULL,NULL,NULL,'1',NULL,'Both','695965162',NULL,'Sample Data','Shad','','Łąchowski',3,NULL,NULL,NULL,1,NULL,'Dear Shad',1,NULL,'Dear Shad',1,NULL,'Mr. Shad Łąchowski',NULL,2,'1954-09-28',1,'2013-05-06',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:05:42'),(56,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Wagner-Ivanov, Jed','Jed Wagner-Ivanov Jr.',NULL,NULL,NULL,NULL,NULL,'Both','705746784',NULL,'Sample Data','Jed','L','Wagner-Ivanov',NULL,1,NULL,NULL,1,NULL,'Dear Jed',1,NULL,'Dear Jed',1,NULL,'Jed Wagner-Ivanov Jr.',NULL,NULL,'2006-08-01',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:05:53'),(57,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Nielsen, Megan','Dr. Megan Nielsen',NULL,NULL,NULL,'5',NULL,'Both','-831170027',NULL,'Sample Data','Megan','P','Nielsen',4,NULL,NULL,NULL,1,NULL,'Dear Megan',1,NULL,'Dear Megan',1,NULL,'Dr. Megan Nielsen',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:05:38'),(58,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Sarcoxie Software Partners','Sarcoxie Software Partners',NULL,NULL,NULL,'3',NULL,'Both','-147314240',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Sarcoxie Software Partners',NULL,NULL,NULL,0,NULL,NULL,48,'Sarcoxie Software Partners',NULL,NULL,NULL,0,NULL,'2014-01-23 18:06:07'),(59,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Smith, Maxwell','Maxwell Smith Jr.',NULL,NULL,NULL,NULL,NULL,'Both','2112091730',NULL,'Sample Data','Maxwell','T','Smith',NULL,1,NULL,NULL,1,NULL,'Dear Maxwell',1,NULL,'Dear Maxwell',1,NULL,'Maxwell Smith Jr.',NULL,NULL,'2004-06-16',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:05:56'),(60,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'McReynolds, Mei','Mrs. Mei McReynolds',NULL,NULL,NULL,'4',NULL,'Both','-2071414691',NULL,'Sample Data','Mei','','McReynolds',1,NULL,NULL,NULL,1,NULL,'Dear Mei',1,NULL,'Dear Mei',1,NULL,'Mrs. Mei McReynolds',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:05:54'),(61,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'yadav-samuelsb@spamalot.co.nz','yadav-samuelsb@spamalot.co.nz',NULL,NULL,NULL,'5',NULL,'Both','442739812',NULL,'Sample Data',NULL,NULL,NULL,1,NULL,NULL,NULL,1,NULL,'Dear yadav-samuelsb@spamalot.co.nz',1,NULL,'Dear yadav-samuelsb@spamalot.co.nz',1,NULL,'yadav-samuelsb@spamalot.co.nz',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:05:51'),(62,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Ivanov, Erik','Erik Ivanov III',NULL,NULL,NULL,'4',NULL,'Both','-936368250',NULL,'Sample Data','Erik','','Ivanov',NULL,4,NULL,NULL,1,NULL,'Dear Erik',1,NULL,'Dear Erik',1,NULL,'Erik Ivanov III',NULL,NULL,NULL,1,'2013-06-24',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:05:59'),(63,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'barkley.norris@testing.biz','barkley.norris@testing.biz',NULL,NULL,NULL,NULL,NULL,'Both','-1536173173',NULL,'Sample Data',NULL,NULL,NULL,3,4,NULL,NULL,1,NULL,'Dear barkley.norris@testing.biz',1,NULL,'Dear barkley.norris@testing.biz',1,NULL,'barkley.norris@testing.biz',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:05:47'),(64,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Local Literacy Association','Local Literacy Association',NULL,NULL,NULL,NULL,NULL,'Both','-1583621826',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Local Literacy Association',NULL,NULL,NULL,0,NULL,NULL,67,'Local Literacy Association',NULL,NULL,NULL,0,NULL,'2014-01-23 18:06:11'),(65,'Household',NULL,1,0,0,0,0,0,NULL,NULL,'Adams-Díaz family','Adams-Díaz family',NULL,NULL,NULL,NULL,NULL,'Both','-2081093211',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Adams-Díaz family',5,NULL,'Dear Adams-Díaz family',2,NULL,'Adams-Díaz family',NULL,NULL,NULL,0,NULL,'Adams-Díaz family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:06:05'),(66,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Jensen, Jackson','Dr. Jackson Jensen III',NULL,NULL,NULL,NULL,NULL,'Both','-1455941101',NULL,'Sample Data','Jackson','','Jensen',4,4,NULL,NULL,1,NULL,'Dear Jackson',1,NULL,'Dear Jackson',1,NULL,'Dr. Jackson Jensen III',NULL,2,'1968-06-04',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:05:38'),(67,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Yadav, Elizabeth','Elizabeth Yadav',NULL,NULL,NULL,'5',NULL,'Both','-1737899054',NULL,'Sample Data','Elizabeth','G','Yadav',NULL,NULL,NULL,NULL,1,NULL,'Dear Elizabeth',1,NULL,'Dear Elizabeth',1,NULL,'Elizabeth Yadav',NULL,1,NULL,1,'2013-09-08',NULL,NULL,'Local Literacy Association',NULL,NULL,64,0,NULL,'2014-01-23 18:06:10'),(68,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Łąchowski-Robertson, Erik','Erik Łąchowski-Robertson',NULL,NULL,NULL,'3',NULL,'Both','-698501431',NULL,'Sample Data','Erik','P','Łąchowski-Robertson',NULL,NULL,NULL,NULL,1,NULL,'Dear Erik',1,NULL,'Dear Erik',1,NULL,'Erik Łąchowski-Robertson',NULL,NULL,'1999-01-18',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:06:03'),(69,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Progressive Arts Academy','Progressive Arts Academy',NULL,NULL,NULL,NULL,NULL,'Both','-1283405335',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Progressive Arts Academy',NULL,NULL,NULL,0,NULL,NULL,85,'Progressive Arts Academy',NULL,NULL,NULL,0,NULL,'2014-01-23 18:06:12'),(70,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Samuels, Scarlet','Dr. Scarlet Samuels',NULL,NULL,NULL,'3',NULL,'Both','-134804729',NULL,'Sample Data','Scarlet','W','Samuels',4,NULL,NULL,NULL,1,NULL,'Dear Scarlet',1,NULL,'Dear Scarlet',1,NULL,'Dr. Scarlet Samuels',NULL,1,'1937-08-13',1,'2013-05-16',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:05:39'),(71,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Deforest, Billy','Mr. Billy Deforest Jr.',NULL,NULL,NULL,'3',NULL,'Both','-776047566',NULL,'Sample Data','Billy','','Deforest',3,1,NULL,NULL,1,NULL,'Dear Billy',1,NULL,'Dear Billy',1,NULL,'Mr. Billy Deforest Jr.',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:06:00'),(72,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Deforest, Kandace','Kandace Deforest',NULL,NULL,NULL,'5',NULL,'Both','1547944287',NULL,'Sample Data','Kandace','','Deforest',NULL,NULL,NULL,NULL,1,NULL,'Dear Kandace',1,NULL,'Dear Kandace',1,NULL,'Kandace Deforest',NULL,NULL,'1945-10-19',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:05:51'),(73,'Household',NULL,0,1,0,0,0,0,NULL,NULL,'McReynolds family','McReynolds family',NULL,NULL,NULL,NULL,NULL,'Both','-1262286324',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,NULL,'2014-01-23 18:06:05'),(74,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Terrell, Daren','Daren Terrell',NULL,NULL,NULL,NULL,NULL,'Both','1552940951',NULL,'Sample Data','Daren','','Terrell',NULL,NULL,NULL,NULL,1,NULL,'Dear Daren',1,NULL,'Dear Daren',1,NULL,'Daren Terrell',NULL,NULL,'2002-09-27',0,NULL,NULL,NULL,'Global Technology Initiative',NULL,NULL,104,0,NULL,'2014-01-23 18:06:09'),(75,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'González, Barry','Barry González',NULL,NULL,NULL,'2',NULL,'Both','-726900023',NULL,'Sample Data','Barry','M','González',NULL,NULL,NULL,NULL,1,NULL,'Dear Barry',1,NULL,'Dear Barry',1,NULL,'Barry González',NULL,2,'1960-04-12',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:05:44'),(76,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Díaz, Iris','Dr. Iris Díaz',NULL,NULL,NULL,NULL,NULL,'Both','-1562798736',NULL,'Sample Data','Iris','','Díaz',4,NULL,NULL,NULL,1,NULL,'Dear Iris',1,NULL,'Dear Iris',1,NULL,'Dr. Iris Díaz',NULL,1,'1992-02-11',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:05:44'),(77,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Cruz, Bernadette','Dr. Bernadette Cruz',NULL,NULL,NULL,NULL,NULL,'Both','264367501',NULL,'Sample Data','Bernadette','M','Cruz',4,NULL,NULL,NULL,1,NULL,'Dear Bernadette',1,NULL,'Dear Bernadette',1,NULL,'Dr. Bernadette Cruz',NULL,NULL,'1959-04-25',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:05:45'),(78,'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,NULL,'2014-01-23 18:06:06'),(79,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Barkley, Ivey','Ivey Barkley',NULL,NULL,NULL,NULL,NULL,'Both','-2094292927',NULL,'Sample Data','Ivey','G','Barkley',NULL,NULL,NULL,NULL,1,NULL,'Dear Ivey',1,NULL,'Dear Ivey',1,NULL,'Ivey Barkley',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:05:56'),(80,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Barkley, Truman','Dr. Truman Barkley II',NULL,NULL,NULL,'2',NULL,'Both','-1451249289',NULL,'Sample Data','Truman','S','Barkley',4,3,NULL,NULL,1,NULL,'Dear Truman',1,NULL,'Dear Truman',1,NULL,'Dr. Truman Barkley II',NULL,2,NULL,1,'2013-10-07',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:05:57'),(81,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Nielsen, Alida','Dr. Alida Nielsen',NULL,NULL,NULL,'5',NULL,'Both','-1847903168',NULL,'Sample Data','Alida','E','Nielsen',4,NULL,NULL,NULL,1,NULL,'Dear Alida',1,NULL,'Dear Alida',1,NULL,'Dr. Alida Nielsen',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:05:33'),(82,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Jones, Ivey','Ivey Jones',NULL,NULL,NULL,'4',NULL,'Both','-1741017533',NULL,'Sample Data','Ivey','','Jones',NULL,NULL,NULL,NULL,1,NULL,'Dear Ivey',1,NULL,'Dear Ivey',1,NULL,'Ivey Jones',NULL,1,'1947-12-27',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:05:38'),(83,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Samuels, Shad','Shad Samuels',NULL,NULL,NULL,NULL,NULL,'Both','-684114902',NULL,'Sample Data','Shad','','Samuels',NULL,NULL,NULL,NULL,1,NULL,'Dear Shad',1,NULL,'Dear Shad',1,NULL,'Shad Samuels',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:05:42'),(84,'Organization',NULL,0,0,0,0,1,0,NULL,NULL,'Hollis Center Peace Collective','Hollis Center Peace Collective',NULL,NULL,NULL,'1',NULL,'Both','-571207897',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Hollis Center Peace Collective',NULL,NULL,NULL,0,NULL,NULL,114,'Hollis Center Peace Collective',NULL,NULL,NULL,0,NULL,'2014-01-23 18:06:10'),(85,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Terry, Kathlyn','Dr. Kathlyn Terry',NULL,NULL,NULL,NULL,NULL,'Both','1733215709',NULL,'Sample Data','Kathlyn','','Terry',4,NULL,NULL,NULL,1,NULL,'Dear Kathlyn',1,NULL,'Dear Kathlyn',1,NULL,'Dr. Kathlyn Terry',NULL,1,'1992-02-11',0,NULL,NULL,NULL,'Progressive Arts Academy',NULL,NULL,69,0,NULL,'2014-01-23 18:06:12'),(86,'Household',NULL,1,1,0,0,0,0,NULL,NULL,'Wagner-Ivanov family','Wagner-Ivanov family',NULL,NULL,NULL,'5',NULL,'Both','-1176576096',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Wagner-Ivanov family',5,NULL,'Dear Wagner-Ivanov family',2,NULL,'Wagner-Ivanov family',NULL,NULL,NULL,0,NULL,'Wagner-Ivanov family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:06:05'),(87,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Jameson, Merrie','Merrie Jameson',NULL,NULL,NULL,'3',NULL,'Both','-578632248',NULL,'Sample Data','Merrie','Z','Jameson',NULL,NULL,NULL,NULL,1,NULL,'Dear Merrie',1,NULL,'Dear Merrie',1,NULL,'Merrie Jameson',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:05:48'),(88,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Samson, Brigette','Brigette Samson',NULL,NULL,NULL,NULL,NULL,'Both','2016376463',NULL,'Sample Data','Brigette','','Samson',NULL,NULL,NULL,NULL,1,NULL,'Dear Brigette',1,NULL,'Dear Brigette',1,NULL,'Brigette Samson',NULL,1,NULL,1,'2013-11-24',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:05:32'),(89,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Díaz, Carlos','Dr. Carlos Díaz',NULL,NULL,NULL,'5',NULL,'Both','-749534446',NULL,'Sample Data','Carlos','C','Díaz',4,NULL,NULL,NULL,1,NULL,'Dear Carlos',1,NULL,'Dear Carlos',1,NULL,'Dr. Carlos Díaz',NULL,NULL,'1987-08-05',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:05:36'),(90,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Lee, Truman','Truman Lee Jr.',NULL,NULL,NULL,'2',NULL,'Both','696555700',NULL,'Sample Data','Truman','','Lee',NULL,1,NULL,NULL,1,NULL,'Dear Truman',1,NULL,'Dear Truman',1,NULL,'Truman Lee Jr.',NULL,NULL,'1934-10-16',1,'2013-11-14',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:05:37'),(91,'Individual',NULL,1,1,0,0,0,0,NULL,NULL,'estabarkley@lol.biz','estabarkley@lol.biz',NULL,NULL,NULL,'3',NULL,'Both','-1429402632',NULL,'Sample Data',NULL,NULL,NULL,1,NULL,NULL,NULL,1,NULL,'Dear estabarkley@lol.biz',1,NULL,'Dear estabarkley@lol.biz',1,NULL,'estabarkley@lol.biz',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:05:41'),(92,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Wilson, Toby','Dr. Toby Wilson',NULL,NULL,NULL,'5',NULL,'Both','4291852',NULL,'Sample Data','Toby','','Wilson',4,NULL,NULL,NULL,1,NULL,'Dear Toby',1,NULL,'Dear Toby',1,NULL,'Dr. Toby Wilson',NULL,2,'1956-07-30',1,'2013-11-08',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:05:35'),(93,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Díaz, Elina','Elina Díaz',NULL,NULL,NULL,NULL,NULL,'Both','843757403',NULL,'Sample Data','Elina','','Díaz',NULL,NULL,NULL,NULL,1,NULL,'Dear Elina',1,NULL,'Dear Elina',1,NULL,'Elina Díaz',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:05:35'),(94,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Smith, Jina','Jina Smith',NULL,NULL,NULL,NULL,NULL,'Both','227187270',NULL,'Sample Data','Jina','B','Smith',NULL,NULL,NULL,NULL,1,NULL,'Dear Jina',1,NULL,'Dear Jina',1,NULL,'Jina Smith',NULL,1,'1973-05-30',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:05:48'),(95,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Cooper, Lou','Lou Cooper',NULL,NULL,NULL,'4',NULL,'Both','-1415157034',NULL,'Sample Data','Lou','X','Cooper',NULL,NULL,NULL,NULL,1,NULL,'Dear Lou',1,NULL,'Dear Lou',1,NULL,'Lou Cooper',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:05:58'),(96,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Díaz, Juliann','Mrs. Juliann Díaz',NULL,NULL,NULL,NULL,NULL,'Both','-1690231808',NULL,'Sample Data','Juliann','G','Díaz',1,NULL,NULL,NULL,1,NULL,'Dear Juliann',1,NULL,'Dear Juliann',1,NULL,'Mrs. Juliann Díaz',NULL,1,'1972-01-16',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:05:54'),(97,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Łąchowski, Jacob','Dr. Jacob Łąchowski Jr.',NULL,NULL,NULL,NULL,NULL,'Both','-1044371242',NULL,'Sample Data','Jacob','O','Łąchowski',4,1,NULL,NULL,1,NULL,'Dear Jacob',1,NULL,'Dear Jacob',1,NULL,'Dr. Jacob Łąchowski Jr.',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:06:00'),(98,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Martin Luther King Development Services','Martin Luther King Development Services',NULL,NULL,NULL,NULL,NULL,'Both','1472760797',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Martin Luther King Development Services',NULL,NULL,NULL,0,NULL,NULL,18,'Martin Luther King Development Services',NULL,NULL,NULL,0,NULL,'2014-01-23 18:06:11'),(99,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'carylont@spamalot.co.uk','carylont@spamalot.co.uk',NULL,NULL,NULL,'3',NULL,'Both','1864452077',NULL,'Sample Data',NULL,NULL,NULL,2,NULL,NULL,NULL,1,NULL,'Dear carylont@spamalot.co.uk',1,NULL,'Dear carylont@spamalot.co.uk',1,NULL,'carylont@spamalot.co.uk',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:05:43'),(100,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Wattson, Bryon','Bryon Wattson',NULL,NULL,NULL,NULL,NULL,'Both','-1919868972',NULL,'Sample Data','Bryon','','Wattson',NULL,NULL,NULL,NULL,1,NULL,'Dear Bryon',1,NULL,'Dear Bryon',1,NULL,'Bryon Wattson',NULL,NULL,'1960-11-20',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:05:49'),(101,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Deforest family','Deforest family',NULL,NULL,NULL,'5',NULL,'Both','-1059588257',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,NULL,'2014-01-23 18:06:06'),(102,'Individual',NULL,1,0,0,0,1,0,NULL,NULL,'Roberts, Alida','Alida Roberts',NULL,NULL,NULL,'4',NULL,'Both','-1049919456',NULL,'Sample Data','Alida','V','Roberts',NULL,NULL,NULL,NULL,1,NULL,'Dear Alida',1,NULL,'Dear Alida',1,NULL,'Alida Roberts',NULL,NULL,'1968-10-14',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:05:45'),(103,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Cooper, Bryon','Bryon Cooper',NULL,NULL,NULL,'5',NULL,'Both','1743429878',NULL,'Sample Data','Bryon','Z','Cooper',NULL,NULL,NULL,NULL,1,NULL,'Dear Bryon',1,NULL,'Dear Bryon',1,NULL,'Bryon Cooper',NULL,2,'1961-12-29',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:05:33'),(104,'Organization',NULL,0,1,0,0,0,0,NULL,NULL,'Global Technology Initiative','Global Technology Initiative',NULL,NULL,NULL,NULL,NULL,'Both','395459504',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Global Technology Initiative',NULL,NULL,NULL,0,NULL,NULL,74,'Global Technology Initiative',NULL,NULL,NULL,0,NULL,'2014-01-23 18:06:09'),(105,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Adams-Díaz, Landon','Landon Adams-Díaz Sr.',NULL,NULL,NULL,NULL,NULL,'Both','1608348559',NULL,'Sample Data','Landon','','Adams-Díaz',NULL,2,NULL,NULL,1,NULL,'Dear Landon',1,NULL,'Dear Landon',1,NULL,'Landon Adams-Díaz Sr.',NULL,2,'1966-08-05',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:05:54'),(106,'Household',NULL,1,0,0,0,0,0,NULL,NULL,'Samuels family','Samuels family',NULL,NULL,NULL,NULL,NULL,'Both','350459294',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Samuels family',5,NULL,'Dear Samuels family',2,NULL,'Samuels family',NULL,NULL,NULL,0,NULL,'Samuels family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:06:05'),(107,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Ivanov, Princess','Princess Ivanov',NULL,NULL,NULL,'5',NULL,'Both','-928517819',NULL,'Sample Data','Princess','','Ivanov',NULL,NULL,NULL,NULL,1,NULL,'Dear Princess',1,NULL,'Dear Princess',1,NULL,'Princess Ivanov',NULL,1,'1971-08-04',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:05:59'),(108,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Reynolds-Łąchowski-Olsen, Brzęczysław','Mr. Brzęczysław Reynolds-Łąchowski-Olsen',NULL,NULL,NULL,NULL,NULL,'Both','-1507881112',NULL,'Sample Data','Brzęczysław','','Reynolds-Łąchowski-Olsen',3,NULL,NULL,NULL,1,NULL,'Dear Brzęczysław',1,NULL,'Dear Brzęczysław',1,NULL,'Mr. Brzęczysław Reynolds-Łąchowski-Olsen',NULL,2,'1972-01-20',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:06:04'),(109,'Individual',NULL,1,1,0,0,0,0,NULL,NULL,'cooper.sonny@lol.com','cooper.sonny@lol.com',NULL,NULL,NULL,NULL,NULL,'Both','-288127727',NULL,'Sample Data',NULL,NULL,NULL,4,3,NULL,NULL,1,NULL,'Dear cooper.sonny@lol.com',1,NULL,'Dear cooper.sonny@lol.com',1,NULL,'cooper.sonny@lol.com',NULL,NULL,NULL,0,NULL,NULL,NULL,'College Technology Solutions',NULL,NULL,12,0,NULL,'2014-01-23 18:06:11'),(110,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Olsen, Felisha','Dr. Felisha Olsen',NULL,NULL,NULL,'4',NULL,'Both','-700609218',NULL,'Sample Data','Felisha','S','Olsen',4,NULL,NULL,NULL,1,NULL,'Dear Felisha',1,NULL,'Dear Felisha',1,NULL,'Dr. Felisha Olsen',NULL,1,'1959-05-27',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:05:43'),(111,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Barkley, Teresa','Teresa Barkley',NULL,NULL,NULL,'4',NULL,'Both','3210918',NULL,'Sample Data','Teresa','','Barkley',NULL,NULL,NULL,NULL,1,NULL,'Dear Teresa',1,NULL,'Dear Teresa',1,NULL,'Teresa Barkley',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:05:55'),(112,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Cooper, Alida','Alida Cooper',NULL,NULL,NULL,NULL,NULL,'Both','-1991264',NULL,'Sample Data','Alida','Y','Cooper',NULL,NULL,NULL,NULL,1,NULL,'Dear Alida',1,NULL,'Dear Alida',1,NULL,'Alida Cooper',NULL,1,'1991-12-07',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:05:33'),(113,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Blackwell, Lincoln','Dr. Lincoln Blackwell',NULL,NULL,NULL,'4',NULL,'Both','-1041708502',NULL,'Sample Data','Lincoln','','Blackwell',4,NULL,NULL,NULL,1,NULL,'Dear Lincoln',1,NULL,'Dear Lincoln',1,NULL,'Dr. Lincoln Blackwell',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:05:33'),(114,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Adams, Erik','Dr. Erik Adams',NULL,NULL,NULL,'1',NULL,'Both','1567928244',NULL,'Sample Data','Erik','','Adams',4,NULL,NULL,NULL,1,NULL,'Dear Erik',1,NULL,'Dear Erik',1,NULL,'Dr. Erik Adams',NULL,NULL,'1935-12-09',0,NULL,NULL,NULL,'Hollis Center Peace Collective',NULL,NULL,84,0,NULL,'2014-01-23 18:06:10'),(115,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Deforest, Eleonor','Eleonor Deforest',NULL,NULL,NULL,NULL,NULL,'Both','873042490',NULL,'Sample Data','Eleonor','','Deforest',NULL,NULL,NULL,NULL,1,NULL,'Dear Eleonor',1,NULL,'Dear Eleonor',1,NULL,'Eleonor Deforest',NULL,1,'1995-10-07',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:05:51'),(116,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Dimitrov, Landon','Mr. Landon Dimitrov Sr.',NULL,NULL,NULL,'2',NULL,'Both','-750109969',NULL,'Sample Data','Landon','W','Dimitrov',3,2,NULL,NULL,1,NULL,'Dear Landon',1,NULL,'Dear Landon',1,NULL,'Mr. Landon Dimitrov Sr.',NULL,2,'1960-10-13',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:06:01'),(117,'Household',NULL,1,0,0,0,0,0,NULL,NULL,'Deforest family','Deforest family',NULL,NULL,NULL,NULL,NULL,'Both','-1059588257',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,NULL,'2014-01-23 18:06:05'),(118,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Jones, Eleonor','Eleonor Jones',NULL,NULL,NULL,NULL,NULL,'Both','1311701013',NULL,'Sample Data','Eleonor','J','Jones',NULL,NULL,NULL,NULL,1,NULL,'Dear Eleonor',1,NULL,'Dear Eleonor',1,NULL,'Eleonor Jones',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:05:46'),(119,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'El Camino Action Alliance','El Camino Action Alliance',NULL,NULL,NULL,'3',NULL,'Both','549900121',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'El Camino Action Alliance',NULL,NULL,NULL,0,NULL,NULL,NULL,'El Camino Action Alliance',NULL,NULL,NULL,0,NULL,'2014-01-23 18:06:10'),(120,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Zope, Shauna','Mrs. Shauna Zope',NULL,NULL,NULL,NULL,NULL,'Both','-597724443',NULL,'Sample Data','Shauna','','Zope',1,NULL,NULL,NULL,1,NULL,'Dear Shauna',1,NULL,'Dear Shauna',1,NULL,'Mrs. Shauna Zope',NULL,1,'1958-10-31',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:05:48'),(121,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Barkley, Bob','Bob Barkley',NULL,NULL,NULL,NULL,NULL,'Both','-25287406',NULL,'Sample Data','Bob','','Barkley',NULL,NULL,NULL,NULL,1,NULL,'Dear Bob',1,NULL,'Dear Bob',1,NULL,'Bob Barkley',NULL,2,'1970-01-06',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:05:56'),(122,'Individual',NULL,0,1,0,0,1,0,NULL,NULL,'Samuels, Roland','Roland Samuels',NULL,NULL,NULL,'5',NULL,'Both','1033995138',NULL,'Sample Data','Roland','C','Samuels',NULL,NULL,NULL,NULL,1,NULL,'Dear Roland',1,NULL,'Dear Roland',1,NULL,'Roland Samuels',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:05:54'),(123,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Robertson, Merrie','Mrs. Merrie Robertson',NULL,NULL,NULL,NULL,NULL,'Both','-1340858849',NULL,'Sample Data','Merrie','','Robertson',1,NULL,NULL,NULL,1,NULL,'Dear Merrie',1,NULL,'Dear Merrie',1,NULL,'Mrs. Merrie Robertson',NULL,1,'1951-02-22',1,'2013-04-16',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:06:03'),(124,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Smith, Omar','Dr. Omar Smith',NULL,NULL,NULL,NULL,NULL,'Both','1048289209',NULL,'Sample Data','Omar','','Smith',4,NULL,NULL,NULL,1,NULL,'Dear Omar',1,NULL,'Dear Omar',1,NULL,'Dr. Omar Smith',NULL,NULL,'1934-02-10',0,NULL,NULL,NULL,'College Family Network',NULL,NULL,50,0,NULL,'2014-01-23 18:06:13'),(125,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Jacobs, Valene','Ms. Valene Jacobs',NULL,NULL,NULL,'2',NULL,'Both','-148387535',NULL,'Sample Data','Valene','','Jacobs',2,NULL,NULL,NULL,1,NULL,'Dear Valene',1,NULL,'Dear Valene',1,NULL,'Ms. Valene Jacobs',NULL,NULL,'1930-11-12',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:05:34'),(126,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Łąchowski, Eleonor','Eleonor Łąchowski',NULL,NULL,NULL,NULL,NULL,'Both','871109079',NULL,'Sample Data','Eleonor','M','Łąchowski',NULL,NULL,NULL,NULL,1,NULL,'Dear Eleonor',1,NULL,'Dear Eleonor',1,NULL,'Eleonor Łąchowski',NULL,1,'1953-05-17',1,'2013-03-23',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:06:00'),(127,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Yadav, Andrew','Andrew Yadav III',NULL,NULL,NULL,NULL,NULL,'Both','-642411872',NULL,'Sample Data','Andrew','X','Yadav',NULL,4,NULL,NULL,1,NULL,'Dear Andrew',1,NULL,'Dear Andrew',1,NULL,'Andrew Yadav III',NULL,2,'1933-04-22',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:05:40'),(128,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Jones, Brzęczysław','Dr. Brzęczysław Jones',NULL,NULL,NULL,NULL,NULL,'Both','1102443663',NULL,'Sample Data','Brzęczysław','','Jones',4,NULL,NULL,NULL,1,NULL,'Dear Brzęczysław',1,NULL,'Dear Brzęczysław',1,NULL,'Dr. Brzęczysław Jones',NULL,2,'1949-10-17',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:05:43'),(129,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Adams, Lou','Lou Adams III',NULL,NULL,NULL,NULL,NULL,'Both','-144519829',NULL,'Sample Data','Lou','L','Adams',NULL,4,NULL,NULL,1,NULL,'Dear Lou',1,NULL,'Dear Lou',1,NULL,'Lou Adams III',NULL,NULL,'1975-01-05',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:05:53'),(130,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'McReynolds, Magan','Dr. Magan McReynolds',NULL,NULL,NULL,NULL,NULL,'Both','-664395212',NULL,'Sample Data','Magan','','McReynolds',4,NULL,NULL,NULL,1,NULL,'Dear Magan',1,NULL,'Dear Magan',1,NULL,'Dr. Magan McReynolds',NULL,1,'1979-11-21',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:05:54'),(131,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Barkley, Lincoln','Dr. Lincoln Barkley Jr.',NULL,NULL,NULL,'1',NULL,'Both','1151829541',NULL,'Sample Data','Lincoln','','Barkley',4,1,NULL,NULL,1,NULL,'Dear Lincoln',1,NULL,'Dear Lincoln',1,NULL,'Dr. Lincoln Barkley Jr.',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:05:55'),(132,'Organization',NULL,1,0,0,0,0,0,NULL,NULL,'Progressive Agriculture Initiative','Progressive Agriculture Initiative',NULL,NULL,NULL,NULL,NULL,'Both','-888784528',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Progressive Agriculture Initiative',NULL,NULL,NULL,0,NULL,NULL,46,'Progressive Agriculture Initiative',NULL,NULL,NULL,0,NULL,'2014-01-23 18:06:08'),(133,'Individual',NULL,0,1,0,0,1,0,NULL,NULL,'Dimitrov-Yadav, Rolando','Rolando Dimitrov-Yadav III',NULL,NULL,NULL,'5',NULL,'Both','490373591',NULL,'Sample Data','Rolando','','Dimitrov-Yadav',NULL,4,NULL,NULL,1,NULL,'Dear Rolando',1,NULL,'Dear Rolando',1,NULL,'Rolando Dimitrov-Yadav III',NULL,2,'2000-08-20',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:06:01'),(134,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'sm.yadav-samuels79@mymail.co.in','sm.yadav-samuels79@mymail.co.in',NULL,NULL,NULL,NULL,NULL,'Both','2057742361',NULL,'Sample Data',NULL,NULL,NULL,1,NULL,NULL,NULL,1,NULL,'Dear sm.yadav-samuels79@mymail.co.in',1,NULL,'Dear sm.yadav-samuels79@mymail.co.in',1,NULL,'sm.yadav-samuels79@mymail.co.in',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:05:52'),(135,'Individual',NULL,0,1,0,0,1,0,NULL,NULL,'Jameson, Ashley','Dr. Ashley Jameson Jr.',NULL,NULL,NULL,'2',NULL,'Both','-733459117',NULL,'Sample Data','Ashley','C','Jameson',4,1,NULL,NULL,1,NULL,'Dear Ashley',1,NULL,'Dear Ashley',1,NULL,'Dr. Ashley Jameson Jr.',NULL,2,'1976-03-20',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:05:46'),(136,'Individual',NULL,1,1,0,0,0,0,NULL,NULL,'Terrell, Landon','Mr. Landon Terrell III',NULL,NULL,NULL,'3',NULL,'Both','-126215178',NULL,'Sample Data','Landon','','Terrell',3,4,NULL,NULL,1,NULL,'Dear Landon',1,NULL,'Dear Landon',1,NULL,'Mr. Landon Terrell III',NULL,2,'1976-05-02',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:05:50'),(137,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'jacobs.e.roland76@testing.co.uk','jacobs.e.roland76@testing.co.uk',NULL,NULL,NULL,'5',NULL,'Both','-2050051766',NULL,'Sample Data',NULL,NULL,NULL,4,1,NULL,NULL,1,NULL,'Dear jacobs.e.roland76@testing.co.uk',1,NULL,'Dear jacobs.e.roland76@testing.co.uk',1,NULL,'jacobs.e.roland76@testing.co.uk',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:05:33'),(138,'Household',NULL,0,1,0,0,0,0,NULL,NULL,'Dimitrov-Yadav family','Dimitrov-Yadav family',NULL,NULL,NULL,'5',NULL,'Both','-1631430483',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Dimitrov-Yadav family',5,NULL,'Dear Dimitrov-Yadav family',2,NULL,'Dimitrov-Yadav family',NULL,NULL,NULL,0,NULL,'Dimitrov-Yadav family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:06:07'),(139,'Individual',NULL,1,1,0,0,0,0,NULL,NULL,'Ivanov-Blackwell, Sanford','Sanford Ivanov-Blackwell',NULL,NULL,NULL,NULL,NULL,'Both','1947142026',NULL,'Sample Data','Sanford','','Ivanov-Blackwell',NULL,NULL,NULL,NULL,1,NULL,'Dear Sanford',1,NULL,'Dear Sanford',1,NULL,'Sanford Ivanov-Blackwell',NULL,2,'1986-11-16',0,NULL,NULL,NULL,'Ohio Agriculture Partnership',NULL,NULL,53,0,NULL,'2014-01-23 18:06:10'),(140,'Individual',NULL,0,1,0,0,1,0,NULL,NULL,'Dimitrov-Yadav, Esta','Esta Dimitrov-Yadav',NULL,NULL,NULL,NULL,NULL,'Both','-1310476936',NULL,'Sample Data','Esta','A','Dimitrov-Yadav',NULL,NULL,NULL,NULL,1,NULL,'Dear Esta',1,NULL,'Dear Esta',1,NULL,'Esta Dimitrov-Yadav',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:06:01'),(141,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Samuels, Ivey','Dr. Ivey Samuels',NULL,NULL,NULL,'4',NULL,'Both','-112219018',NULL,'Sample Data','Ivey','W','Samuels',4,NULL,NULL,NULL,1,NULL,'Dear Ivey',1,NULL,'Dear Ivey',1,NULL,'Dr. Ivey Samuels',NULL,NULL,'1966-05-29',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:05:55'),(142,'Organization',NULL,0,0,0,0,1,0,NULL,NULL,'Urban Health Services','Urban Health Services',NULL,NULL,NULL,'4',NULL,'Both','1444727154',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Urban Health Services',NULL,NULL,NULL,0,NULL,NULL,192,'Urban Health Services',NULL,NULL,NULL,0,NULL,'2014-01-23 18:06:09'),(143,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Samuels, Alida','Alida Samuels',NULL,NULL,NULL,'1',NULL,'Both','-1467331420',NULL,'Sample Data','Alida','','Samuels',NULL,NULL,NULL,NULL,1,NULL,'Dear Alida',1,NULL,'Dear Alida',1,NULL,'Alida Samuels',NULL,1,'1946-02-04',1,'2013-07-08',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:05:46'),(144,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Cooper, Claudio','Claudio Cooper III',NULL,NULL,NULL,'5',NULL,'Both','1104394960',NULL,'Sample Data','Claudio','B','Cooper',NULL,4,NULL,NULL,1,NULL,'Dear Claudio',1,NULL,'Dear Claudio',1,NULL,'Claudio Cooper III',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:05:58'),(145,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Yadav, Carlos','Dr. Carlos Yadav',NULL,NULL,NULL,'5',NULL,'Both','-2006642992',NULL,'Sample Data','Carlos','K','Yadav',4,NULL,NULL,NULL,1,NULL,'Dear Carlos',1,NULL,'Dear Carlos',1,NULL,'Dr. Carlos Yadav',NULL,2,'1978-03-04',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:06:01'),(146,'Individual',NULL,1,1,0,0,1,0,NULL,NULL,'Díaz, Magan','Magan Díaz',NULL,NULL,NULL,'5',NULL,'Both','-303495149',NULL,'Sample Data','Magan','G','Díaz',NULL,NULL,NULL,NULL,1,NULL,'Dear Magan',1,NULL,'Dear Magan',1,NULL,'Magan Díaz',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:05:32'),(147,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Łąchowski, Andrew','Dr. Andrew Łąchowski III',NULL,NULL,NULL,'2',NULL,'Both','1575830932',NULL,'Sample Data','Andrew','J','Łąchowski',4,4,NULL,NULL,1,NULL,'Dear Andrew',1,NULL,'Dear Andrew',1,NULL,'Dr. Andrew Łąchowski III',NULL,2,'1976-03-22',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:06:00'),(148,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Cruz family','Cruz family',NULL,NULL,NULL,'2',NULL,'Both','-1968428799',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,NULL,'2014-01-23 18:06:06'),(149,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Cruz, Beula','Beula Cruz',NULL,NULL,NULL,NULL,NULL,'Both','-779610755',NULL,'Sample Data','Beula','M','Cruz',NULL,NULL,NULL,NULL,1,NULL,'Dear Beula',1,NULL,'Dear Beula',1,NULL,'Beula Cruz',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:05:59'),(150,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'rolandyadav74@testing.info','rolandyadav74@testing.info',NULL,NULL,NULL,'4',NULL,'Both','-775562721',NULL,'Sample Data',NULL,NULL,NULL,4,4,NULL,NULL,1,NULL,'Dear rolandyadav74@testing.info',1,NULL,'Dear rolandyadav74@testing.info',1,NULL,'rolandyadav74@testing.info',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:05:36'),(151,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jameson, Kathleen','Mrs. Kathleen Jameson',NULL,NULL,NULL,'1',NULL,'Both','-494680543',NULL,'Sample Data','Kathleen','N','Jameson',1,NULL,NULL,NULL,1,NULL,'Dear Kathleen',1,NULL,'Dear Kathleen',1,NULL,'Mrs. Kathleen Jameson',NULL,1,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:05:37'),(152,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Prentice, Jina','Ms. Jina Prentice',NULL,NULL,NULL,'2',NULL,'Both','-720847124',NULL,'Sample Data','Jina','','Prentice',2,NULL,NULL,NULL,1,NULL,'Dear Jina',1,NULL,'Dear Jina',1,NULL,'Ms. Jina Prentice',NULL,1,'1967-11-16',1,'2013-06-14',NULL,NULL,'Second Culture Systems',NULL,NULL,157,0,NULL,'2014-01-23 18:06:07'),(153,'Household',NULL,1,0,0,0,0,0,NULL,NULL,'Yadav-Samuels family','Yadav-Samuels family',NULL,NULL,NULL,NULL,NULL,'Both','-1149395453',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Yadav-Samuels family',5,NULL,'Dear Yadav-Samuels family',2,NULL,'Yadav-Samuels family',NULL,NULL,NULL,0,NULL,'Yadav-Samuels family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:06:05'),(154,'Individual',NULL,1,1,0,0,0,0,NULL,NULL,'Smith, Rosario','Mr. Rosario Smith Jr.',NULL,NULL,NULL,NULL,NULL,'Both','701125213',NULL,'Sample Data','Rosario','','Smith',3,1,NULL,NULL,1,NULL,'Dear Rosario',1,NULL,'Dear Rosario',1,NULL,'Mr. Rosario Smith Jr.',NULL,2,'1977-12-12',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:05:56'),(155,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Cruz, Russell','Russell Cruz III',NULL,NULL,NULL,NULL,NULL,'Both','-538792673',NULL,'Sample Data','Russell','','Cruz',NULL,4,NULL,NULL,1,NULL,'Dear Russell',1,NULL,'Dear Russell',1,NULL,'Russell Cruz III',NULL,2,'2008-01-06',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:05:59'),(156,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Parker, Sharyn','Sharyn Parker',NULL,NULL,NULL,NULL,NULL,'Both','-1242681063',NULL,'Sample Data','Sharyn','E','Parker',NULL,NULL,NULL,NULL,1,NULL,'Dear Sharyn',1,NULL,'Dear Sharyn',1,NULL,'Sharyn Parker',NULL,1,'1934-08-29',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:05:40'),(157,'Organization',NULL,1,0,0,0,0,0,NULL,NULL,'Second Culture Systems','Second Culture Systems',NULL,NULL,NULL,NULL,NULL,'Both','-99558255',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Second Culture Systems',NULL,NULL,NULL,0,NULL,NULL,152,'Second Culture Systems',NULL,NULL,NULL,0,NULL,'2014-01-23 18:06:07'),(158,'Organization',NULL,1,0,0,0,0,0,NULL,NULL,'Friends Empowerment Services','Friends Empowerment Services',NULL,NULL,NULL,'5',NULL,'Both','771754565',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Friends Empowerment Services',NULL,NULL,NULL,0,NULL,NULL,36,'Friends Empowerment Services',NULL,NULL,NULL,0,NULL,'2014-01-23 18:06:09'),(159,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Nielsen, Maria','Maria Nielsen II',NULL,NULL,NULL,'3',NULL,'Both','60570432',NULL,'Sample Data','Maria','I','Nielsen',NULL,3,NULL,NULL,1,NULL,'Dear Maria',1,NULL,'Dear Maria',1,NULL,'Maria Nielsen II',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:05:35'),(160,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Patel, Toby','Dr. Toby Patel III',NULL,NULL,NULL,NULL,NULL,'Both','-1676204275',NULL,'Sample Data','Toby','D','Patel',4,4,NULL,NULL,1,NULL,'Dear Toby',1,NULL,'Dear Toby',1,NULL,'Dr. Toby Patel III',NULL,2,'1974-11-01',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:05:39'),(161,'Household',NULL,1,0,0,0,0,0,NULL,NULL,'Ivanov family','Ivanov family',NULL,NULL,NULL,'1',NULL,'Both','-1844188184',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Ivanov family',5,NULL,'Dear Ivanov family',2,NULL,'Ivanov family',NULL,NULL,NULL,0,NULL,'Ivanov family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:06:06'),(162,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'smith.claudio87@lol.net','smith.claudio87@lol.net',NULL,NULL,NULL,NULL,NULL,'Both','-482689992',NULL,'Sample Data',NULL,NULL,NULL,3,1,NULL,NULL,1,NULL,'Dear smith.claudio87@lol.net',1,NULL,'Dear smith.claudio87@lol.net',1,NULL,'smith.claudio87@lol.net',NULL,NULL,NULL,0,NULL,NULL,NULL,'States Literacy Association',NULL,NULL,179,0,NULL,'2014-01-23 18:06:12'),(163,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Ivanov family','Ivanov family',NULL,NULL,NULL,'5',NULL,'Both','-1844188184',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Ivanov family',5,NULL,'Dear Ivanov family',2,NULL,'Ivanov family',NULL,NULL,NULL,0,NULL,'Ivanov family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:06:07'),(164,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Cruz, Omar','Mr. Omar Cruz',NULL,NULL,NULL,'1',NULL,'Both','348168112',NULL,'Sample Data','Omar','','Cruz',3,NULL,NULL,NULL,1,NULL,'Dear Omar',1,NULL,'Dear Omar',1,NULL,'Mr. Omar Cruz',NULL,2,'1945-02-12',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:05:36'),(165,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Ivanov, Magan','Magan Ivanov',NULL,NULL,NULL,NULL,NULL,'Both','-21576752',NULL,'Sample Data','Magan','','Ivanov',NULL,NULL,NULL,NULL,1,NULL,'Dear Magan',1,NULL,'Dear Magan',1,NULL,'Magan Ivanov',NULL,1,'1964-03-27',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:05:59'),(166,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Wattson, Alida','Dr. Alida Wattson',NULL,NULL,NULL,'5',NULL,'Both','362422914',NULL,'Sample Data','Alida','','Wattson',4,NULL,NULL,NULL,1,NULL,'Dear Alida',1,NULL,'Dear Alida',1,NULL,'Dr. Alida Wattson',NULL,1,'1991-10-21',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:05:40'),(167,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Parker, Jay','Mr. Jay Parker',NULL,NULL,NULL,'2',NULL,'Both','1839033827',NULL,'Sample Data','Jay','K','Parker',3,NULL,NULL,NULL,1,NULL,'Dear Jay',1,NULL,'Dear Jay',1,NULL,'Mr. Jay Parker',NULL,2,'1938-07-07',1,'2013-05-21',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:05:44'),(168,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Deforest, Brzęczysław','Mr. Brzęczysław Deforest',NULL,NULL,NULL,'2',NULL,'Both','5133953',NULL,'Sample Data','Brzęczysław','U','Deforest',3,NULL,NULL,NULL,1,NULL,'Dear Brzęczysław',1,NULL,'Dear Brzęczysław',1,NULL,'Mr. Brzęczysław Deforest',NULL,2,'1929-05-07',1,'2013-07-19',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:05:46'),(169,'Individual',NULL,1,0,0,0,1,0,NULL,NULL,'rebekahadams86@infomail.co.pl','rebekahadams86@infomail.co.pl',NULL,NULL,NULL,NULL,NULL,'Both','-7575762',NULL,'Sample Data',NULL,NULL,NULL,4,NULL,NULL,NULL,1,NULL,'Dear rebekahadams86@infomail.co.pl',1,NULL,'Dear rebekahadams86@infomail.co.pl',1,NULL,'rebekahadams86@infomail.co.pl',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:05:34'),(170,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'kandaceivanov96@spamalot.net','kandaceivanov96@spamalot.net',NULL,NULL,NULL,'3',NULL,'Both','1062615806',NULL,'Sample Data',NULL,NULL,NULL,4,NULL,NULL,NULL,1,NULL,'Dear kandaceivanov96@spamalot.net',1,NULL,'Dear kandaceivanov96@spamalot.net',1,NULL,'kandaceivanov96@spamalot.net',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:06:02'),(171,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'rosarioolsen65@fishmail.co.uk','rosarioolsen65@fishmail.co.uk',NULL,NULL,NULL,NULL,NULL,'Both','-1820400229',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear rosarioolsen65@fishmail.co.uk',1,NULL,'Dear rosarioolsen65@fishmail.co.uk',1,NULL,'rosarioolsen65@fishmail.co.uk',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:05:47'),(172,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Łąchowski, Scarlet','Scarlet Łąchowski',NULL,NULL,NULL,'1',NULL,'Both','-2125481307',NULL,'Sample Data','Scarlet','P','Łąchowski',NULL,NULL,NULL,NULL,1,NULL,'Dear Scarlet',1,NULL,'Dear Scarlet',1,NULL,'Scarlet Łąchowski',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:05:32'),(173,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'miguelparker42@fishmail.co.pl','miguelparker42@fishmail.co.pl',NULL,NULL,NULL,'2',NULL,'Both','744352014',NULL,'Sample Data',NULL,NULL,NULL,3,4,NULL,NULL,1,NULL,'Dear miguelparker42@fishmail.co.pl',1,NULL,'Dear miguelparker42@fishmail.co.pl',1,NULL,'miguelparker42@fishmail.co.pl',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:05:42'),(174,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'McReynolds, Tanya','Tanya McReynolds',NULL,NULL,NULL,'4',NULL,'Both','-1461491328',NULL,'Sample Data','Tanya','E','McReynolds',NULL,NULL,NULL,NULL,1,NULL,'Dear Tanya',1,NULL,'Dear Tanya',1,NULL,'Tanya McReynolds',NULL,1,'1967-01-24',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:05:47'),(175,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Virginia Software Trust','Virginia Software Trust',NULL,NULL,NULL,NULL,NULL,'Both','-1426719409',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Virginia Software Trust',NULL,NULL,NULL,0,NULL,NULL,34,'Virginia Software Trust',NULL,NULL,NULL,0,NULL,'2014-01-23 18:06:11'),(176,'Individual',NULL,1,1,0,0,0,0,NULL,NULL,'Ivanov, Carlos','Mr. Carlos Ivanov',NULL,NULL,NULL,NULL,NULL,'Both','-785526829',NULL,'Sample Data','Carlos','H','Ivanov',3,NULL,NULL,NULL,1,NULL,'Dear Carlos',1,NULL,'Dear Carlos',1,NULL,'Mr. Carlos Ivanov',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:06:02'),(177,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Ivanov, Lashawnda','Lashawnda Ivanov',NULL,NULL,NULL,NULL,NULL,'Both','-766282916',NULL,'Sample Data','Lashawnda','','Ivanov',NULL,NULL,NULL,NULL,1,NULL,'Dear Lashawnda',1,NULL,'Dear Lashawnda',1,NULL,'Lashawnda Ivanov',NULL,1,'1992-02-11',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:05:34'),(178,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Smith family','Smith family',NULL,NULL,NULL,'1',NULL,'Both','-212194651',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,NULL,'2014-01-23 18:06:06'),(179,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'States Literacy Association','States Literacy Association',NULL,NULL,NULL,NULL,NULL,'Both','1467128448',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'States Literacy Association',NULL,NULL,NULL,0,NULL,NULL,162,'States Literacy Association',NULL,NULL,NULL,0,NULL,'2014-01-23 18:06:12'),(180,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Deforest, Bryon','Bryon Deforest',NULL,NULL,NULL,NULL,NULL,'Both','-457895117',NULL,'Sample Data','Bryon','','Deforest',NULL,NULL,NULL,NULL,1,NULL,'Dear Bryon',1,NULL,'Dear Bryon',1,NULL,'Bryon Deforest',NULL,2,'1981-05-09',0,NULL,NULL,NULL,'Tennessee Software Network',NULL,NULL,186,0,NULL,'2014-01-23 18:06:09'),(181,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Łąchowski-Robertson, Brent','Brent Łąchowski-Robertson',NULL,NULL,NULL,'5',NULL,'Both','-1589007301',NULL,'Sample Data','Brent','S','Łąchowski-Robertson',NULL,NULL,NULL,NULL,1,NULL,'Dear Brent',1,NULL,'Dear Brent',1,NULL,'Brent Łąchowski-Robertson',NULL,2,'1979-08-10',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:06:03'),(182,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Ivanov, Shad','Shad Ivanov III',NULL,NULL,NULL,'3',NULL,'Both','-191521030',NULL,'Sample Data','Shad','','Ivanov',NULL,4,NULL,NULL,1,NULL,'Dear Shad',1,NULL,'Dear Shad',1,NULL,'Shad Ivanov III',NULL,2,'1969-10-09',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:06:02'),(183,'Household',NULL,1,0,0,0,0,0,NULL,NULL,'Barkley family','Barkley family',NULL,NULL,NULL,'2',NULL,'Both','-1406905187',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,NULL,'2014-01-23 18:06:06'),(184,'Individual',NULL,1,0,0,0,1,0,NULL,NULL,'McReynolds, Maxwell','Maxwell McReynolds III',NULL,NULL,NULL,NULL,NULL,'Both','961058467',NULL,'Sample Data','Maxwell','M','McReynolds',NULL,4,NULL,NULL,1,NULL,'Dear Maxwell',1,NULL,'Dear Maxwell',1,NULL,'Maxwell McReynolds III',NULL,NULL,'1974-02-08',0,NULL,NULL,NULL,'Michigan Culture Center',NULL,NULL,8,0,NULL,'2014-01-23 18:06:08'),(185,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Müller, Lawerence','Lawerence Müller III',NULL,NULL,NULL,NULL,NULL,'Both','-1031423207',NULL,'Sample Data','Lawerence','U','Müller',NULL,4,NULL,NULL,1,NULL,'Dear Lawerence',1,NULL,'Dear Lawerence',1,NULL,'Lawerence Müller III',NULL,2,'1972-05-11',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:05:48'),(186,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Tennessee Software Network','Tennessee Software Network',NULL,NULL,NULL,NULL,NULL,'Both','-1153307959',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Tennessee Software Network',NULL,NULL,NULL,0,NULL,NULL,180,'Tennessee Software Network',NULL,NULL,NULL,0,NULL,'2014-01-23 18:06:09'),(187,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Fort Wayne Music Alliance','Fort Wayne Music Alliance',NULL,NULL,NULL,'4',NULL,'Both','-388273436',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Fort Wayne Music Alliance',NULL,NULL,NULL,0,NULL,NULL,NULL,'Fort Wayne Music Alliance',NULL,NULL,NULL,0,NULL,'2014-01-23 18:06:08'),(188,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Dimitrov, Lashawnda','Lashawnda Dimitrov',NULL,NULL,NULL,'5',NULL,'Both','1960360685',NULL,'Sample Data','Lashawnda','F','Dimitrov',NULL,NULL,NULL,NULL,1,NULL,'Dear Lashawnda',1,NULL,'Dear Lashawnda',1,NULL,'Lashawnda Dimitrov',NULL,1,'1984-11-25',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:05:39'),(189,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jacobs, Teddy','Mr. Teddy Jacobs',NULL,NULL,NULL,'5',NULL,'Both','730676702',NULL,'Sample Data','Teddy','S','Jacobs',3,NULL,NULL,NULL,1,NULL,'Dear Teddy',1,NULL,'Dear Teddy',1,NULL,'Mr. Teddy Jacobs',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:05:39'),(190,'Individual',NULL,0,1,0,0,1,0,NULL,NULL,'Dimitrov, Valene','Valene Dimitrov',NULL,NULL,NULL,NULL,NULL,'Both','1409634663',NULL,'Sample Data','Valene','','Dimitrov',NULL,NULL,NULL,NULL,1,NULL,'Dear Valene',1,NULL,'Dear Valene',1,NULL,'Valene Dimitrov',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:05:40'),(191,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'smithk91@mymail.co.pl','smithk91@mymail.co.pl',NULL,NULL,NULL,'3',NULL,'Both','1037796504',NULL,'Sample Data',NULL,NULL,NULL,1,NULL,NULL,NULL,1,NULL,'Dear smithk91@mymail.co.pl',1,NULL,'Dear smithk91@mymail.co.pl',1,NULL,'smithk91@mymail.co.pl',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:05:56'),(192,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'jacobrobertson92@lol.co.in','jacobrobertson92@lol.co.in',NULL,NULL,NULL,NULL,NULL,'Both','-1565915872',NULL,'Sample Data',NULL,NULL,NULL,NULL,2,NULL,NULL,1,NULL,'Dear jacobrobertson92@lol.co.in',1,NULL,'Dear jacobrobertson92@lol.co.in',1,NULL,'jacobrobertson92@lol.co.in',NULL,NULL,NULL,0,NULL,NULL,NULL,'Urban Health Services',NULL,NULL,142,0,NULL,'2014-01-23 18:06:08'),(193,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Olsen, Daren','Daren Olsen Jr.',NULL,NULL,NULL,'3',NULL,'Both','1772811610',NULL,'Sample Data','Daren','B','Olsen',NULL,1,NULL,NULL,1,NULL,'Dear Daren',1,NULL,'Dear Daren',1,NULL,'Daren Olsen Jr.',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:05:49'),(194,'Individual',NULL,1,1,0,0,0,0,NULL,NULL,'Cruz, Arlyne','Arlyne Cruz',NULL,NULL,NULL,'2',NULL,'Both','630170547',NULL,'Sample Data','Arlyne','D','Cruz',NULL,NULL,NULL,NULL,1,NULL,'Dear Arlyne',1,NULL,'Dear Arlyne',1,NULL,'Arlyne Cruz',NULL,1,'1955-08-22',1,'2013-10-12',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:05:59'),(195,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Samuels, Delana','Delana Samuels',NULL,NULL,NULL,NULL,NULL,'Both','-755724758',NULL,'Sample Data','Delana','R','Samuels',NULL,NULL,NULL,NULL,1,NULL,'Dear Delana',1,NULL,'Dear Delana',1,NULL,'Delana Samuels',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:05:55'),(196,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Blackwell, Lou','Lou Blackwell',NULL,NULL,NULL,'1',NULL,'Both','-1769798448',NULL,'Sample Data','Lou','Q','Blackwell',NULL,NULL,NULL,NULL,1,NULL,'Dear Lou',1,NULL,'Dear Lou',1,NULL,'Lou Blackwell',NULL,2,'1958-02-12',1,'2013-05-23',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:05:42'),(197,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Cruz, Claudio','Dr. Claudio Cruz',NULL,NULL,NULL,'2',NULL,'Both','-530235968',NULL,'Sample Data','Claudio','','Cruz',4,NULL,NULL,NULL,1,NULL,'Dear Claudio',1,NULL,'Dear Claudio',1,NULL,'Dr. Claudio Cruz',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:05:58'),(198,'Household',NULL,0,0,0,0,1,0,NULL,NULL,'Barkley family','Barkley family',NULL,NULL,NULL,NULL,NULL,'Both','-1406905187',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,NULL,'2014-01-23 18:06:06'),(199,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Deforest, Russell','Russell Deforest Sr.',NULL,NULL,NULL,NULL,NULL,'Both','-1699649427',NULL,'Sample Data','Russell','A','Deforest',NULL,2,NULL,NULL,1,NULL,'Dear Russell',1,NULL,'Dear Russell',1,NULL,'Russell Deforest Sr.',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:06:00'),(200,'Individual',NULL,1,1,0,0,0,0,NULL,NULL,'Lee, Allen','Dr. Allen Lee II',NULL,NULL,NULL,NULL,NULL,'Both','23882505',NULL,'Sample Data','Allen','','Lee',4,3,NULL,NULL,1,NULL,'Dear Allen',1,NULL,'Dear Allen',1,NULL,'Dr. Allen Lee II',NULL,2,'1949-10-27',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:05:49'),(201,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Wattson, Jerome','Jerome Wattson',NULL,NULL,NULL,NULL,NULL,'Both','-1403592523',NULL,'Sample Data','Jerome','','Wattson',NULL,NULL,NULL,NULL,1,NULL,'Dear Jerome',1,NULL,'Dear Jerome',1,NULL,'Jerome Wattson',NULL,2,'1980-11-17',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-23 18:05: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,'2014-01-28 12:43:14'),(2,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'carylonwagner33@infomail.net','carylonwagner33@infomail.net',NULL,NULL,NULL,NULL,NULL,'Both','272431153',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear carylonwagner33@infomail.net',1,NULL,'Dear carylonwagner33@infomail.net',1,NULL,'carylonwagner33@infomail.net',NULL,NULL,NULL,0,NULL,NULL,NULL,'Urban Food Fellowship',NULL,NULL,23,0,NULL,'2014-01-28 12:44:30'),(3,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'González, Kacey','Mrs. Kacey González',NULL,NULL,NULL,NULL,NULL,'Both','-1042592407',NULL,'Sample Data','Kacey','','González',1,NULL,NULL,NULL,1,NULL,'Dear Kacey',1,NULL,'Dear Kacey',1,NULL,'Mrs. Kacey González',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:43:56'),(4,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Robertson-Jameson, Winford','Winford Robertson-Jameson III',NULL,NULL,NULL,NULL,NULL,'Both','-74747693',NULL,'Sample Data','Winford','','Robertson-Jameson',NULL,4,NULL,NULL,1,NULL,'Dear Winford',1,NULL,'Dear Winford',1,NULL,'Winford Robertson-Jameson III',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:44:14'),(5,'Organization',NULL,0,0,0,0,1,0,NULL,NULL,'Cadell Sustainability Academy','Cadell Sustainability Academy',NULL,NULL,NULL,NULL,NULL,'Both','1127636430',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Cadell Sustainability Academy',NULL,NULL,NULL,0,NULL,NULL,62,'Cadell Sustainability Academy',NULL,NULL,NULL,0,NULL,'2014-01-28 12:44:27'),(6,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'bc.bachman37@sample.org','bc.bachman37@sample.org',NULL,NULL,NULL,NULL,NULL,'Both','-187381703',NULL,'Sample Data',NULL,NULL,NULL,1,NULL,NULL,NULL,1,NULL,'Dear bc.bachman37@sample.org',1,NULL,'Dear bc.bachman37@sample.org',1,NULL,'bc.bachman37@sample.org',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:44:09'),(7,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Müller, Alexia','Ms. Alexia Müller',NULL,NULL,NULL,NULL,NULL,'Both','-585370251',NULL,'Sample Data','Alexia','T','Müller',2,NULL,NULL,NULL,1,NULL,'Dear Alexia',1,NULL,'Dear Alexia',1,NULL,'Ms. Alexia Müller',NULL,1,'1975-11-22',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:43:59'),(8,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Deforest, Arlyne','Ms. Arlyne Deforest',NULL,NULL,NULL,'2',NULL,'Both','-1458133858',NULL,'Sample Data','Arlyne','','Deforest',2,NULL,NULL,NULL,1,NULL,'Dear Arlyne',1,NULL,'Dear Arlyne',1,NULL,'Ms. Arlyne Deforest',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:43:53'),(9,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Minnesota Culture School','Minnesota Culture School',NULL,NULL,NULL,NULL,NULL,'Both','-210627806',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Minnesota Culture School',NULL,NULL,NULL,0,NULL,NULL,27,'Minnesota Culture School',NULL,NULL,NULL,0,NULL,'2014-01-28 12:44:24'),(10,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Global Wellness Network','Global Wellness Network',NULL,NULL,NULL,NULL,NULL,'Both','-1945982789',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Global Wellness Network',NULL,NULL,NULL,0,NULL,NULL,182,'Global Wellness Network',NULL,NULL,NULL,0,NULL,'2014-01-28 12:44:27'),(11,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Robertson family','Robertson family',NULL,NULL,NULL,'5',NULL,'Both','-850573316',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Robertson family',5,NULL,'Dear Robertson family',2,NULL,'Robertson family',NULL,NULL,NULL,0,NULL,'Robertson family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:44:21'),(12,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Samson, Kacey','Kacey Samson',NULL,NULL,NULL,NULL,NULL,'Both','277653729',NULL,'Sample Data','Kacey','E','Samson',NULL,NULL,NULL,NULL,1,NULL,'Dear Kacey',1,NULL,'Dear Kacey',1,NULL,'Kacey Samson',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:44:02'),(13,'Individual',NULL,0,1,0,0,1,0,NULL,NULL,'Patel, Rosario','Rosario Patel II',NULL,NULL,NULL,'3',NULL,'Both','993368350',NULL,'Sample Data','Rosario','','Patel',NULL,3,NULL,NULL,1,NULL,'Dear Rosario',1,NULL,'Dear Rosario',1,NULL,'Rosario Patel II',NULL,2,'1951-07-20',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:44:15'),(14,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Wagner, Magan','Ms. Magan Wagner',NULL,NULL,NULL,'2',NULL,'Both','822485998',NULL,'Sample Data','Magan','','Wagner',2,NULL,NULL,NULL,1,NULL,'Dear Magan',1,NULL,'Dear Magan',1,NULL,'Ms. Magan Wagner',NULL,NULL,'1985-10-22',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:44:10'),(15,'Individual',NULL,1,0,0,0,1,0,NULL,NULL,'Yadav, Eleonor','Mrs. Eleonor Yadav',NULL,NULL,NULL,'3',NULL,'Both','316456373',NULL,'Sample Data','Eleonor','','Yadav',1,NULL,NULL,NULL,1,NULL,'Dear Eleonor',1,NULL,'Dear Eleonor',1,NULL,'Mrs. Eleonor Yadav',NULL,NULL,'1949-01-20',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:44:06'),(16,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Deforest, Teddy','Dr. Teddy Deforest II',NULL,NULL,NULL,'1',NULL,'Both','-1308462568',NULL,'Sample Data','Teddy','A','Deforest',4,3,NULL,NULL,1,NULL,'Dear Teddy',1,NULL,'Dear Teddy',1,NULL,'Dr. Teddy Deforest II',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:44:00'),(17,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Robertson, Winford','Dr. Winford Robertson Sr.',NULL,NULL,NULL,'2',NULL,'Both','-630451533',NULL,'Sample Data','Winford','H','Robertson',4,2,NULL,NULL,1,NULL,'Dear Winford',1,NULL,'Dear Winford',1,NULL,'Dr. Winford Robertson Sr.',NULL,2,'1988-05-08',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:44:12'),(18,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Terry, Ivey','Ms. Ivey Terry',NULL,NULL,NULL,'2',NULL,'Both','-345864354',NULL,'Sample Data','Ivey','','Terry',2,NULL,NULL,NULL,1,NULL,'Dear Ivey',1,NULL,'Dear Ivey',1,NULL,'Ms. Ivey Terry',NULL,1,'1973-12-21',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:44:18'),(19,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Olsen, Teddy','Teddy Olsen',NULL,NULL,NULL,NULL,NULL,'Both','72064715',NULL,'Sample Data','Teddy','I','Olsen',NULL,NULL,NULL,NULL,1,NULL,'Dear Teddy',1,NULL,'Dear Teddy',1,NULL,'Teddy Olsen',NULL,2,'1963-01-10',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:44:15'),(20,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jones, Winford','Winford Jones Sr.',NULL,NULL,NULL,'1',NULL,'Both','-301979232',NULL,'Sample Data','Winford','A','Jones',NULL,2,NULL,NULL,1,NULL,'Dear Winford',1,NULL,'Dear Winford',1,NULL,'Winford Jones Sr.',NULL,2,'1990-10-31',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:44:11'),(21,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Patel-Bachman, Lou','Lou Patel-Bachman Jr.',NULL,NULL,NULL,'1',NULL,'Both','-187448052',NULL,'Sample Data','Lou','','Patel-Bachman',NULL,1,NULL,NULL,1,NULL,'Dear Lou',1,NULL,'Dear Lou',1,NULL,'Lou Patel-Bachman Jr.',NULL,2,'1985-12-21',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:44:09'),(22,'Organization',NULL,1,0,0,0,0,0,NULL,NULL,'United Software Center','United Software Center',NULL,NULL,NULL,NULL,NULL,'Both','951339274',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'United Software Center',NULL,NULL,NULL,0,NULL,NULL,26,'United Software Center',NULL,NULL,NULL,0,NULL,'2014-01-28 12:44:29'),(23,'Organization',NULL,0,0,0,0,1,0,NULL,NULL,'Urban Food Fellowship','Urban Food Fellowship',NULL,NULL,NULL,NULL,NULL,'Both','-715862012',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Urban Food Fellowship',NULL,NULL,NULL,0,NULL,NULL,2,'Urban Food Fellowship',NULL,NULL,NULL,0,NULL,'2014-01-28 12:44:30'),(24,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Müller, Craig','Craig Müller Sr.',NULL,NULL,NULL,'4',NULL,'Both','1619859759',NULL,'Sample Data','Craig','D','Müller',NULL,2,NULL,NULL,1,NULL,'Dear Craig',1,NULL,'Dear Craig',1,NULL,'Craig Müller Sr.',NULL,2,'1956-04-29',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:43:55'),(25,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Samson, Angelika','Angelika Samson',NULL,NULL,NULL,'1',NULL,'Both','-1244331800',NULL,'Sample Data','Angelika','F','Samson',NULL,NULL,NULL,NULL,1,NULL,'Dear Angelika',1,NULL,'Dear Angelika',1,NULL,'Angelika Samson',NULL,NULL,'1986-12-08',0,NULL,NULL,NULL,'Arlee Wellness Alliance',NULL,NULL,35,0,NULL,'2014-01-28 12:44:26'),(26,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Cooper, Kenny','Dr. Kenny Cooper',NULL,NULL,NULL,NULL,NULL,'Both','613788882',NULL,'Sample Data','Kenny','','Cooper',4,NULL,NULL,NULL,1,NULL,'Dear Kenny',1,NULL,'Dear Kenny',1,NULL,'Dr. Kenny Cooper',NULL,2,NULL,0,NULL,NULL,NULL,'United Software Center',NULL,NULL,22,0,NULL,'2014-01-28 12:44:28'),(27,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Deforest, Valene','Mrs. Valene Deforest',NULL,NULL,NULL,'2',NULL,'Both','-2051464709',NULL,'Sample Data','Valene','L','Deforest',1,NULL,NULL,NULL,1,NULL,'Dear Valene',1,NULL,'Dear Valene',1,NULL,'Mrs. Valene Deforest',NULL,1,'1945-11-30',0,NULL,NULL,NULL,'Minnesota Culture School',NULL,NULL,9,0,NULL,'2014-01-28 12:44:24'),(28,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Jensen, Rodrigo','Mr. Rodrigo Jensen Sr.',NULL,NULL,NULL,NULL,NULL,'Both','-161615369',NULL,'Sample Data','Rodrigo','W','Jensen',3,2,NULL,NULL,1,NULL,'Dear Rodrigo',1,NULL,'Dear Rodrigo',1,NULL,'Mr. Rodrigo Jensen Sr.',NULL,2,'1942-09-29',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:44:17'),(29,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Smith, Clint','Clint Smith',NULL,NULL,NULL,NULL,NULL,'Both','-1564365666',NULL,'Sample Data','Clint','Z','Smith',NULL,NULL,NULL,NULL,1,NULL,'Dear Clint',1,NULL,'Dear Clint',1,NULL,'Clint Smith',NULL,NULL,'1936-08-18',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:43:51'),(30,'Individual',NULL,1,1,0,0,1,0,NULL,NULL,'Grant, Brent','Brent Grant II',NULL,NULL,NULL,NULL,NULL,'Both','356521495',NULL,'Sample Data','Brent','K','Grant',NULL,3,NULL,NULL,1,NULL,'Dear Brent',1,NULL,'Dear Brent',1,NULL,'Brent Grant II',NULL,2,'1968-02-13',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:43:49'),(31,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Cooper, Rolando','Rolando Cooper',NULL,NULL,NULL,'5',NULL,'Both','-1724079898',NULL,'Sample Data','Rolando','','Cooper',NULL,NULL,NULL,NULL,1,NULL,'Dear Rolando',1,NULL,'Dear Rolando',1,NULL,'Rolando Cooper',NULL,2,'2005-10-04',0,NULL,NULL,NULL,'Woodbridge Advocacy Partnership',NULL,NULL,113,0,NULL,'2014-01-28 12:44:28'),(32,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Terry, Brigette','Brigette Terry',NULL,NULL,NULL,NULL,NULL,'Both','-1505515752',NULL,'Sample Data','Brigette','Y','Terry',NULL,NULL,NULL,NULL,1,NULL,'Dear Brigette',1,NULL,'Dear Brigette',1,NULL,'Brigette Terry',NULL,NULL,'1992-02-16',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:43:51'),(33,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'olsen.maria@infomail.info','olsen.maria@infomail.info',NULL,NULL,NULL,NULL,NULL,'Both','-2019208673',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear olsen.maria@infomail.info',1,NULL,'Dear olsen.maria@infomail.info',1,NULL,'olsen.maria@infomail.info',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:44:15'),(34,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'bs.samuels@mymail.co.in','bs.samuels@mymail.co.in',NULL,NULL,NULL,'3',NULL,'Both','1255796858',NULL,'Sample Data',NULL,NULL,NULL,NULL,4,NULL,NULL,1,NULL,'Dear bs.samuels@mymail.co.in',1,NULL,'Dear bs.samuels@mymail.co.in',1,NULL,'bs.samuels@mymail.co.in',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:43:48'),(35,'Organization',NULL,0,1,0,0,0,0,NULL,NULL,'Arlee Wellness Alliance','Arlee Wellness Alliance',NULL,NULL,NULL,'1',NULL,'Both','-1246196391',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Arlee Wellness Alliance',NULL,NULL,NULL,0,NULL,NULL,25,'Arlee Wellness Alliance',NULL,NULL,NULL,0,NULL,'2014-01-28 12:44:26'),(36,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'McReynolds family','McReynolds family',NULL,NULL,NULL,NULL,NULL,'Both','-1262286324',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,NULL,'2014-01-28 12:44:22'),(37,'Individual',NULL,1,1,0,0,0,0,NULL,NULL,'Łąchowski, Sanford','Dr. Sanford Łąchowski',NULL,NULL,NULL,NULL,NULL,'Both','-1948359140',NULL,'Sample Data','Sanford','','Łąchowski',4,NULL,NULL,NULL,1,NULL,'Dear Sanford',1,NULL,'Dear Sanford',1,NULL,'Dr. Sanford Łąchowski',NULL,2,'1952-07-16',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:44:05'),(38,'Individual',NULL,1,1,0,0,0,0,NULL,NULL,'Patel, Alexia','Ms. Alexia Patel',NULL,NULL,NULL,'2',NULL,'Both','1465483160',NULL,'Sample Data','Alexia','P','Patel',2,NULL,NULL,NULL,1,NULL,'Dear Alexia',1,NULL,'Dear Alexia',1,NULL,'Ms. Alexia Patel',NULL,1,NULL,1,'2013-07-24',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:44:02'),(39,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'princessjensen@notmail.com','princessjensen@notmail.com',NULL,NULL,NULL,'4',NULL,'Both','856629681',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear princessjensen@notmail.com',1,NULL,'Dear princessjensen@notmail.com',1,NULL,'princessjensen@notmail.com',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:44:17'),(40,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Wagner family','Wagner family',NULL,NULL,NULL,NULL,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,NULL,'2014-01-28 12:44:20'),(41,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Patel, Kiara','Dr. Kiara Patel',NULL,NULL,NULL,NULL,NULL,'Both','-1326191164',NULL,'Sample Data','Kiara','F','Patel',4,NULL,NULL,NULL,1,NULL,'Dear Kiara',1,NULL,'Dear Kiara',1,NULL,'Dr. Kiara Patel',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:43:50'),(42,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Barkley, Alexia','Mrs. Alexia Barkley',NULL,NULL,NULL,'3',NULL,'Both','925280801',NULL,'Sample Data','Alexia','','Barkley',1,NULL,NULL,NULL,1,NULL,'Dear Alexia',1,NULL,'Dear Alexia',1,NULL,'Mrs. Alexia Barkley',NULL,1,'1962-08-17',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:43:53'),(43,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Bachman, Miguel','Mr. Miguel Bachman III',NULL,NULL,NULL,'3',NULL,'Both','-434474770',NULL,'Sample Data','Miguel','P','Bachman',3,4,NULL,NULL,1,NULL,'Dear Miguel',1,NULL,'Dear Miguel',1,NULL,'Mr. Miguel Bachman III',NULL,2,NULL,0,NULL,NULL,NULL,'Rudyard Music Fund',NULL,NULL,177,0,NULL,'2014-01-28 12:44:26'),(44,'Household',NULL,0,0,0,0,1,0,NULL,NULL,'Smith family','Smith family',NULL,NULL,NULL,'1',NULL,'Both','-212194651',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,NULL,'2014-01-28 12:44:23'),(45,'Organization',NULL,0,0,0,0,1,0,NULL,NULL,'Maple Software Trust','Maple Software Trust',NULL,NULL,NULL,'5',NULL,'Both','1293427926',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Maple Software Trust',NULL,NULL,NULL,0,NULL,NULL,109,'Maple Software Trust',NULL,NULL,NULL,0,NULL,'2014-01-28 12:44:23'),(46,'Organization',NULL,1,1,0,0,0,0,NULL,NULL,'Global Literacy Fellowship','Global Literacy Fellowship',NULL,NULL,NULL,NULL,NULL,'Both','1459880108',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Global Literacy Fellowship',NULL,NULL,NULL,0,NULL,NULL,129,'Global Literacy Fellowship',NULL,NULL,NULL,0,NULL,'2014-01-28 12:44:25'),(47,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Samuels, Rebekah','Ms. Rebekah Samuels',NULL,NULL,NULL,NULL,NULL,'Both','2023061910',NULL,'Sample Data','Rebekah','','Samuels',2,NULL,NULL,NULL,1,NULL,'Dear Rebekah',1,NULL,'Dear Rebekah',1,NULL,'Ms. Rebekah Samuels',NULL,1,'1946-03-02',0,NULL,NULL,NULL,'Friends Family Center',NULL,NULL,144,0,NULL,'2014-01-28 12:44:27'),(48,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Wagner, Russell','Dr. Russell Wagner',NULL,NULL,NULL,NULL,NULL,'Both','-990156756',NULL,'Sample Data','Russell','X','Wagner',4,NULL,NULL,NULL,1,NULL,'Dear Russell',1,NULL,'Dear Russell',1,NULL,'Dr. Russell Wagner',NULL,2,'1968-02-08',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:44:10'),(49,'Organization',NULL,0,0,0,0,1,0,NULL,NULL,'Creative Family Partnership','Creative Family Partnership',NULL,NULL,NULL,'4',NULL,'Both','1234043777',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Creative Family Partnership',NULL,NULL,NULL,0,NULL,NULL,71,'Creative Family Partnership',NULL,NULL,NULL,0,NULL,'2014-01-28 12:44:29'),(50,'Household',NULL,1,0,0,0,0,0,NULL,NULL,'Wagner family','Wagner family',NULL,NULL,NULL,NULL,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,NULL,'2014-01-28 12:44:21'),(51,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Robertson, Jay','Mr. Jay Robertson',NULL,NULL,NULL,'1',NULL,'Both','1705657355',NULL,'Sample Data','Jay','','Robertson',3,NULL,NULL,NULL,1,NULL,'Dear Jay',1,NULL,'Dear Jay',1,NULL,'Mr. Jay Robertson',NULL,NULL,'1974-06-22',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:44:13'),(52,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Wattson, Allan','Allan Wattson',NULL,NULL,NULL,'2',NULL,'Both','-23524931',NULL,'Sample Data','Allan','Q','Wattson',NULL,NULL,NULL,NULL,1,NULL,'Dear Allan',1,NULL,'Dear Allan',1,NULL,'Allan Wattson',NULL,2,'1943-01-09',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:43:54'),(53,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'González, Brittney','Brittney González',NULL,NULL,NULL,'5',NULL,'Both','-662471735',NULL,'Sample Data','Brittney','','González',NULL,NULL,NULL,NULL,1,NULL,'Dear Brittney',1,NULL,'Dear Brittney',1,NULL,'Brittney González',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:44:14'),(54,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Yadav, Truman','Mr. Truman Yadav II',NULL,NULL,NULL,'5',NULL,'Both','-798571912',NULL,'Sample Data','Truman','L','Yadav',3,3,NULL,NULL,1,NULL,'Dear Truman',1,NULL,'Dear Truman',1,NULL,'Mr. Truman Yadav II',NULL,2,'1950-05-30',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:43:49'),(55,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Łąchowski, Laree','Laree Łąchowski',NULL,NULL,NULL,NULL,NULL,'Both','938436888',NULL,'Sample Data','Laree','','Łąchowski',NULL,NULL,NULL,NULL,1,NULL,'Dear Laree',1,NULL,'Dear Laree',1,NULL,'Laree Łąchowski',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:43:53'),(56,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Zope, Carylon','Mrs. Carylon Zope',NULL,NULL,NULL,'4',NULL,'Both','418679899',NULL,'Sample Data','Carylon','','Zope',1,NULL,NULL,NULL,1,NULL,'Dear Carylon',1,NULL,'Dear Carylon',1,NULL,'Mrs. Carylon Zope',NULL,1,'1970-01-30',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:44:09'),(57,'Household',NULL,0,0,0,0,1,0,NULL,NULL,'Terry family','Terry family',NULL,NULL,NULL,'1',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,NULL,'2014-01-28 12:44:22'),(58,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Smith, Jackson','Jackson Smith III',NULL,NULL,NULL,NULL,NULL,'Both','1748200261',NULL,'Sample Data','Jackson','','Smith',NULL,4,NULL,NULL,1,NULL,'Dear Jackson',1,NULL,'Dear Jackson',1,NULL,'Jackson Smith III',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:44:19'),(59,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'jonesk@sample.co.in','jonesk@sample.co.in',NULL,NULL,NULL,NULL,NULL,'Both','568112934',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear jonesk@sample.co.in',1,NULL,'Dear jonesk@sample.co.in',1,NULL,'jonesk@sample.co.in',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:44:11'),(60,'Individual',NULL,0,1,0,0,1,0,NULL,NULL,'Cooper, Miguel','Miguel Cooper II',NULL,NULL,NULL,NULL,NULL,'Both','1717220592',NULL,'Sample Data','Miguel','Q','Cooper',NULL,3,NULL,NULL,1,NULL,'Dear Miguel',1,NULL,'Dear Miguel',1,NULL,'Miguel Cooper II',NULL,2,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:44:08'),(61,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jones, Carlos','Dr. Carlos Jones II',NULL,NULL,NULL,'5',NULL,'Both','-917853589',NULL,'Sample Data','Carlos','J','Jones',4,3,NULL,NULL,1,NULL,'Dear Carlos',1,NULL,'Dear Carlos',1,NULL,'Dr. Carlos Jones II',NULL,2,'1992-02-16',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:44:02'),(62,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Patel, Arlyne','Arlyne Patel',NULL,NULL,NULL,NULL,NULL,'Both','-1133567720',NULL,'Sample Data','Arlyne','','Patel',NULL,NULL,NULL,NULL,1,NULL,'Dear Arlyne',1,NULL,'Dear Arlyne',1,NULL,'Arlyne Patel',NULL,1,'1981-05-15',0,NULL,NULL,NULL,'Cadell Sustainability Academy',NULL,NULL,5,0,NULL,'2014-01-28 12:44:27'),(63,'Organization',NULL,1,0,0,0,0,0,NULL,NULL,'United Culture Initiative','United Culture Initiative',NULL,NULL,NULL,NULL,NULL,'Both','1902448514',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'United Culture Initiative',NULL,NULL,NULL,0,NULL,NULL,165,'United Culture Initiative',NULL,NULL,NULL,0,NULL,'2014-01-28 12:44:30'),(64,'Organization',NULL,0,1,0,0,0,0,NULL,NULL,'Martin Luther King Music School','Martin Luther King Music School',NULL,NULL,NULL,NULL,NULL,'Both','735291276',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Martin Luther King Music School',NULL,NULL,NULL,0,NULL,NULL,88,'Martin Luther King Music School',NULL,NULL,NULL,0,NULL,'2014-01-28 12:44:28'),(65,'Household',NULL,1,0,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,NULL,'2014-01-28 12:44:21'),(66,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Parker, Norris','Norris Parker',NULL,NULL,NULL,'1',NULL,'Both','-739345739',NULL,'Sample Data','Norris','D','Parker',NULL,NULL,NULL,NULL,1,NULL,'Dear Norris',1,NULL,'Dear Norris',1,NULL,'Norris Parker',NULL,NULL,'1951-04-05',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:43:51'),(67,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'González, Merrie','Merrie González',NULL,NULL,NULL,'5',NULL,'Both','1134733928',NULL,'Sample Data','Merrie','E','González',NULL,NULL,NULL,NULL,1,NULL,'Dear Merrie',1,NULL,'Dear Merrie',1,NULL,'Merrie González',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:44:07'),(68,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Terry, Kandace','Dr. Kandace Terry',NULL,NULL,NULL,NULL,NULL,'Both','686769478',NULL,'Sample Data','Kandace','','Terry',4,NULL,NULL,NULL,1,NULL,'Dear Kandace',1,NULL,'Dear Kandace',1,NULL,'Dr. Kandace Terry',NULL,1,'1989-10-09',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:44:18'),(69,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Wilson, Allan','Allan Wilson Sr.',NULL,NULL,NULL,NULL,NULL,'Both','1133423819',NULL,'Sample Data','Allan','','Wilson',NULL,2,NULL,NULL,1,NULL,'Dear Allan',1,NULL,'Dear Allan',1,NULL,'Allan Wilson Sr.',NULL,2,'1951-06-27',0,NULL,NULL,NULL,'Wewoka Advocacy Alliance',NULL,NULL,160,0,NULL,'2014-01-28 12:44:25'),(70,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Deforest, Jacob','Mr. Jacob Deforest',NULL,NULL,NULL,'4',NULL,'Both','-1905341938',NULL,'Sample Data','Jacob','','Deforest',3,NULL,NULL,NULL,1,NULL,'Dear Jacob',1,NULL,'Dear Jacob',1,NULL,'Mr. Jacob Deforest',NULL,2,'1982-11-02',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:44:17'),(71,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Robertson, Jina','Mrs. Jina Robertson',NULL,NULL,NULL,'5',NULL,'Both','1955600545',NULL,'Sample Data','Jina','Z','Robertson',1,NULL,NULL,NULL,1,NULL,'Dear Jina',1,NULL,'Dear Jina',1,NULL,'Mrs. Jina Robertson',NULL,1,'1990-06-12',0,NULL,NULL,NULL,'Creative Family Partnership',NULL,NULL,49,0,NULL,'2014-01-28 12:44:29'),(72,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Patel, Claudio','Claudio Patel Jr.',NULL,NULL,NULL,'3',NULL,'Both','-1577539806',NULL,'Sample Data','Claudio','','Patel',NULL,1,NULL,NULL,1,NULL,'Dear Claudio',1,NULL,'Dear Claudio',1,NULL,'Claudio Patel Jr.',NULL,2,'1997-09-29',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:44:16'),(73,'Individual',NULL,0,1,0,0,1,0,NULL,NULL,'Blackwell, Elizabeth','Dr. Elizabeth Blackwell',NULL,NULL,NULL,NULL,NULL,'Both','197038680',NULL,'Sample Data','Elizabeth','','Blackwell',4,NULL,NULL,NULL,1,NULL,'Dear Elizabeth',1,NULL,'Dear Elizabeth',1,NULL,'Dr. Elizabeth Blackwell',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:44:01'),(74,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'McReynolds, Maxwell','Mr. Maxwell McReynolds',NULL,NULL,NULL,'1',NULL,'Both','961058467',NULL,'Sample Data','Maxwell','V','McReynolds',3,NULL,NULL,NULL,1,NULL,'Dear Maxwell',1,NULL,'Dear Maxwell',1,NULL,'Mr. Maxwell McReynolds',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:44:16'),(75,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Samson, Jacob','Jacob Samson Sr.',NULL,NULL,NULL,'3',NULL,'Both','1567006775',NULL,'Sample Data','Jacob','D','Samson',NULL,2,NULL,NULL,1,NULL,'Dear Jacob',1,NULL,'Dear Jacob',1,NULL,'Jacob Samson Sr.',NULL,2,NULL,1,'2014-01-19',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:44:04'),(76,'Individual',NULL,1,0,0,0,1,0,NULL,NULL,'Jensen, Scarlet','Scarlet Jensen',NULL,NULL,NULL,NULL,NULL,'Both','1368448205',NULL,'Sample Data','Scarlet','','Jensen',NULL,NULL,NULL,NULL,1,NULL,'Dear Scarlet',1,NULL,'Dear Scarlet',1,NULL,'Scarlet Jensen',NULL,NULL,'1952-01-01',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:44:17'),(77,'Individual',NULL,1,1,0,0,0,0,NULL,NULL,'McReynolds, Sanford','Mr. Sanford McReynolds',NULL,NULL,NULL,'2',NULL,'Both','-559869485',NULL,'Sample Data','Sanford','I','McReynolds',3,NULL,NULL,NULL,1,NULL,'Dear Sanford',1,NULL,'Dear Sanford',1,NULL,'Mr. Sanford McReynolds',NULL,2,'1966-01-27',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:44:03'),(78,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'González, Kenny','Mr. Kenny González',NULL,NULL,NULL,'2',NULL,'Both','-1516924762',NULL,'Sample Data','Kenny','S','González',3,NULL,NULL,NULL,1,NULL,'Dear Kenny',1,NULL,'Dear Kenny',1,NULL,'Mr. Kenny González',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:44:14'),(79,'Individual',NULL,1,0,0,0,1,0,NULL,NULL,'rolandod@example.co.in','rolandod@example.co.in',NULL,NULL,NULL,NULL,NULL,'Both','1145245869',NULL,'Sample Data',NULL,NULL,NULL,NULL,4,NULL,NULL,1,NULL,'Dear rolandod@example.co.in',1,NULL,'Dear rolandod@example.co.in',1,NULL,'rolandod@example.co.in',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:44:17'),(80,'Individual',NULL,1,1,0,0,0,0,NULL,NULL,'Díaz, Brigette','Brigette Díaz',NULL,NULL,NULL,'1',NULL,'Both','939555461',NULL,'Sample Data','Brigette','','Díaz',NULL,NULL,NULL,NULL,1,NULL,'Dear Brigette',1,NULL,'Dear Brigette',1,NULL,'Brigette Díaz',NULL,1,'1935-06-26',1,'2014-01-06',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:43:56'),(81,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Terrell, Craig','Dr. Craig Terrell',NULL,NULL,NULL,NULL,NULL,'Both','1728721271',NULL,'Sample Data','Craig','','Terrell',4,NULL,NULL,NULL,1,NULL,'Dear Craig',1,NULL,'Dear Craig',1,NULL,'Dr. Craig Terrell',NULL,2,'1950-11-22',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:44:04'),(82,'Individual',NULL,0,1,0,0,1,0,NULL,NULL,'wagner.omar@sample.co.nz','wagner.omar@sample.co.nz',NULL,NULL,NULL,'1',NULL,'Both','188929797',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear wagner.omar@sample.co.nz',1,NULL,'Dear wagner.omar@sample.co.nz',1,NULL,'wagner.omar@sample.co.nz',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:43:57'),(83,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Jones, Rebekah','Dr. Rebekah Jones',NULL,NULL,NULL,'4',NULL,'Both','1945051638',NULL,'Sample Data','Rebekah','A','Jones',4,NULL,NULL,NULL,1,NULL,'Dear Rebekah',1,NULL,'Dear Rebekah',1,NULL,'Dr. Rebekah Jones',NULL,1,'1968-12-25',0,NULL,NULL,NULL,'El Camino Poetry Partners',NULL,NULL,149,0,NULL,'2014-01-28 12:44:25'),(84,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Jones family','Jones family',NULL,NULL,NULL,NULL,NULL,'Both','1110516799',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Jones family',5,NULL,'Dear Jones family',2,NULL,'Jones family',NULL,NULL,NULL,0,NULL,'Jones family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:44:21'),(85,'Household',NULL,0,0,0,0,1,0,NULL,NULL,'Deforest family','Deforest family',NULL,NULL,NULL,NULL,NULL,'Both','-1059588257',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,NULL,'2014-01-28 12:44:22'),(86,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'barryjensen@mymail.org','barryjensen@mymail.org',NULL,NULL,NULL,NULL,NULL,'Both','-1617588405',NULL,'Sample Data',NULL,NULL,NULL,NULL,2,NULL,NULL,1,NULL,'Dear barryjensen@mymail.org',1,NULL,'Dear barryjensen@mymail.org',1,NULL,'barryjensen@mymail.org',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:43:53'),(87,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'González, Sherman','Dr. Sherman González',NULL,NULL,NULL,NULL,NULL,'Both','33045013',NULL,'Sample Data','Sherman','R','González',4,NULL,NULL,NULL,1,NULL,'Dear Sherman',1,NULL,'Dear Sherman',1,NULL,'Dr. Sherman González',NULL,2,'1993-01-09',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:44:08'),(88,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'wagnerk87@testmail.org','wagnerk87@testmail.org',NULL,NULL,NULL,NULL,NULL,'Both','626960143',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear wagnerk87@testmail.org',1,NULL,'Dear wagnerk87@testmail.org',1,NULL,'wagnerk87@testmail.org',NULL,NULL,NULL,0,NULL,NULL,NULL,'Martin Luther King Music School',NULL,NULL,64,0,NULL,'2014-01-28 12:44:28'),(89,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Wagner, Ray','Ray Wagner II',NULL,NULL,NULL,NULL,NULL,'Both','-131824654',NULL,'Sample Data','Ray','','Wagner',NULL,3,NULL,NULL,1,NULL,'Dear Ray',1,NULL,'Dear Ray',1,NULL,'Ray Wagner II',NULL,2,'1992-02-16',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:43:56'),(90,'Organization',NULL,0,0,0,0,1,0,NULL,NULL,'Ohio Sports Solutions','Ohio Sports Solutions',NULL,NULL,NULL,NULL,NULL,'Both','1197654056',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Ohio Sports Solutions',NULL,NULL,NULL,0,NULL,NULL,200,'Ohio Sports Solutions',NULL,NULL,NULL,0,NULL,'2014-01-28 12:44:25'),(91,'Organization',NULL,0,1,0,0,1,0,NULL,NULL,'Local Development Center','Local Development Center',NULL,NULL,NULL,NULL,NULL,'Both','1526864597',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Local Development Center',NULL,NULL,NULL,0,NULL,NULL,191,'Local Development Center',NULL,NULL,NULL,0,NULL,'2014-01-28 12:44:29'),(92,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Bachman, Carylon','Carylon Bachman',NULL,NULL,NULL,NULL,NULL,'Both','1159348459',NULL,'Sample Data','Carylon','D','Bachman',NULL,NULL,NULL,NULL,1,NULL,'Dear Carylon',1,NULL,'Dear Carylon',1,NULL,'Carylon Bachman',NULL,1,'1938-03-30',1,'2013-04-16',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:43:59'),(93,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jacobs, Andrew','Andrew Jacobs III',NULL,NULL,NULL,NULL,NULL,'Both','-1489741478',NULL,'Sample Data','Andrew','','Jacobs',NULL,4,NULL,NULL,1,NULL,'Dear Andrew',1,NULL,'Dear Andrew',1,NULL,'Andrew Jacobs III',NULL,2,NULL,1,'2013-04-16',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:44:06'),(94,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Samuels family','Samuels family',NULL,NULL,NULL,'1',NULL,'Both','350459294',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Samuels family',5,NULL,'Dear Samuels family',2,NULL,'Samuels family',NULL,NULL,NULL,0,NULL,'Samuels family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:44:23'),(95,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Deforest, Princess','Ms. Princess Deforest',NULL,NULL,NULL,'2',NULL,'Both','1925726838',NULL,'Sample Data','Princess','T','Deforest',2,NULL,NULL,NULL,1,NULL,'Dear Princess',1,NULL,'Dear Princess',1,NULL,'Ms. Princess Deforest',NULL,NULL,'1972-05-19',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:44:17'),(96,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Olsen, Arlyne','Dr. Arlyne Olsen',NULL,NULL,NULL,'3',NULL,'Both','-1233490404',NULL,'Sample Data','Arlyne','','Olsen',4,NULL,NULL,NULL,1,NULL,'Dear Arlyne',1,NULL,'Dear Arlyne',1,NULL,'Dr. Arlyne Olsen',NULL,1,'1966-01-28',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:44:19'),(97,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jacobs, Errol','Errol Jacobs III',NULL,NULL,NULL,NULL,NULL,'Both','759238184',NULL,'Sample Data','Errol','','Jacobs',NULL,4,NULL,NULL,1,NULL,'Dear Errol',1,NULL,'Dear Errol',1,NULL,'Errol Jacobs III',NULL,2,'1928-10-21',1,'2014-01-20',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:44:04'),(98,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Wagner, Ashley','Ashley Wagner',NULL,NULL,NULL,'2',NULL,'Both','1660268830',NULL,'Sample Data','Ashley','','Wagner',NULL,NULL,NULL,NULL,1,NULL,'Dear Ashley',1,NULL,'Dear Ashley',1,NULL,'Ashley Wagner',NULL,1,'1957-02-06',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:44:07'),(99,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Samson, Delana','Ms. Delana Samson',NULL,NULL,NULL,NULL,NULL,'Both','1637206028',NULL,'Sample Data','Delana','P','Samson',2,NULL,NULL,NULL,1,NULL,'Dear Delana',1,NULL,'Dear Delana',1,NULL,'Ms. Delana Samson',NULL,1,'1951-12-01',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:43:49'),(100,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Patel-Bachman family','Patel-Bachman family',NULL,NULL,NULL,'2',NULL,'Both','2117502979',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Patel-Bachman family',5,NULL,'Dear Patel-Bachman family',2,NULL,'Patel-Bachman family',NULL,NULL,NULL,0,NULL,'Patel-Bachman family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:44:21'),(101,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Smith, Sharyn','Dr. Sharyn Smith',NULL,NULL,NULL,NULL,NULL,'Both','-59935536',NULL,'Sample Data','Sharyn','','Smith',4,NULL,NULL,NULL,1,NULL,'Dear Sharyn',1,NULL,'Dear Sharyn',1,NULL,'Dr. Sharyn Smith',NULL,NULL,'1992-02-16',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:44:04'),(102,'Household',NULL,1,0,0,0,1,0,NULL,NULL,'Cooper family','Cooper family',NULL,NULL,NULL,'5',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,NULL,'2014-01-28 12:44:21'),(103,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Samuels, Ashlie','Dr. Ashlie Samuels',NULL,NULL,NULL,NULL,NULL,'Both','-1576064159',NULL,'Sample Data','Ashlie','','Samuels',4,NULL,NULL,NULL,1,NULL,'Dear Ashlie',1,NULL,'Dear Ashlie',1,NULL,'Dr. Ashlie Samuels',NULL,1,'1984-10-11',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:44:20'),(104,'Household',NULL,1,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,NULL,'2014-01-28 12:44:22'),(105,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Olsen family','Olsen family',NULL,NULL,NULL,NULL,NULL,'Both','1990073228',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Olsen family',5,NULL,'Dear Olsen family',2,NULL,'Olsen family',NULL,NULL,NULL,0,NULL,'Olsen family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:44:22'),(106,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Patel family','Patel family',NULL,NULL,NULL,NULL,NULL,'Both','1669281794',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Patel family',5,NULL,'Dear Patel family',2,NULL,'Patel family',NULL,NULL,NULL,0,NULL,'Patel family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:44:22'),(107,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Robertson-Jameson family','Robertson-Jameson family',NULL,NULL,NULL,NULL,NULL,'Both','-401915122',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Robertson-Jameson family',5,NULL,'Dear Robertson-Jameson family',2,NULL,'Robertson-Jameson family',NULL,NULL,NULL,0,NULL,'Robertson-Jameson family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:44:22'),(108,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Prentice, Beula','Mrs. Beula Prentice',NULL,NULL,NULL,NULL,NULL,'Both','-1633296885',NULL,'Sample Data','Beula','','Prentice',1,NULL,NULL,NULL,1,NULL,'Dear Beula',1,NULL,'Dear Beula',1,NULL,'Mrs. Beula Prentice',NULL,1,'1985-09-30',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:43:55'),(109,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Adams, Clint','Mr. Clint Adams',NULL,NULL,NULL,'3',NULL,'Both','197818587',NULL,'Sample Data','Clint','A','Adams',3,NULL,NULL,NULL,1,NULL,'Dear Clint',1,NULL,'Dear Clint',1,NULL,'Mr. Clint Adams',NULL,NULL,'1939-07-24',1,'2013-10-02',NULL,NULL,'Maple Software Trust',NULL,NULL,45,0,NULL,'2014-01-28 12:44:23'),(110,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jones, Nicole','Nicole Jones',NULL,NULL,NULL,'5',NULL,'Both','1891539525',NULL,'Sample Data','Nicole','','Jones',NULL,NULL,NULL,NULL,1,NULL,'Dear Nicole',1,NULL,'Dear Nicole',1,NULL,'Nicole Jones',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:44:11'),(111,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Cooper, Laree','Laree Cooper',NULL,NULL,NULL,NULL,NULL,'Both','-81905659',NULL,'Sample Data','Laree','X','Cooper',NULL,NULL,NULL,NULL,1,NULL,'Dear Laree',1,NULL,'Dear Laree',1,NULL,'Laree Cooper',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:44:08'),(112,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Díaz, Russell','Dr. Russell Díaz',NULL,NULL,NULL,'2',NULL,'Both','-917122445',NULL,'Sample Data','Russell','','Díaz',4,NULL,NULL,NULL,1,NULL,'Dear Russell',1,NULL,'Dear Russell',1,NULL,'Dr. Russell Díaz',NULL,2,'1938-11-08',1,'2013-08-13',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:43:49'),(113,'Organization',NULL,1,0,0,0,0,0,NULL,NULL,'Woodbridge Advocacy Partnership','Woodbridge Advocacy Partnership',NULL,NULL,NULL,NULL,NULL,'Both','1796203149',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Woodbridge Advocacy Partnership',NULL,NULL,NULL,0,NULL,NULL,31,'Woodbridge Advocacy Partnership',NULL,NULL,NULL,0,NULL,'2014-01-28 12:44:28'),(114,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Samuels, Valene','Valene Samuels',NULL,NULL,NULL,'2',NULL,'Both','1762584511',NULL,'Sample Data','Valene','','Samuels',NULL,NULL,NULL,NULL,1,NULL,'Dear Valene',1,NULL,'Dear Valene',1,NULL,'Valene Samuels',NULL,1,'1984-09-19',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:44:20'),(115,'Individual',NULL,1,1,0,0,0,0,NULL,NULL,'Cooper, Elbert','Elbert Cooper',NULL,NULL,NULL,'1',NULL,'Both','2147415663',NULL,'Sample Data','Elbert','F','Cooper',NULL,NULL,NULL,NULL,1,NULL,'Dear Elbert',1,NULL,'Dear Elbert',1,NULL,'Elbert Cooper',NULL,2,'2006-08-29',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:44:09'),(116,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Blackwell, Sanford','Sanford Blackwell III',NULL,NULL,NULL,'4',NULL,'Both','-1083735405',NULL,'Sample Data','Sanford','U','Blackwell',NULL,4,NULL,NULL,1,NULL,'Dear Sanford',1,NULL,'Dear Sanford',1,NULL,'Sanford Blackwell III',NULL,NULL,'1964-08-18',1,'2014-01-18',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:43:54'),(117,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Wilson-González, Betty','Betty Wilson-González',NULL,NULL,NULL,'3',NULL,'Both','-686259848',NULL,'Sample Data','Betty','N','Wilson-González',NULL,NULL,NULL,NULL,1,NULL,'Dear Betty',1,NULL,'Dear Betty',1,NULL,'Betty Wilson-González',NULL,1,'1954-02-26',1,'2014-01-22',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:44:14'),(118,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Deforest, Russell','Dr. Russell Deforest',NULL,NULL,NULL,'3',NULL,'Both','-1699649427',NULL,'Sample Data','Russell','','Deforest',4,NULL,NULL,NULL,1,NULL,'Dear Russell',1,NULL,'Dear Russell',1,NULL,'Dr. Russell Deforest',NULL,NULL,'1937-12-29',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:44:01'),(119,'Individual',NULL,1,0,0,0,1,0,NULL,NULL,'Wagner, Rolando','Rolando Wagner Sr.',NULL,NULL,NULL,'4',NULL,'Both','596894405',NULL,'Sample Data','Rolando','M','Wagner',NULL,2,NULL,NULL,1,NULL,'Dear Rolando',1,NULL,'Dear Rolando',1,NULL,'Rolando Wagner Sr.',NULL,2,'1953-08-04',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:44:11'),(120,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Wagner, Ashley','Ashley Wagner',NULL,NULL,NULL,NULL,NULL,'Both','1660268830',NULL,'Sample Data','Ashley','','Wagner',NULL,NULL,NULL,NULL,1,NULL,'Dear Ashley',1,NULL,'Dear Ashley',1,NULL,'Ashley Wagner',NULL,NULL,'2007-04-21',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:44:07'),(121,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Ivanov, Esta','Mrs. Esta Ivanov',NULL,NULL,NULL,NULL,NULL,'Both','-699676493',NULL,'Sample Data','Esta','','Ivanov',1,NULL,NULL,NULL,1,NULL,'Dear Esta',1,NULL,'Dear Esta',1,NULL,'Mrs. Esta Ivanov',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:43:58'),(122,'Individual',NULL,0,1,0,0,1,0,NULL,NULL,'Patel, Jackson','Jackson Patel II',NULL,NULL,NULL,NULL,NULL,'Both','2060230662',NULL,'Sample Data','Jackson','P','Patel',NULL,3,NULL,NULL,1,NULL,'Dear Jackson',1,NULL,'Dear Jackson',1,NULL,'Jackson Patel II',NULL,2,'1950-08-23',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:44:09'),(123,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Grant, Rolando','Mr. Rolando Grant',NULL,NULL,NULL,'5',NULL,'Both','-263832296',NULL,'Sample Data','Rolando','O','Grant',3,NULL,NULL,NULL,1,NULL,'Dear Rolando',1,NULL,'Dear Rolando',1,NULL,'Mr. Rolando Grant',NULL,NULL,'1949-06-23',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:43:58'),(124,'Organization',NULL,0,1,0,0,0,0,NULL,NULL,'Global Sports Trust','Global Sports Trust',NULL,NULL,NULL,'2',NULL,'Both','2008289903',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Global Sports Trust',NULL,NULL,NULL,0,NULL,NULL,146,'Global Sports Trust',NULL,NULL,NULL,0,NULL,'2014-01-28 12:44:28'),(125,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Wattson, Billy','Dr. Billy Wattson',NULL,NULL,NULL,NULL,NULL,'Both','-1197836075',NULL,'Sample Data','Billy','T','Wattson',4,NULL,NULL,NULL,1,NULL,'Dear Billy',1,NULL,'Dear Billy',1,NULL,'Dr. Billy Wattson',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:44:06'),(126,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'González family','González family',NULL,NULL,NULL,'4',NULL,'Both','-1031243538',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,NULL,'2014-01-28 12:44:21'),(127,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Dimitrov, Kenny','Dr. Kenny Dimitrov Sr.',NULL,NULL,NULL,NULL,NULL,'Both','-1596099917',NULL,'Sample Data','Kenny','','Dimitrov',4,2,NULL,NULL,1,NULL,'Dear Kenny',1,NULL,'Dear Kenny',1,NULL,'Dr. Kenny Dimitrov Sr.',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:44:02'),(128,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Wagner, Beula','Mrs. Beula Wagner',NULL,NULL,NULL,NULL,NULL,'Both','109524906',NULL,'Sample Data','Beula','','Wagner',1,NULL,NULL,NULL,1,NULL,'Dear Beula',1,NULL,'Dear Beula',1,NULL,'Mrs. Beula Wagner',NULL,1,'1983-07-22',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:44:11'),(129,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jones, Lou','Lou Jones',NULL,NULL,NULL,NULL,NULL,'Both','1729688714',NULL,'Sample Data','Lou','X','Jones',NULL,NULL,NULL,NULL,1,NULL,'Dear Lou',1,NULL,'Dear Lou',1,NULL,'Lou Jones',NULL,2,NULL,1,NULL,NULL,NULL,'Global Literacy Fellowship',NULL,NULL,46,0,NULL,'2014-01-28 12:44:25'),(130,'Individual',NULL,1,1,0,0,0,0,NULL,NULL,'McReynolds, Brzęczysław','Mr. Brzęczysław McReynolds Sr.',NULL,NULL,NULL,NULL,NULL,'Both','1247543103',NULL,'Sample Data','Brzęczysław','X','McReynolds',3,2,NULL,NULL,1,NULL,'Dear Brzęczysław',1,NULL,'Dear Brzęczysław',1,NULL,'Mr. Brzęczysław McReynolds Sr.',NULL,2,'1976-02-17',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:44:16'),(131,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Łąchowski, Nicole','Dr. Nicole Łąchowski',NULL,NULL,NULL,NULL,NULL,'Both','-1245058614',NULL,'Sample Data','Nicole','','Łąchowski',4,NULL,NULL,NULL,1,NULL,'Dear Nicole',1,NULL,'Dear Nicole',1,NULL,'Dr. Nicole Łąchowski',NULL,1,NULL,1,'2013-11-05',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:43:57'),(132,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Łąchowski, Beula','Beula Łąchowski',NULL,NULL,NULL,'1',NULL,'Both','-732091909',NULL,'Sample Data','Beula','','Łąchowski',NULL,NULL,NULL,NULL,1,NULL,'Dear Beula',1,NULL,'Dear Beula',1,NULL,'Beula Łąchowski',NULL,1,'1943-03-15',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:44:02'),(133,'Individual',NULL,1,1,0,0,0,0,NULL,NULL,'Łąchowski, Bryon','Bryon Łąchowski',NULL,NULL,NULL,'4',NULL,'Both','-1424231957',NULL,'Sample Data','Bryon','','Łąchowski',NULL,NULL,NULL,NULL,1,NULL,'Dear Bryon',1,NULL,'Dear Bryon',1,NULL,'Bryon Łąchowski',NULL,2,'1931-06-14',1,'2013-10-01',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:43:58'),(134,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Lee, Angelika','Angelika Lee',NULL,NULL,NULL,NULL,NULL,'Both','-1636415505',NULL,'Sample Data','Angelika','','Lee',NULL,NULL,NULL,NULL,1,NULL,'Dear Angelika',1,NULL,'Dear Angelika',1,NULL,'Angelika Lee',NULL,1,'1952-06-06',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:43:52'),(135,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Terrell, Kenny','Mr. Kenny Terrell II',NULL,NULL,NULL,NULL,NULL,'Both','614922505',NULL,'Sample Data','Kenny','F','Terrell',3,3,NULL,NULL,1,NULL,'Dear Kenny',1,NULL,'Dear Kenny',1,NULL,'Mr. Kenny Terrell II',NULL,2,'1931-08-08',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:44:03'),(136,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Wagner, Brent','Mr. Brent Wagner',NULL,NULL,NULL,'4',NULL,'Both','-2004583019',NULL,'Sample Data','Brent','M','Wagner',3,NULL,NULL,NULL,1,NULL,'Dear Brent',1,NULL,'Dear Brent',1,NULL,'Mr. Brent Wagner',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:44:07'),(137,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Müller, Kathleen','Dr. Kathleen Müller',NULL,NULL,NULL,NULL,NULL,'Both','74249251',NULL,'Sample Data','Kathleen','X','Müller',4,NULL,NULL,NULL,1,NULL,'Dear Kathleen',1,NULL,'Dear Kathleen',1,NULL,'Dr. Kathleen Müller',NULL,1,'1933-02-06',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:44:05'),(138,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Robertson-Jameson, Felisha','Felisha Robertson-Jameson',NULL,NULL,NULL,'5',NULL,'Both','-1170722652',NULL,'Sample Data','Felisha','R','Robertson-Jameson',NULL,NULL,NULL,NULL,1,NULL,'Dear Felisha',1,NULL,'Dear Felisha',1,NULL,'Felisha Robertson-Jameson',NULL,1,'1980-08-19',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:44:14'),(139,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Cooper, Carylon','Carylon Cooper',NULL,NULL,NULL,NULL,NULL,'Both','-1080738484',NULL,'Sample Data','Carylon','','Cooper',NULL,NULL,NULL,NULL,1,NULL,'Dear Carylon',1,NULL,'Dear Carylon',1,NULL,'Carylon Cooper',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:43:54'),(140,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Smith, Sherman','Sherman Smith III',NULL,NULL,NULL,NULL,NULL,'Both','-1760514607',NULL,'Sample Data','Sherman','H','Smith',NULL,4,NULL,NULL,1,NULL,'Dear Sherman',1,NULL,'Dear Sherman',1,NULL,'Sherman Smith III',NULL,2,'2006-07-15',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:44:19'),(141,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Terrell, Elbert','Elbert Terrell',NULL,NULL,NULL,'3',NULL,'Both','1862258278',NULL,'Sample Data','Elbert','A','Terrell',NULL,NULL,NULL,NULL,1,NULL,'Dear Elbert',1,NULL,'Dear Elbert',1,NULL,'Elbert Terrell',NULL,2,'1992-02-16',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:44:05'),(142,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Terry, Alexia','Ms. Alexia Terry',NULL,NULL,NULL,'3',NULL,'Both','1601599901',NULL,'Sample Data','Alexia','','Terry',2,NULL,NULL,NULL,1,NULL,'Dear Alexia',1,NULL,'Dear Alexia',1,NULL,'Ms. Alexia Terry',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:44:18'),(143,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jameson-Patel, Teresa','Ms. Teresa Jameson-Patel',NULL,NULL,NULL,'3',NULL,'Both','1531686748',NULL,'Sample Data','Teresa','','Jameson-Patel',2,NULL,NULL,NULL,1,NULL,'Dear Teresa',1,NULL,'Dear Teresa',1,NULL,'Ms. Teresa Jameson-Patel',NULL,1,'1952-09-25',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:44:16'),(144,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Friends Family Center','Friends Family Center',NULL,NULL,NULL,NULL,NULL,'Both','-577192839',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Friends Family Center',NULL,NULL,NULL,0,NULL,NULL,47,'Friends Family Center',NULL,NULL,NULL,0,NULL,'2014-01-28 12:44:27'),(145,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Zope-McReynolds, Teddy','Teddy Zope-McReynolds',NULL,NULL,NULL,'2',NULL,'Both','1215272306',NULL,'Sample Data','Teddy','G','Zope-McReynolds',NULL,NULL,NULL,NULL,1,NULL,'Dear Teddy',1,NULL,'Dear Teddy',1,NULL,'Teddy Zope-McReynolds',NULL,2,'1971-12-09',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:44:16'),(146,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Cruz, Landon','Landon Cruz',NULL,NULL,NULL,NULL,NULL,'Both','-1905308322',NULL,'Sample Data','Landon','S','Cruz',NULL,NULL,NULL,NULL,1,NULL,'Dear Landon',1,NULL,'Dear Landon',1,NULL,'Landon Cruz',NULL,2,NULL,0,NULL,NULL,NULL,'Global Sports Trust',NULL,NULL,124,0,NULL,'2014-01-28 12:44:28'),(147,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Zope, Roland','Dr. Roland Zope',NULL,NULL,NULL,'5',NULL,'Both','1007442606',NULL,'Sample Data','Roland','','Zope',4,NULL,NULL,NULL,1,NULL,'Dear Roland',1,NULL,'Dear Roland',1,NULL,'Dr. Roland Zope',NULL,2,'1988-11-17',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:44:10'),(148,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Patel-Bachman, Valene','Valene Patel-Bachman',NULL,NULL,NULL,NULL,NULL,'Both','-405086885',NULL,'Sample Data','Valene','G','Patel-Bachman',NULL,NULL,NULL,NULL,1,NULL,'Dear Valene',1,NULL,'Dear Valene',1,NULL,'Valene Patel-Bachman',NULL,NULL,'2005-12-25',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:44:09'),(149,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'El Camino Poetry Partners','El Camino Poetry Partners',NULL,NULL,NULL,'4',NULL,'Both','802001816',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'El Camino Poetry Partners',NULL,NULL,NULL,0,NULL,NULL,83,'El Camino Poetry Partners',NULL,NULL,NULL,0,NULL,'2014-01-28 12:44:25'),(150,'Individual',NULL,1,1,0,0,0,0,NULL,NULL,'Müller, Teddy','Mr. Teddy Müller',NULL,NULL,NULL,'4',NULL,'Both','921287774',NULL,'Sample Data','Teddy','','Müller',3,NULL,NULL,NULL,1,NULL,'Dear Teddy',1,NULL,'Dear Teddy',1,NULL,'Mr. Teddy Müller',NULL,NULL,'1969-11-01',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:44:04'),(151,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Parker, Lawerence','Mr. Lawerence Parker',NULL,NULL,NULL,NULL,NULL,'Both','-1977452224',NULL,'Sample Data','Lawerence','','Parker',3,NULL,NULL,NULL,1,NULL,'Dear Lawerence',1,NULL,'Dear Lawerence',1,NULL,'Mr. Lawerence Parker',NULL,2,'1935-01-25',1,'2014-01-22',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:44:04'),(152,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Lee, Betty','Mrs. Betty Lee',NULL,NULL,NULL,'4',NULL,'Both','-100988340',NULL,'Sample Data','Betty','','Lee',1,NULL,NULL,NULL,1,NULL,'Dear Betty',1,NULL,'Dear Betty',1,NULL,'Mrs. Betty Lee',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:43:59'),(153,'Organization',NULL,1,0,0,0,0,0,NULL,NULL,'Warner Robins Health Trust','Warner Robins Health Trust',NULL,NULL,NULL,'4',NULL,'Both','126120319',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Warner Robins Health Trust',NULL,NULL,NULL,0,NULL,NULL,194,'Warner Robins Health Trust',NULL,NULL,NULL,0,NULL,'2014-01-28 12:44:30'),(154,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Olsen, Andrew','Mr. Andrew Olsen II',NULL,NULL,NULL,'1',NULL,'Both','-892962030',NULL,'Sample Data','Andrew','','Olsen',3,3,NULL,NULL,1,NULL,'Dear Andrew',1,NULL,'Dear Andrew',1,NULL,'Mr. Andrew Olsen II',NULL,NULL,'1956-07-26',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:44:18'),(155,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Olsen, Elina','Elina Olsen',NULL,NULL,NULL,'1',NULL,'Both','-979858180',NULL,'Sample Data','Elina','','Olsen',NULL,NULL,NULL,NULL,1,NULL,'Dear Elina',1,NULL,'Dear Elina',1,NULL,'Elina Olsen',NULL,NULL,'1972-06-12',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:44:18'),(156,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Robertson, Jerome','Dr. Jerome Robertson Jr.',NULL,NULL,NULL,NULL,NULL,'Both','-578561152',NULL,'Sample Data','Jerome','','Robertson',4,1,NULL,NULL,1,NULL,'Dear Jerome',1,NULL,'Dear Jerome',1,NULL,'Dr. Jerome Robertson Jr.',NULL,2,'1990-09-05',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:44:12'),(157,'Household',NULL,1,0,0,0,0,0,NULL,NULL,'Wagner family','Wagner family',NULL,NULL,NULL,NULL,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,NULL,'2014-01-28 12:44:21'),(158,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Jensen, Brittney','Ms. Brittney Jensen',NULL,NULL,NULL,NULL,NULL,'Both','-959092153',NULL,'Sample Data','Brittney','','Jensen',2,NULL,NULL,NULL,1,NULL,'Dear Brittney',1,NULL,'Dear Brittney',1,NULL,'Ms. Brittney Jensen',NULL,1,'1992-02-16',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:44:03'),(159,'Individual',NULL,1,0,0,0,1,0,NULL,NULL,'Blackwell, Jacob','Jacob Blackwell',NULL,NULL,NULL,NULL,NULL,'Both','-245256393',NULL,'Sample Data','Jacob','U','Blackwell',NULL,NULL,NULL,NULL,1,NULL,'Dear Jacob',1,NULL,'Dear Jacob',1,NULL,'Jacob Blackwell',NULL,2,'1992-02-16',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:43:52'),(160,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Wewoka Advocacy Alliance','Wewoka Advocacy Alliance',NULL,NULL,NULL,'1',NULL,'Both','1916221450',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Wewoka Advocacy Alliance',NULL,NULL,NULL,0,NULL,NULL,69,'Wewoka Advocacy Alliance',NULL,NULL,NULL,0,NULL,'2014-01-28 12:44:25'),(161,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Robertson, Billy','Billy Robertson Sr.',NULL,NULL,NULL,NULL,NULL,'Both','-601570159',NULL,'Sample Data','Billy','J','Robertson',NULL,2,NULL,NULL,1,NULL,'Dear Billy',1,NULL,'Dear Billy',1,NULL,'Billy Robertson Sr.',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:44:14'),(162,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Wagner, Rosario','Rosario Wagner Jr.',NULL,NULL,NULL,'1',NULL,'Both','1639040719',NULL,'Sample Data','Rosario','','Wagner',NULL,1,NULL,NULL,1,NULL,'Dear Rosario',1,NULL,'Dear Rosario',1,NULL,'Rosario Wagner Jr.',NULL,NULL,'1962-05-04',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:44:11'),(163,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'González, Brittney','Brittney González',NULL,NULL,NULL,NULL,NULL,'Both','-662471735',NULL,'Sample Data','Brittney','V','González',NULL,NULL,NULL,NULL,1,NULL,'Dear Brittney',1,NULL,'Dear Brittney',1,NULL,'Brittney González',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:44:07'),(164,'Household',NULL,1,0,0,0,1,0,NULL,NULL,'Olsen family','Olsen family',NULL,NULL,NULL,'1',NULL,'Both','1990073228',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Olsen family',5,NULL,'Dear Olsen family',2,NULL,'Olsen family',NULL,NULL,NULL,0,NULL,'Olsen family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:44:22'),(165,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Prentice, Brittney','Ms. Brittney Prentice',NULL,NULL,NULL,'1',NULL,'Both','-667737467',NULL,'Sample Data','Brittney','H','Prentice',2,NULL,NULL,NULL,1,NULL,'Dear Brittney',1,NULL,'Dear Brittney',1,NULL,'Ms. Brittney Prentice',NULL,1,NULL,0,NULL,NULL,NULL,'United Culture Initiative',NULL,NULL,63,0,NULL,'2014-01-28 12:44:30'),(166,'Individual',NULL,1,0,0,0,1,0,NULL,NULL,'Zope, Merrie','Dr. Merrie Zope',NULL,NULL,NULL,NULL,NULL,'Both','316434837',NULL,'Sample Data','Merrie','','Zope',4,NULL,NULL,NULL,1,NULL,'Dear Merrie',1,NULL,'Dear Merrie',1,NULL,'Dr. Merrie Zope',NULL,NULL,'1977-09-18',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:44:09'),(167,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'González, Magan','Dr. Magan González',NULL,NULL,NULL,'5',NULL,'Both','-1372761898',NULL,'Sample Data','Magan','X','González',4,NULL,NULL,NULL,1,NULL,'Dear Magan',1,NULL,'Dear Magan',1,NULL,'Dr. Magan González',NULL,NULL,'1950-12-13',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:44:07'),(168,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Olsen, Betty','Mrs. Betty Olsen',NULL,NULL,NULL,'3',NULL,'Both','-1123070520',NULL,'Sample Data','Betty','','Olsen',1,NULL,NULL,NULL,1,NULL,'Dear Betty',1,NULL,'Dear Betty',1,NULL,'Mrs. Betty Olsen',NULL,NULL,'1947-10-12',1,'2013-08-21',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:44:15'),(169,'Household',NULL,0,1,0,0,0,0,NULL,NULL,'González family','González family',NULL,NULL,NULL,NULL,NULL,'Both','-1031243538',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,NULL,'2014-01-28 12:44:20'),(170,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Olsen, Carlos','Carlos Olsen',NULL,NULL,NULL,'4',NULL,'Both','-1692997790',NULL,'Sample Data','Carlos','','Olsen',NULL,NULL,NULL,NULL,1,NULL,'Dear Carlos',1,NULL,'Dear Carlos',1,NULL,'Carlos Olsen',NULL,2,'1975-06-19',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:44:15'),(171,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Wagner, Esta','Dr. Esta Wagner',NULL,NULL,NULL,'1',NULL,'Both','-599887995',NULL,'Sample Data','Esta','T','Wagner',4,NULL,NULL,NULL,1,NULL,'Dear Esta',1,NULL,'Dear Esta',1,NULL,'Dr. Esta Wagner',NULL,1,'1943-01-15',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:44:00'),(172,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Cooper, Kandace','Kandace Cooper',NULL,NULL,NULL,'2',NULL,'Both','-1197046979',NULL,'Sample Data','Kandace','','Cooper',NULL,NULL,NULL,NULL,1,NULL,'Dear Kandace',1,NULL,'Dear Kandace',1,NULL,'Kandace Cooper',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:43:56'),(173,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Wagner, Betty','Betty Wagner',NULL,NULL,NULL,'5',NULL,'Both','-1775084142',NULL,'Sample Data','Betty','','Wagner',NULL,NULL,NULL,NULL,1,NULL,'Dear Betty',1,NULL,'Dear Betty',1,NULL,'Betty Wagner',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:44:11'),(174,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Jacobs, Arlyne','Dr. Arlyne Jacobs',NULL,NULL,NULL,'2',NULL,'Both','-611824556',NULL,'Sample Data','Arlyne','M','Jacobs',4,NULL,NULL,NULL,1,NULL,'Dear Arlyne',1,NULL,'Dear Arlyne',1,NULL,'Dr. Arlyne Jacobs',NULL,NULL,'1977-04-09',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:43:57'),(175,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'González, Shauna','Ms. Shauna González',NULL,NULL,NULL,NULL,NULL,'Both','-1927171816',NULL,'Sample Data','Shauna','','González',2,NULL,NULL,NULL,1,NULL,'Dear Shauna',1,NULL,'Dear Shauna',1,NULL,'Ms. Shauna González',NULL,1,'1953-04-20',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:43:58'),(176,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Deforest, Margaret','Margaret Deforest',NULL,NULL,NULL,NULL,NULL,'Both','-1763889668',NULL,'Sample Data','Margaret','X','Deforest',NULL,NULL,NULL,NULL,1,NULL,'Dear Margaret',1,NULL,'Dear Margaret',1,NULL,'Margaret Deforest',NULL,1,'1976-09-15',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:44:17'),(177,'Organization',NULL,1,0,0,0,0,0,NULL,NULL,'Rudyard Music Fund','Rudyard Music Fund',NULL,NULL,NULL,NULL,NULL,'Both','1658015927',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Rudyard Music Fund',NULL,NULL,NULL,0,NULL,NULL,43,'Rudyard Music Fund',NULL,NULL,NULL,0,NULL,'2014-01-28 12:44:26'),(178,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'McReynolds, Felisha','Felisha McReynolds',NULL,NULL,NULL,NULL,NULL,'Both','-2029062182',NULL,'Sample Data','Felisha','','McReynolds',NULL,NULL,NULL,NULL,1,NULL,'Dear Felisha',1,NULL,'Dear Felisha',1,NULL,'Felisha McReynolds',NULL,1,'1992-02-16',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:43:50'),(179,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'swagner@testmail.com','swagner@testmail.com',NULL,NULL,NULL,'2',NULL,'Both','-1599846050',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,NULL,1,NULL,'Dear swagner@testmail.com',1,NULL,'Dear swagner@testmail.com',1,NULL,'swagner@testmail.com',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:43:52'),(180,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Müller, Damaris','Damaris Müller',NULL,NULL,NULL,NULL,NULL,'Both','282196089',NULL,'Sample Data','Damaris','L','Müller',NULL,NULL,NULL,NULL,1,NULL,'Dear Damaris',1,NULL,'Dear Damaris',1,NULL,'Damaris Müller',NULL,1,'1958-06-14',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:43:51'),(181,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Jameson, Sharyn','Sharyn Jameson',NULL,NULL,NULL,'5',NULL,'Both','-2089660102',NULL,'Sample Data','Sharyn','','Jameson',NULL,NULL,NULL,NULL,1,NULL,'Dear Sharyn',1,NULL,'Dear Sharyn',1,NULL,'Sharyn Jameson',NULL,NULL,'1944-10-29',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:44:06'),(182,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Lee, Billy','Billy Lee',NULL,NULL,NULL,'1',NULL,'Both','587456357',NULL,'Sample Data','Billy','','Lee',NULL,NULL,NULL,NULL,1,NULL,'Dear Billy',1,NULL,'Dear Billy',1,NULL,'Billy Lee',NULL,2,'1961-11-05',0,NULL,NULL,NULL,'Global Wellness Network',NULL,NULL,10,0,NULL,'2014-01-28 12:44:27'),(183,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Cooper, Maria','Dr. Maria Cooper',NULL,NULL,NULL,NULL,NULL,'Both','1839635104',NULL,'Sample Data','Maria','','Cooper',4,NULL,NULL,NULL,1,NULL,'Dear Maria',1,NULL,'Dear Maria',1,NULL,'Dr. Maria Cooper',NULL,2,'1935-05-05',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:43:53'),(184,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Zope, Lou','Lou Zope',NULL,NULL,NULL,NULL,NULL,'Both','-1553545001',NULL,'Sample Data','Lou','','Zope',NULL,NULL,NULL,NULL,1,NULL,'Dear Lou',1,NULL,'Dear Lou',1,NULL,'Lou Zope',NULL,2,'1971-12-01',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:44:09'),(185,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Roberts, Carylon','Dr. Carylon Roberts',NULL,NULL,NULL,NULL,NULL,'Both','-418318508',NULL,'Sample Data','Carylon','','Roberts',4,NULL,NULL,NULL,1,NULL,'Dear Carylon',1,NULL,'Dear Carylon',1,NULL,'Dr. Carylon Roberts',NULL,1,'1969-05-02',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:44:03'),(186,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'brentg@airmail.biz','brentg@airmail.biz',NULL,NULL,NULL,NULL,NULL,'Both','289627390',NULL,'Sample Data',NULL,NULL,NULL,4,NULL,NULL,NULL,1,NULL,'Dear brentg@airmail.biz',1,NULL,'Dear brentg@airmail.biz',1,NULL,'brentg@airmail.biz',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:43:55'),(187,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'McReynolds, Iris','Iris McReynolds',NULL,NULL,NULL,NULL,NULL,'Both','-1738848168',NULL,'Sample Data','Iris','V','McReynolds',NULL,NULL,NULL,NULL,1,NULL,'Dear Iris',1,NULL,'Dear Iris',1,NULL,'Iris McReynolds',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:44:16'),(188,'Individual',NULL,0,1,0,0,1,0,NULL,NULL,'Jameson, Kathleen','Ms. Kathleen Jameson',NULL,NULL,NULL,'2',NULL,'Both','-494680543',NULL,'Sample Data','Kathleen','G','Jameson',2,NULL,NULL,NULL,1,NULL,'Dear Kathleen',1,NULL,'Dear Kathleen',1,NULL,'Ms. Kathleen Jameson',NULL,1,'1980-02-07',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:44:14'),(189,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Parker, Tanya','Tanya Parker',NULL,NULL,NULL,NULL,NULL,'Both','91803087',NULL,'Sample Data','Tanya','','Parker',NULL,NULL,NULL,NULL,1,NULL,'Dear Tanya',1,NULL,'Dear Tanya',1,NULL,'Tanya Parker',NULL,1,'1992-02-16',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:43:58'),(190,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'González, Angelika','Angelika González',NULL,NULL,NULL,'1',NULL,'Both','-1930065409',NULL,'Sample Data','Angelika','','González',NULL,NULL,NULL,NULL,1,NULL,'Dear Angelika',1,NULL,'Dear Angelika',1,NULL,'Angelika González',NULL,1,'1975-06-04',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:44:13'),(191,'Individual',NULL,0,1,0,0,1,0,NULL,NULL,'Robertson, Scott','Scott Robertson',NULL,NULL,NULL,'5',NULL,'Both','284541050',NULL,'Sample Data','Scott','','Robertson',NULL,NULL,NULL,NULL,1,NULL,'Dear Scott',1,NULL,'Dear Scott',1,NULL,'Scott Robertson',NULL,NULL,'1985-04-19',0,NULL,NULL,NULL,'Local Development Center',NULL,NULL,91,0,NULL,'2014-01-28 12:44:29'),(192,'Individual',NULL,0,1,0,0,1,0,NULL,NULL,'Jameson, Brent','Brent Jameson',NULL,NULL,NULL,'3',NULL,'Both','1398082986',NULL,'Sample Data','Brent','','Jameson',NULL,NULL,NULL,NULL,1,NULL,'Dear Brent',1,NULL,'Dear Brent',1,NULL,'Brent Jameson',NULL,2,'1986-06-29',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:43:48'),(193,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Prentice, Omar','Mr. Omar Prentice',NULL,NULL,NULL,NULL,NULL,'Both','-419841261',NULL,'Sample Data','Omar','A','Prentice',3,NULL,NULL,NULL,1,NULL,'Dear Omar',1,NULL,'Dear Omar',1,NULL,'Mr. Omar Prentice',NULL,2,'1979-10-27',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:43:57'),(194,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Patel, Ashley','Ashley Patel',NULL,NULL,NULL,'3',NULL,'Both','-478839840',NULL,'Sample Data','Ashley','V','Patel',NULL,NULL,NULL,NULL,1,NULL,'Dear Ashley',1,NULL,'Dear Ashley',1,NULL,'Ashley Patel',NULL,1,NULL,0,NULL,NULL,NULL,'Warner Robins Health Trust',NULL,NULL,153,0,NULL,'2014-01-28 12:44:30'),(195,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jensen, Ashlie','Ashlie Jensen',NULL,NULL,NULL,'1',NULL,'Both','2039449284',NULL,'Sample Data','Ashlie','G','Jensen',NULL,NULL,NULL,NULL,1,NULL,'Dear Ashlie',1,NULL,'Dear Ashlie',1,NULL,'Ashlie Jensen',NULL,1,'1968-08-12',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:44:17'),(196,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Smith, Errol','Errol Smith Sr.',NULL,NULL,NULL,'1',NULL,'Both','-2025612268',NULL,'Sample Data','Errol','','Smith',NULL,2,NULL,NULL,1,NULL,'Dear Errol',1,NULL,'Dear Errol',1,NULL,'Errol Smith Sr.',NULL,NULL,'1958-03-21',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:44:19'),(197,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Samuels, Allan','Mr. Allan Samuels',NULL,NULL,NULL,'2',NULL,'Both','1133078427',NULL,'Sample Data','Allan','U','Samuels',3,NULL,NULL,NULL,1,NULL,'Dear Allan',1,NULL,'Dear Allan',1,NULL,'Mr. Allan Samuels',NULL,2,'1953-02-16',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:44:20'),(198,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Wattson, Elbert','Mr. Elbert Wattson Jr.',NULL,NULL,NULL,'3',NULL,'Both','-1435186124',NULL,'Sample Data','Elbert','','Wattson',3,1,NULL,NULL,1,NULL,'Dear Elbert',1,NULL,'Dear Elbert',1,NULL,'Mr. Elbert Wattson Jr.',NULL,NULL,'1972-05-21',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:44:06'),(199,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Terry, Jina','Jina Terry',NULL,NULL,NULL,NULL,NULL,'Both','506826080',NULL,'Sample Data','Jina','K','Terry',NULL,NULL,NULL,NULL,1,NULL,'Dear Jina',1,NULL,'Dear Jina',1,NULL,'Jina Terry',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:44:18'),(200,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Olsen, Jina','Jina Olsen',NULL,NULL,NULL,'5',NULL,'Both','-1400149228',NULL,'Sample Data','Jina','O','Olsen',NULL,NULL,NULL,NULL,1,NULL,'Dear Jina',1,NULL,'Dear Jina',1,NULL,'Jina Olsen',NULL,NULL,'2004-08-22',0,NULL,NULL,NULL,'Ohio Sports Solutions',NULL,NULL,90,0,NULL,'2014-01-28 12:44:25'),(201,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Smith, Ashley','Ashley Smith',NULL,NULL,NULL,'1',NULL,'Both','-1420334919',NULL,'Sample Data','Ashley','B','Smith',NULL,NULL,NULL,NULL,1,NULL,'Dear Ashley',1,NULL,'Dear Ashley',1,NULL,'Ashley Smith',NULL,NULL,'1978-04-28',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-28 12:44:19'); /*!40000 ALTER TABLE `civicrm_contact` ENABLE KEYS */; UNLOCK TABLES; @@ -220,7 +220,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`, `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`) VALUES (1,2,1,NULL,4,'2010-04-11 00:00:00',0.00,125.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Apr 2007 Mailer 1',NULL,NULL,0,0,1,NULL,'1041',NULL),(2,4,1,NULL,1,'2010-03-21 00:00:00',0.00,50.00,NULL,NULL,'P20901X1',NULL,'USD',NULL,NULL,NULL,NULL,'Online: Save the Penguins',NULL,NULL,0,0,1,NULL,NULL,NULL),(3,6,1,NULL,4,'2010-04-29 00:00:00',0.00,25.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Apr 2007 Mailer 1',NULL,NULL,0,0,1,NULL,'2095',NULL),(4,8,1,NULL,4,'2010-04-11 00:00:00',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Apr 2007 Mailer 1',NULL,NULL,0,0,1,NULL,'10552',NULL),(5,16,1,NULL,4,'2010-04-15 00:00:00',0.00,500.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Apr 2007 Mailer 1',NULL,NULL,0,0,1,NULL,'509',NULL),(6,19,1,NULL,4,'2010-04-11 00:00:00',0.00,175.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Apr 2007 Mailer 1',NULL,NULL,0,0,1,NULL,'102',NULL),(7,82,1,NULL,1,'2010-03-27 00:00:00',0.00,50.00,NULL,NULL,'P20193L2',NULL,'USD',NULL,NULL,NULL,NULL,'Online: Save the Penguins',NULL,NULL,0,0,1,NULL,NULL,NULL),(8,92,1,NULL,1,'2010-03-08 00:00:00',0.00,10.00,NULL,NULL,'P40232Y3',NULL,'USD',NULL,NULL,NULL,NULL,'Online: Help CiviCRM',NULL,NULL,0,0,1,NULL,NULL,NULL),(9,34,1,NULL,1,'2010-04-22 00:00:00',0.00,250.00,NULL,NULL,'P20193L6',NULL,'USD',NULL,NULL,NULL,NULL,'Online: Help CiviCRM',NULL,NULL,0,0,1,NULL,NULL,NULL),(10,71,1,NULL,1,'2009-07-01 11:53:50',0.00,500.00,NULL,NULL,'PL71',NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,NULL,NULL,NULL),(11,43,1,NULL,1,'2009-07-01 12:55:41',0.00,200.00,NULL,NULL,'PL43II',NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,NULL,NULL,NULL),(12,32,1,NULL,1,'2009-10-01 11:53:50',0.00,200.00,NULL,NULL,'PL32I',NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,NULL,NULL,NULL),(13,32,1,NULL,1,'2009-12-01 12:55:41',0.00,200.00,NULL,NULL,'PL32II',NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,NULL,NULL,NULL),(14,100,2,NULL,1,'2014-01-23 23:37:54',0.00,100.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL),(15,31,2,NULL,1,'2014-01-23 23:37:54',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL),(16,165,2,NULL,1,'2014-01-23 23:37:54',0.00,100.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL),(17,87,2,NULL,1,'2014-01-23 23:37:54',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL),(18,143,2,NULL,1,'2014-01-23 23:37:54',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL),(19,21,2,NULL,1,'2014-01-23 23:37:54',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL),(20,172,2,NULL,1,'2014-01-23 23:37:54',0.00,100.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL),(21,71,2,NULL,1,'2014-01-23 23:37:54',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL),(22,19,2,NULL,1,'2014-01-23 23:37:54',0.00,100.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL),(23,185,2,NULL,1,'2014-01-23 23:37:54',0.00,100.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL),(24,85,2,NULL,1,'2014-01-23 23:37:54',0.00,1200.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Lifetime Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL),(25,122,2,NULL,1,'2014-01-23 23:37:54',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL),(26,150,2,NULL,1,'2014-01-23 23:37:54',0.00,100.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL),(27,189,2,NULL,1,'2014-01-23 23:37:54',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL),(28,135,2,NULL,1,'2014-01-23 23:37:54',0.00,100.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL),(29,72,2,NULL,1,'2014-01-23 23:37:54',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL),(30,151,2,NULL,1,'2014-01-23 23:37:54',0.00,100.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL),(31,90,2,NULL,1,'2014-01-23 23:37:54',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL),(32,111,2,NULL,1,'2014-01-23 23:37:54',0.00,100.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL),(33,48,2,NULL,1,'2014-01-23 23:37:54',0.00,100.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL),(34,59,2,NULL,1,'2014-01-23 23:37:54',0.00,100.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL),(35,110,2,NULL,1,'2014-01-23 23:37:54',0.00,1200.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Lifetime Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL),(36,36,2,NULL,1,'2014-01-23 23:37:54',0.00,100.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL),(37,191,2,NULL,1,'2014-01-23 23:37:54',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL),(38,182,2,NULL,1,'2014-01-23 23:37:54',0.00,100.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL),(39,62,2,NULL,1,'2014-01-23 23:37:54',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL),(40,102,2,NULL,1,'2014-01-23 23:37:54',0.00,100.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL),(41,177,2,NULL,1,'2014-01-23 23:37:54',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL),(42,80,2,NULL,1,'2014-01-23 23:37:54',0.00,100.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL),(43,41,2,NULL,1,'2014-01-23 23:37:54',0.00,100.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL),(45,2,4,NULL,1,'2014-01-23 23:38:07',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-23 23:38:07',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL),(46,5,4,NULL,1,'2014-01-23 23:38:07',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-23 23:38:07',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL),(47,8,4,NULL,1,'2014-01-23 23:38:07',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-23 23:38:07',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL),(48,15,4,NULL,1,'2014-01-23 23:38:07',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-23 23:38:07',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL),(49,19,4,NULL,1,'2014-01-23 23:38:07',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-23 23:38:07',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL),(50,23,4,NULL,1,'2014-01-23 23:38:07',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-23 23:38:07',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL),(51,25,4,NULL,1,'2014-01-23 23:38:07',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-23 23:38:07',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL),(52,26,4,NULL,1,'2014-01-23 23:38:07',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-23 23:38:07',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL),(53,27,4,NULL,1,'2014-01-23 23:38:07',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-23 23:38:07',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL),(54,30,4,NULL,1,'2014-01-23 23:38:07',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-23 23:38:07',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL),(55,36,4,NULL,1,'2014-01-23 23:38:07',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-23 23:38:07',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL),(56,37,4,NULL,1,'2014-01-23 23:38:07',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-23 23:38:07',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL),(57,40,4,NULL,1,'2014-01-23 23:38:07',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-23 23:38:07',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL),(58,41,4,NULL,1,'2014-01-23 23:38:07',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-23 23:38:07',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL),(59,44,4,NULL,1,'2014-01-23 23:38:07',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-23 23:38:07',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL),(60,46,4,NULL,1,'2014-01-23 23:38:07',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-23 23:38:07',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL),(61,49,4,NULL,1,'2014-01-23 23:38:07',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-23 23:38:07',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL),(62,51,4,NULL,1,'2014-01-23 23:38:07',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-23 23:38:07',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL),(63,53,4,NULL,1,'2014-01-23 23:38:07',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-23 23:38:07',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL),(64,56,4,NULL,1,'2014-01-23 23:38:07',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-23 23:38:07',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL),(65,57,4,NULL,1,'2014-01-23 23:38:07',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-23 23:38:07',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL),(66,58,4,NULL,1,'2014-01-23 23:38:07',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-23 23:38:07',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL),(67,64,4,NULL,1,'2014-01-23 23:38:07',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-23 23:38:07',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL),(68,68,4,NULL,1,'2014-01-23 23:38:07',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-23 23:38:07',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL),(69,73,4,NULL,1,'2014-01-23 23:38:07',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-23 23:38:07',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL),(70,85,4,NULL,1,'2014-01-23 23:38:07',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-23 23:38:07',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL),(71,88,4,NULL,1,'2014-01-23 23:38:07',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-23 23:38:07',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL),(72,91,4,NULL,1,'2014-01-23 23:38:07',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-23 23:38:07',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL),(73,94,4,NULL,1,'2014-01-23 23:38:07',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-23 23:38:07',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL),(74,97,4,NULL,1,'2014-01-23 23:38:07',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-23 23:38:07',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL),(75,105,4,NULL,1,'2014-01-23 23:38:07',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-23 23:38:07',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL),(76,108,4,NULL,1,'2014-01-23 23:38:07',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-23 23:38:07',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL),(77,109,4,NULL,1,'2014-01-23 23:38:07',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-23 23:38:07',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL),(78,110,4,NULL,1,'2014-01-23 23:38:07',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-23 23:38:07',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL),(79,114,4,NULL,1,'2014-01-23 23:38:07',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-23 23:38:07',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL),(80,119,4,NULL,1,'2014-01-23 23:38:07',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-23 23:38:07',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL),(81,121,4,NULL,1,'2014-01-23 23:38:07',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-23 23:38:07',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL),(82,131,4,NULL,1,'2014-01-23 23:38:07',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-23 23:38:07',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL),(83,141,4,NULL,1,'2014-01-23 23:38:07',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-23 23:38:07',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL),(84,142,4,NULL,1,'2014-01-23 23:38:07',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-23 23:38:07',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL),(85,150,4,NULL,1,'2014-01-23 23:38:07',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-23 23:38:07',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL),(86,151,4,NULL,1,'2014-01-23 23:38:07',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-23 23:38:07',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL),(87,156,4,NULL,1,'2014-01-23 23:38:07',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-23 23:38:07',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL),(88,160,4,NULL,1,'2014-01-23 23:38:07',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-23 23:38:07',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL),(89,170,4,NULL,1,'2014-01-23 23:38:07',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-23 23:38:07',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL),(90,178,4,NULL,1,'2014-01-23 23:38:07',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-23 23:38:07',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL),(91,184,4,NULL,1,'2014-01-23 23:38:07',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-23 23:38:07',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL),(92,188,4,NULL,1,'2014-01-23 23:38:07',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-23 23:38:07',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL),(93,194,4,NULL,1,'2014-01-23 23:38:07',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-23 23:38:07',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL),(94,201,4,NULL,1,'2014-01-23 23:38:07',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-23 23:38:07',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,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`, `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`) VALUES (1,2,1,NULL,4,'2010-04-11 00:00:00',0.00,125.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Apr 2007 Mailer 1',NULL,NULL,0,0,1,NULL,'1041',NULL),(2,4,1,NULL,1,'2010-03-21 00:00:00',0.00,50.00,NULL,NULL,'P20901X1',NULL,'USD',NULL,NULL,NULL,NULL,'Online: Save the Penguins',NULL,NULL,0,0,1,NULL,NULL,NULL),(3,6,1,NULL,4,'2010-04-29 00:00:00',0.00,25.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Apr 2007 Mailer 1',NULL,NULL,0,0,1,NULL,'2095',NULL),(4,8,1,NULL,4,'2010-04-11 00:00:00',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Apr 2007 Mailer 1',NULL,NULL,0,0,1,NULL,'10552',NULL),(5,16,1,NULL,4,'2010-04-15 00:00:00',0.00,500.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Apr 2007 Mailer 1',NULL,NULL,0,0,1,NULL,'509',NULL),(6,19,1,NULL,4,'2010-04-11 00:00:00',0.00,175.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Apr 2007 Mailer 1',NULL,NULL,0,0,1,NULL,'102',NULL),(7,82,1,NULL,1,'2010-03-27 00:00:00',0.00,50.00,NULL,NULL,'P20193L2',NULL,'USD',NULL,NULL,NULL,NULL,'Online: Save the Penguins',NULL,NULL,0,0,1,NULL,NULL,NULL),(8,92,1,NULL,1,'2010-03-08 00:00:00',0.00,10.00,NULL,NULL,'P40232Y3',NULL,'USD',NULL,NULL,NULL,NULL,'Online: Help CiviCRM',NULL,NULL,0,0,1,NULL,NULL,NULL),(9,34,1,NULL,1,'2010-04-22 00:00:00',0.00,250.00,NULL,NULL,'P20193L6',NULL,'USD',NULL,NULL,NULL,NULL,'Online: Help CiviCRM',NULL,NULL,0,0,1,NULL,NULL,NULL),(10,71,1,NULL,1,'2009-07-01 11:53:50',0.00,500.00,NULL,NULL,'PL71',NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,NULL,NULL,NULL),(11,43,1,NULL,1,'2009-07-01 12:55:41',0.00,200.00,NULL,NULL,'PL43II',NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,NULL,NULL,NULL),(12,32,1,NULL,1,'2009-10-01 11:53:50',0.00,200.00,NULL,NULL,'PL32I',NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,NULL,NULL,NULL),(13,32,1,NULL,1,'2009-12-01 12:55:41',0.00,200.00,NULL,NULL,'PL32II',NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,NULL,NULL,NULL),(14,54,2,NULL,1,'2014-01-28 18:16:14',0.00,100.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL),(15,171,2,NULL,1,'2014-01-28 18:16:14',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL),(16,197,2,NULL,1,'2014-01-28 18:16:14',0.00,100.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL),(17,150,2,NULL,1,'2014-01-28 18:16:14',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL),(18,52,2,NULL,1,'2014-01-28 18:16:14',0.00,100.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL),(19,83,2,NULL,1,'2014-01-28 18:16:14',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL),(20,21,2,NULL,1,'2014-01-28 18:16:14',0.00,100.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL),(21,129,2,NULL,1,'2014-01-28 18:16:14',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL),(22,4,2,NULL,1,'2014-01-28 18:16:14',0.00,100.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL),(23,88,2,NULL,1,'2014-01-28 18:16:14',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL),(24,112,2,NULL,1,'2014-01-28 18:16:14',0.00,1200.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Lifetime Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL),(25,47,2,NULL,1,'2014-01-28 18:16:14',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL),(26,130,2,NULL,1,'2014-01-28 18:16:14',0.00,100.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL),(27,162,2,NULL,1,'2014-01-28 18:16:14',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL),(28,128,2,NULL,1,'2014-01-28 18:16:14',0.00,100.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL),(29,39,2,NULL,1,'2014-01-28 18:16:14',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL),(30,30,2,NULL,1,'2014-01-28 18:16:14',0.00,100.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL),(31,27,2,NULL,1,'2014-01-28 18:16:14',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL),(32,132,2,NULL,1,'2014-01-28 18:16:14',0.00,100.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL),(33,201,2,NULL,1,'2014-01-28 18:16:14',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL),(34,74,2,NULL,1,'2014-01-28 18:16:14',0.00,100.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL),(35,125,2,NULL,1,'2014-01-28 18:16:14',0.00,1200.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Lifetime Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL),(36,18,2,NULL,1,'2014-01-28 18:16:14',0.00,100.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL),(37,31,2,NULL,1,'2014-01-28 18:16:14',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL),(38,120,2,NULL,1,'2014-01-28 18:16:14',0.00,100.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL),(39,137,2,NULL,1,'2014-01-28 18:16:14',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL),(40,34,2,NULL,1,'2014-01-28 18:16:14',0.00,100.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL),(41,59,2,NULL,1,'2014-01-28 18:16:14',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL),(42,58,2,NULL,1,'2014-01-28 18:16:14',0.00,100.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL),(43,114,2,NULL,1,'2014-01-28 18:16:14',0.00,100.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL),(45,2,4,NULL,1,'2014-01-28 18:16:27',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-28 18:16:27',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL),(46,3,4,NULL,1,'2014-01-28 18:16:27',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-28 18:16:27',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL),(47,5,4,NULL,1,'2014-01-28 18:16:27',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-28 18:16:27',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL),(48,7,4,NULL,1,'2014-01-28 18:16:27',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-28 18:16:27',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL),(49,14,4,NULL,1,'2014-01-28 18:16:27',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-28 18:16:27',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL),(50,24,4,NULL,1,'2014-01-28 18:16:27',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-28 18:16:27',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL),(51,31,4,NULL,1,'2014-01-28 18:16:27',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-28 18:16:27',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL),(52,36,4,NULL,1,'2014-01-28 18:16:27',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-28 18:16:27',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL),(53,37,4,NULL,1,'2014-01-28 18:16:27',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-28 18:16:27',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL),(54,38,4,NULL,1,'2014-01-28 18:16:27',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-28 18:16:27',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL),(55,40,4,NULL,1,'2014-01-28 18:16:27',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-28 18:16:27',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL),(56,61,4,NULL,1,'2014-01-28 18:16:27',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-28 18:16:27',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL),(57,72,4,NULL,1,'2014-01-28 18:16:27',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-28 18:16:27',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL),(58,73,4,NULL,1,'2014-01-28 18:16:27',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-28 18:16:27',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL),(59,78,4,NULL,1,'2014-01-28 18:16:27',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-28 18:16:27',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL),(60,80,4,NULL,1,'2014-01-28 18:16:27',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-28 18:16:27',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL),(61,82,4,NULL,1,'2014-01-28 18:16:27',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-28 18:16:27',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL),(62,86,4,NULL,1,'2014-01-28 18:16:27',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-28 18:16:27',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL),(63,88,4,NULL,1,'2014-01-28 18:16:27',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-28 18:16:27',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL),(64,91,4,NULL,1,'2014-01-28 18:16:27',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-28 18:16:27',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL),(65,92,4,NULL,1,'2014-01-28 18:16:27',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-28 18:16:27',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL),(66,97,4,NULL,1,'2014-01-28 18:16:27',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-28 18:16:27',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL),(67,100,4,NULL,1,'2014-01-28 18:16:27',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-28 18:16:27',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL),(68,104,4,NULL,1,'2014-01-28 18:16:27',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-28 18:16:27',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL),(69,105,4,NULL,1,'2014-01-28 18:16:27',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-28 18:16:27',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL),(70,106,4,NULL,1,'2014-01-28 18:16:27',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-28 18:16:27',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL),(71,108,4,NULL,1,'2014-01-28 18:16:27',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-28 18:16:27',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL),(72,121,4,NULL,1,'2014-01-28 18:16:27',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-28 18:16:27',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL),(73,122,4,NULL,1,'2014-01-28 18:16:27',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-28 18:16:27',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL),(74,123,4,NULL,1,'2014-01-28 18:16:27',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-28 18:16:27',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL),(75,124,4,NULL,1,'2014-01-28 18:16:27',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-28 18:16:27',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL),(76,127,4,NULL,1,'2014-01-28 18:16:27',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-28 18:16:27',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL),(77,129,4,NULL,1,'2014-01-28 18:16:27',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-28 18:16:27',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL),(78,133,4,NULL,1,'2014-01-28 18:16:27',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-28 18:16:27',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL),(79,134,4,NULL,1,'2014-01-28 18:16:27',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-28 18:16:27',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL),(80,137,4,NULL,1,'2014-01-28 18:16:27',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-28 18:16:27',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL),(81,140,4,NULL,1,'2014-01-28 18:16:27',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-28 18:16:27',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL),(82,142,4,NULL,1,'2014-01-28 18:16:27',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-28 18:16:27',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL),(83,149,4,NULL,1,'2014-01-28 18:16:27',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-28 18:16:27',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL),(84,157,4,NULL,1,'2014-01-28 18:16:27',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-28 18:16:27',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL),(85,161,4,NULL,1,'2014-01-28 18:16:27',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-28 18:16:27',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL),(86,167,4,NULL,1,'2014-01-28 18:16:27',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-28 18:16:27',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL),(87,173,4,NULL,1,'2014-01-28 18:16:27',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-28 18:16:27',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL),(88,174,4,NULL,1,'2014-01-28 18:16:27',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-28 18:16:27',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL),(89,175,4,NULL,1,'2014-01-28 18:16:27',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-28 18:16:27',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL),(90,177,4,NULL,1,'2014-01-28 18:16:27',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-28 18:16:27',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL),(91,178,4,NULL,1,'2014-01-28 18:16:27',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-28 18:16:27',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL),(92,184,4,NULL,1,'2014-01-28 18:16:27',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-28 18:16:27',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL),(93,187,4,NULL,1,'2014-01-28 18:16:27',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-28 18:16:27',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL),(94,195,4,NULL,1,'2014-01-28 18:16:27',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-28 18:16:27',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL); /*!40000 ALTER TABLE `civicrm_contribution` ENABLE KEYS */; UNLOCK TABLES; @@ -258,7 +258,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,146,10.00,'USD',1,1,'Jones Family','Helping Hands',10),(2,9,146,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,54,10.00,'USD',1,1,'Jones Family','Helping Hands',10),(2,9,54,250.00,'USD',1,1,'Annie and the kids','Annie Helps',10); /*!40000 ALTER TABLE `civicrm_contribution_soft` ENABLE KEYS */; UNLOCK TABLES; @@ -392,7 +392,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,172,1,'scarlet@fishmail.info',1,0,0,0,NULL,NULL,NULL,NULL),(3,88,1,'brigettes49@airmail.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(4,146,1,'mg.daz8@lol.org',1,0,0,0,NULL,NULL,NULL,NULL),(5,146,1,'magand62@infomail.co.pl',0,0,0,0,NULL,NULL,NULL,NULL),(6,103,1,'cooper.bryon@testing.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(7,30,1,'bmller@testmail.info',1,0,0,0,NULL,NULL,NULL,NULL),(8,81,1,'alidanielsen@fishmail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(9,81,1,'alidan99@infomail.com',0,0,0,0,NULL,NULL,NULL,NULL),(10,137,1,'jacobs.e.roland76@testing.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(11,169,1,'rebekaha@notmail.biz',1,0,0,0,NULL,NULL,NULL,NULL),(12,169,1,'rebekahadams86@infomail.co.pl',0,0,0,0,NULL,NULL,NULL,NULL),(13,177,1,'ivanovl@airmail.biz',1,0,0,0,NULL,NULL,NULL,NULL),(14,177,1,'ivanov.lashawnda@airmail.net',0,0,0,0,NULL,NULL,NULL,NULL),(15,152,1,'prentice.jina44@mymail.info',1,0,0,0,NULL,NULL,NULL,NULL),(16,152,1,'jprentice51@spamalot.info',0,0,0,0,NULL,NULL,NULL,NULL),(17,159,1,'nielsen.i.maria39@sample.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(18,159,1,'nielsen.i.maria72@lol.co.uk',0,0,0,0,NULL,NULL,NULL,NULL),(19,3,1,'junkos@lol.info',1,0,0,0,NULL,NULL,NULL,NULL),(20,124,1,'smitho18@fishmail.info',1,0,0,0,NULL,NULL,NULL,NULL),(21,124,1,'osmith11@infomail.org',0,0,0,0,NULL,NULL,NULL,NULL),(22,150,1,'rf.yadav@fishmail.com',1,0,0,0,NULL,NULL,NULL,NULL),(23,150,1,'rolandyadav74@testing.info',0,0,0,0,NULL,NULL,NULL,NULL),(24,89,1,'carlosdaz16@testing.com',1,0,0,0,NULL,NULL,NULL,NULL),(25,4,1,'jacobso78@example.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(26,4,1,'omarjacobs56@mymail.co.in',0,0,0,0,NULL,NULL,NULL,NULL),(27,164,1,'omarcruz@sample.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(28,164,1,'cruzo38@airmail.co.nz',0,0,0,0,NULL,NULL,NULL,NULL),(29,90,1,'tlee54@infomail.com',1,0,0,0,NULL,NULL,NULL,NULL),(30,67,1,'elizabethyadav@notmail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(31,82,1,'iveyj18@fishmail.net',1,0,0,0,NULL,NULL,NULL,NULL),(32,82,1,'jonesi69@sample.com',0,0,0,0,NULL,NULL,NULL,NULL),(33,42,1,'kaceysamuels20@fishmail.net',1,0,0,0,NULL,NULL,NULL,NULL),(34,57,1,'mp.nielsen69@sample.biz',1,0,0,0,NULL,NULL,NULL,NULL),(35,57,1,'megannielsen4@testing.biz',0,0,0,0,NULL,NULL,NULL,NULL),(36,188,1,'dimitrovl95@example.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(37,160,1,'patel.d.toby11@testing.net',1,0,0,0,NULL,NULL,NULL,NULL),(38,28,1,'br.daz@example.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(39,70,1,'scarletsamuels@infomail.com',1,0,0,0,NULL,NULL,NULL,NULL),(40,156,1,'sharynp68@example.org',1,0,0,0,NULL,NULL,NULL,NULL),(41,166,1,'alidawattson@airmail.net',1,0,0,0,NULL,NULL,NULL,NULL),(42,166,1,'alidawattson@testing.co.nz',0,0,0,0,NULL,NULL,NULL,NULL),(43,49,1,'barkleyv69@spamalot.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(44,91,1,'estabarkley@lol.biz',1,0,0,0,NULL,NULL,NULL,NULL),(45,196,1,'loub@testmail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(46,173,1,'miguelparker42@fishmail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(47,55,1,'chowski.shad54@infomail.net',1,0,0,0,NULL,NULL,NULL,NULL),(48,55,1,'chowskis19@fishmail.com',0,0,0,0,NULL,NULL,NULL,NULL),(49,99,1,'carylont@spamalot.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(50,128,1,'jonesb@lol.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(51,36,1,'ec.barkley@fakemail.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(52,75,1,'gonzlezb53@sample.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(53,76,1,'dazi49@fakemail.info',1,0,0,0,NULL,NULL,NULL,NULL),(54,76,1,'irisdaz@fakemail.co.pl',0,0,0,0,NULL,NULL,NULL,NULL),(55,45,1,'olsenc81@testmail.com',1,0,0,0,NULL,NULL,NULL,NULL),(56,45,1,'claudioo75@spamalot.info',0,0,0,0,NULL,NULL,NULL,NULL),(57,77,1,'cruzb83@testmail.biz',1,0,0,0,NULL,NULL,NULL,NULL),(58,114,1,'eadams@fakemail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(59,114,1,'adams.erik66@example.biz',0,0,0,0,NULL,NULL,NULL,NULL),(60,102,1,'roberts.alida@testing.com',1,0,0,0,NULL,NULL,NULL,NULL),(61,102,1,'alidar@testmail.info',0,0,0,0,NULL,NULL,NULL,NULL),(62,11,1,'agonzlez1@fishmail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(63,135,1,'ashleyjameson26@airmail.com',1,0,0,0,NULL,NULL,NULL,NULL),(64,135,1,'jamesona90@example.co.pl',0,0,0,0,NULL,NULL,NULL,NULL),(65,118,1,'eleonorjones@fakemail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(66,192,1,'robertson.jacob@lol.biz',1,0,0,0,NULL,NULL,NULL,NULL),(67,192,1,'jacobrobertson92@lol.co.in',0,0,0,0,NULL,NULL,NULL,NULL),(68,63,1,'nu.barkley@lol.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(69,63,1,'barkley.norris@testing.biz',0,0,0,0,NULL,NULL,NULL,NULL),(70,174,1,'mcreynolds.e.tanya@testing.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(71,171,1,'olsen.rosario@lol.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(72,171,1,'rosarioolsen65@fishmail.co.uk',0,0,0,0,NULL,NULL,NULL,NULL),(73,87,1,'jamesonm@spamalot.biz',1,0,0,0,NULL,NULL,NULL,NULL),(74,87,1,'merriej7@sample.co.uk',0,0,0,0,NULL,NULL,NULL,NULL),(75,185,1,'lawerencemller45@testing.com',1,0,0,0,NULL,NULL,NULL,NULL),(76,94,1,'jb.smith@testing.biz',1,0,0,0,NULL,NULL,NULL,NULL),(77,94,1,'smithj44@spamalot.co.pl',0,0,0,0,NULL,NULL,NULL,NULL),(78,100,1,'wattsonb@mymail.biz',1,0,0,0,NULL,NULL,NULL,NULL),(79,100,1,'bryonw7@lol.co.pl',0,0,0,0,NULL,NULL,NULL,NULL),(80,21,1,'terry.bryon@notmail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(81,21,1,'bryonterry@airmail.co.uk',0,0,0,0,NULL,NULL,NULL,NULL),(82,29,1,'terrell.sharyn52@spamalot.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(83,136,1,'lterrell@spamalot.net',1,0,0,0,NULL,NULL,NULL,NULL),(84,136,1,'terrelll@lol.com',0,0,0,0,NULL,NULL,NULL,NULL),(85,74,1,'darenterrell69@fakemail.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(86,14,1,'rosariod@testing.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(87,14,1,'deforest.rosario@testmail.co.nz',0,0,0,0,NULL,NULL,NULL,NULL),(88,180,1,'deforest.bryon@infomail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(89,15,1,'jayy@sample.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(90,20,1,'samuels.arlyne@mymail.org',1,0,0,0,NULL,NULL,NULL,NULL),(91,61,1,'yadav-samuelsb@spamalot.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(92,134,1,'yadav-samuels.scarlet@testing.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(93,134,1,'sm.yadav-samuels79@mymail.co.in',0,0,0,0,NULL,NULL,NULL,NULL),(94,31,1,'rolandow@fakemail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(95,31,1,'rw.wagner13@fishmail.co.nz',0,0,0,0,NULL,NULL,NULL,NULL),(96,39,1,'kiaraivanov79@sample.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(97,39,1,'kiarai@spamalot.info',0,0,0,0,NULL,NULL,NULL,NULL),(98,56,1,'wagner-ivanov.l.jed68@mymail.net',1,0,0,0,NULL,NULL,NULL,NULL),(99,96,1,'dazj@mymail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(100,96,1,'julianndaz22@airmail.info',0,0,0,0,NULL,NULL,NULL,NULL),(101,105,1,'ladams-daz@sample.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(102,38,1,'iadams-daz6@infomail.org',1,0,0,0,NULL,NULL,NULL,NULL),(103,38,1,'adams-dazi38@example.biz',0,0,0,0,NULL,NULL,NULL,NULL),(104,184,1,'maxwellm35@mymail.org',1,0,0,0,NULL,NULL,NULL,NULL),(105,184,1,'mcreynolds.maxwell74@sample.net',0,0,0,0,NULL,NULL,NULL,NULL),(106,122,1,'rc.samuels@infomail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(107,141,1,'iveysamuels@fakemail.net',1,0,0,0,NULL,NULL,NULL,NULL),(108,195,1,'delanas@spamalot.com',1,0,0,0,NULL,NULL,NULL,NULL),(109,195,1,'samuelsd66@example.net',0,0,0,0,NULL,NULL,NULL,NULL),(110,10,1,'mariasamuels@fishmail.org',1,0,0,0,NULL,NULL,NULL,NULL),(111,131,1,'lincolnb@spamalot.org',1,0,0,0,NULL,NULL,NULL,NULL),(112,131,1,'lincolnb@spamalot.info',0,0,0,0,NULL,NULL,NULL,NULL),(113,111,1,'barkleyt@notmail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(114,111,1,'barkley.teresa52@fakemail.co.pl',0,0,0,0,NULL,NULL,NULL,NULL),(115,79,1,'barkleyi70@lol.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(116,79,1,'barkley.ivey@fakemail.biz',0,0,0,0,NULL,NULL,NULL,NULL),(117,162,1,'smithc97@notmail.info',1,0,0,0,NULL,NULL,NULL,NULL),(118,162,1,'smith.claudio87@lol.net',0,0,0,0,NULL,NULL,NULL,NULL),(119,191,1,'smithk91@mymail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(120,154,1,'rosarios@testing.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(121,80,1,'barkley.s.truman@spamalot.org',1,0,0,0,NULL,NULL,NULL,NULL),(122,35,1,'barkley.megan@example.net',1,0,0,0,NULL,NULL,NULL,NULL),(123,35,1,'barkley.megan23@testmail.com',0,0,0,0,NULL,NULL,NULL,NULL),(124,48,1,'barkley.c.teresa40@spamalot.net',1,0,0,0,NULL,NULL,NULL,NULL),(125,48,1,'teresab@sample.biz',0,0,0,0,NULL,NULL,NULL,NULL),(126,109,1,'scooper51@fishmail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(127,109,1,'cooper.sonny@lol.com',0,0,0,0,NULL,NULL,NULL,NULL),(128,32,1,'cooper.princess19@lol.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(129,32,1,'cooper.princess@infomail.info',0,0,0,0,NULL,NULL,NULL,NULL),(130,95,1,'louc38@infomail.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(131,95,1,'cooper.lou@testing.net',0,0,0,0,NULL,NULL,NULL,NULL),(132,62,1,'eivanov44@airmail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(133,62,1,'ivanov.erik@fishmail.net',0,0,0,0,NULL,NULL,NULL,NULL),(134,165,1,'magani78@airmail.biz',1,0,0,0,NULL,NULL,NULL,NULL),(135,107,1,'ivanovp70@fakemail.net',1,0,0,0,NULL,NULL,NULL,NULL),(136,37,1,'ivanovk@example.biz',1,0,0,0,NULL,NULL,NULL,NULL),(137,37,1,'ivanov.kacey@testmail.co.uk',0,0,0,0,NULL,NULL,NULL,NULL),(138,97,1,'jo.chowski89@spamalot.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(139,126,1,'eleonor@sample.info',1,0,0,0,NULL,NULL,NULL,NULL),(140,126,1,'chowskie58@testing.com',0,0,0,0,NULL,NULL,NULL,NULL),(141,54,1,'chowski.valene7@testmail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(142,116,1,'dimitrovl1@example.com',1,0,0,0,NULL,NULL,NULL,NULL),(143,116,1,'landond26@notmail.net',0,0,0,0,NULL,NULL,NULL,NULL),(144,145,1,'yadav.carlos@sample.info',1,0,0,0,NULL,NULL,NULL,NULL),(145,145,1,'yadav.k.carlos@mymail.co.uk',0,0,0,0,NULL,NULL,NULL,NULL),(146,9,1,'kathleeni@example.info',1,0,0,0,NULL,NULL,NULL,NULL),(147,52,1,'josefab@testmail.com',1,0,0,0,NULL,NULL,NULL,NULL),(148,52,1,'josefab@spamalot.info',0,0,0,0,NULL,NULL,NULL,NULL),(149,139,1,'ivanov-blackwell.sanford@testing.com',1,0,0,0,NULL,NULL,NULL,NULL),(150,43,1,'ashliei58@fishmail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(151,176,1,'ch.ivanov@notmail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(152,176,1,'ivanov.carlos@infomail.info',0,0,0,0,NULL,NULL,NULL,NULL),(153,170,1,'kandaceivanov96@spamalot.net',1,0,0,0,NULL,NULL,NULL,NULL),(154,182,1,'sivanov@mymail.biz',1,0,0,0,NULL,NULL,NULL,NULL),(155,182,1,'sivanov@example.co.pl',0,0,0,0,NULL,NULL,NULL,NULL),(156,27,1,'raychowski@fishmail.biz',1,0,0,0,NULL,NULL,NULL,NULL),(157,123,1,'robertsonm@fakemail.net',1,0,0,0,NULL,NULL,NULL,NULL),(158,123,1,'robertson.merrie@example.org',0,0,0,0,NULL,NULL,NULL,NULL),(159,108,1,'breynolds-chowski-olsen70@spamalot.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(160,25,1,'chowski-olsen.laree@fakemail.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(161,25,1,'lchowski-olsen@testmail.co.pl',0,0,0,0,NULL,NULL,NULL,NULL),(162,34,1,'brzczysawchowski-olsen@mymail.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(163,157,3,'contact@secondsystems.org',1,0,0,0,NULL,NULL,NULL,NULL),(164,152,2,'prentice.jina@secondsystems.org',0,0,0,0,NULL,NULL,NULL,NULL),(165,132,3,'feedback@progressiveagriculture.org',1,0,0,0,NULL,NULL,NULL,NULL),(166,46,2,'scarletw14@progressiveagriculture.org',1,0,0,0,NULL,NULL,NULL,NULL),(167,187,3,'contact@fwmusicalliance.org',1,0,0,0,NULL,NULL,NULL,NULL),(168,142,3,'info@urbanhealthservices.org',1,0,0,0,NULL,NULL,NULL,NULL),(169,192,2,'.@urbanhealthservices.org',0,0,0,0,NULL,NULL,NULL,NULL),(170,104,3,'sales@globalinitiative.org',1,0,0,0,NULL,NULL,NULL,NULL),(171,74,2,'darenterrell18@globalinitiative.org',0,0,0,0,NULL,NULL,NULL,NULL),(172,53,3,'service@ohiopartnership.org',1,0,0,0,NULL,NULL,NULL,NULL),(173,139,2,'ivanov-blackwell.sanford@ohiopartnership.org',0,0,0,0,NULL,NULL,NULL,NULL),(174,119,3,'info@ecactionalliance.org',1,0,0,0,NULL,NULL,NULL,NULL),(175,175,3,'contact@virginiatrust.org',1,0,0,0,NULL,NULL,NULL,NULL),(176,34,2,'chowski-olsen.brzczysaw@virginiatrust.org',0,0,0,0,NULL,NULL,NULL,NULL),(177,12,3,'sales@collegesolutions.org',1,0,0,0,NULL,NULL,NULL,NULL),(178,109,2,'.@collegesolutions.org',0,0,0,0,NULL,NULL,NULL,NULL),(179,69,3,'sales@progressivearts.org',1,0,0,0,NULL,NULL,NULL,NULL),(180,85,2,'kathlynterry93@progressivearts.org',1,0,0,0,NULL,NULL,NULL,NULL),(181,179,3,'contact@statesassociation.org',1,0,0,0,NULL,NULL,NULL,NULL),(182,162,2,'@statesassociation.org',0,0,0,0,NULL,NULL,NULL,NULL),(183,NULL,1,'development@example.org',0,0,0,0,NULL,NULL,NULL,NULL),(184,NULL,1,'tournaments@example.org',0,0,0,0,NULL,NULL,NULL,NULL),(185,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,34,1,'bs.samuels@mymail.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(3,54,1,'yadav.truman@sample.com',1,0,0,0,NULL,NULL,NULL,NULL),(4,41,1,'kiarapatel@airmail.net',1,0,0,0,NULL,NULL,NULL,NULL),(5,41,1,'kiarap@example.co.nz',0,0,0,0,NULL,NULL,NULL,NULL),(6,178,1,'fmcreynolds@fakemail.info',1,0,0,0,NULL,NULL,NULL,NULL),(7,178,1,'mcreynoldsf@spamalot.biz',0,0,0,0,NULL,NULL,NULL,NULL),(8,29,1,'clints25@airmail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(9,180,1,'dl.mller@notmail.org',1,0,0,0,NULL,NULL,NULL,NULL),(10,66,1,'norrisp@fishmail.com',1,0,0,0,NULL,NULL,NULL,NULL),(11,32,1,'terryb58@fishmail.biz',1,0,0,0,NULL,NULL,NULL,NULL),(12,134,1,'lee.angelika81@airmail.info',1,0,0,0,NULL,NULL,NULL,NULL),(13,26,1,'cooperk72@fakemail.org',1,0,0,0,NULL,NULL,NULL,NULL),(14,26,1,'kcooper@fishmail.co.uk',0,0,0,0,NULL,NULL,NULL,NULL),(15,165,1,'brittneyp34@testmail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(16,165,1,'prentice.h.brittney64@testmail.co.nz',0,0,0,0,NULL,NULL,NULL,NULL),(17,179,1,'scottw@lol.org',1,0,0,0,NULL,NULL,NULL,NULL),(18,179,1,'swagner@testmail.com',0,0,0,0,NULL,NULL,NULL,NULL),(19,183,1,'cooper.maria34@lol.com',1,0,0,0,NULL,NULL,NULL,NULL),(20,183,1,'cooper.maria73@airmail.net',0,0,0,0,NULL,NULL,NULL,NULL),(21,8,1,'arlyned@spamalot.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(22,8,1,'adeforest21@fakemail.info',0,0,0,0,NULL,NULL,NULL,NULL),(23,86,1,'barryj@sample.net',1,0,0,0,NULL,NULL,NULL,NULL),(24,86,1,'barryjensen@mymail.org',0,0,0,0,NULL,NULL,NULL,NULL),(25,116,1,'blackwell.sanford@fakemail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(26,116,1,'sanfordblackwell@sample.info',0,0,0,0,NULL,NULL,NULL,NULL),(27,52,1,'wattson.allan@lol.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(28,52,1,'wattson.allan63@mymail.co.in',0,0,0,0,NULL,NULL,NULL,NULL),(29,186,1,'brentg@airmail.biz',1,0,0,0,NULL,NULL,NULL,NULL),(30,108,1,'prentice.beula@fakemail.com',1,0,0,0,NULL,NULL,NULL,NULL),(31,108,1,'beulaprentice@testing.co.uk',0,0,0,0,NULL,NULL,NULL,NULL),(32,24,1,'mller.craig@spamalot.biz',1,0,0,0,NULL,NULL,NULL,NULL),(33,24,1,'cd.mller@fishmail.co.pl',0,0,0,0,NULL,NULL,NULL,NULL),(34,3,1,'kaceyg@fakemail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(35,3,1,'gonzlezk63@notmail.com',0,0,0,0,NULL,NULL,NULL,NULL),(36,89,1,'wagnerr@sample.org',1,0,0,0,NULL,NULL,NULL,NULL),(37,80,1,'daz.brigette42@notmail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(38,182,1,'billyl68@sample.info',1,0,0,0,NULL,NULL,NULL,NULL),(39,193,1,'prenticeo@infomail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(40,193,1,'prenticeo66@airmail.biz',0,0,0,0,NULL,NULL,NULL,NULL),(41,82,1,'wagner.omar@sample.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(42,191,1,'robertson.scott@fakemail.org',1,0,0,0,NULL,NULL,NULL,NULL),(43,191,1,'srobertson@example.org',0,0,0,0,NULL,NULL,NULL,NULL),(44,27,1,'deforestv@notmail.com',1,0,0,0,NULL,NULL,NULL,NULL),(45,123,1,'grantr@fishmail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(46,189,1,'parker.tanya@spamalot.com',1,0,0,0,NULL,NULL,NULL,NULL),(47,121,1,'ivanov.esta@infomail.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(48,121,1,'estai@mymail.co.nz',0,0,0,0,NULL,NULL,NULL,NULL),(49,133,1,'chowskib@mymail.net',1,0,0,0,NULL,NULL,NULL,NULL),(50,194,1,'ashleyp@fakemail.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(51,7,1,'mller.alexia77@fakemail.org',1,0,0,0,NULL,NULL,NULL,NULL),(52,92,1,'bachmanc@lol.info',1,0,0,0,NULL,NULL,NULL,NULL),(53,83,1,'jones.rebekah95@sample.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(54,16,1,'teddyd@sample.com',1,0,0,0,NULL,NULL,NULL,NULL),(55,16,1,'ta.deforest@lol.co.nz',0,0,0,0,NULL,NULL,NULL,NULL),(56,171,1,'wagner.esta88@mymail.com',1,0,0,0,NULL,NULL,NULL,NULL),(57,171,1,'et.wagner39@mymail.net',0,0,0,0,NULL,NULL,NULL,NULL),(58,73,1,'blackwell.elizabeth81@fishmail.org',1,0,0,0,NULL,NULL,NULL,NULL),(59,118,1,'deforest.russell@example.org',1,0,0,0,NULL,NULL,NULL,NULL),(60,132,1,'chowskib@lol.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(61,132,1,'beulachowski@infomail.co.uk',0,0,0,0,NULL,NULL,NULL,NULL),(62,127,1,'kennydimitrov@example.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(63,127,1,'dimitrovk49@lol.co.in',0,0,0,0,NULL,NULL,NULL,NULL),(64,61,1,'jones.carlos26@notmail.com',1,0,0,0,NULL,NULL,NULL,NULL),(65,77,1,'sanfordmcreynolds@fakemail.org',1,0,0,0,NULL,NULL,NULL,NULL),(66,77,1,'mcreynoldss@mymail.net',0,0,0,0,NULL,NULL,NULL,NULL),(67,158,1,'brittneyj@sample.org',1,0,0,0,NULL,NULL,NULL,NULL),(68,158,1,'jensen.brittney70@lol.net',0,0,0,0,NULL,NULL,NULL,NULL),(69,135,1,'terrell.kenny34@mymail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(70,185,1,'croberts@testing.com',1,0,0,0,NULL,NULL,NULL,NULL),(71,151,1,'lparker@example.info',1,0,0,0,NULL,NULL,NULL,NULL),(72,101,1,'smiths@lol.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(73,101,1,'smith.sharyn@infomail.biz',0,0,0,0,NULL,NULL,NULL,NULL),(74,81,1,'cterrell@spamalot.org',1,0,0,0,NULL,NULL,NULL,NULL),(75,81,1,'terrell.craig48@sample.com',0,0,0,0,NULL,NULL,NULL,NULL),(76,97,1,'jacobse6@testing.net',1,0,0,0,NULL,NULL,NULL,NULL),(77,150,1,'mller.teddy65@airmail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(78,150,1,'mllert21@sample.co.uk',0,0,0,0,NULL,NULL,NULL,NULL),(79,141,1,'elbertterrell@airmail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(80,137,1,'mller.x.kathleen@example.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(81,109,1,'clinta@fishmail.biz',1,0,0,0,NULL,NULL,NULL,NULL),(82,15,1,'yadav.eleonor15@lol.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(83,15,1,'yadav.eleonor60@airmail.com',0,0,0,0,NULL,NULL,NULL,NULL),(84,198,1,'wattson.elbert94@sample.info',1,0,0,0,NULL,NULL,NULL,NULL),(85,125,1,'billywattson@testmail.net',1,0,0,0,NULL,NULL,NULL,NULL),(86,125,1,'wattson.billy@infomail.net',0,0,0,0,NULL,NULL,NULL,NULL),(87,181,1,'sharynj38@notmail.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(88,181,1,'sharynj@infomail.biz',0,0,0,0,NULL,NULL,NULL,NULL),(89,98,1,'ashleyw@notmail.net',1,0,0,0,NULL,NULL,NULL,NULL),(90,120,1,'ashleyw@testmail.info',1,0,0,0,NULL,NULL,NULL,NULL),(91,120,1,'ashleywagner@fakemail.net',0,0,0,0,NULL,NULL,NULL,NULL),(92,163,1,'gonzlez.brittney@lol.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(93,163,1,'brittneygonzlez@mymail.co.pl',0,0,0,0,NULL,NULL,NULL,NULL),(94,67,1,'merriegonzlez45@spamalot.info',1,0,0,0,NULL,NULL,NULL,NULL),(95,67,1,'merrieg@sample.org',0,0,0,0,NULL,NULL,NULL,NULL),(96,87,1,'sr.gonzlez34@lol.com',1,0,0,0,NULL,NULL,NULL,NULL),(97,111,1,'cooper.x.laree@notmail.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(98,31,1,'cooper.rolando@lol.info',1,0,0,0,NULL,NULL,NULL,NULL),(99,31,1,'cooper.rolando@testmail.org',0,0,0,0,NULL,NULL,NULL,NULL),(100,6,1,'bachman.betty14@testmail.com',1,0,0,0,NULL,NULL,NULL,NULL),(101,6,1,'bc.bachman37@sample.org',0,0,0,0,NULL,NULL,NULL,NULL),(102,21,1,'patel-bachmanl@example.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(103,21,1,'patel-bachman.lou@infomail.co.in',0,0,0,0,NULL,NULL,NULL,NULL),(104,147,1,'rzope@fishmail.com',1,0,0,0,NULL,NULL,NULL,NULL),(105,147,1,'zope.roland36@spamalot.co.in',0,0,0,0,NULL,NULL,NULL,NULL),(106,48,1,'russellwagner37@fishmail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(107,48,1,'wagner.russell91@example.co.in',0,0,0,0,NULL,NULL,NULL,NULL),(108,88,1,'wagnerk87@testmail.org',1,0,0,0,NULL,NULL,NULL,NULL),(109,14,1,'mwagner24@sample.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(110,2,1,'cwagner@example.net',1,0,0,0,NULL,NULL,NULL,NULL),(111,2,1,'carylonwagner33@infomail.net',0,0,0,0,NULL,NULL,NULL,NULL),(112,59,1,'jonesk@sample.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(113,110,1,'jones.nicole98@infomail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(114,162,1,'wagner.rosario@mymail.org',1,0,0,0,NULL,NULL,NULL,NULL),(115,162,1,'wagner.rosario@sample.co.nz',0,0,0,0,NULL,NULL,NULL,NULL),(116,128,1,'wagnerb@fishmail.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(117,128,1,'wagner.beula72@lol.co.uk',0,0,0,0,NULL,NULL,NULL,NULL),(118,17,1,'robertsonw@testing.biz',1,0,0,0,NULL,NULL,NULL,NULL),(119,156,1,'jeromerobertson64@fishmail.com',1,0,0,0,NULL,NULL,NULL,NULL),(120,156,1,'robertson.jerome@fishmail.info',0,0,0,0,NULL,NULL,NULL,NULL),(121,190,1,'angelikag88@testing.org',1,0,0,0,NULL,NULL,NULL,NULL),(122,190,1,'angelikagonzlez@example.co.uk',0,0,0,0,NULL,NULL,NULL,NULL),(123,117,1,'wilson-gonzlezb22@sample.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(124,117,1,'bn.wilson-gonzlez91@spamalot.co.pl',0,0,0,0,NULL,NULL,NULL,NULL),(125,78,1,'kennyg64@testmail.biz',1,0,0,0,NULL,NULL,NULL,NULL),(126,188,1,'jameson.g.kathleen@fakemail.net',1,0,0,0,NULL,NULL,NULL,NULL),(127,188,1,'jameson.kathleen82@example.biz',0,0,0,0,NULL,NULL,NULL,NULL),(128,4,1,'robertson-jamesonw93@lol.net',1,0,0,0,NULL,NULL,NULL,NULL),(129,4,1,'robertson-jameson.winford56@fishmail.org',0,0,0,0,NULL,NULL,NULL,NULL),(130,19,1,'olsent@testing.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(131,19,1,'olsent@infomail.co.in',0,0,0,0,NULL,NULL,NULL,NULL),(132,170,1,'carlosolsen@testmail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(133,33,1,'olsen.maria48@spamalot.info',1,0,0,0,NULL,NULL,NULL,NULL),(134,33,1,'olsen.maria@infomail.info',0,0,0,0,NULL,NULL,NULL,NULL),(135,13,1,'rosariop@sample.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(136,13,1,'patel.rosario@fakemail.co.pl',0,0,0,0,NULL,NULL,NULL,NULL),(137,143,1,'jameson-patel.teresa25@example.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(138,143,1,'tjameson-patel@example.co.in',0,0,0,0,NULL,NULL,NULL,NULL),(139,72,1,'patel.claudio53@infomail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(140,72,1,'patelc@airmail.co.nz',0,0,0,0,NULL,NULL,NULL,NULL),(141,187,1,'iv.mcreynolds60@example.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(142,187,1,'mcreynoldsi@notmail.co.uk',0,0,0,0,NULL,NULL,NULL,NULL),(143,28,1,'rodrigoj6@example.org',1,0,0,0,NULL,NULL,NULL,NULL),(144,195,1,'jensena@mymail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(145,39,1,'princessj@lol.net',1,0,0,0,NULL,NULL,NULL,NULL),(146,39,1,'princessjensen@notmail.com',0,0,0,0,NULL,NULL,NULL,NULL),(147,79,1,'rolandodeforest52@fakemail.net',1,0,0,0,NULL,NULL,NULL,NULL),(148,79,1,'rolandod@example.co.in',0,0,0,0,NULL,NULL,NULL,NULL),(149,18,1,'iveyt32@lol.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(150,18,1,'terry.ivey@fakemail.biz',0,0,0,0,NULL,NULL,NULL,NULL),(151,68,1,'kandaceterry@spamalot.info',1,0,0,0,NULL,NULL,NULL,NULL),(152,154,1,'andrewo@infomail.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(153,200,1,'olsen.jina@spamalot.net',1,0,0,0,NULL,NULL,NULL,NULL),(154,196,1,'errolsmith@fishmail.com',1,0,0,0,NULL,NULL,NULL,NULL),(155,196,1,'smith.errol54@testmail.co.nz',0,0,0,0,NULL,NULL,NULL,NULL),(156,58,1,'jacksonsmith@example.info',1,0,0,0,NULL,NULL,NULL,NULL),(157,58,1,'jsmith@mymail.com',0,0,0,0,NULL,NULL,NULL,NULL),(158,201,1,'ab.smith@notmail.biz',1,0,0,0,NULL,NULL,NULL,NULL),(159,47,1,'samuelsr@mymail.net',1,0,0,0,NULL,NULL,NULL,NULL),(160,45,3,'sales@maplesoftware.org',1,0,0,0,NULL,NULL,NULL,NULL),(161,109,2,'adamsc@maplesoftware.org',0,0,0,0,NULL,NULL,NULL,NULL),(162,9,3,'service@minnesotaschool.org',1,0,0,0,NULL,NULL,NULL,NULL),(163,27,2,'deforestv38@minnesotaschool.org',0,0,0,0,NULL,NULL,NULL,NULL),(164,90,3,'contact@ohiosolutions.org',1,0,0,0,NULL,NULL,NULL,NULL),(165,200,2,'olsenj99@ohiosolutions.org',0,0,0,0,NULL,NULL,NULL,NULL),(166,46,3,'service@globalliteracyfellowship.org',1,0,0,0,NULL,NULL,NULL,NULL),(167,129,2,'louj@globalliteracyfellowship.org',1,0,0,0,NULL,NULL,NULL,NULL),(168,160,3,'info@wewokaalliance.org',1,0,0,0,NULL,NULL,NULL,NULL),(169,69,2,'wilson.allan@wewokaalliance.org',1,0,0,0,NULL,NULL,NULL,NULL),(170,35,3,'contact@arleealliance.org',1,0,0,0,NULL,NULL,NULL,NULL),(171,25,2,'angelikasamson15@arleealliance.org',1,0,0,0,NULL,NULL,NULL,NULL),(172,177,3,'contact@rudyardmusicfund.org',1,0,0,0,NULL,NULL,NULL,NULL),(173,43,2,'mp.bachman28@rudyardmusicfund.org',1,0,0,0,NULL,NULL,NULL,NULL),(174,10,3,'service@globalwellnessnetwork.org',1,0,0,0,NULL,NULL,NULL,NULL),(175,182,2,'billylee@globalwellnessnetwork.org',0,0,0,0,NULL,NULL,NULL,NULL),(176,144,3,'sales@friendsfamilycenter.org',1,0,0,0,NULL,NULL,NULL,NULL),(177,47,2,'rebekahsamuels@friendsfamilycenter.org',0,0,0,0,NULL,NULL,NULL,NULL),(178,5,3,'sales@cadellacademy.org',1,0,0,0,NULL,NULL,NULL,NULL),(179,62,2,'apatel@cadellacademy.org',1,0,0,0,NULL,NULL,NULL,NULL),(180,64,3,'service@mlkingmusic.org',1,0,0,0,NULL,NULL,NULL,NULL),(181,88,2,'.@mlkingmusic.org',0,0,0,0,NULL,NULL,NULL,NULL),(182,22,3,'info@unitedsoftwarecenter.org',1,0,0,0,NULL,NULL,NULL,NULL),(183,26,2,'kennycooper42@unitedsoftwarecenter.org',0,0,0,0,NULL,NULL,NULL,NULL),(184,49,3,'service@creativefamily.org',1,0,0,0,NULL,NULL,NULL,NULL),(185,71,2,'robertson.jina65@creativefamily.org',1,0,0,0,NULL,NULL,NULL,NULL),(186,153,3,'feedback@wrhealthtrust.org',1,0,0,0,NULL,NULL,NULL,NULL),(187,194,2,'patel.ashley97@wrhealthtrust.org',0,0,0,0,NULL,NULL,NULL,NULL),(188,63,3,'sales@unitedinitiative.org',1,0,0,0,NULL,NULL,NULL,NULL),(189,165,2,'brittneyp@unitedinitiative.org',0,0,0,0,NULL,NULL,NULL,NULL),(190,23,3,'service@urbanfood.org',1,0,0,0,NULL,NULL,NULL,NULL),(191,2,2,'@urbanfood.org',0,0,0,0,NULL,NULL,NULL,NULL),(192,NULL,1,'development@example.org',0,0,0,0,NULL,NULL,NULL,NULL),(193,NULL,1,'tournaments@example.org',0,0,0,0,NULL,NULL,NULL,NULL),(194,NULL,1,'celebration@example.org',0,0,0,0,NULL,NULL,NULL,NULL); /*!40000 ALTER TABLE `civicrm_email` ENABLE KEYS */; UNLOCK TABLES; @@ -430,7 +430,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',16,15,100.00),(30,'civicrm_financial_item',15,15,100.00),(31,'civicrm_contribution',20,16,100.00),(32,'civicrm_financial_item',16,16,100.00),(33,'civicrm_contribution',22,17,100.00),(34,'civicrm_financial_item',17,17,100.00),(35,'civicrm_contribution',23,18,100.00),(36,'civicrm_financial_item',18,18,100.00),(37,'civicrm_contribution',26,19,100.00),(38,'civicrm_financial_item',19,19,100.00),(39,'civicrm_contribution',28,20,100.00),(40,'civicrm_financial_item',20,20,100.00),(41,'civicrm_contribution',30,21,100.00),(42,'civicrm_financial_item',21,21,100.00),(43,'civicrm_contribution',32,22,100.00),(44,'civicrm_financial_item',22,22,100.00),(45,'civicrm_contribution',33,23,100.00),(46,'civicrm_financial_item',23,23,100.00),(47,'civicrm_contribution',34,24,100.00),(48,'civicrm_financial_item',24,24,100.00),(49,'civicrm_contribution',36,25,100.00),(50,'civicrm_financial_item',25,25,100.00),(51,'civicrm_contribution',38,26,100.00),(52,'civicrm_financial_item',26,26,100.00),(53,'civicrm_contribution',40,27,100.00),(54,'civicrm_financial_item',27,27,100.00),(55,'civicrm_contribution',42,28,100.00),(56,'civicrm_financial_item',28,28,100.00),(57,'civicrm_contribution',43,29,100.00),(58,'civicrm_financial_item',29,29,100.00),(59,'civicrm_contribution',15,30,50.00),(60,'civicrm_financial_item',30,30,50.00),(61,'civicrm_contribution',17,31,50.00),(62,'civicrm_financial_item',31,31,50.00),(63,'civicrm_contribution',18,32,50.00),(64,'civicrm_financial_item',32,32,50.00),(65,'civicrm_contribution',19,33,50.00),(66,'civicrm_financial_item',33,33,50.00),(67,'civicrm_contribution',21,34,50.00),(68,'civicrm_financial_item',34,34,50.00),(69,'civicrm_contribution',25,35,50.00),(70,'civicrm_financial_item',35,35,50.00),(71,'civicrm_contribution',27,36,50.00),(72,'civicrm_financial_item',36,36,50.00),(73,'civicrm_contribution',29,37,50.00),(74,'civicrm_financial_item',37,37,50.00),(75,'civicrm_contribution',31,38,50.00),(76,'civicrm_financial_item',38,38,50.00),(77,'civicrm_contribution',37,39,50.00),(78,'civicrm_financial_item',39,39,50.00),(79,'civicrm_contribution',39,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',24,42,1200.00),(84,'civicrm_financial_item',42,42,1200.00),(85,'civicrm_contribution',35,43,1200.00),(86,'civicrm_financial_item',43,43,1200.00),(87,'civicrm_contribution',61,44,50.00),(88,'civicrm_financial_item',44,44,50.00),(89,'civicrm_contribution',62,45,50.00),(90,'civicrm_financial_item',45,45,50.00),(91,'civicrm_contribution',66,46,50.00),(92,'civicrm_financial_item',46,46,50.00),(93,'civicrm_contribution',63,47,50.00),(94,'civicrm_financial_item',47,47,50.00),(95,'civicrm_contribution',74,48,50.00),(96,'civicrm_financial_item',48,48,50.00),(97,'civicrm_contribution',85,49,50.00),(98,'civicrm_financial_item',49,49,50.00),(99,'civicrm_contribution',72,50,50.00),(100,'civicrm_financial_item',50,50,50.00),(101,'civicrm_contribution',49,51,50.00),(102,'civicrm_financial_item',51,51,50.00),(103,'civicrm_contribution',89,52,50.00),(104,'civicrm_financial_item',52,52,50.00),(105,'civicrm_contribution',45,53,50.00),(106,'civicrm_financial_item',53,53,50.00),(107,'civicrm_contribution',54,54,50.00),(108,'civicrm_financial_item',54,54,50.00),(109,'civicrm_contribution',83,55,50.00),(110,'civicrm_financial_item',55,55,50.00),(111,'civicrm_contribution',82,56,50.00),(112,'civicrm_financial_item',56,56,50.00),(113,'civicrm_contribution',50,57,50.00),(114,'civicrm_financial_item',57,57,50.00),(115,'civicrm_contribution',67,58,50.00),(116,'civicrm_financial_item',58,58,50.00),(117,'civicrm_contribution',56,59,50.00),(118,'civicrm_financial_item',59,59,50.00),(119,'civicrm_contribution',93,60,800.00),(120,'civicrm_financial_item',60,60,800.00),(121,'civicrm_contribution',80,61,800.00),(122,'civicrm_financial_item',61,61,800.00),(123,'civicrm_contribution',84,62,800.00),(124,'civicrm_financial_item',62,62,800.00),(125,'civicrm_contribution',92,63,800.00),(126,'civicrm_financial_item',63,63,800.00),(127,'civicrm_contribution',75,64,800.00),(128,'civicrm_financial_item',64,64,800.00),(129,'civicrm_contribution',55,65,800.00),(130,'civicrm_financial_item',65,65,800.00),(131,'civicrm_contribution',65,66,800.00),(132,'civicrm_financial_item',66,66,800.00),(133,'civicrm_contribution',51,67,800.00),(134,'civicrm_financial_item',67,67,800.00),(135,'civicrm_contribution',60,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',88,70,800.00),(140,'civicrm_financial_item',70,70,800.00),(141,'civicrm_contribution',59,71,800.00),(142,'civicrm_financial_item',71,71,800.00),(143,'civicrm_contribution',94,72,800.00),(144,'civicrm_financial_item',72,72,800.00),(145,'civicrm_contribution',90,73,800.00),(146,'civicrm_financial_item',73,73,800.00),(147,'civicrm_contribution',78,74,800.00),(148,'civicrm_financial_item',74,74,800.00),(149,'civicrm_contribution',79,75,800.00),(150,'civicrm_financial_item',75,75,800.00),(151,'civicrm_contribution',87,76,800.00),(152,'civicrm_financial_item',76,76,800.00),(153,'civicrm_contribution',64,77,800.00),(154,'civicrm_financial_item',77,77,800.00),(155,'civicrm_contribution',58,78,50.00),(156,'civicrm_financial_item',78,78,50.00),(157,'civicrm_contribution',68,79,50.00),(158,'civicrm_financial_item',79,79,50.00),(159,'civicrm_contribution',47,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',91,82,50.00),(164,'civicrm_financial_item',82,82,50.00),(165,'civicrm_contribution',73,83,50.00),(166,'civicrm_financial_item',83,83,50.00),(167,'civicrm_contribution',48,84,50.00),(168,'civicrm_financial_item',84,84,50.00),(169,'civicrm_contribution',76,85,50.00),(170,'civicrm_financial_item',85,85,50.00),(171,'civicrm_contribution',70,86,50.00),(172,'civicrm_financial_item',86,86,50.00),(173,'civicrm_contribution',81,87,50.00),(174,'civicrm_financial_item',87,87,50.00),(175,'civicrm_contribution',86,88,50.00),(176,'civicrm_financial_item',88,88,50.00),(177,'civicrm_contribution',77,89,50.00),(178,'civicrm_financial_item',89,89,50.00),(179,'civicrm_contribution',69,90,50.00),(180,'civicrm_financial_item',90,90,50.00),(181,'civicrm_contribution',46,91,50.00),(182,'civicrm_financial_item',91,91,50.00),(183,'civicrm_contribution',57,92,50.00),(184,'civicrm_financial_item',92,92,50.00),(185,'civicrm_contribution',52,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',14,14,100.00),(28,'civicrm_financial_item',14,14,100.00),(29,'civicrm_contribution',16,15,100.00),(30,'civicrm_financial_item',15,15,100.00),(31,'civicrm_contribution',18,16,100.00),(32,'civicrm_financial_item',16,16,100.00),(33,'civicrm_contribution',20,17,100.00),(34,'civicrm_financial_item',17,17,100.00),(35,'civicrm_contribution',22,18,100.00),(36,'civicrm_financial_item',18,18,100.00),(37,'civicrm_contribution',26,19,100.00),(38,'civicrm_financial_item',19,19,100.00),(39,'civicrm_contribution',28,20,100.00),(40,'civicrm_financial_item',20,20,100.00),(41,'civicrm_contribution',30,21,100.00),(42,'civicrm_financial_item',21,21,100.00),(43,'civicrm_contribution',32,22,100.00),(44,'civicrm_financial_item',22,22,100.00),(45,'civicrm_contribution',34,23,100.00),(46,'civicrm_financial_item',23,23,100.00),(47,'civicrm_contribution',36,24,100.00),(48,'civicrm_financial_item',24,24,100.00),(49,'civicrm_contribution',38,25,100.00),(50,'civicrm_financial_item',25,25,100.00),(51,'civicrm_contribution',40,26,100.00),(52,'civicrm_financial_item',26,26,100.00),(53,'civicrm_contribution',42,27,100.00),(54,'civicrm_financial_item',27,27,100.00),(55,'civicrm_contribution',43,28,100.00),(56,'civicrm_financial_item',28,28,100.00),(57,'civicrm_contribution',15,29,50.00),(58,'civicrm_financial_item',29,29,50.00),(59,'civicrm_contribution',17,30,50.00),(60,'civicrm_financial_item',30,30,50.00),(61,'civicrm_contribution',19,31,50.00),(62,'civicrm_financial_item',31,31,50.00),(63,'civicrm_contribution',21,32,50.00),(64,'civicrm_financial_item',32,32,50.00),(65,'civicrm_contribution',23,33,50.00),(66,'civicrm_financial_item',33,33,50.00),(67,'civicrm_contribution',25,34,50.00),(68,'civicrm_financial_item',34,34,50.00),(69,'civicrm_contribution',27,35,50.00),(70,'civicrm_financial_item',35,35,50.00),(71,'civicrm_contribution',29,36,50.00),(72,'civicrm_financial_item',36,36,50.00),(73,'civicrm_contribution',31,37,50.00),(74,'civicrm_financial_item',37,37,50.00),(75,'civicrm_contribution',33,38,50.00),(76,'civicrm_financial_item',38,38,50.00),(77,'civicrm_contribution',37,39,50.00),(78,'civicrm_financial_item',39,39,50.00),(79,'civicrm_contribution',39,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',24,42,1200.00),(84,'civicrm_financial_item',42,42,1200.00),(85,'civicrm_contribution',35,43,1200.00),(86,'civicrm_financial_item',43,43,1200.00),(87,'civicrm_contribution',89,44,50.00),(88,'civicrm_financial_item',44,44,50.00),(89,'civicrm_contribution',92,45,50.00),(90,'civicrm_financial_item',45,45,50.00),(91,'civicrm_contribution',88,46,50.00),(92,'civicrm_financial_item',46,46,50.00),(93,'civicrm_contribution',61,47,50.00),(94,'civicrm_financial_item',47,47,50.00),(95,'civicrm_contribution',83,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',86,50,50.00),(100,'civicrm_financial_item',50,50,50.00),(101,'civicrm_contribution',55,51,50.00),(102,'civicrm_financial_item',51,51,50.00),(103,'civicrm_contribution',81,52,50.00),(104,'civicrm_financial_item',52,52,50.00),(105,'civicrm_contribution',52,53,50.00),(106,'civicrm_financial_item',53,53,50.00),(107,'civicrm_contribution',91,54,50.00),(108,'civicrm_financial_item',54,54,50.00),(109,'civicrm_contribution',76,55,50.00),(110,'civicrm_financial_item',55,55,50.00),(111,'civicrm_contribution',54,56,50.00),(112,'civicrm_financial_item',56,56,50.00),(113,'civicrm_contribution',84,57,50.00),(114,'civicrm_financial_item',57,57,50.00),(115,'civicrm_contribution',63,58,50.00),(116,'civicrm_financial_item',58,58,50.00),(117,'civicrm_contribution',87,59,50.00),(118,'civicrm_financial_item',59,59,50.00),(119,'civicrm_contribution',69,60,800.00),(120,'civicrm_financial_item',60,60,800.00),(121,'civicrm_contribution',90,61,800.00),(122,'civicrm_financial_item',61,61,800.00),(123,'civicrm_contribution',94,62,800.00),(124,'civicrm_financial_item',62,62,800.00),(125,'civicrm_contribution',57,63,800.00),(126,'civicrm_financial_item',63,63,800.00),(127,'civicrm_contribution',60,64,800.00),(128,'civicrm_financial_item',64,64,800.00),(129,'civicrm_contribution',71,65,800.00),(130,'civicrm_financial_item',65,65,800.00),(131,'civicrm_contribution',72,66,800.00),(132,'civicrm_financial_item',66,66,800.00),(133,'civicrm_contribution',56,67,800.00),(134,'civicrm_financial_item',67,67,800.00),(135,'civicrm_contribution',49,68,800.00),(136,'civicrm_financial_item',68,68,800.00),(137,'civicrm_contribution',75,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',73,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',64,73,800.00),(146,'civicrm_financial_item',73,73,800.00),(147,'civicrm_contribution',53,74,800.00),(148,'civicrm_financial_item',74,74,800.00),(149,'civicrm_contribution',47,75,800.00),(150,'civicrm_financial_item',75,75,800.00),(151,'civicrm_contribution',66,76,800.00),(152,'civicrm_financial_item',76,76,800.00),(153,'civicrm_contribution',70,77,800.00),(154,'civicrm_financial_item',77,77,800.00),(155,'civicrm_contribution',93,78,50.00),(156,'civicrm_financial_item',78,78,50.00),(157,'civicrm_contribution',67,79,50.00),(158,'civicrm_financial_item',79,79,50.00),(159,'civicrm_contribution',79,80,50.00),(160,'civicrm_financial_item',80,80,50.00),(161,'civicrm_contribution',45,81,50.00),(162,'civicrm_financial_item',81,81,50.00),(163,'civicrm_contribution',46,82,50.00),(164,'civicrm_financial_item',82,82,50.00),(165,'civicrm_contribution',78,83,50.00),(166,'civicrm_financial_item',83,83,50.00),(167,'civicrm_contribution',58,84,50.00),(168,'civicrm_financial_item',84,84,50.00),(169,'civicrm_contribution',77,85,50.00),(170,'civicrm_financial_item',85,85,50.00),(171,'civicrm_contribution',59,86,50.00),(172,'civicrm_financial_item',86,86,50.00),(173,'civicrm_contribution',85,87,50.00),(174,'civicrm_financial_item',87,87,50.00),(175,'civicrm_contribution',51,88,50.00),(176,'civicrm_financial_item',88,88,50.00),(177,'civicrm_contribution',62,89,50.00),(178,'civicrm_financial_item',89,89,50.00),(179,'civicrm_contribution',50,90,50.00),(180,'civicrm_financial_item',90,90,50.00),(181,'civicrm_contribution',82,91,50.00),(182,'civicrm_financial_item',91,91,50.00),(183,'civicrm_contribution',65,92,50.00),(184,'civicrm_financial_item',92,92,50.00),(185,'civicrm_contribution',48,93,50.00),(186,'civicrm_financial_item',93,93,50.00); /*!40000 ALTER TABLE `civicrm_entity_financial_trxn` ENABLE KEYS */; UNLOCK TABLES; @@ -440,7 +440,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 (116,'civicrm_contact',7,5),(108,'civicrm_contact',9,4),(109,'civicrm_contact',9,5),(51,'civicrm_contact',11,4),(69,'civicrm_contact',14,4),(72,'civicrm_contact',15,4),(73,'civicrm_contact',15,5),(66,'civicrm_contact',24,4),(67,'civicrm_contact',24,5),(117,'civicrm_contact',25,5),(113,'civicrm_contact',27,4),(114,'civicrm_contact',27,5),(33,'civicrm_contact',28,4),(75,'civicrm_contact',31,5),(93,'civicrm_contact',35,4),(111,'civicrm_contact',40,4),(63,'civicrm_contact',41,5),(23,'civicrm_contact',44,5),(47,'civicrm_contact',45,4),(48,'civicrm_contact',45,5),(76,'civicrm_contact',46,5),(38,'civicrm_contact',49,5),(6,'civicrm_contact',53,2),(104,'civicrm_contact',54,4),(105,'civicrm_contact',54,5),(40,'civicrm_contact',55,4),(30,'civicrm_contact',57,4),(31,'civicrm_contact',57,5),(91,'civicrm_contact',59,4),(82,'civicrm_contact',60,4),(83,'civicrm_contact',60,5),(74,'civicrm_contact',61,5),(99,'civicrm_contact',62,4),(55,'civicrm_contact',63,4),(56,'civicrm_contact',63,5),(7,'civicrm_contact',64,1),(28,'civicrm_contact',67,4),(115,'civicrm_contact',68,4),(9,'civicrm_contact',69,1),(34,'civicrm_contact',70,5),(101,'civicrm_contact',71,4),(44,'civicrm_contact',75,4),(45,'civicrm_contact',75,5),(88,'civicrm_contact',79,4),(92,'civicrm_contact',80,5),(15,'civicrm_contact',81,4),(16,'civicrm_contact',81,5),(29,'civicrm_contact',82,5),(12,'civicrm_contact',85,5),(59,'civicrm_contact',87,4),(60,'civicrm_contact',87,5),(26,'civicrm_contact',89,5),(24,'civicrm_contact',93,4),(25,'civicrm_contact',93,5),(103,'civicrm_contact',97,4),(41,'civicrm_contact',99,4),(42,'civicrm_contact',99,5),(64,'civicrm_contact',100,5),(14,'civicrm_contact',103,4),(5,'civicrm_contact',104,3),(79,'civicrm_contact',105,4),(80,'civicrm_contact',105,5),(100,'civicrm_contact',107,5),(94,'civicrm_contact',109,5),(43,'civicrm_contact',110,4),(13,'civicrm_contact',112,5),(49,'civicrm_contact',114,4),(50,'civicrm_contact',114,5),(106,'civicrm_contact',116,4),(61,'civicrm_contact',120,4),(62,'civicrm_contact',120,5),(84,'civicrm_contact',122,4),(22,'civicrm_contact',124,4),(77,'civicrm_contact',129,4),(78,'civicrm_contact',129,5),(87,'civicrm_contact',131,5),(2,'civicrm_contact',132,2),(107,'civicrm_contact',133,5),(52,'civicrm_contact',135,4),(53,'civicrm_contact',135,5),(68,'civicrm_contact',136,5),(110,'civicrm_contact',139,5),(54,'civicrm_contact',143,4),(95,'civicrm_contact',144,4),(96,'civicrm_contact',144,5),(98,'civicrm_contact',149,4),(35,'civicrm_contact',156,4),(36,'civicrm_contact',156,5),(1,'civicrm_contact',157,2),(20,'civicrm_contact',159,4),(21,'civicrm_contact',159,5),(89,'civicrm_contact',162,4),(90,'civicrm_contact',162,5),(27,'civicrm_contact',164,4),(46,'civicrm_contact',167,4),(17,'civicrm_contact',169,4),(112,'civicrm_contact',170,4),(11,'civicrm_contact',172,4),(57,'civicrm_contact',174,4),(58,'civicrm_contact',174,5),(8,'civicrm_contact',175,1),(18,'civicrm_contact',177,4),(19,'civicrm_contact',177,5),(10,'civicrm_contact',179,3),(70,'civicrm_contact',180,4),(71,'civicrm_contact',180,5),(81,'civicrm_contact',184,5),(4,'civicrm_contact',186,2),(3,'civicrm_contact',187,2),(32,'civicrm_contact',188,5),(37,'civicrm_contact',190,4),(85,'civicrm_contact',195,4),(86,'civicrm_contact',195,5),(39,'civicrm_contact',196,5),(97,'civicrm_contact',197,5),(102,'civicrm_contact',199,5),(65,'civicrm_contact',200,5); +INSERT INTO `civicrm_entity_tag` (`id`, `entity_table`, `entity_id`, `tag_id`) VALUES (97,'civicrm_contact',4,4),(6,'civicrm_contact',5,3),(44,'civicrm_contact',7,5),(25,'civicrm_contact',8,5),(5,'civicrm_contact',10,1),(49,'civicrm_contact',12,4),(50,'civicrm_contact',12,5),(100,'civicrm_contact',13,5),(83,'civicrm_contact',14,4),(64,'civicrm_contact',15,4),(65,'civicrm_contact',15,5),(90,'civicrm_contact',17,4),(110,'civicrm_contact',18,4),(111,'civicrm_contact',18,5),(98,'civicrm_contact',19,4),(86,'civicrm_contact',20,5),(77,'civicrm_contact',21,4),(78,'civicrm_contact',21,5),(8,'civicrm_contact',22,2),(60,'civicrm_contact',25,4),(38,'civicrm_contact',27,4),(39,'civicrm_contact',27,5),(105,'civicrm_contact',28,5),(16,'civicrm_contact',29,5),(12,'civicrm_contact',30,4),(13,'civicrm_contact',30,5),(75,'civicrm_contact',31,5),(11,'civicrm_contact',34,5),(4,'civicrm_contact',35,3),(15,'civicrm_contact',41,5),(1,'civicrm_contact',45,2),(81,'civicrm_contact',48,4),(82,'civicrm_contact',48,5),(9,'civicrm_contact',49,2),(91,'civicrm_contact',51,4),(92,'civicrm_contact',51,5),(27,'civicrm_contact',52,5),(24,'civicrm_contact',55,4),(73,'civicrm_contact',60,4),(74,'civicrm_contact',60,5),(53,'civicrm_contact',61,4),(10,'civicrm_contact',63,1),(17,'civicrm_contact',66,4),(18,'civicrm_contact',66,5),(72,'civicrm_contact',67,5),(31,'civicrm_contact',69,4),(32,'civicrm_contact',69,5),(108,'civicrm_contact',70,4),(101,'civicrm_contact',72,4),(102,'civicrm_contact',72,5),(48,'civicrm_contact',73,5),(103,'civicrm_contact',74,4),(56,'civicrm_contact',75,4),(57,'civicrm_contact',75,5),(94,'civicrm_contact',78,4),(95,'civicrm_contact',78,5),(58,'civicrm_contact',81,4),(59,'civicrm_contact',81,5),(45,'civicrm_contact',83,4),(2,'civicrm_contact',90,2),(67,'civicrm_contact',93,4),(68,'civicrm_contact',93,5),(109,'civicrm_contact',95,5),(28,'civicrm_contact',108,4),(29,'civicrm_contact',108,5),(14,'civicrm_contact',112,4),(7,'civicrm_contact',113,3),(119,'civicrm_contact',114,4),(120,'civicrm_contact',114,5),(69,'civicrm_contact',120,4),(70,'civicrm_contact',120,5),(42,'civicrm_contact',121,4),(76,'civicrm_contact',122,4),(40,'civicrm_contact',123,4),(41,'civicrm_contact',123,5),(66,'civicrm_contact',125,4),(84,'civicrm_contact',129,4),(85,'civicrm_contact',129,5),(51,'civicrm_contact',132,4),(52,'civicrm_contact',132,5),(19,'civicrm_contact',134,5),(63,'civicrm_contact',137,4),(26,'civicrm_contact',139,5),(61,'civicrm_contact',141,4),(62,'civicrm_contact',141,5),(112,'civicrm_contact',142,5),(30,'civicrm_contact',146,4),(3,'civicrm_contact',149,2),(113,'civicrm_contact',154,4),(54,'civicrm_contact',158,5),(22,'civicrm_contact',159,4),(23,'civicrm_contact',159,5),(96,'civicrm_contact',161,4),(87,'civicrm_contact',162,4),(88,'civicrm_contact',162,5),(20,'civicrm_contact',165,4),(21,'civicrm_contact',165,5),(80,'civicrm_contact',166,5),(71,'civicrm_contact',167,5),(99,'civicrm_contact',170,5),(46,'civicrm_contact',171,4),(47,'civicrm_contact',171,5),(33,'civicrm_contact',172,5),(89,'civicrm_contact',173,5),(36,'civicrm_contact',174,4),(37,'civicrm_contact',174,5),(34,'civicrm_contact',182,4),(79,'civicrm_contact',184,4),(55,'civicrm_contact',185,5),(104,'civicrm_contact',187,4),(93,'civicrm_contact',190,4),(35,'civicrm_contact',193,4),(43,'civicrm_contact',194,5),(106,'civicrm_contact',195,4),(107,'civicrm_contact',195,5),(115,'civicrm_contact',196,4),(118,'civicrm_contact',197,4),(114,'civicrm_contact',200,4),(116,'civicrm_contact',201,4),(117,'civicrm_contact',201,5); /*!40000 ALTER TABLE `civicrm_entity_tag` ENABLE KEYS */; UNLOCK TABLES; @@ -450,7 +450,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`, `allow_same_participant_emails`, `has_waitlist`, `requires_approval`, `expiration_time`, `waitlist_text`, `approval_req_text`, `is_template`, `template_title`, `created_id`, `created_date`, `currency`, `campaign_id`, `is_share`, `parent_event_id`, `slot_label_id`) 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,'2014-07-23 17:00:00','2014-07-25 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,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'USD',NULL,1,NULL,NULL),(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,'2014-01-22 12:00:00','2014-01-22 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,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'USD',NULL,1,NULL,NULL),(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,'2014-08-23 07:00:00','2014-08-26 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,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'USD',NULL,1,NULL,NULL),(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,NULL,NULL,NULL,NULL,NULL,NULL,1,'Free Meeting without Online Registration',NULL,NULL,'USD',NULL,1,NULL,NULL),(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,1,NULL,NULL,NULL,NULL,NULL,1,'Free Meeting with Online Registration',NULL,NULL,'USD',NULL,1,NULL,NULL),(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,1,NULL,NULL,NULL,NULL,NULL,1,'Paid Conference with Online Registration',NULL,NULL,'USD',NULL,1,NULL,NULL); +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`, `allow_same_participant_emails`, `has_waitlist`, `requires_approval`, `expiration_time`, `waitlist_text`, `approval_req_text`, `is_template`, `template_title`, `created_id`, `created_date`, `currency`, `campaign_id`, `is_share`, `parent_event_id`, `slot_label_id`) 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,'2014-07-28 17:00:00','2014-07-30 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,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'USD',NULL,1,NULL,NULL),(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,'2014-01-27 12:00:00','2014-01-27 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,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'USD',NULL,1,NULL,NULL),(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,'2014-08-28 07:00:00','2014-08-31 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,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'USD',NULL,1,NULL,NULL),(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,NULL,NULL,NULL,NULL,NULL,NULL,1,'Free Meeting without Online Registration',NULL,NULL,'USD',NULL,1,NULL,NULL),(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,1,NULL,NULL,NULL,NULL,NULL,1,'Free Meeting with Online Registration',NULL,NULL,'USD',NULL,1,NULL,NULL),(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,1,NULL,NULL,NULL,NULL,NULL,1,'Paid Conference with Online Registration',NULL,NULL,'USD',NULL,1,NULL,NULL); /*!40000 ALTER TABLE `civicrm_event` ENABLE KEYS */; UNLOCK TABLES; @@ -506,7 +506,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,'2014-01-23 18:07:57','2010-04-11 00:00:00',2,'Contribution Amount',125.00,'USD',1,1,'civicrm_line_item',1),(2,'2014-01-23 18:07:58','2010-03-21 00:00:00',4,'Contribution Amount',50.00,'USD',1,1,'civicrm_line_item',2),(3,'2014-01-23 18:07:58','2010-04-29 00:00:00',6,'Contribution Amount',25.00,'USD',1,1,'civicrm_line_item',3),(4,'2014-01-23 18:07:58','2010-04-11 00:00:00',8,'Contribution Amount',50.00,'USD',1,1,'civicrm_line_item',4),(5,'2014-01-23 18:07:58','2010-04-15 00:00:00',16,'Contribution Amount',500.00,'USD',1,1,'civicrm_line_item',5),(6,'2014-01-23 18:07:58','2010-04-11 00:00:00',19,'Contribution Amount',175.00,'USD',1,1,'civicrm_line_item',6),(7,'2014-01-23 18:07:58','2010-03-27 00:00:00',82,'Contribution Amount',50.00,'USD',1,1,'civicrm_line_item',7),(8,'2014-01-23 18:07:59','2010-03-08 00:00:00',92,'Contribution Amount',10.00,'USD',1,1,'civicrm_line_item',8),(9,'2014-01-23 18:07:59','2010-04-22 00:00:00',34,'Contribution Amount',250.00,'USD',1,1,'civicrm_line_item',9),(10,'2014-01-23 18:07:59','2009-07-01 11:53:50',71,'Contribution Amount',500.00,'USD',1,1,'civicrm_line_item',10),(11,'2014-01-23 18:07:59','2009-07-01 12:55:41',43,'Contribution Amount',200.00,'USD',1,1,'civicrm_line_item',11),(12,'2014-01-23 18:08:00','2009-10-01 11:53:50',32,'Contribution Amount',200.00,'USD',1,1,'civicrm_line_item',12),(13,'2014-01-23 18:08:00','2009-12-01 12:55:41',32,'Contribution Amount',200.00,'USD',1,1,'civicrm_line_item',13),(14,'2014-01-23 18:08:00','2014-01-23 23:37:54',100,'General',100.00,'USD',2,1,'civicrm_line_item',16),(15,'2014-01-23 18:08:00','2014-01-23 23:37:54',165,'General',100.00,'USD',2,1,'civicrm_line_item',17),(16,'2014-01-23 18:08:01','2014-01-23 23:37:54',172,'General',100.00,'USD',2,1,'civicrm_line_item',18),(17,'2014-01-23 18:08:01','2014-01-23 23:37:54',19,'General',100.00,'USD',2,1,'civicrm_line_item',19),(18,'2014-01-23 18:08:01','2014-01-23 23:37:54',185,'General',100.00,'USD',2,1,'civicrm_line_item',20),(19,'2014-01-23 18:08:01','2014-01-23 23:37:54',150,'General',100.00,'USD',2,1,'civicrm_line_item',21),(20,'2014-01-23 18:08:02','2014-01-23 23:37:54',135,'General',100.00,'USD',2,1,'civicrm_line_item',22),(21,'2014-01-23 18:08:02','2014-01-23 23:37:54',151,'General',100.00,'USD',2,1,'civicrm_line_item',23),(22,'2014-01-23 18:08:02','2014-01-23 23:37:54',111,'General',100.00,'USD',2,1,'civicrm_line_item',24),(23,'2014-01-23 18:08:02','2014-01-23 23:37:54',48,'General',100.00,'USD',2,1,'civicrm_line_item',25),(24,'2014-01-23 18:08:03','2014-01-23 23:37:54',59,'General',100.00,'USD',2,1,'civicrm_line_item',26),(25,'2014-01-23 18:08:03','2014-01-23 23:37:54',36,'General',100.00,'USD',2,1,'civicrm_line_item',27),(26,'2014-01-23 18:08:03','2014-01-23 23:37:54',182,'General',100.00,'USD',2,1,'civicrm_line_item',28),(27,'2014-01-23 18:08:03','2014-01-23 23:37:54',102,'General',100.00,'USD',2,1,'civicrm_line_item',29),(28,'2014-01-23 18:08:03','2014-01-23 23:37:54',80,'General',100.00,'USD',2,1,'civicrm_line_item',30),(29,'2014-01-23 18:08:04','2014-01-23 23:37:54',41,'General',100.00,'USD',2,1,'civicrm_line_item',31),(30,'2014-01-23 18:08:04','2014-01-23 23:37:54',31,'Student',50.00,'USD',2,1,'civicrm_line_item',32),(31,'2014-01-23 18:08:04','2014-01-23 23:37:54',87,'Student',50.00,'USD',2,1,'civicrm_line_item',33),(32,'2014-01-23 18:08:04','2014-01-23 23:37:54',143,'Student',50.00,'USD',2,1,'civicrm_line_item',34),(33,'2014-01-23 18:08:04','2014-01-23 23:37:54',21,'Student',50.00,'USD',2,1,'civicrm_line_item',35),(34,'2014-01-23 18:08:04','2014-01-23 23:37:54',71,'Student',50.00,'USD',2,1,'civicrm_line_item',36),(35,'2014-01-23 18:08:05','2014-01-23 23:37:54',122,'Student',50.00,'USD',2,1,'civicrm_line_item',37),(36,'2014-01-23 18:08:05','2014-01-23 23:37:54',189,'Student',50.00,'USD',2,1,'civicrm_line_item',38),(37,'2014-01-23 18:08:05','2014-01-23 23:37:54',72,'Student',50.00,'USD',2,1,'civicrm_line_item',39),(38,'2014-01-23 18:08:05','2014-01-23 23:37:54',90,'Student',50.00,'USD',2,1,'civicrm_line_item',40),(39,'2014-01-23 18:08:06','2014-01-23 23:37:54',191,'Student',50.00,'USD',2,1,'civicrm_line_item',41),(40,'2014-01-23 18:08:06','2014-01-23 23:37:54',62,'Student',50.00,'USD',2,1,'civicrm_line_item',42),(41,'2014-01-23 18:08:06','2014-01-23 23:37:54',177,'Student',50.00,'USD',2,1,'civicrm_line_item',43),(42,'2014-01-23 18:08:06','2014-01-23 23:37:54',85,'Lifetime',1200.00,'USD',2,1,'civicrm_line_item',44),(43,'2014-01-23 18:08:07','2014-01-23 23:37:54',110,'Lifetime',1200.00,'USD',2,1,'civicrm_line_item',45),(44,'2014-01-23 18:08:08','2014-01-23 23:38:07',49,'Soprano',50.00,'USD',2,1,'civicrm_line_item',81),(45,'2014-01-23 18:08:08','2014-01-23 23:38:07',51,'Soprano',50.00,'USD',2,1,'civicrm_line_item',82),(46,'2014-01-23 18:08:09','2014-01-23 23:38:07',58,'Soprano',50.00,'USD',2,1,'civicrm_line_item',83),(47,'2014-01-23 18:08:09','2014-01-23 23:38:07',53,'Soprano',50.00,'USD',2,1,'civicrm_line_item',84),(48,'2014-01-23 18:08:09','2014-01-23 23:38:07',97,'Soprano',50.00,'USD',2,1,'civicrm_line_item',85),(49,'2014-01-23 18:08:09','2014-01-23 23:38:07',150,'Soprano',50.00,'USD',2,1,'civicrm_line_item',86),(50,'2014-01-23 18:08:10','2014-01-23 23:38:07',91,'Soprano',50.00,'USD',2,1,'civicrm_line_item',87),(51,'2014-01-23 18:08:10','2014-01-23 23:38:07',19,'Soprano',50.00,'USD',2,1,'civicrm_line_item',88),(52,'2014-01-23 18:08:10','2014-01-23 23:38:07',170,'Soprano',50.00,'USD',2,1,'civicrm_line_item',89),(53,'2014-01-23 18:08:10','2014-01-23 23:38:07',2,'Soprano',50.00,'USD',2,1,'civicrm_line_item',90),(54,'2014-01-23 18:08:10','2014-01-23 23:38:07',30,'Soprano',50.00,'USD',2,1,'civicrm_line_item',91),(55,'2014-01-23 18:08:11','2014-01-23 23:38:07',141,'Soprano',50.00,'USD',2,1,'civicrm_line_item',92),(56,'2014-01-23 18:08:11','2014-01-23 23:38:07',131,'Soprano',50.00,'USD',2,1,'civicrm_line_item',93),(57,'2014-01-23 18:08:11','2014-01-23 23:38:07',23,'Soprano',50.00,'USD',2,1,'civicrm_line_item',94),(58,'2014-01-23 18:08:11','2014-01-23 23:38:07',64,'Soprano',50.00,'USD',2,1,'civicrm_line_item',95),(59,'2014-01-23 18:08:11','2014-01-23 23:38:07',37,'Soprano',50.00,'USD',2,1,'civicrm_line_item',96),(60,'2014-01-23 18:08:12','2014-01-23 23:38:07',194,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',47),(61,'2014-01-23 18:08:12','2014-01-23 23:38:07',119,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',48),(62,'2014-01-23 18:08:12','2014-01-23 23:38:07',142,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',49),(63,'2014-01-23 18:08:12','2014-01-23 23:38:07',188,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',50),(64,'2014-01-23 18:08:13','2014-01-23 23:38:07',105,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',51),(65,'2014-01-23 18:08:13','2014-01-23 23:38:07',36,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',52),(66,'2014-01-23 18:08:13','2014-01-23 23:38:07',57,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',53),(67,'2014-01-23 18:08:13','2014-01-23 23:38:07',25,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',54),(68,'2014-01-23 18:08:13','2014-01-23 23:38:07',46,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',55),(69,'2014-01-23 18:08:14','2014-01-23 23:38:07',88,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',56),(70,'2014-01-23 18:08:14','2014-01-23 23:38:07',160,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',57),(71,'2014-01-23 18:08:14','2014-01-23 23:38:07',44,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',58),(72,'2014-01-23 18:08:14','2014-01-23 23:38:07',201,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',59),(73,'2014-01-23 18:08:15','2014-01-23 23:38:07',178,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',60),(74,'2014-01-23 18:08:15','2014-01-23 23:38:07',110,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',61),(75,'2014-01-23 18:08:15','2014-01-23 23:38:07',114,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',62),(76,'2014-01-23 18:08:15','2014-01-23 23:38:07',156,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',63),(77,'2014-01-23 18:08:16','2014-01-23 23:38:07',56,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',64),(78,'2014-01-23 18:08:16','2014-01-23 23:38:07',41,'Single',50.00,'USD',4,1,'civicrm_line_item',65),(79,'2014-01-23 18:08:16','2014-01-23 23:38:07',68,'Single',50.00,'USD',4,1,'civicrm_line_item',66),(80,'2014-01-23 18:08:16','2014-01-23 23:38:07',8,'Single',50.00,'USD',4,1,'civicrm_line_item',67),(81,'2014-01-23 18:08:16','2014-01-23 23:38:07',27,'Single',50.00,'USD',4,1,'civicrm_line_item',68),(82,'2014-01-23 18:08:17','2014-01-23 23:38:07',184,'Single',50.00,'USD',4,1,'civicrm_line_item',69),(83,'2014-01-23 18:08:17','2014-01-23 23:38:07',94,'Single',50.00,'USD',4,1,'civicrm_line_item',70),(84,'2014-01-23 18:08:17','2014-01-23 23:38:07',15,'Single',50.00,'USD',4,1,'civicrm_line_item',71),(85,'2014-01-23 18:08:17','2014-01-23 23:38:07',108,'Single',50.00,'USD',4,1,'civicrm_line_item',72),(86,'2014-01-23 18:08:17','2014-01-23 23:38:07',85,'Single',50.00,'USD',4,1,'civicrm_line_item',73),(87,'2014-01-23 18:08:18','2014-01-23 23:38:07',121,'Single',50.00,'USD',4,1,'civicrm_line_item',74),(88,'2014-01-23 18:08:18','2014-01-23 23:38:07',151,'Single',50.00,'USD',4,1,'civicrm_line_item',75),(89,'2014-01-23 18:08:18','2014-01-23 23:38:07',109,'Single',50.00,'USD',4,1,'civicrm_line_item',76),(90,'2014-01-23 18:08:18','2014-01-23 23:38:07',73,'Single',50.00,'USD',4,1,'civicrm_line_item',77),(91,'2014-01-23 18:08:18','2014-01-23 23:38:07',5,'Single',50.00,'USD',4,1,'civicrm_line_item',78),(92,'2014-01-23 18:08:19','2014-01-23 23:38:07',40,'Single',50.00,'USD',4,1,'civicrm_line_item',79),(93,'2014-01-23 18:08:19','2014-01-23 23:38:07',26,'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,'2014-01-28 12:46:17','2010-04-11 00:00:00',2,'Contribution Amount',125.00,'USD',1,1,'civicrm_line_item',1),(2,'2014-01-28 12:46:18','2010-03-21 00:00:00',4,'Contribution Amount',50.00,'USD',1,1,'civicrm_line_item',2),(3,'2014-01-28 12:46:18','2010-04-29 00:00:00',6,'Contribution Amount',25.00,'USD',1,1,'civicrm_line_item',3),(4,'2014-01-28 12:46:18','2010-04-11 00:00:00',8,'Contribution Amount',50.00,'USD',1,1,'civicrm_line_item',4),(5,'2014-01-28 12:46:18','2010-04-15 00:00:00',16,'Contribution Amount',500.00,'USD',1,1,'civicrm_line_item',5),(6,'2014-01-28 12:46:18','2010-04-11 00:00:00',19,'Contribution Amount',175.00,'USD',1,1,'civicrm_line_item',6),(7,'2014-01-28 12:46:19','2010-03-27 00:00:00',82,'Contribution Amount',50.00,'USD',1,1,'civicrm_line_item',7),(8,'2014-01-28 12:46:19','2010-03-08 00:00:00',92,'Contribution Amount',10.00,'USD',1,1,'civicrm_line_item',8),(9,'2014-01-28 12:46:19','2010-04-22 00:00:00',34,'Contribution Amount',250.00,'USD',1,1,'civicrm_line_item',9),(10,'2014-01-28 12:46:19','2009-07-01 11:53:50',71,'Contribution Amount',500.00,'USD',1,1,'civicrm_line_item',10),(11,'2014-01-28 12:46:19','2009-07-01 12:55:41',43,'Contribution Amount',200.00,'USD',1,1,'civicrm_line_item',11),(12,'2014-01-28 12:46:20','2009-10-01 11:53:50',32,'Contribution Amount',200.00,'USD',1,1,'civicrm_line_item',12),(13,'2014-01-28 12:46:20','2009-12-01 12:55:41',32,'Contribution Amount',200.00,'USD',1,1,'civicrm_line_item',13),(14,'2014-01-28 12:46:20','2014-01-28 18:16:14',54,'General',100.00,'USD',2,1,'civicrm_line_item',16),(15,'2014-01-28 12:46:20','2014-01-28 18:16:14',197,'General',100.00,'USD',2,1,'civicrm_line_item',17),(16,'2014-01-28 12:46:20','2014-01-28 18:16:14',52,'General',100.00,'USD',2,1,'civicrm_line_item',18),(17,'2014-01-28 12:46:21','2014-01-28 18:16:14',21,'General',100.00,'USD',2,1,'civicrm_line_item',19),(18,'2014-01-28 12:46:21','2014-01-28 18:16:14',4,'General',100.00,'USD',2,1,'civicrm_line_item',20),(19,'2014-01-28 12:46:21','2014-01-28 18:16:14',130,'General',100.00,'USD',2,1,'civicrm_line_item',21),(20,'2014-01-28 12:46:21','2014-01-28 18:16:14',128,'General',100.00,'USD',2,1,'civicrm_line_item',22),(21,'2014-01-28 12:46:22','2014-01-28 18:16:14',30,'General',100.00,'USD',2,1,'civicrm_line_item',23),(22,'2014-01-28 12:46:22','2014-01-28 18:16:14',132,'General',100.00,'USD',2,1,'civicrm_line_item',24),(23,'2014-01-28 12:46:22','2014-01-28 18:16:14',74,'General',100.00,'USD',2,1,'civicrm_line_item',25),(24,'2014-01-28 12:46:22','2014-01-28 18:16:14',18,'General',100.00,'USD',2,1,'civicrm_line_item',26),(25,'2014-01-28 12:46:22','2014-01-28 18:16:14',120,'General',100.00,'USD',2,1,'civicrm_line_item',27),(26,'2014-01-28 12:46:23','2014-01-28 18:16:14',34,'General',100.00,'USD',2,1,'civicrm_line_item',28),(27,'2014-01-28 12:46:23','2014-01-28 18:16:14',58,'General',100.00,'USD',2,1,'civicrm_line_item',29),(28,'2014-01-28 12:46:23','2014-01-28 18:16:14',114,'General',100.00,'USD',2,1,'civicrm_line_item',30),(29,'2014-01-28 12:46:23','2014-01-28 18:16:14',171,'Student',50.00,'USD',2,1,'civicrm_line_item',31),(30,'2014-01-28 12:46:23','2014-01-28 18:16:14',150,'Student',50.00,'USD',2,1,'civicrm_line_item',32),(31,'2014-01-28 12:46:24','2014-01-28 18:16:14',83,'Student',50.00,'USD',2,1,'civicrm_line_item',33),(32,'2014-01-28 12:46:24','2014-01-28 18:16:14',129,'Student',50.00,'USD',2,1,'civicrm_line_item',34),(33,'2014-01-28 12:46:24','2014-01-28 18:16:14',88,'Student',50.00,'USD',2,1,'civicrm_line_item',35),(34,'2014-01-28 12:46:24','2014-01-28 18:16:14',47,'Student',50.00,'USD',2,1,'civicrm_line_item',36),(35,'2014-01-28 12:46:25','2014-01-28 18:16:14',162,'Student',50.00,'USD',2,1,'civicrm_line_item',37),(36,'2014-01-28 12:46:25','2014-01-28 18:16:14',39,'Student',50.00,'USD',2,1,'civicrm_line_item',38),(37,'2014-01-28 12:46:25','2014-01-28 18:16:14',27,'Student',50.00,'USD',2,1,'civicrm_line_item',39),(38,'2014-01-28 12:46:25','2014-01-28 18:16:14',201,'Student',50.00,'USD',2,1,'civicrm_line_item',40),(39,'2014-01-28 12:46:26','2014-01-28 18:16:14',31,'Student',50.00,'USD',2,1,'civicrm_line_item',41),(40,'2014-01-28 12:46:26','2014-01-28 18:16:14',137,'Student',50.00,'USD',2,1,'civicrm_line_item',42),(41,'2014-01-28 12:46:26','2014-01-28 18:16:14',59,'Student',50.00,'USD',2,1,'civicrm_line_item',43),(42,'2014-01-28 12:46:26','2014-01-28 18:16:14',112,'Lifetime',1200.00,'USD',2,1,'civicrm_line_item',44),(43,'2014-01-28 12:46:27','2014-01-28 18:16:14',125,'Lifetime',1200.00,'USD',2,1,'civicrm_line_item',45),(44,'2014-01-28 12:46:28','2014-01-28 18:16:28',175,'Soprano',50.00,'USD',2,1,'civicrm_line_item',81),(45,'2014-01-28 12:46:28','2014-01-28 18:16:28',184,'Soprano',50.00,'USD',2,1,'civicrm_line_item',82),(46,'2014-01-28 12:46:29','2014-01-28 18:16:28',174,'Soprano',50.00,'USD',2,1,'civicrm_line_item',83),(47,'2014-01-28 12:46:29','2014-01-28 18:16:28',82,'Soprano',50.00,'USD',2,1,'civicrm_line_item',84),(48,'2014-01-28 12:46:29','2014-01-28 18:16:28',149,'Soprano',50.00,'USD',2,1,'civicrm_line_item',85),(49,'2014-01-28 12:46:29','2014-01-28 18:16:28',104,'Soprano',50.00,'USD',2,1,'civicrm_line_item',86),(50,'2014-01-28 12:46:29','2014-01-28 18:16:28',167,'Soprano',50.00,'USD',2,1,'civicrm_line_item',87),(51,'2014-01-28 12:46:30','2014-01-28 18:16:28',40,'Soprano',50.00,'USD',2,1,'civicrm_line_item',88),(52,'2014-01-28 12:46:30','2014-01-28 18:16:28',140,'Soprano',50.00,'USD',2,1,'civicrm_line_item',89),(53,'2014-01-28 12:46:30','2014-01-28 18:16:28',36,'Soprano',50.00,'USD',2,1,'civicrm_line_item',90),(54,'2014-01-28 12:46:30','2014-01-28 18:16:28',178,'Soprano',50.00,'USD',2,1,'civicrm_line_item',91),(55,'2014-01-28 12:46:30','2014-01-28 18:16:28',127,'Soprano',50.00,'USD',2,1,'civicrm_line_item',92),(56,'2014-01-28 12:46:31','2014-01-28 18:16:28',38,'Soprano',50.00,'USD',2,1,'civicrm_line_item',93),(57,'2014-01-28 12:46:31','2014-01-28 18:16:28',157,'Soprano',50.00,'USD',2,1,'civicrm_line_item',94),(58,'2014-01-28 12:46:31','2014-01-28 18:16:28',88,'Soprano',50.00,'USD',2,1,'civicrm_line_item',95),(59,'2014-01-28 12:46:31','2014-01-28 18:16:28',173,'Soprano',50.00,'USD',2,1,'civicrm_line_item',96),(60,'2014-01-28 12:46:32','2014-01-28 18:16:28',105,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',47),(61,'2014-01-28 12:46:32','2014-01-28 18:16:28',177,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',48),(62,'2014-01-28 12:46:32','2014-01-28 18:16:28',195,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',49),(63,'2014-01-28 12:46:32','2014-01-28 18:16:28',72,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',50),(64,'2014-01-28 12:46:33','2014-01-28 18:16:28',80,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',51),(65,'2014-01-28 12:46:33','2014-01-28 18:16:28',108,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',52),(66,'2014-01-28 12:46:33','2014-01-28 18:16:28',121,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',53),(67,'2014-01-28 12:46:33','2014-01-28 18:16:28',61,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',54),(68,'2014-01-28 12:46:34','2014-01-28 18:16:28',14,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',55),(69,'2014-01-28 12:46:34','2014-01-28 18:16:28',124,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',56),(70,'2014-01-28 12:46:34','2014-01-28 18:16:28',123,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',57),(71,'2014-01-28 12:46:34','2014-01-28 18:16:28',122,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',58),(72,'2014-01-28 12:46:34','2014-01-28 18:16:28',137,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',59),(73,'2014-01-28 12:46:35','2014-01-28 18:16:28',91,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',60),(74,'2014-01-28 12:46:35','2014-01-28 18:16:28',37,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',61),(75,'2014-01-28 12:46:35','2014-01-28 18:16:28',5,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',62),(76,'2014-01-28 12:46:35','2014-01-28 18:16:28',97,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',63),(77,'2014-01-28 12:46:35','2014-01-28 18:16:28',106,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',64),(78,'2014-01-28 12:46:36','2014-01-28 18:16:28',187,'Single',50.00,'USD',4,1,'civicrm_line_item',65),(79,'2014-01-28 12:46:36','2014-01-28 18:16:28',100,'Single',50.00,'USD',4,1,'civicrm_line_item',66),(80,'2014-01-28 12:46:36','2014-01-28 18:16:28',134,'Single',50.00,'USD',4,1,'civicrm_line_item',67),(81,'2014-01-28 12:46:36','2014-01-28 18:16:28',2,'Single',50.00,'USD',4,1,'civicrm_line_item',68),(82,'2014-01-28 12:46:37','2014-01-28 18:16:28',3,'Single',50.00,'USD',4,1,'civicrm_line_item',69),(83,'2014-01-28 12:46:37','2014-01-28 18:16:28',133,'Single',50.00,'USD',4,1,'civicrm_line_item',70),(84,'2014-01-28 12:46:37','2014-01-28 18:16:28',73,'Single',50.00,'USD',4,1,'civicrm_line_item',71),(85,'2014-01-28 12:46:37','2014-01-28 18:16:28',129,'Single',50.00,'USD',4,1,'civicrm_line_item',72),(86,'2014-01-28 12:46:37','2014-01-28 18:16:28',78,'Single',50.00,'USD',4,1,'civicrm_line_item',73),(87,'2014-01-28 12:46:38','2014-01-28 18:16:28',161,'Single',50.00,'USD',4,1,'civicrm_line_item',74),(88,'2014-01-28 12:46:38','2014-01-28 18:16:28',31,'Single',50.00,'USD',4,1,'civicrm_line_item',75),(89,'2014-01-28 12:46:38','2014-01-28 18:16:28',86,'Single',50.00,'USD',4,1,'civicrm_line_item',76),(90,'2014-01-28 12:46:39','2014-01-28 18:16:28',24,'Single',50.00,'USD',4,1,'civicrm_line_item',77),(91,'2014-01-28 12:46:39','2014-01-28 18:16:28',142,'Single',50.00,'USD',4,1,'civicrm_line_item',78),(92,'2014-01-28 12:46:40','2014-01-28 18:16:28',92,'Single',50.00,'USD',4,1,'civicrm_line_item',79),(93,'2014-01-28 12:46:40','2014-01-28 18:16:28',7,'Single',50.00,'USD',4,1,'civicrm_line_item',80); /*!40000 ALTER TABLE `civicrm_financial_item` ENABLE KEYS */; UNLOCK TABLES; @@ -516,7 +516,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`, `trxn_id`, `trxn_result_code`, `status_id`, `payment_processor_id`, `payment_instrument_id`, `check_number`) VALUES (1,NULL,6,'2010-04-11 00:00:00',125.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,'1041'),(2,NULL,12,'2010-03-21 00:00:00',50.00,NULL,NULL,'USD','P20901X1',NULL,1,NULL,1,NULL),(3,NULL,6,'2010-04-29 00:00:00',25.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,'2095'),(4,NULL,6,'2010-04-11 00:00:00',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,'10552'),(5,NULL,6,'2010-04-15 00:00:00',500.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,'509'),(6,NULL,6,'2010-04-11 00:00:00',175.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,'102'),(7,NULL,12,'2010-03-27 00:00:00',50.00,NULL,NULL,'USD','P20193L2',NULL,1,NULL,1,NULL),(8,NULL,12,'2010-03-08 00:00:00',10.00,NULL,NULL,'USD','P40232Y3',NULL,1,NULL,1,NULL),(9,NULL,12,'2010-04-22 00:00:00',250.00,NULL,NULL,'USD','P20193L6',NULL,1,NULL,1,NULL),(10,NULL,12,'2009-07-01 11:53:50',500.00,NULL,NULL,'USD','PL71',NULL,1,NULL,1,NULL),(11,NULL,12,'2009-07-01 12:55:41',200.00,NULL,NULL,'USD','PL43II',NULL,1,NULL,1,NULL),(12,NULL,12,'2009-10-01 11:53:50',200.00,NULL,NULL,'USD','PL32I',NULL,1,NULL,1,NULL),(13,NULL,12,'2009-12-01 12:55:41',200.00,NULL,NULL,'USD','PL32II',NULL,1,NULL,1,NULL),(14,NULL,12,'2014-01-23 23:37:54',100.00,NULL,NULL,'USD',NULL,NULL,1,NULL,1,NULL),(15,NULL,12,'2014-01-23 23:37:54',100.00,NULL,NULL,'USD',NULL,NULL,1,NULL,1,NULL),(16,NULL,12,'2014-01-23 23:37:54',100.00,NULL,NULL,'USD',NULL,NULL,1,NULL,1,NULL),(17,NULL,12,'2014-01-23 23:37:54',100.00,NULL,NULL,'USD',NULL,NULL,1,NULL,1,NULL),(18,NULL,12,'2014-01-23 23:37:54',100.00,NULL,NULL,'USD',NULL,NULL,1,NULL,1,NULL),(19,NULL,12,'2014-01-23 23:37:54',100.00,NULL,NULL,'USD',NULL,NULL,1,NULL,1,NULL),(20,NULL,12,'2014-01-23 23:37:54',100.00,NULL,NULL,'USD',NULL,NULL,1,NULL,1,NULL),(21,NULL,12,'2014-01-23 23:37:54',100.00,NULL,NULL,'USD',NULL,NULL,1,NULL,1,NULL),(22,NULL,12,'2014-01-23 23:37:54',100.00,NULL,NULL,'USD',NULL,NULL,1,NULL,1,NULL),(23,NULL,12,'2014-01-23 23:37:54',100.00,NULL,NULL,'USD',NULL,NULL,1,NULL,1,NULL),(24,NULL,12,'2014-01-23 23:37:54',100.00,NULL,NULL,'USD',NULL,NULL,1,NULL,1,NULL),(25,NULL,12,'2014-01-23 23:37:54',100.00,NULL,NULL,'USD',NULL,NULL,1,NULL,1,NULL),(26,NULL,12,'2014-01-23 23:37:54',100.00,NULL,NULL,'USD',NULL,NULL,1,NULL,1,NULL),(27,NULL,12,'2014-01-23 23:37:54',100.00,NULL,NULL,'USD',NULL,NULL,1,NULL,1,NULL),(28,NULL,12,'2014-01-23 23:37:54',100.00,NULL,NULL,'USD',NULL,NULL,1,NULL,1,NULL),(29,NULL,12,'2014-01-23 23:37:54',100.00,NULL,NULL,'USD',NULL,NULL,1,NULL,1,NULL),(30,NULL,12,'2014-01-23 23:37:54',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,1,NULL),(31,NULL,12,'2014-01-23 23:37:54',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,1,NULL),(32,NULL,12,'2014-01-23 23:37:54',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,1,NULL),(33,NULL,12,'2014-01-23 23:37:54',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,1,NULL),(34,NULL,12,'2014-01-23 23:37:54',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,1,NULL),(35,NULL,12,'2014-01-23 23:37:54',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,1,NULL),(36,NULL,12,'2014-01-23 23:37:54',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,1,NULL),(37,NULL,12,'2014-01-23 23:37:54',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,1,NULL),(38,NULL,12,'2014-01-23 23:37:54',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,1,NULL),(39,NULL,12,'2014-01-23 23:37:54',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,1,NULL),(40,NULL,12,'2014-01-23 23:37:54',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,1,NULL),(41,NULL,12,'2014-01-23 23:37:54',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,1,NULL),(42,NULL,12,'2014-01-23 23:37:54',1200.00,NULL,NULL,'USD',NULL,NULL,1,NULL,1,NULL),(43,NULL,12,'2014-01-23 23:37:54',1200.00,NULL,NULL,'USD',NULL,NULL,1,NULL,1,NULL),(44,NULL,NULL,'2014-01-23 23:38:07',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(45,NULL,NULL,'2014-01-23 23:38:07',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(46,NULL,NULL,'2014-01-23 23:38:07',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(47,NULL,NULL,'2014-01-23 23:38:07',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(48,NULL,NULL,'2014-01-23 23:38:07',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(49,NULL,NULL,'2014-01-23 23:38:07',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(50,NULL,NULL,'2014-01-23 23:38:07',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(51,NULL,NULL,'2014-01-23 23:38:07',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(52,NULL,NULL,'2014-01-23 23:38:07',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(53,NULL,NULL,'2014-01-23 23:38:07',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(54,NULL,NULL,'2014-01-23 23:38:07',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(55,NULL,NULL,'2014-01-23 23:38:07',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(56,NULL,NULL,'2014-01-23 23:38:07',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(57,NULL,NULL,'2014-01-23 23:38:07',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(58,NULL,NULL,'2014-01-23 23:38:07',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(59,NULL,NULL,'2014-01-23 23:38:07',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(60,NULL,NULL,'2014-01-23 23:38:07',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(61,NULL,NULL,'2014-01-23 23:38:07',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(62,NULL,NULL,'2014-01-23 23:38:07',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(63,NULL,NULL,'2014-01-23 23:38:07',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(64,NULL,NULL,'2014-01-23 23:38:07',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(65,NULL,NULL,'2014-01-23 23:38:07',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(66,NULL,NULL,'2014-01-23 23:38:07',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(67,NULL,NULL,'2014-01-23 23:38:07',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(68,NULL,NULL,'2014-01-23 23:38:07',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(69,NULL,NULL,'2014-01-23 23:38:07',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(70,NULL,NULL,'2014-01-23 23:38:07',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(71,NULL,NULL,'2014-01-23 23:38:07',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(72,NULL,NULL,'2014-01-23 23:38:07',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(73,NULL,NULL,'2014-01-23 23:38:07',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(74,NULL,NULL,'2014-01-23 23:38:07',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(75,NULL,NULL,'2014-01-23 23:38:07',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(76,NULL,NULL,'2014-01-23 23:38:07',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(77,NULL,NULL,'2014-01-23 23:38:07',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(78,NULL,NULL,'2014-01-23 23:38:07',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(79,NULL,NULL,'2014-01-23 23:38:07',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(80,NULL,NULL,'2014-01-23 23:38:07',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(81,NULL,NULL,'2014-01-23 23:38:07',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(82,NULL,NULL,'2014-01-23 23:38:07',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(83,NULL,NULL,'2014-01-23 23:38:07',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(84,NULL,NULL,'2014-01-23 23:38:07',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(85,NULL,NULL,'2014-01-23 23:38:07',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(86,NULL,NULL,'2014-01-23 23:38:07',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(87,NULL,NULL,'2014-01-23 23:38:07',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(88,NULL,NULL,'2014-01-23 23:38:07',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(89,NULL,NULL,'2014-01-23 23:38:07',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(90,NULL,NULL,'2014-01-23 23:38:07',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(91,NULL,NULL,'2014-01-23 23:38:07',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(92,NULL,NULL,'2014-01-23 23:38:07',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(93,NULL,NULL,'2014-01-23 23:38:07',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL); +INSERT INTO `civicrm_financial_trxn` (`id`, `from_financial_account_id`, `to_financial_account_id`, `trxn_date`, `total_amount`, `fee_amount`, `net_amount`, `currency`, `trxn_id`, `trxn_result_code`, `status_id`, `payment_processor_id`, `payment_instrument_id`, `check_number`) VALUES (1,NULL,6,'2010-04-11 00:00:00',125.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,'1041'),(2,NULL,12,'2010-03-21 00:00:00',50.00,NULL,NULL,'USD','P20901X1',NULL,1,NULL,1,NULL),(3,NULL,6,'2010-04-29 00:00:00',25.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,'2095'),(4,NULL,6,'2010-04-11 00:00:00',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,'10552'),(5,NULL,6,'2010-04-15 00:00:00',500.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,'509'),(6,NULL,6,'2010-04-11 00:00:00',175.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,'102'),(7,NULL,12,'2010-03-27 00:00:00',50.00,NULL,NULL,'USD','P20193L2',NULL,1,NULL,1,NULL),(8,NULL,12,'2010-03-08 00:00:00',10.00,NULL,NULL,'USD','P40232Y3',NULL,1,NULL,1,NULL),(9,NULL,12,'2010-04-22 00:00:00',250.00,NULL,NULL,'USD','P20193L6',NULL,1,NULL,1,NULL),(10,NULL,12,'2009-07-01 11:53:50',500.00,NULL,NULL,'USD','PL71',NULL,1,NULL,1,NULL),(11,NULL,12,'2009-07-01 12:55:41',200.00,NULL,NULL,'USD','PL43II',NULL,1,NULL,1,NULL),(12,NULL,12,'2009-10-01 11:53:50',200.00,NULL,NULL,'USD','PL32I',NULL,1,NULL,1,NULL),(13,NULL,12,'2009-12-01 12:55:41',200.00,NULL,NULL,'USD','PL32II',NULL,1,NULL,1,NULL),(14,NULL,12,'2014-01-28 18:16:14',100.00,NULL,NULL,'USD',NULL,NULL,1,NULL,1,NULL),(15,NULL,12,'2014-01-28 18:16:14',100.00,NULL,NULL,'USD',NULL,NULL,1,NULL,1,NULL),(16,NULL,12,'2014-01-28 18:16:14',100.00,NULL,NULL,'USD',NULL,NULL,1,NULL,1,NULL),(17,NULL,12,'2014-01-28 18:16:14',100.00,NULL,NULL,'USD',NULL,NULL,1,NULL,1,NULL),(18,NULL,12,'2014-01-28 18:16:14',100.00,NULL,NULL,'USD',NULL,NULL,1,NULL,1,NULL),(19,NULL,12,'2014-01-28 18:16:14',100.00,NULL,NULL,'USD',NULL,NULL,1,NULL,1,NULL),(20,NULL,12,'2014-01-28 18:16:14',100.00,NULL,NULL,'USD',NULL,NULL,1,NULL,1,NULL),(21,NULL,12,'2014-01-28 18:16:14',100.00,NULL,NULL,'USD',NULL,NULL,1,NULL,1,NULL),(22,NULL,12,'2014-01-28 18:16:14',100.00,NULL,NULL,'USD',NULL,NULL,1,NULL,1,NULL),(23,NULL,12,'2014-01-28 18:16:14',100.00,NULL,NULL,'USD',NULL,NULL,1,NULL,1,NULL),(24,NULL,12,'2014-01-28 18:16:14',100.00,NULL,NULL,'USD',NULL,NULL,1,NULL,1,NULL),(25,NULL,12,'2014-01-28 18:16:14',100.00,NULL,NULL,'USD',NULL,NULL,1,NULL,1,NULL),(26,NULL,12,'2014-01-28 18:16:14',100.00,NULL,NULL,'USD',NULL,NULL,1,NULL,1,NULL),(27,NULL,12,'2014-01-28 18:16:14',100.00,NULL,NULL,'USD',NULL,NULL,1,NULL,1,NULL),(28,NULL,12,'2014-01-28 18:16:14',100.00,NULL,NULL,'USD',NULL,NULL,1,NULL,1,NULL),(29,NULL,12,'2014-01-28 18:16:14',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,1,NULL),(30,NULL,12,'2014-01-28 18:16:14',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,1,NULL),(31,NULL,12,'2014-01-28 18:16:14',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,1,NULL),(32,NULL,12,'2014-01-28 18:16:14',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,1,NULL),(33,NULL,12,'2014-01-28 18:16:14',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,1,NULL),(34,NULL,12,'2014-01-28 18:16:14',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,1,NULL),(35,NULL,12,'2014-01-28 18:16:14',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,1,NULL),(36,NULL,12,'2014-01-28 18:16:14',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,1,NULL),(37,NULL,12,'2014-01-28 18:16:14',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,1,NULL),(38,NULL,12,'2014-01-28 18:16:14',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,1,NULL),(39,NULL,12,'2014-01-28 18:16:14',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,1,NULL),(40,NULL,12,'2014-01-28 18:16:14',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,1,NULL),(41,NULL,12,'2014-01-28 18:16:14',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,1,NULL),(42,NULL,12,'2014-01-28 18:16:14',1200.00,NULL,NULL,'USD',NULL,NULL,1,NULL,1,NULL),(43,NULL,12,'2014-01-28 18:16:14',1200.00,NULL,NULL,'USD',NULL,NULL,1,NULL,1,NULL),(44,NULL,NULL,'2014-01-28 18:16:28',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(45,NULL,NULL,'2014-01-28 18:16:28',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(46,NULL,NULL,'2014-01-28 18:16:28',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(47,NULL,NULL,'2014-01-28 18:16:28',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(48,NULL,NULL,'2014-01-28 18:16:28',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(49,NULL,NULL,'2014-01-28 18:16:28',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(50,NULL,NULL,'2014-01-28 18:16:28',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(51,NULL,NULL,'2014-01-28 18:16:28',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(52,NULL,NULL,'2014-01-28 18:16:28',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(53,NULL,NULL,'2014-01-28 18:16:28',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(54,NULL,NULL,'2014-01-28 18:16:28',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(55,NULL,NULL,'2014-01-28 18:16:28',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(56,NULL,NULL,'2014-01-28 18:16:28',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(57,NULL,NULL,'2014-01-28 18:16:28',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(58,NULL,NULL,'2014-01-28 18:16:28',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(59,NULL,NULL,'2014-01-28 18:16:28',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(60,NULL,NULL,'2014-01-28 18:16:28',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(61,NULL,NULL,'2014-01-28 18:16:28',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(62,NULL,NULL,'2014-01-28 18:16:28',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(63,NULL,NULL,'2014-01-28 18:16:28',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(64,NULL,NULL,'2014-01-28 18:16:28',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(65,NULL,NULL,'2014-01-28 18:16:28',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(66,NULL,NULL,'2014-01-28 18:16:28',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(67,NULL,NULL,'2014-01-28 18:16:28',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(68,NULL,NULL,'2014-01-28 18:16:28',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(69,NULL,NULL,'2014-01-28 18:16:28',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(70,NULL,NULL,'2014-01-28 18:16:28',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(71,NULL,NULL,'2014-01-28 18:16:28',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(72,NULL,NULL,'2014-01-28 18:16:28',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(73,NULL,NULL,'2014-01-28 18:16:28',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(74,NULL,NULL,'2014-01-28 18:16:28',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(75,NULL,NULL,'2014-01-28 18:16:28',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(76,NULL,NULL,'2014-01-28 18:16:28',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(77,NULL,NULL,'2014-01-28 18:16:28',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(78,NULL,NULL,'2014-01-28 18:16:28',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(79,NULL,NULL,'2014-01-28 18:16:28',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(80,NULL,NULL,'2014-01-28 18:16:28',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(81,NULL,NULL,'2014-01-28 18:16:28',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(82,NULL,NULL,'2014-01-28 18:16:28',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(83,NULL,NULL,'2014-01-28 18:16:28',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(84,NULL,NULL,'2014-01-28 18:16:28',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(85,NULL,NULL,'2014-01-28 18:16:28',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(86,NULL,NULL,'2014-01-28 18:16:28',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(87,NULL,NULL,'2014-01-28 18:16:28',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(88,NULL,NULL,'2014-01-28 18:16:28',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(89,NULL,NULL,'2014-01-28 18:16:28',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(90,NULL,NULL,'2014-01-28 18:16:28',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(91,NULL,NULL,'2014-01-28 18:16:28',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(92,NULL,NULL,'2014-01-28 18:16:28',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(93,NULL,NULL,'2014-01-28 18:16:28',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL); /*!40000 ALTER TABLE `civicrm_financial_trxn` ENABLE KEYS */; UNLOCK TABLES; @@ -555,7 +555,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,172,'Added',NULL,NULL),(2,2,88,'Added',NULL,NULL),(3,2,85,'Added',NULL,NULL),(4,2,146,'Added',NULL,NULL),(5,2,112,'Added',NULL,NULL),(6,2,113,'Added',NULL,NULL),(7,2,103,'Added',NULL,NULL),(8,2,30,'Added',NULL,NULL),(9,2,81,'Added',NULL,NULL),(10,2,137,'Added',NULL,NULL),(11,2,169,'Added',NULL,NULL),(12,2,125,'Added',NULL,NULL),(13,2,177,'Added',NULL,NULL),(14,2,152,'Added',NULL,NULL),(15,2,159,'Added',NULL,NULL),(16,2,3,'Added',NULL,NULL),(17,2,124,'Added',NULL,NULL),(18,2,92,'Added',NULL,NULL),(19,2,44,'Added',NULL,NULL),(20,2,16,'Added',NULL,NULL),(21,2,93,'Added',NULL,NULL),(22,2,150,'Added',NULL,NULL),(23,2,89,'Added',NULL,NULL),(24,2,4,'Added',NULL,NULL),(25,2,164,'Added',NULL,NULL),(26,2,90,'Added',NULL,NULL),(27,2,67,'Added',NULL,NULL),(28,2,151,'Added',NULL,NULL),(29,2,82,'Added',NULL,NULL),(30,2,42,'Added',NULL,NULL),(31,2,57,'Added',NULL,NULL),(32,2,66,'Added',NULL,NULL),(33,2,188,'Added',NULL,NULL),(34,2,160,'Added',NULL,NULL),(35,2,28,'Added',NULL,NULL),(36,2,189,'Added',NULL,NULL),(37,2,70,'Added',NULL,NULL),(38,2,201,'Added',NULL,NULL),(39,2,156,'Added',NULL,NULL),(40,2,166,'Added',NULL,NULL),(41,2,190,'Added',NULL,NULL),(42,2,127,'Added',NULL,NULL),(43,2,49,'Added',NULL,NULL),(44,2,91,'Added',NULL,NULL),(45,2,196,'Added',NULL,NULL),(46,2,173,'Added',NULL,NULL),(47,2,55,'Added',NULL,NULL),(48,2,83,'Added',NULL,NULL),(49,2,99,'Added',NULL,NULL),(50,2,128,'Added',NULL,NULL),(51,2,110,'Added',NULL,NULL),(52,2,36,'Added',NULL,NULL),(53,2,75,'Added',NULL,NULL),(54,2,51,'Added',NULL,NULL),(55,2,167,'Added',NULL,NULL),(56,2,76,'Added',NULL,NULL),(57,2,45,'Added',NULL,NULL),(58,2,77,'Added',NULL,NULL),(59,2,114,'Added',NULL,NULL),(60,2,102,'Added',NULL,NULL),(61,3,11,'Added',NULL,NULL),(62,3,168,'Added',NULL,NULL),(63,3,135,'Added',NULL,NULL),(64,3,118,'Added',NULL,NULL),(65,3,143,'Added',NULL,NULL),(66,3,192,'Added',NULL,NULL),(67,3,63,'Added',NULL,NULL),(68,3,18,'Added',NULL,NULL),(69,3,174,'Added',NULL,NULL),(70,3,171,'Added',NULL,NULL),(71,3,87,'Added',NULL,NULL),(72,3,185,'Added',NULL,NULL),(73,3,120,'Added',NULL,NULL),(74,3,94,'Added',NULL,NULL),(75,3,41,'Added',NULL,NULL),(76,4,172,'Added',NULL,NULL),(77,4,30,'Added',NULL,NULL),(78,4,159,'Added',NULL,NULL),(79,4,150,'Added',NULL,NULL),(80,4,82,'Added',NULL,NULL),(81,4,189,'Added',NULL,NULL),(82,4,49,'Added',NULL,NULL),(83,4,128,'Added',NULL,NULL); +INSERT INTO `civicrm_group_contact` (`id`, `group_id`, `contact_id`, `status`, `location_id`, `email_id`) VALUES (1,2,34,'Added',NULL,NULL),(2,2,192,'Added',NULL,NULL),(3,2,30,'Added',NULL,NULL),(4,2,54,'Added',NULL,NULL),(5,2,112,'Added',NULL,NULL),(6,2,99,'Added',NULL,NULL),(7,2,41,'Added',NULL,NULL),(8,2,178,'Added',NULL,NULL),(9,2,29,'Added',NULL,NULL),(10,2,180,'Added',NULL,NULL),(11,2,66,'Added',NULL,NULL),(12,2,32,'Added',NULL,NULL),(13,2,134,'Added',NULL,NULL),(14,2,26,'Added',NULL,NULL),(15,2,165,'Added',NULL,NULL),(16,2,179,'Added',NULL,NULL),(17,2,159,'Added',NULL,NULL),(18,2,183,'Added',NULL,NULL),(19,2,55,'Added',NULL,NULL),(20,2,42,'Added',NULL,NULL),(21,2,8,'Added',NULL,NULL),(22,2,86,'Added',NULL,NULL),(23,2,139,'Added',NULL,NULL),(24,2,116,'Added',NULL,NULL),(25,2,52,'Added',NULL,NULL),(26,2,186,'Added',NULL,NULL),(27,2,108,'Added',NULL,NULL),(28,2,24,'Added',NULL,NULL),(29,2,146,'Added',NULL,NULL),(30,2,3,'Added',NULL,NULL),(31,2,69,'Added',NULL,NULL),(32,2,89,'Added',NULL,NULL),(33,2,172,'Added',NULL,NULL),(34,2,80,'Added',NULL,NULL),(35,2,182,'Added',NULL,NULL),(36,2,131,'Added',NULL,NULL),(37,2,193,'Added',NULL,NULL),(38,2,82,'Added',NULL,NULL),(39,2,174,'Added',NULL,NULL),(40,2,191,'Added',NULL,NULL),(41,2,27,'Added',NULL,NULL),(42,2,175,'Added',NULL,NULL),(43,2,123,'Added',NULL,NULL),(44,2,189,'Added',NULL,NULL),(45,2,121,'Added',NULL,NULL),(46,2,133,'Added',NULL,NULL),(47,2,194,'Added',NULL,NULL),(48,2,152,'Added',NULL,NULL),(49,2,7,'Added',NULL,NULL),(50,2,92,'Added',NULL,NULL),(51,2,83,'Added',NULL,NULL),(52,2,16,'Added',NULL,NULL),(53,2,171,'Added',NULL,NULL),(54,2,43,'Added',NULL,NULL),(55,2,73,'Added',NULL,NULL),(56,2,118,'Added',NULL,NULL),(57,2,12,'Added',NULL,NULL),(58,2,38,'Added',NULL,NULL),(59,2,132,'Added',NULL,NULL),(60,2,127,'Added',NULL,NULL),(61,3,61,'Added',NULL,NULL),(62,3,77,'Added',NULL,NULL),(63,3,158,'Added',NULL,NULL),(64,3,135,'Added',NULL,NULL),(65,3,185,'Added',NULL,NULL),(66,3,151,'Added',NULL,NULL),(67,3,75,'Added',NULL,NULL),(68,3,101,'Added',NULL,NULL),(69,3,81,'Added',NULL,NULL),(70,3,97,'Added',NULL,NULL),(71,3,25,'Added',NULL,NULL),(72,3,150,'Added',NULL,NULL),(73,3,141,'Added',NULL,NULL),(74,3,37,'Added',NULL,NULL),(75,3,137,'Added',NULL,NULL),(76,4,34,'Added',NULL,NULL),(77,4,178,'Added',NULL,NULL),(78,4,165,'Added',NULL,NULL),(79,4,86,'Added',NULL,NULL),(80,4,146,'Added',NULL,NULL),(81,4,131,'Added',NULL,NULL),(82,4,123,'Added',NULL,NULL),(83,4,92,'Added',NULL,NULL); /*!40000 ALTER TABLE `civicrm_group_contact` ENABLE KEYS */; UNLOCK TABLES; @@ -620,7 +620,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`, `price_field_id`, `label`, `qty`, `unit_price`, `line_total`, `participant_count`, `price_field_value_id`, `financial_type_id`, `deductible_amount`) VALUES (1,'civicrm_contribution',1,1,'Contribution Amount',1,125.00,125.00,0,1,1,0.00),(2,'civicrm_contribution',2,1,'Contribution Amount',1,50.00,50.00,0,1,1,0.00),(3,'civicrm_contribution',3,1,'Contribution Amount',1,25.00,25.00,0,1,1,0.00),(4,'civicrm_contribution',4,1,'Contribution Amount',1,50.00,50.00,0,1,1,0.00),(5,'civicrm_contribution',5,1,'Contribution Amount',1,500.00,500.00,0,1,1,0.00),(6,'civicrm_contribution',6,1,'Contribution Amount',1,175.00,175.00,0,1,1,0.00),(7,'civicrm_contribution',7,1,'Contribution Amount',1,50.00,50.00,0,1,1,0.00),(8,'civicrm_contribution',8,1,'Contribution Amount',1,10.00,10.00,0,1,1,0.00),(9,'civicrm_contribution',9,1,'Contribution Amount',1,250.00,250.00,0,1,1,0.00),(10,'civicrm_contribution',10,1,'Contribution Amount',1,500.00,500.00,0,1,1,0.00),(11,'civicrm_contribution',11,1,'Contribution Amount',1,200.00,200.00,0,1,1,0.00),(12,'civicrm_contribution',12,1,'Contribution Amount',1,200.00,200.00,0,1,1,0.00),(13,'civicrm_contribution',13,1,'Contribution Amount',1,200.00,200.00,0,1,1,0.00),(16,'civicrm_contribution',14,4,'General',1,100.00,100.00,NULL,7,2,0.00),(17,'civicrm_contribution',16,4,'General',1,100.00,100.00,NULL,7,2,0.00),(18,'civicrm_contribution',20,4,'General',1,100.00,100.00,NULL,7,2,0.00),(19,'civicrm_contribution',22,4,'General',1,100.00,100.00,NULL,7,2,0.00),(20,'civicrm_contribution',23,4,'General',1,100.00,100.00,NULL,7,2,0.00),(21,'civicrm_contribution',26,4,'General',1,100.00,100.00,NULL,7,2,0.00),(22,'civicrm_contribution',28,4,'General',1,100.00,100.00,NULL,7,2,0.00),(23,'civicrm_contribution',30,4,'General',1,100.00,100.00,NULL,7,2,0.00),(24,'civicrm_contribution',32,4,'General',1,100.00,100.00,NULL,7,2,0.00),(25,'civicrm_contribution',33,4,'General',1,100.00,100.00,NULL,7,2,0.00),(26,'civicrm_contribution',34,4,'General',1,100.00,100.00,NULL,7,2,0.00),(27,'civicrm_contribution',36,4,'General',1,100.00,100.00,NULL,7,2,0.00),(28,'civicrm_contribution',38,4,'General',1,100.00,100.00,NULL,7,2,0.00),(29,'civicrm_contribution',40,4,'General',1,100.00,100.00,NULL,7,2,0.00),(30,'civicrm_contribution',42,4,'General',1,100.00,100.00,NULL,7,2,0.00),(31,'civicrm_contribution',43,4,'General',1,100.00,100.00,NULL,7,2,0.00),(32,'civicrm_contribution',15,4,'Student',1,50.00,50.00,NULL,8,2,0.00),(33,'civicrm_contribution',17,4,'Student',1,50.00,50.00,NULL,8,2,0.00),(34,'civicrm_contribution',18,4,'Student',1,50.00,50.00,NULL,8,2,0.00),(35,'civicrm_contribution',19,4,'Student',1,50.00,50.00,NULL,8,2,0.00),(36,'civicrm_contribution',21,4,'Student',1,50.00,50.00,NULL,8,2,0.00),(37,'civicrm_contribution',25,4,'Student',1,50.00,50.00,NULL,8,2,0.00),(38,'civicrm_contribution',27,4,'Student',1,50.00,50.00,NULL,8,2,0.00),(39,'civicrm_contribution',29,4,'Student',1,50.00,50.00,NULL,8,2,0.00),(40,'civicrm_contribution',31,4,'Student',1,50.00,50.00,NULL,8,2,0.00),(41,'civicrm_contribution',37,4,'Student',1,50.00,50.00,NULL,8,2,0.00),(42,'civicrm_contribution',39,4,'Student',1,50.00,50.00,NULL,8,2,0.00),(43,'civicrm_contribution',41,4,'Student',1,50.00,50.00,NULL,8,2,0.00),(44,'civicrm_contribution',24,4,'Lifetime',1,1200.00,1200.00,NULL,9,2,0.00),(45,'civicrm_contribution',35,4,'Lifetime',1,1200.00,1200.00,NULL,9,2,0.00),(47,'civicrm_participant',3,7,'Tiny-tots (ages 5-8)',1,800.00,800.00,0,13,4,0.00),(48,'civicrm_participant',6,7,'Tiny-tots (ages 5-8)',1,800.00,800.00,0,13,4,0.00),(49,'civicrm_participant',9,7,'Tiny-tots (ages 5-8)',1,800.00,800.00,0,13,4,0.00),(50,'civicrm_participant',12,7,'Tiny-tots (ages 5-8)',1,800.00,800.00,0,13,4,0.00),(51,'civicrm_participant',15,7,'Tiny-tots (ages 5-8)',1,800.00,800.00,0,13,4,0.00),(52,'civicrm_participant',18,7,'Tiny-tots (ages 5-8)',1,800.00,800.00,0,13,4,0.00),(53,'civicrm_participant',21,7,'Tiny-tots (ages 5-8)',1,800.00,800.00,0,13,4,0.00),(54,'civicrm_participant',24,7,'Tiny-tots (ages 5-8)',1,800.00,800.00,0,13,4,0.00),(55,'civicrm_participant',25,7,'Tiny-tots (ages 5-8)',1,800.00,800.00,0,13,4,0.00),(56,'civicrm_participant',28,7,'Tiny-tots (ages 5-8)',1,800.00,800.00,0,13,4,0.00),(57,'civicrm_participant',31,7,'Tiny-tots (ages 5-8)',1,800.00,800.00,0,13,4,0.00),(58,'civicrm_participant',34,7,'Tiny-tots (ages 5-8)',1,800.00,800.00,0,13,4,0.00),(59,'civicrm_participant',37,7,'Tiny-tots (ages 5-8)',1,800.00,800.00,0,13,4,0.00),(60,'civicrm_participant',40,7,'Tiny-tots (ages 5-8)',1,800.00,800.00,0,13,4,0.00),(61,'civicrm_participant',43,7,'Tiny-tots (ages 5-8)',1,800.00,800.00,0,13,4,0.00),(62,'civicrm_participant',46,7,'Tiny-tots (ages 5-8)',1,800.00,800.00,0,13,4,0.00),(63,'civicrm_participant',49,7,'Tiny-tots (ages 5-8)',1,800.00,800.00,0,13,4,0.00),(64,'civicrm_participant',50,7,'Tiny-tots (ages 5-8)',1,800.00,800.00,0,13,4,0.00),(65,'civicrm_participant',1,8,'Single',1,50.00,50.00,0,16,4,0.00),(66,'civicrm_participant',4,8,'Single',1,50.00,50.00,0,16,4,0.00),(67,'civicrm_participant',7,8,'Single',1,50.00,50.00,0,16,4,0.00),(68,'civicrm_participant',10,8,'Single',1,50.00,50.00,0,16,4,0.00),(69,'civicrm_participant',13,8,'Single',1,50.00,50.00,0,16,4,0.00),(70,'civicrm_participant',16,8,'Single',1,50.00,50.00,0,16,4,0.00),(71,'civicrm_participant',19,8,'Single',1,50.00,50.00,0,16,4,0.00),(72,'civicrm_participant',22,8,'Single',1,50.00,50.00,0,16,4,0.00),(73,'civicrm_participant',26,8,'Single',1,50.00,50.00,0,16,4,0.00),(74,'civicrm_participant',29,8,'Single',1,50.00,50.00,0,16,4,0.00),(75,'civicrm_participant',32,8,'Single',1,50.00,50.00,0,16,4,0.00),(76,'civicrm_participant',35,8,'Single',1,50.00,50.00,0,16,4,0.00),(77,'civicrm_participant',38,8,'Single',1,50.00,50.00,0,16,4,0.00),(78,'civicrm_participant',41,8,'Single',1,50.00,50.00,0,16,4,0.00),(79,'civicrm_participant',44,8,'Single',1,50.00,50.00,0,16,4,0.00),(80,'civicrm_participant',47,8,'Single',1,50.00,50.00,0,16,4,0.00),(81,'civicrm_participant',2,9,'Soprano',1,50.00,50.00,0,21,2,0.00),(82,'civicrm_participant',5,9,'Soprano',1,50.00,50.00,0,21,2,0.00),(83,'civicrm_participant',8,9,'Soprano',1,50.00,50.00,0,21,2,0.00),(84,'civicrm_participant',11,9,'Soprano',1,50.00,50.00,0,21,2,0.00),(85,'civicrm_participant',14,9,'Soprano',1,50.00,50.00,0,21,2,0.00),(86,'civicrm_participant',17,9,'Soprano',1,50.00,50.00,0,21,2,0.00),(87,'civicrm_participant',20,9,'Soprano',1,50.00,50.00,0,21,2,0.00),(88,'civicrm_participant',23,9,'Soprano',1,50.00,50.00,0,21,2,0.00),(89,'civicrm_participant',27,9,'Soprano',1,50.00,50.00,0,21,2,0.00),(90,'civicrm_participant',30,9,'Soprano',1,50.00,50.00,0,21,2,0.00),(91,'civicrm_participant',33,9,'Soprano',1,50.00,50.00,0,21,2,0.00),(92,'civicrm_participant',36,9,'Soprano',1,50.00,50.00,0,21,2,0.00),(93,'civicrm_participant',39,9,'Soprano',1,50.00,50.00,0,21,2,0.00),(94,'civicrm_participant',42,9,'Soprano',1,50.00,50.00,0,21,2,0.00),(95,'civicrm_participant',45,9,'Soprano',1,50.00,50.00,0,21,2,0.00),(96,'civicrm_participant',48,9,'Soprano',1,50.00,50.00,0,21,2,0.00); +INSERT INTO `civicrm_line_item` (`id`, `entity_table`, `entity_id`, `price_field_id`, `label`, `qty`, `unit_price`, `line_total`, `participant_count`, `price_field_value_id`, `financial_type_id`, `deductible_amount`) VALUES (1,'civicrm_contribution',1,1,'Contribution Amount',1,125.00,125.00,0,1,1,0.00),(2,'civicrm_contribution',2,1,'Contribution Amount',1,50.00,50.00,0,1,1,0.00),(3,'civicrm_contribution',3,1,'Contribution Amount',1,25.00,25.00,0,1,1,0.00),(4,'civicrm_contribution',4,1,'Contribution Amount',1,50.00,50.00,0,1,1,0.00),(5,'civicrm_contribution',5,1,'Contribution Amount',1,500.00,500.00,0,1,1,0.00),(6,'civicrm_contribution',6,1,'Contribution Amount',1,175.00,175.00,0,1,1,0.00),(7,'civicrm_contribution',7,1,'Contribution Amount',1,50.00,50.00,0,1,1,0.00),(8,'civicrm_contribution',8,1,'Contribution Amount',1,10.00,10.00,0,1,1,0.00),(9,'civicrm_contribution',9,1,'Contribution Amount',1,250.00,250.00,0,1,1,0.00),(10,'civicrm_contribution',10,1,'Contribution Amount',1,500.00,500.00,0,1,1,0.00),(11,'civicrm_contribution',11,1,'Contribution Amount',1,200.00,200.00,0,1,1,0.00),(12,'civicrm_contribution',12,1,'Contribution Amount',1,200.00,200.00,0,1,1,0.00),(13,'civicrm_contribution',13,1,'Contribution Amount',1,200.00,200.00,0,1,1,0.00),(16,'civicrm_contribution',14,4,'General',1,100.00,100.00,NULL,7,2,0.00),(17,'civicrm_contribution',16,4,'General',1,100.00,100.00,NULL,7,2,0.00),(18,'civicrm_contribution',18,4,'General',1,100.00,100.00,NULL,7,2,0.00),(19,'civicrm_contribution',20,4,'General',1,100.00,100.00,NULL,7,2,0.00),(20,'civicrm_contribution',22,4,'General',1,100.00,100.00,NULL,7,2,0.00),(21,'civicrm_contribution',26,4,'General',1,100.00,100.00,NULL,7,2,0.00),(22,'civicrm_contribution',28,4,'General',1,100.00,100.00,NULL,7,2,0.00),(23,'civicrm_contribution',30,4,'General',1,100.00,100.00,NULL,7,2,0.00),(24,'civicrm_contribution',32,4,'General',1,100.00,100.00,NULL,7,2,0.00),(25,'civicrm_contribution',34,4,'General',1,100.00,100.00,NULL,7,2,0.00),(26,'civicrm_contribution',36,4,'General',1,100.00,100.00,NULL,7,2,0.00),(27,'civicrm_contribution',38,4,'General',1,100.00,100.00,NULL,7,2,0.00),(28,'civicrm_contribution',40,4,'General',1,100.00,100.00,NULL,7,2,0.00),(29,'civicrm_contribution',42,4,'General',1,100.00,100.00,NULL,7,2,0.00),(30,'civicrm_contribution',43,4,'General',1,100.00,100.00,NULL,7,2,0.00),(31,'civicrm_contribution',15,4,'Student',1,50.00,50.00,NULL,8,2,0.00),(32,'civicrm_contribution',17,4,'Student',1,50.00,50.00,NULL,8,2,0.00),(33,'civicrm_contribution',19,4,'Student',1,50.00,50.00,NULL,8,2,0.00),(34,'civicrm_contribution',21,4,'Student',1,50.00,50.00,NULL,8,2,0.00),(35,'civicrm_contribution',23,4,'Student',1,50.00,50.00,NULL,8,2,0.00),(36,'civicrm_contribution',25,4,'Student',1,50.00,50.00,NULL,8,2,0.00),(37,'civicrm_contribution',27,4,'Student',1,50.00,50.00,NULL,8,2,0.00),(38,'civicrm_contribution',29,4,'Student',1,50.00,50.00,NULL,8,2,0.00),(39,'civicrm_contribution',31,4,'Student',1,50.00,50.00,NULL,8,2,0.00),(40,'civicrm_contribution',33,4,'Student',1,50.00,50.00,NULL,8,2,0.00),(41,'civicrm_contribution',37,4,'Student',1,50.00,50.00,NULL,8,2,0.00),(42,'civicrm_contribution',39,4,'Student',1,50.00,50.00,NULL,8,2,0.00),(43,'civicrm_contribution',41,4,'Student',1,50.00,50.00,NULL,8,2,0.00),(44,'civicrm_contribution',24,4,'Lifetime',1,1200.00,1200.00,NULL,9,2,0.00),(45,'civicrm_contribution',35,4,'Lifetime',1,1200.00,1200.00,NULL,9,2,0.00),(47,'civicrm_participant',3,7,'Tiny-tots (ages 5-8)',1,800.00,800.00,0,13,4,0.00),(48,'civicrm_participant',6,7,'Tiny-tots (ages 5-8)',1,800.00,800.00,0,13,4,0.00),(49,'civicrm_participant',9,7,'Tiny-tots (ages 5-8)',1,800.00,800.00,0,13,4,0.00),(50,'civicrm_participant',12,7,'Tiny-tots (ages 5-8)',1,800.00,800.00,0,13,4,0.00),(51,'civicrm_participant',15,7,'Tiny-tots (ages 5-8)',1,800.00,800.00,0,13,4,0.00),(52,'civicrm_participant',18,7,'Tiny-tots (ages 5-8)',1,800.00,800.00,0,13,4,0.00),(53,'civicrm_participant',21,7,'Tiny-tots (ages 5-8)',1,800.00,800.00,0,13,4,0.00),(54,'civicrm_participant',24,7,'Tiny-tots (ages 5-8)',1,800.00,800.00,0,13,4,0.00),(55,'civicrm_participant',25,7,'Tiny-tots (ages 5-8)',1,800.00,800.00,0,13,4,0.00),(56,'civicrm_participant',28,7,'Tiny-tots (ages 5-8)',1,800.00,800.00,0,13,4,0.00),(57,'civicrm_participant',31,7,'Tiny-tots (ages 5-8)',1,800.00,800.00,0,13,4,0.00),(58,'civicrm_participant',34,7,'Tiny-tots (ages 5-8)',1,800.00,800.00,0,13,4,0.00),(59,'civicrm_participant',37,7,'Tiny-tots (ages 5-8)',1,800.00,800.00,0,13,4,0.00),(60,'civicrm_participant',40,7,'Tiny-tots (ages 5-8)',1,800.00,800.00,0,13,4,0.00),(61,'civicrm_participant',43,7,'Tiny-tots (ages 5-8)',1,800.00,800.00,0,13,4,0.00),(62,'civicrm_participant',46,7,'Tiny-tots (ages 5-8)',1,800.00,800.00,0,13,4,0.00),(63,'civicrm_participant',49,7,'Tiny-tots (ages 5-8)',1,800.00,800.00,0,13,4,0.00),(64,'civicrm_participant',50,7,'Tiny-tots (ages 5-8)',1,800.00,800.00,0,13,4,0.00),(65,'civicrm_participant',1,8,'Single',1,50.00,50.00,0,16,4,0.00),(66,'civicrm_participant',4,8,'Single',1,50.00,50.00,0,16,4,0.00),(67,'civicrm_participant',7,8,'Single',1,50.00,50.00,0,16,4,0.00),(68,'civicrm_participant',10,8,'Single',1,50.00,50.00,0,16,4,0.00),(69,'civicrm_participant',13,8,'Single',1,50.00,50.00,0,16,4,0.00),(70,'civicrm_participant',16,8,'Single',1,50.00,50.00,0,16,4,0.00),(71,'civicrm_participant',19,8,'Single',1,50.00,50.00,0,16,4,0.00),(72,'civicrm_participant',22,8,'Single',1,50.00,50.00,0,16,4,0.00),(73,'civicrm_participant',26,8,'Single',1,50.00,50.00,0,16,4,0.00),(74,'civicrm_participant',29,8,'Single',1,50.00,50.00,0,16,4,0.00),(75,'civicrm_participant',32,8,'Single',1,50.00,50.00,0,16,4,0.00),(76,'civicrm_participant',35,8,'Single',1,50.00,50.00,0,16,4,0.00),(77,'civicrm_participant',38,8,'Single',1,50.00,50.00,0,16,4,0.00),(78,'civicrm_participant',41,8,'Single',1,50.00,50.00,0,16,4,0.00),(79,'civicrm_participant',44,8,'Single',1,50.00,50.00,0,16,4,0.00),(80,'civicrm_participant',47,8,'Single',1,50.00,50.00,0,16,4,0.00),(81,'civicrm_participant',2,9,'Soprano',1,50.00,50.00,0,21,2,0.00),(82,'civicrm_participant',5,9,'Soprano',1,50.00,50.00,0,21,2,0.00),(83,'civicrm_participant',8,9,'Soprano',1,50.00,50.00,0,21,2,0.00),(84,'civicrm_participant',11,9,'Soprano',1,50.00,50.00,0,21,2,0.00),(85,'civicrm_participant',14,9,'Soprano',1,50.00,50.00,0,21,2,0.00),(86,'civicrm_participant',17,9,'Soprano',1,50.00,50.00,0,21,2,0.00),(87,'civicrm_participant',20,9,'Soprano',1,50.00,50.00,0,21,2,0.00),(88,'civicrm_participant',23,9,'Soprano',1,50.00,50.00,0,21,2,0.00),(89,'civicrm_participant',27,9,'Soprano',1,50.00,50.00,0,21,2,0.00),(90,'civicrm_participant',30,9,'Soprano',1,50.00,50.00,0,21,2,0.00),(91,'civicrm_participant',33,9,'Soprano',1,50.00,50.00,0,21,2,0.00),(92,'civicrm_participant',36,9,'Soprano',1,50.00,50.00,0,21,2,0.00),(93,'civicrm_participant',39,9,'Soprano',1,50.00,50.00,0,21,2,0.00),(94,'civicrm_participant',42,9,'Soprano',1,50.00,50.00,0,21,2,0.00),(95,'civicrm_participant',45,9,'Soprano',1,50.00,50.00,0,21,2,0.00),(96,'civicrm_participant',48,9,'Soprano',1,50.00,50.00,0,21,2,0.00); /*!40000 ALTER TABLE `civicrm_line_item` ENABLE KEYS */; UNLOCK TABLES; @@ -630,7 +630,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,183,183,187,NULL,NULL,NULL,NULL,NULL),(2,184,184,188,NULL,NULL,NULL,NULL,NULL),(3,185,185,189,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,195,192,161,NULL,NULL,NULL,NULL,NULL),(2,196,193,162,NULL,NULL,NULL,NULL,NULL),(3,197,194,163,NULL,NULL,NULL,NULL,NULL); /*!40000 ALTER TABLE `civicrm_loc_block` ENABLE KEYS */; UNLOCK TABLES; @@ -870,7 +870,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`, `owner_membership_id`, `max_related`, `is_test`, `is_pay_later`, `contribution_recur_id`, `campaign_id`) VALUES (1,100,1,'2014-01-23','2014-01-23','2016-01-22','Donation',1,NULL,NULL,NULL,0,0,NULL,NULL),(2,31,2,'2014-01-22','2014-01-22','2015-01-21','Donation',1,NULL,NULL,NULL,0,0,NULL,NULL),(3,165,1,'2014-01-21','2014-01-21','2016-01-20','Check',1,NULL,NULL,NULL,0,0,NULL,NULL),(4,87,2,'2014-01-20','2014-01-20','2015-01-19','Payment',1,NULL,NULL,NULL,0,0,NULL,NULL),(5,143,2,'2013-01-19','2013-01-19','2014-01-18','Donation',4,NULL,NULL,NULL,0,0,NULL,NULL),(6,21,2,'2014-01-18','2014-01-18','2015-01-17','Check',1,NULL,NULL,NULL,0,0,NULL,NULL),(7,172,1,'2014-01-17','2014-01-17','2016-01-16','Payment',1,NULL,NULL,NULL,0,0,NULL,NULL),(8,71,2,'2014-01-16','2014-01-16','2015-01-15','Payment',1,NULL,NULL,NULL,0,0,NULL,NULL),(9,19,1,'2014-01-15','2014-01-15','2016-01-14','Payment',1,NULL,NULL,NULL,0,0,NULL,NULL),(10,185,1,'2011-11-12','2011-11-12','2013-11-11','Donation',3,NULL,NULL,NULL,0,0,NULL,NULL),(11,85,3,'2014-01-13','2014-01-13',NULL,'Check',1,NULL,NULL,NULL,0,0,NULL,NULL),(12,122,2,'2014-01-12','2014-01-12','2015-01-11','Donation',1,NULL,NULL,NULL,0,0,NULL,NULL),(13,150,1,'2014-01-11','2014-01-11','2016-01-10','Donation',1,NULL,NULL,NULL,0,0,NULL,NULL),(14,189,2,'2014-01-10','2014-01-10','2015-01-09','Donation',1,NULL,NULL,NULL,0,0,NULL,NULL),(15,135,1,'2011-10-03','2011-10-03','2013-10-02','Payment',3,NULL,NULL,NULL,0,0,NULL,NULL),(16,72,2,'2014-01-08','2014-01-08','2015-01-07','Donation',1,NULL,NULL,NULL,0,0,NULL,NULL),(17,151,1,'2014-01-07','2014-01-07','2016-01-06','Check',1,NULL,NULL,NULL,0,0,NULL,NULL),(18,90,2,'2014-01-06','2014-01-06','2015-01-05','Donation',1,NULL,NULL,NULL,0,0,NULL,NULL),(19,111,1,'2014-01-05','2014-01-05','2016-01-04','Donation',1,NULL,NULL,NULL,0,0,NULL,NULL),(20,48,1,'2011-08-24','2011-08-24','2013-08-23','Payment',3,NULL,NULL,NULL,0,0,NULL,NULL),(21,59,1,'2014-01-03','2014-01-03','2016-01-02','Donation',1,NULL,NULL,NULL,0,0,NULL,NULL),(22,110,3,'2014-01-02','2014-01-02',NULL,'Payment',1,NULL,NULL,NULL,0,0,NULL,NULL),(23,36,1,'2014-01-01','2014-01-01','2015-12-31','Payment',1,NULL,NULL,NULL,0,0,NULL,NULL),(24,191,2,'2013-12-31','2013-12-31','2014-12-30','Donation',1,NULL,NULL,NULL,0,0,NULL,NULL),(25,182,1,'2011-07-15','2011-07-15','2013-07-14','Check',3,NULL,NULL,NULL,0,0,NULL,NULL),(26,62,2,'2013-12-29','2013-12-29','2014-12-28','Check',1,NULL,NULL,NULL,0,0,NULL,NULL),(27,102,1,'2013-12-28','2013-12-28','2015-12-27','Donation',1,NULL,NULL,NULL,0,0,NULL,NULL),(28,177,2,'2013-12-27','2013-12-27','2014-12-26','Check',1,NULL,NULL,NULL,0,0,NULL,NULL),(29,80,1,'2013-12-26','2013-12-26','2015-12-25','Donation',1,NULL,NULL,NULL,0,0,NULL,NULL),(30,41,1,'2011-06-05','2011-06-05','2013-06-04','Payment',3,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`, `owner_membership_id`, `max_related`, `is_test`, `is_pay_later`, `contribution_recur_id`, `campaign_id`) VALUES (1,54,1,'2014-01-28','2014-01-28','2016-01-27','Check',1,NULL,NULL,NULL,0,0,NULL,NULL),(2,171,2,'2014-01-27','2014-01-27','2015-01-26','Donation',1,NULL,NULL,NULL,0,0,NULL,NULL),(3,197,1,'2014-01-26','2014-01-26','2016-01-25','Donation',1,NULL,NULL,NULL,0,0,NULL,NULL),(4,150,2,'2014-01-25','2014-01-25','2015-01-24','Payment',1,NULL,NULL,NULL,0,0,NULL,NULL),(5,52,1,'2011-12-27','2011-12-27','2013-12-26','Donation',3,NULL,NULL,NULL,0,0,NULL,NULL),(6,83,2,'2014-01-23','2014-01-23','2015-01-22','Donation',1,NULL,NULL,NULL,0,0,NULL,NULL),(7,21,1,'2014-01-22','2014-01-22','2016-01-21','Donation',1,NULL,NULL,NULL,0,0,NULL,NULL),(8,129,2,'2014-01-21','2014-01-21','2015-01-20','Payment',1,NULL,NULL,NULL,0,0,NULL,NULL),(9,4,1,'2014-01-20','2014-01-20','2016-01-19','Donation',1,NULL,NULL,NULL,0,0,NULL,NULL),(10,88,2,'2013-01-19','2013-01-19','2014-01-18','Payment',4,NULL,NULL,NULL,0,0,NULL,NULL),(11,112,3,'2014-01-18','2014-01-18',NULL,'Check',1,NULL,NULL,NULL,0,0,NULL,NULL),(12,47,2,'2014-01-17','2014-01-17','2015-01-16','Payment',1,NULL,NULL,NULL,0,0,NULL,NULL),(13,130,1,'2014-01-16','2014-01-16','2016-01-15','Donation',1,NULL,NULL,NULL,0,0,NULL,NULL),(14,162,2,'2014-01-15','2014-01-15','2015-01-14','Payment',1,NULL,NULL,NULL,0,0,NULL,NULL),(15,128,1,'2011-10-08','2011-10-08','2013-10-07','Payment',3,NULL,NULL,NULL,0,0,NULL,NULL),(16,39,2,'2014-01-13','2014-01-13','2015-01-12','Check',1,NULL,NULL,NULL,0,0,NULL,NULL),(17,30,1,'2014-01-12','2014-01-12','2016-01-11','Check',1,NULL,NULL,NULL,0,0,NULL,NULL),(18,27,2,'2014-01-11','2014-01-11','2015-01-10','Donation',1,NULL,NULL,NULL,0,0,NULL,NULL),(19,132,1,'2014-01-10','2014-01-10','2016-01-09','Check',1,NULL,NULL,NULL,0,0,NULL,NULL),(20,201,2,'2013-01-09','2013-01-09','2014-01-08','Check',4,NULL,NULL,NULL,0,0,NULL,NULL),(21,74,1,'2014-01-08','2014-01-08','2016-01-07','Donation',1,NULL,NULL,NULL,0,0,NULL,NULL),(22,125,3,'2014-01-07','2014-01-07',NULL,'Check',1,NULL,NULL,NULL,0,0,NULL,NULL),(23,18,1,'2014-01-06','2014-01-06','2016-01-05','Check',1,NULL,NULL,NULL,0,0,NULL,NULL),(24,31,2,'2014-01-05','2014-01-05','2015-01-04','Check',1,NULL,NULL,NULL,0,0,NULL,NULL),(25,120,1,'2011-07-20','2011-07-20','2013-07-19','Check',3,NULL,NULL,NULL,0,0,NULL,NULL),(26,137,2,'2014-01-03','2014-01-03','2015-01-02','Check',1,NULL,NULL,NULL,0,0,NULL,NULL),(27,34,1,'2014-01-02','2014-01-02','2016-01-01','Payment',1,NULL,NULL,NULL,0,0,NULL,NULL),(28,59,2,'2014-01-01','2014-01-01','2014-12-31','Check',1,NULL,NULL,NULL,0,0,NULL,NULL),(29,58,1,'2013-12-31','2013-12-31','2015-12-30','Donation',1,NULL,NULL,NULL,0,0,NULL,NULL),(30,114,1,'2011-06-10','2011-06-10','2013-06-09','Check',3,NULL,NULL,NULL,0,0,NULL,NULL); /*!40000 ALTER TABLE `civicrm_membership` ENABLE KEYS */; UNLOCK TABLES; @@ -890,7 +890,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,9,1,'2014-01-15','2016-01-14',19,'2014-01-23',1,NULL),(2,6,1,'2014-01-18','2015-01-17',21,'2014-01-23',2,NULL),(3,2,1,'2014-01-22','2015-01-21',31,'2014-01-23',2,NULL),(4,23,1,'2014-01-01','2015-12-31',36,'2014-01-23',1,NULL),(5,30,3,'2011-06-05','2013-06-04',41,'2014-01-23',1,NULL),(6,20,3,'2011-08-24','2013-08-23',48,'2014-01-23',1,NULL),(7,21,1,'2014-01-03','2016-01-02',59,'2014-01-23',1,NULL),(8,26,1,'2013-12-29','2014-12-28',62,'2014-01-23',2,NULL),(9,8,1,'2014-01-16','2015-01-15',71,'2014-01-23',2,NULL),(10,16,1,'2014-01-08','2015-01-07',72,'2014-01-23',2,NULL),(11,29,1,'2013-12-26','2015-12-25',80,'2014-01-23',1,NULL),(12,11,1,'2014-01-13',NULL,85,'2014-01-23',3,NULL),(13,4,1,'2014-01-20','2015-01-19',87,'2014-01-23',2,NULL),(14,18,1,'2014-01-06','2015-01-05',90,'2014-01-23',2,NULL),(15,1,1,'2014-01-23','2016-01-22',100,'2014-01-23',1,NULL),(16,27,1,'2013-12-28','2015-12-27',102,'2014-01-23',1,NULL),(17,22,1,'2014-01-02',NULL,110,'2014-01-23',3,NULL),(18,19,1,'2014-01-05','2016-01-04',111,'2014-01-23',1,NULL),(19,12,1,'2014-01-12','2015-01-11',122,'2014-01-23',2,NULL),(20,15,3,'2011-10-03','2013-10-02',135,'2014-01-23',1,NULL),(21,5,4,'2013-01-19','2014-01-18',143,'2014-01-23',2,NULL),(22,13,1,'2014-01-11','2016-01-10',150,'2014-01-23',1,NULL),(23,17,1,'2014-01-07','2016-01-06',151,'2014-01-23',1,NULL),(24,3,1,'2014-01-21','2016-01-20',165,'2014-01-23',1,NULL),(25,7,1,'2014-01-17','2016-01-16',172,'2014-01-23',1,NULL),(26,28,1,'2013-12-27','2014-12-26',177,'2014-01-23',2,NULL),(27,25,3,'2011-07-15','2013-07-14',182,'2014-01-23',1,NULL),(28,10,3,'2011-11-12','2013-11-11',185,'2014-01-23',1,NULL),(29,14,1,'2014-01-10','2015-01-09',189,'2014-01-23',2,NULL),(30,24,1,'2013-12-31','2014-12-30',191,'2014-01-23',2,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,9,1,'2014-01-20','2016-01-19',4,'2014-01-28',1,NULL),(2,23,1,'2014-01-06','2016-01-05',18,'2014-01-28',1,NULL),(3,7,1,'2014-01-22','2016-01-21',21,'2014-01-28',1,NULL),(4,18,1,'2014-01-11','2015-01-10',27,'2014-01-28',2,NULL),(5,17,1,'2014-01-12','2016-01-11',30,'2014-01-28',1,NULL),(6,24,1,'2014-01-05','2015-01-04',31,'2014-01-28',2,NULL),(7,27,1,'2014-01-02','2016-01-01',34,'2014-01-28',1,NULL),(8,16,1,'2014-01-13','2015-01-12',39,'2014-01-28',2,NULL),(9,12,1,'2014-01-17','2015-01-16',47,'2014-01-28',2,NULL),(10,5,3,'2011-12-27','2013-12-26',52,'2014-01-28',1,NULL),(11,1,1,'2014-01-28','2016-01-27',54,'2014-01-28',1,NULL),(12,29,1,'2013-12-31','2015-12-30',58,'2014-01-28',1,NULL),(13,28,1,'2014-01-01','2014-12-31',59,'2014-01-28',2,NULL),(14,21,1,'2014-01-08','2016-01-07',74,'2014-01-28',1,NULL),(15,6,1,'2014-01-23','2015-01-22',83,'2014-01-28',2,NULL),(16,10,4,'2013-01-19','2014-01-18',88,'2014-01-28',2,NULL),(17,11,1,'2014-01-18',NULL,112,'2014-01-28',3,NULL),(18,30,3,'2011-06-10','2013-06-09',114,'2014-01-28',1,NULL),(19,25,3,'2011-07-20','2013-07-19',120,'2014-01-28',1,NULL),(20,22,1,'2014-01-07',NULL,125,'2014-01-28',3,NULL),(21,15,3,'2011-10-08','2013-10-07',128,'2014-01-28',1,NULL),(22,8,1,'2014-01-21','2015-01-20',129,'2014-01-28',2,NULL),(23,13,1,'2014-01-16','2016-01-15',130,'2014-01-28',1,NULL),(24,19,1,'2014-01-10','2016-01-09',132,'2014-01-28',1,NULL),(25,26,1,'2014-01-03','2015-01-02',137,'2014-01-28',2,NULL),(26,4,1,'2014-01-25','2015-01-24',150,'2014-01-28',2,NULL),(27,14,1,'2014-01-15','2015-01-14',162,'2014-01-28',2,NULL),(28,2,1,'2014-01-27','2015-01-26',171,'2014-01-28',2,NULL),(29,3,1,'2014-01-26','2016-01-25',197,'2014-01-28',1,NULL),(30,20,4,'2013-01-09','2014-01-08',201,'2014-01-28',2,NULL); /*!40000 ALTER TABLE `civicrm_membership_log` ENABLE KEYS */; UNLOCK TABLES; @@ -939,7 +939,7 @@ UNLOCK TABLES; LOCK TABLES `civicrm_msg_template` WRITE; /*!40000 ALTER TABLE `civicrm_msg_template` DISABLE KEYS */; -INSERT INTO `civicrm_msg_template` (`id`, `msg_title`, `msg_subject`, `msg_text`, `msg_html`, `is_active`, `workflow_id`, `is_default`, `is_reserved`, `pdf_format_id`) VALUES (1,'Cases - Send Copy of an Activity','{if $idHash}[case #{$idHash}]{/if} {$activitySubject}\n','===========================================================\n{ts}Activity Summary{/ts} - {$activityTypeName}\n===========================================================\n{if $isCaseActivity}\n{ts}Your Case Role(s){/ts} : {$contact.role}\n{if $manageCaseURL}\n{ts}Manage Case{/ts} : {$manageCaseURL}\n{/if}\n{/if}\n\n{if $editActURL}\n{ts}Edit this Activity{/ts} : {$editActURL}\n{/if}\n{if $viewActURL}\n{ts}View this Activity{/ts} : {$viewActURL}\n{/if}\n\n{foreach from=$activity.fields item=field}\n{if $field.type eq \'Date\'}\n{$field.label}{if $field.category}({$field.category}){/if} : {$field.value|crmDate:$config->dateformatDatetime}\n{else}\n{$field.label}{if $field.category}({$field.category}){/if} : {$field.value}\n{/if}\n{/foreach}\n\n{foreach from=$activity.customGroups key=customGroupName item=customGroup}\n==========================================================\n{$customGroupName}\n==========================================================\n{foreach from=$customGroup item=field}\n{if $field.type eq \'Date\'}\n{$field.label} : {$field.value|crmDate:$config->dateformatDatetime}\n{else}\n{$field.label} : {$field.value}\n{/if}\n{/foreach}\n\n{/foreach}\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n
\n \n \n \n \n {if $isCaseActivity}\n \n \n \n \n {if $manageCaseURL}\n \n \n \n {/if}\n {/if}\n {if $editActURL}\n \n \n \n {/if}\n {if $viewActURL}\n \n \n \n {/if}\n {foreach from=$activity.fields item=field}\n \n \n \n \n {/foreach}\n\n {foreach from=$activity.customGroups key=customGroupName item=customGroup}\n \n \n \n {foreach from=$customGroup item=field}\n \n \n \n \n {/foreach}\n {/foreach}\n
\n {ts}Activity Summary{/ts} - {$activityTypeName}\n
\n {ts}Your Case Role(s){/ts}\n \n {$contact.role}\n
\n {ts}Manage Case{/ts}\n
\n {ts}Edit this activity{/ts}\n
\n {ts}View this activity{/ts}\n
\n {$field.label}{if $field.category}({$field.category}){/if}\n \n {if $field.type eq \'Date\'}\n {$field.value|crmDate:$config->dateformatDatetime}\n {else}\n {$field.value}\n {/if}\n
\n {$customGroupName}\n
\n {$field.label}\n \n {if $field.type eq \'Date\'}\n {$field.value|crmDate:$config->dateformatDatetime}\n {else}\n {$field.value}\n {/if}\n
\n
\n
\n\n\n\n',1,707,1,0,NULL),(2,'Cases - Send Copy of an Activity','{if $idHash}[case #{$idHash}]{/if} {$activitySubject}\n','===========================================================\n{ts}Activity Summary{/ts} - {$activityTypeName}\n===========================================================\n{if $isCaseActivity}\n{ts}Your Case Role(s){/ts} : {$contact.role}\n{if $manageCaseURL}\n{ts}Manage Case{/ts} : {$manageCaseURL}\n{/if}\n{/if}\n\n{if $editActURL}\n{ts}Edit this Activity{/ts} : {$editActURL}\n{/if}\n{if $viewActURL}\n{ts}View this Activity{/ts} : {$viewActURL}\n{/if}\n\n{foreach from=$activity.fields item=field}\n{if $field.type eq \'Date\'}\n{$field.label}{if $field.category}({$field.category}){/if} : {$field.value|crmDate:$config->dateformatDatetime}\n{else}\n{$field.label}{if $field.category}({$field.category}){/if} : {$field.value}\n{/if}\n{/foreach}\n\n{foreach from=$activity.customGroups key=customGroupName item=customGroup}\n==========================================================\n{$customGroupName}\n==========================================================\n{foreach from=$customGroup item=field}\n{if $field.type eq \'Date\'}\n{$field.label} : {$field.value|crmDate:$config->dateformatDatetime}\n{else}\n{$field.label} : {$field.value}\n{/if}\n{/foreach}\n\n{/foreach}\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n
\n \n \n \n \n {if $isCaseActivity}\n \n \n \n \n {if $manageCaseURL}\n \n \n \n {/if}\n {/if}\n {if $editActURL}\n \n \n \n {/if}\n {if $viewActURL}\n \n \n \n {/if}\n {foreach from=$activity.fields item=field}\n \n \n \n \n {/foreach}\n\n {foreach from=$activity.customGroups key=customGroupName item=customGroup}\n \n \n \n {foreach from=$customGroup item=field}\n \n \n \n \n {/foreach}\n {/foreach}\n
\n {ts}Activity Summary{/ts} - {$activityTypeName}\n
\n {ts}Your Case Role(s){/ts}\n \n {$contact.role}\n
\n {ts}Manage Case{/ts}\n
\n {ts}Edit this activity{/ts}\n
\n {ts}View this activity{/ts}\n
\n {$field.label}{if $field.category}({$field.category}){/if}\n \n {if $field.type eq \'Date\'}\n {$field.value|crmDate:$config->dateformatDatetime}\n {else}\n {$field.value}\n {/if}\n
\n {$customGroupName}\n
\n {$field.label}\n \n {if $field.type eq \'Date\'}\n {$field.value|crmDate:$config->dateformatDatetime}\n {else}\n {$field.value}\n {/if}\n
\n
\n
\n\n\n\n',1,707,0,1,NULL),(3,'Contributions - Duplicate Organization Alert','{ts}CiviContribute Alert: Possible Duplicate Contact Record{/ts}\n','{ts}A contribution / membership signup was made on behalf of the organization listed below.{/ts}\n{ts}The information provided matched multiple existing database records based on the configured\nDuplicate Matching Rules for your site.{/ts}\n\n{ts}Organization Name{/ts}: {$onBehalfName}\n{ts}Organization Email{/ts}: {$onBehalfEmail}\n{ts}Organization Contact Id{/ts}: {$onBehalfID}\n\n{ts}If you think this may be a duplicate contact which should be merged with an existing record -\nGo to \"Contacts >> Find and Merge Duplicate Contacts\". Use the strict\nrule for Organizations to find the potential duplicates and merge them if appropriate.{/ts}\n\n{if $receiptMessage}\n###########################################################\n{ts}Copy of Contribution Receipt{/ts}\n\n###########################################################\n{$receiptMessage}\n\n{/if}\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n \n \n \n \n \n \n {if $receiptMessage}\n \n \n \n {/if}\n
\n

{ts}A contribution / membership signup was made on behalf of the organization listed below.{/ts}

\n

{ts}The information provided matched multiple existing database records based on the configured\nDuplicate Matching Rules for your site.{/ts}

\n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n {ts}Organization Name{/ts}\n \n {$onBehalfName}\n
\n {ts}Organization Email{/ts}\n \n {$onBehalfEmail}\n
\n {ts}Organization Contact Id{/ts}\n \n {$onBehalfID}\n
\n
\n

{ts}If you think this may be a duplicate contact which should be merged with an existing record -\nGo to \"Contacts >> Find and Merge Duplicate Contacts\". Use the strict\nrule for Organizations to find the potential duplicates and merge them if appropriate.{/ts}

\n
\n \n \n \n \n \n \n \n
\n {ts}Copy of Contribution Receipt{/ts}\n
\n {* FIXME: the below is most probably not HTML-ised *}\n {$receiptMessage}\n
\n
\n
\n\n\n\n',1,708,1,0,NULL),(4,'Contributions - Duplicate Organization Alert','{ts}CiviContribute Alert: Possible Duplicate Contact Record{/ts}\n','{ts}A contribution / membership signup was made on behalf of the organization listed below.{/ts}\n{ts}The information provided matched multiple existing database records based on the configured\nDuplicate Matching Rules for your site.{/ts}\n\n{ts}Organization Name{/ts}: {$onBehalfName}\n{ts}Organization Email{/ts}: {$onBehalfEmail}\n{ts}Organization Contact Id{/ts}: {$onBehalfID}\n\n{ts}If you think this may be a duplicate contact which should be merged with an existing record -\nGo to \"Contacts >> Find and Merge Duplicate Contacts\". Use the strict\nrule for Organizations to find the potential duplicates and merge them if appropriate.{/ts}\n\n{if $receiptMessage}\n###########################################################\n{ts}Copy of Contribution Receipt{/ts}\n\n###########################################################\n{$receiptMessage}\n\n{/if}\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n \n \n \n \n \n \n {if $receiptMessage}\n \n \n \n {/if}\n
\n

{ts}A contribution / membership signup was made on behalf of the organization listed below.{/ts}

\n

{ts}The information provided matched multiple existing database records based on the configured\nDuplicate Matching Rules for your site.{/ts}

\n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n {ts}Organization Name{/ts}\n \n {$onBehalfName}\n
\n {ts}Organization Email{/ts}\n \n {$onBehalfEmail}\n
\n {ts}Organization Contact Id{/ts}\n \n {$onBehalfID}\n
\n
\n

{ts}If you think this may be a duplicate contact which should be merged with an existing record -\nGo to \"Contacts >> Find and Merge Duplicate Contacts\". Use the strict\nrule for Organizations to find the potential duplicates and merge them if appropriate.{/ts}

\n
\n \n \n \n \n \n \n \n
\n {ts}Copy of Contribution Receipt{/ts}\n
\n {* FIXME: the below is most probably not HTML-ised *}\n {$receiptMessage}\n
\n
\n
\n\n\n\n',1,708,0,1,NULL),(5,'Contributions - Receipt (off-line)','{ts}Contribution Receipt{/ts}\n','{if $formValues.receipt_text}\n{$formValues.receipt_text}\n{else}{ts}Thanks for your support.{/ts}{/if}\n\n{ts}Please print this receipt for your records.{/ts}\n\n\n===========================================================\n{ts}Contribution Information{/ts}\n\n===========================================================\n{ts}Financial Type{/ts}: {$formValues.contributionType_name}\n{if $lineItem}\n{foreach from=$lineItem item=value key=priceset}\n---------------------------------------------------------\n{capture assign=ts_item}{ts}Item{/ts}{/capture}\n{capture assign=ts_qty}{ts}Qty{/ts}{/capture}\n{capture assign=ts_each}{ts}Each{/ts}{/capture}\n{capture assign=ts_total}{ts}Total{/ts}{/capture}\n{$ts_item|string_format:\"%-30s\"} {$ts_qty|string_format:\"%5s\"} {$ts_each|string_format:\"%10s\"} {$ts_total|string_format:\"%10s\"}\n----------------------------------------------------------\n{foreach from=$value item=line}\n{capture assign=ts_item}{if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description} {$line.description}{/if}{/capture}{$ts_item|truncate:30:\"...\"|string_format:\"%-30s\"} {$line.qty|string_format:\"%5s\"} {$line.unit_price|crmMoney:$currency|string_format:\"%10s\"} {$line.line_total|crmMoney:$currency|string_format:\"%10s\"}\n{/foreach}\n{/foreach}\n{/if}\n\n{ts}Total Amount{/ts}: {$formValues.total_amount|crmMoney:$currency}\n{if $receive_date}\n{ts}Received Date{/ts}: {$receive_date|truncate:10:\'\'|crmDate}\n{/if}\n{if $receipt_date}\n{ts}Receipt Date{/ts}: {$receipt_date|truncate:10:\'\'|crmDate}\n{/if}\n{if $formValues.paidBy and !$formValues.hidden_CreditCard}\n{ts}Paid By{/ts}: {$formValues.paidBy}\n{if $formValues.check_number}\n{ts}Check Number{/ts}: {$formValues.check_number}\n{/if}\n{/if}\n{if $formValues.trxn_id}\n{ts}Transaction ID{/ts}: {$formValues.trxn_id}\n{/if}\n\n{if $ccContribution}\n===========================================================\n{ts}Billing Name and Address{/ts}\n\n===========================================================\n{$billingName}\n{$address}\n\n===========================================================\n{ts}Credit Card Information{/ts}\n\n===========================================================\n{$credit_card_type}\n{$credit_card_number}\n{ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n{/if}\n{if $customGroup}\n{foreach from=$customGroup item=value key=customName}\n===========================================================\n{$customName}\n===========================================================\n{foreach from=$value item=v key=n}\n{$n}: {$v}\n{/foreach}\n{/foreach}\n{/if}\n{if $formValues.honor_first_name}\n\n===========================================================\n{$formValues.honor_type}\n===========================================================\n{$formValues.honor_prefix} {$formValues.honor_first_name} {$formValues.honor_last_name}\n{if $formValues.honor_email}\n{ts}Honoree Email{/ts}: {$formValues.honor_email}\n{/if}\n{/if}\n\n{if $formValues.product_name}\n===========================================================\n{ts}Premium Information{/ts}\n\n===========================================================\n{$formValues.product_name}\n{if $formValues.product_option}\n{ts}Option{/ts}: {$formValues.product_option}\n{/if}\n{if $formValues.product_sku}\n{ts}SKU{/ts}: {$formValues.product_sku}\n{/if}\n{if $fulfilled_date}\n{ts}Sent{/ts}: {$fulfilled_date|crmDate}\n{/if}\n{/if}\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n \n \n \n\n
\n\n {if $formValues.receipt_text}\n

{$formValues.receipt_text|htmlize}

\n {else}\n

{ts}Thanks for your support.{/ts}

\n {/if}\n\n

{ts}Please print this receipt for your records.{/ts}

\n\n
\n \n \n \n \n \n \n \n \n\n {if $lineItem and !$is_quick_config}\n {foreach from=$lineItem item=value key=priceset}\n \n \n \n {/foreach}\n {/if}\n\n \n \n \n \n\n {if $receive_date}\n \n \n \n \n {/if}\n\n {if $receipt_date}\n \n \n \n \n {/if}\n\n {if $formValues.paidBy and !$formValues.hidden_CreditCard}\n \n \n \n \n {if $formValues.check_number}\n \n \n \n \n {/if}\n {/if}\n\n {if $formValues.trxn_id}\n \n \n \n \n {/if}\n\n {if $ccContribution}\n \n \n \n \n \n \n \n \n \n \n \n \n {/if}\n\n {if $customGroup}\n {foreach from=$customGroup item=value key=customName}\n \n \n \n {foreach from=$value item=v key=n}\n \n \n \n \n {/foreach}\n {/foreach}\n {/if}\n\n {if $formValues.honor_first_name}\n \n \n \n \n \n \n {/if}\n\n {if $formValues.product_name}\n \n \n \n \n \n \n {if $formValues.product_option}\n \n \n \n \n {/if}\n {if $formValues.product_sku}\n \n \n \n \n {/if}\n {if $fulfilled_date}\n \n \n \n \n {/if}\n {/if}\n\n
\n {ts}Contribution Information{/ts}\n
\n {ts}Financial Type{/ts}\n \n {$formValues.contributionType_name}\n
\n {* FIXME: style this table so that it looks like the text version (justification, etc.) *}\n \n \n \n \n \n \n {foreach from=$value item=line}\n \n \n \n \n \n \n {/foreach}\n
{ts}Item{/ts}{ts}Qty{/ts}{ts}Each{/ts}{ts}Total{/ts}
\n {if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description}
{$line.description|truncate:30:\"...\"}
{/if}\n
\n {$line.qty}\n \n {$line.unit_price|crmMoney:$currency}\n \n {$line.line_total|crmMoney:$currency}\n
\n
\n {ts}Total Amount{/ts}\n \n {$formValues.total_amount|crmMoney:$currency}\n
\n {ts}Received Date{/ts}\n \n {$receive_date|truncate:10:\'\'|crmDate}\n
\n {ts}Receipt Date{/ts}\n \n {$receipt_date|truncate:10:\'\'|crmDate}\n
\n {ts}Paid By{/ts}\n \n {$formValues.paidBy}\n
\n {ts}Check Number{/ts}\n \n {$formValues.check_number}\n
\n {ts}Transaction ID{/ts}\n \n {$formValues.trxn_id}\n
\n {ts}Billing Name and Address{/ts}\n
\n {$billingName}
\n {$address|nl2br}\n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}
\n {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n
\n {$customName}\n
\n {$n}\n \n {$v}\n
\n {$formValues.honor_type}\n
\n {$formValues.honor_prefix} {$formValues.honor_first_name} {$formValues.honor_last_name}
\n {if $formValues.honor_email}\n {ts}Honoree Email{/ts}: {$formValues.honor_email}\n {/if}\n
\n {ts}Premium Information{/ts}\n
\n {$formValues.product_name}\n
\n {ts}Option{/ts}\n \n {$formValues.product_option}\n
\n {ts}SKU{/ts}\n \n {$formValues.product_sku}\n
\n {ts}Sent{/ts}\n \n {$fulfilled_date|truncate:10:\'\'|crmDate}\n
\n
\n
\n\n\n\n',1,709,1,0,NULL),(6,'Contributions - Receipt (off-line)','{ts}Contribution Receipt{/ts}\n','{if $formValues.receipt_text}\n{$formValues.receipt_text}\n{else}{ts}Thanks for your support.{/ts}{/if}\n\n{ts}Please print this receipt for your records.{/ts}\n\n\n===========================================================\n{ts}Contribution Information{/ts}\n\n===========================================================\n{ts}Financial Type{/ts}: {$formValues.contributionType_name}\n{if $lineItem}\n{foreach from=$lineItem item=value key=priceset}\n---------------------------------------------------------\n{capture assign=ts_item}{ts}Item{/ts}{/capture}\n{capture assign=ts_qty}{ts}Qty{/ts}{/capture}\n{capture assign=ts_each}{ts}Each{/ts}{/capture}\n{capture assign=ts_total}{ts}Total{/ts}{/capture}\n{$ts_item|string_format:\"%-30s\"} {$ts_qty|string_format:\"%5s\"} {$ts_each|string_format:\"%10s\"} {$ts_total|string_format:\"%10s\"}\n----------------------------------------------------------\n{foreach from=$value item=line}\n{capture assign=ts_item}{if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description} {$line.description}{/if}{/capture}{$ts_item|truncate:30:\"...\"|string_format:\"%-30s\"} {$line.qty|string_format:\"%5s\"} {$line.unit_price|crmMoney:$currency|string_format:\"%10s\"} {$line.line_total|crmMoney:$currency|string_format:\"%10s\"}\n{/foreach}\n{/foreach}\n{/if}\n\n{ts}Total Amount{/ts}: {$formValues.total_amount|crmMoney:$currency}\n{if $receive_date}\n{ts}Received Date{/ts}: {$receive_date|truncate:10:\'\'|crmDate}\n{/if}\n{if $receipt_date}\n{ts}Receipt Date{/ts}: {$receipt_date|truncate:10:\'\'|crmDate}\n{/if}\n{if $formValues.paidBy and !$formValues.hidden_CreditCard}\n{ts}Paid By{/ts}: {$formValues.paidBy}\n{if $formValues.check_number}\n{ts}Check Number{/ts}: {$formValues.check_number}\n{/if}\n{/if}\n{if $formValues.trxn_id}\n{ts}Transaction ID{/ts}: {$formValues.trxn_id}\n{/if}\n\n{if $ccContribution}\n===========================================================\n{ts}Billing Name and Address{/ts}\n\n===========================================================\n{$billingName}\n{$address}\n\n===========================================================\n{ts}Credit Card Information{/ts}\n\n===========================================================\n{$credit_card_type}\n{$credit_card_number}\n{ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n{/if}\n{if $customGroup}\n{foreach from=$customGroup item=value key=customName}\n===========================================================\n{$customName}\n===========================================================\n{foreach from=$value item=v key=n}\n{$n}: {$v}\n{/foreach}\n{/foreach}\n{/if}\n{if $formValues.honor_first_name}\n\n===========================================================\n{$formValues.honor_type}\n===========================================================\n{$formValues.honor_prefix} {$formValues.honor_first_name} {$formValues.honor_last_name}\n{if $formValues.honor_email}\n{ts}Honoree Email{/ts}: {$formValues.honor_email}\n{/if}\n{/if}\n\n{if $formValues.product_name}\n===========================================================\n{ts}Premium Information{/ts}\n\n===========================================================\n{$formValues.product_name}\n{if $formValues.product_option}\n{ts}Option{/ts}: {$formValues.product_option}\n{/if}\n{if $formValues.product_sku}\n{ts}SKU{/ts}: {$formValues.product_sku}\n{/if}\n{if $fulfilled_date}\n{ts}Sent{/ts}: {$fulfilled_date|crmDate}\n{/if}\n{/if}\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n \n \n \n\n
\n\n {if $formValues.receipt_text}\n

{$formValues.receipt_text|htmlize}

\n {else}\n

{ts}Thanks for your support.{/ts}

\n {/if}\n\n

{ts}Please print this receipt for your records.{/ts}

\n\n
\n \n \n \n \n \n \n \n \n\n {if $lineItem and !$is_quick_config}\n {foreach from=$lineItem item=value key=priceset}\n \n \n \n {/foreach}\n {/if}\n\n \n \n \n \n\n {if $receive_date}\n \n \n \n \n {/if}\n\n {if $receipt_date}\n \n \n \n \n {/if}\n\n {if $formValues.paidBy and !$formValues.hidden_CreditCard}\n \n \n \n \n {if $formValues.check_number}\n \n \n \n \n {/if}\n {/if}\n\n {if $formValues.trxn_id}\n \n \n \n \n {/if}\n\n {if $ccContribution}\n \n \n \n \n \n \n \n \n \n \n \n \n {/if}\n\n {if $customGroup}\n {foreach from=$customGroup item=value key=customName}\n \n \n \n {foreach from=$value item=v key=n}\n \n \n \n \n {/foreach}\n {/foreach}\n {/if}\n\n {if $formValues.honor_first_name}\n \n \n \n \n \n \n {/if}\n\n {if $formValues.product_name}\n \n \n \n \n \n \n {if $formValues.product_option}\n \n \n \n \n {/if}\n {if $formValues.product_sku}\n \n \n \n \n {/if}\n {if $fulfilled_date}\n \n \n \n \n {/if}\n {/if}\n\n
\n {ts}Contribution Information{/ts}\n
\n {ts}Financial Type{/ts}\n \n {$formValues.contributionType_name}\n
\n {* FIXME: style this table so that it looks like the text version (justification, etc.) *}\n \n \n \n \n \n \n {foreach from=$value item=line}\n \n \n \n \n \n \n {/foreach}\n
{ts}Item{/ts}{ts}Qty{/ts}{ts}Each{/ts}{ts}Total{/ts}
\n {if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description}
{$line.description|truncate:30:\"...\"}
{/if}\n
\n {$line.qty}\n \n {$line.unit_price|crmMoney:$currency}\n \n {$line.line_total|crmMoney:$currency}\n
\n
\n {ts}Total Amount{/ts}\n \n {$formValues.total_amount|crmMoney:$currency}\n
\n {ts}Received Date{/ts}\n \n {$receive_date|truncate:10:\'\'|crmDate}\n
\n {ts}Receipt Date{/ts}\n \n {$receipt_date|truncate:10:\'\'|crmDate}\n
\n {ts}Paid By{/ts}\n \n {$formValues.paidBy}\n
\n {ts}Check Number{/ts}\n \n {$formValues.check_number}\n
\n {ts}Transaction ID{/ts}\n \n {$formValues.trxn_id}\n
\n {ts}Billing Name and Address{/ts}\n
\n {$billingName}
\n {$address|nl2br}\n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}
\n {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n
\n {$customName}\n
\n {$n}\n \n {$v}\n
\n {$formValues.honor_type}\n
\n {$formValues.honor_prefix} {$formValues.honor_first_name} {$formValues.honor_last_name}
\n {if $formValues.honor_email}\n {ts}Honoree Email{/ts}: {$formValues.honor_email}\n {/if}\n
\n {ts}Premium Information{/ts}\n
\n {$formValues.product_name}\n
\n {ts}Option{/ts}\n \n {$formValues.product_option}\n
\n {ts}SKU{/ts}\n \n {$formValues.product_sku}\n
\n {ts}Sent{/ts}\n \n {$fulfilled_date|truncate:10:\'\'|crmDate}\n
\n
\n
\n\n\n\n',1,709,0,1,NULL),(7,'Contributions - Receipt (on-line)','{if $is_pay_later}{ts}Invoice{/ts}{else}{ts}Receipt{/ts}{/if} - {$title}\n','{if $receipt_text}\n{$receipt_text}\n{/if}\n{if $is_pay_later}\n\n===========================================================\n{$pay_later_receipt}\n===========================================================\n{else}\n\n{ts}Please print this receipt for your records.{/ts}\n{/if}\n\n{if $amount}\n===========================================================\n{ts}Contribution Information{/ts}\n\n===========================================================\n{if $lineItem and $priceSetID and !$is_quick_config}\n{foreach from=$lineItem item=value key=priceset}\n---------------------------------------------------------\n{capture assign=ts_item}{ts}Item{/ts}{/capture}\n{capture assign=ts_qty}{ts}Qty{/ts}{/capture}\n{capture assign=ts_each}{ts}Each{/ts}{/capture}\n{capture assign=ts_total}{ts}Total{/ts}{/capture}\n{$ts_item|string_format:\"%-30s\"} {$ts_qty|string_format:\"%5s\"} {$ts_each|string_format:\"%10s\"} {$ts_total|string_format:\"%10s\"}\n----------------------------------------------------------\n{foreach from=$value item=line}\n{capture assign=ts_item}{if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description} {$line.description}{/if}{/capture}{$ts_item|truncate:30:\"...\"|string_format:\"%-30s\"} {$line.qty|string_format:\"%5s\"} {$line.unit_price|crmMoney:$currency|string_format:\"%10s\"} {$line.line_total|crmMoney:$currency|string_format:\"%10s\"}\n{/foreach}\n{/foreach}\n\n{ts}Total Amount{/ts}: {$amount|crmMoney:$currency}\n{else}\n{ts}Amount{/ts}: {$amount|crmMoney:$currency} {if $amount_level } - {$amount_level} {/if}\n{/if}\n{/if}\n{if $receive_date}\n\n{ts}Date{/ts}: {$receive_date|crmDate}\n{/if}\n{if $is_monetary and $trxn_id}\n{ts}Transaction #{/ts}: {$trxn_id}\n{/if}\n\n{if $is_recur and ($contributeMode eq \'notify\' or $contributeMode eq \'directIPN\')}\n{ts}This is a recurring contribution. You can cancel future contributions at:{/ts}\n\n{$cancelSubscriptionUrl}\n\n{if $updateSubscriptionBillingUrl}\n{ts}You can update billing details for this recurring contribution at:{/ts}\n\n{$updateSubscriptionBillingUrl}\n\n{/if}\n{ts}You can update recurring contribution amount or change the number of installments for this recurring contribution at:{/ts}\n\n{$updateSubscriptionUrl}\n\n{/if}\n\n{if $honor_block_is_active }\n===========================================================\n{$honor_type}\n===========================================================\n{$honor_prefix} {$honor_first_name} {$honor_last_name}\n{if $honor_email}\n{ts}Honoree Email{/ts}: {$honor_email}\n{/if}\n\n{/if}\n{if $pcpBlock}\n===========================================================\n{ts}Personal Campaign Page{/ts}\n\n===========================================================\n{ts}Display In Honor Roll{/ts}: {if $pcp_display_in_roll}{ts}Yes{/ts}{else}{ts}No{/ts}{/if}\n\n{if $pcp_roll_nickname}{ts}Nickname{/ts}: {$pcp_roll_nickname}{/if}\n\n{if $pcp_personal_note}{ts}Personal Note{/ts}: {$pcp_personal_note}{/if}\n\n{/if}\n{if $onBehalfProfile}\n===========================================================\n{ts}On Behalf Of{/ts}\n\n===========================================================\n{foreach from=$onBehalfProfile item=onBehalfValue key=onBehalfName}\n{$onBehalfName}: {$onBehalfValue}\n{/foreach}\n{/if}\n\n{if !( $contributeMode eq \'notify\' OR $contributeMode eq \'directIPN\' ) and $is_monetary}\n{if $is_pay_later}\n===========================================================\n{ts}Registered Email{/ts}\n\n===========================================================\n{$email}\n{elseif $amount GT 0}\n===========================================================\n{ts}Billing Name and Address{/ts}\n\n===========================================================\n{$billingName}\n{$address}\n\n{$email}\n{/if} {* End ! is_pay_later condition. *}\n{/if}\n{if $contributeMode eq \'direct\' AND !$is_pay_later AND $amount GT 0}\n\n===========================================================\n{ts}Credit Card Information{/ts}\n\n===========================================================\n{$credit_card_type}\n{$credit_card_number}\n{ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n{/if}\n\n{if $selectPremium }\n===========================================================\n{ts}Premium Information{/ts}\n\n===========================================================\n{$product_name}\n{if $option}\n{ts}Option{/ts}: {$option}\n{/if}\n{if $sku}\n{ts}SKU{/ts}: {$sku}\n{/if}\n{if $start_date}\n{ts}Start Date{/ts}: {$start_date|crmDate}\n{/if}\n{if $end_date}\n{ts}End Date{/ts}: {$end_date|crmDate}\n{/if}\n{if $contact_email OR $contact_phone}\n\n{ts}For information about this premium, contact:{/ts}\n\n{if $contact_email}\n {$contact_email}\n{/if}\n{if $contact_phone}\n {$contact_phone}\n{/if}\n{/if}\n{if $is_deductible AND $price}\n\n{ts 1=$price|crmMoney:$currency}The value of this premium is %1. This may affect the amount of the tax deduction you can claim. Consult your tax advisor for more information.{/ts}{/if}\n{/if}\n\n{if $customPre}\n===========================================================\n{$customPre_grouptitle}\n\n===========================================================\n{foreach from=$customPre item=customValue key=customName}\n{if ( $trackingFields and ! in_array( $customName, $trackingFields ) ) or ! $trackingFields}\n {$customName}: {$customValue}\n{/if}\n{/foreach}\n{/if}\n\n\n{if $customPost}\n===========================================================\n{$customPost_grouptitle}\n\n===========================================================\n{foreach from=$customPost item=customValue key=customName}\n{if ( $trackingFields and ! in_array( $customName, $trackingFields ) ) or ! $trackingFields}\n {$customName}: {$customValue}\n{/if}\n{/foreach}\n{/if}\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n
\n\n {if $receipt_text}\n

{$receipt_text|htmlize}

\n {/if}\n\n {if $is_pay_later}\n

{$pay_later_receipt}

{* FIXME: this might be text rather than HTML *}\n {else}\n

{ts}Please print this confirmation for your records.{/ts}

\n {/if}\n\n
\n \n\n {if $amount}\n\n\n \n \n \n\n {if $lineItem and $priceSetID and !$is_quick_config}\n\n {foreach from=$lineItem item=value key=priceset}\n \n \n \n {/foreach}\n \n \n \n \n\n {else}\n\n \n \n \n \n\n {/if}\n\n {/if}\n\n\n {if $receive_date}\n \n \n \n \n {/if}\n\n {if $is_monetary and $trxn_id}\n \n \n \n \n {/if}\n\n {if $is_recur}\n {if $contributeMode eq \'notify\' or $contributeMode eq \'directIPN\'}\n \n \n {if $updateSubscriptionBillingUrl}\n \n \n \n {/if}\n \n \n \n \n {/if}\n {/if}\n\n {if $honor_block_is_active}\n \n \n \n \n \n \n {if $honor_email}\n \n \n \n \n {/if}\n {/if}\n\n {if $pcpBlock}\n \n \n \n \n \n \n \n {if $pcp_roll_nickname}\n \n \n \n \n {/if}\n {if $pcp_personal_note}\n \n \n \n \n {/if}\n {/if}\n\n {if $onBehalfProfile}\n \n \n \n {foreach from=$onBehalfProfile item=onBehalfValue key=onBehalfName}\n \n \n \n \n {/foreach}\n {/if}\n\n {if $isShare}\n \n \n \n {/if}\n\n {if ! ($contributeMode eq \'notify\' OR $contributeMode eq \'directIPN\') and $is_monetary}\n {if $is_pay_later}\n \n \n \n \n \n \n {elseif $amount GT 0}\n \n \n \n \n \n \n {/if}\n {/if}\n\n {if $contributeMode eq \'direct\' AND !$is_pay_later AND $amount GT 0}\n \n \n \n \n \n \n {/if}\n\n {if $selectPremium}\n \n \n \n \n \n \n {if $option}\n \n \n \n \n {/if}\n {if $sku}\n \n \n \n \n {/if}\n {if $start_date}\n \n \n \n \n {/if}\n {if $end_date}\n \n \n \n \n {/if}\n {if $contact_email OR $contact_phone}\n \n \n \n {/if}\n {if $is_deductible AND $price}\n \n \n \n {/if}\n {/if}\n\n {if $customPre}\n \n \n \n {foreach from=$customPre item=customValue key=customName}\n {if ($trackingFields and ! in_array($customName, $trackingFields)) or ! $trackingFields}\n \n \n \n \n {/if}\n {/foreach}\n {/if}\n\n {if $customPost}\n \n \n \n {foreach from=$customPost item=customValue key=customName}\n {if ($trackingFields and ! in_array($customName, $trackingFields)) or ! $trackingFields}\n \n \n \n \n {/if}\n {/foreach}\n {/if}\n\n
\n {ts}Contribution Information{/ts}\n
\n {* FIXME: style this table so that it looks like the text version (justification, etc.) *}\n \n \n \n \n \n \n {foreach from=$value item=line}\n \n \n \n \n \n \n {/foreach}\n
{ts}Item{/ts}{ts}Qty{/ts}{ts}Each{/ts}{ts}Total{/ts}
\n {if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description}
{$line.description|truncate:30:\"...\"}
{/if}\n
\n {$line.qty}\n \n {$line.unit_price|crmMoney:$currency}\n \n {$line.line_total|crmMoney:$currency}\n
\n
\n {ts}Total Amount{/ts}\n \n {$amount|crmMoney:$currency}\n
\n {ts}Amount{/ts}\n \n {$amount|crmMoney:$currency} {if $amount_level} - {$amount_level}{/if}\n
\n {ts}Date{/ts}\n \n {$receive_date|crmDate}\n
\n {ts}Transaction #{/ts}\n \n {$trxn_id}\n
\n {ts 1=$cancelSubscriptionUrl}This is a recurring contribution. You can cancel future contributions by visiting this web page.{/ts}\n
\n {ts 1=$updateSubscriptionBillingUrl}You can update billing details for this recurring contribution by visiting this web page.{/ts}\n
\n {ts 1=$updateSubscriptionUrl}You can update recurring contribution amount or change the number of installments for this recurring contribution by visiting this web page.{/ts}\n
\n {$honor_type}\n
\n {$honor_prefix} {$honor_first_name} {$honor_last_name}\n
\n {ts}Honoree Email{/ts}\n \n {$honor_email}\n
\n {ts}Personal Campaign Page{/ts}\n
\n {ts}Display In Honor Roll{/ts}\n \n {if $pcp_display_in_roll}{ts}Yes{/ts}{else}{ts}No{/ts}{/if}\n
\n {ts}Nickname{/ts}\n \n {$pcp_roll_nickname}\n
\n {ts}Personal Note{/ts}\n \n {$pcp_personal_note}\n
\n {$onBehalfProfile_grouptitle}\n
\n {$onBehalfName}\n \n {$onBehalfValue}\n
\n {capture assign=contributionUrl}{crmURL p=\'civicrm/contribute/transact\' q=\"reset=1&id=`$contributionPageId`\" a=true fe=1 h=1}{/capture}\n {include file=\"CRM/common/SocialNetwork.tpl\" emailMode=true url=$contributionUrl title=$title pageURL=$contributionUrl}\n
\n {ts}Registered Email{/ts}\n
\n {$email}\n
\n {ts}Billing Name and Address{/ts}\n
\n {$billingName}
\n {$address|nl2br}
\n {$email}\n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}
\n {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}
\n
\n {ts}Premium Information{/ts}\n
\n {$product_name}\n
\n {ts}Option{/ts}\n \n {$option}\n
\n {ts}SKU{/ts}\n \n {$sku}\n
\n {ts}Start Date{/ts}\n \n {$start_date|crmDate}\n
\n {ts}End Date{/ts}\n \n {$end_date|crmDate}\n
\n

{ts}For information about this premium, contact:{/ts}

\n {if $contact_email}\n

{$contact_email}

\n {/if}\n {if $contact_phone}\n

{$contact_phone}

\n {/if}\n
\n

{ts 1=$price|crmMoney:$currency}The value of this premium is %1. This may affect the amount of the tax deduction you can claim. Consult your tax advisor for more information.{/ts}

\n
\n {$customPre_grouptitle}\n
\n {$customName}\n \n {$customValue}\n
\n {$customPost_grouptitle}\n
\n {$customName}\n \n {$customValue}\n
\n
\n\n\n\n',1,710,1,0,NULL),(8,'Contributions - Receipt (on-line)','{if $is_pay_later}{ts}Invoice{/ts}{else}{ts}Receipt{/ts}{/if} - {$title}\n','{if $receipt_text}\n{$receipt_text}\n{/if}\n{if $is_pay_later}\n\n===========================================================\n{$pay_later_receipt}\n===========================================================\n{else}\n\n{ts}Please print this receipt for your records.{/ts}\n{/if}\n\n{if $amount}\n===========================================================\n{ts}Contribution Information{/ts}\n\n===========================================================\n{if $lineItem and $priceSetID and !$is_quick_config}\n{foreach from=$lineItem item=value key=priceset}\n---------------------------------------------------------\n{capture assign=ts_item}{ts}Item{/ts}{/capture}\n{capture assign=ts_qty}{ts}Qty{/ts}{/capture}\n{capture assign=ts_each}{ts}Each{/ts}{/capture}\n{capture assign=ts_total}{ts}Total{/ts}{/capture}\n{$ts_item|string_format:\"%-30s\"} {$ts_qty|string_format:\"%5s\"} {$ts_each|string_format:\"%10s\"} {$ts_total|string_format:\"%10s\"}\n----------------------------------------------------------\n{foreach from=$value item=line}\n{capture assign=ts_item}{if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description} {$line.description}{/if}{/capture}{$ts_item|truncate:30:\"...\"|string_format:\"%-30s\"} {$line.qty|string_format:\"%5s\"} {$line.unit_price|crmMoney:$currency|string_format:\"%10s\"} {$line.line_total|crmMoney:$currency|string_format:\"%10s\"}\n{/foreach}\n{/foreach}\n\n{ts}Total Amount{/ts}: {$amount|crmMoney:$currency}\n{else}\n{ts}Amount{/ts}: {$amount|crmMoney:$currency} {if $amount_level } - {$amount_level} {/if}\n{/if}\n{/if}\n{if $receive_date}\n\n{ts}Date{/ts}: {$receive_date|crmDate}\n{/if}\n{if $is_monetary and $trxn_id}\n{ts}Transaction #{/ts}: {$trxn_id}\n{/if}\n\n{if $is_recur and ($contributeMode eq \'notify\' or $contributeMode eq \'directIPN\')}\n{ts}This is a recurring contribution. You can cancel future contributions at:{/ts}\n\n{$cancelSubscriptionUrl}\n\n{if $updateSubscriptionBillingUrl}\n{ts}You can update billing details for this recurring contribution at:{/ts}\n\n{$updateSubscriptionBillingUrl}\n\n{/if}\n{ts}You can update recurring contribution amount or change the number of installments for this recurring contribution at:{/ts}\n\n{$updateSubscriptionUrl}\n\n{/if}\n\n{if $honor_block_is_active }\n===========================================================\n{$honor_type}\n===========================================================\n{$honor_prefix} {$honor_first_name} {$honor_last_name}\n{if $honor_email}\n{ts}Honoree Email{/ts}: {$honor_email}\n{/if}\n\n{/if}\n{if $pcpBlock}\n===========================================================\n{ts}Personal Campaign Page{/ts}\n\n===========================================================\n{ts}Display In Honor Roll{/ts}: {if $pcp_display_in_roll}{ts}Yes{/ts}{else}{ts}No{/ts}{/if}\n\n{if $pcp_roll_nickname}{ts}Nickname{/ts}: {$pcp_roll_nickname}{/if}\n\n{if $pcp_personal_note}{ts}Personal Note{/ts}: {$pcp_personal_note}{/if}\n\n{/if}\n{if $onBehalfProfile}\n===========================================================\n{ts}On Behalf Of{/ts}\n\n===========================================================\n{foreach from=$onBehalfProfile item=onBehalfValue key=onBehalfName}\n{$onBehalfName}: {$onBehalfValue}\n{/foreach}\n{/if}\n\n{if !( $contributeMode eq \'notify\' OR $contributeMode eq \'directIPN\' ) and $is_monetary}\n{if $is_pay_later}\n===========================================================\n{ts}Registered Email{/ts}\n\n===========================================================\n{$email}\n{elseif $amount GT 0}\n===========================================================\n{ts}Billing Name and Address{/ts}\n\n===========================================================\n{$billingName}\n{$address}\n\n{$email}\n{/if} {* End ! is_pay_later condition. *}\n{/if}\n{if $contributeMode eq \'direct\' AND !$is_pay_later AND $amount GT 0}\n\n===========================================================\n{ts}Credit Card Information{/ts}\n\n===========================================================\n{$credit_card_type}\n{$credit_card_number}\n{ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n{/if}\n\n{if $selectPremium }\n===========================================================\n{ts}Premium Information{/ts}\n\n===========================================================\n{$product_name}\n{if $option}\n{ts}Option{/ts}: {$option}\n{/if}\n{if $sku}\n{ts}SKU{/ts}: {$sku}\n{/if}\n{if $start_date}\n{ts}Start Date{/ts}: {$start_date|crmDate}\n{/if}\n{if $end_date}\n{ts}End Date{/ts}: {$end_date|crmDate}\n{/if}\n{if $contact_email OR $contact_phone}\n\n{ts}For information about this premium, contact:{/ts}\n\n{if $contact_email}\n {$contact_email}\n{/if}\n{if $contact_phone}\n {$contact_phone}\n{/if}\n{/if}\n{if $is_deductible AND $price}\n\n{ts 1=$price|crmMoney:$currency}The value of this premium is %1. This may affect the amount of the tax deduction you can claim. Consult your tax advisor for more information.{/ts}{/if}\n{/if}\n\n{if $customPre}\n===========================================================\n{$customPre_grouptitle}\n\n===========================================================\n{foreach from=$customPre item=customValue key=customName}\n{if ( $trackingFields and ! in_array( $customName, $trackingFields ) ) or ! $trackingFields}\n {$customName}: {$customValue}\n{/if}\n{/foreach}\n{/if}\n\n\n{if $customPost}\n===========================================================\n{$customPost_grouptitle}\n\n===========================================================\n{foreach from=$customPost item=customValue key=customName}\n{if ( $trackingFields and ! in_array( $customName, $trackingFields ) ) or ! $trackingFields}\n {$customName}: {$customValue}\n{/if}\n{/foreach}\n{/if}\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n
\n\n {if $receipt_text}\n

{$receipt_text|htmlize}

\n {/if}\n\n {if $is_pay_later}\n

{$pay_later_receipt}

{* FIXME: this might be text rather than HTML *}\n {else}\n

{ts}Please print this confirmation for your records.{/ts}

\n {/if}\n\n
\n \n\n {if $amount}\n\n\n \n \n \n\n {if $lineItem and $priceSetID and !$is_quick_config}\n\n {foreach from=$lineItem item=value key=priceset}\n \n \n \n {/foreach}\n \n \n \n \n\n {else}\n\n \n \n \n \n\n {/if}\n\n {/if}\n\n\n {if $receive_date}\n \n \n \n \n {/if}\n\n {if $is_monetary and $trxn_id}\n \n \n \n \n {/if}\n\n {if $is_recur}\n {if $contributeMode eq \'notify\' or $contributeMode eq \'directIPN\'}\n \n \n {if $updateSubscriptionBillingUrl}\n \n \n \n {/if}\n \n \n \n \n {/if}\n {/if}\n\n {if $honor_block_is_active}\n \n \n \n \n \n \n {if $honor_email}\n \n \n \n \n {/if}\n {/if}\n\n {if $pcpBlock}\n \n \n \n \n \n \n \n {if $pcp_roll_nickname}\n \n \n \n \n {/if}\n {if $pcp_personal_note}\n \n \n \n \n {/if}\n {/if}\n\n {if $onBehalfProfile}\n \n \n \n {foreach from=$onBehalfProfile item=onBehalfValue key=onBehalfName}\n \n \n \n \n {/foreach}\n {/if}\n\n {if $isShare}\n \n \n \n {/if}\n\n {if ! ($contributeMode eq \'notify\' OR $contributeMode eq \'directIPN\') and $is_monetary}\n {if $is_pay_later}\n \n \n \n \n \n \n {elseif $amount GT 0}\n \n \n \n \n \n \n {/if}\n {/if}\n\n {if $contributeMode eq \'direct\' AND !$is_pay_later AND $amount GT 0}\n \n \n \n \n \n \n {/if}\n\n {if $selectPremium}\n \n \n \n \n \n \n {if $option}\n \n \n \n \n {/if}\n {if $sku}\n \n \n \n \n {/if}\n {if $start_date}\n \n \n \n \n {/if}\n {if $end_date}\n \n \n \n \n {/if}\n {if $contact_email OR $contact_phone}\n \n \n \n {/if}\n {if $is_deductible AND $price}\n \n \n \n {/if}\n {/if}\n\n {if $customPre}\n \n \n \n {foreach from=$customPre item=customValue key=customName}\n {if ($trackingFields and ! in_array($customName, $trackingFields)) or ! $trackingFields}\n \n \n \n \n {/if}\n {/foreach}\n {/if}\n\n {if $customPost}\n \n \n \n {foreach from=$customPost item=customValue key=customName}\n {if ($trackingFields and ! in_array($customName, $trackingFields)) or ! $trackingFields}\n \n \n \n \n {/if}\n {/foreach}\n {/if}\n\n
\n {ts}Contribution Information{/ts}\n
\n {* FIXME: style this table so that it looks like the text version (justification, etc.) *}\n \n \n \n \n \n \n {foreach from=$value item=line}\n \n \n \n \n \n \n {/foreach}\n
{ts}Item{/ts}{ts}Qty{/ts}{ts}Each{/ts}{ts}Total{/ts}
\n {if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description}
{$line.description|truncate:30:\"...\"}
{/if}\n
\n {$line.qty}\n \n {$line.unit_price|crmMoney:$currency}\n \n {$line.line_total|crmMoney:$currency}\n
\n
\n {ts}Total Amount{/ts}\n \n {$amount|crmMoney:$currency}\n
\n {ts}Amount{/ts}\n \n {$amount|crmMoney:$currency} {if $amount_level} - {$amount_level}{/if}\n
\n {ts}Date{/ts}\n \n {$receive_date|crmDate}\n
\n {ts}Transaction #{/ts}\n \n {$trxn_id}\n
\n {ts 1=$cancelSubscriptionUrl}This is a recurring contribution. You can cancel future contributions by visiting this web page.{/ts}\n
\n {ts 1=$updateSubscriptionBillingUrl}You can update billing details for this recurring contribution by visiting this web page.{/ts}\n
\n {ts 1=$updateSubscriptionUrl}You can update recurring contribution amount or change the number of installments for this recurring contribution by visiting this web page.{/ts}\n
\n {$honor_type}\n
\n {$honor_prefix} {$honor_first_name} {$honor_last_name}\n
\n {ts}Honoree Email{/ts}\n \n {$honor_email}\n
\n {ts}Personal Campaign Page{/ts}\n
\n {ts}Display In Honor Roll{/ts}\n \n {if $pcp_display_in_roll}{ts}Yes{/ts}{else}{ts}No{/ts}{/if}\n
\n {ts}Nickname{/ts}\n \n {$pcp_roll_nickname}\n
\n {ts}Personal Note{/ts}\n \n {$pcp_personal_note}\n
\n {$onBehalfProfile_grouptitle}\n
\n {$onBehalfName}\n \n {$onBehalfValue}\n
\n {capture assign=contributionUrl}{crmURL p=\'civicrm/contribute/transact\' q=\"reset=1&id=`$contributionPageId`\" a=true fe=1 h=1}{/capture}\n {include file=\"CRM/common/SocialNetwork.tpl\" emailMode=true url=$contributionUrl title=$title pageURL=$contributionUrl}\n
\n {ts}Registered Email{/ts}\n
\n {$email}\n
\n {ts}Billing Name and Address{/ts}\n
\n {$billingName}
\n {$address|nl2br}
\n {$email}\n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}
\n {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}
\n
\n {ts}Premium Information{/ts}\n
\n {$product_name}\n
\n {ts}Option{/ts}\n \n {$option}\n
\n {ts}SKU{/ts}\n \n {$sku}\n
\n {ts}Start Date{/ts}\n \n {$start_date|crmDate}\n
\n {ts}End Date{/ts}\n \n {$end_date|crmDate}\n
\n

{ts}For information about this premium, contact:{/ts}

\n {if $contact_email}\n

{$contact_email}

\n {/if}\n {if $contact_phone}\n

{$contact_phone}

\n {/if}\n
\n

{ts 1=$price|crmMoney:$currency}The value of this premium is %1. This may affect the amount of the tax deduction you can claim. Consult your tax advisor for more information.{/ts}

\n
\n {$customPre_grouptitle}\n
\n {$customName}\n \n {$customValue}\n
\n {$customPost_grouptitle}\n
\n {$customName}\n \n {$customValue}\n
\n
\n\n\n\n',1,710,0,1,NULL),(9,'Contributions - Recurring Start and End Notification','{ts}Recurring Contribution Notification{/ts}\n','{ts 1=$displayName}Dear %1{/ts},\n\n{if $recur_txnType eq \'START\'}\n{if $auto_renew_membership}\n{ts}Thanks for your auto renew membership sign-up.{/ts}\n\n\n{ts 1=$recur_frequency_interval 2=$recur_frequency_unit}This membership will be automatically renewed every %1 %2(s).{/ts}\n\n{ts 1=$cancelSubscriptionUrl}This membership will be renewed automatically. You can cancel the auto-renewal option by visiting this web page.{/ts}\n\n{ts 1=$updateSubscriptionBillingUrl}You can update billing details for this automatically renewed membership by visiting this web page.{/ts}\n\n{else}\n{ts}Thanks for your recurring contribution sign-up.{/ts}\n\n\n{ts 1=$recur_frequency_interval 2=$recur_frequency_unit 3=$recur_installments}This recurring contribution will be automatically processed every %1 %2(s) for a total of %3 installment(s).{/ts}\n\n{ts}Start Date{/ts}: {$recur_start_date|crmDate}\n\n{ts 1=$cancelSubscriptionUrl}You can cancel the recurring contribution option by visiting this web page.{/ts}\n\n{ts 1=$updateSubscriptionBillingUrl}You can update billing details for this recurring contribution by visiting this web page.{/ts}\n\n{ts 1=$updateSubscriptionUrl}You can update recurring contribution amount or change the number of installments for this recurring contribution by visiting this web page.{/ts}\n{/if}\n\n{elseif $recur_txnType eq \'END\'}\n{if $auto_renew_membership}\n{ts}Your auto renew membership sign-up has ended and your membership will not be automatically renewed.{/ts}\n\n\n{else}\n{ts}Your recurring contribution term has ended.{/ts}\n\n\n{ts 1=$recur_installments}You have successfully completed %1 recurring contributions. Thank you for your support.{/ts}\n\n\n==================================================\n{ts 1=$recur_installments}Interval of Subscription for %1 installment(s){/ts}\n\n==================================================\n{ts}Start Date{/ts}: {$recur_start_date|crmDate}\n\n{ts}End Date{/ts}: {$recur_end_date|crmDate}\n\n{/if}\n{/if}\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n\n \n \n \n\n {if $recur_txnType eq \'START\'}\n {if $auto_renew_membership}\n \n \n \n \n \n \n \n \n \n {else}\n \n \n \n \n \n \n \n \n \n \n \n \n {/if}\n\n {elseif $recur_txnType eq \'END\'}\n\n {if $auto_renew_membership}\n \n \n \n {else}\n \n \n \n \n \n \n\n {/if}\n {/if}\n\n
\n

{ts 1=$displayName}Dear %1{/ts},

\n
 
\n

{ts}Thanks for your auto renew membership sign-up.{/ts}

\n

{ts 1=$recur_frequency_interval 2=$recur_frequency_unit}This membership will be automatically renewed every %1 %2(s). {/ts}

\n
\n {ts 1=$cancelSubscriptionUrl}This membership will be renewed automatically. You can cancel the auto-renewal option by visiting this web page.{/ts}\n
\n {ts 1=$updateSubscriptionBillingUrl}You can update billing details for this automatically renewed membership by visiting this web page.{/ts}\n
\n

{ts}Thanks for your recurring contribution sign-up.{/ts}

\n

{ts 1=$recur_frequency_interval 2=$recur_frequency_unit 3=$recur_installments}This recurring contribution will be automatically processed every %1 %2(s) for a total of %3 installment(s).{/ts}

\n

{ts}Start Date{/ts}: {$recur_start_date|crmDate}

\n
\n {ts 1=$cancelSubscriptionUrl} You can cancel the recurring contribution option by visiting this web page.{/ts}\n
\n {ts 1=$updateSubscriptionBillingUrl}You can update billing details for this recurring contribution by visiting this web page.{/ts}\n
\n {ts 1=$updateSubscriptionUrl}You can update recurring contribution amount or change the number of installments details for this recurring contribution by visiting this web page.{/ts}\n
\n

{ts}Your auto renew membership sign-up has ended and your membership will not be automatically renewed.{/ts}

\n
\n

{ts}Your recurring contribution term has ended.{/ts}

\n

{ts 1=$recur_installments}You have successfully completed %1 recurring contributions. Thank you for your support.{/ts}

\n
\n \n \n \n \n \n \n \n \n \n \n \n \n
\n {ts 1=$recur_installments}Interval of Subscription for %1 installment(s){/ts}\n
\n {ts}Start Date{/ts}\n \n {$recur_start_date|crmDate}\n
\n {ts}End Date{/ts}\n \n {$recur_end_date|crmDate}\n
\n
\n
\n\n\n\n',1,711,1,0,NULL),(10,'Contributions - Recurring Start and End Notification','{ts}Recurring Contribution Notification{/ts}\n','{ts 1=$displayName}Dear %1{/ts},\n\n{if $recur_txnType eq \'START\'}\n{if $auto_renew_membership}\n{ts}Thanks for your auto renew membership sign-up.{/ts}\n\n\n{ts 1=$recur_frequency_interval 2=$recur_frequency_unit}This membership will be automatically renewed every %1 %2(s).{/ts}\n\n{ts 1=$cancelSubscriptionUrl}This membership will be renewed automatically. You can cancel the auto-renewal option by visiting this web page.{/ts}\n\n{ts 1=$updateSubscriptionBillingUrl}You can update billing details for this automatically renewed membership by visiting this web page.{/ts}\n\n{else}\n{ts}Thanks for your recurring contribution sign-up.{/ts}\n\n\n{ts 1=$recur_frequency_interval 2=$recur_frequency_unit 3=$recur_installments}This recurring contribution will be automatically processed every %1 %2(s) for a total of %3 installment(s).{/ts}\n\n{ts}Start Date{/ts}: {$recur_start_date|crmDate}\n\n{ts 1=$cancelSubscriptionUrl}You can cancel the recurring contribution option by visiting this web page.{/ts}\n\n{ts 1=$updateSubscriptionBillingUrl}You can update billing details for this recurring contribution by visiting this web page.{/ts}\n\n{ts 1=$updateSubscriptionUrl}You can update recurring contribution amount or change the number of installments for this recurring contribution by visiting this web page.{/ts}\n{/if}\n\n{elseif $recur_txnType eq \'END\'}\n{if $auto_renew_membership}\n{ts}Your auto renew membership sign-up has ended and your membership will not be automatically renewed.{/ts}\n\n\n{else}\n{ts}Your recurring contribution term has ended.{/ts}\n\n\n{ts 1=$recur_installments}You have successfully completed %1 recurring contributions. Thank you for your support.{/ts}\n\n\n==================================================\n{ts 1=$recur_installments}Interval of Subscription for %1 installment(s){/ts}\n\n==================================================\n{ts}Start Date{/ts}: {$recur_start_date|crmDate}\n\n{ts}End Date{/ts}: {$recur_end_date|crmDate}\n\n{/if}\n{/if}\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n\n \n \n \n\n {if $recur_txnType eq \'START\'}\n {if $auto_renew_membership}\n \n \n \n \n \n \n \n \n \n {else}\n \n \n \n \n \n \n \n \n \n \n \n \n {/if}\n\n {elseif $recur_txnType eq \'END\'}\n\n {if $auto_renew_membership}\n \n \n \n {else}\n \n \n \n \n \n \n\n {/if}\n {/if}\n\n
\n

{ts 1=$displayName}Dear %1{/ts},

\n
 
\n

{ts}Thanks for your auto renew membership sign-up.{/ts}

\n

{ts 1=$recur_frequency_interval 2=$recur_frequency_unit}This membership will be automatically renewed every %1 %2(s). {/ts}

\n
\n {ts 1=$cancelSubscriptionUrl}This membership will be renewed automatically. You can cancel the auto-renewal option by visiting this web page.{/ts}\n
\n {ts 1=$updateSubscriptionBillingUrl}You can update billing details for this automatically renewed membership by visiting this web page.{/ts}\n
\n

{ts}Thanks for your recurring contribution sign-up.{/ts}

\n

{ts 1=$recur_frequency_interval 2=$recur_frequency_unit 3=$recur_installments}This recurring contribution will be automatically processed every %1 %2(s) for a total of %3 installment(s).{/ts}

\n

{ts}Start Date{/ts}: {$recur_start_date|crmDate}

\n
\n {ts 1=$cancelSubscriptionUrl} You can cancel the recurring contribution option by visiting this web page.{/ts}\n
\n {ts 1=$updateSubscriptionBillingUrl}You can update billing details for this recurring contribution by visiting this web page.{/ts}\n
\n {ts 1=$updateSubscriptionUrl}You can update recurring contribution amount or change the number of installments details for this recurring contribution by visiting this web page.{/ts}\n
\n

{ts}Your auto renew membership sign-up has ended and your membership will not be automatically renewed.{/ts}

\n
\n

{ts}Your recurring contribution term has ended.{/ts}

\n

{ts 1=$recur_installments}You have successfully completed %1 recurring contributions. Thank you for your support.{/ts}

\n
\n \n \n \n \n \n \n \n \n \n \n \n \n
\n {ts 1=$recur_installments}Interval of Subscription for %1 installment(s){/ts}\n
\n {ts}Start Date{/ts}\n \n {$recur_start_date|crmDate}\n
\n {ts}End Date{/ts}\n \n {$recur_end_date|crmDate}\n
\n
\n
\n\n\n\n',1,711,0,1,NULL),(11,'Contributions - Recurring Cancellation Notification','{ts}Recurring Contribution Cancellation Notification{/ts}\n','{ts 1=$contact.display_name}Dear %1{/ts},\n\n{ts 1=$amount 2=$recur_frequency_interval 3=$recur_frequency_unit}Your recurring contribution of %1, every %2 %3 has been cancelled as requested.{/ts}\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n \n
\n

{ts 1=$contact.display_name}Dear %1{/ts},

\n

{ts 1=$amount 2=$recur_frequency_interval 3=$recur_frequency_unit}Your recurring contribution of %1, every %2 %3 has been cancelled as requested.{/ts}

\n
\n
\n\n\n\n',1,712,1,0,NULL),(12,'Contributions - Recurring Cancellation Notification','{ts}Recurring Contribution Cancellation Notification{/ts}\n','{ts 1=$contact.display_name}Dear %1{/ts},\n\n{ts 1=$amount 2=$recur_frequency_interval 3=$recur_frequency_unit}Your recurring contribution of %1, every %2 %3 has been cancelled as requested.{/ts}\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n \n
\n

{ts 1=$contact.display_name}Dear %1{/ts},

\n

{ts 1=$amount 2=$recur_frequency_interval 3=$recur_frequency_unit}Your recurring contribution of %1, every %2 %3 has been cancelled as requested.{/ts}

\n
\n
\n\n\n\n',1,712,0,1,NULL),(13,'Contributions - Recurring Billing Updates','{ts}Recurring Contribution Billing Updates{/ts}','{ts 1=$contact.display_name}Dear %1{/ts},\n\n{ts 1=$amount 2=$recur_frequency_interval 3=$recur_frequency_unit}Billing details for your recurring contribution of %1, every %2 %3 have been updated.{/ts}\n\n===========================================================\n{ts}Billing Name and Address{/ts}\n\n===========================================================\n{$billingName}\n{$address}\n\n{$email}\n\n===========================================================\n{ts}Credit Card Information{/ts}\n\n===========================================================\n{$credit_card_type}\n{$credit_card_number}\n{ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n\n\n{ts 1=$receipt_from_email}If you have questions please contact us at %1{/ts}','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n \n
\n

{ts 1=$contact.display_name}Dear %1{/ts},

\n

{ts 1=$amount 2=$recur_frequency_interval 3=$recur_frequency_unit}Billing details for your recurring contribution of %1, every %2 %3 have been updated.{/ts}

\n
\n\n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n {ts}Billing Name and Address{/ts}\n
\n {$billingName}
\n {$address|nl2br}
\n {$email}\n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}
\n {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}
\n
\n {ts 1=$receipt_from_email}If you have questions please contact us at %1{/ts}\n
\n
\n\n\n',1,713,1,0,NULL),(14,'Contributions - Recurring Billing Updates','{ts}Recurring Contribution Billing Updates{/ts}','{ts 1=$contact.display_name}Dear %1{/ts},\n\n{ts 1=$amount 2=$recur_frequency_interval 3=$recur_frequency_unit}Billing details for your recurring contribution of %1, every %2 %3 have been updated.{/ts}\n\n===========================================================\n{ts}Billing Name and Address{/ts}\n\n===========================================================\n{$billingName}\n{$address}\n\n{$email}\n\n===========================================================\n{ts}Credit Card Information{/ts}\n\n===========================================================\n{$credit_card_type}\n{$credit_card_number}\n{ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n\n\n{ts 1=$receipt_from_email}If you have questions please contact us at %1{/ts}','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n \n
\n

{ts 1=$contact.display_name}Dear %1{/ts},

\n

{ts 1=$amount 2=$recur_frequency_interval 3=$recur_frequency_unit}Billing details for your recurring contribution of %1, every %2 %3 have been updated.{/ts}

\n
\n\n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n {ts}Billing Name and Address{/ts}\n
\n {$billingName}
\n {$address|nl2br}
\n {$email}\n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}
\n {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}
\n
\n {ts 1=$receipt_from_email}If you have questions please contact us at %1{/ts}\n
\n
\n\n\n',1,713,0,1,NULL),(15,'Contributions - Recurring Updates','{ts}Recurring Contribution Update Notification{/ts}','{ts 1=$contact.display_name}Dear %1{/ts},\n\n{ts}Your recurring contribution has been updated as requested:{/ts}\n\n{ts 1=$amount 2=$recur_frequency_interval 3=$recur_frequency_unit}Recurring contribution is for %1, every %2(s) %3{/ts}\n{if $installments}{ts 1=$installments} for %1 installments.{/ts}{/if}\n\n{ts 1=$receipt_from_email}If you have questions please contact us at %1.{/ts}','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n \n
\n

{ts 1=$contact.display_name}Dear %1{/ts},

\n

{ts 1=$amount 2=$recur_frequency_interval 3=$recur_frequency_unit}Recurring contribution is for %1, every %2(s) %3{/ts}

\n

{if $installments}{ts 1=$installments} for %1 installments.{/ts}{/if}

\n\n

{ts 1=$receipt_from_email}If you have questions please contact us at %1.{/ts}

\n
\n
\n\n\n\n',1,714,1,0,NULL),(16,'Contributions - Recurring Updates','{ts}Recurring Contribution Update Notification{/ts}','{ts 1=$contact.display_name}Dear %1{/ts},\n\n{ts}Your recurring contribution has been updated as requested:{/ts}\n\n{ts 1=$amount 2=$recur_frequency_interval 3=$recur_frequency_unit}Recurring contribution is for %1, every %2(s) %3{/ts}\n{if $installments}{ts 1=$installments} for %1 installments.{/ts}{/if}\n\n{ts 1=$receipt_from_email}If you have questions please contact us at %1.{/ts}','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n \n
\n

{ts 1=$contact.display_name}Dear %1{/ts},

\n

{ts 1=$amount 2=$recur_frequency_interval 3=$recur_frequency_unit}Recurring contribution is for %1, every %2(s) %3{/ts}

\n

{if $installments}{ts 1=$installments} for %1 installments.{/ts}{/if}

\n\n

{ts 1=$receipt_from_email}If you have questions please contact us at %1.{/ts}

\n
\n
\n\n\n\n',1,714,0,1,NULL),(17,'Personal Campaign Pages - Admin Notification','{ts}Personal Campaign Page Notification{/ts}\n','===========================================================\n{ts}Personal Campaign Page Notification{/ts}\n\n===========================================================\n{ts}Action{/ts}: {if $mode EQ \'Update\'}{ts}Updated personal campaign page{/ts}{else}{ts}New personal campaign page{/ts}{/if}\n{ts}Personal Campaign Page Title{/ts}: {$pcpTitle}\n{ts}Current Status{/ts}: {$pcpStatus}\n{capture assign=pcpURL}{crmURL p=\"civicrm/pcp/info\" q=\"reset=1&id=`$pcpId`\" h=0 a=1}{/capture}\n{ts}View Page{/ts}:\n>> {$pcpURL}\n\n{ts}Supporter{/ts}: {$supporterName}\n>> {$supporterUrl}\n\n{ts}Linked to Contribution Page{/ts}: {$contribPageTitle}\n>> {$contribPageUrl}\n\n{ts}Manage Personal Campaign Pages{/ts}:\n>> {$managePCPUrl}\n\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n{capture assign=pcpURL }{crmURL p=\"civicrm/pcp/info\" q=\"reset=1&id=`$pcpId`\" h=0 a=1}{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n
\n {ts}Personal Campaign Page Notification{/ts}\n
\n {ts}Action{/ts}:\n \n {if $mode EQ \'Update\'}\n {ts}Updated personal campaign page{/ts}\n {else}\n {ts}New personal campaign page{/ts}\n {/if}\n
\n {ts}Personal Campaign Page Title{/ts}\n \n {$pcpTitle}\n
\n {ts}Current Status{/ts}\n \n {$pcpStatus}\n
\n {ts}View Page{/ts}\n
\n {ts}Supporter{/ts}\n \n {$supporterName}\n
\n {ts}Linked to Contribution Page{/ts}\n \n {$contribPageTitle}\n
\n {ts}Manage Personal Campaign Pages{/ts}\n
\n
\n
\n\n\n\n',1,715,1,0,NULL),(18,'Personal Campaign Pages - Admin Notification','{ts}Personal Campaign Page Notification{/ts}\n','===========================================================\n{ts}Personal Campaign Page Notification{/ts}\n\n===========================================================\n{ts}Action{/ts}: {if $mode EQ \'Update\'}{ts}Updated personal campaign page{/ts}{else}{ts}New personal campaign page{/ts}{/if}\n{ts}Personal Campaign Page Title{/ts}: {$pcpTitle}\n{ts}Current Status{/ts}: {$pcpStatus}\n{capture assign=pcpURL}{crmURL p=\"civicrm/pcp/info\" q=\"reset=1&id=`$pcpId`\" h=0 a=1}{/capture}\n{ts}View Page{/ts}:\n>> {$pcpURL}\n\n{ts}Supporter{/ts}: {$supporterName}\n>> {$supporterUrl}\n\n{ts}Linked to Contribution Page{/ts}: {$contribPageTitle}\n>> {$contribPageUrl}\n\n{ts}Manage Personal Campaign Pages{/ts}:\n>> {$managePCPUrl}\n\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n{capture assign=pcpURL }{crmURL p=\"civicrm/pcp/info\" q=\"reset=1&id=`$pcpId`\" h=0 a=1}{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n
\n {ts}Personal Campaign Page Notification{/ts}\n
\n {ts}Action{/ts}:\n \n {if $mode EQ \'Update\'}\n {ts}Updated personal campaign page{/ts}\n {else}\n {ts}New personal campaign page{/ts}\n {/if}\n
\n {ts}Personal Campaign Page Title{/ts}\n \n {$pcpTitle}\n
\n {ts}Current Status{/ts}\n \n {$pcpStatus}\n
\n {ts}View Page{/ts}\n
\n {ts}Supporter{/ts}\n \n {$supporterName}\n
\n {ts}Linked to Contribution Page{/ts}\n \n {$contribPageTitle}\n
\n {ts}Manage Personal Campaign Pages{/ts}\n
\n
\n
\n\n\n\n',1,715,0,1,NULL),(19,'Personal Campaign Pages - Supporter Status Change Notification','{ts 1=$contribPageTitle}Your Personal Campaign Page for %1{/ts}\n','{if $pcpStatus eq \'Approved\'}\n============================\n{ts}Your Personal Campaign Page{/ts}\n\n============================\n\n{ts}Your personal campaign page has been approved and is now live.{/ts}\n\n{ts}Whenever you want to preview, update or promote your page{/ts}:\n1. {ts}Login to your account at{/ts}:\n{$loginUrl}\n\n2. {ts}Click or paste this link into your browser to go to your page{/ts}:\n{$pcpInfoURL}\n\n{ts}When you view your campaign page WHILE LOGGED IN, the page includes links to edit\nyour page, tell friends, and update your contact info.{/ts}\n\n{if $isTellFriendEnabled}\n\n{ts}After logging in, you can use this form to promote your fundraising page{/ts}:\n{$pcpTellFriendURL}\n\n{/if}\n\n{if $pcpNotifyEmailAddress}\n{ts}Questions? Send email to{/ts}:\n{$pcpNotifyEmailAddress}\n{/if}\n\n{* Rejected message *}\n{elseif $pcpStatus eq \'Not Approved\'}\n============================\n{ts}Your Personal Campaign Page{/ts}\n\n============================\n\n{ts}Your personal campaign page has been reviewed. There were some issues with the content\nwhich prevented us from approving the page. We are sorry for any inconvenience.{/ts}\n\n{if $pcpNotifyEmailAddress}\n\n{ts}Please contact our site administrator for more information{/ts}:\n{$pcpNotifyEmailAddress}\n{/if}\n\n{/if}\n','\n\n\n \n \n\n\n\n
\n \n\n \n \n \n\n \n\n \n \n \n\n
\n\n

{ts}Your Personal Campaign Page{/ts}

\n\n {if $pcpStatus eq \'Approved\'}\n\n

{ts}Your personal campaign page has been approved and is now live.{/ts}

\n

{ts}Whenever you want to preview, update or promote your page{/ts}:

\n
    \n
  1. {ts}Login to your account{/ts}
  2. \n
  3. {ts}Go to your page{/ts}
  4. \n
\n

{ts}When you view your campaign page WHILE LOGGED IN, the page includes links to edit\nyour page, tell friends, and update your contact info.{/ts}

\n\n {if $isTellFriendEnabled}\n

{ts}After logging in, you can use this form to promote your fundraising page{/ts}

\n {/if}\n\n {if $pcpNotifyEmailAddress}\n

{ts}Questions? Send email to{/ts}: {$pcpNotifyEmailAddress}

\n {/if}\n\n {elseif $pcpStatus eq \'Not Approved\'}\n\n

{ts}Your personal campaign page has been reviewed. There were some issues with the content\nwhich prevented us from approving the page. We are sorry for any inconvenience.{/ts}

\n {if $pcpNotifyEmailAddress}\n

{ts}Please contact our site administrator for more information{/ts}: {$pcpNotifyEmailAddress}

\n {/if}\n\n {/if}\n\n
\n
\n\n\n\n',1,716,1,0,NULL),(20,'Personal Campaign Pages - Supporter Status Change Notification','{ts 1=$contribPageTitle}Your Personal Campaign Page for %1{/ts}\n','{if $pcpStatus eq \'Approved\'}\n============================\n{ts}Your Personal Campaign Page{/ts}\n\n============================\n\n{ts}Your personal campaign page has been approved and is now live.{/ts}\n\n{ts}Whenever you want to preview, update or promote your page{/ts}:\n1. {ts}Login to your account at{/ts}:\n{$loginUrl}\n\n2. {ts}Click or paste this link into your browser to go to your page{/ts}:\n{$pcpInfoURL}\n\n{ts}When you view your campaign page WHILE LOGGED IN, the page includes links to edit\nyour page, tell friends, and update your contact info.{/ts}\n\n{if $isTellFriendEnabled}\n\n{ts}After logging in, you can use this form to promote your fundraising page{/ts}:\n{$pcpTellFriendURL}\n\n{/if}\n\n{if $pcpNotifyEmailAddress}\n{ts}Questions? Send email to{/ts}:\n{$pcpNotifyEmailAddress}\n{/if}\n\n{* Rejected message *}\n{elseif $pcpStatus eq \'Not Approved\'}\n============================\n{ts}Your Personal Campaign Page{/ts}\n\n============================\n\n{ts}Your personal campaign page has been reviewed. There were some issues with the content\nwhich prevented us from approving the page. We are sorry for any inconvenience.{/ts}\n\n{if $pcpNotifyEmailAddress}\n\n{ts}Please contact our site administrator for more information{/ts}:\n{$pcpNotifyEmailAddress}\n{/if}\n\n{/if}\n','\n\n\n \n \n\n\n\n
\n \n\n \n \n \n\n \n\n \n \n \n\n
\n\n

{ts}Your Personal Campaign Page{/ts}

\n\n {if $pcpStatus eq \'Approved\'}\n\n

{ts}Your personal campaign page has been approved and is now live.{/ts}

\n

{ts}Whenever you want to preview, update or promote your page{/ts}:

\n
    \n
  1. {ts}Login to your account{/ts}
  2. \n
  3. {ts}Go to your page{/ts}
  4. \n
\n

{ts}When you view your campaign page WHILE LOGGED IN, the page includes links to edit\nyour page, tell friends, and update your contact info.{/ts}

\n\n {if $isTellFriendEnabled}\n

{ts}After logging in, you can use this form to promote your fundraising page{/ts}

\n {/if}\n\n {if $pcpNotifyEmailAddress}\n

{ts}Questions? Send email to{/ts}: {$pcpNotifyEmailAddress}

\n {/if}\n\n {elseif $pcpStatus eq \'Not Approved\'}\n\n

{ts}Your personal campaign page has been reviewed. There were some issues with the content\nwhich prevented us from approving the page. We are sorry for any inconvenience.{/ts}

\n {if $pcpNotifyEmailAddress}\n

{ts}Please contact our site administrator for more information{/ts}: {$pcpNotifyEmailAddress}

\n {/if}\n\n {/if}\n\n
\n
\n\n\n\n',1,716,0,1,NULL),(21,'Personal Campaign Pages - Supporter Welcome','{ts 1=$contribPageTitle}Your Personal Campaign Page for %1{/ts}\n','{ts}Dear supporter{/ts},\n{ts 1=\"$contribPageTitle\"}Thanks for creating a personal campaign page in support of %1.{/ts}\n\n{if $pcpStatus eq \'Approved\'}\n====================\n{ts}Promoting Your Page{/ts}\n\n====================\n{if $isTellFriendEnabled}\n\n{ts}You can begin your fundraising efforts using our \"Tell a Friend\" form{/ts}:\n\n1. {ts}Login to your account at{/ts}:\n{$loginUrl}\n\n2. {ts}Click or paste this link into your browser and follow the prompts{/ts}:\n{$pcpTellFriendURL}\n{else}\n\n{ts}Send email to family, friends and colleagues with a personal message about this campaign.{/ts}\n{ts}Include this link to your fundraising page in your emails{/ts}:\n{$pcpInfoURL}\n{/if}\n\n===================\n{ts}Managing Your Page{/ts}\n\n===================\n{ts}Whenever you want to preview, update or promote your page{/ts}:\n1. {ts}Login to your account at{/ts}:\n{$loginUrl}\n\n2. {ts}Click or paste this link into your browser to go to your page{/ts}:\n{$pcpInfoURL}\n\n{ts}When you view your campaign page WHILE LOGGED IN, the page includes links to edit\nyour page, tell friends, and update your contact info.{/ts}\n\n\n{elseif $pcpStatus EQ \'Waiting Review\'}\n{ts}Your page requires administrator review before you can begin your fundraising efforts.{/ts}\n\n\n{ts}A notification email has been sent to the site administrator, and you will receive another notification from them as soon as the review process is complete.{/ts}\n\n\n{ts}You can still preview your page prior to approval{/ts}:\n1. {ts}Login to your account at{/ts}:\n{$loginUrl}\n\n2. {ts}Click or paste this link into your browser{/ts}:\n{$pcpInfoURL}\n\n{/if}\n{if $pcpNotifyEmailAddress}\n{ts}Questions? Send email to{/ts}:\n{$pcpNotifyEmailAddress}\n{/if}\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n\n {if $pcpStatus eq \'Approved\'}\n\n \n \n \n\n {elseif $pcpStatus EQ \'Waiting Review\'}\n\n \n \n \n\n {/if}\n\n {if $pcpNotifyEmailAddress}\n \n \n \n {/if}\n\n
\n

{ts}Dear supporter{/ts},

\n

{ts 1=\"$contribPageTitle\"}Thanks for creating a personal campaign page in support of %1.{/ts}

\n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n {ts}Promoting Your Page{/ts}\n
\n {if $isTellFriendEnabled}\n

{ts}You can begin your fundraising efforts using our \"Tell a Friend\" form{/ts}:

\n
    \n
  1. {ts}Login to your account{/ts}
  2. \n
  3. {ts}Click this link and follow the prompts{/ts}
  4. \n
\n {else}\n

{ts}Send email to family, friends and colleagues with a personal message about this campaign.{/ts} {ts}Include this link to your fundraising page in your emails{/ts}: {$pcpInfoURL}

\n {/if}\n
\n {ts}Managing Your Page{/ts}\n
\n

{ts}Whenever you want to preview, update or promote your page{/ts}:

\n
    \n
  1. {ts}Login to your account{/ts}
  2. \n
  3. {ts}Go to your page{/ts}
  4. \n
\n

{ts}When you view your campaign page WHILE LOGGED IN, the page includes links to edit\nyour page, tell friends, and update your contact info.{/ts}

\n
\n
\n

{ts}Your page requires administrator review before you can begin your fundraising efforts.{/ts}

\n

{ts}A notification email has been sent to the site administrator, and you will receive another notification from them as soon as the review process is complete.{/ts}

\n

{ts}You can still preview your page prior to approval{/ts}:

\n
    \n
  1. {ts}Login to your account{/ts}
  2. \n
  3. {ts}Click this link{/ts}
  4. \n
\n
\n

{ts}Questions? Send email to{/ts}: {$pcpNotifyEmailAddress}

\n
\n
\n\n\n\n',1,717,1,0,NULL),(22,'Personal Campaign Pages - Supporter Welcome','{ts 1=$contribPageTitle}Your Personal Campaign Page for %1{/ts}\n','{ts}Dear supporter{/ts},\n{ts 1=\"$contribPageTitle\"}Thanks for creating a personal campaign page in support of %1.{/ts}\n\n{if $pcpStatus eq \'Approved\'}\n====================\n{ts}Promoting Your Page{/ts}\n\n====================\n{if $isTellFriendEnabled}\n\n{ts}You can begin your fundraising efforts using our \"Tell a Friend\" form{/ts}:\n\n1. {ts}Login to your account at{/ts}:\n{$loginUrl}\n\n2. {ts}Click or paste this link into your browser and follow the prompts{/ts}:\n{$pcpTellFriendURL}\n{else}\n\n{ts}Send email to family, friends and colleagues with a personal message about this campaign.{/ts}\n{ts}Include this link to your fundraising page in your emails{/ts}:\n{$pcpInfoURL}\n{/if}\n\n===================\n{ts}Managing Your Page{/ts}\n\n===================\n{ts}Whenever you want to preview, update or promote your page{/ts}:\n1. {ts}Login to your account at{/ts}:\n{$loginUrl}\n\n2. {ts}Click or paste this link into your browser to go to your page{/ts}:\n{$pcpInfoURL}\n\n{ts}When you view your campaign page WHILE LOGGED IN, the page includes links to edit\nyour page, tell friends, and update your contact info.{/ts}\n\n\n{elseif $pcpStatus EQ \'Waiting Review\'}\n{ts}Your page requires administrator review before you can begin your fundraising efforts.{/ts}\n\n\n{ts}A notification email has been sent to the site administrator, and you will receive another notification from them as soon as the review process is complete.{/ts}\n\n\n{ts}You can still preview your page prior to approval{/ts}:\n1. {ts}Login to your account at{/ts}:\n{$loginUrl}\n\n2. {ts}Click or paste this link into your browser{/ts}:\n{$pcpInfoURL}\n\n{/if}\n{if $pcpNotifyEmailAddress}\n{ts}Questions? Send email to{/ts}:\n{$pcpNotifyEmailAddress}\n{/if}\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n\n {if $pcpStatus eq \'Approved\'}\n\n \n \n \n\n {elseif $pcpStatus EQ \'Waiting Review\'}\n\n \n \n \n\n {/if}\n\n {if $pcpNotifyEmailAddress}\n \n \n \n {/if}\n\n
\n

{ts}Dear supporter{/ts},

\n

{ts 1=\"$contribPageTitle\"}Thanks for creating a personal campaign page in support of %1.{/ts}

\n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n {ts}Promoting Your Page{/ts}\n
\n {if $isTellFriendEnabled}\n

{ts}You can begin your fundraising efforts using our \"Tell a Friend\" form{/ts}:

\n
    \n
  1. {ts}Login to your account{/ts}
  2. \n
  3. {ts}Click this link and follow the prompts{/ts}
  4. \n
\n {else}\n

{ts}Send email to family, friends and colleagues with a personal message about this campaign.{/ts} {ts}Include this link to your fundraising page in your emails{/ts}: {$pcpInfoURL}

\n {/if}\n
\n {ts}Managing Your Page{/ts}\n
\n

{ts}Whenever you want to preview, update or promote your page{/ts}:

\n
    \n
  1. {ts}Login to your account{/ts}
  2. \n
  3. {ts}Go to your page{/ts}
  4. \n
\n

{ts}When you view your campaign page WHILE LOGGED IN, the page includes links to edit\nyour page, tell friends, and update your contact info.{/ts}

\n
\n
\n

{ts}Your page requires administrator review before you can begin your fundraising efforts.{/ts}

\n

{ts}A notification email has been sent to the site administrator, and you will receive another notification from them as soon as the review process is complete.{/ts}

\n

{ts}You can still preview your page prior to approval{/ts}:

\n
    \n
  1. {ts}Login to your account{/ts}
  2. \n
  3. {ts}Click this link{/ts}
  4. \n
\n
\n

{ts}Questions? Send email to{/ts}: {$pcpNotifyEmailAddress}

\n
\n
\n\n\n\n',1,717,0,1,NULL),(23,'Events - Registration Confirmation and Receipt (off-line)','{ts}Event Confirmation{/ts} - {$event.title}\n','{if $event.confirm_email_text AND (not $isOnWaitlist AND not $isRequireApproval)}\n{$event.confirm_email_text}\n{/if}\n\n{if $isOnWaitlist}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{ts}You have been added to the WAIT LIST for this event.{/ts}\n\n{if $isPrimary}\n{ts}If space becomes available you will receive an email with\na link to a web page where you can complete your registration.{/ts}\n\n{/if}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{elseif $isRequireApproval}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{ts}Your registration has been submitted.{/ts}\n\n{if $isPrimary}\n{ts}Once your registration has been reviewed, you will receive\nan email with a link to a web page where you can complete the\nregistration process.{/ts}\n\n{/if}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{elseif $is_pay_later}\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$pay_later_receipt}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{else}\n\n{ts}Please print this confirmation for your records.{/ts}\n{/if}\n\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{ts}Event Information and Location{/ts}\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$event.event_title}\n{$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|date_format:\"%Y%m%d\" == $event.event_start_date|date_format:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|crmDate}{/if}{/if}\n\n{if $event.participant_role neq \'Attendee\' and $defaultRole}\n{ts}Participant Role{/ts}: {$event.participant_role}\n{/if}\n\n{if $isShowLocation}\n{if $location.address.1.name}\n\n{$location.address.1.name}\n{/if}\n{if $location.address.1.street_address}{$location.address.1.street_address}\n{/if}\n{if $location.address.1.supplemental_address_1}{$location.address.1.supplemental_address_1}\n{/if}\n{if $location.address.1.supplemental_address_2}{$location.address.1.supplemental_address_2}\n{/if}\n{if $location.address.1.city}{$location.address.1.city} {$location.address.1.postal_code}{if $location.address.1.postal_code_suffix} - {$location.address.1.postal_code_suffix}{/if}\n{/if}\n\n{/if}{*End of isShowLocation condition*}\n\n{if $location.phone.1.phone || $location.email.1.email}\n\n{ts}Event Contacts:{/ts}\n{foreach from=$location.phone item=phone}\n{if $phone.phone}\n\n{if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}: {$phone.phone}{/if} {if $phone.phone_ext} {ts}ext.{/ts} {$phone.phone_ext}{/if}\n{/foreach}\n{foreach from=$location.email item=eventEmail}\n{if $eventEmail.email}\n\n{ts}Email{/ts}: {$eventEmail.email}{/if}{/foreach}\n{/if}\n\n{capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n{ts}Download iCalendar File:{/ts} {$icalFeed}\n{if $email}\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{ts}Registered Email{/ts}\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$email}\n{/if}\n{if $event.is_monetary} {* This section for Paid events only.*}\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$event.fee_label}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{if $lineItem}{foreach from=$lineItem item=value key=priceset}\n\n{if $value neq \'skip\'}\n{if $isPrimary}\n{if $lineItem|@count GT 1} {* Header for multi participant registration cases. *}\n{ts 1=$priceset+1}Participant %1{/ts}\n{/if}\n{/if}\n---------------------------------------------------------{if $pricesetFieldsCount }--------------------{/if}\n\n{capture assign=ts_item}{ts}Item{/ts}{/capture}\n{capture assign=ts_qty}{ts}Qty{/ts}{/capture}\n{capture assign=ts_each}{ts}Each{/ts}{/capture}\n{capture assign=ts_total}{ts}Total{/ts}{/capture}\n{capture assign=ts_participant_total}{if $pricesetFieldsCount }{ts}Total Participants{/ts}{/if}{/capture}\n{$ts_item|string_format:\"%-30s\"} {$ts_qty|string_format:\"%5s\"} {$ts_each|string_format:\"%10s\"} {$ts_total|string_format:\"%10s\"} {$ts_participant_total|string_format:\"%10s\"}\n----------------------------------------------------------{if $pricesetFieldsCount }--------------------{/if}\n\n{foreach from=$value item=line}\n{if $pricesetFieldsCount }{capture assign=ts_participant_count}{$line.participant_count}{/capture}{/if}\n{capture assign=ts_item}{if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description} {$line.description}{/if}{/capture}{$ts_item|truncate:30:\"...\"|string_format:\"%-30s\"} {$line.qty|string_format:\"%5s\"} {$line.unit_price|crmMoney|string_format:\"%10s\"} {$line.line_total|crmMoney|string_format:\"%10s\"} {$ts_participant_count|string_format:\"%10s\"}\n{/foreach}\n{/if}\n{/foreach}\n{/if}\n{if $amount && !$lineItem}\n{foreach from=$amount item=amnt key=level}{$amnt.amount|crmMoney} {$amnt.label}\n{/foreach}\n{/if}\n{if $isPrimary }\n\n{ts}Total Amount{/ts}: {$totalAmount|crmMoney} {if $hookDiscount.message}({$hookDiscount.message}){/if}\n\n{if $pricesetFieldsCount }\n {assign var=\"count\" value= 0}\n {foreach from=$lineItem item=pcount}\n {assign var=\"lineItemCount\" value=0}\n {if $pcount neq \'skip\'}\n {foreach from=$pcount item=p_count}\n {assign var=\"lineItemCount\" value=$lineItemCount+$p_count.participant_count}\n {/foreach}\n {if $lineItemCount < 1 }\n {assign var=\"lineItemCount\" value=1}\n {/if}\n {assign var=\"count\" value=$count+$lineItemCount}\n {/if}\n {/foreach}\n\n{ts}Total Participants{/ts}: {$count}\n{/if}\n\n{if $is_pay_later }\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$pay_later_receipt}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{/if}\n\n{if $register_date}\n{ts}Registration Date{/ts}: {$register_date|crmDate}\n{/if}\n{if $receive_date}\n{ts}Transaction Date{/ts}: {$receive_date|crmDate}\n{/if}\n{if $contributionTypeName}\n{ts}Financial Type{/ts}: {$contributionTypeName}\n{/if}\n{if $trxn_id}\n{ts}Transaction #{/ts}: {$trxn_id}\n{/if}\n{if $paidBy}\n{ts}Paid By{/ts}: {$paidBy}\n{/if}\n{if $checkNumber}\n{ts}Check Number{/ts}: {$checkNumber}\n{/if}\n{if $contributeMode ne \'notify\' and !$isAmountzero and !$is_pay_later and !$isOnWaitlist and !$isRequireApproval}\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{ts}Billing Name and Address{/ts}\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$billingName}\n{$address}\n{/if}\n\n{if $contributeMode eq \'direct\' and !$isAmountzero and !$is_pay_later and !$isOnWaitlist and !$isRequireApproval}\n===========================================================\n{ts}Credit Card Information{/ts}\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$credit_card_type}\n{$credit_card_number}\n{ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n{/if}\n{/if}\n{/if} {* End of conditional section for Paid events *}\n\n{if $customPre}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$customPre_grouptitle}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{foreach from=$customPre item=value key=customName}\n{if ( $trackingFields and ! in_array( $customName, $trackingFields ) ) or ! $trackingFields}\n{$customName}: {$value}\n{/if}\n{/foreach}\n{/if}\n\n{if $customPost}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$customPost_grouptitle}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{foreach from=$customPost item=value key=customName}\n{if ( $trackingFields and ! in_array( $customName, $trackingFields ) ) or ! $trackingFields}\n{$customName}: {$value}\n{/if}\n{/foreach}\n{/if}\n{if $customProfile}\n\n{foreach from=$customProfile item=value key=customName}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{ts 1=$customName+1}Participant Information - Participant %1{/ts}\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{foreach from=$value item=val key=field}\n{if $field eq \'additionalCustomPre\' or $field eq \'additionalCustomPost\' }\n{if $field eq \'additionalCustomPre\' }\n----------------------------------------------------------{if $pricesetFieldsCount }--------------------{/if}\n\n{$additionalCustomPre_grouptitle}\n----------------------------------------------------------{if $pricesetFieldsCount }--------------------{/if}\n\n{else}\n----------------------------------------------------------{if $pricesetFieldsCount }--------------------{/if}\n\n{$additionalCustomPost_grouptitle}\n----------------------------------------------------------{if $pricesetFieldsCount }--------------------{/if}\n\n{/if}\n{foreach from=$val item=v key=f}\n{$f}: {$v}\n{/foreach}\n{/if}\n{/foreach}\n{/foreach}\n{/if}\n{if $customGroup}\n{foreach from=$customGroup item=value key=customName}\n=========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$customName}\n=========================================================={if $pricesetFieldsCount }===================={/if}\n\n{foreach from=$value item=v key=n}\n{$n}: {$v}\n{/foreach}\n{/foreach}\n{/if}\n\n\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n \n \n \n\n
\n\n {if $event.confirm_email_text AND (not $isOnWaitlist AND not $isRequireApproval)}\n

{$event.confirm_email_text|htmlize}

\n {/if}\n\n {if $isOnWaitlist}\n

{ts}You have been added to the WAIT LIST for this event.{/ts}

\n {if $isPrimary}\n

{ts}If space becomes available you will receive an email with\na link to a web page where you can complete your registration.{/ts}

\n {/if}\n {elseif $isRequireApproval}\n

{ts}Your registration has been submitted.{/ts}

\n {if $isPrimary}\n

{ts}Once your registration has been reviewed, you will receive\nan email with a link to a web page where you can complete the\nregistration process.{/ts}

\n {/if}\n {elseif $is_pay_later}\n

{$pay_later_receipt}

{* FIXME: this might be text rather than HTML *}\n {else}\n

{ts}Please print this confirmation for your records.{/ts}

\n {/if}\n\n
\n \n \n \n \n \n \n \n\n {if $event.participant_role neq \'Attendee\' and $defaultRole}\n \n \n \n \n {/if}\n\n {if $isShowLocation}\n \n \n \n {/if}\n\n {if $location.phone.1.phone || $location.email.1.email}\n \n \n \n {foreach from=$location.phone item=phone}\n {if $phone.phone}\n \n \n \n \n {/if}\n {/foreach}\n {foreach from=$location.email item=eventEmail}\n {if $eventEmail.email}\n \n \n \n \n {/if}\n {/foreach}\n {/if}\n \n \n \n {if $email}\n \n \n \n \n \n \n {/if}\n\n\n {if $event.is_monetary}\n\n \n \n \n\n {if $lineItem}\n {foreach from=$lineItem item=value key=priceset}\n {if $value neq \'skip\'}\n {if $isPrimary}\n {if $lineItem|@count GT 1} {* Header for multi participant registration cases. *}\n \n \n \n {/if}\n {/if}\n \n \n \n {/if}\n {/foreach}\n {/if}\n\n {if $amount && !$lineItem}\n {foreach from=$amount item=amnt key=level}\n \n \n \n {/foreach}\n {/if}\n {if $isPrimary}\n \n \n \n \n {if $pricesetFieldsCount }\n \n \n \n \n {/if}\n {if $is_pay_later}\n \n \n \n {/if}\n\n {if $register_date}\n \n \n \n \n {/if}\n\n {if $receive_date}\n \n \n \n \n {/if}\n\n {if $contributionTypeName}\n \n \n \n \n {/if}\n\n {if $trxn_id}\n \n \n \n \n {/if}\n\n {if $paidBy}\n \n \n \n \n {/if}\n\n {if $checkNumber}\n \n \n \n \n {/if}\n\n {if $contributeMode ne \'notify\' and !$isAmountzero and !$is_pay_later and !$isOnWaitlist and !$isRequireApproval}\n \n \n \n \n \n \n {/if}\n\n {if $contributeMode eq \'direct\' and !$isAmountzero and !$is_pay_later and !$isOnWaitlist and !$isRequireApproval}\n \n \n \n \n \n \n {/if}\n\n {/if}\n\n {/if} {* End of conditional section for Paid events *}\n\n {if $customPre}\n \n \n \n {foreach from=$customPre item=value key=customName}\n {if ( $trackingFields and ! in_array( $customName, $trackingFields ) ) or ! $trackingFields}\n \n \n \n \n {/if}\n {/foreach}\n {/if}\n\n {if $customPost}\n \n \n \n {foreach from=$customPost item=value key=customName}\n {if ( $trackingFields and ! in_array( $customName, $trackingFields ) ) or ! $trackingFields}\n \n \n \n \n {/if}\n {/foreach}\n {/if}\n\n {if $customProfile}\n {foreach from=$customProfile item=value key=customName}\n \n \n \n {foreach from=$value item=val key=field}\n {if $field eq \'additionalCustomPre\' or $field eq \'additionalCustomPost\'}\n \n \n \n {foreach from=$val item=v key=f}\n \n \n \n \n {/foreach}\n {/if}\n {/foreach}\n {/foreach}\n {/if}\n\n {if $customGroup}\n {foreach from=$customGroup item=value key=customName}\n \n \n \n {foreach from=$value item=v key=n}\n \n \n \n \n {/foreach}\n {/foreach}\n {/if}\n\n
\n {ts}Event Information and Location{/ts}\n
\n {$event.event_title}
\n {$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|date_format:\"%Y%m%d\" == $event.event_start_date|date_format:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|crmDate}{/if}{/if}\n
\n {ts}Participant Role{/ts}\n \n {$event.participant_role}\n
\n {if $location.address.1.name}\n {$location.address.1.name}
\n {/if}\n {if $location.address.1.street_address}\n {$location.address.1.street_address}
\n {/if}\n {if $location.address.1.supplemental_address_1}\n {$location.address.1.supplemental_address_1}
\n {/if}\n {if $location.address.1.supplemental_address_2}\n {$location.address.1.supplemental_address_2}
\n {/if}\n {if $location.address.1.city}\n {$location.address.1.city} {$location.address.1.postal_code}{if $location.address.1.postal_code_suffix} - {$location.address.1.postal_code_suffix}{/if}
\n {/if}\n
\n {ts}Event Contacts:{/ts}\n
\n {if $phone.phone_type}\n {$phone.phone_type_display}\n {else}\n {ts}Phone{/ts}\n {/if}\n \n {$phone.phone} {if $phone.phone_ext} {ts}ext.{/ts} {$phone.phone_ext}{/if}\n
\n {ts}Email{/ts}\n \n {$eventEmail.email}\n
\n {capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n {ts}Download iCalendar File{/ts}\n
\n {ts}Registered Email{/ts}\n
\n {$email}\n
\n {$event.fee_label}\n
\n {ts 1=$priceset+1}Participant %1{/ts}\n
\n {* FIXME: style this table so that it looks like the text version (justification, etc.) *}\n \n \n \n \n \n {if $pricesetFieldsCount }{/if}\n \n {foreach from=$value item=line}\n \n \n \n \n \n {if $pricesetFieldsCount }\n \n {/if}\n \n {/foreach}\n
{ts}Item{/ts}{ts}Qty{/ts}{ts}Each{/ts}{ts}Total{/ts}{ts}Total Participants{/ts}
\n {if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description}
{$line.description|truncate:30:\"...\"}
{/if}\n
\n {$line.qty}\n \n {$line.unit_price|crmMoney}\n \n {$line.line_total|crmMoney}\n \n {$line.participant_count}\n
\n
\n {$amnt.amount|crmMoney} {$amnt.label}\n
\n {ts}Total Amount{/ts}\n \n {$totalAmount|crmMoney} {if $hookDiscount.message}({$hookDiscount.message}){/if}\n
\n {ts}Total Participants{/ts}\n {assign var=\"count\" value= 0}\n {foreach from=$lineItem item=pcount}\n {assign var=\"lineItemCount\" value=0}\n {if $pcount neq \'skip\'}\n {foreach from=$pcount item=p_count}\n {assign var=\"lineItemCount\" value=$lineItemCount+$p_count.participant_count}\n {/foreach}\n {if $lineItemCount < 1 }\n assign var=\"lineItemCount\" value=1}\n {/if}\n {assign var=\"count\" value=$count+$lineItemCount}\n {/if}\n {/foreach}\n {$count}\n
\n {$pay_later_receipt}\n
\n {ts}Registration Date{/ts}\n \n {$register_date|crmDate}\n
\n {ts}Transaction Date{/ts}\n \n {$receive_date|crmDate}\n
\n {ts}Financial Type{/ts}\n \n {$contributionTypeName}\n
\n {ts}Transaction #{/ts}\n \n {$trxn_id}\n
\n {ts}Paid By{/ts}\n \n {$paidBy}\n
\n {ts}Check Number{/ts}\n \n {$checkNumber}\n
\n {ts}Billing Name and Address{/ts}\n
\n {$billingName}
\n {$address|nl2br}\n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}
\n {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n
\n {$customPre_grouptitle}\n
\n {$customName}\n \n {$value}\n
\n {$customPost_grouptitle}\n
\n {$customName}\n \n {$value}\n
\n {ts 1=$customName+1}Participant Information - Participant %1{/ts}\n
\n {if $field eq \'additionalCustomPre\'}\n {$additionalCustomPre_grouptitle}\n {else}\n {$additionalCustomPost_grouptitle}\n {/if}\n
\n {$f}\n \n {$v}\n
\n {$customName}\n
\n {$n}\n \n {$v}\n
\n
\n
\n\n\n\n',1,718,1,0,NULL),(24,'Events - Registration Confirmation and Receipt (off-line)','{ts}Event Confirmation{/ts} - {$event.title}\n','{if $event.confirm_email_text AND (not $isOnWaitlist AND not $isRequireApproval)}\n{$event.confirm_email_text}\n{/if}\n\n{if $isOnWaitlist}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{ts}You have been added to the WAIT LIST for this event.{/ts}\n\n{if $isPrimary}\n{ts}If space becomes available you will receive an email with\na link to a web page where you can complete your registration.{/ts}\n\n{/if}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{elseif $isRequireApproval}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{ts}Your registration has been submitted.{/ts}\n\n{if $isPrimary}\n{ts}Once your registration has been reviewed, you will receive\nan email with a link to a web page where you can complete the\nregistration process.{/ts}\n\n{/if}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{elseif $is_pay_later}\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$pay_later_receipt}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{else}\n\n{ts}Please print this confirmation for your records.{/ts}\n{/if}\n\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{ts}Event Information and Location{/ts}\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$event.event_title}\n{$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|date_format:\"%Y%m%d\" == $event.event_start_date|date_format:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|crmDate}{/if}{/if}\n\n{if $event.participant_role neq \'Attendee\' and $defaultRole}\n{ts}Participant Role{/ts}: {$event.participant_role}\n{/if}\n\n{if $isShowLocation}\n{if $location.address.1.name}\n\n{$location.address.1.name}\n{/if}\n{if $location.address.1.street_address}{$location.address.1.street_address}\n{/if}\n{if $location.address.1.supplemental_address_1}{$location.address.1.supplemental_address_1}\n{/if}\n{if $location.address.1.supplemental_address_2}{$location.address.1.supplemental_address_2}\n{/if}\n{if $location.address.1.city}{$location.address.1.city} {$location.address.1.postal_code}{if $location.address.1.postal_code_suffix} - {$location.address.1.postal_code_suffix}{/if}\n{/if}\n\n{/if}{*End of isShowLocation condition*}\n\n{if $location.phone.1.phone || $location.email.1.email}\n\n{ts}Event Contacts:{/ts}\n{foreach from=$location.phone item=phone}\n{if $phone.phone}\n\n{if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}: {$phone.phone}{/if} {if $phone.phone_ext} {ts}ext.{/ts} {$phone.phone_ext}{/if}\n{/foreach}\n{foreach from=$location.email item=eventEmail}\n{if $eventEmail.email}\n\n{ts}Email{/ts}: {$eventEmail.email}{/if}{/foreach}\n{/if}\n\n{capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n{ts}Download iCalendar File:{/ts} {$icalFeed}\n{if $email}\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{ts}Registered Email{/ts}\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$email}\n{/if}\n{if $event.is_monetary} {* This section for Paid events only.*}\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$event.fee_label}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{if $lineItem}{foreach from=$lineItem item=value key=priceset}\n\n{if $value neq \'skip\'}\n{if $isPrimary}\n{if $lineItem|@count GT 1} {* Header for multi participant registration cases. *}\n{ts 1=$priceset+1}Participant %1{/ts}\n{/if}\n{/if}\n---------------------------------------------------------{if $pricesetFieldsCount }--------------------{/if}\n\n{capture assign=ts_item}{ts}Item{/ts}{/capture}\n{capture assign=ts_qty}{ts}Qty{/ts}{/capture}\n{capture assign=ts_each}{ts}Each{/ts}{/capture}\n{capture assign=ts_total}{ts}Total{/ts}{/capture}\n{capture assign=ts_participant_total}{if $pricesetFieldsCount }{ts}Total Participants{/ts}{/if}{/capture}\n{$ts_item|string_format:\"%-30s\"} {$ts_qty|string_format:\"%5s\"} {$ts_each|string_format:\"%10s\"} {$ts_total|string_format:\"%10s\"} {$ts_participant_total|string_format:\"%10s\"}\n----------------------------------------------------------{if $pricesetFieldsCount }--------------------{/if}\n\n{foreach from=$value item=line}\n{if $pricesetFieldsCount }{capture assign=ts_participant_count}{$line.participant_count}{/capture}{/if}\n{capture assign=ts_item}{if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description} {$line.description}{/if}{/capture}{$ts_item|truncate:30:\"...\"|string_format:\"%-30s\"} {$line.qty|string_format:\"%5s\"} {$line.unit_price|crmMoney|string_format:\"%10s\"} {$line.line_total|crmMoney|string_format:\"%10s\"} {$ts_participant_count|string_format:\"%10s\"}\n{/foreach}\n{/if}\n{/foreach}\n{/if}\n{if $amount && !$lineItem}\n{foreach from=$amount item=amnt key=level}{$amnt.amount|crmMoney} {$amnt.label}\n{/foreach}\n{/if}\n{if $isPrimary }\n\n{ts}Total Amount{/ts}: {$totalAmount|crmMoney} {if $hookDiscount.message}({$hookDiscount.message}){/if}\n\n{if $pricesetFieldsCount }\n {assign var=\"count\" value= 0}\n {foreach from=$lineItem item=pcount}\n {assign var=\"lineItemCount\" value=0}\n {if $pcount neq \'skip\'}\n {foreach from=$pcount item=p_count}\n {assign var=\"lineItemCount\" value=$lineItemCount+$p_count.participant_count}\n {/foreach}\n {if $lineItemCount < 1 }\n {assign var=\"lineItemCount\" value=1}\n {/if}\n {assign var=\"count\" value=$count+$lineItemCount}\n {/if}\n {/foreach}\n\n{ts}Total Participants{/ts}: {$count}\n{/if}\n\n{if $is_pay_later }\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$pay_later_receipt}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{/if}\n\n{if $register_date}\n{ts}Registration Date{/ts}: {$register_date|crmDate}\n{/if}\n{if $receive_date}\n{ts}Transaction Date{/ts}: {$receive_date|crmDate}\n{/if}\n{if $contributionTypeName}\n{ts}Financial Type{/ts}: {$contributionTypeName}\n{/if}\n{if $trxn_id}\n{ts}Transaction #{/ts}: {$trxn_id}\n{/if}\n{if $paidBy}\n{ts}Paid By{/ts}: {$paidBy}\n{/if}\n{if $checkNumber}\n{ts}Check Number{/ts}: {$checkNumber}\n{/if}\n{if $contributeMode ne \'notify\' and !$isAmountzero and !$is_pay_later and !$isOnWaitlist and !$isRequireApproval}\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{ts}Billing Name and Address{/ts}\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$billingName}\n{$address}\n{/if}\n\n{if $contributeMode eq \'direct\' and !$isAmountzero and !$is_pay_later and !$isOnWaitlist and !$isRequireApproval}\n===========================================================\n{ts}Credit Card Information{/ts}\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$credit_card_type}\n{$credit_card_number}\n{ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n{/if}\n{/if}\n{/if} {* End of conditional section for Paid events *}\n\n{if $customPre}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$customPre_grouptitle}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{foreach from=$customPre item=value key=customName}\n{if ( $trackingFields and ! in_array( $customName, $trackingFields ) ) or ! $trackingFields}\n{$customName}: {$value}\n{/if}\n{/foreach}\n{/if}\n\n{if $customPost}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$customPost_grouptitle}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{foreach from=$customPost item=value key=customName}\n{if ( $trackingFields and ! in_array( $customName, $trackingFields ) ) or ! $trackingFields}\n{$customName}: {$value}\n{/if}\n{/foreach}\n{/if}\n{if $customProfile}\n\n{foreach from=$customProfile item=value key=customName}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{ts 1=$customName+1}Participant Information - Participant %1{/ts}\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{foreach from=$value item=val key=field}\n{if $field eq \'additionalCustomPre\' or $field eq \'additionalCustomPost\' }\n{if $field eq \'additionalCustomPre\' }\n----------------------------------------------------------{if $pricesetFieldsCount }--------------------{/if}\n\n{$additionalCustomPre_grouptitle}\n----------------------------------------------------------{if $pricesetFieldsCount }--------------------{/if}\n\n{else}\n----------------------------------------------------------{if $pricesetFieldsCount }--------------------{/if}\n\n{$additionalCustomPost_grouptitle}\n----------------------------------------------------------{if $pricesetFieldsCount }--------------------{/if}\n\n{/if}\n{foreach from=$val item=v key=f}\n{$f}: {$v}\n{/foreach}\n{/if}\n{/foreach}\n{/foreach}\n{/if}\n{if $customGroup}\n{foreach from=$customGroup item=value key=customName}\n=========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$customName}\n=========================================================={if $pricesetFieldsCount }===================={/if}\n\n{foreach from=$value item=v key=n}\n{$n}: {$v}\n{/foreach}\n{/foreach}\n{/if}\n\n\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n \n \n \n\n
\n\n {if $event.confirm_email_text AND (not $isOnWaitlist AND not $isRequireApproval)}\n

{$event.confirm_email_text|htmlize}

\n {/if}\n\n {if $isOnWaitlist}\n

{ts}You have been added to the WAIT LIST for this event.{/ts}

\n {if $isPrimary}\n

{ts}If space becomes available you will receive an email with\na link to a web page where you can complete your registration.{/ts}

\n {/if}\n {elseif $isRequireApproval}\n

{ts}Your registration has been submitted.{/ts}

\n {if $isPrimary}\n

{ts}Once your registration has been reviewed, you will receive\nan email with a link to a web page where you can complete the\nregistration process.{/ts}

\n {/if}\n {elseif $is_pay_later}\n

{$pay_later_receipt}

{* FIXME: this might be text rather than HTML *}\n {else}\n

{ts}Please print this confirmation for your records.{/ts}

\n {/if}\n\n
\n \n \n \n \n \n \n \n\n {if $event.participant_role neq \'Attendee\' and $defaultRole}\n \n \n \n \n {/if}\n\n {if $isShowLocation}\n \n \n \n {/if}\n\n {if $location.phone.1.phone || $location.email.1.email}\n \n \n \n {foreach from=$location.phone item=phone}\n {if $phone.phone}\n \n \n \n \n {/if}\n {/foreach}\n {foreach from=$location.email item=eventEmail}\n {if $eventEmail.email}\n \n \n \n \n {/if}\n {/foreach}\n {/if}\n \n \n \n {if $email}\n \n \n \n \n \n \n {/if}\n\n\n {if $event.is_monetary}\n\n \n \n \n\n {if $lineItem}\n {foreach from=$lineItem item=value key=priceset}\n {if $value neq \'skip\'}\n {if $isPrimary}\n {if $lineItem|@count GT 1} {* Header for multi participant registration cases. *}\n \n \n \n {/if}\n {/if}\n \n \n \n {/if}\n {/foreach}\n {/if}\n\n {if $amount && !$lineItem}\n {foreach from=$amount item=amnt key=level}\n \n \n \n {/foreach}\n {/if}\n {if $isPrimary}\n \n \n \n \n {if $pricesetFieldsCount }\n \n \n \n \n {/if}\n {if $is_pay_later}\n \n \n \n {/if}\n\n {if $register_date}\n \n \n \n \n {/if}\n\n {if $receive_date}\n \n \n \n \n {/if}\n\n {if $contributionTypeName}\n \n \n \n \n {/if}\n\n {if $trxn_id}\n \n \n \n \n {/if}\n\n {if $paidBy}\n \n \n \n \n {/if}\n\n {if $checkNumber}\n \n \n \n \n {/if}\n\n {if $contributeMode ne \'notify\' and !$isAmountzero and !$is_pay_later and !$isOnWaitlist and !$isRequireApproval}\n \n \n \n \n \n \n {/if}\n\n {if $contributeMode eq \'direct\' and !$isAmountzero and !$is_pay_later and !$isOnWaitlist and !$isRequireApproval}\n \n \n \n \n \n \n {/if}\n\n {/if}\n\n {/if} {* End of conditional section for Paid events *}\n\n {if $customPre}\n \n \n \n {foreach from=$customPre item=value key=customName}\n {if ( $trackingFields and ! in_array( $customName, $trackingFields ) ) or ! $trackingFields}\n \n \n \n \n {/if}\n {/foreach}\n {/if}\n\n {if $customPost}\n \n \n \n {foreach from=$customPost item=value key=customName}\n {if ( $trackingFields and ! in_array( $customName, $trackingFields ) ) or ! $trackingFields}\n \n \n \n \n {/if}\n {/foreach}\n {/if}\n\n {if $customProfile}\n {foreach from=$customProfile item=value key=customName}\n \n \n \n {foreach from=$value item=val key=field}\n {if $field eq \'additionalCustomPre\' or $field eq \'additionalCustomPost\'}\n \n \n \n {foreach from=$val item=v key=f}\n \n \n \n \n {/foreach}\n {/if}\n {/foreach}\n {/foreach}\n {/if}\n\n {if $customGroup}\n {foreach from=$customGroup item=value key=customName}\n \n \n \n {foreach from=$value item=v key=n}\n \n \n \n \n {/foreach}\n {/foreach}\n {/if}\n\n
\n {ts}Event Information and Location{/ts}\n
\n {$event.event_title}
\n {$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|date_format:\"%Y%m%d\" == $event.event_start_date|date_format:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|crmDate}{/if}{/if}\n
\n {ts}Participant Role{/ts}\n \n {$event.participant_role}\n
\n {if $location.address.1.name}\n {$location.address.1.name}
\n {/if}\n {if $location.address.1.street_address}\n {$location.address.1.street_address}
\n {/if}\n {if $location.address.1.supplemental_address_1}\n {$location.address.1.supplemental_address_1}
\n {/if}\n {if $location.address.1.supplemental_address_2}\n {$location.address.1.supplemental_address_2}
\n {/if}\n {if $location.address.1.city}\n {$location.address.1.city} {$location.address.1.postal_code}{if $location.address.1.postal_code_suffix} - {$location.address.1.postal_code_suffix}{/if}
\n {/if}\n
\n {ts}Event Contacts:{/ts}\n
\n {if $phone.phone_type}\n {$phone.phone_type_display}\n {else}\n {ts}Phone{/ts}\n {/if}\n \n {$phone.phone} {if $phone.phone_ext} {ts}ext.{/ts} {$phone.phone_ext}{/if}\n
\n {ts}Email{/ts}\n \n {$eventEmail.email}\n
\n {capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n {ts}Download iCalendar File{/ts}\n
\n {ts}Registered Email{/ts}\n
\n {$email}\n
\n {$event.fee_label}\n
\n {ts 1=$priceset+1}Participant %1{/ts}\n
\n {* FIXME: style this table so that it looks like the text version (justification, etc.) *}\n \n \n \n \n \n {if $pricesetFieldsCount }{/if}\n \n {foreach from=$value item=line}\n \n \n \n \n \n {if $pricesetFieldsCount }\n \n {/if}\n \n {/foreach}\n
{ts}Item{/ts}{ts}Qty{/ts}{ts}Each{/ts}{ts}Total{/ts}{ts}Total Participants{/ts}
\n {if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description}
{$line.description|truncate:30:\"...\"}
{/if}\n
\n {$line.qty}\n \n {$line.unit_price|crmMoney}\n \n {$line.line_total|crmMoney}\n \n {$line.participant_count}\n
\n
\n {$amnt.amount|crmMoney} {$amnt.label}\n
\n {ts}Total Amount{/ts}\n \n {$totalAmount|crmMoney} {if $hookDiscount.message}({$hookDiscount.message}){/if}\n
\n {ts}Total Participants{/ts}\n {assign var=\"count\" value= 0}\n {foreach from=$lineItem item=pcount}\n {assign var=\"lineItemCount\" value=0}\n {if $pcount neq \'skip\'}\n {foreach from=$pcount item=p_count}\n {assign var=\"lineItemCount\" value=$lineItemCount+$p_count.participant_count}\n {/foreach}\n {if $lineItemCount < 1 }\n assign var=\"lineItemCount\" value=1}\n {/if}\n {assign var=\"count\" value=$count+$lineItemCount}\n {/if}\n {/foreach}\n {$count}\n
\n {$pay_later_receipt}\n
\n {ts}Registration Date{/ts}\n \n {$register_date|crmDate}\n
\n {ts}Transaction Date{/ts}\n \n {$receive_date|crmDate}\n
\n {ts}Financial Type{/ts}\n \n {$contributionTypeName}\n
\n {ts}Transaction #{/ts}\n \n {$trxn_id}\n
\n {ts}Paid By{/ts}\n \n {$paidBy}\n
\n {ts}Check Number{/ts}\n \n {$checkNumber}\n
\n {ts}Billing Name and Address{/ts}\n
\n {$billingName}
\n {$address|nl2br}\n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}
\n {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n
\n {$customPre_grouptitle}\n
\n {$customName}\n \n {$value}\n
\n {$customPost_grouptitle}\n
\n {$customName}\n \n {$value}\n
\n {ts 1=$customName+1}Participant Information - Participant %1{/ts}\n
\n {if $field eq \'additionalCustomPre\'}\n {$additionalCustomPre_grouptitle}\n {else}\n {$additionalCustomPost_grouptitle}\n {/if}\n
\n {$f}\n \n {$v}\n
\n {$customName}\n
\n {$n}\n \n {$v}\n
\n
\n
\n\n\n\n',1,718,0,1,NULL),(25,'Events - Registration Confirmation and Receipt (on-line)','{if $isOnWaitlist}{ts}Wait List Confirmation{/ts}{else}{ts}Registration Confirmation{/ts}{/if} - {$event.event_title}','Dear {contact.display_name},\n\n{if $event.confirm_email_text AND (not $isOnWaitlist AND not $isRequireApproval)}\n{$event.confirm_email_text}\n\n{else}\nThank you for your participation. This letter is a confirmation that your registration has been received and your status has been updated to {if $participant_status}{$participant_status}{else}{if $isOnWaitlist}waitlisted{else}registered{/if}{/if}.\n\n{/if}\n\n{if $isOnWaitlist}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{ts}You have been added to the WAIT LIST for this event.{/ts}\n\n{if $isPrimary}\n{ts}If space becomes available you will receive an email with\na link to a web page where you can complete your registration.{/ts}\n{/if}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{elseif $isRequireApproval}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{ts}Your registration has been submitted.{/ts}\n\n{if $isPrimary}\n{ts}Once your registration has been reviewed, you will receive\nan email with a link to a web page where you can complete the\nregistration process.{/ts}\n\n{/if}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{elseif $is_pay_later && !$isAmountzero && !$isAdditionalParticipant}\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$pay_later_receipt}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{else}\n\n{ts}Please print this confirmation for your records.{/ts}\n{/if}\n\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{ts}Event Information and Location{/ts}\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$event.event_title}\n{$event.event_start_date|date_format:\"%A\"} {$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|date_format:\"%Y%m%d\" == $event.event_start_date|date_format:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|date_format:\"%A\"} {$event.event_end_date|crmDate}{/if}{/if}\n{if $conference_sessions}\n\n\n{ts}Your schedule:{/ts}\n{assign var=\'group_by_day\' value=\'NA\'}\n{foreach from=$conference_sessions item=session}\n{if $session.start_date|date_format:\"%Y/%m/%d\" != $group_by_day|date_format:\"%Y/%m/%d\"}\n{assign var=\'group_by_day\' value=$session.start_date}\n\n{$group_by_day|date_format:\"%m/%d/%Y\"}\n\n\n{/if}\n{$session.start_date|crmDate:0:1}{if $session.end_date}-{$session.end_date|crmDate:0:1}{/if} {$session.title}\n{if $session.location} {$session.location}{/if}\n{/foreach}\n{/if}\n\n{if $event.participant_role neq \'Attendee\' and $defaultRole}\n{ts}Participant Role{/ts}: {$event.participant_role}\n{/if}\n\n{if $isShowLocation}\n{if $location.address.1.name}\n\n{$location.address.1.name}\n{/if}\n{if $location.address.1.street_address}{$location.address.1.street_address}\n{/if}\n{if $location.address.1.supplemental_address_1}{$location.address.1.supplemental_address_1}\n{/if}\n{if $location.address.1.supplemental_address_2}{$location.address.1.supplemental_address_2}\n{/if}\n{if $location.address.1.city}{$location.address.1.city}, {$location.address.1.state_province} {$location.address.1.postal_code}{if $location.address.1.postal_code_suffix} - {$location.address.1.postal_code_suffix}{/if}\n{/if}\n\n{/if}{*End of isShowLocation condition*}\n\n{if $location.phone.1.phone || $location.email.1.email}\n\n{ts}Event Contacts:{/ts}\n{foreach from=$location.phone item=phone}\n{if $phone.phone}\n\n{if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}: {$phone.phone}{/if} {if $phone.phone_ext} {ts}ext.{/ts} {$phone.phone_ext}{/if}\n{/foreach}\n{foreach from=$location.email item=eventEmail}\n{if $eventEmail.email}\n\n{ts}Email{/ts}: {$eventEmail.email}{/if}{/foreach}\n{/if}\n\n{capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n{ts}Download iCalendar File:{/ts} {$icalFeed}\n\n{if $payer.name}\nYou were registered by: {$payer.name}\n{/if}\n{if $event.is_monetary} {* This section for Paid events only.*}\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$event.fee_label}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{if $lineItem}{foreach from=$lineItem item=value key=priceset}\n\n{if $value neq \'skip\'}\n{if $isPrimary}\n{if $lineItem|@count GT 1} {* Header for multi participant registration cases. *}\n{ts 1=$priceset+1}Participant %1{/ts} {$part.$priceset.info}\n\n{/if}\n{/if}\n-----------------------------------------------------------{if $pricesetFieldsCount }--------------------{/if}\n\n{capture assign=ts_item}{ts}Item{/ts}{/capture}\n{capture assign=ts_qty}{ts}Qty{/ts}{/capture}\n{capture assign=ts_each}{ts}Each{/ts}{/capture}\n{capture assign=ts_total}{ts}Total{/ts}{/capture}\n{if $pricesetFieldsCount }{capture assign=ts_participant_total}{ts}Total Participants{/ts}{/capture}{/if}\n{$ts_item|string_format:\"%-30s\"} {$ts_qty|string_format:\"%5s\"} {$ts_each|string_format:\"%10s\"} {$ts_total|string_format:\"%10s\"} {$ts_participant_total|string_format:\"%10s\"}\n-----------------------------------------------------------{if $pricesetFieldsCount }--------------------{/if}\n\n{foreach from=$value item=line}\n{if $pricesetFieldsCount }{capture assign=ts_participant_count}{$line.participant_count}{/capture}{/if}\n{capture assign=ts_item}{if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description} {$line.description}{/if}{/capture}{$ts_item|truncate:30:\"...\"|string_format:\"%-30s\"} {$line.qty|string_format:\"%5s\"} {$line.unit_price|crmMoney:$currency|string_format:\"%10s\"} {$line.line_total|crmMoney:$currency|string_format:\"%10s\"}{$ts_participant_count|string_format:\"%10s\"}\n{/foreach}\n{/if}\n{/foreach}\n{/if}\n{if $amounts && !$lineItem}\n{foreach from=$amounts item=amnt key=level}{$amnt.amount|crmMoney:$currency} {$amnt.label}\n{/foreach}\n{/if}\n{if $isPrimary }\n\n{ts}Total Amount{/ts}: {$totalAmount|crmMoney:$currency} {if $hookDiscount.message}({$hookDiscount.message}){/if}\n\n{if $pricesetFieldsCount }\n {assign var=\"count\" value= 0}\n {foreach from=$lineItem item=pcount}\n {assign var=\"lineItemCount\" value=0}\n {if $pcount neq \'skip\'}\n {foreach from=$pcount item=p_count}\n {assign var=\"lineItemCount\" value=$lineItemCount+$p_count.participant_count}\n {/foreach}\n {if $lineItemCount < 1 }\n {assign var=\"lineItemCount\" value=1}\n {/if}\n {assign var=\"count\" value=$count+$lineItemCount}\n {/if}\n {/foreach}\n\n{ts}Total Participants{/ts}: {$count}\n{/if}\n\n{if $register_date}\n{ts}Registration Date{/ts}: {$register_date|crmDate}\n{/if}\n{if $receive_date}\n{ts}Transaction Date{/ts}: {$receive_date|crmDate}\n{/if}\n{if $contributionTypeName}\n{ts}Financial Type{/ts}: {$contributionTypeName}\n{/if}\n{if $trxn_id}\n{ts}Transaction #{/ts}: {$trxn_id}\n{/if}\n{if $paidBy}\n{ts}Paid By{/ts}: {$paidBy}\n{/if}\n{if $checkNumber}\n{ts}Check Number{/ts}: {$checkNumber}\n{/if}\n{if $contributeMode ne \'notify\' and !$isAmountzero and !$is_pay_later and !$isOnWaitlist and !$isRequireApproval}\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{ts}Billing Name and Address{/ts}\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$billingName}\n{$address}\n{/if}\n\n{if $contributeMode eq \'direct\' and !$isAmountzero and !$is_pay_later and !$isOnWaitlist and !$isRequireApproval}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{ts}Credit Card Information{/ts}\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$credit_card_type}\n{$credit_card_number}\n{ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n{/if}\n{/if}\n{/if} {* End of conditional section for Paid events *}\n\n{if $customPre}\n{foreach from=$customPre item=customPr key=i}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$customPre_grouptitle.$i}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{foreach from=$customPr item=customValue key=customName}\n{if ( $trackingFields and ! in_array( $customName, $trackingFields ) ) or ! $trackingFields}\n {$customName}: {$customValue}\n{/if}\n{/foreach}\n{/foreach}\n{/if}\n\n{if $customPost}\n{foreach from=$customPost item=customPos key=j}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$customPost_grouptitle.$j}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{foreach from=$customPos item=customValue key=customName}\n{if ( $trackingFields and ! in_array( $customName, $trackingFields ) ) or ! $trackingFields}\n {$customName}: {$customValue}\n{/if}\n{/foreach}\n{/foreach}\n{/if}\n{if $customProfile}\n\n{foreach from=$customProfile.profile item=eachParticipant key=participantID}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{ts 1=$participantID+2}Participant Information - Participant %1{/ts}\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{foreach from=$eachParticipant item=eachProfile key=pid}\n----------------------------------------------------------{if $pricesetFieldsCount }--------------------{/if}\n\n{$customProfile.title.$pid}\n----------------------------------------------------------{if $pricesetFieldsCount }--------------------{/if}\n\n{foreach from=$eachProfile item=val key=field}\n{foreach from=$val item=v key=f}\n{$field}: {$v}\n{/foreach}\n{/foreach}\n{/foreach}\n{/foreach}\n{/if}\n{if $customGroup}\n{foreach from=$customGroup item=value key=customName}\n=========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$customName}\n=========================================================={if $pricesetFieldsCount }===================={/if}\n\n{foreach from=$value item=v key=n}\n{$n}: {$v}\n{/foreach}\n{/foreach}\n{/if}\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n \n \n \n
\n

Dear {contact.display_name},

\n\n {if $event.confirm_email_text AND (not $isOnWaitlist AND not $isRequireApproval)}\n

{$event.confirm_email_text|htmlize}

\n\n {else}\n

Thank you for your participation. This letter is a confirmation that your registration has been received and your status has been updated to {if $participant_status}{$participant_status}{else}{if $isOnWaitlist}waitlisted{else}registered{/if}{/if}.

\n\n {/if}\n\n

\n {if $isOnWaitlist}\n

{ts}You have been added to the WAIT LIST for this event.{/ts}

\n {if $isPrimary}\n

{ts}If space becomes available you will receive an email with\na link to a web page where you can complete your registration.{/ts}

\n {/if}\n {elseif $isRequireApproval}\n

{ts}Your registration has been submitted.{/ts}

\n {if $isPrimary}\n

{ts}Once your registration has been reviewed, you will receive\nan email with a link to a web page where you can complete the\nregistration process.{/ts}

\n {/if}\n {elseif $is_pay_later && !$isAmountzero && !$isAdditionalParticipant}\n

{$pay_later_receipt}

{* FIXME: this might be text rather than HTML *}\n {else}\n

{ts}Please print this confirmation for your records.{/ts}

\n {/if}\n\n
\n \n \n \n \n \n \n \n\n\n {if $conference_sessions}\n \n \n \n \n \n \n {/if}\n\n {if $event.participant_role neq \'Attendee\' and $defaultRole}\n \n \n \n \n {/if}\n\n {if $isShowLocation}\n \n \n \n {/if}\n\n {if $location.phone.1.phone || $location.email.1.email}\n \n \n \n {foreach from=$location.phone item=phone}\n {if $phone.phone}\n \n \n \n \n {/if}\n {/foreach}\n {foreach from=$location.email item=eventEmail}\n {if $eventEmail.email}\n \n \n \n \n {/if}\n {/foreach}\n {/if}\n \n \n \n {if $event.is_share}\n \n \n \n {/if}\n {if $payer.name}\n \n \n \n \n \n \n {/if}\n {if $event.is_monetary}\n\n \n \n \n\n {if $lineItem}\n {foreach from=$lineItem item=value key=priceset}\n {if $value neq \'skip\'}\n {if $isPrimary}\n {if $lineItem|@count GT 1} {* Header for multi participant registration cases. *}\n \n \n \n {/if}\n {/if}\n \n \n \n {/if}\n {/foreach}\n {/if}\n\n {if $amounts && !$lineItem}\n {foreach from=$amounts item=amnt key=level}\n \n \n \n {/foreach}\n {/if}\n\n {if $isPrimary}\n \n \n \n \n {if $pricesetFieldsCount }\n \n \n \n {/if}\n\n {if $register_date}\n \n \n \n \n {/if}\n\n {if $receive_date}\n \n \n \n \n {/if}\n\n {if $contributionTypeName}\n \n \n \n \n {/if}\n\n {if $trxn_id}\n \n \n \n \n {/if}\n\n {if $paidBy}\n \n \n \n \n {/if}\n\n {if $checkNumber}\n \n \n \n \n {/if}\n\n {if $contributeMode ne \'notify\' and !$isAmountzero and !$is_pay_later and !$isOnWaitlist and !$isRequireApproval}\n \n \n \n \n \n \n {/if}\n\n {if $contributeMode eq \'direct\' and !$isAmountzero and !$is_pay_later and !$isOnWaitlist and !$isRequireApproval}\n \n \n \n \n \n \n {/if}\n\n {/if}\n\n {/if} {* End of conditional section for Paid events *}\n\n\n{if $customPre}\n{foreach from=$customPre item=customPr key=i}\n \n {foreach from=$customPr item=customValue key=customName}\n {if ( $trackingFields and ! in_array( $customName, $trackingFields ) ) or ! $trackingFields}\n \n \n \n \n {/if}\n {/foreach}\n{/foreach}\n{/if}\n\n{if $customPost}\n{foreach from=$customPost item=customPos key=j}\n \n {foreach from=$customPos item=customValue key=customName}\n {if ( $trackingFields and ! in_array( $customName, $trackingFields ) ) or ! $trackingFields}\n \n \n \n \n{/if}\n{/foreach}\n{/foreach}\n{/if}\n\n{if $customProfile}\n{foreach from=$customProfile.profile item=eachParticipant key=participantID}\n \n {foreach from=$eachParticipant item=eachProfile key=pid}\n \n {foreach from=$eachProfile item=val key=field}\n {foreach from=$val item=v key=f}\n \n \n {/foreach}\n \n {/foreach}\n{/foreach}\n{/foreach}\n{/if}\n\n {if $customGroup}\n {foreach from=$customGroup item=value key=customName}\n \n \n \n {foreach from=$value item=v key=n}\n \n \n \n \n {/foreach}\n {/foreach}\n {/if}\n\n
\n {ts}Event Information and Location{/ts}\n
\n {$event.event_title}
\n {$event.event_start_date|date_format:\"%A\"} {$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|date_format:\"%Y%m%d\" == $event.event_start_date|date_format:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|date_format:\"%A\"} {$event.event_end_date|crmDate}{/if}{/if}\n
\n {ts}Your schedule:{/ts}\n
\n {assign var=\'group_by_day\' value=\'NA\'}\n {foreach from=$conference_sessions item=session}\n {if $session.start_date|date_format:\"%Y/%m/%d\" != $group_by_day|date_format:\"%Y/%m/%d\"}\n {assign var=\'group_by_day\' value=$session.start_date}\n {$group_by_day|date_format:\"%m/%d/%Y\"}
\n {/if}\n {$session.start_date|crmDate:0:1}{if $session.end_date}-{$session.end_date|crmDate:0:1}{/if} {$session.title}
\n {if $session.location}    {$session.location}
{/if}\n {/foreach}\n
\n {ts}Participant Role{/ts}\n \n {$event.participant_role}\n
\n {if $location.address.1.name}\n {$location.address.1.name}
\n {/if}\n {if $location.address.1.street_address}\n {$location.address.1.street_address}
\n {/if}\n {if $location.address.1.supplemental_address_1}\n {$location.address.1.supplemental_address_1}
\n {/if}\n {if $location.address.1.supplemental_address_2}\n {$location.address.1.supplemental_address_2}
\n {/if}\n {if $location.address.1.city}\n {$location.address.1.city}, {$location.address.1.state_province} {$location.address.1.postal_code}{if $location.address.1.postal_code_suffix} - {$location.address.1.postal_code_suffix}{/if}
\n {/if}\n
\n {ts}Event Contacts:{/ts}\n
\n {if $phone.phone_type}\n {$phone.phone_type_display}\n {else}\n {ts}Phone{/ts}\n {/if}\n \n {$phone.phone} {if $phone.phone_ext} {ts}ext.{/ts} {$phone.phone_ext}{/if}\n
\n {ts}Email{/ts}\n \n {$eventEmail.email}\n
\n {capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n {ts}Download iCalendar File{/ts}\n
\n {capture assign=eventUrl}{crmURL p=\'civicrm/event/info\' q=\"id=`$event.id`&reset=1\" a=true fe=1 h=1}{/capture}\n {include file=\"CRM/common/SocialNetwork.tpl\" emailMode=true url=$eventUrl title=$event.title pageURL=$eventUrl}\n
\n {ts}You were registered by:{/ts}\n
\n {$payer.name}\n
\n {$event.fee_label}\n
\n {ts 1=$priceset+1}Participant %1{/ts} {$part.$priceset.info}\n
\n {* FIXME: style this table so that it looks like the text version (justification, etc.) *}\n \n \n \n \n \n {if $pricesetFieldsCount }{/if}\n \n {foreach from=$value item=line}\n \n \n \n \n \n {if $pricesetFieldsCount } {/if}\n \n {/foreach}\n
{ts}Item{/ts}{ts}Qty{/ts}{ts}Each{/ts}{ts}Total{/ts}{ts}Total Participants{/ts}
\n {if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description}
{$line.description|truncate:30:\"...\"}
{/if}\n
\n {$line.qty}\n \n {$line.unit_price|crmMoney:$currency}\n \n {$line.line_total|crmMoney:$currency}\n {$line.participant_count}
\n
\n {$amnt.amount|crmMoney:$currency} {$amnt.label}\n
\n {ts}Total Amount{/ts}\n \n {$totalAmount|crmMoney:$currency} {if $hookDiscount.message}({$hookDiscount.message}){/if}\n
\n {ts}Total Participants{/ts}\n {assign var=\"count\" value= 0}\n {foreach from=$lineItem item=pcount}\n {assign var=\"lineItemCount\" value=0}\n {if $pcount neq \'skip\'}\n {foreach from=$pcount item=p_count}\n {assign var=\"lineItemCount\" value=$lineItemCount+$p_count.participant_count}\n {/foreach}\n {if $lineItemCount < 1 }\n {assign var=\"lineItemCount\" value=1}\n {/if}\n {assign var=\"count\" value=$count+$lineItemCount}\n {/if}\n {/foreach}\n {$count}\n
\n {ts}Registration Date{/ts}\n \n {$register_date|crmDate}\n
\n {ts}Transaction Date{/ts}\n \n {$receive_date|crmDate}\n
\n {ts}Financial Type{/ts}\n \n {$contributionTypeName}\n
\n {ts}Transaction #{/ts}\n \n {$trxn_id}\n
\n {ts}Paid By{/ts}\n \n {$paidBy}\n
\n {ts}Check Number{/ts}\n \n {$checkNumber}\n
\n {ts}Billing Name and Address{/ts}\n
\n {$billingName}
\n {$address|nl2br}\n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}
\n {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n
{$customPre_grouptitle.$i}
{$customName}{$customValue}
{$customPost_grouptitle.$j}
{$customName}{$customValue}
{ts 1=$participantID+2}Participant %1{/ts}
{$customProfile.title.$pid}
{$field}{$v}
\n {$customName}\n
\n {$n}\n \n {$v}\n
\n
\n
\n\n\n\n',1,719,1,0,NULL),(26,'Events - Registration Confirmation and Receipt (on-line)','{if $isOnWaitlist}{ts}Wait List Confirmation{/ts}{else}{ts}Registration Confirmation{/ts}{/if} - {$event.event_title}','Dear {contact.display_name},\n\n{if $event.confirm_email_text AND (not $isOnWaitlist AND not $isRequireApproval)}\n{$event.confirm_email_text}\n\n{else}\nThank you for your participation. This letter is a confirmation that your registration has been received and your status has been updated to {if $participant_status}{$participant_status}{else}{if $isOnWaitlist}waitlisted{else}registered{/if}{/if}.\n\n{/if}\n\n{if $isOnWaitlist}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{ts}You have been added to the WAIT LIST for this event.{/ts}\n\n{if $isPrimary}\n{ts}If space becomes available you will receive an email with\na link to a web page where you can complete your registration.{/ts}\n{/if}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{elseif $isRequireApproval}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{ts}Your registration has been submitted.{/ts}\n\n{if $isPrimary}\n{ts}Once your registration has been reviewed, you will receive\nan email with a link to a web page where you can complete the\nregistration process.{/ts}\n\n{/if}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{elseif $is_pay_later && !$isAmountzero && !$isAdditionalParticipant}\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$pay_later_receipt}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{else}\n\n{ts}Please print this confirmation for your records.{/ts}\n{/if}\n\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{ts}Event Information and Location{/ts}\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$event.event_title}\n{$event.event_start_date|date_format:\"%A\"} {$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|date_format:\"%Y%m%d\" == $event.event_start_date|date_format:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|date_format:\"%A\"} {$event.event_end_date|crmDate}{/if}{/if}\n{if $conference_sessions}\n\n\n{ts}Your schedule:{/ts}\n{assign var=\'group_by_day\' value=\'NA\'}\n{foreach from=$conference_sessions item=session}\n{if $session.start_date|date_format:\"%Y/%m/%d\" != $group_by_day|date_format:\"%Y/%m/%d\"}\n{assign var=\'group_by_day\' value=$session.start_date}\n\n{$group_by_day|date_format:\"%m/%d/%Y\"}\n\n\n{/if}\n{$session.start_date|crmDate:0:1}{if $session.end_date}-{$session.end_date|crmDate:0:1}{/if} {$session.title}\n{if $session.location} {$session.location}{/if}\n{/foreach}\n{/if}\n\n{if $event.participant_role neq \'Attendee\' and $defaultRole}\n{ts}Participant Role{/ts}: {$event.participant_role}\n{/if}\n\n{if $isShowLocation}\n{if $location.address.1.name}\n\n{$location.address.1.name}\n{/if}\n{if $location.address.1.street_address}{$location.address.1.street_address}\n{/if}\n{if $location.address.1.supplemental_address_1}{$location.address.1.supplemental_address_1}\n{/if}\n{if $location.address.1.supplemental_address_2}{$location.address.1.supplemental_address_2}\n{/if}\n{if $location.address.1.city}{$location.address.1.city}, {$location.address.1.state_province} {$location.address.1.postal_code}{if $location.address.1.postal_code_suffix} - {$location.address.1.postal_code_suffix}{/if}\n{/if}\n\n{/if}{*End of isShowLocation condition*}\n\n{if $location.phone.1.phone || $location.email.1.email}\n\n{ts}Event Contacts:{/ts}\n{foreach from=$location.phone item=phone}\n{if $phone.phone}\n\n{if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}: {$phone.phone}{/if} {if $phone.phone_ext} {ts}ext.{/ts} {$phone.phone_ext}{/if}\n{/foreach}\n{foreach from=$location.email item=eventEmail}\n{if $eventEmail.email}\n\n{ts}Email{/ts}: {$eventEmail.email}{/if}{/foreach}\n{/if}\n\n{capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n{ts}Download iCalendar File:{/ts} {$icalFeed}\n\n{if $payer.name}\nYou were registered by: {$payer.name}\n{/if}\n{if $event.is_monetary} {* This section for Paid events only.*}\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$event.fee_label}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{if $lineItem}{foreach from=$lineItem item=value key=priceset}\n\n{if $value neq \'skip\'}\n{if $isPrimary}\n{if $lineItem|@count GT 1} {* Header for multi participant registration cases. *}\n{ts 1=$priceset+1}Participant %1{/ts} {$part.$priceset.info}\n\n{/if}\n{/if}\n-----------------------------------------------------------{if $pricesetFieldsCount }--------------------{/if}\n\n{capture assign=ts_item}{ts}Item{/ts}{/capture}\n{capture assign=ts_qty}{ts}Qty{/ts}{/capture}\n{capture assign=ts_each}{ts}Each{/ts}{/capture}\n{capture assign=ts_total}{ts}Total{/ts}{/capture}\n{if $pricesetFieldsCount }{capture assign=ts_participant_total}{ts}Total Participants{/ts}{/capture}{/if}\n{$ts_item|string_format:\"%-30s\"} {$ts_qty|string_format:\"%5s\"} {$ts_each|string_format:\"%10s\"} {$ts_total|string_format:\"%10s\"} {$ts_participant_total|string_format:\"%10s\"}\n-----------------------------------------------------------{if $pricesetFieldsCount }--------------------{/if}\n\n{foreach from=$value item=line}\n{if $pricesetFieldsCount }{capture assign=ts_participant_count}{$line.participant_count}{/capture}{/if}\n{capture assign=ts_item}{if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description} {$line.description}{/if}{/capture}{$ts_item|truncate:30:\"...\"|string_format:\"%-30s\"} {$line.qty|string_format:\"%5s\"} {$line.unit_price|crmMoney:$currency|string_format:\"%10s\"} {$line.line_total|crmMoney:$currency|string_format:\"%10s\"}{$ts_participant_count|string_format:\"%10s\"}\n{/foreach}\n{/if}\n{/foreach}\n{/if}\n{if $amounts && !$lineItem}\n{foreach from=$amounts item=amnt key=level}{$amnt.amount|crmMoney:$currency} {$amnt.label}\n{/foreach}\n{/if}\n{if $isPrimary }\n\n{ts}Total Amount{/ts}: {$totalAmount|crmMoney:$currency} {if $hookDiscount.message}({$hookDiscount.message}){/if}\n\n{if $pricesetFieldsCount }\n {assign var=\"count\" value= 0}\n {foreach from=$lineItem item=pcount}\n {assign var=\"lineItemCount\" value=0}\n {if $pcount neq \'skip\'}\n {foreach from=$pcount item=p_count}\n {assign var=\"lineItemCount\" value=$lineItemCount+$p_count.participant_count}\n {/foreach}\n {if $lineItemCount < 1 }\n {assign var=\"lineItemCount\" value=1}\n {/if}\n {assign var=\"count\" value=$count+$lineItemCount}\n {/if}\n {/foreach}\n\n{ts}Total Participants{/ts}: {$count}\n{/if}\n\n{if $register_date}\n{ts}Registration Date{/ts}: {$register_date|crmDate}\n{/if}\n{if $receive_date}\n{ts}Transaction Date{/ts}: {$receive_date|crmDate}\n{/if}\n{if $contributionTypeName}\n{ts}Financial Type{/ts}: {$contributionTypeName}\n{/if}\n{if $trxn_id}\n{ts}Transaction #{/ts}: {$trxn_id}\n{/if}\n{if $paidBy}\n{ts}Paid By{/ts}: {$paidBy}\n{/if}\n{if $checkNumber}\n{ts}Check Number{/ts}: {$checkNumber}\n{/if}\n{if $contributeMode ne \'notify\' and !$isAmountzero and !$is_pay_later and !$isOnWaitlist and !$isRequireApproval}\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{ts}Billing Name and Address{/ts}\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$billingName}\n{$address}\n{/if}\n\n{if $contributeMode eq \'direct\' and !$isAmountzero and !$is_pay_later and !$isOnWaitlist and !$isRequireApproval}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{ts}Credit Card Information{/ts}\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$credit_card_type}\n{$credit_card_number}\n{ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n{/if}\n{/if}\n{/if} {* End of conditional section for Paid events *}\n\n{if $customPre}\n{foreach from=$customPre item=customPr key=i}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$customPre_grouptitle.$i}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{foreach from=$customPr item=customValue key=customName}\n{if ( $trackingFields and ! in_array( $customName, $trackingFields ) ) or ! $trackingFields}\n {$customName}: {$customValue}\n{/if}\n{/foreach}\n{/foreach}\n{/if}\n\n{if $customPost}\n{foreach from=$customPost item=customPos key=j}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$customPost_grouptitle.$j}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{foreach from=$customPos item=customValue key=customName}\n{if ( $trackingFields and ! in_array( $customName, $trackingFields ) ) or ! $trackingFields}\n {$customName}: {$customValue}\n{/if}\n{/foreach}\n{/foreach}\n{/if}\n{if $customProfile}\n\n{foreach from=$customProfile.profile item=eachParticipant key=participantID}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{ts 1=$participantID+2}Participant Information - Participant %1{/ts}\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{foreach from=$eachParticipant item=eachProfile key=pid}\n----------------------------------------------------------{if $pricesetFieldsCount }--------------------{/if}\n\n{$customProfile.title.$pid}\n----------------------------------------------------------{if $pricesetFieldsCount }--------------------{/if}\n\n{foreach from=$eachProfile item=val key=field}\n{foreach from=$val item=v key=f}\n{$field}: {$v}\n{/foreach}\n{/foreach}\n{/foreach}\n{/foreach}\n{/if}\n{if $customGroup}\n{foreach from=$customGroup item=value key=customName}\n=========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$customName}\n=========================================================={if $pricesetFieldsCount }===================={/if}\n\n{foreach from=$value item=v key=n}\n{$n}: {$v}\n{/foreach}\n{/foreach}\n{/if}\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n \n \n \n
\n

Dear {contact.display_name},

\n\n {if $event.confirm_email_text AND (not $isOnWaitlist AND not $isRequireApproval)}\n

{$event.confirm_email_text|htmlize}

\n\n {else}\n

Thank you for your participation. This letter is a confirmation that your registration has been received and your status has been updated to {if $participant_status}{$participant_status}{else}{if $isOnWaitlist}waitlisted{else}registered{/if}{/if}.

\n\n {/if}\n\n

\n {if $isOnWaitlist}\n

{ts}You have been added to the WAIT LIST for this event.{/ts}

\n {if $isPrimary}\n

{ts}If space becomes available you will receive an email with\na link to a web page where you can complete your registration.{/ts}

\n {/if}\n {elseif $isRequireApproval}\n

{ts}Your registration has been submitted.{/ts}

\n {if $isPrimary}\n

{ts}Once your registration has been reviewed, you will receive\nan email with a link to a web page where you can complete the\nregistration process.{/ts}

\n {/if}\n {elseif $is_pay_later && !$isAmountzero && !$isAdditionalParticipant}\n

{$pay_later_receipt}

{* FIXME: this might be text rather than HTML *}\n {else}\n

{ts}Please print this confirmation for your records.{/ts}

\n {/if}\n\n
\n \n \n \n \n \n \n \n\n\n {if $conference_sessions}\n \n \n \n \n \n \n {/if}\n\n {if $event.participant_role neq \'Attendee\' and $defaultRole}\n \n \n \n \n {/if}\n\n {if $isShowLocation}\n \n \n \n {/if}\n\n {if $location.phone.1.phone || $location.email.1.email}\n \n \n \n {foreach from=$location.phone item=phone}\n {if $phone.phone}\n \n \n \n \n {/if}\n {/foreach}\n {foreach from=$location.email item=eventEmail}\n {if $eventEmail.email}\n \n \n \n \n {/if}\n {/foreach}\n {/if}\n \n \n \n {if $event.is_share}\n \n \n \n {/if}\n {if $payer.name}\n \n \n \n \n \n \n {/if}\n {if $event.is_monetary}\n\n \n \n \n\n {if $lineItem}\n {foreach from=$lineItem item=value key=priceset}\n {if $value neq \'skip\'}\n {if $isPrimary}\n {if $lineItem|@count GT 1} {* Header for multi participant registration cases. *}\n \n \n \n {/if}\n {/if}\n \n \n \n {/if}\n {/foreach}\n {/if}\n\n {if $amounts && !$lineItem}\n {foreach from=$amounts item=amnt key=level}\n \n \n \n {/foreach}\n {/if}\n\n {if $isPrimary}\n \n \n \n \n {if $pricesetFieldsCount }\n \n \n \n {/if}\n\n {if $register_date}\n \n \n \n \n {/if}\n\n {if $receive_date}\n \n \n \n \n {/if}\n\n {if $contributionTypeName}\n \n \n \n \n {/if}\n\n {if $trxn_id}\n \n \n \n \n {/if}\n\n {if $paidBy}\n \n \n \n \n {/if}\n\n {if $checkNumber}\n \n \n \n \n {/if}\n\n {if $contributeMode ne \'notify\' and !$isAmountzero and !$is_pay_later and !$isOnWaitlist and !$isRequireApproval}\n \n \n \n \n \n \n {/if}\n\n {if $contributeMode eq \'direct\' and !$isAmountzero and !$is_pay_later and !$isOnWaitlist and !$isRequireApproval}\n \n \n \n \n \n \n {/if}\n\n {/if}\n\n {/if} {* End of conditional section for Paid events *}\n\n\n{if $customPre}\n{foreach from=$customPre item=customPr key=i}\n \n {foreach from=$customPr item=customValue key=customName}\n {if ( $trackingFields and ! in_array( $customName, $trackingFields ) ) or ! $trackingFields}\n \n \n \n \n {/if}\n {/foreach}\n{/foreach}\n{/if}\n\n{if $customPost}\n{foreach from=$customPost item=customPos key=j}\n \n {foreach from=$customPos item=customValue key=customName}\n {if ( $trackingFields and ! in_array( $customName, $trackingFields ) ) or ! $trackingFields}\n \n \n \n \n{/if}\n{/foreach}\n{/foreach}\n{/if}\n\n{if $customProfile}\n{foreach from=$customProfile.profile item=eachParticipant key=participantID}\n \n {foreach from=$eachParticipant item=eachProfile key=pid}\n \n {foreach from=$eachProfile item=val key=field}\n {foreach from=$val item=v key=f}\n \n \n {/foreach}\n \n {/foreach}\n{/foreach}\n{/foreach}\n{/if}\n\n {if $customGroup}\n {foreach from=$customGroup item=value key=customName}\n \n \n \n {foreach from=$value item=v key=n}\n \n \n \n \n {/foreach}\n {/foreach}\n {/if}\n\n
\n {ts}Event Information and Location{/ts}\n
\n {$event.event_title}
\n {$event.event_start_date|date_format:\"%A\"} {$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|date_format:\"%Y%m%d\" == $event.event_start_date|date_format:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|date_format:\"%A\"} {$event.event_end_date|crmDate}{/if}{/if}\n
\n {ts}Your schedule:{/ts}\n
\n {assign var=\'group_by_day\' value=\'NA\'}\n {foreach from=$conference_sessions item=session}\n {if $session.start_date|date_format:\"%Y/%m/%d\" != $group_by_day|date_format:\"%Y/%m/%d\"}\n {assign var=\'group_by_day\' value=$session.start_date}\n {$group_by_day|date_format:\"%m/%d/%Y\"}
\n {/if}\n {$session.start_date|crmDate:0:1}{if $session.end_date}-{$session.end_date|crmDate:0:1}{/if} {$session.title}
\n {if $session.location}    {$session.location}
{/if}\n {/foreach}\n
\n {ts}Participant Role{/ts}\n \n {$event.participant_role}\n
\n {if $location.address.1.name}\n {$location.address.1.name}
\n {/if}\n {if $location.address.1.street_address}\n {$location.address.1.street_address}
\n {/if}\n {if $location.address.1.supplemental_address_1}\n {$location.address.1.supplemental_address_1}
\n {/if}\n {if $location.address.1.supplemental_address_2}\n {$location.address.1.supplemental_address_2}
\n {/if}\n {if $location.address.1.city}\n {$location.address.1.city}, {$location.address.1.state_province} {$location.address.1.postal_code}{if $location.address.1.postal_code_suffix} - {$location.address.1.postal_code_suffix}{/if}
\n {/if}\n
\n {ts}Event Contacts:{/ts}\n
\n {if $phone.phone_type}\n {$phone.phone_type_display}\n {else}\n {ts}Phone{/ts}\n {/if}\n \n {$phone.phone} {if $phone.phone_ext} {ts}ext.{/ts} {$phone.phone_ext}{/if}\n
\n {ts}Email{/ts}\n \n {$eventEmail.email}\n
\n {capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n {ts}Download iCalendar File{/ts}\n
\n {capture assign=eventUrl}{crmURL p=\'civicrm/event/info\' q=\"id=`$event.id`&reset=1\" a=true fe=1 h=1}{/capture}\n {include file=\"CRM/common/SocialNetwork.tpl\" emailMode=true url=$eventUrl title=$event.title pageURL=$eventUrl}\n
\n {ts}You were registered by:{/ts}\n
\n {$payer.name}\n
\n {$event.fee_label}\n
\n {ts 1=$priceset+1}Participant %1{/ts} {$part.$priceset.info}\n
\n {* FIXME: style this table so that it looks like the text version (justification, etc.) *}\n \n \n \n \n \n {if $pricesetFieldsCount }{/if}\n \n {foreach from=$value item=line}\n \n \n \n \n \n {if $pricesetFieldsCount } {/if}\n \n {/foreach}\n
{ts}Item{/ts}{ts}Qty{/ts}{ts}Each{/ts}{ts}Total{/ts}{ts}Total Participants{/ts}
\n {if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description}
{$line.description|truncate:30:\"...\"}
{/if}\n
\n {$line.qty}\n \n {$line.unit_price|crmMoney:$currency}\n \n {$line.line_total|crmMoney:$currency}\n {$line.participant_count}
\n
\n {$amnt.amount|crmMoney:$currency} {$amnt.label}\n
\n {ts}Total Amount{/ts}\n \n {$totalAmount|crmMoney:$currency} {if $hookDiscount.message}({$hookDiscount.message}){/if}\n
\n {ts}Total Participants{/ts}\n {assign var=\"count\" value= 0}\n {foreach from=$lineItem item=pcount}\n {assign var=\"lineItemCount\" value=0}\n {if $pcount neq \'skip\'}\n {foreach from=$pcount item=p_count}\n {assign var=\"lineItemCount\" value=$lineItemCount+$p_count.participant_count}\n {/foreach}\n {if $lineItemCount < 1 }\n {assign var=\"lineItemCount\" value=1}\n {/if}\n {assign var=\"count\" value=$count+$lineItemCount}\n {/if}\n {/foreach}\n {$count}\n
\n {ts}Registration Date{/ts}\n \n {$register_date|crmDate}\n
\n {ts}Transaction Date{/ts}\n \n {$receive_date|crmDate}\n
\n {ts}Financial Type{/ts}\n \n {$contributionTypeName}\n
\n {ts}Transaction #{/ts}\n \n {$trxn_id}\n
\n {ts}Paid By{/ts}\n \n {$paidBy}\n
\n {ts}Check Number{/ts}\n \n {$checkNumber}\n
\n {ts}Billing Name and Address{/ts}\n
\n {$billingName}
\n {$address|nl2br}\n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}
\n {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n
{$customPre_grouptitle.$i}
{$customName}{$customValue}
{$customPost_grouptitle.$j}
{$customName}{$customValue}
{ts 1=$participantID+2}Participant %1{/ts}
{$customProfile.title.$pid}
{$field}{$v}
\n {$customName}\n
\n {$n}\n \n {$v}\n
\n
\n
\n\n\n\n',1,719,0,1,NULL),(27,'Events - Receipt only','Receipt for {if $events_in_cart} Event Registration{/if}\n','Dear {contact.display_name},\n{if $is_pay_later}\n This is being sent to you as an acknowledgement that you have registered one or more members for the following workshop, event or purchase. Please note, however, that the status of your payment is pending, and the registration for this event will not be completed until your payment is received.\n{else}\n This is being sent to you as a {if $is_refund}confirmation of refund{else}receipt of payment made{/if} for the following workshop, event registration or purchase.\n{/if}\n\n{if $is_pay_later}\n {$pay_later_receipt}\n{/if}\n\n Your order number is #{$transaction_id}. Please print this confirmation for your records.{if $line_items && !$is_refund} Information about the workshops will be sent separately to each participant.{/if}\n Here\'s a summary of your transaction placed on {$transaction_date|date_format:\"%D %I:%M %p %Z\"}:\n\n{if $billing_name}\n===========================================================\n{ts}Billing Name and Address{/ts}\n\n===========================================================\n{$billing_name}\n\n{$billing_street_address}\n\n{$billing_city}, {$billing_state} {$billing_postal_code}\n\n{$email}\n{/if}\n\n{if $source}\n{$source}\n{/if}\n\n\n{foreach from=$line_items item=line_item}\n{$line_item.event->title} ({$line_item.event->start_date|date_format:\"%D\"})\n{if $line_item.event->is_show_location}\n {if $line_item.location.address.1.name}\n {$line_item.location.address.1.name}\n {/if}\n {if $line_item.location.address.1.street_address}\n {$line_item.location.address.1.street_address}\n {/if}\n {if $line_item.location.address.1.supplemental_address_1}\n {$line_item.location.address.1.supplemental_address_1}\n {/if}\n {if $line_item.location.address.1.supplemental_address_2}\n {$line_item.location.address.1.supplemental_address_2}\n {/if}\n {if $line_item.location.address.1.city}\n {$line_item.location.address.1.city}, {$line_item.location.address.1.state_province} {$line_item.location.address.1.postal_code}\n {/if}\n{/if}{*End of isShowLocation condition*}\n{$line_item.event->start_date|date_format:\"%D %I:%M %p\"} - {$line_item.event->end_date|date_format:\"%I:%M %p\"}\n\n Quantity: {$line_item.num_participants}\n\n{if $line_item.num_participants > 0}\n {foreach from=$line_item.participants item=participant}\n {$participant.display_name}\n {/foreach}\n{/if}\n{if $line_item.num_waiting_participants > 0}\n Waitlisted:\n {foreach from=$line_item.waiting_participants item=participant}\n {$participant.display_name}\n {/foreach}\n{/if}\nCost: {$line_item.cost|crmMoney:$currency|string_format:\"%10s\"}\nTotal For This Event: {$line_item.amount|crmMoney:$currency|string_format:\"%10s\"}\n\n{/foreach}\n\n{if $discounts}\nSubtotal: {$sub_total|crmMoney:$currency|string_format:\"%10s\"}\n--------------------------------------\nDiscounts\n{foreach from=$discounts key=myId item=i}\n {$i.title}: -{$i.amount|crmMoney:$currency|string_format:\"%10s\"}\n{/foreach}\n{/if}\n======================================\nTotal: {$total|crmMoney:$currency|string_format:\"%10s\"}\n\n{if $credit_card_type}\n===========================================================\n{ts}Payment Information{/ts}\n\n===========================================================\n{$credit_card_type}\n{$credit_card_number}\n{ts}Expires{/ts}: {$credit_card_exp_date.M}/{$credit_card_exp_date.Y}\n{/if}\n\n If you have questions about the status of your registration or purchase please feel free to contact us.\n','\n\n \n \n \n \n \n {capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n {capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n {capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n

Dear {contact.display_name},

\n {if $is_pay_later}\n

\n This is being sent to you as an acknowledgement that you have registered one or more members for the following workshop, event or purchase. Please note, however, that the status of your payment is pending, and the registration for this event will not be completed until your payment is received.\n

\n {else}\n

\n This is being sent to you as a {if $is_refund}confirmation of refund{else}receipt of payment made{/if} for the following workshop, event registration or purchase.\n

\n {/if}\n\n {if $is_pay_later}\n

{$pay_later_receipt}

\n {/if}\n\n

Your order number is #{$transaction_id}. Please print this confirmation for your records.{if $line_items && !$is_refund} Information about the workshops will be sent separately to each participant.{/if}\n Here\'s a summary of your transaction placed on {$transaction_date|date_format:\"%D %I:%M %p %Z\"}:

\n\n\n{if $billing_name}\n \n \n \n \n \n \n \n
\n {ts}Billing Name and Address{/ts}\n
\n {$billing_name}
\n {$billing_street_address}
\n {$billing_city}, {$billing_state} {$billing_postal_code}
\n
\n {$email}\n
\n{/if}\n{if $credit_card_type}\n

 

\n \n \n \n \n \n \n \n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}
\n {ts}Expires{/ts}: {$credit_card_exp_date.M}/{$credit_card_exp_date.Y}\n
\n{/if}\n{if $source}\n

 

\n {$source}\n{/if}\n

 

\n \n \n \n{if $line_items}\n \n \n{/if}\n \n \n \n \n \n {foreach from=$line_items item=line_item}\n \n \n \n \n \n \n {/foreach}\n \n \n {if $discounts}\n \n \n \n \n \n \n {foreach from=$discounts key=myId item=i}\n \n \n \n \n \n \n {/foreach}\n {/if}\n \n{if $line_items}\n \n \n{/if}\n \n \n \n \n
\n Event\n \n Participants\n \n Price\n \n Total\n
\n {$line_item.event->title} ({$line_item.event->start_date|date_format:\"%D\"})
\n {if $line_item.event->is_show_location}\n {if $line_item.location.address.1.name}\n {$line_item.location.address.1.name}
\n {/if}\n {if $line_item.location.address.1.street_address}\n {$line_item.location.address.1.street_address}
\n {/if}\n {if $line_item.location.address.1.supplemental_address_1}\n {$line_item.location.address.1.supplemental_address_1}
\n {/if}\n {if $line_item.location.address.1.supplemental_address_2}\n {$line_item.location.address.1.supplemental_address_2}
\n {/if}\n {if $line_item.location.address.1.city}\n {$line_item.location.address.1.city}, {$line_item.location.address.1.state_province} {$location.address.1.postal_code}\n {/if}\n {/if}{*End of isShowLocation condition*}

\n {$line_item.event->start_date|date_format:\"%D %I:%M %p\"} - {$line_item.event->end_date|date_format:\"%I:%M %p\"}\n
\n {$line_item.num_participants}\n {if $line_item.num_participants > 0}\n
\n {foreach from=$line_item.participants item=participant}\n {$participant.display_name}
\n {/foreach}\n
\n {/if}\n {if $line_item.num_waiting_participants > 0}\n Waitlisted:
\n
\n {foreach from=$line_item.waiting_participants item=participant}\n {$participant.display_name}
\n {/foreach}\n
\n {/if}\n
\n {$line_item.cost|crmMoney:$currency|string_format:\"%10s\"}\n \n  {$line_item.amount|crmMoney:$currency|string_format:\"%10s\"}\n
\n \n \n Subtotal:\n \n  {$sub_total|crmMoney:$currency|string_format:\"%10s\"}\n
\n {$i.title}\n \n \n \n -{$i.amount}\n
\n \n \n Total:\n \n  {$total|crmMoney:$currency|string_format:\"%10s\"}\n
\n\n If you have questions about the status of your registration or purchase please feel free to contact us.\n \n\n',1,720,1,0,NULL),(28,'Events - Receipt only','Receipt for {if $events_in_cart} Event Registration{/if}\n','Dear {contact.display_name},\n{if $is_pay_later}\n This is being sent to you as an acknowledgement that you have registered one or more members for the following workshop, event or purchase. Please note, however, that the status of your payment is pending, and the registration for this event will not be completed until your payment is received.\n{else}\n This is being sent to you as a {if $is_refund}confirmation of refund{else}receipt of payment made{/if} for the following workshop, event registration or purchase.\n{/if}\n\n{if $is_pay_later}\n {$pay_later_receipt}\n{/if}\n\n Your order number is #{$transaction_id}. Please print this confirmation for your records.{if $line_items && !$is_refund} Information about the workshops will be sent separately to each participant.{/if}\n Here\'s a summary of your transaction placed on {$transaction_date|date_format:\"%D %I:%M %p %Z\"}:\n\n{if $billing_name}\n===========================================================\n{ts}Billing Name and Address{/ts}\n\n===========================================================\n{$billing_name}\n\n{$billing_street_address}\n\n{$billing_city}, {$billing_state} {$billing_postal_code}\n\n{$email}\n{/if}\n\n{if $source}\n{$source}\n{/if}\n\n\n{foreach from=$line_items item=line_item}\n{$line_item.event->title} ({$line_item.event->start_date|date_format:\"%D\"})\n{if $line_item.event->is_show_location}\n {if $line_item.location.address.1.name}\n {$line_item.location.address.1.name}\n {/if}\n {if $line_item.location.address.1.street_address}\n {$line_item.location.address.1.street_address}\n {/if}\n {if $line_item.location.address.1.supplemental_address_1}\n {$line_item.location.address.1.supplemental_address_1}\n {/if}\n {if $line_item.location.address.1.supplemental_address_2}\n {$line_item.location.address.1.supplemental_address_2}\n {/if}\n {if $line_item.location.address.1.city}\n {$line_item.location.address.1.city}, {$line_item.location.address.1.state_province} {$line_item.location.address.1.postal_code}\n {/if}\n{/if}{*End of isShowLocation condition*}\n{$line_item.event->start_date|date_format:\"%D %I:%M %p\"} - {$line_item.event->end_date|date_format:\"%I:%M %p\"}\n\n Quantity: {$line_item.num_participants}\n\n{if $line_item.num_participants > 0}\n {foreach from=$line_item.participants item=participant}\n {$participant.display_name}\n {/foreach}\n{/if}\n{if $line_item.num_waiting_participants > 0}\n Waitlisted:\n {foreach from=$line_item.waiting_participants item=participant}\n {$participant.display_name}\n {/foreach}\n{/if}\nCost: {$line_item.cost|crmMoney:$currency|string_format:\"%10s\"}\nTotal For This Event: {$line_item.amount|crmMoney:$currency|string_format:\"%10s\"}\n\n{/foreach}\n\n{if $discounts}\nSubtotal: {$sub_total|crmMoney:$currency|string_format:\"%10s\"}\n--------------------------------------\nDiscounts\n{foreach from=$discounts key=myId item=i}\n {$i.title}: -{$i.amount|crmMoney:$currency|string_format:\"%10s\"}\n{/foreach}\n{/if}\n======================================\nTotal: {$total|crmMoney:$currency|string_format:\"%10s\"}\n\n{if $credit_card_type}\n===========================================================\n{ts}Payment Information{/ts}\n\n===========================================================\n{$credit_card_type}\n{$credit_card_number}\n{ts}Expires{/ts}: {$credit_card_exp_date.M}/{$credit_card_exp_date.Y}\n{/if}\n\n If you have questions about the status of your registration or purchase please feel free to contact us.\n','\n\n \n \n \n \n \n {capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n {capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n {capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n

Dear {contact.display_name},

\n {if $is_pay_later}\n

\n This is being sent to you as an acknowledgement that you have registered one or more members for the following workshop, event or purchase. Please note, however, that the status of your payment is pending, and the registration for this event will not be completed until your payment is received.\n

\n {else}\n

\n This is being sent to you as a {if $is_refund}confirmation of refund{else}receipt of payment made{/if} for the following workshop, event registration or purchase.\n

\n {/if}\n\n {if $is_pay_later}\n

{$pay_later_receipt}

\n {/if}\n\n

Your order number is #{$transaction_id}. Please print this confirmation for your records.{if $line_items && !$is_refund} Information about the workshops will be sent separately to each participant.{/if}\n Here\'s a summary of your transaction placed on {$transaction_date|date_format:\"%D %I:%M %p %Z\"}:

\n\n\n{if $billing_name}\n \n \n \n \n \n \n \n
\n {ts}Billing Name and Address{/ts}\n
\n {$billing_name}
\n {$billing_street_address}
\n {$billing_city}, {$billing_state} {$billing_postal_code}
\n
\n {$email}\n
\n{/if}\n{if $credit_card_type}\n

 

\n \n \n \n \n \n \n \n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}
\n {ts}Expires{/ts}: {$credit_card_exp_date.M}/{$credit_card_exp_date.Y}\n
\n{/if}\n{if $source}\n

 

\n {$source}\n{/if}\n

 

\n \n \n \n{if $line_items}\n \n \n{/if}\n \n \n \n \n \n {foreach from=$line_items item=line_item}\n \n \n \n \n \n \n {/foreach}\n \n \n {if $discounts}\n \n \n \n \n \n \n {foreach from=$discounts key=myId item=i}\n \n \n \n \n \n \n {/foreach}\n {/if}\n \n{if $line_items}\n \n \n{/if}\n \n \n \n \n
\n Event\n \n Participants\n \n Price\n \n Total\n
\n {$line_item.event->title} ({$line_item.event->start_date|date_format:\"%D\"})
\n {if $line_item.event->is_show_location}\n {if $line_item.location.address.1.name}\n {$line_item.location.address.1.name}
\n {/if}\n {if $line_item.location.address.1.street_address}\n {$line_item.location.address.1.street_address}
\n {/if}\n {if $line_item.location.address.1.supplemental_address_1}\n {$line_item.location.address.1.supplemental_address_1}
\n {/if}\n {if $line_item.location.address.1.supplemental_address_2}\n {$line_item.location.address.1.supplemental_address_2}
\n {/if}\n {if $line_item.location.address.1.city}\n {$line_item.location.address.1.city}, {$line_item.location.address.1.state_province} {$location.address.1.postal_code}\n {/if}\n {/if}{*End of isShowLocation condition*}

\n {$line_item.event->start_date|date_format:\"%D %I:%M %p\"} - {$line_item.event->end_date|date_format:\"%I:%M %p\"}\n
\n {$line_item.num_participants}\n {if $line_item.num_participants > 0}\n
\n {foreach from=$line_item.participants item=participant}\n {$participant.display_name}
\n {/foreach}\n
\n {/if}\n {if $line_item.num_waiting_participants > 0}\n Waitlisted:
\n
\n {foreach from=$line_item.waiting_participants item=participant}\n {$participant.display_name}
\n {/foreach}\n
\n {/if}\n
\n {$line_item.cost|crmMoney:$currency|string_format:\"%10s\"}\n \n  {$line_item.amount|crmMoney:$currency|string_format:\"%10s\"}\n
\n \n \n Subtotal:\n \n  {$sub_total|crmMoney:$currency|string_format:\"%10s\"}\n
\n {$i.title}\n \n \n \n -{$i.amount}\n
\n \n \n Total:\n \n  {$total|crmMoney:$currency|string_format:\"%10s\"}\n
\n\n If you have questions about the status of your registration or purchase please feel free to contact us.\n \n\n',1,720,0,1,NULL),(29,'Events - Registration Cancellation Notice','{ts 1=$event.event_title}Event Registration Cancelled for %1{/ts}\n','{ts 1=$contact.display_name}Dear %1{/ts},\n\n{ts}Your Event Registration has been cancelled.{/ts}\n\n\n===========================================================\n{ts}Event Information and Location{/ts}\n\n===========================================================\n{$event.event_title}\n{$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|date_format:\"%Y%m%d\" == $event.event_start_date|date_format:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|crmDate}{/if}{/if}\n\n{ts}Participant Role{/ts}: {$participant.role}\n\n{if $isShowLocation}\n{if $event.location.address.1.name}\n\n{$event.location.address.1.name}\n{/if}\n{if $event.location.address.1.street_address}{$event.location.address.1.street_address}\n{/if}\n{if $event.location.address.1.supplemental_address_1}{$event.location.address.1.supplemental_address_1}\n{/if}\n{if $event.location.address.1.supplemental_address_2}{$event.location.address.1.supplemental_address_2}\n{/if}\n{if $event.location.address.1.city}{$event.location.address.1.city} {$event.location.address.1.postal_code}{if $event.location.address.1.postal_code_suffix} - {$event.location.address.1.postal_code_suffix}{/if}\n{/if}\n\n{/if}{*End of isShowLocation condition*}\n\n{if $event.location.phone.1.phone || $event.location.email.1.email}\n\n{ts}Event Contacts:{/ts}\n{foreach from=$event.location.phone item=phone}\n{if $phone.phone}\n\n{if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}: {$phone.phone}{/if}\n{/foreach}\n{foreach from=$event.location.email item=eventEmail}\n{if $eventEmail.email}\n\n{ts}Email{/ts}: {$eventEmail.email}{/if}{/foreach}\n{/if}\n\n{capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n{ts}Download iCalendar File{/ts}: {$icalFeed}\n{if $contact.email}\n\n===========================================================\n{ts}Registered Email{/ts}\n\n===========================================================\n{$contact.email}\n{/if}\n\n{if $register_date}\n{ts}Registration Date{/ts}: {$participant.register_date|crmDate}\n{/if}\n\n{ts 1=$domain.phone 2=$domain.email}Please contact us at %1 or send email to %2 if you have questions.{/ts}\n\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n \n \n \n\n \n \n \n\n
\n

{ts 1=$contact.display_name}Dear %1{/ts},

\n

{ts}Your Event Registration has been cancelled.{/ts}

\n
\n \n \n \n \n \n \n \n \n \n \n \n\n {if $isShowLocation}\n \n \n \n {/if}\n\n {if $event.location.phone.1.phone || $event.location.email.1.email}\n \n \n \n {foreach from=$event.location.phone item=phone}\n {if $phone.phone}\n \n \n \n \n {/if}\n {/foreach}\n {foreach from=$event.location.email item=eventEmail}\n {if $eventEmail.email}\n \n \n \n \n {/if}\n {/foreach}\n {/if}\n\n {capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n \n \n \n\n {if $contact.email}\n \n \n \n \n \n \n {/if}\n\n {if $register_date}\n \n \n \n \n {/if}\n\n
\n {ts}Event Information and Location{/ts}\n
\n {$event.event_title}
\n {$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|date_format:\"%Y%m%d\" == $event.event_start_date|date_format:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|crmDate}{/if}{/if}\n
\n {ts}Participant Role{/ts}:\n \n {$participant.role}\n
\n {if $event.location.address.1.name}\n {$event.location.address.1.name}
\n {/if}\n {if $event.location.address.1.street_address}\n {$event.location.address.1.street_address}
\n {/if}\n {if $event.location.address.1.supplemental_address_1}\n {$event.location.address.1.supplemental_address_1}
\n {/if}\n {if $event.location.address.1.supplemental_address_2}\n {$event.location.address.1.supplemental_address_2}
\n {/if}\n {if $event.location.address.1.city}\n {$event.location.address.1.city} {$event.location.address.1.postal_code}\n {if $event.location.address.1.postal_code_suffix}\n - {$event.location.address.1.postal_code_suffix}\n {/if}\n {/if}\n
\n {ts}Event Contacts:{/ts}\n
\n {if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}\n \n {$phone.phone}\n
\n {ts}Email{/ts}\n \n {$eventEmail.email}\n
\n {ts}Download iCalendar File{/ts}\n
\n {ts}Registered Email{/ts}\n
\n {$contact.email}\n
\n {ts}Registration Date{/ts}\n \n {$participant.register_date|crmDate}\n
\n
\n

{ts 1=$domain.phone 2=$domain.email}Please contact us at %1 or send email to %2 if you have questions.{/ts}

\n
\n
\n\n\n\n',1,721,1,0,NULL),(30,'Events - Registration Cancellation Notice','{ts 1=$event.event_title}Event Registration Cancelled for %1{/ts}\n','{ts 1=$contact.display_name}Dear %1{/ts},\n\n{ts}Your Event Registration has been cancelled.{/ts}\n\n\n===========================================================\n{ts}Event Information and Location{/ts}\n\n===========================================================\n{$event.event_title}\n{$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|date_format:\"%Y%m%d\" == $event.event_start_date|date_format:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|crmDate}{/if}{/if}\n\n{ts}Participant Role{/ts}: {$participant.role}\n\n{if $isShowLocation}\n{if $event.location.address.1.name}\n\n{$event.location.address.1.name}\n{/if}\n{if $event.location.address.1.street_address}{$event.location.address.1.street_address}\n{/if}\n{if $event.location.address.1.supplemental_address_1}{$event.location.address.1.supplemental_address_1}\n{/if}\n{if $event.location.address.1.supplemental_address_2}{$event.location.address.1.supplemental_address_2}\n{/if}\n{if $event.location.address.1.city}{$event.location.address.1.city} {$event.location.address.1.postal_code}{if $event.location.address.1.postal_code_suffix} - {$event.location.address.1.postal_code_suffix}{/if}\n{/if}\n\n{/if}{*End of isShowLocation condition*}\n\n{if $event.location.phone.1.phone || $event.location.email.1.email}\n\n{ts}Event Contacts:{/ts}\n{foreach from=$event.location.phone item=phone}\n{if $phone.phone}\n\n{if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}: {$phone.phone}{/if}\n{/foreach}\n{foreach from=$event.location.email item=eventEmail}\n{if $eventEmail.email}\n\n{ts}Email{/ts}: {$eventEmail.email}{/if}{/foreach}\n{/if}\n\n{capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n{ts}Download iCalendar File{/ts}: {$icalFeed}\n{if $contact.email}\n\n===========================================================\n{ts}Registered Email{/ts}\n\n===========================================================\n{$contact.email}\n{/if}\n\n{if $register_date}\n{ts}Registration Date{/ts}: {$participant.register_date|crmDate}\n{/if}\n\n{ts 1=$domain.phone 2=$domain.email}Please contact us at %1 or send email to %2 if you have questions.{/ts}\n\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n \n \n \n\n \n \n \n\n
\n

{ts 1=$contact.display_name}Dear %1{/ts},

\n

{ts}Your Event Registration has been cancelled.{/ts}

\n
\n \n \n \n \n \n \n \n \n \n \n \n\n {if $isShowLocation}\n \n \n \n {/if}\n\n {if $event.location.phone.1.phone || $event.location.email.1.email}\n \n \n \n {foreach from=$event.location.phone item=phone}\n {if $phone.phone}\n \n \n \n \n {/if}\n {/foreach}\n {foreach from=$event.location.email item=eventEmail}\n {if $eventEmail.email}\n \n \n \n \n {/if}\n {/foreach}\n {/if}\n\n {capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n \n \n \n\n {if $contact.email}\n \n \n \n \n \n \n {/if}\n\n {if $register_date}\n \n \n \n \n {/if}\n\n
\n {ts}Event Information and Location{/ts}\n
\n {$event.event_title}
\n {$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|date_format:\"%Y%m%d\" == $event.event_start_date|date_format:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|crmDate}{/if}{/if}\n
\n {ts}Participant Role{/ts}:\n \n {$participant.role}\n
\n {if $event.location.address.1.name}\n {$event.location.address.1.name}
\n {/if}\n {if $event.location.address.1.street_address}\n {$event.location.address.1.street_address}
\n {/if}\n {if $event.location.address.1.supplemental_address_1}\n {$event.location.address.1.supplemental_address_1}
\n {/if}\n {if $event.location.address.1.supplemental_address_2}\n {$event.location.address.1.supplemental_address_2}
\n {/if}\n {if $event.location.address.1.city}\n {$event.location.address.1.city} {$event.location.address.1.postal_code}\n {if $event.location.address.1.postal_code_suffix}\n - {$event.location.address.1.postal_code_suffix}\n {/if}\n {/if}\n
\n {ts}Event Contacts:{/ts}\n
\n {if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}\n \n {$phone.phone}\n
\n {ts}Email{/ts}\n \n {$eventEmail.email}\n
\n {ts}Download iCalendar File{/ts}\n
\n {ts}Registered Email{/ts}\n
\n {$contact.email}\n
\n {ts}Registration Date{/ts}\n \n {$participant.register_date|crmDate}\n
\n
\n

{ts 1=$domain.phone 2=$domain.email}Please contact us at %1 or send email to %2 if you have questions.{/ts}

\n
\n
\n\n\n\n',1,721,0,1,NULL),(31,'Events - Registration Confirmation Invite','{ts 1=$event.event_title}Confirm your registration for %1{/ts}\n','{ts 1=$contact.display_name}Dear %1{/ts},\n{if !$isAdditional and $participant.id}\n\n===========================================================\n{ts}Confirm Your Registration{/ts}\n\n===========================================================\n{capture assign=confirmUrl}{crmURL p=\'civicrm/event/confirm\' q=\"reset=1&participantId=`$participant.id`&cs=`$checksumValue`\" a=true h=0 fe=1}{/capture}\nClick this link to go to a web page where you can confirm your registration online:\n{$confirmUrl}\n{/if}\n\n===========================================================\n{ts}Event Information and Location{/ts}\n\n===========================================================\n{$event.event_title}\n{$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|date_format:\"%Y%m%d\" == $event.event_start_date|date_format:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|crmDate}{/if}{/if}\n{if $conference_sessions}\n\n\n{ts}Your schedule:{/ts}\n{assign var=\'group_by_day\' value=\'NA\'}\n{foreach from=$conference_sessions item=session}\n{if $session.start_date|date_format:\"%Y/%m/%d\" != $group_by_day|date_format:\"%Y/%m/%d\"}\n{assign var=\'group_by_day\' value=$session.start_date}\n\n{$group_by_day|date_format:\"%m/%d/%Y\"}\n\n\n{/if}\n{$session.start_date|crmDate:0:1}{if $session.end_date}-{$session.end_date|crmDate:0:1}{/if} {$session.title}\n{if $session.location} {$session.location}{/if}\n{/foreach}\n{/if}\n\n\n{ts}Participant Role{/ts}: {$participant.role}\n\n{if $isShowLocation}\n{if $event.location.address.1.name}\n\n{$event.location.address.1.name}\n{/if}\n{if $event.location.address.1.street_address}{$event.location.address.1.street_address}\n{/if}\n{if $event.location.address.1.supplemental_address_1}{$event.location.address.1.supplemental_address_1}\n{/if}\n{if $event.location.address.1.supplemental_address_2}{$event.location.address.1.supplemental_address_2}\n{/if}\n{if $event.location.address.1.city}{$event.location.address.1.city} {$event.location.address.1.postal_code}{if $event.location.address.1.postal_code_suffix} - {$event.location.address.1.postal_code_suffix}{/if}\n{/if}\n\n{/if}{*End of isShowLocation condition*}\n\n{if $event.location.phone.1.phone || $event.location.email.1.email}\n\n{ts}Event Contacts:{/ts}\n{foreach from=$event.location.phone item=phone}\n{if $phone.phone}\n\n{if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}: {$phone.phone}{/if}\n{/foreach}\n{foreach from=$event.location.email item=eventEmail}\n{if $eventEmail.email}\n\n{ts}Email{/ts}: {$eventEmail.email}{/if}{/foreach}\n{/if}\n\n{capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n{ts}Download iCalendar File{/ts}: {$icalFeed}\n{if $contact.email}\n\n===========================================================\n{ts}Registered Email{/ts}\n\n===========================================================\n{$contact.email}\n{/if}\n\n{if $register_date}\n{ts}Registration Date{/ts}: {$participant.register_date|crmDate}\n{/if}\n\n{ts 1=$domain.phone 2=$domain.email}Please contact us at %1 or send email to %2 if you have questions.{/ts}\n\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n {if !$isAdditional and $participant.id}\n \n \n \n \n \n \n {/if}\n \n \n \n\n \n \n \n\n
\n

{ts 1=$contact.display_name}Dear %1{/ts},

\n
\n {ts}Confirm Your Registration{/ts}\n
\n {capture assign=confirmUrl}{crmURL p=\'civicrm/event/confirm\' q=\"reset=1&participantId=`$participant.id`&cs=`$checksumValue`\" a=true h=0 fe=1}{/capture}\n Go to a web page where you can confirm your registration online\n
\n \n \n \n \n \n \n \n {if $conference_sessions}\n \n \n \n \n \n \n {/if}\n \n \n \n \n\n {if $isShowLocation}\n \n \n \n {/if}\n\n {if $event.location.phone.1.phone || $event.location.email.1.email}\n \n \n \n {foreach from=$event.location.phone item=phone}\n {if $phone.phone}\n \n \n \n \n {/if}\n {/foreach}\n {foreach from=$event.location.email item=eventEmail}\n {if $eventEmail.email}\n \n \n \n \n {/if}\n {/foreach}\n {/if}\n\n {capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n \n \n \n\n {if $contact.email}\n \n \n \n \n \n \n {/if}\n\n {if $register_date}\n \n \n \n \n {/if}\n\n
\n {ts}Event Information and Location{/ts}\n
\n {$event.event_title}
\n {$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|date_format:\"%Y%m%d\" == $event.event_start_date|date_format:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|crmDate}{/if}{/if}\n
\n {ts}Your schedule:{/ts}\n
\n {assign var=\'group_by_day\' value=\'NA\'}\n {foreach from=$conference_sessions item=session}\n {if $session.start_date|date_format:\"%Y/%m/%d\" != $group_by_day|date_format:\"%Y/%m/%d\"}\n {assign var=\'group_by_day\' value=$session.start_date}\n {$group_by_day|date_format:\"%m/%d/%Y\"}
\n {/if}\n {$session.start_date|crmDate:0:1}{if $session.end_date}-{$session.end_date|crmDate:0:1}{/if} {$session.title}
\n {if $session.location}    {$session.location}
{/if}\n {/foreach}\n
\n {ts}Participant Role{/ts}:\n \n {$participant.role}\n
\n {if $event.location.address.1.name}\n {$event.location.address.1.name}
\n {/if}\n {if $event.location.address.1.street_address}\n {$event.location.address.1.street_address}
\n {/if}\n {if $event.location.address.1.supplemental_address_1}\n {$event.location.address.1.supplemental_address_1}
\n {/if}\n {if $event.location.address.1.supplemental_address_2}\n {$event.location.address.1.supplemental_address_2}
\n {/if}\n {if $event.location.address.1.city}\n {$event.location.address.1.city} {$event.location.address.1.postal_code}\n {if $event.location.address.1.postal_code_suffix}\n - {$event.location.address.1.postal_code_suffix}\n {/if}\n {/if}\n
\n {ts}Event Contacts:{/ts}\n
\n {if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}\n \n {$phone.phone}\n
\n {ts}Email{/ts}\n \n {$eventEmail.email}\n
\n {ts}Download iCalendar File{/ts}\n
\n {ts}Registered Email{/ts}\n
\n {$contact.email}\n
\n {ts}Registration Date{/ts}\n \n {$participant.register_date|crmDate}\n
\n
\n

{ts 1=$domain.phone 2=$domain.email}Please contact us at %1 or send email to %2 if you have questions.{/ts}

\n
\n
\n\n\n\n',1,722,1,0,NULL),(32,'Events - Registration Confirmation Invite','{ts 1=$event.event_title}Confirm your registration for %1{/ts}\n','{ts 1=$contact.display_name}Dear %1{/ts},\n{if !$isAdditional and $participant.id}\n\n===========================================================\n{ts}Confirm Your Registration{/ts}\n\n===========================================================\n{capture assign=confirmUrl}{crmURL p=\'civicrm/event/confirm\' q=\"reset=1&participantId=`$participant.id`&cs=`$checksumValue`\" a=true h=0 fe=1}{/capture}\nClick this link to go to a web page where you can confirm your registration online:\n{$confirmUrl}\n{/if}\n\n===========================================================\n{ts}Event Information and Location{/ts}\n\n===========================================================\n{$event.event_title}\n{$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|date_format:\"%Y%m%d\" == $event.event_start_date|date_format:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|crmDate}{/if}{/if}\n{if $conference_sessions}\n\n\n{ts}Your schedule:{/ts}\n{assign var=\'group_by_day\' value=\'NA\'}\n{foreach from=$conference_sessions item=session}\n{if $session.start_date|date_format:\"%Y/%m/%d\" != $group_by_day|date_format:\"%Y/%m/%d\"}\n{assign var=\'group_by_day\' value=$session.start_date}\n\n{$group_by_day|date_format:\"%m/%d/%Y\"}\n\n\n{/if}\n{$session.start_date|crmDate:0:1}{if $session.end_date}-{$session.end_date|crmDate:0:1}{/if} {$session.title}\n{if $session.location} {$session.location}{/if}\n{/foreach}\n{/if}\n\n\n{ts}Participant Role{/ts}: {$participant.role}\n\n{if $isShowLocation}\n{if $event.location.address.1.name}\n\n{$event.location.address.1.name}\n{/if}\n{if $event.location.address.1.street_address}{$event.location.address.1.street_address}\n{/if}\n{if $event.location.address.1.supplemental_address_1}{$event.location.address.1.supplemental_address_1}\n{/if}\n{if $event.location.address.1.supplemental_address_2}{$event.location.address.1.supplemental_address_2}\n{/if}\n{if $event.location.address.1.city}{$event.location.address.1.city} {$event.location.address.1.postal_code}{if $event.location.address.1.postal_code_suffix} - {$event.location.address.1.postal_code_suffix}{/if}\n{/if}\n\n{/if}{*End of isShowLocation condition*}\n\n{if $event.location.phone.1.phone || $event.location.email.1.email}\n\n{ts}Event Contacts:{/ts}\n{foreach from=$event.location.phone item=phone}\n{if $phone.phone}\n\n{if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}: {$phone.phone}{/if}\n{/foreach}\n{foreach from=$event.location.email item=eventEmail}\n{if $eventEmail.email}\n\n{ts}Email{/ts}: {$eventEmail.email}{/if}{/foreach}\n{/if}\n\n{capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n{ts}Download iCalendar File{/ts}: {$icalFeed}\n{if $contact.email}\n\n===========================================================\n{ts}Registered Email{/ts}\n\n===========================================================\n{$contact.email}\n{/if}\n\n{if $register_date}\n{ts}Registration Date{/ts}: {$participant.register_date|crmDate}\n{/if}\n\n{ts 1=$domain.phone 2=$domain.email}Please contact us at %1 or send email to %2 if you have questions.{/ts}\n\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n {if !$isAdditional and $participant.id}\n \n \n \n \n \n \n {/if}\n \n \n \n\n \n \n \n\n
\n

{ts 1=$contact.display_name}Dear %1{/ts},

\n
\n {ts}Confirm Your Registration{/ts}\n
\n {capture assign=confirmUrl}{crmURL p=\'civicrm/event/confirm\' q=\"reset=1&participantId=`$participant.id`&cs=`$checksumValue`\" a=true h=0 fe=1}{/capture}\n Go to a web page where you can confirm your registration online\n
\n \n \n \n \n \n \n \n {if $conference_sessions}\n \n \n \n \n \n \n {/if}\n \n \n \n \n\n {if $isShowLocation}\n \n \n \n {/if}\n\n {if $event.location.phone.1.phone || $event.location.email.1.email}\n \n \n \n {foreach from=$event.location.phone item=phone}\n {if $phone.phone}\n \n \n \n \n {/if}\n {/foreach}\n {foreach from=$event.location.email item=eventEmail}\n {if $eventEmail.email}\n \n \n \n \n {/if}\n {/foreach}\n {/if}\n\n {capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n \n \n \n\n {if $contact.email}\n \n \n \n \n \n \n {/if}\n\n {if $register_date}\n \n \n \n \n {/if}\n\n
\n {ts}Event Information and Location{/ts}\n
\n {$event.event_title}
\n {$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|date_format:\"%Y%m%d\" == $event.event_start_date|date_format:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|crmDate}{/if}{/if}\n
\n {ts}Your schedule:{/ts}\n
\n {assign var=\'group_by_day\' value=\'NA\'}\n {foreach from=$conference_sessions item=session}\n {if $session.start_date|date_format:\"%Y/%m/%d\" != $group_by_day|date_format:\"%Y/%m/%d\"}\n {assign var=\'group_by_day\' value=$session.start_date}\n {$group_by_day|date_format:\"%m/%d/%Y\"}
\n {/if}\n {$session.start_date|crmDate:0:1}{if $session.end_date}-{$session.end_date|crmDate:0:1}{/if} {$session.title}
\n {if $session.location}    {$session.location}
{/if}\n {/foreach}\n
\n {ts}Participant Role{/ts}:\n \n {$participant.role}\n
\n {if $event.location.address.1.name}\n {$event.location.address.1.name}
\n {/if}\n {if $event.location.address.1.street_address}\n {$event.location.address.1.street_address}
\n {/if}\n {if $event.location.address.1.supplemental_address_1}\n {$event.location.address.1.supplemental_address_1}
\n {/if}\n {if $event.location.address.1.supplemental_address_2}\n {$event.location.address.1.supplemental_address_2}
\n {/if}\n {if $event.location.address.1.city}\n {$event.location.address.1.city} {$event.location.address.1.postal_code}\n {if $event.location.address.1.postal_code_suffix}\n - {$event.location.address.1.postal_code_suffix}\n {/if}\n {/if}\n
\n {ts}Event Contacts:{/ts}\n
\n {if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}\n \n {$phone.phone}\n
\n {ts}Email{/ts}\n \n {$eventEmail.email}\n
\n {ts}Download iCalendar File{/ts}\n
\n {ts}Registered Email{/ts}\n
\n {$contact.email}\n
\n {ts}Registration Date{/ts}\n \n {$participant.register_date|crmDate}\n
\n
\n

{ts 1=$domain.phone 2=$domain.email}Please contact us at %1 or send email to %2 if you have questions.{/ts}

\n
\n
\n\n\n\n',1,722,0,1,NULL),(33,'Events - Pending Registration Expiration Notice','{ts 1=$event.event_title}Event registration has expired for %1{/ts}\n','{ts 1=$contact.display_name}Dear %1{/ts},\n\n{ts 1=$event.event_title}Your pending event registration for %1 has expired\nbecause you did not confirm your registration.{/ts}\n\n\n{ts 1=$domain.phone 2=$domain.email}Please contact us at %1 or send email to %2 if you have questions\nor want to inquire about reinstating your registration for this event.{/ts}\n\n===========================================================\n{ts}Event Information and Location{/ts}\n\n===========================================================\n{$event.event_title}\n{$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|date_format:\"%Y%m%d\" == $event.event_start_date|date_format:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|crmDate}{/if}{/if}\n\n{ts}Participant Role{/ts}: {$participant.role}\n\n{if $isShowLocation}\n{if $event.location.address.1.name}\n\n{$event.location.address.1.name}\n{/if}\n{if $event.location.address.1.street_address}{$event.location.address.1.street_address}\n{/if}\n{if $event.location.address.1.supplemental_address_1}{$event.location.address.1.supplemental_address_1}\n{/if}\n{if $event.location.address.1.supplemental_address_2}{$event.location.address.1.supplemental_address_2}\n{/if}\n{if $event.location.address.1.city}{$event.location.address.1.city} {$event.location.address.1.postal_code}{if $event.location.address.1.postal_code_suffix} - {$event.location.address.1.postal_code_suffix}{/if}\n{/if}\n\n{/if}{*End of isShowLocation condition*}\n\n{if $event.location.phone.1.phone || $event.location.email.1.email}\n\n{ts}Event Contacts:{/ts}\n{foreach from=$event.location.phone item=phone}\n{if $phone.phone}\n\n{if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}: {$phone.phone}{/if}\n{/foreach}\n{foreach from=$event.location.email item=eventEmail}\n{if $eventEmail.email}\n\n{ts}Email{/ts}: {$eventEmail.email}{/if}{/foreach}\n{/if}\n\n{capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n{ts}Download iCalendar File{/ts}: {$icalFeed}\n{if $contact.email}\n\n===========================================================\n{ts}Registered Email{/ts}\n\n===========================================================\n{$contact.email}\n{/if}\n\n{if $register_date}\n{ts}Registration Date{/ts}: {$participant.register_date|crmDate}\n{/if}\n\n{ts 1=$domain.phone 2=$domain.email}Please contact us at %1 or send email to %2 if you have questions.{/ts}\n\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n \n \n \n\n \n \n \n\n
\n

{ts 1=$contact.display_name}Dear %1{/ts},

\n

{ts 1=$event.event_title}Your pending event registration for %1 has expired\nbecause you did not confirm your registration.{/ts}

\n

{ts 1=$domain.phone 2=$domain.email}Please contact us at %1 or send email to %2 if you have questions\nor want to inquire about reinstating your registration for this event.{/ts}

\n
\n \n \n \n \n \n \n \n \n \n \n \n\n {if $isShowLocation}\n \n \n \n {/if}\n\n {if $event.location.phone.1.phone || $event.location.email.1.email}\n \n \n \n {foreach from=$event.location.phone item=phone}\n {if $phone.phone}\n \n \n \n \n {/if}\n {/foreach}\n {foreach from=$event.location.email item=eventEmail}\n {if $eventEmail.email}\n \n \n \n \n {/if}\n {/foreach}\n {/if}\n\n {capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n \n \n \n\n {if $contact.email}\n \n \n \n \n \n \n {/if}\n\n {if $register_date}\n \n \n \n \n {/if}\n\n
\n {ts}Event Information and Location{/ts}\n
\n {$event.event_title}
\n {$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|date_format:\"%Y%m%d\" == $event.event_start_date|date_format:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|crmDate}{/if}{/if}\n
\n {ts}Participant Role{/ts}:\n \n {$participant.role}\n
\n {if $event.location.address.1.name}\n {$event.location.address.1.name}
\n {/if}\n {if $event.location.address.1.street_address}\n {$event.location.address.1.street_address}
\n {/if}\n {if $event.location.address.1.supplemental_address_1}\n {$event.location.address.1.supplemental_address_1}
\n {/if}\n {if $event.location.address.1.supplemental_address_2}\n {$event.location.address.1.supplemental_address_2}
\n {/if}\n {if $event.location.address.1.city}\n {$event.location.address.1.city} {$event.location.address.1.postal_code}\n {if $event.location.address.1.postal_code_suffix}\n - {$event.location.address.1.postal_code_suffix}\n {/if}\n {/if}\n
\n {ts}Event Contacts:{/ts}\n
\n {if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}\n \n {$phone.phone}\n
\n {ts}Email{/ts}\n \n {$eventEmail.email}\n
\n {ts}Download iCalendar File{/ts}\n
\n {ts}Registered Email{/ts}\n
\n {$contact.email}\n
\n {ts}Registration Date{/ts}\n \n {$participant.register_date|crmDate}\n
\n
\n

{ts 1=$domain.phone 2=$domain.email}Please contact us at %1 or send email to %2 if you have questions.{/ts}

\n
\n
\n\n\n\n',1,723,1,0,NULL),(34,'Events - Pending Registration Expiration Notice','{ts 1=$event.event_title}Event registration has expired for %1{/ts}\n','{ts 1=$contact.display_name}Dear %1{/ts},\n\n{ts 1=$event.event_title}Your pending event registration for %1 has expired\nbecause you did not confirm your registration.{/ts}\n\n\n{ts 1=$domain.phone 2=$domain.email}Please contact us at %1 or send email to %2 if you have questions\nor want to inquire about reinstating your registration for this event.{/ts}\n\n===========================================================\n{ts}Event Information and Location{/ts}\n\n===========================================================\n{$event.event_title}\n{$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|date_format:\"%Y%m%d\" == $event.event_start_date|date_format:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|crmDate}{/if}{/if}\n\n{ts}Participant Role{/ts}: {$participant.role}\n\n{if $isShowLocation}\n{if $event.location.address.1.name}\n\n{$event.location.address.1.name}\n{/if}\n{if $event.location.address.1.street_address}{$event.location.address.1.street_address}\n{/if}\n{if $event.location.address.1.supplemental_address_1}{$event.location.address.1.supplemental_address_1}\n{/if}\n{if $event.location.address.1.supplemental_address_2}{$event.location.address.1.supplemental_address_2}\n{/if}\n{if $event.location.address.1.city}{$event.location.address.1.city} {$event.location.address.1.postal_code}{if $event.location.address.1.postal_code_suffix} - {$event.location.address.1.postal_code_suffix}{/if}\n{/if}\n\n{/if}{*End of isShowLocation condition*}\n\n{if $event.location.phone.1.phone || $event.location.email.1.email}\n\n{ts}Event Contacts:{/ts}\n{foreach from=$event.location.phone item=phone}\n{if $phone.phone}\n\n{if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}: {$phone.phone}{/if}\n{/foreach}\n{foreach from=$event.location.email item=eventEmail}\n{if $eventEmail.email}\n\n{ts}Email{/ts}: {$eventEmail.email}{/if}{/foreach}\n{/if}\n\n{capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n{ts}Download iCalendar File{/ts}: {$icalFeed}\n{if $contact.email}\n\n===========================================================\n{ts}Registered Email{/ts}\n\n===========================================================\n{$contact.email}\n{/if}\n\n{if $register_date}\n{ts}Registration Date{/ts}: {$participant.register_date|crmDate}\n{/if}\n\n{ts 1=$domain.phone 2=$domain.email}Please contact us at %1 or send email to %2 if you have questions.{/ts}\n\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n \n \n \n\n \n \n \n\n
\n

{ts 1=$contact.display_name}Dear %1{/ts},

\n

{ts 1=$event.event_title}Your pending event registration for %1 has expired\nbecause you did not confirm your registration.{/ts}

\n

{ts 1=$domain.phone 2=$domain.email}Please contact us at %1 or send email to %2 if you have questions\nor want to inquire about reinstating your registration for this event.{/ts}

\n
\n \n \n \n \n \n \n \n \n \n \n \n\n {if $isShowLocation}\n \n \n \n {/if}\n\n {if $event.location.phone.1.phone || $event.location.email.1.email}\n \n \n \n {foreach from=$event.location.phone item=phone}\n {if $phone.phone}\n \n \n \n \n {/if}\n {/foreach}\n {foreach from=$event.location.email item=eventEmail}\n {if $eventEmail.email}\n \n \n \n \n {/if}\n {/foreach}\n {/if}\n\n {capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n \n \n \n\n {if $contact.email}\n \n \n \n \n \n \n {/if}\n\n {if $register_date}\n \n \n \n \n {/if}\n\n
\n {ts}Event Information and Location{/ts}\n
\n {$event.event_title}
\n {$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|date_format:\"%Y%m%d\" == $event.event_start_date|date_format:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|crmDate}{/if}{/if}\n
\n {ts}Participant Role{/ts}:\n \n {$participant.role}\n
\n {if $event.location.address.1.name}\n {$event.location.address.1.name}
\n {/if}\n {if $event.location.address.1.street_address}\n {$event.location.address.1.street_address}
\n {/if}\n {if $event.location.address.1.supplemental_address_1}\n {$event.location.address.1.supplemental_address_1}
\n {/if}\n {if $event.location.address.1.supplemental_address_2}\n {$event.location.address.1.supplemental_address_2}
\n {/if}\n {if $event.location.address.1.city}\n {$event.location.address.1.city} {$event.location.address.1.postal_code}\n {if $event.location.address.1.postal_code_suffix}\n - {$event.location.address.1.postal_code_suffix}\n {/if}\n {/if}\n
\n {ts}Event Contacts:{/ts}\n
\n {if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}\n \n {$phone.phone}\n
\n {ts}Email{/ts}\n \n {$eventEmail.email}\n
\n {ts}Download iCalendar File{/ts}\n
\n {ts}Registered Email{/ts}\n
\n {$contact.email}\n
\n {ts}Registration Date{/ts}\n \n {$participant.register_date|crmDate}\n
\n
\n

{ts 1=$domain.phone 2=$domain.email}Please contact us at %1 or send email to %2 if you have questions.{/ts}

\n
\n
\n\n\n\n',1,723,0,1,NULL),(35,'Tell-a-Friend Email','{ts 1=$senderContactName 2=$title}%1 wants you to know about %2{/ts}\n','{$senderMessage}\n\n{if $generalLink}{ts}For more information, visit:{/ts}\n>> {$generalLink}\n\n{/if}\n{if $contribute}{ts}To make a contribution, go to:{/ts}\n>> {$pageURL}\n\n{/if}\n{if $event}{ts}To find out more about this event, go to:{/ts}\n>> {$pageURL}\n{/if}\n\n\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n
\n

{$senderMessage}

\n {if $generalLink}\n

{ts}More information{/ts}

\n {/if}\n {if $contribute}\n

{ts}Make a contribution{/ts}

\n {/if}\n {if $event}\n

{ts}Find out more about this event{/ts}

\n {/if}\n
\n
\n\n\n\n',1,724,1,0,NULL),(36,'Tell-a-Friend Email','{ts 1=$senderContactName 2=$title}%1 wants you to know about %2{/ts}\n','{$senderMessage}\n\n{if $generalLink}{ts}For more information, visit:{/ts}\n>> {$generalLink}\n\n{/if}\n{if $contribute}{ts}To make a contribution, go to:{/ts}\n>> {$pageURL}\n\n{/if}\n{if $event}{ts}To find out more about this event, go to:{/ts}\n>> {$pageURL}\n{/if}\n\n\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n
\n

{$senderMessage}

\n {if $generalLink}\n

{ts}More information{/ts}

\n {/if}\n {if $contribute}\n

{ts}Make a contribution{/ts}

\n {/if}\n {if $event}\n

{ts}Find out more about this event{/ts}

\n {/if}\n
\n
\n\n\n\n',1,724,0,1,NULL),(37,'Memberships - Signup and Renewal Receipts (off-line)','{if $receiptType EQ \'membership signup\'}\n{ts}Membership Confirmation and Receipt{/ts}\n{elseif $receiptType EQ \'membership renewal\'}\n{ts}Membership Renewal Confirmation and Receipt{/ts}\n{/if}\n','{if $formValues.receipt_text_signup}\n{$formValues.receipt_text_signup}\n{elseif $formValues.receipt_text_renewal}\n{$formValues.receipt_text_renewal}\n{else}{ts}Thanks for your support.{/ts}{/if}\n\n{if ! $cancelled}{ts}Please print this receipt for your records.{/ts}\n\n\n{/if}\n{if !$lineItem}\n===========================================================\n{ts}Membership Information{/ts}\n\n===========================================================\n{ts}Membership Type{/ts}: {$membership_name}\n{/if}\n{if ! $cancelled}\n{if !$lineItem}\n{ts}Membership Start Date{/ts}: {$mem_start_date}\n{ts}Membership End Date{/ts}: {$mem_end_date}\n{/if}\n\n{if $formValues.total_amount}\n===========================================================\n{ts}Membership Fee{/ts}\n\n===========================================================\n{if $formValues.contributionType_name}\n{ts}Financial Type{/ts}: {$formValues.contributionType_name}\n{/if}\n{if $lineItem}\n{foreach from=$lineItem item=value key=priceset}\n{capture assign=ts_item}{ts}Item{/ts}{/capture}\n{capture assign=ts_total}{ts}Fee{/ts}{/capture}\n{capture assign=ts_start_date}{ts}Membership Start Date{/ts}{/capture}\n{capture assign=ts_end_date}{ts}Membership End Date{/ts}{/capture}\n{$ts_item|string_format:\"%-30s\"} {$ts_total|string_format:\"%10s\"} {$ts_start_date|string_format:\"%20s\"} {$ts_end_date|string_format:\"%20s\"}\n--------------------------------------------------------------------------------------------------\n\n{foreach from=$value item=line}\n{capture assign=ts_item}{if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description} {$line.description}{/if}{/capture}{$ts_item|truncate:30:\"...\"|string_format:\"%-30s\"} {$line.line_total|crmMoney|string_format:\"%10s\"} {$line.start_date|string_format:\"%20s\"} {$line.end_date|string_format:\"%20s\"}\n{/foreach}\n{/foreach}\n--------------------------------------------------------------------------------------------------\n{/if}\n{ts}Amount{/ts}: {$formValues.total_amount|crmMoney}\n{if $receive_date}\n{ts}Received Date{/ts}: {$receive_date|truncate:10:\'\'|crmDate}\n{/if}\n{if $formValues.paidBy}\n{ts}Paid By{/ts}: {$formValues.paidBy}\n{if $formValues.check_number}\n{ts}Check Number{/ts}: {$formValues.check_number}\n{/if}\n{/if}\n{/if}\n{/if}\n\n{if $isPrimary }\n{if $contributeMode ne \'notify\' and !$isAmountzero and !$is_pay_later }\n\n===========================================================\n{ts}Billing Name and Address{/ts}\n\n===========================================================\n{$billingName}\n{$address}\n{/if}\n\n{if $contributeMode eq \'direct\' and !$isAmountzero and !$is_pay_later}\n===========================================================\n{ts}Credit Card Information{/ts}\n\n===========================================================\n{$credit_card_type}\n{$credit_card_number}\n{ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n{/if}\n{/if}\n\n{if $customValues}\n===========================================================\n{ts}Membership Options{/ts}\n\n===========================================================\n{foreach from=$customValues item=value key=customName}\n {$customName} : {$value}\n{/foreach}\n{/if}\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n \n \n \n\n {if $isPrimary}\n \n \n \n {/if}\n\n {if $customValues}\n \n \n \n {/if}\n\n
\n {if $formValues.receipt_text_signup}\n

{$formValues.receipt_text_signup|htmlize}

\n {elseif $formValues.receipt_text_renewal}\n

{$formValues.receipt_text_renewal|htmlize}

\n {else}\n

{ts}Thanks for your support.{/ts}

\n {/if}\n {if ! $cancelled}\n

{ts}Please print this receipt for your records.{/ts}

\n {/if}\n
\n \n {if !$lineItem}\n \n \n \n \n \n \n \n {/if}\n {if ! $cancelled}\n {if !$lineItem}\n \n \n \n \n \n \n \n \n {/if}\n {if $formValues.total_amount}\n \n \n \n {if $formValues.contributionType_name}\n \n \n \n \n {/if}\n\n {if $lineItem}\n {foreach from=$lineItem item=value key=priceset}\n \n \n \n {/foreach}\n {/if}\n \n \n \n \n {if $receive_date}\n \n \n \n \n {/if}\n {if $formValues.paidBy}\n \n \n \n \n {if $formValues.check_number}\n \n \n \n \n {/if}\n {/if}\n {/if}\n {/if}\n
\n {ts}Membership Information{/ts}\n
\n {ts}Membership Type{/ts}\n \n {$membership_name}\n
\n {ts}Membership Start Date{/ts}\n \n {$mem_start_date}\n
\n {ts}Membership End Date{/ts}\n \n {$mem_end_date}\n
\n {ts}Membership Fee{/ts}\n
\n {ts}Financial Type{/ts}\n \n {$formValues.contributionType_name}\n
\n {* FIXME: style this table so that it looks like the text version (justification, etc.) *}\n \n \n \n \n \n \n {foreach from=$value item=line}\n \n \n \n \n \n \n {/foreach}\n
{ts}Item{/ts}{ts}Fee{/ts}{ts}Membership Start Date{/ts}{ts}Membership End Date{/ts}
\n {if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description}
{$line.description|truncate:30:\"...\"}
{/if}\n
\n {$line.line_total|crmMoney}\n \n {$line.start_date}\n \n {$line.end_date}\n
\n
\n {ts}Amount{/ts}\n \n {$formValues.total_amount|crmMoney}\n
\n {ts}Received Date{/ts}\n \n {$receive_date|truncate:10:\'\'|crmDate}\n
\n {ts}Paid By{/ts}\n \n {$formValues.paidBy}\n
\n {ts}Check Number{/ts}\n \n {$formValues.check_number}\n
\n
\n \n\n {if $contributeMode ne \'notify\' and !$isAmountzero and !$is_pay_later }\n \n \n \n \n \n \n {/if}\n\n {if $contributeMode eq \'direct\' and !$isAmountzero and !$is_pay_later}\n \n \n \n \n \n \n \n \n \n \n {/if}\n\n
\n {ts}Billing Name and Address{/ts}\n
\n {$billingName}
\n {$address}\n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}\n
\n {ts}Expires{/ts}\n \n {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n
\n
\n \n \n \n \n {foreach from=$customValues item=value key=customName}\n \n \n \n \n {/foreach}\n
\n {ts}Membership Options{/ts}\n
\n {$customName}\n \n {$value}\n
\n
\n
\n\n\n\n',1,725,1,0,NULL),(38,'Memberships - Signup and Renewal Receipts (off-line)','{if $receiptType EQ \'membership signup\'}\n{ts}Membership Confirmation and Receipt{/ts}\n{elseif $receiptType EQ \'membership renewal\'}\n{ts}Membership Renewal Confirmation and Receipt{/ts}\n{/if}\n','{if $formValues.receipt_text_signup}\n{$formValues.receipt_text_signup}\n{elseif $formValues.receipt_text_renewal}\n{$formValues.receipt_text_renewal}\n{else}{ts}Thanks for your support.{/ts}{/if}\n\n{if ! $cancelled}{ts}Please print this receipt for your records.{/ts}\n\n\n{/if}\n{if !$lineItem}\n===========================================================\n{ts}Membership Information{/ts}\n\n===========================================================\n{ts}Membership Type{/ts}: {$membership_name}\n{/if}\n{if ! $cancelled}\n{if !$lineItem}\n{ts}Membership Start Date{/ts}: {$mem_start_date}\n{ts}Membership End Date{/ts}: {$mem_end_date}\n{/if}\n\n{if $formValues.total_amount}\n===========================================================\n{ts}Membership Fee{/ts}\n\n===========================================================\n{if $formValues.contributionType_name}\n{ts}Financial Type{/ts}: {$formValues.contributionType_name}\n{/if}\n{if $lineItem}\n{foreach from=$lineItem item=value key=priceset}\n{capture assign=ts_item}{ts}Item{/ts}{/capture}\n{capture assign=ts_total}{ts}Fee{/ts}{/capture}\n{capture assign=ts_start_date}{ts}Membership Start Date{/ts}{/capture}\n{capture assign=ts_end_date}{ts}Membership End Date{/ts}{/capture}\n{$ts_item|string_format:\"%-30s\"} {$ts_total|string_format:\"%10s\"} {$ts_start_date|string_format:\"%20s\"} {$ts_end_date|string_format:\"%20s\"}\n--------------------------------------------------------------------------------------------------\n\n{foreach from=$value item=line}\n{capture assign=ts_item}{if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description} {$line.description}{/if}{/capture}{$ts_item|truncate:30:\"...\"|string_format:\"%-30s\"} {$line.line_total|crmMoney|string_format:\"%10s\"} {$line.start_date|string_format:\"%20s\"} {$line.end_date|string_format:\"%20s\"}\n{/foreach}\n{/foreach}\n--------------------------------------------------------------------------------------------------\n{/if}\n{ts}Amount{/ts}: {$formValues.total_amount|crmMoney}\n{if $receive_date}\n{ts}Received Date{/ts}: {$receive_date|truncate:10:\'\'|crmDate}\n{/if}\n{if $formValues.paidBy}\n{ts}Paid By{/ts}: {$formValues.paidBy}\n{if $formValues.check_number}\n{ts}Check Number{/ts}: {$formValues.check_number}\n{/if}\n{/if}\n{/if}\n{/if}\n\n{if $isPrimary }\n{if $contributeMode ne \'notify\' and !$isAmountzero and !$is_pay_later }\n\n===========================================================\n{ts}Billing Name and Address{/ts}\n\n===========================================================\n{$billingName}\n{$address}\n{/if}\n\n{if $contributeMode eq \'direct\' and !$isAmountzero and !$is_pay_later}\n===========================================================\n{ts}Credit Card Information{/ts}\n\n===========================================================\n{$credit_card_type}\n{$credit_card_number}\n{ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n{/if}\n{/if}\n\n{if $customValues}\n===========================================================\n{ts}Membership Options{/ts}\n\n===========================================================\n{foreach from=$customValues item=value key=customName}\n {$customName} : {$value}\n{/foreach}\n{/if}\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n \n \n \n\n {if $isPrimary}\n \n \n \n {/if}\n\n {if $customValues}\n \n \n \n {/if}\n\n
\n {if $formValues.receipt_text_signup}\n

{$formValues.receipt_text_signup|htmlize}

\n {elseif $formValues.receipt_text_renewal}\n

{$formValues.receipt_text_renewal|htmlize}

\n {else}\n

{ts}Thanks for your support.{/ts}

\n {/if}\n {if ! $cancelled}\n

{ts}Please print this receipt for your records.{/ts}

\n {/if}\n
\n \n {if !$lineItem}\n \n \n \n \n \n \n \n {/if}\n {if ! $cancelled}\n {if !$lineItem}\n \n \n \n \n \n \n \n \n {/if}\n {if $formValues.total_amount}\n \n \n \n {if $formValues.contributionType_name}\n \n \n \n \n {/if}\n\n {if $lineItem}\n {foreach from=$lineItem item=value key=priceset}\n \n \n \n {/foreach}\n {/if}\n \n \n \n \n {if $receive_date}\n \n \n \n \n {/if}\n {if $formValues.paidBy}\n \n \n \n \n {if $formValues.check_number}\n \n \n \n \n {/if}\n {/if}\n {/if}\n {/if}\n
\n {ts}Membership Information{/ts}\n
\n {ts}Membership Type{/ts}\n \n {$membership_name}\n
\n {ts}Membership Start Date{/ts}\n \n {$mem_start_date}\n
\n {ts}Membership End Date{/ts}\n \n {$mem_end_date}\n
\n {ts}Membership Fee{/ts}\n
\n {ts}Financial Type{/ts}\n \n {$formValues.contributionType_name}\n
\n {* FIXME: style this table so that it looks like the text version (justification, etc.) *}\n \n \n \n \n \n \n {foreach from=$value item=line}\n \n \n \n \n \n \n {/foreach}\n
{ts}Item{/ts}{ts}Fee{/ts}{ts}Membership Start Date{/ts}{ts}Membership End Date{/ts}
\n {if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description}
{$line.description|truncate:30:\"...\"}
{/if}\n
\n {$line.line_total|crmMoney}\n \n {$line.start_date}\n \n {$line.end_date}\n
\n
\n {ts}Amount{/ts}\n \n {$formValues.total_amount|crmMoney}\n
\n {ts}Received Date{/ts}\n \n {$receive_date|truncate:10:\'\'|crmDate}\n
\n {ts}Paid By{/ts}\n \n {$formValues.paidBy}\n
\n {ts}Check Number{/ts}\n \n {$formValues.check_number}\n
\n
\n \n\n {if $contributeMode ne \'notify\' and !$isAmountzero and !$is_pay_later }\n \n \n \n \n \n \n {/if}\n\n {if $contributeMode eq \'direct\' and !$isAmountzero and !$is_pay_later}\n \n \n \n \n \n \n \n \n \n \n {/if}\n\n
\n {ts}Billing Name and Address{/ts}\n
\n {$billingName}
\n {$address}\n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}\n
\n {ts}Expires{/ts}\n \n {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n
\n
\n \n \n \n \n {foreach from=$customValues item=value key=customName}\n \n \n \n \n {/foreach}\n
\n {ts}Membership Options{/ts}\n
\n {$customName}\n \n {$value}\n
\n
\n
\n\n\n\n',1,725,0,1,NULL),(39,'Memberships - Receipt (on-line)','{if $is_pay_later}{ts}Invoice{/ts}{else}{ts}Receipt{/ts}{/if} - {$title}\n','{if $receipt_text}\n{$receipt_text}\n{/if}\n{if $is_pay_later}\n\n===========================================================\n{$pay_later_receipt}\n===========================================================\n{else}\n\n{ts}Please print this receipt for your records.{/ts}\n{/if}\n\n{if $membership_assign && !$useForMember}\n===========================================================\n{ts}Membership Information{/ts}\n\n===========================================================\n{ts}Membership Type{/ts}: {$membership_name}\n{if $mem_start_date}{ts}Membership Start Date{/ts}: {$mem_start_date|crmDate}\n{/if}\n{if $mem_end_date}{ts}Membership End Date{/ts}: {$mem_end_date|crmDate}\n{/if}\n\n{/if}\n{if $amount}\n===========================================================\n{ts}Membership Fee{/ts}\n\n===========================================================\n{if !$useForMember && $membership_amount && $is_quick_config}\n{ts 1=$membership_name}%1 Membership{/ts}: {$membership_amount|crmMoney}\n{if $amount}\n{if ! $is_separate_payment }\n{ts}Contribution Amount{/ts}: {$amount|crmMoney}\n{else}\n{ts}Additional Contribution{/ts}: {$amount|crmMoney}\n{/if}\n{/if}\n-------------------------------------------\n{ts}Total{/ts}: {$amount+$membership_amount|crmMoney}\n{elseif !$useForMember && $lineItem and $priceSetID & !$is_quick_config}\n{foreach from=$lineItem item=value key=priceset}\n---------------------------------------------------------\n{capture assign=ts_item}{ts}Item{/ts}{/capture}\n{capture assign=ts_qty}{ts}Qty{/ts}{/capture}\n{capture assign=ts_each}{ts}Each{/ts}{/capture}\n{capture assign=ts_total}{ts}Total{/ts}{/capture}\n{$ts_item|string_format:\"%-30s\"} {$ts_qty|string_format:\"%5s\"} {$ts_each|string_format:\"%10s\"} {$ts_total|string_format:\"%10s\"}\n----------------------------------------------------------\n{foreach from=$value item=line}\n{$line.description|truncate:30:\"...\"|string_format:\"%-30s\"} {$line.qty|string_format:\"%5s\"} {$line.unit_price|crmMoney|string_format:\"%10s\"} {$line.line_total|crmMoney|string_format:\"%10s\"}\n{/foreach}\n{/foreach}\n\n{ts}Total Amount{/ts}: {$amount|crmMoney}\n{else}\n{if $useForMember && $lineItem && !$is_quick_config}\n{foreach from=$lineItem item=value key=priceset}\n{capture assign=ts_item}{ts}Item{/ts}{/capture}\n{capture assign=ts_total}{ts}Fee{/ts}{/capture}\n{capture assign=ts_start_date}{ts}Membership Start Date{/ts}{/capture}\n{capture assign=ts_end_date}{ts}Membership End Date{/ts}{/capture}\n{$ts_item|string_format:\"%-30s\"} {$ts_total|string_format:\"%10s\"} {$ts_start_date|string_format:\"%20s\"} {$ts_end_date|string_format:\"%20s\"}\n--------------------------------------------------------------------------------------------------\n\n{foreach from=$value item=line}\n{capture assign=ts_item}{if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description} {$line.description}{/if}{/capture}{$ts_item|truncate:30:\"...\"|string_format:\"%-30s\"} {$line.line_total|crmMoney|string_format:\"%10s\"} {$line.start_date|string_format:\"%20s\"} {$line.end_date|string_format:\"%20s\"}\n{/foreach}\n{/foreach}\n--------------------------------------------------------------------------------------------------\n{/if}\n{ts}Amount{/ts}: {$amount|crmMoney} {if $amount_level } - {$amount_level} {/if}\n{/if}\n{elseif $membership_amount}\n===========================================================\n{ts}Membership Fee{/ts}\n\n===========================================================\n{ts 1=$membership_name}%1 Membership{/ts}: {$membership_amount|crmMoney}\n{/if}\n\n{if $receive_date}\n\n{ts}Date{/ts}: {$receive_date|crmDate}\n{/if}\n{if $is_monetary and $trxn_id}\n{ts}Transaction #{/ts}: {$trxn_id}\n\n{/if}\n{if $membership_trx_id}\n{ts}Membership Transaction #{/ts}: {$membership_trx_id}\n\n{/if}\n{if $is_recur}\n{if $contributeMode eq \'notify\' or $contributeMode eq \'directIPN\'}\n{ts 1=$cancelSubscriptionUrl}This membership will be renewed automatically. You can cancel the auto-renewal option by visiting this web page: %1.{/ts}\n\n{ts 1=$updateSubscriptionBillingUrl}You can update billing details for this automatically renewed membership by visiting this web page.{/ts}\n{/if}\n{/if}\n\n{if $honor_block_is_active }\n===========================================================\n{$honor_type}\n===========================================================\n{$honor_prefix} {$honor_first_name} {$honor_last_name}\n{if $honor_email}\n{ts}Honoree Email{/ts}: {$honor_email}\n{/if}\n\n{/if}\n{if $pcpBlock}\n===========================================================\n{ts}Personal Campaign Page{/ts}\n\n===========================================================\n{ts}Display In Honor Roll{/ts}: {if $pcp_display_in_roll}{ts}Yes{/ts}{else}{ts}No{/ts}{/if}\n\n{if $pcp_roll_nickname}{ts}Nickname{/ts}: {$pcp_roll_nickname}{/if}\n\n{if $pcp_personal_note}{ts}Personal Note{/ts}: {$pcp_personal_note}{/if}\n\n{/if}\n{if $onBehalfProfile}\n===========================================================\n{ts}On Behalf Of{/ts}\n\n===========================================================\n{foreach from=$onBehalfProfile item=onBehalfValue key=onBehalfName}\n{$onBehalfName}: {$onBehalfValue}\n{/foreach}\n{/if}\n\n{if !( $contributeMode eq \'notify\' OR $contributeMode eq \'directIPN\' ) and $is_monetary}\n{if $is_pay_later}\n===========================================================\n{ts}Registered Email{/ts}\n\n===========================================================\n{$email}\n{elseif $amount GT 0 OR $membership_amount GT 0 }\n===========================================================\n{ts}Billing Name and Address{/ts}\n\n===========================================================\n{$billingName}\n{$address}\n\n{$email}\n{/if} {* End ! is_pay_later condition. *}\n{/if}\n{if $contributeMode eq \'direct\' AND !$is_pay_later AND ( $amount GT 0 OR $membership_amount GT 0 ) }\n\n===========================================================\n{ts}Credit Card Information{/ts}\n\n===========================================================\n{$credit_card_type}\n{$credit_card_number}\n{ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n{/if}\n\n{if $selectPremium }\n===========================================================\n{ts}Premium Information{/ts}\n\n===========================================================\n{$product_name}\n{if $option}\n{ts}Option{/ts}: {$option}\n{/if}\n{if $sku}\n{ts}SKU{/ts}: {$sku}\n{/if}\n{if $start_date}\n{ts}Start Date{/ts}: {$start_date|crmDate}\n{/if}\n{if $end_date}\n{ts}End Date{/ts}: {$end_date|crmDate}\n{/if}\n{if $contact_email OR $contact_phone}\n\n{ts}For information about this premium, contact:{/ts}\n\n{if $contact_email}\n {$contact_email}\n{/if}\n{if $contact_phone}\n {$contact_phone}\n{/if}\n{/if}\n{if $is_deductible AND $price}\n\n{ts 1=$price|crmMoney}The value of this premium is %1. This may affect the amount of the tax deduction you can claim. Consult your tax advisor for more information.{/ts}{/if}\n{/if}\n\n{if $customPre}\n===========================================================\n{$customPre_grouptitle}\n\n===========================================================\n{foreach from=$customPre item=customValue key=customName}\n{if ( $trackingFields and ! in_array( $customName, $trackingFields ) ) or ! $trackingFields}\n {$customName}: {$customValue}\n{/if}\n{/foreach}\n{/if}\n\n\n{if $customPost}\n===========================================================\n{$customPost_grouptitle}\n\n===========================================================\n{foreach from=$customPost item=customValue key=customName}\n{if ( $trackingFields and ! in_array( $customName, $trackingFields ) ) or ! $trackingFields}\n {$customName}: {$customValue}\n{/if}\n{/foreach}\n{/if}\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n
\n\n {if $receipt_text}\n

{$receipt_text|htmlize}

\n {/if}\n\n {if $is_pay_later}\n

{$pay_later_receipt}

{* FIXME: this might be text rather than HTML *}\n {else}\n

{ts}Please print this confirmation for your records.{/ts}

\n {/if}\n\n
\n \n\n {if $membership_assign && !$useForMember}\n \n \n \n \n \n \n \n {if $mem_start_date}\n \n \n \n \n {/if}\n {if $mem_end_date}\n \n \n \n \n {/if}\n {/if}\n\n\n {if $amount}\n \n \n \n\n {if !$useForMember and $membership_amount and $is_quick_config}\n\n \n \n \n \n {if $amount}\n {if ! $is_separate_payment }\n \n \n \n \n {else}\n \n \n \n \n {/if}\n {/if}\n \n \n \n \n\n {elseif !$useForMember && $lineItem and $priceSetID and !$is_quick_config}\n\n {foreach from=$lineItem item=value key=priceset}\n \n \n \n {/foreach}\n \n \n \n \n\n {else}\n {if $useForMember && $lineItem and !$is_quick_config}\n {foreach from=$lineItem item=value key=priceset}\n \n \n \n {/foreach}\n {/if}\n \n \n \n \n\n {/if}\n\n\n {elseif $membership_amount}\n\n\n \n \n \n \n \n \n \n\n\n {/if}\n\n {if $receive_date}\n \n \n \n \n {/if}\n\n {if $is_monetary and $trxn_id}\n \n \n \n \n {/if}\n\n {if $membership_trx_id}\n \n \n \n \n {/if}\n {if $is_recur}\n {if $contributeMode eq \'notify\' or $contributeMode eq \'directIPN\'}\n \n \n \n \n \n \n {/if}\n {/if}\n\n {if $honor_block_is_active}\n \n \n \n \n \n \n {if $honor_email}\n \n \n \n \n {/if}\n {/if}\n\n {if $pcpBlock}\n \n \n \n \n \n \n \n {if $pcp_roll_nickname}\n \n \n \n \n {/if}\n {if $pcp_personal_note}\n \n \n \n \n {/if}\n {/if}\n\n {if $onBehalfProfile}\n \n \n \n {foreach from=$onBehalfProfile item=onBehalfValue key=onBehalfName}\n \n \n \n \n {/foreach}\n {/if}\n\n {if ! ($contributeMode eq \'notify\' OR $contributeMode eq \'directIPN\') and $is_monetary}\n {if $is_pay_later}\n \n \n \n \n \n \n {elseif $amount GT 0 OR $membership_amount GT 0}\n \n \n \n \n \n \n {/if}\n {/if}\n\n {if $contributeMode eq \'direct\' AND !$is_pay_later AND ($amount GT 0 OR $membership_amount GT 0)}\n \n \n \n \n \n \n {/if}\n\n {if $selectPremium}\n \n \n \n \n \n \n {if $option}\n \n \n \n \n {/if}\n {if $sku}\n \n \n \n \n {/if}\n {if $start_date}\n \n \n \n \n {/if}\n {if $end_date}\n \n \n \n \n {/if}\n {if $contact_email OR $contact_phone}\n \n \n \n {/if}\n {if $is_deductible AND $price}\n \n \n \n {/if}\n {/if}\n\n {if $customPre}\n \n \n \n {foreach from=$customPre item=customValue key=customName}\n {if ($trackingFields and ! in_array($customName, $trackingFields)) or ! $trackingFields}\n \n \n \n \n {/if}\n {/foreach}\n {/if}\n\n {if $customPost}\n \n \n \n {foreach from=$customPost item=customValue key=customName}\n {if ($trackingFields and ! in_array($customName, $trackingFields)) or ! $trackingFields}\n \n \n \n \n {/if}\n {/foreach}\n {/if}\n\n
\n {ts}Membership Information{/ts}\n
\n {ts}Membership Type{/ts}\n \n {$membership_name}\n
\n {ts}Membership Start Date{/ts}\n \n {$mem_start_date|crmDate}\n
\n {ts}Membership End Date{/ts}\n \n {$mem_end_date|crmDate}\n
\n {ts}Membership Fee{/ts}\n
\n {ts 1=$membership_name}%1 Membership{/ts}\n \n {$membership_amount|crmMoney}\n
\n {ts}Contribution Amount{/ts}\n \n {$amount|crmMoney}\n
\n {ts}Additional Contribution{/ts}\n \n {$amount|crmMoney}\n
\n {ts}Total{/ts}\n \n {$amount+$membership_amount|crmMoney}\n
\n {* FIXME: style this table so that it looks like the text version (justification, etc.) *}\n \n \n \n \n \n \n {foreach from=$value item=line}\n \n \n \n \n \n \n {/foreach}\n
{ts}Item{/ts}{ts}Qty{/ts}{ts}Each{/ts}{ts}Total{/ts}
\n {$line.description|truncate:30:\"...\"}\n \n {$line.qty}\n \n {$line.unit_price|crmMoney}\n \n {$line.line_total|crmMoney}\n
\n
\n {ts}Total Amount{/ts}\n \n {$amount|crmMoney}\n
\n {* FIXME: style this table so that it looks like the text version (justification, etc.) *}\n \n \n \n \n \n \n {foreach from=$value item=line}\n \n \n \n \n \n \n {/foreach}\n
{ts}Item{/ts}{ts}Fee{/ts}{ts}Membership Start Date{/ts}{ts}Membership End Date{/ts}
\n {if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description}
{$line.description|truncate:30:\"...\"}
{/if}\n
\n {$line.line_total|crmMoney}\n \n {$line.start_date}\n \n {$line.end_date}\n
\n
\n {ts}Amount{/ts}\n \n {$amount|crmMoney} {if $amount_level} - {$amount_level}{/if}\n
\n {ts}Membership Fee{/ts}\n
\n {ts 1=$membership_name}%1 Membership{/ts}\n \n {$membership_amount|crmMoney}\n
\n {ts}Date{/ts}\n \n {$receive_date|crmDate}\n
\n {ts}Transaction #{/ts}\n \n {$trxn_id}\n
\n {ts}Membership Transaction #{/ts}\n \n {$membership_trx_id}\n
\n {ts 1=$cancelSubscriptionUrl}This membership will be renewed automatically. You can cancel the auto-renewal option by visiting this web page.{/ts}\n
\n {ts 1=$updateSubscriptionBillingUrl}You can update billing details for this automatically renewed membership by visiting this web page.{/ts}\n
\n {$honor_type}\n
\n {$honor_prefix} {$honor_first_name} {$honor_last_name}\n
\n {ts}Honoree Email{/ts}\n \n {$honor_email}\n
\n {ts}Personal Campaign Page{/ts}\n
\n {ts}Display In Honor Roll{/ts}\n \n {if $pcp_display_in_roll}{ts}Yes{/ts}{else}{ts}No{/ts}{/if}\n
\n {ts}Nickname{/ts}\n \n {$pcp_roll_nickname}\n
\n {ts}Personal Note{/ts}\n \n {$pcp_personal_note}\n
\n {$onBehalfProfile_grouptitle}\n
\n {$onBehalfName}\n \n {$onBehalfValue}\n
\n {ts}Registered Email{/ts}\n
\n {$email}\n
\n {ts}Billing Name and Address{/ts}\n
\n {$billingName}
\n {$address|nl2br}
\n {$email}\n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}
\n {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}
\n
\n {ts}Premium Information{/ts}\n
\n {$product_name}\n
\n {ts}Option{/ts}\n \n {$option}\n
\n {ts}SKU{/ts}\n \n {$sku}\n
\n {ts}Start Date{/ts}\n \n {$start_date|crmDate}\n
\n {ts}End Date{/ts}\n \n {$end_date|crmDate}\n
\n

{ts}For information about this premium, contact:{/ts}

\n {if $contact_email}\n

{$contact_email}

\n {/if}\n {if $contact_phone}\n

{$contact_phone}

\n {/if}\n
\n

{ts 1=$price|crmMoney}The value of this premium is %1. This may affect the amount of the tax deduction you can claim. Consult your tax advisor for more information.{/ts}

\n
\n {$customPre_grouptitle}\n
\n {$customName}\n \n {$customValue}\n
\n {$customPost_grouptitle}\n
\n {$customName}\n \n {$customValue}\n
\n
\n\n\n\n',1,726,1,0,NULL),(40,'Memberships - Receipt (on-line)','{if $is_pay_later}{ts}Invoice{/ts}{else}{ts}Receipt{/ts}{/if} - {$title}\n','{if $receipt_text}\n{$receipt_text}\n{/if}\n{if $is_pay_later}\n\n===========================================================\n{$pay_later_receipt}\n===========================================================\n{else}\n\n{ts}Please print this receipt for your records.{/ts}\n{/if}\n\n{if $membership_assign && !$useForMember}\n===========================================================\n{ts}Membership Information{/ts}\n\n===========================================================\n{ts}Membership Type{/ts}: {$membership_name}\n{if $mem_start_date}{ts}Membership Start Date{/ts}: {$mem_start_date|crmDate}\n{/if}\n{if $mem_end_date}{ts}Membership End Date{/ts}: {$mem_end_date|crmDate}\n{/if}\n\n{/if}\n{if $amount}\n===========================================================\n{ts}Membership Fee{/ts}\n\n===========================================================\n{if !$useForMember && $membership_amount && $is_quick_config}\n{ts 1=$membership_name}%1 Membership{/ts}: {$membership_amount|crmMoney}\n{if $amount}\n{if ! $is_separate_payment }\n{ts}Contribution Amount{/ts}: {$amount|crmMoney}\n{else}\n{ts}Additional Contribution{/ts}: {$amount|crmMoney}\n{/if}\n{/if}\n-------------------------------------------\n{ts}Total{/ts}: {$amount+$membership_amount|crmMoney}\n{elseif !$useForMember && $lineItem and $priceSetID & !$is_quick_config}\n{foreach from=$lineItem item=value key=priceset}\n---------------------------------------------------------\n{capture assign=ts_item}{ts}Item{/ts}{/capture}\n{capture assign=ts_qty}{ts}Qty{/ts}{/capture}\n{capture assign=ts_each}{ts}Each{/ts}{/capture}\n{capture assign=ts_total}{ts}Total{/ts}{/capture}\n{$ts_item|string_format:\"%-30s\"} {$ts_qty|string_format:\"%5s\"} {$ts_each|string_format:\"%10s\"} {$ts_total|string_format:\"%10s\"}\n----------------------------------------------------------\n{foreach from=$value item=line}\n{$line.description|truncate:30:\"...\"|string_format:\"%-30s\"} {$line.qty|string_format:\"%5s\"} {$line.unit_price|crmMoney|string_format:\"%10s\"} {$line.line_total|crmMoney|string_format:\"%10s\"}\n{/foreach}\n{/foreach}\n\n{ts}Total Amount{/ts}: {$amount|crmMoney}\n{else}\n{if $useForMember && $lineItem && !$is_quick_config}\n{foreach from=$lineItem item=value key=priceset}\n{capture assign=ts_item}{ts}Item{/ts}{/capture}\n{capture assign=ts_total}{ts}Fee{/ts}{/capture}\n{capture assign=ts_start_date}{ts}Membership Start Date{/ts}{/capture}\n{capture assign=ts_end_date}{ts}Membership End Date{/ts}{/capture}\n{$ts_item|string_format:\"%-30s\"} {$ts_total|string_format:\"%10s\"} {$ts_start_date|string_format:\"%20s\"} {$ts_end_date|string_format:\"%20s\"}\n--------------------------------------------------------------------------------------------------\n\n{foreach from=$value item=line}\n{capture assign=ts_item}{if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description} {$line.description}{/if}{/capture}{$ts_item|truncate:30:\"...\"|string_format:\"%-30s\"} {$line.line_total|crmMoney|string_format:\"%10s\"} {$line.start_date|string_format:\"%20s\"} {$line.end_date|string_format:\"%20s\"}\n{/foreach}\n{/foreach}\n--------------------------------------------------------------------------------------------------\n{/if}\n{ts}Amount{/ts}: {$amount|crmMoney} {if $amount_level } - {$amount_level} {/if}\n{/if}\n{elseif $membership_amount}\n===========================================================\n{ts}Membership Fee{/ts}\n\n===========================================================\n{ts 1=$membership_name}%1 Membership{/ts}: {$membership_amount|crmMoney}\n{/if}\n\n{if $receive_date}\n\n{ts}Date{/ts}: {$receive_date|crmDate}\n{/if}\n{if $is_monetary and $trxn_id}\n{ts}Transaction #{/ts}: {$trxn_id}\n\n{/if}\n{if $membership_trx_id}\n{ts}Membership Transaction #{/ts}: {$membership_trx_id}\n\n{/if}\n{if $is_recur}\n{if $contributeMode eq \'notify\' or $contributeMode eq \'directIPN\'}\n{ts 1=$cancelSubscriptionUrl}This membership will be renewed automatically. You can cancel the auto-renewal option by visiting this web page: %1.{/ts}\n\n{ts 1=$updateSubscriptionBillingUrl}You can update billing details for this automatically renewed membership by visiting this web page.{/ts}\n{/if}\n{/if}\n\n{if $honor_block_is_active }\n===========================================================\n{$honor_type}\n===========================================================\n{$honor_prefix} {$honor_first_name} {$honor_last_name}\n{if $honor_email}\n{ts}Honoree Email{/ts}: {$honor_email}\n{/if}\n\n{/if}\n{if $pcpBlock}\n===========================================================\n{ts}Personal Campaign Page{/ts}\n\n===========================================================\n{ts}Display In Honor Roll{/ts}: {if $pcp_display_in_roll}{ts}Yes{/ts}{else}{ts}No{/ts}{/if}\n\n{if $pcp_roll_nickname}{ts}Nickname{/ts}: {$pcp_roll_nickname}{/if}\n\n{if $pcp_personal_note}{ts}Personal Note{/ts}: {$pcp_personal_note}{/if}\n\n{/if}\n{if $onBehalfProfile}\n===========================================================\n{ts}On Behalf Of{/ts}\n\n===========================================================\n{foreach from=$onBehalfProfile item=onBehalfValue key=onBehalfName}\n{$onBehalfName}: {$onBehalfValue}\n{/foreach}\n{/if}\n\n{if !( $contributeMode eq \'notify\' OR $contributeMode eq \'directIPN\' ) and $is_monetary}\n{if $is_pay_later}\n===========================================================\n{ts}Registered Email{/ts}\n\n===========================================================\n{$email}\n{elseif $amount GT 0 OR $membership_amount GT 0 }\n===========================================================\n{ts}Billing Name and Address{/ts}\n\n===========================================================\n{$billingName}\n{$address}\n\n{$email}\n{/if} {* End ! is_pay_later condition. *}\n{/if}\n{if $contributeMode eq \'direct\' AND !$is_pay_later AND ( $amount GT 0 OR $membership_amount GT 0 ) }\n\n===========================================================\n{ts}Credit Card Information{/ts}\n\n===========================================================\n{$credit_card_type}\n{$credit_card_number}\n{ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n{/if}\n\n{if $selectPremium }\n===========================================================\n{ts}Premium Information{/ts}\n\n===========================================================\n{$product_name}\n{if $option}\n{ts}Option{/ts}: {$option}\n{/if}\n{if $sku}\n{ts}SKU{/ts}: {$sku}\n{/if}\n{if $start_date}\n{ts}Start Date{/ts}: {$start_date|crmDate}\n{/if}\n{if $end_date}\n{ts}End Date{/ts}: {$end_date|crmDate}\n{/if}\n{if $contact_email OR $contact_phone}\n\n{ts}For information about this premium, contact:{/ts}\n\n{if $contact_email}\n {$contact_email}\n{/if}\n{if $contact_phone}\n {$contact_phone}\n{/if}\n{/if}\n{if $is_deductible AND $price}\n\n{ts 1=$price|crmMoney}The value of this premium is %1. This may affect the amount of the tax deduction you can claim. Consult your tax advisor for more information.{/ts}{/if}\n{/if}\n\n{if $customPre}\n===========================================================\n{$customPre_grouptitle}\n\n===========================================================\n{foreach from=$customPre item=customValue key=customName}\n{if ( $trackingFields and ! in_array( $customName, $trackingFields ) ) or ! $trackingFields}\n {$customName}: {$customValue}\n{/if}\n{/foreach}\n{/if}\n\n\n{if $customPost}\n===========================================================\n{$customPost_grouptitle}\n\n===========================================================\n{foreach from=$customPost item=customValue key=customName}\n{if ( $trackingFields and ! in_array( $customName, $trackingFields ) ) or ! $trackingFields}\n {$customName}: {$customValue}\n{/if}\n{/foreach}\n{/if}\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n
\n\n {if $receipt_text}\n

{$receipt_text|htmlize}

\n {/if}\n\n {if $is_pay_later}\n

{$pay_later_receipt}

{* FIXME: this might be text rather than HTML *}\n {else}\n

{ts}Please print this confirmation for your records.{/ts}

\n {/if}\n\n
\n \n\n {if $membership_assign && !$useForMember}\n \n \n \n \n \n \n \n {if $mem_start_date}\n \n \n \n \n {/if}\n {if $mem_end_date}\n \n \n \n \n {/if}\n {/if}\n\n\n {if $amount}\n \n \n \n\n {if !$useForMember and $membership_amount and $is_quick_config}\n\n \n \n \n \n {if $amount}\n {if ! $is_separate_payment }\n \n \n \n \n {else}\n \n \n \n \n {/if}\n {/if}\n \n \n \n \n\n {elseif !$useForMember && $lineItem and $priceSetID and !$is_quick_config}\n\n {foreach from=$lineItem item=value key=priceset}\n \n \n \n {/foreach}\n \n \n \n \n\n {else}\n {if $useForMember && $lineItem and !$is_quick_config}\n {foreach from=$lineItem item=value key=priceset}\n \n \n \n {/foreach}\n {/if}\n \n \n \n \n\n {/if}\n\n\n {elseif $membership_amount}\n\n\n \n \n \n \n \n \n \n\n\n {/if}\n\n {if $receive_date}\n \n \n \n \n {/if}\n\n {if $is_monetary and $trxn_id}\n \n \n \n \n {/if}\n\n {if $membership_trx_id}\n \n \n \n \n {/if}\n {if $is_recur}\n {if $contributeMode eq \'notify\' or $contributeMode eq \'directIPN\'}\n \n \n \n \n \n \n {/if}\n {/if}\n\n {if $honor_block_is_active}\n \n \n \n \n \n \n {if $honor_email}\n \n \n \n \n {/if}\n {/if}\n\n {if $pcpBlock}\n \n \n \n \n \n \n \n {if $pcp_roll_nickname}\n \n \n \n \n {/if}\n {if $pcp_personal_note}\n \n \n \n \n {/if}\n {/if}\n\n {if $onBehalfProfile}\n \n \n \n {foreach from=$onBehalfProfile item=onBehalfValue key=onBehalfName}\n \n \n \n \n {/foreach}\n {/if}\n\n {if ! ($contributeMode eq \'notify\' OR $contributeMode eq \'directIPN\') and $is_monetary}\n {if $is_pay_later}\n \n \n \n \n \n \n {elseif $amount GT 0 OR $membership_amount GT 0}\n \n \n \n \n \n \n {/if}\n {/if}\n\n {if $contributeMode eq \'direct\' AND !$is_pay_later AND ($amount GT 0 OR $membership_amount GT 0)}\n \n \n \n \n \n \n {/if}\n\n {if $selectPremium}\n \n \n \n \n \n \n {if $option}\n \n \n \n \n {/if}\n {if $sku}\n \n \n \n \n {/if}\n {if $start_date}\n \n \n \n \n {/if}\n {if $end_date}\n \n \n \n \n {/if}\n {if $contact_email OR $contact_phone}\n \n \n \n {/if}\n {if $is_deductible AND $price}\n \n \n \n {/if}\n {/if}\n\n {if $customPre}\n \n \n \n {foreach from=$customPre item=customValue key=customName}\n {if ($trackingFields and ! in_array($customName, $trackingFields)) or ! $trackingFields}\n \n \n \n \n {/if}\n {/foreach}\n {/if}\n\n {if $customPost}\n \n \n \n {foreach from=$customPost item=customValue key=customName}\n {if ($trackingFields and ! in_array($customName, $trackingFields)) or ! $trackingFields}\n \n \n \n \n {/if}\n {/foreach}\n {/if}\n\n
\n {ts}Membership Information{/ts}\n
\n {ts}Membership Type{/ts}\n \n {$membership_name}\n
\n {ts}Membership Start Date{/ts}\n \n {$mem_start_date|crmDate}\n
\n {ts}Membership End Date{/ts}\n \n {$mem_end_date|crmDate}\n
\n {ts}Membership Fee{/ts}\n
\n {ts 1=$membership_name}%1 Membership{/ts}\n \n {$membership_amount|crmMoney}\n
\n {ts}Contribution Amount{/ts}\n \n {$amount|crmMoney}\n
\n {ts}Additional Contribution{/ts}\n \n {$amount|crmMoney}\n
\n {ts}Total{/ts}\n \n {$amount+$membership_amount|crmMoney}\n
\n {* FIXME: style this table so that it looks like the text version (justification, etc.) *}\n \n \n \n \n \n \n {foreach from=$value item=line}\n \n \n \n \n \n \n {/foreach}\n
{ts}Item{/ts}{ts}Qty{/ts}{ts}Each{/ts}{ts}Total{/ts}
\n {$line.description|truncate:30:\"...\"}\n \n {$line.qty}\n \n {$line.unit_price|crmMoney}\n \n {$line.line_total|crmMoney}\n
\n
\n {ts}Total Amount{/ts}\n \n {$amount|crmMoney}\n
\n {* FIXME: style this table so that it looks like the text version (justification, etc.) *}\n \n \n \n \n \n \n {foreach from=$value item=line}\n \n \n \n \n \n \n {/foreach}\n
{ts}Item{/ts}{ts}Fee{/ts}{ts}Membership Start Date{/ts}{ts}Membership End Date{/ts}
\n {if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description}
{$line.description|truncate:30:\"...\"}
{/if}\n
\n {$line.line_total|crmMoney}\n \n {$line.start_date}\n \n {$line.end_date}\n
\n
\n {ts}Amount{/ts}\n \n {$amount|crmMoney} {if $amount_level} - {$amount_level}{/if}\n
\n {ts}Membership Fee{/ts}\n
\n {ts 1=$membership_name}%1 Membership{/ts}\n \n {$membership_amount|crmMoney}\n
\n {ts}Date{/ts}\n \n {$receive_date|crmDate}\n
\n {ts}Transaction #{/ts}\n \n {$trxn_id}\n
\n {ts}Membership Transaction #{/ts}\n \n {$membership_trx_id}\n
\n {ts 1=$cancelSubscriptionUrl}This membership will be renewed automatically. You can cancel the auto-renewal option by visiting this web page.{/ts}\n
\n {ts 1=$updateSubscriptionBillingUrl}You can update billing details for this automatically renewed membership by visiting this web page.{/ts}\n
\n {$honor_type}\n
\n {$honor_prefix} {$honor_first_name} {$honor_last_name}\n
\n {ts}Honoree Email{/ts}\n \n {$honor_email}\n
\n {ts}Personal Campaign Page{/ts}\n
\n {ts}Display In Honor Roll{/ts}\n \n {if $pcp_display_in_roll}{ts}Yes{/ts}{else}{ts}No{/ts}{/if}\n
\n {ts}Nickname{/ts}\n \n {$pcp_roll_nickname}\n
\n {ts}Personal Note{/ts}\n \n {$pcp_personal_note}\n
\n {$onBehalfProfile_grouptitle}\n
\n {$onBehalfName}\n \n {$onBehalfValue}\n
\n {ts}Registered Email{/ts}\n
\n {$email}\n
\n {ts}Billing Name and Address{/ts}\n
\n {$billingName}
\n {$address|nl2br}
\n {$email}\n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}
\n {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}
\n
\n {ts}Premium Information{/ts}\n
\n {$product_name}\n
\n {ts}Option{/ts}\n \n {$option}\n
\n {ts}SKU{/ts}\n \n {$sku}\n
\n {ts}Start Date{/ts}\n \n {$start_date|crmDate}\n
\n {ts}End Date{/ts}\n \n {$end_date|crmDate}\n
\n

{ts}For information about this premium, contact:{/ts}

\n {if $contact_email}\n

{$contact_email}

\n {/if}\n {if $contact_phone}\n

{$contact_phone}

\n {/if}\n
\n

{ts 1=$price|crmMoney}The value of this premium is %1. This may affect the amount of the tax deduction you can claim. Consult your tax advisor for more information.{/ts}

\n
\n {$customPre_grouptitle}\n
\n {$customName}\n \n {$customValue}\n
\n {$customPost_grouptitle}\n
\n {$customName}\n \n {$customValue}\n
\n
\n\n\n\n',1,726,0,1,NULL),(41,'Memberships - Auto-renew Cancellation Notification','{ts}Autorenew Membership Cancellation Notification{/ts}\n','{ts 1=$membershipType}The automatic renewal of your %1 membership has been cancelled as requested. This does not affect the status of your membership - you will receive a separate notification when your membership is up for renewal.{/ts}\n\n===========================================================\n{ts}Membership Information{/ts}\n\n===========================================================\n{ts}Membership Status{/ts}: {$membership_status}\n{if $mem_start_date}{ts}Membership Start Date{/ts}: {$mem_start_date|crmDate}\n{/if}\n{if $mem_end_date}{ts}Membership End Date{/ts}: {$mem_end_date|crmDate}\n{/if}\n\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n
\n\n

{ts 1=$membershipType}The automatic renewal of your %1 membership has been cancelled as requested. This does not affect the status of your membership - you will receive a separate notification when your membership is up for renewal.{/ts}

\n\n
\n \n\n \n \n \n \n \n \n \n {if $mem_start_date}\n \n \n \n \n {/if}\n {if $mem_end_date}\n \n \n \n \n {/if}\n\n
\n {ts}Membership Information{/ts}\n
\n {ts}Membership Status{/ts}\n \n {$membership_status}\n
\n {ts}Membership Start Date{/ts}\n \n {$mem_start_date|crmDate}\n
\n {ts}Membership End Date{/ts}\n \n {$mem_end_date|crmDate}\n
\n
\n\n\n\n',1,727,1,0,NULL),(42,'Memberships - Auto-renew Cancellation Notification','{ts}Autorenew Membership Cancellation Notification{/ts}\n','{ts 1=$membershipType}The automatic renewal of your %1 membership has been cancelled as requested. This does not affect the status of your membership - you will receive a separate notification when your membership is up for renewal.{/ts}\n\n===========================================================\n{ts}Membership Information{/ts}\n\n===========================================================\n{ts}Membership Status{/ts}: {$membership_status}\n{if $mem_start_date}{ts}Membership Start Date{/ts}: {$mem_start_date|crmDate}\n{/if}\n{if $mem_end_date}{ts}Membership End Date{/ts}: {$mem_end_date|crmDate}\n{/if}\n\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n
\n\n

{ts 1=$membershipType}The automatic renewal of your %1 membership has been cancelled as requested. This does not affect the status of your membership - you will receive a separate notification when your membership is up for renewal.{/ts}

\n\n
\n \n\n \n \n \n \n \n \n \n {if $mem_start_date}\n \n \n \n \n {/if}\n {if $mem_end_date}\n \n \n \n \n {/if}\n\n
\n {ts}Membership Information{/ts}\n
\n {ts}Membership Status{/ts}\n \n {$membership_status}\n
\n {ts}Membership Start Date{/ts}\n \n {$mem_start_date|crmDate}\n
\n {ts}Membership End Date{/ts}\n \n {$mem_end_date|crmDate}\n
\n
\n\n\n\n',1,727,0,1,NULL),(43,'Memberships - Auto-renew Billing Updates','{ts}Membership Autorenewal Billing Updates{/ts}','{ts 1=$contact.display_name}Dear %1{/ts},\n\n{ts 1=$membershipType}Billing details for your automatically renewed %1 membership have been updated.{/ts}\n\n===========================================================\n{ts}Billing Name and Address{/ts}\n\n===========================================================\n{$billingName}\n{$address}\n\n{$email}\n\n===========================================================\n{ts}Credit Card Information{/ts}\n\n===========================================================\n{$credit_card_type}\n{$credit_card_number}\n{ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n\n\n{ts 1=$receipt_from_email}If you have questions please contact us at %1{/ts}','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n \n
\n

{ts 1=$contact.display_name}Dear %1{/ts},

\n

{ts 1=$membershipType}Billing details for your automatically renewed %1 membership have been updated.{/ts}

\n
\n\n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n
\n {ts}Billing Name and Address{/ts}\n
\n {$billingName}
\n {$address|nl2br}
\n {$email}\n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}
\n {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}
\n
\n {ts 1=$receipt_from_email}If you have questions please contact us at %1{/ts}\n
\n
\n\n\n\n',1,728,1,0,NULL),(44,'Memberships - Auto-renew Billing Updates','{ts}Membership Autorenewal Billing Updates{/ts}','{ts 1=$contact.display_name}Dear %1{/ts},\n\n{ts 1=$membershipType}Billing details for your automatically renewed %1 membership have been updated.{/ts}\n\n===========================================================\n{ts}Billing Name and Address{/ts}\n\n===========================================================\n{$billingName}\n{$address}\n\n{$email}\n\n===========================================================\n{ts}Credit Card Information{/ts}\n\n===========================================================\n{$credit_card_type}\n{$credit_card_number}\n{ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n\n\n{ts 1=$receipt_from_email}If you have questions please contact us at %1{/ts}','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n \n
\n

{ts 1=$contact.display_name}Dear %1{/ts},

\n

{ts 1=$membershipType}Billing details for your automatically renewed %1 membership have been updated.{/ts}

\n
\n\n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n
\n {ts}Billing Name and Address{/ts}\n
\n {$billingName}
\n {$address|nl2br}
\n {$email}\n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}
\n {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}
\n
\n {ts 1=$receipt_from_email}If you have questions please contact us at %1{/ts}\n
\n
\n\n\n\n',1,728,0,1,NULL),(45,'Test-drive - Receipt Header','[TEST]\n','***********************************************************\n\n{ts}Test-drive Email / Receipt{/ts}\n\n{ts}This is a test-drive email. No live financial transaction has occurred.{/ts}\n\n***********************************************************\n','
\n \n \n \n \n
\n

{ts}Test-drive Email / Receipt{/ts}

\n

{ts}This is a test-drive email. No live financial transaction has occurred.{/ts}

\n
\n
\n',1,729,1,0,NULL),(46,'Test-drive - Receipt Header','[TEST]\n','***********************************************************\n\n{ts}Test-drive Email / Receipt{/ts}\n\n{ts}This is a test-drive email. No live financial transaction has occurred.{/ts}\n\n***********************************************************\n','
\n \n \n \n \n
\n

{ts}Test-drive Email / Receipt{/ts}

\n

{ts}This is a test-drive email. No live financial transaction has occurred.{/ts}

\n
\n
\n',1,729,0,1,NULL),(47,'Pledges - Acknowledgement','{ts}Thank you for your Pledge{/ts}\n','{ts 1=$contact.display_name}Dear %1{/ts},\n\n{ts}Thank you for your generous pledge. Please print this acknowledgment for your records.{/ts}\n\n===========================================================\n{ts}Pledge Information{/ts}\n\n===========================================================\n{ts}Pledge Received{/ts}: {$create_date|truncate:10:\'\'|crmDate}\n{ts}Total Pledge Amount{/ts}: {$total_pledge_amount|crmMoney:$currency}\n\n===========================================================\n{ts}Payment Schedule{/ts}\n\n===========================================================\n{ts 1=$scheduled_amount|crmMoney:$currency 2=$frequency_interval 3=$frequency_unit 4=$installments}%1 every %2 %3 for %4 installments.{/ts}\n\n{if $frequency_day}\n\n{ts 1=$frequency_day 2=$frequency_unit}Payments are due on day %1 of the %2.{/ts}\n{/if}\n\n{if $payments}\n{assign var=\"count\" value=\"1\"}\n{foreach from=$payments item=payment}\n\n{ts 1=$count}Payment %1{/ts}: {$payment.amount|crmMoney:$currency} {if $payment.status eq 1}{ts}paid{/ts} {$payment.receive_date|truncate:10:\'\'|crmDate}{else}{ts}due{/ts} {$payment.due_date|truncate:10:\'\'|crmDate}{/if}\n{assign var=\"count\" value=`$count+1`}\n{/foreach}\n{/if}\n\n\n{ts 1=$domain.phone 2=$domain.email}Please contact us at %1 or send email to %2 if you have questions\nor need to modify your payment schedule.{/ts}\n\n{if $honor_block_is_active}\n===========================================================\n{$honor_type}\n===========================================================\n{$honor_prefix} {$honor_first_name} {$honor_last_name}\n{if $honor_email}\n{ts}Honoree Email{/ts}: {$honor_email}\n{/if}\n{/if}\n\n{if $customGroup}\n{foreach from=$customGroup item=value key=customName}\n===========================================================\n{$customName}\n===========================================================\n{foreach from=$value item=v key=n}\n{$n}: {$v}\n{/foreach}\n{/foreach}\n{/if}\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n \n \n \n\n
\n

{ts 1=$contact.display_name}dear %1{/ts},

\n

{ts}thank you for your generous pledge. please print this acknowledgment for your records.{/ts}

\n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n {if $payments}\n {assign var=\"count\" value=\"1\"}\n {foreach from=$payments item=payment}\n \n \n \n \n {assign var=\"count\" value=`$count+1`}\n {/foreach}\n {/if}\n\n \n \n \n {if $honor_block_is_active}\n \n \n \n \n \n \n {/if}\n\n {if $customGroup}\n {foreach from=$customGroup item=value key=customName}\n \n \n \n {foreach from=$value item=v key=n}\n \n \n \n \n {/foreach}\n {/foreach}\n {/if}\n\n
\n {ts}Pledge Information{/ts}\n
\n {ts}Pledge Received{/ts}\n \n {$create_date|truncate:10:\'\'|crmDate}\n
\n {ts}Total Pledge Amount{/ts}\n \n {$total_pledge_amount|crmMoney:$currency}\n
\n {ts}Payment Schedule{/ts}\n
\n

{ts 1=$scheduled_amount|crmMoney:$currency 2=$frequency_interval 3=$frequency_unit 4=$installments}%1 every %2 %3 for %4 installments.{/ts}

\n\n {if $frequency_day}\n

{ts 1=$frequency_day 2=$frequency_unit}Payments are due on day %1 of the %2.{/ts}

\n {/if}\n
\n {ts 1=$count}Payment %1{/ts}\n \n {$payment.amount|crmMoney:$currency} {if $payment.status eq 1}{ts}paid{/ts} {$payment.receive_date|truncate:10:\'\'|crmDate}{else}{ts}due{/ts} {$payment.due_date|truncate:10:\'\'|crmDate}{/if}\n
\n

{ts 1=$domain.phone 2=$domain.email}Please contact us at %1 or send email to %2 if you have questions\nor need to modify your payment schedule.{/ts}

\n
\n {$honor_type}\n
\n

{$honor_prefix} {$honor_first_name} {$honor_last_name}

\n {if $honor_email}\n

{ts}Honoree Email{/ts}: {$honor_email}

\n {/if}\n
\n {$customName}\n
\n {$n}\n \n {$v}\n
\n
\n
\n\n\n\n',1,730,1,0,NULL),(48,'Pledges - Acknowledgement','{ts}Thank you for your Pledge{/ts}\n','{ts 1=$contact.display_name}Dear %1{/ts},\n\n{ts}Thank you for your generous pledge. Please print this acknowledgment for your records.{/ts}\n\n===========================================================\n{ts}Pledge Information{/ts}\n\n===========================================================\n{ts}Pledge Received{/ts}: {$create_date|truncate:10:\'\'|crmDate}\n{ts}Total Pledge Amount{/ts}: {$total_pledge_amount|crmMoney:$currency}\n\n===========================================================\n{ts}Payment Schedule{/ts}\n\n===========================================================\n{ts 1=$scheduled_amount|crmMoney:$currency 2=$frequency_interval 3=$frequency_unit 4=$installments}%1 every %2 %3 for %4 installments.{/ts}\n\n{if $frequency_day}\n\n{ts 1=$frequency_day 2=$frequency_unit}Payments are due on day %1 of the %2.{/ts}\n{/if}\n\n{if $payments}\n{assign var=\"count\" value=\"1\"}\n{foreach from=$payments item=payment}\n\n{ts 1=$count}Payment %1{/ts}: {$payment.amount|crmMoney:$currency} {if $payment.status eq 1}{ts}paid{/ts} {$payment.receive_date|truncate:10:\'\'|crmDate}{else}{ts}due{/ts} {$payment.due_date|truncate:10:\'\'|crmDate}{/if}\n{assign var=\"count\" value=`$count+1`}\n{/foreach}\n{/if}\n\n\n{ts 1=$domain.phone 2=$domain.email}Please contact us at %1 or send email to %2 if you have questions\nor need to modify your payment schedule.{/ts}\n\n{if $honor_block_is_active}\n===========================================================\n{$honor_type}\n===========================================================\n{$honor_prefix} {$honor_first_name} {$honor_last_name}\n{if $honor_email}\n{ts}Honoree Email{/ts}: {$honor_email}\n{/if}\n{/if}\n\n{if $customGroup}\n{foreach from=$customGroup item=value key=customName}\n===========================================================\n{$customName}\n===========================================================\n{foreach from=$value item=v key=n}\n{$n}: {$v}\n{/foreach}\n{/foreach}\n{/if}\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n \n \n \n\n
\n

{ts 1=$contact.display_name}dear %1{/ts},

\n

{ts}thank you for your generous pledge. please print this acknowledgment for your records.{/ts}

\n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n {if $payments}\n {assign var=\"count\" value=\"1\"}\n {foreach from=$payments item=payment}\n \n \n \n \n {assign var=\"count\" value=`$count+1`}\n {/foreach}\n {/if}\n\n \n \n \n {if $honor_block_is_active}\n \n \n \n \n \n \n {/if}\n\n {if $customGroup}\n {foreach from=$customGroup item=value key=customName}\n \n \n \n {foreach from=$value item=v key=n}\n \n \n \n \n {/foreach}\n {/foreach}\n {/if}\n\n
\n {ts}Pledge Information{/ts}\n
\n {ts}Pledge Received{/ts}\n \n {$create_date|truncate:10:\'\'|crmDate}\n
\n {ts}Total Pledge Amount{/ts}\n \n {$total_pledge_amount|crmMoney:$currency}\n
\n {ts}Payment Schedule{/ts}\n
\n

{ts 1=$scheduled_amount|crmMoney:$currency 2=$frequency_interval 3=$frequency_unit 4=$installments}%1 every %2 %3 for %4 installments.{/ts}

\n\n {if $frequency_day}\n

{ts 1=$frequency_day 2=$frequency_unit}Payments are due on day %1 of the %2.{/ts}

\n {/if}\n
\n {ts 1=$count}Payment %1{/ts}\n \n {$payment.amount|crmMoney:$currency} {if $payment.status eq 1}{ts}paid{/ts} {$payment.receive_date|truncate:10:\'\'|crmDate}{else}{ts}due{/ts} {$payment.due_date|truncate:10:\'\'|crmDate}{/if}\n
\n

{ts 1=$domain.phone 2=$domain.email}Please contact us at %1 or send email to %2 if you have questions\nor need to modify your payment schedule.{/ts}

\n
\n {$honor_type}\n
\n

{$honor_prefix} {$honor_first_name} {$honor_last_name}

\n {if $honor_email}\n

{ts}Honoree Email{/ts}: {$honor_email}

\n {/if}\n
\n {$customName}\n
\n {$n}\n \n {$v}\n
\n
\n
\n\n\n\n',1,730,0,1,NULL),(49,'Pledges - Payment Reminder','{ts}Pledge Payment Reminder{/ts}\n','{ts 1=$contact.display_name}Dear %1{/ts},\n\n{ts 1=$next_payment|truncate:10:\'\'|crmDate}This is a reminder that the next payment on your pledge is due on %1.{/ts}\n\n===========================================================\n{ts}Payment Due{/ts}\n\n===========================================================\n{ts}Amount Due{/ts}: {$amount_due|crmMoney:$currency}\n{ts}Due Date{/ts}: {$scheduled_payment_date|truncate:10:\'\'|crmDate}\n\n{if $contribution_page_id}\n{capture assign=contributionUrl}{crmURL p=\'civicrm/contribute/transact\' q=\"reset=1&id=`$contribution_page_id`&cid=`$contact.contact_id`&pledgeId=`$pledge_id`&cs=`$checksumValue`\" a=true h=0}{/capture}\nClick this link to go to a web page where you can make your payment online:\n{$contributionUrl}\n{else}\n{ts}Please mail your payment to{/ts}:\n{$domain.address}\n{/if}\n\n===========================================================\n{ts}Pledge Information{/ts}\n\n===========================================================\n{ts}Pledge Received{/ts}: {$create_date|truncate:10:\'\'|crmDate}\n{ts}Total Pledge Amount{/ts}: {$amount|crmMoney:$currency}\n{ts}Total Paid{/ts}: {$amount_paid|crmMoney:$currency}\n\n{ts 1=$domain.phone 2=$domain.email}Please contact us at %1 or send email to %2 if you have questions\nor need to modify your payment schedule.{/ts}\n\n\n{ts}Thank your for your generous support.{/ts}\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n \n \n \n\n \n \n \n\n \n \n \n\n \n \n \n\n
\n

{ts 1=$contact.display_name}Dear %1{/ts},

\n

{ts 1=$next_payment|truncate:10:\'\'|crmDate}This is a reminder that the next payment on your pledge is due on %1.{/ts}

\n
\n \n \n \n \n \n \n \n \n
\n {ts}Payment Due{/ts}\n
\n {ts}Amount Due{/ts}\n \n {$amount_due|crmMoney:$currency}\n
\n
\n {if $contribution_page_id}\n {capture assign=contributionUrl}{crmURL p=\'civicrm/contribute/transact\' q=\"reset=1&id=`$contribution_page_id`&cid=`$contact.contact_id`&pledgeId=`$pledge_id`&cs=`$checksumValue`\" a=true h=0}{/capture}\n

{ts}Go to a web page where you can make your payment online{/ts}

\n {else}\n

{ts}Please mail your payment to{/ts}: {$domain.address}

\n {/if}\n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n {ts}Pledge Information{/ts}\n
\n {ts}Pledge Received{/ts}\n \n {$create_date|truncate:10:\'\'|crmDate}\n
\n {ts}Total Pledge Amount{/ts}\n \n {$amount|crmMoney:$currency}\n
\n {ts}Total Paid{/ts}\n \n {$amount_paid|crmMoney:$currency}\n
\n
\n

{ts 1=$domain.phone 2=$domain.email}Please contact us at %1 or send email to %2 if you have questions\nor need to modify your payment schedule.{/ts}

\n

{ts}Thank your for your generous support.{/ts}

\n
\n
\n\n\n\n',1,731,1,0,NULL),(50,'Pledges - Payment Reminder','{ts}Pledge Payment Reminder{/ts}\n','{ts 1=$contact.display_name}Dear %1{/ts},\n\n{ts 1=$next_payment|truncate:10:\'\'|crmDate}This is a reminder that the next payment on your pledge is due on %1.{/ts}\n\n===========================================================\n{ts}Payment Due{/ts}\n\n===========================================================\n{ts}Amount Due{/ts}: {$amount_due|crmMoney:$currency}\n{ts}Due Date{/ts}: {$scheduled_payment_date|truncate:10:\'\'|crmDate}\n\n{if $contribution_page_id}\n{capture assign=contributionUrl}{crmURL p=\'civicrm/contribute/transact\' q=\"reset=1&id=`$contribution_page_id`&cid=`$contact.contact_id`&pledgeId=`$pledge_id`&cs=`$checksumValue`\" a=true h=0}{/capture}\nClick this link to go to a web page where you can make your payment online:\n{$contributionUrl}\n{else}\n{ts}Please mail your payment to{/ts}:\n{$domain.address}\n{/if}\n\n===========================================================\n{ts}Pledge Information{/ts}\n\n===========================================================\n{ts}Pledge Received{/ts}: {$create_date|truncate:10:\'\'|crmDate}\n{ts}Total Pledge Amount{/ts}: {$amount|crmMoney:$currency}\n{ts}Total Paid{/ts}: {$amount_paid|crmMoney:$currency}\n\n{ts 1=$domain.phone 2=$domain.email}Please contact us at %1 or send email to %2 if you have questions\nor need to modify your payment schedule.{/ts}\n\n\n{ts}Thank your for your generous support.{/ts}\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n \n \n \n\n \n \n \n\n \n \n \n\n \n \n \n\n
\n

{ts 1=$contact.display_name}Dear %1{/ts},

\n

{ts 1=$next_payment|truncate:10:\'\'|crmDate}This is a reminder that the next payment on your pledge is due on %1.{/ts}

\n
\n \n \n \n \n \n \n \n \n
\n {ts}Payment Due{/ts}\n
\n {ts}Amount Due{/ts}\n \n {$amount_due|crmMoney:$currency}\n
\n
\n {if $contribution_page_id}\n {capture assign=contributionUrl}{crmURL p=\'civicrm/contribute/transact\' q=\"reset=1&id=`$contribution_page_id`&cid=`$contact.contact_id`&pledgeId=`$pledge_id`&cs=`$checksumValue`\" a=true h=0}{/capture}\n

{ts}Go to a web page where you can make your payment online{/ts}

\n {else}\n

{ts}Please mail your payment to{/ts}: {$domain.address}

\n {/if}\n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n {ts}Pledge Information{/ts}\n
\n {ts}Pledge Received{/ts}\n \n {$create_date|truncate:10:\'\'|crmDate}\n
\n {ts}Total Pledge Amount{/ts}\n \n {$amount|crmMoney:$currency}\n
\n {ts}Total Paid{/ts}\n \n {$amount_paid|crmMoney:$currency}\n
\n
\n

{ts 1=$domain.phone 2=$domain.email}Please contact us at %1 or send email to %2 if you have questions\nor need to modify your payment schedule.{/ts}

\n

{ts}Thank your for your generous support.{/ts}

\n
\n
\n\n\n\n',1,731,0,1,NULL),(51,'Profiles - Admin Notification','{$grouptitle} {ts 1=$displayName}Submitted by %1{/ts}\n','{ts}Submitted For:{/ts} {$displayName}\n{ts}Date:{/ts} {$currentDate}\n{ts}Contact Summary:{/ts} {$contactLink}\n\n===========================================================\n{$grouptitle}\n\n===========================================================\n{foreach from=$values item=value key=valueName}\n{$valueName}: {$value}\n{/foreach}\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n\n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n\n \n \n \n\n {foreach from=$values item=value key=valueName}\n \n \n \n \n {/foreach}\n
\n {ts}Submitted For{/ts}\n \n {$displayName}\n
\n {ts}Date{/ts}\n \n {$currentDate}\n
\n {ts}Contact Summary{/ts}\n \n {$contactLink}\n
\n {$grouptitle}\n
\n {$valueName}\n \n {$value}\n
\n
\n
\n\n\n\n',1,732,1,0,NULL),(52,'Profiles - Admin Notification','{$grouptitle} {ts 1=$displayName}Submitted by %1{/ts}\n','{ts}Submitted For:{/ts} {$displayName}\n{ts}Date:{/ts} {$currentDate}\n{ts}Contact Summary:{/ts} {$contactLink}\n\n===========================================================\n{$grouptitle}\n\n===========================================================\n{foreach from=$values item=value key=valueName}\n{$valueName}: {$value}\n{/foreach}\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n\n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n\n \n \n \n\n {foreach from=$values item=value key=valueName}\n \n \n \n \n {/foreach}\n
\n {ts}Submitted For{/ts}\n \n {$displayName}\n
\n {ts}Date{/ts}\n \n {$currentDate}\n
\n {ts}Contact Summary{/ts}\n \n {$contactLink}\n
\n {$grouptitle}\n
\n {$valueName}\n \n {$value}\n
\n
\n
\n\n\n\n',1,732,0,1,NULL),(53,'Petition - signature added','Thank you for signing {$petition.title}','Thank you for signing {$petition.title}.\n','

Thank you for signing {$petition.title}.

\n\n{include file=\"CRM/Campaign/Page/Petition/SocialNetwork.tpl\" petition_id=$survey_id noscript=true email=true}\n',1,733,1,0,NULL),(54,'Petition - signature added','Thank you for signing {$petition.title}','Thank you for signing {$petition.title}.\n','

Thank you for signing {$petition.title}.

\n\n{include file=\"CRM/Campaign/Page/Petition/SocialNetwork.tpl\" petition_id=$survey_id noscript=true email=true}\n',1,733,0,1,NULL),(55,'Petition - need verification','Confirmation of signature needed for {$petition.title}\n','Thank you for signing {$petition.title}.\n\nIn order to complete your signature, we must confirm your e-mail.\nPlease do so by visiting the following email confirmation web page:\n\n{$petition.confirmUrlPlainText}\n\nIf you did not sign this petition, please ignore this message.\n','

Thank you for signing {$petition.title}.

\n\n

In order to complete your signature, we must confirm your e-mail.\n
\nPlease do so by visiting the following web page by clicking\non the link below or pasting the link into your browser.\n

\nEmail confirmation page: {$petition.confirmUrl}

\n\n

If you did not sign this petition, please ignore this message.

\n',1,734,1,0,NULL),(56,'Petition - need verification','Confirmation of signature needed for {$petition.title}\n','Thank you for signing {$petition.title}.\n\nIn order to complete your signature, we must confirm your e-mail.\nPlease do so by visiting the following email confirmation web page:\n\n{$petition.confirmUrlPlainText}\n\nIf you did not sign this petition, please ignore this message.\n','

Thank you for signing {$petition.title}.

\n\n

In order to complete your signature, we must confirm your e-mail.\n
\nPlease do so by visiting the following web page by clicking\non the link below or pasting the link into your browser.\n

\nEmail confirmation page: {$petition.confirmUrl}

\n\n

If you did not sign this petition, please ignore this message.

\n',1,734,0,1,NULL),(57,'Sample CiviMail Newsletter Template','Sample CiviMail Newsletter','','\n \n \n \n \n \n\n \n \n\n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \"Replace\n    \n Your Newsletter Title\n
\n
\n \n \n \n \n \n
\n \n Greetings {contact.display_name},\n

\n This is a sample template designed to help you get started creating and sending your own CiviMail messages. This template uses an HTML layout that is generally compatible with the wide variety of email clients that your recipients might be using (e.g. Gmail, Outlook, Yahoo, etc.).\n

You can select this \"Sample CiviMail Newsletter Template\" from the \"Use Template\" drop-down in Step 3 of creating a mailing, and customize it to your needs. Then check the \"Save as New Template\" box on the bottom the page to save your customized version for use in future mailings.\n

The logo you use must be uploaded to your server. Copy and paste the URL path to the logo into the <img src= tag in the HTML at the top. Click \"Source\" or the Image button if you are using the text editor.\n

\n Edit the color of the links and headers using the color button or by editing the HTML.\n

\n Your newsletter message and donation appeal can go here. Click the link button to create links - remember to use a fully qualified URL starting with http:// in all your links!\n

\n To use CiviMail:\n \n Sincerely,\n

\n Your Team\n

\n
\n
\n
\n \n \n \n \n \n \n \n \n
News and Events
\n \n Featured Events
\n Fundraising Dinner
\n Training Meeting
\n Board of Directors Annual Meeting
\n\n

\n Community Events
\n Bake Sale
\n Charity Auction
\n Art Exhibit
\n\n

\n Important Dates
\n Tuesday August 27
\n Wednesday September 8
\n Thursday September 29
\n Saturday October 1
\n Sunday October 20
\n
\n
\n
\n \n \n \n \n
\n \n Helpful Tips\n

\n Tokens
\n Click \"Insert Tokens\" to dynamically insert names, addresses, and other contact data of your recipients.\n

\n Plain Text Version
\n Some people refuse HTML emails altogether. We recommend sending a plain-text version of your important communications to accommodate them. Luckily, CiviCRM accommodates for this! Just click \"Plain Text\" and copy and paste in some text. Line breaks (carriage returns) and fully qualified URLs like http://www.example.com are all you get, no HTML here!\n

\n Play by the Rules
\n The address of the sender is required by the Can Spam Act law. This is an available token called domain.address. An unsubscribe or opt-out link is also required. There are several available tokens for this. {action.optOutUrl} creates a link for recipients to click if they want to opt out of receiving emails from your organization. {action.unsubscribeUrl} creates a link to unsubscribe from the specific mailing list used to send this message. Click on \"Insert Tokens\" to find these and look for tokens named \"Domain\" or \"Unsubscribe\". This sample template includes both required tokens at the bottom of the message. You can also configure a default Mailing Footer containing these tokens.\n

\n Composing Offline
\n If you prefer to compose an HTML email offline in your own text editor, you can upload this HTML content into CiviMail or simply click \"Source\" and then copy and paste the HTML in.\n

\n Images
\n Most email clients these days (Outlook, Gmail, etc) block image loading by default. This is to protect their users from annoying or harmful email. Not much we can do about this, so encourage recipients to add you to their contacts or \"whitelist\". Also use images sparingly, do not rely on images to convey vital information, and always use HTML \"alt\" tags which describe the image content.\n
\n
\n \n
\n Click here to unsubscribe from this mailing list.

\n Our mailing address is:
\n {domain.address}\n
',1,NULL,1,0,NULL); +INSERT INTO `civicrm_msg_template` (`id`, `msg_title`, `msg_subject`, `msg_text`, `msg_html`, `is_active`, `workflow_id`, `is_default`, `is_reserved`, `pdf_format_id`) VALUES (1,'Cases - Send Copy of an Activity','{if $idHash}[case #{$idHash}]{/if} {$activitySubject}\n','===========================================================\n{ts}Activity Summary{/ts} - {$activityTypeName}\n===========================================================\n{if $isCaseActivity}\n{ts}Your Case Role(s){/ts} : {$contact.role}\n{if $manageCaseURL}\n{ts}Manage Case{/ts} : {$manageCaseURL}\n{/if}\n{/if}\n\n{if $editActURL}\n{ts}Edit this Activity{/ts} : {$editActURL}\n{/if}\n{if $viewActURL}\n{ts}View this Activity{/ts} : {$viewActURL}\n{/if}\n\n{foreach from=$activity.fields item=field}\n{if $field.type eq \'Date\'}\n{$field.label}{if $field.category}({$field.category}){/if} : {$field.value|crmDate:$config->dateformatDatetime}\n{else}\n{$field.label}{if $field.category}({$field.category}){/if} : {$field.value}\n{/if}\n{/foreach}\n\n{foreach from=$activity.customGroups key=customGroupName item=customGroup}\n==========================================================\n{$customGroupName}\n==========================================================\n{foreach from=$customGroup item=field}\n{if $field.type eq \'Date\'}\n{$field.label} : {$field.value|crmDate:$config->dateformatDatetime}\n{else}\n{$field.label} : {$field.value}\n{/if}\n{/foreach}\n\n{/foreach}\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n
\n \n \n \n \n {if $isCaseActivity}\n \n \n \n \n {if $manageCaseURL}\n \n \n \n {/if}\n {/if}\n {if $editActURL}\n \n \n \n {/if}\n {if $viewActURL}\n \n \n \n {/if}\n {foreach from=$activity.fields item=field}\n \n \n \n \n {/foreach}\n\n {foreach from=$activity.customGroups key=customGroupName item=customGroup}\n \n \n \n {foreach from=$customGroup item=field}\n \n \n \n \n {/foreach}\n {/foreach}\n
\n {ts}Activity Summary{/ts} - {$activityTypeName}\n
\n {ts}Your Case Role(s){/ts}\n \n {$contact.role}\n
\n {ts}Manage Case{/ts}\n
\n {ts}Edit this activity{/ts}\n
\n {ts}View this activity{/ts}\n
\n {$field.label}{if $field.category}({$field.category}){/if}\n \n {if $field.type eq \'Date\'}\n {$field.value|crmDate:$config->dateformatDatetime}\n {else}\n {$field.value}\n {/if}\n
\n {$customGroupName}\n
\n {$field.label}\n \n {if $field.type eq \'Date\'}\n {$field.value|crmDate:$config->dateformatDatetime}\n {else}\n {$field.value}\n {/if}\n
\n
\n
\n\n\n\n',1,707,1,0,NULL),(2,'Cases - Send Copy of an Activity','{if $idHash}[case #{$idHash}]{/if} {$activitySubject}\n','===========================================================\n{ts}Activity Summary{/ts} - {$activityTypeName}\n===========================================================\n{if $isCaseActivity}\n{ts}Your Case Role(s){/ts} : {$contact.role}\n{if $manageCaseURL}\n{ts}Manage Case{/ts} : {$manageCaseURL}\n{/if}\n{/if}\n\n{if $editActURL}\n{ts}Edit this Activity{/ts} : {$editActURL}\n{/if}\n{if $viewActURL}\n{ts}View this Activity{/ts} : {$viewActURL}\n{/if}\n\n{foreach from=$activity.fields item=field}\n{if $field.type eq \'Date\'}\n{$field.label}{if $field.category}({$field.category}){/if} : {$field.value|crmDate:$config->dateformatDatetime}\n{else}\n{$field.label}{if $field.category}({$field.category}){/if} : {$field.value}\n{/if}\n{/foreach}\n\n{foreach from=$activity.customGroups key=customGroupName item=customGroup}\n==========================================================\n{$customGroupName}\n==========================================================\n{foreach from=$customGroup item=field}\n{if $field.type eq \'Date\'}\n{$field.label} : {$field.value|crmDate:$config->dateformatDatetime}\n{else}\n{$field.label} : {$field.value}\n{/if}\n{/foreach}\n\n{/foreach}\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n
\n \n \n \n \n {if $isCaseActivity}\n \n \n \n \n {if $manageCaseURL}\n \n \n \n {/if}\n {/if}\n {if $editActURL}\n \n \n \n {/if}\n {if $viewActURL}\n \n \n \n {/if}\n {foreach from=$activity.fields item=field}\n \n \n \n \n {/foreach}\n\n {foreach from=$activity.customGroups key=customGroupName item=customGroup}\n \n \n \n {foreach from=$customGroup item=field}\n \n \n \n \n {/foreach}\n {/foreach}\n
\n {ts}Activity Summary{/ts} - {$activityTypeName}\n
\n {ts}Your Case Role(s){/ts}\n \n {$contact.role}\n
\n {ts}Manage Case{/ts}\n
\n {ts}Edit this activity{/ts}\n
\n {ts}View this activity{/ts}\n
\n {$field.label}{if $field.category}({$field.category}){/if}\n \n {if $field.type eq \'Date\'}\n {$field.value|crmDate:$config->dateformatDatetime}\n {else}\n {$field.value}\n {/if}\n
\n {$customGroupName}\n
\n {$field.label}\n \n {if $field.type eq \'Date\'}\n {$field.value|crmDate:$config->dateformatDatetime}\n {else}\n {$field.value}\n {/if}\n
\n
\n
\n\n\n\n',1,707,0,1,NULL),(3,'Contributions - Duplicate Organization Alert','{ts}CiviContribute Alert: Possible Duplicate Contact Record{/ts}\n','{ts}A contribution / membership signup was made on behalf of the organization listed below.{/ts}\n{ts}The information provided matched multiple existing database records based on the configured\nDuplicate Matching Rules for your site.{/ts}\n\n{ts}Organization Name{/ts}: {$onBehalfName}\n{ts}Organization Email{/ts}: {$onBehalfEmail}\n{ts}Organization Contact Id{/ts}: {$onBehalfID}\n\n{ts}If you think this may be a duplicate contact which should be merged with an existing record -\nGo to \"Contacts >> Find and Merge Duplicate Contacts\". Use the strict\nrule for Organizations to find the potential duplicates and merge them if appropriate.{/ts}\n\n{if $receiptMessage}\n###########################################################\n{ts}Copy of Contribution Receipt{/ts}\n\n###########################################################\n{$receiptMessage}\n\n{/if}\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n \n \n \n \n \n \n {if $receiptMessage}\n \n \n \n {/if}\n
\n

{ts}A contribution / membership signup was made on behalf of the organization listed below.{/ts}

\n

{ts}The information provided matched multiple existing database records based on the configured\nDuplicate Matching Rules for your site.{/ts}

\n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n {ts}Organization Name{/ts}\n \n {$onBehalfName}\n
\n {ts}Organization Email{/ts}\n \n {$onBehalfEmail}\n
\n {ts}Organization Contact Id{/ts}\n \n {$onBehalfID}\n
\n
\n

{ts}If you think this may be a duplicate contact which should be merged with an existing record -\nGo to \"Contacts >> Find and Merge Duplicate Contacts\". Use the strict\nrule for Organizations to find the potential duplicates and merge them if appropriate.{/ts}

\n
\n \n \n \n \n \n \n \n
\n {ts}Copy of Contribution Receipt{/ts}\n
\n {* FIXME: the below is most probably not HTML-ised *}\n {$receiptMessage}\n
\n
\n
\n\n\n\n',1,708,1,0,NULL),(4,'Contributions - Duplicate Organization Alert','{ts}CiviContribute Alert: Possible Duplicate Contact Record{/ts}\n','{ts}A contribution / membership signup was made on behalf of the organization listed below.{/ts}\n{ts}The information provided matched multiple existing database records based on the configured\nDuplicate Matching Rules for your site.{/ts}\n\n{ts}Organization Name{/ts}: {$onBehalfName}\n{ts}Organization Email{/ts}: {$onBehalfEmail}\n{ts}Organization Contact Id{/ts}: {$onBehalfID}\n\n{ts}If you think this may be a duplicate contact which should be merged with an existing record -\nGo to \"Contacts >> Find and Merge Duplicate Contacts\". Use the strict\nrule for Organizations to find the potential duplicates and merge them if appropriate.{/ts}\n\n{if $receiptMessage}\n###########################################################\n{ts}Copy of Contribution Receipt{/ts}\n\n###########################################################\n{$receiptMessage}\n\n{/if}\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n \n \n \n \n \n \n {if $receiptMessage}\n \n \n \n {/if}\n
\n

{ts}A contribution / membership signup was made on behalf of the organization listed below.{/ts}

\n

{ts}The information provided matched multiple existing database records based on the configured\nDuplicate Matching Rules for your site.{/ts}

\n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n {ts}Organization Name{/ts}\n \n {$onBehalfName}\n
\n {ts}Organization Email{/ts}\n \n {$onBehalfEmail}\n
\n {ts}Organization Contact Id{/ts}\n \n {$onBehalfID}\n
\n
\n

{ts}If you think this may be a duplicate contact which should be merged with an existing record -\nGo to \"Contacts >> Find and Merge Duplicate Contacts\". Use the strict\nrule for Organizations to find the potential duplicates and merge them if appropriate.{/ts}

\n
\n \n \n \n \n \n \n \n
\n {ts}Copy of Contribution Receipt{/ts}\n
\n {* FIXME: the below is most probably not HTML-ised *}\n {$receiptMessage}\n
\n
\n
\n\n\n\n',1,708,0,1,NULL),(5,'Contributions - Receipt (off-line)','{ts}Contribution Receipt{/ts}\n','{if $formValues.receipt_text}\n{$formValues.receipt_text}\n{else}{ts}Thanks for your support.{/ts}{/if}\n\n{ts}Please print this receipt for your records.{/ts}\n\n\n===========================================================\n{ts}Contribution Information{/ts}\n\n===========================================================\n{ts}Financial Type{/ts}: {$formValues.contributionType_name}\n{if $lineItem}\n{foreach from=$lineItem item=value key=priceset}\n---------------------------------------------------------\n{capture assign=ts_item}{ts}Item{/ts}{/capture}\n{capture assign=ts_qty}{ts}Qty{/ts}{/capture}\n{capture assign=ts_each}{ts}Each{/ts}{/capture}\n{capture assign=ts_total}{ts}Total{/ts}{/capture}\n{$ts_item|string_format:\"%-30s\"} {$ts_qty|string_format:\"%5s\"} {$ts_each|string_format:\"%10s\"} {$ts_total|string_format:\"%10s\"}\n----------------------------------------------------------\n{foreach from=$value item=line}\n{capture assign=ts_item}{if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description} {$line.description}{/if}{/capture}{$ts_item|truncate:30:\"...\"|string_format:\"%-30s\"} {$line.qty|string_format:\"%5s\"} {$line.unit_price|crmMoney:$currency|string_format:\"%10s\"} {$line.line_total|crmMoney:$currency|string_format:\"%10s\"}\n{/foreach}\n{/foreach}\n{/if}\n\n{ts}Total Amount{/ts}: {$formValues.total_amount|crmMoney:$currency}\n{if $receive_date}\n{ts}Received Date{/ts}: {$receive_date|truncate:10:\'\'|crmDate}\n{/if}\n{if $receipt_date}\n{ts}Receipt Date{/ts}: {$receipt_date|truncate:10:\'\'|crmDate}\n{/if}\n{if $formValues.paidBy and !$formValues.hidden_CreditCard}\n{ts}Paid By{/ts}: {$formValues.paidBy}\n{if $formValues.check_number}\n{ts}Check Number{/ts}: {$formValues.check_number}\n{/if}\n{/if}\n{if $formValues.trxn_id}\n{ts}Transaction ID{/ts}: {$formValues.trxn_id}\n{/if}\n\n{if $ccContribution}\n===========================================================\n{ts}Billing Name and Address{/ts}\n\n===========================================================\n{$billingName}\n{$address}\n\n===========================================================\n{ts}Credit Card Information{/ts}\n\n===========================================================\n{$credit_card_type}\n{$credit_card_number}\n{ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n{/if}\n{if $customGroup}\n{foreach from=$customGroup item=value key=customName}\n===========================================================\n{$customName}\n===========================================================\n{foreach from=$value item=v key=n}\n{$n}: {$v}\n{/foreach}\n{/foreach}\n{/if}\n\n{if $softCreditTypes and $softCredits}\n{foreach from=$softCreditTypes item=softCreditType key=n}\n===========================================================\n{softCreditType}\n===========================================================\n{foreach from=$softCredits.$n item=value key=label}\n{$label}: {$value}\n{/foreach}\n{/foreach}\n{/if}\n\n{if $formValues.product_name}\n===========================================================\n{ts}Premium Information{/ts}\n\n===========================================================\n{$formValues.product_name}\n{if $formValues.product_option}\n{ts}Option{/ts}: {$formValues.product_option}\n{/if}\n{if $formValues.product_sku}\n{ts}SKU{/ts}: {$formValues.product_sku}\n{/if}\n{if $fulfilled_date}\n{ts}Sent{/ts}: {$fulfilled_date|crmDate}\n{/if}\n{/if}\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n \n \n \n\n
\n\n {if $formValues.receipt_text}\n

{$formValues.receipt_text|htmlize}

\n {else}\n

{ts}Thanks for your support.{/ts}

\n {/if}\n\n

{ts}Please print this receipt for your records.{/ts}

\n\n
\n \n \n \n \n \n \n \n \n\n {if $lineItem and !$is_quick_config}\n {foreach from=$lineItem item=value key=priceset}\n \n \n \n {/foreach}\n {/if}\n\n \n \n \n \n\n {if $receive_date}\n \n \n \n \n {/if}\n\n {if $receipt_date}\n \n \n \n \n {/if}\n\n {if $formValues.paidBy and !$formValues.hidden_CreditCard}\n \n \n \n \n {if $formValues.check_number}\n \n \n \n \n {/if}\n {/if}\n\n {if $formValues.trxn_id}\n \n \n \n \n {/if}\n\n {if $ccContribution}\n \n \n \n \n \n \n \n \n \n \n \n \n {/if}\n\n {if $softCreditTypes and $softCredits}\n {foreach from=$softCreditTypes item=softCreditType key=n}\n \n \n \n {foreach from=$softCredits.$n item=value key=label}\n \n \n \n \n {/foreach}\n {/foreach}\n {/if}\n\n {if $customGroup}\n {foreach from=$customGroup item=value key=customName}\n \n \n \n {foreach from=$value item=v key=n}\n \n \n \n \n {/foreach}\n {/foreach}\n {/if}\n\n {if $formValues.product_name}\n \n \n \n \n \n \n {if $formValues.product_option}\n \n \n \n \n {/if}\n {if $formValues.product_sku}\n \n \n \n \n {/if}\n {if $fulfilled_date}\n \n \n \n \n {/if}\n {/if}\n\n
\n {ts}Contribution Information{/ts}\n
\n {ts}Financial Type{/ts}\n \n {$formValues.contributionType_name}\n
\n {* FIXME: style this table so that it looks like the text version (justification, etc.) *}\n \n \n \n \n \n \n {foreach from=$value item=line}\n \n \n \n \n \n \n {/foreach}\n
{ts}Item{/ts}{ts}Qty{/ts}{ts}Each{/ts}{ts}Total{/ts}
\n {if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description}
{$line.description|truncate:30:\"...\"}
{/if}\n
\n {$line.qty}\n \n {$line.unit_price|crmMoney:$currency}\n \n {$line.line_total|crmMoney:$currency}\n
\n
\n {ts}Total Amount{/ts}\n \n {$formValues.total_amount|crmMoney:$currency}\n
\n {ts}Received Date{/ts}\n \n {$receive_date|truncate:10:\'\'|crmDate}\n
\n {ts}Receipt Date{/ts}\n \n {$receipt_date|truncate:10:\'\'|crmDate}\n
\n {ts}Paid By{/ts}\n \n {$formValues.paidBy}\n
\n {ts}Check Number{/ts}\n \n {$formValues.check_number}\n
\n {ts}Transaction ID{/ts}\n \n {$formValues.trxn_id}\n
\n {ts}Billing Name and Address{/ts}\n
\n {$billingName}
\n {$address|nl2br}\n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}
\n {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n
\n {$softCreditType}\n
\n {$label}\n \n {$value}\n
\n {$customName}\n
\n {$n}\n \n {$v}\n
\n {ts}Premium Information{/ts}\n
\n {$formValues.product_name}\n
\n {ts}Option{/ts}\n \n {$formValues.product_option}\n
\n {ts}SKU{/ts}\n \n {$formValues.product_sku}\n
\n {ts}Sent{/ts}\n \n {$fulfilled_date|truncate:10:\'\'|crmDate}\n
\n
\n
\n\n\n\n',1,709,1,0,NULL),(6,'Contributions - Receipt (off-line)','{ts}Contribution Receipt{/ts}\n','{if $formValues.receipt_text}\n{$formValues.receipt_text}\n{else}{ts}Thanks for your support.{/ts}{/if}\n\n{ts}Please print this receipt for your records.{/ts}\n\n\n===========================================================\n{ts}Contribution Information{/ts}\n\n===========================================================\n{ts}Financial Type{/ts}: {$formValues.contributionType_name}\n{if $lineItem}\n{foreach from=$lineItem item=value key=priceset}\n---------------------------------------------------------\n{capture assign=ts_item}{ts}Item{/ts}{/capture}\n{capture assign=ts_qty}{ts}Qty{/ts}{/capture}\n{capture assign=ts_each}{ts}Each{/ts}{/capture}\n{capture assign=ts_total}{ts}Total{/ts}{/capture}\n{$ts_item|string_format:\"%-30s\"} {$ts_qty|string_format:\"%5s\"} {$ts_each|string_format:\"%10s\"} {$ts_total|string_format:\"%10s\"}\n----------------------------------------------------------\n{foreach from=$value item=line}\n{capture assign=ts_item}{if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description} {$line.description}{/if}{/capture}{$ts_item|truncate:30:\"...\"|string_format:\"%-30s\"} {$line.qty|string_format:\"%5s\"} {$line.unit_price|crmMoney:$currency|string_format:\"%10s\"} {$line.line_total|crmMoney:$currency|string_format:\"%10s\"}\n{/foreach}\n{/foreach}\n{/if}\n\n{ts}Total Amount{/ts}: {$formValues.total_amount|crmMoney:$currency}\n{if $receive_date}\n{ts}Received Date{/ts}: {$receive_date|truncate:10:\'\'|crmDate}\n{/if}\n{if $receipt_date}\n{ts}Receipt Date{/ts}: {$receipt_date|truncate:10:\'\'|crmDate}\n{/if}\n{if $formValues.paidBy and !$formValues.hidden_CreditCard}\n{ts}Paid By{/ts}: {$formValues.paidBy}\n{if $formValues.check_number}\n{ts}Check Number{/ts}: {$formValues.check_number}\n{/if}\n{/if}\n{if $formValues.trxn_id}\n{ts}Transaction ID{/ts}: {$formValues.trxn_id}\n{/if}\n\n{if $ccContribution}\n===========================================================\n{ts}Billing Name and Address{/ts}\n\n===========================================================\n{$billingName}\n{$address}\n\n===========================================================\n{ts}Credit Card Information{/ts}\n\n===========================================================\n{$credit_card_type}\n{$credit_card_number}\n{ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n{/if}\n{if $customGroup}\n{foreach from=$customGroup item=value key=customName}\n===========================================================\n{$customName}\n===========================================================\n{foreach from=$value item=v key=n}\n{$n}: {$v}\n{/foreach}\n{/foreach}\n{/if}\n\n{if $softCreditTypes and $softCredits}\n{foreach from=$softCreditTypes item=softCreditType key=n}\n===========================================================\n{softCreditType}\n===========================================================\n{foreach from=$softCredits.$n item=value key=label}\n{$label}: {$value}\n{/foreach}\n{/foreach}\n{/if}\n\n{if $formValues.product_name}\n===========================================================\n{ts}Premium Information{/ts}\n\n===========================================================\n{$formValues.product_name}\n{if $formValues.product_option}\n{ts}Option{/ts}: {$formValues.product_option}\n{/if}\n{if $formValues.product_sku}\n{ts}SKU{/ts}: {$formValues.product_sku}\n{/if}\n{if $fulfilled_date}\n{ts}Sent{/ts}: {$fulfilled_date|crmDate}\n{/if}\n{/if}\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n \n \n \n\n
\n\n {if $formValues.receipt_text}\n

{$formValues.receipt_text|htmlize}

\n {else}\n

{ts}Thanks for your support.{/ts}

\n {/if}\n\n

{ts}Please print this receipt for your records.{/ts}

\n\n
\n \n \n \n \n \n \n \n \n\n {if $lineItem and !$is_quick_config}\n {foreach from=$lineItem item=value key=priceset}\n \n \n \n {/foreach}\n {/if}\n\n \n \n \n \n\n {if $receive_date}\n \n \n \n \n {/if}\n\n {if $receipt_date}\n \n \n \n \n {/if}\n\n {if $formValues.paidBy and !$formValues.hidden_CreditCard}\n \n \n \n \n {if $formValues.check_number}\n \n \n \n \n {/if}\n {/if}\n\n {if $formValues.trxn_id}\n \n \n \n \n {/if}\n\n {if $ccContribution}\n \n \n \n \n \n \n \n \n \n \n \n \n {/if}\n\n {if $softCreditTypes and $softCredits}\n {foreach from=$softCreditTypes item=softCreditType key=n}\n \n \n \n {foreach from=$softCredits.$n item=value key=label}\n \n \n \n \n {/foreach}\n {/foreach}\n {/if}\n\n {if $customGroup}\n {foreach from=$customGroup item=value key=customName}\n \n \n \n {foreach from=$value item=v key=n}\n \n \n \n \n {/foreach}\n {/foreach}\n {/if}\n\n {if $formValues.product_name}\n \n \n \n \n \n \n {if $formValues.product_option}\n \n \n \n \n {/if}\n {if $formValues.product_sku}\n \n \n \n \n {/if}\n {if $fulfilled_date}\n \n \n \n \n {/if}\n {/if}\n\n
\n {ts}Contribution Information{/ts}\n
\n {ts}Financial Type{/ts}\n \n {$formValues.contributionType_name}\n
\n {* FIXME: style this table so that it looks like the text version (justification, etc.) *}\n \n \n \n \n \n \n {foreach from=$value item=line}\n \n \n \n \n \n \n {/foreach}\n
{ts}Item{/ts}{ts}Qty{/ts}{ts}Each{/ts}{ts}Total{/ts}
\n {if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description}
{$line.description|truncate:30:\"...\"}
{/if}\n
\n {$line.qty}\n \n {$line.unit_price|crmMoney:$currency}\n \n {$line.line_total|crmMoney:$currency}\n
\n
\n {ts}Total Amount{/ts}\n \n {$formValues.total_amount|crmMoney:$currency}\n
\n {ts}Received Date{/ts}\n \n {$receive_date|truncate:10:\'\'|crmDate}\n
\n {ts}Receipt Date{/ts}\n \n {$receipt_date|truncate:10:\'\'|crmDate}\n
\n {ts}Paid By{/ts}\n \n {$formValues.paidBy}\n
\n {ts}Check Number{/ts}\n \n {$formValues.check_number}\n
\n {ts}Transaction ID{/ts}\n \n {$formValues.trxn_id}\n
\n {ts}Billing Name and Address{/ts}\n
\n {$billingName}
\n {$address|nl2br}\n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}
\n {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n
\n {$softCreditType}\n
\n {$label}\n \n {$value}\n
\n {$customName}\n
\n {$n}\n \n {$v}\n
\n {ts}Premium Information{/ts}\n
\n {$formValues.product_name}\n
\n {ts}Option{/ts}\n \n {$formValues.product_option}\n
\n {ts}SKU{/ts}\n \n {$formValues.product_sku}\n
\n {ts}Sent{/ts}\n \n {$fulfilled_date|truncate:10:\'\'|crmDate}\n
\n
\n
\n\n\n\n',1,709,0,1,NULL),(7,'Contributions - Receipt (on-line)','{if $is_pay_later}{ts}Invoice{/ts}{else}{ts}Receipt{/ts}{/if} - {$title}\n','{if $receipt_text}\n{$receipt_text}\n{/if}\n{if $is_pay_later}\n\n===========================================================\n{$pay_later_receipt}\n===========================================================\n{else}\n\n{ts}Please print this receipt for your records.{/ts}\n{/if}\n\n{if $amount}\n===========================================================\n{ts}Contribution Information{/ts}\n\n===========================================================\n{if $lineItem and $priceSetID and !$is_quick_config}\n{foreach from=$lineItem item=value key=priceset}\n---------------------------------------------------------\n{capture assign=ts_item}{ts}Item{/ts}{/capture}\n{capture assign=ts_qty}{ts}Qty{/ts}{/capture}\n{capture assign=ts_each}{ts}Each{/ts}{/capture}\n{capture assign=ts_total}{ts}Total{/ts}{/capture}\n{$ts_item|string_format:\"%-30s\"} {$ts_qty|string_format:\"%5s\"} {$ts_each|string_format:\"%10s\"} {$ts_total|string_format:\"%10s\"}\n----------------------------------------------------------\n{foreach from=$value item=line}\n{capture assign=ts_item}{if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description} {$line.description}{/if}{/capture}{$ts_item|truncate:30:\"...\"|string_format:\"%-30s\"} {$line.qty|string_format:\"%5s\"} {$line.unit_price|crmMoney:$currency|string_format:\"%10s\"} {$line.line_total|crmMoney:$currency|string_format:\"%10s\"}\n{/foreach}\n{/foreach}\n\n{ts}Total Amount{/ts}: {$amount|crmMoney:$currency}\n{else}\n{ts}Amount{/ts}: {$amount|crmMoney:$currency} {if $amount_level } - {$amount_level} {/if}\n{/if}\n{/if}\n{if $receive_date}\n\n{ts}Date{/ts}: {$receive_date|crmDate}\n{/if}\n{if $is_monetary and $trxn_id}\n{ts}Transaction #{/ts}: {$trxn_id}\n{/if}\n\n{if $is_recur and ($contributeMode eq \'notify\' or $contributeMode eq \'directIPN\')}\n{ts}This is a recurring contribution. You can cancel future contributions at:{/ts}\n\n{$cancelSubscriptionUrl}\n\n{if $updateSubscriptionBillingUrl}\n{ts}You can update billing details for this recurring contribution at:{/ts}\n\n{$updateSubscriptionBillingUrl}\n\n{/if}\n{ts}You can update recurring contribution amount or change the number of installments for this recurring contribution at:{/ts}\n\n{$updateSubscriptionUrl}\n\n{/if}\n\n{if $honor_block_is_active}\n===========================================================\n{$soft_credit_type}\n===========================================================\n{foreach from=$honoreeProfile item=value key=label}\n{$label}: {$value}\n{/foreach}\n\n{/if}\n{if $pcpBlock}\n===========================================================\n{ts}Personal Campaign Page{/ts}\n\n===========================================================\n{ts}Display In Honor Roll{/ts}: {if $pcp_display_in_roll}{ts}Yes{/ts}{else}{ts}No{/ts}{/if}\n\n{if $pcp_roll_nickname}{ts}Nickname{/ts}: {$pcp_roll_nickname}{/if}\n\n{if $pcp_personal_note}{ts}Personal Note{/ts}: {$pcp_personal_note}{/if}\n\n{/if}\n{if $onBehalfProfile}\n===========================================================\n{ts}On Behalf Of{/ts}\n\n===========================================================\n{foreach from=$onBehalfProfile item=onBehalfValue key=onBehalfName}\n{$onBehalfName}: {$onBehalfValue}\n{/foreach}\n{/if}\n\n{if !( $contributeMode eq \'notify\' OR $contributeMode eq \'directIPN\' ) and $is_monetary}\n{if $is_pay_later}\n===========================================================\n{ts}Registered Email{/ts}\n\n===========================================================\n{$email}\n{elseif $amount GT 0}\n===========================================================\n{ts}Billing Name and Address{/ts}\n\n===========================================================\n{$billingName}\n{$address}\n\n{$email}\n{/if} {* End ! is_pay_later condition. *}\n{/if}\n{if $contributeMode eq \'direct\' AND !$is_pay_later AND $amount GT 0}\n\n===========================================================\n{ts}Credit Card Information{/ts}\n\n===========================================================\n{$credit_card_type}\n{$credit_card_number}\n{ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n{/if}\n\n{if $selectPremium }\n===========================================================\n{ts}Premium Information{/ts}\n\n===========================================================\n{$product_name}\n{if $option}\n{ts}Option{/ts}: {$option}\n{/if}\n{if $sku}\n{ts}SKU{/ts}: {$sku}\n{/if}\n{if $start_date}\n{ts}Start Date{/ts}: {$start_date|crmDate}\n{/if}\n{if $end_date}\n{ts}End Date{/ts}: {$end_date|crmDate}\n{/if}\n{if $contact_email OR $contact_phone}\n\n{ts}For information about this premium, contact:{/ts}\n\n{if $contact_email}\n {$contact_email}\n{/if}\n{if $contact_phone}\n {$contact_phone}\n{/if}\n{/if}\n{if $is_deductible AND $price}\n\n{ts 1=$price|crmMoney:$currency}The value of this premium is %1. This may affect the amount of the tax deduction you can claim. Consult your tax advisor for more information.{/ts}{/if}\n{/if}\n\n{if $customPre}\n===========================================================\n{$customPre_grouptitle}\n\n===========================================================\n{foreach from=$customPre item=customValue key=customName}\n{if ( $trackingFields and ! in_array( $customName, $trackingFields ) ) or ! $trackingFields}\n {$customName}: {$customValue}\n{/if}\n{/foreach}\n{/if}\n\n\n{if $customPost}\n===========================================================\n{$customPost_grouptitle}\n\n===========================================================\n{foreach from=$customPost item=customValue key=customName}\n{if ( $trackingFields and ! in_array( $customName, $trackingFields ) ) or ! $trackingFields}\n {$customName}: {$customValue}\n{/if}\n{/foreach}\n{/if}\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n
\n\n {if $receipt_text}\n

{$receipt_text|htmlize}

\n {/if}\n\n {if $is_pay_later}\n

{$pay_later_receipt}

{* FIXME: this might be text rather than HTML *}\n {else}\n

{ts}Please print this confirmation for your records.{/ts}

\n {/if}\n\n
\n \n\n {if $amount}\n\n\n \n \n \n\n {if $lineItem and $priceSetID and !$is_quick_config}\n\n {foreach from=$lineItem item=value key=priceset}\n \n \n \n {/foreach}\n \n \n \n \n\n {else}\n\n \n \n \n \n\n {/if}\n\n {/if}\n\n\n {if $receive_date}\n \n \n \n \n {/if}\n\n {if $is_monetary and $trxn_id}\n \n \n \n \n {/if}\n\n {if $is_recur}\n {if $contributeMode eq \'notify\' or $contributeMode eq \'directIPN\'}\n \n \n {if $updateSubscriptionBillingUrl}\n \n \n \n {/if}\n \n \n \n \n {/if}\n {/if}\n\n {if $honor_block_is_active}\n \n \n \n {foreach from=$honoreeProfile item=value key=label}\n \n \n \n \n {/foreach}\n {/if}\n\n {if $pcpBlock}\n \n \n \n \n \n \n \n {if $pcp_roll_nickname}\n \n \n \n \n {/if}\n {if $pcp_personal_note}\n \n \n \n \n {/if}\n {/if}\n\n {if $onBehalfProfile}\n \n \n \n {foreach from=$onBehalfProfile item=onBehalfValue key=onBehalfName}\n \n \n \n \n {/foreach}\n {/if}\n\n {if $isShare}\n \n \n \n {/if}\n\n {if ! ($contributeMode eq \'notify\' OR $contributeMode eq \'directIPN\') and $is_monetary}\n {if $is_pay_later}\n \n \n \n \n \n \n {elseif $amount GT 0}\n \n \n \n \n \n \n {/if}\n {/if}\n\n {if $contributeMode eq \'direct\' AND !$is_pay_later AND $amount GT 0}\n \n \n \n \n \n \n {/if}\n\n {if $selectPremium}\n \n \n \n \n \n \n {if $option}\n \n \n \n \n {/if}\n {if $sku}\n \n \n \n \n {/if}\n {if $start_date}\n \n \n \n \n {/if}\n {if $end_date}\n \n \n \n \n {/if}\n {if $contact_email OR $contact_phone}\n \n \n \n {/if}\n {if $is_deductible AND $price}\n \n \n \n {/if}\n {/if}\n\n {if $customPre}\n \n \n \n {foreach from=$customPre item=customValue key=customName}\n {if ($trackingFields and ! in_array($customName, $trackingFields)) or ! $trackingFields}\n \n \n \n \n {/if}\n {/foreach}\n {/if}\n\n {if $customPost}\n \n \n \n {foreach from=$customPost item=customValue key=customName}\n {if ($trackingFields and ! in_array($customName, $trackingFields)) or ! $trackingFields}\n \n \n \n \n {/if}\n {/foreach}\n {/if}\n\n
\n {ts}Contribution Information{/ts}\n
\n {* FIXME: style this table so that it looks like the text version (justification, etc.) *}\n \n \n \n \n \n \n {foreach from=$value item=line}\n \n \n \n \n \n \n {/foreach}\n
{ts}Item{/ts}{ts}Qty{/ts}{ts}Each{/ts}{ts}Total{/ts}
\n {if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description}
{$line.description|truncate:30:\"...\"}
{/if}\n
\n {$line.qty}\n \n {$line.unit_price|crmMoney:$currency}\n \n {$line.line_total|crmMoney:$currency}\n
\n
\n {ts}Total Amount{/ts}\n \n {$amount|crmMoney:$currency}\n
\n {ts}Amount{/ts}\n \n {$amount|crmMoney:$currency} {if $amount_level} - {$amount_level}{/if}\n
\n {ts}Date{/ts}\n \n {$receive_date|crmDate}\n
\n {ts}Transaction #{/ts}\n \n {$trxn_id}\n
\n {ts 1=$cancelSubscriptionUrl}This is a recurring contribution. You can cancel future contributions by visiting this web page.{/ts}\n
\n {ts 1=$updateSubscriptionBillingUrl}You can update billing details for this recurring contribution by visiting this web page.{/ts}\n
\n {ts 1=$updateSubscriptionUrl}You can update recurring contribution amount or change the number of installments for this recurring contribution by visiting this web page.{/ts}\n
\n {$soft_credit_type}\n
\n {$label}\n \n {$value}\n
\n {ts}Personal Campaign Page{/ts}\n
\n {ts}Display In Honor Roll{/ts}\n \n {if $pcp_display_in_roll}{ts}Yes{/ts}{else}{ts}No{/ts}{/if}\n
\n {ts}Nickname{/ts}\n \n {$pcp_roll_nickname}\n
\n {ts}Personal Note{/ts}\n \n {$pcp_personal_note}\n
\n {$onBehalfProfile_grouptitle}\n
\n {$onBehalfName}\n \n {$onBehalfValue}\n
\n {capture assign=contributionUrl}{crmURL p=\'civicrm/contribute/transact\' q=\"reset=1&id=`$contributionPageId`\" a=true fe=1 h=1}{/capture}\n {include file=\"CRM/common/SocialNetwork.tpl\" emailMode=true url=$contributionUrl title=$title pageURL=$contributionUrl}\n
\n {ts}Registered Email{/ts}\n
\n {$email}\n
\n {ts}Billing Name and Address{/ts}\n
\n {$billingName}
\n {$address|nl2br}
\n {$email}\n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}
\n {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}
\n
\n {ts}Premium Information{/ts}\n
\n {$product_name}\n
\n {ts}Option{/ts}\n \n {$option}\n
\n {ts}SKU{/ts}\n \n {$sku}\n
\n {ts}Start Date{/ts}\n \n {$start_date|crmDate}\n
\n {ts}End Date{/ts}\n \n {$end_date|crmDate}\n
\n

{ts}For information about this premium, contact:{/ts}

\n {if $contact_email}\n

{$contact_email}

\n {/if}\n {if $contact_phone}\n

{$contact_phone}

\n {/if}\n
\n

{ts 1=$price|crmMoney:$currency}The value of this premium is %1. This may affect the amount of the tax deduction you can claim. Consult your tax advisor for more information.{/ts}

\n
\n {$customPre_grouptitle}\n
\n {$customName}\n \n {$customValue}\n
\n {$customPost_grouptitle}\n
\n {$customName}\n \n {$customValue}\n
\n
\n\n\n\n',1,710,1,0,NULL),(8,'Contributions - Receipt (on-line)','{if $is_pay_later}{ts}Invoice{/ts}{else}{ts}Receipt{/ts}{/if} - {$title}\n','{if $receipt_text}\n{$receipt_text}\n{/if}\n{if $is_pay_later}\n\n===========================================================\n{$pay_later_receipt}\n===========================================================\n{else}\n\n{ts}Please print this receipt for your records.{/ts}\n{/if}\n\n{if $amount}\n===========================================================\n{ts}Contribution Information{/ts}\n\n===========================================================\n{if $lineItem and $priceSetID and !$is_quick_config}\n{foreach from=$lineItem item=value key=priceset}\n---------------------------------------------------------\n{capture assign=ts_item}{ts}Item{/ts}{/capture}\n{capture assign=ts_qty}{ts}Qty{/ts}{/capture}\n{capture assign=ts_each}{ts}Each{/ts}{/capture}\n{capture assign=ts_total}{ts}Total{/ts}{/capture}\n{$ts_item|string_format:\"%-30s\"} {$ts_qty|string_format:\"%5s\"} {$ts_each|string_format:\"%10s\"} {$ts_total|string_format:\"%10s\"}\n----------------------------------------------------------\n{foreach from=$value item=line}\n{capture assign=ts_item}{if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description} {$line.description}{/if}{/capture}{$ts_item|truncate:30:\"...\"|string_format:\"%-30s\"} {$line.qty|string_format:\"%5s\"} {$line.unit_price|crmMoney:$currency|string_format:\"%10s\"} {$line.line_total|crmMoney:$currency|string_format:\"%10s\"}\n{/foreach}\n{/foreach}\n\n{ts}Total Amount{/ts}: {$amount|crmMoney:$currency}\n{else}\n{ts}Amount{/ts}: {$amount|crmMoney:$currency} {if $amount_level } - {$amount_level} {/if}\n{/if}\n{/if}\n{if $receive_date}\n\n{ts}Date{/ts}: {$receive_date|crmDate}\n{/if}\n{if $is_monetary and $trxn_id}\n{ts}Transaction #{/ts}: {$trxn_id}\n{/if}\n\n{if $is_recur and ($contributeMode eq \'notify\' or $contributeMode eq \'directIPN\')}\n{ts}This is a recurring contribution. You can cancel future contributions at:{/ts}\n\n{$cancelSubscriptionUrl}\n\n{if $updateSubscriptionBillingUrl}\n{ts}You can update billing details for this recurring contribution at:{/ts}\n\n{$updateSubscriptionBillingUrl}\n\n{/if}\n{ts}You can update recurring contribution amount or change the number of installments for this recurring contribution at:{/ts}\n\n{$updateSubscriptionUrl}\n\n{/if}\n\n{if $honor_block_is_active}\n===========================================================\n{$soft_credit_type}\n===========================================================\n{foreach from=$honoreeProfile item=value key=label}\n{$label}: {$value}\n{/foreach}\n\n{/if}\n{if $pcpBlock}\n===========================================================\n{ts}Personal Campaign Page{/ts}\n\n===========================================================\n{ts}Display In Honor Roll{/ts}: {if $pcp_display_in_roll}{ts}Yes{/ts}{else}{ts}No{/ts}{/if}\n\n{if $pcp_roll_nickname}{ts}Nickname{/ts}: {$pcp_roll_nickname}{/if}\n\n{if $pcp_personal_note}{ts}Personal Note{/ts}: {$pcp_personal_note}{/if}\n\n{/if}\n{if $onBehalfProfile}\n===========================================================\n{ts}On Behalf Of{/ts}\n\n===========================================================\n{foreach from=$onBehalfProfile item=onBehalfValue key=onBehalfName}\n{$onBehalfName}: {$onBehalfValue}\n{/foreach}\n{/if}\n\n{if !( $contributeMode eq \'notify\' OR $contributeMode eq \'directIPN\' ) and $is_monetary}\n{if $is_pay_later}\n===========================================================\n{ts}Registered Email{/ts}\n\n===========================================================\n{$email}\n{elseif $amount GT 0}\n===========================================================\n{ts}Billing Name and Address{/ts}\n\n===========================================================\n{$billingName}\n{$address}\n\n{$email}\n{/if} {* End ! is_pay_later condition. *}\n{/if}\n{if $contributeMode eq \'direct\' AND !$is_pay_later AND $amount GT 0}\n\n===========================================================\n{ts}Credit Card Information{/ts}\n\n===========================================================\n{$credit_card_type}\n{$credit_card_number}\n{ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n{/if}\n\n{if $selectPremium }\n===========================================================\n{ts}Premium Information{/ts}\n\n===========================================================\n{$product_name}\n{if $option}\n{ts}Option{/ts}: {$option}\n{/if}\n{if $sku}\n{ts}SKU{/ts}: {$sku}\n{/if}\n{if $start_date}\n{ts}Start Date{/ts}: {$start_date|crmDate}\n{/if}\n{if $end_date}\n{ts}End Date{/ts}: {$end_date|crmDate}\n{/if}\n{if $contact_email OR $contact_phone}\n\n{ts}For information about this premium, contact:{/ts}\n\n{if $contact_email}\n {$contact_email}\n{/if}\n{if $contact_phone}\n {$contact_phone}\n{/if}\n{/if}\n{if $is_deductible AND $price}\n\n{ts 1=$price|crmMoney:$currency}The value of this premium is %1. This may affect the amount of the tax deduction you can claim. Consult your tax advisor for more information.{/ts}{/if}\n{/if}\n\n{if $customPre}\n===========================================================\n{$customPre_grouptitle}\n\n===========================================================\n{foreach from=$customPre item=customValue key=customName}\n{if ( $trackingFields and ! in_array( $customName, $trackingFields ) ) or ! $trackingFields}\n {$customName}: {$customValue}\n{/if}\n{/foreach}\n{/if}\n\n\n{if $customPost}\n===========================================================\n{$customPost_grouptitle}\n\n===========================================================\n{foreach from=$customPost item=customValue key=customName}\n{if ( $trackingFields and ! in_array( $customName, $trackingFields ) ) or ! $trackingFields}\n {$customName}: {$customValue}\n{/if}\n{/foreach}\n{/if}\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n
\n\n {if $receipt_text}\n

{$receipt_text|htmlize}

\n {/if}\n\n {if $is_pay_later}\n

{$pay_later_receipt}

{* FIXME: this might be text rather than HTML *}\n {else}\n

{ts}Please print this confirmation for your records.{/ts}

\n {/if}\n\n
\n \n\n {if $amount}\n\n\n \n \n \n\n {if $lineItem and $priceSetID and !$is_quick_config}\n\n {foreach from=$lineItem item=value key=priceset}\n \n \n \n {/foreach}\n \n \n \n \n\n {else}\n\n \n \n \n \n\n {/if}\n\n {/if}\n\n\n {if $receive_date}\n \n \n \n \n {/if}\n\n {if $is_monetary and $trxn_id}\n \n \n \n \n {/if}\n\n {if $is_recur}\n {if $contributeMode eq \'notify\' or $contributeMode eq \'directIPN\'}\n \n \n {if $updateSubscriptionBillingUrl}\n \n \n \n {/if}\n \n \n \n \n {/if}\n {/if}\n\n {if $honor_block_is_active}\n \n \n \n {foreach from=$honoreeProfile item=value key=label}\n \n \n \n \n {/foreach}\n {/if}\n\n {if $pcpBlock}\n \n \n \n \n \n \n \n {if $pcp_roll_nickname}\n \n \n \n \n {/if}\n {if $pcp_personal_note}\n \n \n \n \n {/if}\n {/if}\n\n {if $onBehalfProfile}\n \n \n \n {foreach from=$onBehalfProfile item=onBehalfValue key=onBehalfName}\n \n \n \n \n {/foreach}\n {/if}\n\n {if $isShare}\n \n \n \n {/if}\n\n {if ! ($contributeMode eq \'notify\' OR $contributeMode eq \'directIPN\') and $is_monetary}\n {if $is_pay_later}\n \n \n \n \n \n \n {elseif $amount GT 0}\n \n \n \n \n \n \n {/if}\n {/if}\n\n {if $contributeMode eq \'direct\' AND !$is_pay_later AND $amount GT 0}\n \n \n \n \n \n \n {/if}\n\n {if $selectPremium}\n \n \n \n \n \n \n {if $option}\n \n \n \n \n {/if}\n {if $sku}\n \n \n \n \n {/if}\n {if $start_date}\n \n \n \n \n {/if}\n {if $end_date}\n \n \n \n \n {/if}\n {if $contact_email OR $contact_phone}\n \n \n \n {/if}\n {if $is_deductible AND $price}\n \n \n \n {/if}\n {/if}\n\n {if $customPre}\n \n \n \n {foreach from=$customPre item=customValue key=customName}\n {if ($trackingFields and ! in_array($customName, $trackingFields)) or ! $trackingFields}\n \n \n \n \n {/if}\n {/foreach}\n {/if}\n\n {if $customPost}\n \n \n \n {foreach from=$customPost item=customValue key=customName}\n {if ($trackingFields and ! in_array($customName, $trackingFields)) or ! $trackingFields}\n \n \n \n \n {/if}\n {/foreach}\n {/if}\n\n
\n {ts}Contribution Information{/ts}\n
\n {* FIXME: style this table so that it looks like the text version (justification, etc.) *}\n \n \n \n \n \n \n {foreach from=$value item=line}\n \n \n \n \n \n \n {/foreach}\n
{ts}Item{/ts}{ts}Qty{/ts}{ts}Each{/ts}{ts}Total{/ts}
\n {if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description}
{$line.description|truncate:30:\"...\"}
{/if}\n
\n {$line.qty}\n \n {$line.unit_price|crmMoney:$currency}\n \n {$line.line_total|crmMoney:$currency}\n
\n
\n {ts}Total Amount{/ts}\n \n {$amount|crmMoney:$currency}\n
\n {ts}Amount{/ts}\n \n {$amount|crmMoney:$currency} {if $amount_level} - {$amount_level}{/if}\n
\n {ts}Date{/ts}\n \n {$receive_date|crmDate}\n
\n {ts}Transaction #{/ts}\n \n {$trxn_id}\n
\n {ts 1=$cancelSubscriptionUrl}This is a recurring contribution. You can cancel future contributions by visiting this web page.{/ts}\n
\n {ts 1=$updateSubscriptionBillingUrl}You can update billing details for this recurring contribution by visiting this web page.{/ts}\n
\n {ts 1=$updateSubscriptionUrl}You can update recurring contribution amount or change the number of installments for this recurring contribution by visiting this web page.{/ts}\n
\n {$soft_credit_type}\n
\n {$label}\n \n {$value}\n
\n {ts}Personal Campaign Page{/ts}\n
\n {ts}Display In Honor Roll{/ts}\n \n {if $pcp_display_in_roll}{ts}Yes{/ts}{else}{ts}No{/ts}{/if}\n
\n {ts}Nickname{/ts}\n \n {$pcp_roll_nickname}\n
\n {ts}Personal Note{/ts}\n \n {$pcp_personal_note}\n
\n {$onBehalfProfile_grouptitle}\n
\n {$onBehalfName}\n \n {$onBehalfValue}\n
\n {capture assign=contributionUrl}{crmURL p=\'civicrm/contribute/transact\' q=\"reset=1&id=`$contributionPageId`\" a=true fe=1 h=1}{/capture}\n {include file=\"CRM/common/SocialNetwork.tpl\" emailMode=true url=$contributionUrl title=$title pageURL=$contributionUrl}\n
\n {ts}Registered Email{/ts}\n
\n {$email}\n
\n {ts}Billing Name and Address{/ts}\n
\n {$billingName}
\n {$address|nl2br}
\n {$email}\n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}
\n {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}
\n
\n {ts}Premium Information{/ts}\n
\n {$product_name}\n
\n {ts}Option{/ts}\n \n {$option}\n
\n {ts}SKU{/ts}\n \n {$sku}\n
\n {ts}Start Date{/ts}\n \n {$start_date|crmDate}\n
\n {ts}End Date{/ts}\n \n {$end_date|crmDate}\n
\n

{ts}For information about this premium, contact:{/ts}

\n {if $contact_email}\n

{$contact_email}

\n {/if}\n {if $contact_phone}\n

{$contact_phone}

\n {/if}\n
\n

{ts 1=$price|crmMoney:$currency}The value of this premium is %1. This may affect the amount of the tax deduction you can claim. Consult your tax advisor for more information.{/ts}

\n
\n {$customPre_grouptitle}\n
\n {$customName}\n \n {$customValue}\n
\n {$customPost_grouptitle}\n
\n {$customName}\n \n {$customValue}\n
\n
\n\n\n\n',1,710,0,1,NULL),(9,'Contributions - Recurring Start and End Notification','{ts}Recurring Contribution Notification{/ts}\n','{ts 1=$displayName}Dear %1{/ts},\n\n{if $recur_txnType eq \'START\'}\n{if $auto_renew_membership}\n{ts}Thanks for your auto renew membership sign-up.{/ts}\n\n\n{ts 1=$recur_frequency_interval 2=$recur_frequency_unit}This membership will be automatically renewed every %1 %2(s).{/ts}\n\n{ts 1=$cancelSubscriptionUrl}This membership will be renewed automatically. You can cancel the auto-renewal option by visiting this web page.{/ts}\n\n{ts 1=$updateSubscriptionBillingUrl}You can update billing details for this automatically renewed membership by visiting this web page.{/ts}\n\n{else}\n{ts}Thanks for your recurring contribution sign-up.{/ts}\n\n\n{ts 1=$recur_frequency_interval 2=$recur_frequency_unit 3=$recur_installments}This recurring contribution will be automatically processed every %1 %2(s) for a total of %3 installment(s).{/ts}\n\n{ts}Start Date{/ts}: {$recur_start_date|crmDate}\n\n{ts 1=$cancelSubscriptionUrl}You can cancel the recurring contribution option by visiting this web page.{/ts}\n\n{ts 1=$updateSubscriptionBillingUrl}You can update billing details for this recurring contribution by visiting this web page.{/ts}\n\n{ts 1=$updateSubscriptionUrl}You can update recurring contribution amount or change the number of installments for this recurring contribution by visiting this web page.{/ts}\n{/if}\n\n{elseif $recur_txnType eq \'END\'}\n{if $auto_renew_membership}\n{ts}Your auto renew membership sign-up has ended and your membership will not be automatically renewed.{/ts}\n\n\n{else}\n{ts}Your recurring contribution term has ended.{/ts}\n\n\n{ts 1=$recur_installments}You have successfully completed %1 recurring contributions. Thank you for your support.{/ts}\n\n\n==================================================\n{ts 1=$recur_installments}Interval of Subscription for %1 installment(s){/ts}\n\n==================================================\n{ts}Start Date{/ts}: {$recur_start_date|crmDate}\n\n{ts}End Date{/ts}: {$recur_end_date|crmDate}\n\n{/if}\n{/if}\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n\n \n \n \n\n {if $recur_txnType eq \'START\'}\n {if $auto_renew_membership}\n \n \n \n \n \n \n \n \n \n {else}\n \n \n \n \n \n \n \n \n \n \n \n \n {/if}\n\n {elseif $recur_txnType eq \'END\'}\n\n {if $auto_renew_membership}\n \n \n \n {else}\n \n \n \n \n \n \n\n {/if}\n {/if}\n\n
\n

{ts 1=$displayName}Dear %1{/ts},

\n
 
\n

{ts}Thanks for your auto renew membership sign-up.{/ts}

\n

{ts 1=$recur_frequency_interval 2=$recur_frequency_unit}This membership will be automatically renewed every %1 %2(s). {/ts}

\n
\n {ts 1=$cancelSubscriptionUrl}This membership will be renewed automatically. You can cancel the auto-renewal option by visiting this web page.{/ts}\n
\n {ts 1=$updateSubscriptionBillingUrl}You can update billing details for this automatically renewed membership by visiting this web page.{/ts}\n
\n

{ts}Thanks for your recurring contribution sign-up.{/ts}

\n

{ts 1=$recur_frequency_interval 2=$recur_frequency_unit 3=$recur_installments}This recurring contribution will be automatically processed every %1 %2(s) for a total of %3 installment(s).{/ts}

\n

{ts}Start Date{/ts}: {$recur_start_date|crmDate}

\n
\n {ts 1=$cancelSubscriptionUrl} You can cancel the recurring contribution option by visiting this web page.{/ts}\n
\n {ts 1=$updateSubscriptionBillingUrl}You can update billing details for this recurring contribution by visiting this web page.{/ts}\n
\n {ts 1=$updateSubscriptionUrl}You can update recurring contribution amount or change the number of installments details for this recurring contribution by visiting this web page.{/ts}\n
\n

{ts}Your auto renew membership sign-up has ended and your membership will not be automatically renewed.{/ts}

\n
\n

{ts}Your recurring contribution term has ended.{/ts}

\n

{ts 1=$recur_installments}You have successfully completed %1 recurring contributions. Thank you for your support.{/ts}

\n
\n \n \n \n \n \n \n \n \n \n \n \n \n
\n {ts 1=$recur_installments}Interval of Subscription for %1 installment(s){/ts}\n
\n {ts}Start Date{/ts}\n \n {$recur_start_date|crmDate}\n
\n {ts}End Date{/ts}\n \n {$recur_end_date|crmDate}\n
\n
\n
\n\n\n\n',1,711,1,0,NULL),(10,'Contributions - Recurring Start and End Notification','{ts}Recurring Contribution Notification{/ts}\n','{ts 1=$displayName}Dear %1{/ts},\n\n{if $recur_txnType eq \'START\'}\n{if $auto_renew_membership}\n{ts}Thanks for your auto renew membership sign-up.{/ts}\n\n\n{ts 1=$recur_frequency_interval 2=$recur_frequency_unit}This membership will be automatically renewed every %1 %2(s).{/ts}\n\n{ts 1=$cancelSubscriptionUrl}This membership will be renewed automatically. You can cancel the auto-renewal option by visiting this web page.{/ts}\n\n{ts 1=$updateSubscriptionBillingUrl}You can update billing details for this automatically renewed membership by visiting this web page.{/ts}\n\n{else}\n{ts}Thanks for your recurring contribution sign-up.{/ts}\n\n\n{ts 1=$recur_frequency_interval 2=$recur_frequency_unit 3=$recur_installments}This recurring contribution will be automatically processed every %1 %2(s) for a total of %3 installment(s).{/ts}\n\n{ts}Start Date{/ts}: {$recur_start_date|crmDate}\n\n{ts 1=$cancelSubscriptionUrl}You can cancel the recurring contribution option by visiting this web page.{/ts}\n\n{ts 1=$updateSubscriptionBillingUrl}You can update billing details for this recurring contribution by visiting this web page.{/ts}\n\n{ts 1=$updateSubscriptionUrl}You can update recurring contribution amount or change the number of installments for this recurring contribution by visiting this web page.{/ts}\n{/if}\n\n{elseif $recur_txnType eq \'END\'}\n{if $auto_renew_membership}\n{ts}Your auto renew membership sign-up has ended and your membership will not be automatically renewed.{/ts}\n\n\n{else}\n{ts}Your recurring contribution term has ended.{/ts}\n\n\n{ts 1=$recur_installments}You have successfully completed %1 recurring contributions. Thank you for your support.{/ts}\n\n\n==================================================\n{ts 1=$recur_installments}Interval of Subscription for %1 installment(s){/ts}\n\n==================================================\n{ts}Start Date{/ts}: {$recur_start_date|crmDate}\n\n{ts}End Date{/ts}: {$recur_end_date|crmDate}\n\n{/if}\n{/if}\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n\n \n \n \n\n {if $recur_txnType eq \'START\'}\n {if $auto_renew_membership}\n \n \n \n \n \n \n \n \n \n {else}\n \n \n \n \n \n \n \n \n \n \n \n \n {/if}\n\n {elseif $recur_txnType eq \'END\'}\n\n {if $auto_renew_membership}\n \n \n \n {else}\n \n \n \n \n \n \n\n {/if}\n {/if}\n\n
\n

{ts 1=$displayName}Dear %1{/ts},

\n
 
\n

{ts}Thanks for your auto renew membership sign-up.{/ts}

\n

{ts 1=$recur_frequency_interval 2=$recur_frequency_unit}This membership will be automatically renewed every %1 %2(s). {/ts}

\n
\n {ts 1=$cancelSubscriptionUrl}This membership will be renewed automatically. You can cancel the auto-renewal option by visiting this web page.{/ts}\n
\n {ts 1=$updateSubscriptionBillingUrl}You can update billing details for this automatically renewed membership by visiting this web page.{/ts}\n
\n

{ts}Thanks for your recurring contribution sign-up.{/ts}

\n

{ts 1=$recur_frequency_interval 2=$recur_frequency_unit 3=$recur_installments}This recurring contribution will be automatically processed every %1 %2(s) for a total of %3 installment(s).{/ts}

\n

{ts}Start Date{/ts}: {$recur_start_date|crmDate}

\n
\n {ts 1=$cancelSubscriptionUrl} You can cancel the recurring contribution option by visiting this web page.{/ts}\n
\n {ts 1=$updateSubscriptionBillingUrl}You can update billing details for this recurring contribution by visiting this web page.{/ts}\n
\n {ts 1=$updateSubscriptionUrl}You can update recurring contribution amount or change the number of installments details for this recurring contribution by visiting this web page.{/ts}\n
\n

{ts}Your auto renew membership sign-up has ended and your membership will not be automatically renewed.{/ts}

\n
\n

{ts}Your recurring contribution term has ended.{/ts}

\n

{ts 1=$recur_installments}You have successfully completed %1 recurring contributions. Thank you for your support.{/ts}

\n
\n \n \n \n \n \n \n \n \n \n \n \n \n
\n {ts 1=$recur_installments}Interval of Subscription for %1 installment(s){/ts}\n
\n {ts}Start Date{/ts}\n \n {$recur_start_date|crmDate}\n
\n {ts}End Date{/ts}\n \n {$recur_end_date|crmDate}\n
\n
\n
\n\n\n\n',1,711,0,1,NULL),(11,'Contributions - Recurring Cancellation Notification','{ts}Recurring Contribution Cancellation Notification{/ts}\n','{ts 1=$contact.display_name}Dear %1{/ts},\n\n{ts 1=$amount 2=$recur_frequency_interval 3=$recur_frequency_unit}Your recurring contribution of %1, every %2 %3 has been cancelled as requested.{/ts}\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n \n
\n

{ts 1=$contact.display_name}Dear %1{/ts},

\n

{ts 1=$amount 2=$recur_frequency_interval 3=$recur_frequency_unit}Your recurring contribution of %1, every %2 %3 has been cancelled as requested.{/ts}

\n
\n
\n\n\n\n',1,712,1,0,NULL),(12,'Contributions - Recurring Cancellation Notification','{ts}Recurring Contribution Cancellation Notification{/ts}\n','{ts 1=$contact.display_name}Dear %1{/ts},\n\n{ts 1=$amount 2=$recur_frequency_interval 3=$recur_frequency_unit}Your recurring contribution of %1, every %2 %3 has been cancelled as requested.{/ts}\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n \n
\n

{ts 1=$contact.display_name}Dear %1{/ts},

\n

{ts 1=$amount 2=$recur_frequency_interval 3=$recur_frequency_unit}Your recurring contribution of %1, every %2 %3 has been cancelled as requested.{/ts}

\n
\n
\n\n\n\n',1,712,0,1,NULL),(13,'Contributions - Recurring Billing Updates','{ts}Recurring Contribution Billing Updates{/ts}','{ts 1=$contact.display_name}Dear %1{/ts},\n\n{ts 1=$amount 2=$recur_frequency_interval 3=$recur_frequency_unit}Billing details for your recurring contribution of %1, every %2 %3 have been updated.{/ts}\n\n===========================================================\n{ts}Billing Name and Address{/ts}\n\n===========================================================\n{$billingName}\n{$address}\n\n{$email}\n\n===========================================================\n{ts}Credit Card Information{/ts}\n\n===========================================================\n{$credit_card_type}\n{$credit_card_number}\n{ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n\n\n{ts 1=$receipt_from_email}If you have questions please contact us at %1{/ts}','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n \n
\n

{ts 1=$contact.display_name}Dear %1{/ts},

\n

{ts 1=$amount 2=$recur_frequency_interval 3=$recur_frequency_unit}Billing details for your recurring contribution of %1, every %2 %3 have been updated.{/ts}

\n
\n\n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n {ts}Billing Name and Address{/ts}\n
\n {$billingName}
\n {$address|nl2br}
\n {$email}\n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}
\n {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}
\n
\n {ts 1=$receipt_from_email}If you have questions please contact us at %1{/ts}\n
\n
\n\n\n',1,713,1,0,NULL),(14,'Contributions - Recurring Billing Updates','{ts}Recurring Contribution Billing Updates{/ts}','{ts 1=$contact.display_name}Dear %1{/ts},\n\n{ts 1=$amount 2=$recur_frequency_interval 3=$recur_frequency_unit}Billing details for your recurring contribution of %1, every %2 %3 have been updated.{/ts}\n\n===========================================================\n{ts}Billing Name and Address{/ts}\n\n===========================================================\n{$billingName}\n{$address}\n\n{$email}\n\n===========================================================\n{ts}Credit Card Information{/ts}\n\n===========================================================\n{$credit_card_type}\n{$credit_card_number}\n{ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n\n\n{ts 1=$receipt_from_email}If you have questions please contact us at %1{/ts}','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n \n
\n

{ts 1=$contact.display_name}Dear %1{/ts},

\n

{ts 1=$amount 2=$recur_frequency_interval 3=$recur_frequency_unit}Billing details for your recurring contribution of %1, every %2 %3 have been updated.{/ts}

\n
\n\n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n {ts}Billing Name and Address{/ts}\n
\n {$billingName}
\n {$address|nl2br}
\n {$email}\n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}
\n {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}
\n
\n {ts 1=$receipt_from_email}If you have questions please contact us at %1{/ts}\n
\n
\n\n\n',1,713,0,1,NULL),(15,'Contributions - Recurring Updates','{ts}Recurring Contribution Update Notification{/ts}','{ts 1=$contact.display_name}Dear %1{/ts},\n\n{ts}Your recurring contribution has been updated as requested:{/ts}\n\n{ts 1=$amount 2=$recur_frequency_interval 3=$recur_frequency_unit}Recurring contribution is for %1, every %2(s) %3{/ts}\n{if $installments}{ts 1=$installments} for %1 installments.{/ts}{/if}\n\n{ts 1=$receipt_from_email}If you have questions please contact us at %1.{/ts}','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n \n
\n

{ts 1=$contact.display_name}Dear %1{/ts},

\n

{ts 1=$amount 2=$recur_frequency_interval 3=$recur_frequency_unit}Recurring contribution is for %1, every %2(s) %3{/ts}

\n

{if $installments}{ts 1=$installments} for %1 installments.{/ts}{/if}

\n\n

{ts 1=$receipt_from_email}If you have questions please contact us at %1.{/ts}

\n
\n
\n\n\n\n',1,714,1,0,NULL),(16,'Contributions - Recurring Updates','{ts}Recurring Contribution Update Notification{/ts}','{ts 1=$contact.display_name}Dear %1{/ts},\n\n{ts}Your recurring contribution has been updated as requested:{/ts}\n\n{ts 1=$amount 2=$recur_frequency_interval 3=$recur_frequency_unit}Recurring contribution is for %1, every %2(s) %3{/ts}\n{if $installments}{ts 1=$installments} for %1 installments.{/ts}{/if}\n\n{ts 1=$receipt_from_email}If you have questions please contact us at %1.{/ts}','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n \n
\n

{ts 1=$contact.display_name}Dear %1{/ts},

\n

{ts 1=$amount 2=$recur_frequency_interval 3=$recur_frequency_unit}Recurring contribution is for %1, every %2(s) %3{/ts}

\n

{if $installments}{ts 1=$installments} for %1 installments.{/ts}{/if}

\n\n

{ts 1=$receipt_from_email}If you have questions please contact us at %1.{/ts}

\n
\n
\n\n\n\n',1,714,0,1,NULL),(17,'Personal Campaign Pages - Admin Notification','{ts}Personal Campaign Page Notification{/ts}\n','===========================================================\n{ts}Personal Campaign Page Notification{/ts}\n\n===========================================================\n{ts}Action{/ts}: {if $mode EQ \'Update\'}{ts}Updated personal campaign page{/ts}{else}{ts}New personal campaign page{/ts}{/if}\n{ts}Personal Campaign Page Title{/ts}: {$pcpTitle}\n{ts}Current Status{/ts}: {$pcpStatus}\n{capture assign=pcpURL}{crmURL p=\"civicrm/pcp/info\" q=\"reset=1&id=`$pcpId`\" h=0 a=1}{/capture}\n{ts}View Page{/ts}:\n>> {$pcpURL}\n\n{ts}Supporter{/ts}: {$supporterName}\n>> {$supporterUrl}\n\n{ts}Linked to Contribution Page{/ts}: {$contribPageTitle}\n>> {$contribPageUrl}\n\n{ts}Manage Personal Campaign Pages{/ts}:\n>> {$managePCPUrl}\n\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n{capture assign=pcpURL }{crmURL p=\"civicrm/pcp/info\" q=\"reset=1&id=`$pcpId`\" h=0 a=1}{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n
\n {ts}Personal Campaign Page Notification{/ts}\n
\n {ts}Action{/ts}:\n \n {if $mode EQ \'Update\'}\n {ts}Updated personal campaign page{/ts}\n {else}\n {ts}New personal campaign page{/ts}\n {/if}\n
\n {ts}Personal Campaign Page Title{/ts}\n \n {$pcpTitle}\n
\n {ts}Current Status{/ts}\n \n {$pcpStatus}\n
\n {ts}View Page{/ts}\n
\n {ts}Supporter{/ts}\n \n {$supporterName}\n
\n {ts}Linked to Contribution Page{/ts}\n \n {$contribPageTitle}\n
\n {ts}Manage Personal Campaign Pages{/ts}\n
\n
\n
\n\n\n\n',1,715,1,0,NULL),(18,'Personal Campaign Pages - Admin Notification','{ts}Personal Campaign Page Notification{/ts}\n','===========================================================\n{ts}Personal Campaign Page Notification{/ts}\n\n===========================================================\n{ts}Action{/ts}: {if $mode EQ \'Update\'}{ts}Updated personal campaign page{/ts}{else}{ts}New personal campaign page{/ts}{/if}\n{ts}Personal Campaign Page Title{/ts}: {$pcpTitle}\n{ts}Current Status{/ts}: {$pcpStatus}\n{capture assign=pcpURL}{crmURL p=\"civicrm/pcp/info\" q=\"reset=1&id=`$pcpId`\" h=0 a=1}{/capture}\n{ts}View Page{/ts}:\n>> {$pcpURL}\n\n{ts}Supporter{/ts}: {$supporterName}\n>> {$supporterUrl}\n\n{ts}Linked to Contribution Page{/ts}: {$contribPageTitle}\n>> {$contribPageUrl}\n\n{ts}Manage Personal Campaign Pages{/ts}:\n>> {$managePCPUrl}\n\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n{capture assign=pcpURL }{crmURL p=\"civicrm/pcp/info\" q=\"reset=1&id=`$pcpId`\" h=0 a=1}{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n
\n {ts}Personal Campaign Page Notification{/ts}\n
\n {ts}Action{/ts}:\n \n {if $mode EQ \'Update\'}\n {ts}Updated personal campaign page{/ts}\n {else}\n {ts}New personal campaign page{/ts}\n {/if}\n
\n {ts}Personal Campaign Page Title{/ts}\n \n {$pcpTitle}\n
\n {ts}Current Status{/ts}\n \n {$pcpStatus}\n
\n {ts}View Page{/ts}\n
\n {ts}Supporter{/ts}\n \n {$supporterName}\n
\n {ts}Linked to Contribution Page{/ts}\n \n {$contribPageTitle}\n
\n {ts}Manage Personal Campaign Pages{/ts}\n
\n
\n
\n\n\n\n',1,715,0,1,NULL),(19,'Personal Campaign Pages - Supporter Status Change Notification','{ts 1=$contribPageTitle}Your Personal Campaign Page for %1{/ts}\n','{if $pcpStatus eq \'Approved\'}\n============================\n{ts}Your Personal Campaign Page{/ts}\n\n============================\n\n{ts}Your personal campaign page has been approved and is now live.{/ts}\n\n{ts}Whenever you want to preview, update or promote your page{/ts}:\n1. {ts}Login to your account at{/ts}:\n{$loginUrl}\n\n2. {ts}Click or paste this link into your browser to go to your page{/ts}:\n{$pcpInfoURL}\n\n{ts}When you view your campaign page WHILE LOGGED IN, the page includes links to edit\nyour page, tell friends, and update your contact info.{/ts}\n\n{if $isTellFriendEnabled}\n\n{ts}After logging in, you can use this form to promote your fundraising page{/ts}:\n{$pcpTellFriendURL}\n\n{/if}\n\n{if $pcpNotifyEmailAddress}\n{ts}Questions? Send email to{/ts}:\n{$pcpNotifyEmailAddress}\n{/if}\n\n{* Rejected message *}\n{elseif $pcpStatus eq \'Not Approved\'}\n============================\n{ts}Your Personal Campaign Page{/ts}\n\n============================\n\n{ts}Your personal campaign page has been reviewed. There were some issues with the content\nwhich prevented us from approving the page. We are sorry for any inconvenience.{/ts}\n\n{if $pcpNotifyEmailAddress}\n\n{ts}Please contact our site administrator for more information{/ts}:\n{$pcpNotifyEmailAddress}\n{/if}\n\n{/if}\n','\n\n\n \n \n\n\n\n
\n \n\n \n \n \n\n \n\n \n \n \n\n
\n\n

{ts}Your Personal Campaign Page{/ts}

\n\n {if $pcpStatus eq \'Approved\'}\n\n

{ts}Your personal campaign page has been approved and is now live.{/ts}

\n

{ts}Whenever you want to preview, update or promote your page{/ts}:

\n
    \n
  1. {ts}Login to your account{/ts}
  2. \n
  3. {ts}Go to your page{/ts}
  4. \n
\n

{ts}When you view your campaign page WHILE LOGGED IN, the page includes links to edit\nyour page, tell friends, and update your contact info.{/ts}

\n\n {if $isTellFriendEnabled}\n

{ts}After logging in, you can use this form to promote your fundraising page{/ts}

\n {/if}\n\n {if $pcpNotifyEmailAddress}\n

{ts}Questions? Send email to{/ts}: {$pcpNotifyEmailAddress}

\n {/if}\n\n {elseif $pcpStatus eq \'Not Approved\'}\n\n

{ts}Your personal campaign page has been reviewed. There were some issues with the content\nwhich prevented us from approving the page. We are sorry for any inconvenience.{/ts}

\n {if $pcpNotifyEmailAddress}\n

{ts}Please contact our site administrator for more information{/ts}: {$pcpNotifyEmailAddress}

\n {/if}\n\n {/if}\n\n
\n
\n\n\n\n',1,716,1,0,NULL),(20,'Personal Campaign Pages - Supporter Status Change Notification','{ts 1=$contribPageTitle}Your Personal Campaign Page for %1{/ts}\n','{if $pcpStatus eq \'Approved\'}\n============================\n{ts}Your Personal Campaign Page{/ts}\n\n============================\n\n{ts}Your personal campaign page has been approved and is now live.{/ts}\n\n{ts}Whenever you want to preview, update or promote your page{/ts}:\n1. {ts}Login to your account at{/ts}:\n{$loginUrl}\n\n2. {ts}Click or paste this link into your browser to go to your page{/ts}:\n{$pcpInfoURL}\n\n{ts}When you view your campaign page WHILE LOGGED IN, the page includes links to edit\nyour page, tell friends, and update your contact info.{/ts}\n\n{if $isTellFriendEnabled}\n\n{ts}After logging in, you can use this form to promote your fundraising page{/ts}:\n{$pcpTellFriendURL}\n\n{/if}\n\n{if $pcpNotifyEmailAddress}\n{ts}Questions? Send email to{/ts}:\n{$pcpNotifyEmailAddress}\n{/if}\n\n{* Rejected message *}\n{elseif $pcpStatus eq \'Not Approved\'}\n============================\n{ts}Your Personal Campaign Page{/ts}\n\n============================\n\n{ts}Your personal campaign page has been reviewed. There were some issues with the content\nwhich prevented us from approving the page. We are sorry for any inconvenience.{/ts}\n\n{if $pcpNotifyEmailAddress}\n\n{ts}Please contact our site administrator for more information{/ts}:\n{$pcpNotifyEmailAddress}\n{/if}\n\n{/if}\n','\n\n\n \n \n\n\n\n
\n \n\n \n \n \n\n \n\n \n \n \n\n
\n\n

{ts}Your Personal Campaign Page{/ts}

\n\n {if $pcpStatus eq \'Approved\'}\n\n

{ts}Your personal campaign page has been approved and is now live.{/ts}

\n

{ts}Whenever you want to preview, update or promote your page{/ts}:

\n
    \n
  1. {ts}Login to your account{/ts}
  2. \n
  3. {ts}Go to your page{/ts}
  4. \n
\n

{ts}When you view your campaign page WHILE LOGGED IN, the page includes links to edit\nyour page, tell friends, and update your contact info.{/ts}

\n\n {if $isTellFriendEnabled}\n

{ts}After logging in, you can use this form to promote your fundraising page{/ts}

\n {/if}\n\n {if $pcpNotifyEmailAddress}\n

{ts}Questions? Send email to{/ts}: {$pcpNotifyEmailAddress}

\n {/if}\n\n {elseif $pcpStatus eq \'Not Approved\'}\n\n

{ts}Your personal campaign page has been reviewed. There were some issues with the content\nwhich prevented us from approving the page. We are sorry for any inconvenience.{/ts}

\n {if $pcpNotifyEmailAddress}\n

{ts}Please contact our site administrator for more information{/ts}: {$pcpNotifyEmailAddress}

\n {/if}\n\n {/if}\n\n
\n
\n\n\n\n',1,716,0,1,NULL),(21,'Personal Campaign Pages - Supporter Welcome','{ts 1=$contribPageTitle}Your Personal Campaign Page for %1{/ts}\n','{ts}Dear supporter{/ts},\n{ts 1=\"$contribPageTitle\"}Thanks for creating a personal campaign page in support of %1.{/ts}\n\n{if $pcpStatus eq \'Approved\'}\n====================\n{ts}Promoting Your Page{/ts}\n\n====================\n{if $isTellFriendEnabled}\n\n{ts}You can begin your fundraising efforts using our \"Tell a Friend\" form{/ts}:\n\n1. {ts}Login to your account at{/ts}:\n{$loginUrl}\n\n2. {ts}Click or paste this link into your browser and follow the prompts{/ts}:\n{$pcpTellFriendURL}\n{else}\n\n{ts}Send email to family, friends and colleagues with a personal message about this campaign.{/ts}\n{ts}Include this link to your fundraising page in your emails{/ts}:\n{$pcpInfoURL}\n{/if}\n\n===================\n{ts}Managing Your Page{/ts}\n\n===================\n{ts}Whenever you want to preview, update or promote your page{/ts}:\n1. {ts}Login to your account at{/ts}:\n{$loginUrl}\n\n2. {ts}Click or paste this link into your browser to go to your page{/ts}:\n{$pcpInfoURL}\n\n{ts}When you view your campaign page WHILE LOGGED IN, the page includes links to edit\nyour page, tell friends, and update your contact info.{/ts}\n\n\n{elseif $pcpStatus EQ \'Waiting Review\'}\n{ts}Your page requires administrator review before you can begin your fundraising efforts.{/ts}\n\n\n{ts}A notification email has been sent to the site administrator, and you will receive another notification from them as soon as the review process is complete.{/ts}\n\n\n{ts}You can still preview your page prior to approval{/ts}:\n1. {ts}Login to your account at{/ts}:\n{$loginUrl}\n\n2. {ts}Click or paste this link into your browser{/ts}:\n{$pcpInfoURL}\n\n{/if}\n{if $pcpNotifyEmailAddress}\n{ts}Questions? Send email to{/ts}:\n{$pcpNotifyEmailAddress}\n{/if}\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n\n {if $pcpStatus eq \'Approved\'}\n\n \n \n \n\n {elseif $pcpStatus EQ \'Waiting Review\'}\n\n \n \n \n\n {/if}\n\n {if $pcpNotifyEmailAddress}\n \n \n \n {/if}\n\n
\n

{ts}Dear supporter{/ts},

\n

{ts 1=\"$contribPageTitle\"}Thanks for creating a personal campaign page in support of %1.{/ts}

\n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n {ts}Promoting Your Page{/ts}\n
\n {if $isTellFriendEnabled}\n

{ts}You can begin your fundraising efforts using our \"Tell a Friend\" form{/ts}:

\n
    \n
  1. {ts}Login to your account{/ts}
  2. \n
  3. {ts}Click this link and follow the prompts{/ts}
  4. \n
\n {else}\n

{ts}Send email to family, friends and colleagues with a personal message about this campaign.{/ts} {ts}Include this link to your fundraising page in your emails{/ts}: {$pcpInfoURL}

\n {/if}\n
\n {ts}Managing Your Page{/ts}\n
\n

{ts}Whenever you want to preview, update or promote your page{/ts}:

\n
    \n
  1. {ts}Login to your account{/ts}
  2. \n
  3. {ts}Go to your page{/ts}
  4. \n
\n

{ts}When you view your campaign page WHILE LOGGED IN, the page includes links to edit\nyour page, tell friends, and update your contact info.{/ts}

\n
\n
\n

{ts}Your page requires administrator review before you can begin your fundraising efforts.{/ts}

\n

{ts}A notification email has been sent to the site administrator, and you will receive another notification from them as soon as the review process is complete.{/ts}

\n

{ts}You can still preview your page prior to approval{/ts}:

\n
    \n
  1. {ts}Login to your account{/ts}
  2. \n
  3. {ts}Click this link{/ts}
  4. \n
\n
\n

{ts}Questions? Send email to{/ts}: {$pcpNotifyEmailAddress}

\n
\n
\n\n\n\n',1,717,1,0,NULL),(22,'Personal Campaign Pages - Supporter Welcome','{ts 1=$contribPageTitle}Your Personal Campaign Page for %1{/ts}\n','{ts}Dear supporter{/ts},\n{ts 1=\"$contribPageTitle\"}Thanks for creating a personal campaign page in support of %1.{/ts}\n\n{if $pcpStatus eq \'Approved\'}\n====================\n{ts}Promoting Your Page{/ts}\n\n====================\n{if $isTellFriendEnabled}\n\n{ts}You can begin your fundraising efforts using our \"Tell a Friend\" form{/ts}:\n\n1. {ts}Login to your account at{/ts}:\n{$loginUrl}\n\n2. {ts}Click or paste this link into your browser and follow the prompts{/ts}:\n{$pcpTellFriendURL}\n{else}\n\n{ts}Send email to family, friends and colleagues with a personal message about this campaign.{/ts}\n{ts}Include this link to your fundraising page in your emails{/ts}:\n{$pcpInfoURL}\n{/if}\n\n===================\n{ts}Managing Your Page{/ts}\n\n===================\n{ts}Whenever you want to preview, update or promote your page{/ts}:\n1. {ts}Login to your account at{/ts}:\n{$loginUrl}\n\n2. {ts}Click or paste this link into your browser to go to your page{/ts}:\n{$pcpInfoURL}\n\n{ts}When you view your campaign page WHILE LOGGED IN, the page includes links to edit\nyour page, tell friends, and update your contact info.{/ts}\n\n\n{elseif $pcpStatus EQ \'Waiting Review\'}\n{ts}Your page requires administrator review before you can begin your fundraising efforts.{/ts}\n\n\n{ts}A notification email has been sent to the site administrator, and you will receive another notification from them as soon as the review process is complete.{/ts}\n\n\n{ts}You can still preview your page prior to approval{/ts}:\n1. {ts}Login to your account at{/ts}:\n{$loginUrl}\n\n2. {ts}Click or paste this link into your browser{/ts}:\n{$pcpInfoURL}\n\n{/if}\n{if $pcpNotifyEmailAddress}\n{ts}Questions? Send email to{/ts}:\n{$pcpNotifyEmailAddress}\n{/if}\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n\n {if $pcpStatus eq \'Approved\'}\n\n \n \n \n\n {elseif $pcpStatus EQ \'Waiting Review\'}\n\n \n \n \n\n {/if}\n\n {if $pcpNotifyEmailAddress}\n \n \n \n {/if}\n\n
\n

{ts}Dear supporter{/ts},

\n

{ts 1=\"$contribPageTitle\"}Thanks for creating a personal campaign page in support of %1.{/ts}

\n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n {ts}Promoting Your Page{/ts}\n
\n {if $isTellFriendEnabled}\n

{ts}You can begin your fundraising efforts using our \"Tell a Friend\" form{/ts}:

\n
    \n
  1. {ts}Login to your account{/ts}
  2. \n
  3. {ts}Click this link and follow the prompts{/ts}
  4. \n
\n {else}\n

{ts}Send email to family, friends and colleagues with a personal message about this campaign.{/ts} {ts}Include this link to your fundraising page in your emails{/ts}: {$pcpInfoURL}

\n {/if}\n
\n {ts}Managing Your Page{/ts}\n
\n

{ts}Whenever you want to preview, update or promote your page{/ts}:

\n
    \n
  1. {ts}Login to your account{/ts}
  2. \n
  3. {ts}Go to your page{/ts}
  4. \n
\n

{ts}When you view your campaign page WHILE LOGGED IN, the page includes links to edit\nyour page, tell friends, and update your contact info.{/ts}

\n
\n
\n

{ts}Your page requires administrator review before you can begin your fundraising efforts.{/ts}

\n

{ts}A notification email has been sent to the site administrator, and you will receive another notification from them as soon as the review process is complete.{/ts}

\n

{ts}You can still preview your page prior to approval{/ts}:

\n
    \n
  1. {ts}Login to your account{/ts}
  2. \n
  3. {ts}Click this link{/ts}
  4. \n
\n
\n

{ts}Questions? Send email to{/ts}: {$pcpNotifyEmailAddress}

\n
\n
\n\n\n\n',1,717,0,1,NULL),(23,'Events - Registration Confirmation and Receipt (off-line)','{ts}Event Confirmation{/ts} - {$event.title}\n','{if $event.confirm_email_text AND (not $isOnWaitlist AND not $isRequireApproval)}\n{$event.confirm_email_text}\n{/if}\n\n{if $isOnWaitlist}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{ts}You have been added to the WAIT LIST for this event.{/ts}\n\n{if $isPrimary}\n{ts}If space becomes available you will receive an email with\na link to a web page where you can complete your registration.{/ts}\n\n{/if}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{elseif $isRequireApproval}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{ts}Your registration has been submitted.{/ts}\n\n{if $isPrimary}\n{ts}Once your registration has been reviewed, you will receive\nan email with a link to a web page where you can complete the\nregistration process.{/ts}\n\n{/if}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{elseif $is_pay_later}\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$pay_later_receipt}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{else}\n\n{ts}Please print this confirmation for your records.{/ts}\n{/if}\n\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{ts}Event Information and Location{/ts}\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$event.event_title}\n{$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|date_format:\"%Y%m%d\" == $event.event_start_date|date_format:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|crmDate}{/if}{/if}\n\n{if $event.participant_role neq \'Attendee\' and $defaultRole}\n{ts}Participant Role{/ts}: {$event.participant_role}\n{/if}\n\n{if $isShowLocation}\n{if $location.address.1.name}\n\n{$location.address.1.name}\n{/if}\n{if $location.address.1.street_address}{$location.address.1.street_address}\n{/if}\n{if $location.address.1.supplemental_address_1}{$location.address.1.supplemental_address_1}\n{/if}\n{if $location.address.1.supplemental_address_2}{$location.address.1.supplemental_address_2}\n{/if}\n{if $location.address.1.city}{$location.address.1.city} {$location.address.1.postal_code}{if $location.address.1.postal_code_suffix} - {$location.address.1.postal_code_suffix}{/if}\n{/if}\n\n{/if}{*End of isShowLocation condition*}\n\n{if $location.phone.1.phone || $location.email.1.email}\n\n{ts}Event Contacts:{/ts}\n{foreach from=$location.phone item=phone}\n{if $phone.phone}\n\n{if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}: {$phone.phone}{/if} {if $phone.phone_ext} {ts}ext.{/ts} {$phone.phone_ext}{/if}\n{/foreach}\n{foreach from=$location.email item=eventEmail}\n{if $eventEmail.email}\n\n{ts}Email{/ts}: {$eventEmail.email}{/if}{/foreach}\n{/if}\n\n{capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n{ts}Download iCalendar File:{/ts} {$icalFeed}\n{if $email}\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{ts}Registered Email{/ts}\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$email}\n{/if}\n{if $event.is_monetary} {* This section for Paid events only.*}\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$event.fee_label}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{if $lineItem}{foreach from=$lineItem item=value key=priceset}\n\n{if $value neq \'skip\'}\n{if $isPrimary}\n{if $lineItem|@count GT 1} {* Header for multi participant registration cases. *}\n{ts 1=$priceset+1}Participant %1{/ts}\n{/if}\n{/if}\n---------------------------------------------------------{if $pricesetFieldsCount }--------------------{/if}\n\n{capture assign=ts_item}{ts}Item{/ts}{/capture}\n{capture assign=ts_qty}{ts}Qty{/ts}{/capture}\n{capture assign=ts_each}{ts}Each{/ts}{/capture}\n{capture assign=ts_total}{ts}Total{/ts}{/capture}\n{capture assign=ts_participant_total}{if $pricesetFieldsCount }{ts}Total Participants{/ts}{/if}{/capture}\n{$ts_item|string_format:\"%-30s\"} {$ts_qty|string_format:\"%5s\"} {$ts_each|string_format:\"%10s\"} {$ts_total|string_format:\"%10s\"} {$ts_participant_total|string_format:\"%10s\"}\n----------------------------------------------------------{if $pricesetFieldsCount }--------------------{/if}\n\n{foreach from=$value item=line}\n{if $pricesetFieldsCount }{capture assign=ts_participant_count}{$line.participant_count}{/capture}{/if}\n{capture assign=ts_item}{if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description} {$line.description}{/if}{/capture}{$ts_item|truncate:30:\"...\"|string_format:\"%-30s\"} {$line.qty|string_format:\"%5s\"} {$line.unit_price|crmMoney|string_format:\"%10s\"} {$line.line_total|crmMoney|string_format:\"%10s\"} {$ts_participant_count|string_format:\"%10s\"}\n{/foreach}\n{/if}\n{/foreach}\n{/if}\n{if $amount && !$lineItem}\n{foreach from=$amount item=amnt key=level}{$amnt.amount|crmMoney} {$amnt.label}\n{/foreach}\n{/if}\n{if $isPrimary }\n\n{ts}Total Amount{/ts}: {$totalAmount|crmMoney} {if $hookDiscount.message}({$hookDiscount.message}){/if}\n\n{if $pricesetFieldsCount }\n {assign var=\"count\" value= 0}\n {foreach from=$lineItem item=pcount}\n {assign var=\"lineItemCount\" value=0}\n {if $pcount neq \'skip\'}\n {foreach from=$pcount item=p_count}\n {assign var=\"lineItemCount\" value=$lineItemCount+$p_count.participant_count}\n {/foreach}\n {if $lineItemCount < 1 }\n {assign var=\"lineItemCount\" value=1}\n {/if}\n {assign var=\"count\" value=$count+$lineItemCount}\n {/if}\n {/foreach}\n\n{ts}Total Participants{/ts}: {$count}\n{/if}\n\n{if $is_pay_later }\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$pay_later_receipt}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{/if}\n\n{if $register_date}\n{ts}Registration Date{/ts}: {$register_date|crmDate}\n{/if}\n{if $receive_date}\n{ts}Transaction Date{/ts}: {$receive_date|crmDate}\n{/if}\n{if $contributionTypeName}\n{ts}Financial Type{/ts}: {$contributionTypeName}\n{/if}\n{if $trxn_id}\n{ts}Transaction #{/ts}: {$trxn_id}\n{/if}\n{if $paidBy}\n{ts}Paid By{/ts}: {$paidBy}\n{/if}\n{if $checkNumber}\n{ts}Check Number{/ts}: {$checkNumber}\n{/if}\n{if $contributeMode ne \'notify\' and !$isAmountzero and !$is_pay_later and !$isOnWaitlist and !$isRequireApproval}\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{ts}Billing Name and Address{/ts}\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$billingName}\n{$address}\n{/if}\n\n{if $contributeMode eq \'direct\' and !$isAmountzero and !$is_pay_later and !$isOnWaitlist and !$isRequireApproval}\n===========================================================\n{ts}Credit Card Information{/ts}\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$credit_card_type}\n{$credit_card_number}\n{ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n{/if}\n{/if}\n{/if} {* End of conditional section for Paid events *}\n\n{if $customPre}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$customPre_grouptitle}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{foreach from=$customPre item=value key=customName}\n{if ( $trackingFields and ! in_array( $customName, $trackingFields ) ) or ! $trackingFields}\n{$customName}: {$value}\n{/if}\n{/foreach}\n{/if}\n\n{if $customPost}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$customPost_grouptitle}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{foreach from=$customPost item=value key=customName}\n{if ( $trackingFields and ! in_array( $customName, $trackingFields ) ) or ! $trackingFields}\n{$customName}: {$value}\n{/if}\n{/foreach}\n{/if}\n{if $customProfile}\n\n{foreach from=$customProfile item=value key=customName}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{ts 1=$customName+1}Participant Information - Participant %1{/ts}\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{foreach from=$value item=val key=field}\n{if $field eq \'additionalCustomPre\' or $field eq \'additionalCustomPost\' }\n{if $field eq \'additionalCustomPre\' }\n----------------------------------------------------------{if $pricesetFieldsCount }--------------------{/if}\n\n{$additionalCustomPre_grouptitle}\n----------------------------------------------------------{if $pricesetFieldsCount }--------------------{/if}\n\n{else}\n----------------------------------------------------------{if $pricesetFieldsCount }--------------------{/if}\n\n{$additionalCustomPost_grouptitle}\n----------------------------------------------------------{if $pricesetFieldsCount }--------------------{/if}\n\n{/if}\n{foreach from=$val item=v key=f}\n{$f}: {$v}\n{/foreach}\n{/if}\n{/foreach}\n{/foreach}\n{/if}\n{if $customGroup}\n{foreach from=$customGroup item=value key=customName}\n=========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$customName}\n=========================================================={if $pricesetFieldsCount }===================={/if}\n\n{foreach from=$value item=v key=n}\n{$n}: {$v}\n{/foreach}\n{/foreach}\n{/if}\n\n\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n \n \n \n\n
\n\n {if $event.confirm_email_text AND (not $isOnWaitlist AND not $isRequireApproval)}\n

{$event.confirm_email_text|htmlize}

\n {/if}\n\n {if $isOnWaitlist}\n

{ts}You have been added to the WAIT LIST for this event.{/ts}

\n {if $isPrimary}\n

{ts}If space becomes available you will receive an email with\na link to a web page where you can complete your registration.{/ts}

\n {/if}\n {elseif $isRequireApproval}\n

{ts}Your registration has been submitted.{/ts}

\n {if $isPrimary}\n

{ts}Once your registration has been reviewed, you will receive\nan email with a link to a web page where you can complete the\nregistration process.{/ts}

\n {/if}\n {elseif $is_pay_later}\n

{$pay_later_receipt}

{* FIXME: this might be text rather than HTML *}\n {else}\n

{ts}Please print this confirmation for your records.{/ts}

\n {/if}\n\n
\n \n \n \n \n \n \n \n\n {if $event.participant_role neq \'Attendee\' and $defaultRole}\n \n \n \n \n {/if}\n\n {if $isShowLocation}\n \n \n \n {/if}\n\n {if $location.phone.1.phone || $location.email.1.email}\n \n \n \n {foreach from=$location.phone item=phone}\n {if $phone.phone}\n \n \n \n \n {/if}\n {/foreach}\n {foreach from=$location.email item=eventEmail}\n {if $eventEmail.email}\n \n \n \n \n {/if}\n {/foreach}\n {/if}\n \n \n \n {if $email}\n \n \n \n \n \n \n {/if}\n\n\n {if $event.is_monetary}\n\n \n \n \n\n {if $lineItem}\n {foreach from=$lineItem item=value key=priceset}\n {if $value neq \'skip\'}\n {if $isPrimary}\n {if $lineItem|@count GT 1} {* Header for multi participant registration cases. *}\n \n \n \n {/if}\n {/if}\n \n \n \n {/if}\n {/foreach}\n {/if}\n\n {if $amount && !$lineItem}\n {foreach from=$amount item=amnt key=level}\n \n \n \n {/foreach}\n {/if}\n {if $isPrimary}\n \n \n \n \n {if $pricesetFieldsCount }\n \n \n \n \n {/if}\n {if $is_pay_later}\n \n \n \n {/if}\n\n {if $register_date}\n \n \n \n \n {/if}\n\n {if $receive_date}\n \n \n \n \n {/if}\n\n {if $contributionTypeName}\n \n \n \n \n {/if}\n\n {if $trxn_id}\n \n \n \n \n {/if}\n\n {if $paidBy}\n \n \n \n \n {/if}\n\n {if $checkNumber}\n \n \n \n \n {/if}\n\n {if $contributeMode ne \'notify\' and !$isAmountzero and !$is_pay_later and !$isOnWaitlist and !$isRequireApproval}\n \n \n \n \n \n \n {/if}\n\n {if $contributeMode eq \'direct\' and !$isAmountzero and !$is_pay_later and !$isOnWaitlist and !$isRequireApproval}\n \n \n \n \n \n \n {/if}\n\n {/if}\n\n {/if} {* End of conditional section for Paid events *}\n\n {if $customPre}\n \n \n \n {foreach from=$customPre item=value key=customName}\n {if ( $trackingFields and ! in_array( $customName, $trackingFields ) ) or ! $trackingFields}\n \n \n \n \n {/if}\n {/foreach}\n {/if}\n\n {if $customPost}\n \n \n \n {foreach from=$customPost item=value key=customName}\n {if ( $trackingFields and ! in_array( $customName, $trackingFields ) ) or ! $trackingFields}\n \n \n \n \n {/if}\n {/foreach}\n {/if}\n\n {if $customProfile}\n {foreach from=$customProfile item=value key=customName}\n \n \n \n {foreach from=$value item=val key=field}\n {if $field eq \'additionalCustomPre\' or $field eq \'additionalCustomPost\'}\n \n \n \n {foreach from=$val item=v key=f}\n \n \n \n \n {/foreach}\n {/if}\n {/foreach}\n {/foreach}\n {/if}\n\n {if $customGroup}\n {foreach from=$customGroup item=value key=customName}\n \n \n \n {foreach from=$value item=v key=n}\n \n \n \n \n {/foreach}\n {/foreach}\n {/if}\n\n
\n {ts}Event Information and Location{/ts}\n
\n {$event.event_title}
\n {$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|date_format:\"%Y%m%d\" == $event.event_start_date|date_format:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|crmDate}{/if}{/if}\n
\n {ts}Participant Role{/ts}\n \n {$event.participant_role}\n
\n {if $location.address.1.name}\n {$location.address.1.name}
\n {/if}\n {if $location.address.1.street_address}\n {$location.address.1.street_address}
\n {/if}\n {if $location.address.1.supplemental_address_1}\n {$location.address.1.supplemental_address_1}
\n {/if}\n {if $location.address.1.supplemental_address_2}\n {$location.address.1.supplemental_address_2}
\n {/if}\n {if $location.address.1.city}\n {$location.address.1.city} {$location.address.1.postal_code}{if $location.address.1.postal_code_suffix} - {$location.address.1.postal_code_suffix}{/if}
\n {/if}\n
\n {ts}Event Contacts:{/ts}\n
\n {if $phone.phone_type}\n {$phone.phone_type_display}\n {else}\n {ts}Phone{/ts}\n {/if}\n \n {$phone.phone} {if $phone.phone_ext} {ts}ext.{/ts} {$phone.phone_ext}{/if}\n
\n {ts}Email{/ts}\n \n {$eventEmail.email}\n
\n {capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n {ts}Download iCalendar File{/ts}\n
\n {ts}Registered Email{/ts}\n
\n {$email}\n
\n {$event.fee_label}\n
\n {ts 1=$priceset+1}Participant %1{/ts}\n
\n {* FIXME: style this table so that it looks like the text version (justification, etc.) *}\n \n \n \n \n \n {if $pricesetFieldsCount }{/if}\n \n {foreach from=$value item=line}\n \n \n \n \n \n {if $pricesetFieldsCount }\n \n {/if}\n \n {/foreach}\n
{ts}Item{/ts}{ts}Qty{/ts}{ts}Each{/ts}{ts}Total{/ts}{ts}Total Participants{/ts}
\n {if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description}
{$line.description|truncate:30:\"...\"}
{/if}\n
\n {$line.qty}\n \n {$line.unit_price|crmMoney}\n \n {$line.line_total|crmMoney}\n \n {$line.participant_count}\n
\n
\n {$amnt.amount|crmMoney} {$amnt.label}\n
\n {ts}Total Amount{/ts}\n \n {$totalAmount|crmMoney} {if $hookDiscount.message}({$hookDiscount.message}){/if}\n
\n {ts}Total Participants{/ts}\n {assign var=\"count\" value= 0}\n {foreach from=$lineItem item=pcount}\n {assign var=\"lineItemCount\" value=0}\n {if $pcount neq \'skip\'}\n {foreach from=$pcount item=p_count}\n {assign var=\"lineItemCount\" value=$lineItemCount+$p_count.participant_count}\n {/foreach}\n {if $lineItemCount < 1 }\n assign var=\"lineItemCount\" value=1}\n {/if}\n {assign var=\"count\" value=$count+$lineItemCount}\n {/if}\n {/foreach}\n {$count}\n
\n {$pay_later_receipt}\n
\n {ts}Registration Date{/ts}\n \n {$register_date|crmDate}\n
\n {ts}Transaction Date{/ts}\n \n {$receive_date|crmDate}\n
\n {ts}Financial Type{/ts}\n \n {$contributionTypeName}\n
\n {ts}Transaction #{/ts}\n \n {$trxn_id}\n
\n {ts}Paid By{/ts}\n \n {$paidBy}\n
\n {ts}Check Number{/ts}\n \n {$checkNumber}\n
\n {ts}Billing Name and Address{/ts}\n
\n {$billingName}
\n {$address|nl2br}\n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}
\n {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n
\n {$customPre_grouptitle}\n
\n {$customName}\n \n {$value}\n
\n {$customPost_grouptitle}\n
\n {$customName}\n \n {$value}\n
\n {ts 1=$customName+1}Participant Information - Participant %1{/ts}\n
\n {if $field eq \'additionalCustomPre\'}\n {$additionalCustomPre_grouptitle}\n {else}\n {$additionalCustomPost_grouptitle}\n {/if}\n
\n {$f}\n \n {$v}\n
\n {$customName}\n
\n {$n}\n \n {$v}\n
\n
\n
\n\n\n\n',1,718,1,0,NULL),(24,'Events - Registration Confirmation and Receipt (off-line)','{ts}Event Confirmation{/ts} - {$event.title}\n','{if $event.confirm_email_text AND (not $isOnWaitlist AND not $isRequireApproval)}\n{$event.confirm_email_text}\n{/if}\n\n{if $isOnWaitlist}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{ts}You have been added to the WAIT LIST for this event.{/ts}\n\n{if $isPrimary}\n{ts}If space becomes available you will receive an email with\na link to a web page where you can complete your registration.{/ts}\n\n{/if}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{elseif $isRequireApproval}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{ts}Your registration has been submitted.{/ts}\n\n{if $isPrimary}\n{ts}Once your registration has been reviewed, you will receive\nan email with a link to a web page where you can complete the\nregistration process.{/ts}\n\n{/if}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{elseif $is_pay_later}\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$pay_later_receipt}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{else}\n\n{ts}Please print this confirmation for your records.{/ts}\n{/if}\n\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{ts}Event Information and Location{/ts}\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$event.event_title}\n{$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|date_format:\"%Y%m%d\" == $event.event_start_date|date_format:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|crmDate}{/if}{/if}\n\n{if $event.participant_role neq \'Attendee\' and $defaultRole}\n{ts}Participant Role{/ts}: {$event.participant_role}\n{/if}\n\n{if $isShowLocation}\n{if $location.address.1.name}\n\n{$location.address.1.name}\n{/if}\n{if $location.address.1.street_address}{$location.address.1.street_address}\n{/if}\n{if $location.address.1.supplemental_address_1}{$location.address.1.supplemental_address_1}\n{/if}\n{if $location.address.1.supplemental_address_2}{$location.address.1.supplemental_address_2}\n{/if}\n{if $location.address.1.city}{$location.address.1.city} {$location.address.1.postal_code}{if $location.address.1.postal_code_suffix} - {$location.address.1.postal_code_suffix}{/if}\n{/if}\n\n{/if}{*End of isShowLocation condition*}\n\n{if $location.phone.1.phone || $location.email.1.email}\n\n{ts}Event Contacts:{/ts}\n{foreach from=$location.phone item=phone}\n{if $phone.phone}\n\n{if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}: {$phone.phone}{/if} {if $phone.phone_ext} {ts}ext.{/ts} {$phone.phone_ext}{/if}\n{/foreach}\n{foreach from=$location.email item=eventEmail}\n{if $eventEmail.email}\n\n{ts}Email{/ts}: {$eventEmail.email}{/if}{/foreach}\n{/if}\n\n{capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n{ts}Download iCalendar File:{/ts} {$icalFeed}\n{if $email}\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{ts}Registered Email{/ts}\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$email}\n{/if}\n{if $event.is_monetary} {* This section for Paid events only.*}\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$event.fee_label}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{if $lineItem}{foreach from=$lineItem item=value key=priceset}\n\n{if $value neq \'skip\'}\n{if $isPrimary}\n{if $lineItem|@count GT 1} {* Header for multi participant registration cases. *}\n{ts 1=$priceset+1}Participant %1{/ts}\n{/if}\n{/if}\n---------------------------------------------------------{if $pricesetFieldsCount }--------------------{/if}\n\n{capture assign=ts_item}{ts}Item{/ts}{/capture}\n{capture assign=ts_qty}{ts}Qty{/ts}{/capture}\n{capture assign=ts_each}{ts}Each{/ts}{/capture}\n{capture assign=ts_total}{ts}Total{/ts}{/capture}\n{capture assign=ts_participant_total}{if $pricesetFieldsCount }{ts}Total Participants{/ts}{/if}{/capture}\n{$ts_item|string_format:\"%-30s\"} {$ts_qty|string_format:\"%5s\"} {$ts_each|string_format:\"%10s\"} {$ts_total|string_format:\"%10s\"} {$ts_participant_total|string_format:\"%10s\"}\n----------------------------------------------------------{if $pricesetFieldsCount }--------------------{/if}\n\n{foreach from=$value item=line}\n{if $pricesetFieldsCount }{capture assign=ts_participant_count}{$line.participant_count}{/capture}{/if}\n{capture assign=ts_item}{if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description} {$line.description}{/if}{/capture}{$ts_item|truncate:30:\"...\"|string_format:\"%-30s\"} {$line.qty|string_format:\"%5s\"} {$line.unit_price|crmMoney|string_format:\"%10s\"} {$line.line_total|crmMoney|string_format:\"%10s\"} {$ts_participant_count|string_format:\"%10s\"}\n{/foreach}\n{/if}\n{/foreach}\n{/if}\n{if $amount && !$lineItem}\n{foreach from=$amount item=amnt key=level}{$amnt.amount|crmMoney} {$amnt.label}\n{/foreach}\n{/if}\n{if $isPrimary }\n\n{ts}Total Amount{/ts}: {$totalAmount|crmMoney} {if $hookDiscount.message}({$hookDiscount.message}){/if}\n\n{if $pricesetFieldsCount }\n {assign var=\"count\" value= 0}\n {foreach from=$lineItem item=pcount}\n {assign var=\"lineItemCount\" value=0}\n {if $pcount neq \'skip\'}\n {foreach from=$pcount item=p_count}\n {assign var=\"lineItemCount\" value=$lineItemCount+$p_count.participant_count}\n {/foreach}\n {if $lineItemCount < 1 }\n {assign var=\"lineItemCount\" value=1}\n {/if}\n {assign var=\"count\" value=$count+$lineItemCount}\n {/if}\n {/foreach}\n\n{ts}Total Participants{/ts}: {$count}\n{/if}\n\n{if $is_pay_later }\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$pay_later_receipt}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{/if}\n\n{if $register_date}\n{ts}Registration Date{/ts}: {$register_date|crmDate}\n{/if}\n{if $receive_date}\n{ts}Transaction Date{/ts}: {$receive_date|crmDate}\n{/if}\n{if $contributionTypeName}\n{ts}Financial Type{/ts}: {$contributionTypeName}\n{/if}\n{if $trxn_id}\n{ts}Transaction #{/ts}: {$trxn_id}\n{/if}\n{if $paidBy}\n{ts}Paid By{/ts}: {$paidBy}\n{/if}\n{if $checkNumber}\n{ts}Check Number{/ts}: {$checkNumber}\n{/if}\n{if $contributeMode ne \'notify\' and !$isAmountzero and !$is_pay_later and !$isOnWaitlist and !$isRequireApproval}\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{ts}Billing Name and Address{/ts}\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$billingName}\n{$address}\n{/if}\n\n{if $contributeMode eq \'direct\' and !$isAmountzero and !$is_pay_later and !$isOnWaitlist and !$isRequireApproval}\n===========================================================\n{ts}Credit Card Information{/ts}\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$credit_card_type}\n{$credit_card_number}\n{ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n{/if}\n{/if}\n{/if} {* End of conditional section for Paid events *}\n\n{if $customPre}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$customPre_grouptitle}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{foreach from=$customPre item=value key=customName}\n{if ( $trackingFields and ! in_array( $customName, $trackingFields ) ) or ! $trackingFields}\n{$customName}: {$value}\n{/if}\n{/foreach}\n{/if}\n\n{if $customPost}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$customPost_grouptitle}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{foreach from=$customPost item=value key=customName}\n{if ( $trackingFields and ! in_array( $customName, $trackingFields ) ) or ! $trackingFields}\n{$customName}: {$value}\n{/if}\n{/foreach}\n{/if}\n{if $customProfile}\n\n{foreach from=$customProfile item=value key=customName}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{ts 1=$customName+1}Participant Information - Participant %1{/ts}\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{foreach from=$value item=val key=field}\n{if $field eq \'additionalCustomPre\' or $field eq \'additionalCustomPost\' }\n{if $field eq \'additionalCustomPre\' }\n----------------------------------------------------------{if $pricesetFieldsCount }--------------------{/if}\n\n{$additionalCustomPre_grouptitle}\n----------------------------------------------------------{if $pricesetFieldsCount }--------------------{/if}\n\n{else}\n----------------------------------------------------------{if $pricesetFieldsCount }--------------------{/if}\n\n{$additionalCustomPost_grouptitle}\n----------------------------------------------------------{if $pricesetFieldsCount }--------------------{/if}\n\n{/if}\n{foreach from=$val item=v key=f}\n{$f}: {$v}\n{/foreach}\n{/if}\n{/foreach}\n{/foreach}\n{/if}\n{if $customGroup}\n{foreach from=$customGroup item=value key=customName}\n=========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$customName}\n=========================================================={if $pricesetFieldsCount }===================={/if}\n\n{foreach from=$value item=v key=n}\n{$n}: {$v}\n{/foreach}\n{/foreach}\n{/if}\n\n\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n \n \n \n\n
\n\n {if $event.confirm_email_text AND (not $isOnWaitlist AND not $isRequireApproval)}\n

{$event.confirm_email_text|htmlize}

\n {/if}\n\n {if $isOnWaitlist}\n

{ts}You have been added to the WAIT LIST for this event.{/ts}

\n {if $isPrimary}\n

{ts}If space becomes available you will receive an email with\na link to a web page where you can complete your registration.{/ts}

\n {/if}\n {elseif $isRequireApproval}\n

{ts}Your registration has been submitted.{/ts}

\n {if $isPrimary}\n

{ts}Once your registration has been reviewed, you will receive\nan email with a link to a web page where you can complete the\nregistration process.{/ts}

\n {/if}\n {elseif $is_pay_later}\n

{$pay_later_receipt}

{* FIXME: this might be text rather than HTML *}\n {else}\n

{ts}Please print this confirmation for your records.{/ts}

\n {/if}\n\n
\n \n \n \n \n \n \n \n\n {if $event.participant_role neq \'Attendee\' and $defaultRole}\n \n \n \n \n {/if}\n\n {if $isShowLocation}\n \n \n \n {/if}\n\n {if $location.phone.1.phone || $location.email.1.email}\n \n \n \n {foreach from=$location.phone item=phone}\n {if $phone.phone}\n \n \n \n \n {/if}\n {/foreach}\n {foreach from=$location.email item=eventEmail}\n {if $eventEmail.email}\n \n \n \n \n {/if}\n {/foreach}\n {/if}\n \n \n \n {if $email}\n \n \n \n \n \n \n {/if}\n\n\n {if $event.is_monetary}\n\n \n \n \n\n {if $lineItem}\n {foreach from=$lineItem item=value key=priceset}\n {if $value neq \'skip\'}\n {if $isPrimary}\n {if $lineItem|@count GT 1} {* Header for multi participant registration cases. *}\n \n \n \n {/if}\n {/if}\n \n \n \n {/if}\n {/foreach}\n {/if}\n\n {if $amount && !$lineItem}\n {foreach from=$amount item=amnt key=level}\n \n \n \n {/foreach}\n {/if}\n {if $isPrimary}\n \n \n \n \n {if $pricesetFieldsCount }\n \n \n \n \n {/if}\n {if $is_pay_later}\n \n \n \n {/if}\n\n {if $register_date}\n \n \n \n \n {/if}\n\n {if $receive_date}\n \n \n \n \n {/if}\n\n {if $contributionTypeName}\n \n \n \n \n {/if}\n\n {if $trxn_id}\n \n \n \n \n {/if}\n\n {if $paidBy}\n \n \n \n \n {/if}\n\n {if $checkNumber}\n \n \n \n \n {/if}\n\n {if $contributeMode ne \'notify\' and !$isAmountzero and !$is_pay_later and !$isOnWaitlist and !$isRequireApproval}\n \n \n \n \n \n \n {/if}\n\n {if $contributeMode eq \'direct\' and !$isAmountzero and !$is_pay_later and !$isOnWaitlist and !$isRequireApproval}\n \n \n \n \n \n \n {/if}\n\n {/if}\n\n {/if} {* End of conditional section for Paid events *}\n\n {if $customPre}\n \n \n \n {foreach from=$customPre item=value key=customName}\n {if ( $trackingFields and ! in_array( $customName, $trackingFields ) ) or ! $trackingFields}\n \n \n \n \n {/if}\n {/foreach}\n {/if}\n\n {if $customPost}\n \n \n \n {foreach from=$customPost item=value key=customName}\n {if ( $trackingFields and ! in_array( $customName, $trackingFields ) ) or ! $trackingFields}\n \n \n \n \n {/if}\n {/foreach}\n {/if}\n\n {if $customProfile}\n {foreach from=$customProfile item=value key=customName}\n \n \n \n {foreach from=$value item=val key=field}\n {if $field eq \'additionalCustomPre\' or $field eq \'additionalCustomPost\'}\n \n \n \n {foreach from=$val item=v key=f}\n \n \n \n \n {/foreach}\n {/if}\n {/foreach}\n {/foreach}\n {/if}\n\n {if $customGroup}\n {foreach from=$customGroup item=value key=customName}\n \n \n \n {foreach from=$value item=v key=n}\n \n \n \n \n {/foreach}\n {/foreach}\n {/if}\n\n
\n {ts}Event Information and Location{/ts}\n
\n {$event.event_title}
\n {$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|date_format:\"%Y%m%d\" == $event.event_start_date|date_format:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|crmDate}{/if}{/if}\n
\n {ts}Participant Role{/ts}\n \n {$event.participant_role}\n
\n {if $location.address.1.name}\n {$location.address.1.name}
\n {/if}\n {if $location.address.1.street_address}\n {$location.address.1.street_address}
\n {/if}\n {if $location.address.1.supplemental_address_1}\n {$location.address.1.supplemental_address_1}
\n {/if}\n {if $location.address.1.supplemental_address_2}\n {$location.address.1.supplemental_address_2}
\n {/if}\n {if $location.address.1.city}\n {$location.address.1.city} {$location.address.1.postal_code}{if $location.address.1.postal_code_suffix} - {$location.address.1.postal_code_suffix}{/if}
\n {/if}\n
\n {ts}Event Contacts:{/ts}\n
\n {if $phone.phone_type}\n {$phone.phone_type_display}\n {else}\n {ts}Phone{/ts}\n {/if}\n \n {$phone.phone} {if $phone.phone_ext} {ts}ext.{/ts} {$phone.phone_ext}{/if}\n
\n {ts}Email{/ts}\n \n {$eventEmail.email}\n
\n {capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n {ts}Download iCalendar File{/ts}\n
\n {ts}Registered Email{/ts}\n
\n {$email}\n
\n {$event.fee_label}\n
\n {ts 1=$priceset+1}Participant %1{/ts}\n
\n {* FIXME: style this table so that it looks like the text version (justification, etc.) *}\n \n \n \n \n \n {if $pricesetFieldsCount }{/if}\n \n {foreach from=$value item=line}\n \n \n \n \n \n {if $pricesetFieldsCount }\n \n {/if}\n \n {/foreach}\n
{ts}Item{/ts}{ts}Qty{/ts}{ts}Each{/ts}{ts}Total{/ts}{ts}Total Participants{/ts}
\n {if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description}
{$line.description|truncate:30:\"...\"}
{/if}\n
\n {$line.qty}\n \n {$line.unit_price|crmMoney}\n \n {$line.line_total|crmMoney}\n \n {$line.participant_count}\n
\n
\n {$amnt.amount|crmMoney} {$amnt.label}\n
\n {ts}Total Amount{/ts}\n \n {$totalAmount|crmMoney} {if $hookDiscount.message}({$hookDiscount.message}){/if}\n
\n {ts}Total Participants{/ts}\n {assign var=\"count\" value= 0}\n {foreach from=$lineItem item=pcount}\n {assign var=\"lineItemCount\" value=0}\n {if $pcount neq \'skip\'}\n {foreach from=$pcount item=p_count}\n {assign var=\"lineItemCount\" value=$lineItemCount+$p_count.participant_count}\n {/foreach}\n {if $lineItemCount < 1 }\n assign var=\"lineItemCount\" value=1}\n {/if}\n {assign var=\"count\" value=$count+$lineItemCount}\n {/if}\n {/foreach}\n {$count}\n
\n {$pay_later_receipt}\n
\n {ts}Registration Date{/ts}\n \n {$register_date|crmDate}\n
\n {ts}Transaction Date{/ts}\n \n {$receive_date|crmDate}\n
\n {ts}Financial Type{/ts}\n \n {$contributionTypeName}\n
\n {ts}Transaction #{/ts}\n \n {$trxn_id}\n
\n {ts}Paid By{/ts}\n \n {$paidBy}\n
\n {ts}Check Number{/ts}\n \n {$checkNumber}\n
\n {ts}Billing Name and Address{/ts}\n
\n {$billingName}
\n {$address|nl2br}\n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}
\n {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n
\n {$customPre_grouptitle}\n
\n {$customName}\n \n {$value}\n
\n {$customPost_grouptitle}\n
\n {$customName}\n \n {$value}\n
\n {ts 1=$customName+1}Participant Information - Participant %1{/ts}\n
\n {if $field eq \'additionalCustomPre\'}\n {$additionalCustomPre_grouptitle}\n {else}\n {$additionalCustomPost_grouptitle}\n {/if}\n
\n {$f}\n \n {$v}\n
\n {$customName}\n
\n {$n}\n \n {$v}\n
\n
\n
\n\n\n\n',1,718,0,1,NULL),(25,'Events - Registration Confirmation and Receipt (on-line)','{if $isOnWaitlist}{ts}Wait List Confirmation{/ts}{else}{ts}Registration Confirmation{/ts}{/if} - {$event.event_title}','Dear {contact.display_name},\n\n{if $event.confirm_email_text AND (not $isOnWaitlist AND not $isRequireApproval)}\n{$event.confirm_email_text}\n\n{else}\nThank you for your participation. This letter is a confirmation that your registration has been received and your status has been updated to {if $participant_status}{$participant_status}{else}{if $isOnWaitlist}waitlisted{else}registered{/if}{/if}.\n\n{/if}\n\n{if $isOnWaitlist}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{ts}You have been added to the WAIT LIST for this event.{/ts}\n\n{if $isPrimary}\n{ts}If space becomes available you will receive an email with\na link to a web page where you can complete your registration.{/ts}\n{/if}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{elseif $isRequireApproval}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{ts}Your registration has been submitted.{/ts}\n\n{if $isPrimary}\n{ts}Once your registration has been reviewed, you will receive\nan email with a link to a web page where you can complete the\nregistration process.{/ts}\n\n{/if}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{elseif $is_pay_later && !$isAmountzero && !$isAdditionalParticipant}\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$pay_later_receipt}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{else}\n\n{ts}Please print this confirmation for your records.{/ts}\n{/if}\n\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{ts}Event Information and Location{/ts}\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$event.event_title}\n{$event.event_start_date|date_format:\"%A\"} {$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|date_format:\"%Y%m%d\" == $event.event_start_date|date_format:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|date_format:\"%A\"} {$event.event_end_date|crmDate}{/if}{/if}\n{if $conference_sessions}\n\n\n{ts}Your schedule:{/ts}\n{assign var=\'group_by_day\' value=\'NA\'}\n{foreach from=$conference_sessions item=session}\n{if $session.start_date|date_format:\"%Y/%m/%d\" != $group_by_day|date_format:\"%Y/%m/%d\"}\n{assign var=\'group_by_day\' value=$session.start_date}\n\n{$group_by_day|date_format:\"%m/%d/%Y\"}\n\n\n{/if}\n{$session.start_date|crmDate:0:1}{if $session.end_date}-{$session.end_date|crmDate:0:1}{/if} {$session.title}\n{if $session.location} {$session.location}{/if}\n{/foreach}\n{/if}\n\n{if $event.participant_role neq \'Attendee\' and $defaultRole}\n{ts}Participant Role{/ts}: {$event.participant_role}\n{/if}\n\n{if $isShowLocation}\n{if $location.address.1.name}\n\n{$location.address.1.name}\n{/if}\n{if $location.address.1.street_address}{$location.address.1.street_address}\n{/if}\n{if $location.address.1.supplemental_address_1}{$location.address.1.supplemental_address_1}\n{/if}\n{if $location.address.1.supplemental_address_2}{$location.address.1.supplemental_address_2}\n{/if}\n{if $location.address.1.city}{$location.address.1.city}, {$location.address.1.state_province} {$location.address.1.postal_code}{if $location.address.1.postal_code_suffix} - {$location.address.1.postal_code_suffix}{/if}\n{/if}\n\n{/if}{*End of isShowLocation condition*}\n\n{if $location.phone.1.phone || $location.email.1.email}\n\n{ts}Event Contacts:{/ts}\n{foreach from=$location.phone item=phone}\n{if $phone.phone}\n\n{if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}: {$phone.phone}{/if} {if $phone.phone_ext} {ts}ext.{/ts} {$phone.phone_ext}{/if}\n{/foreach}\n{foreach from=$location.email item=eventEmail}\n{if $eventEmail.email}\n\n{ts}Email{/ts}: {$eventEmail.email}{/if}{/foreach}\n{/if}\n\n{capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n{ts}Download iCalendar File:{/ts} {$icalFeed}\n\n{if $payer.name}\nYou were registered by: {$payer.name}\n{/if}\n{if $event.is_monetary} {* This section for Paid events only.*}\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$event.fee_label}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{if $lineItem}{foreach from=$lineItem item=value key=priceset}\n\n{if $value neq \'skip\'}\n{if $isPrimary}\n{if $lineItem|@count GT 1} {* Header for multi participant registration cases. *}\n{ts 1=$priceset+1}Participant %1{/ts} {$part.$priceset.info}\n\n{/if}\n{/if}\n-----------------------------------------------------------{if $pricesetFieldsCount }--------------------{/if}\n\n{capture assign=ts_item}{ts}Item{/ts}{/capture}\n{capture assign=ts_qty}{ts}Qty{/ts}{/capture}\n{capture assign=ts_each}{ts}Each{/ts}{/capture}\n{capture assign=ts_total}{ts}Total{/ts}{/capture}\n{if $pricesetFieldsCount }{capture assign=ts_participant_total}{ts}Total Participants{/ts}{/capture}{/if}\n{$ts_item|string_format:\"%-30s\"} {$ts_qty|string_format:\"%5s\"} {$ts_each|string_format:\"%10s\"} {$ts_total|string_format:\"%10s\"} {$ts_participant_total|string_format:\"%10s\"}\n-----------------------------------------------------------{if $pricesetFieldsCount }--------------------{/if}\n\n{foreach from=$value item=line}\n{if $pricesetFieldsCount }{capture assign=ts_participant_count}{$line.participant_count}{/capture}{/if}\n{capture assign=ts_item}{if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description} {$line.description}{/if}{/capture}{$ts_item|truncate:30:\"...\"|string_format:\"%-30s\"} {$line.qty|string_format:\"%5s\"} {$line.unit_price|crmMoney:$currency|string_format:\"%10s\"} {$line.line_total|crmMoney:$currency|string_format:\"%10s\"}{$ts_participant_count|string_format:\"%10s\"}\n{/foreach}\n{/if}\n{/foreach}\n{/if}\n{if $amounts && !$lineItem}\n{foreach from=$amounts item=amnt key=level}{$amnt.amount|crmMoney:$currency} {$amnt.label}\n{/foreach}\n{/if}\n{if $isPrimary }\n\n{ts}Total Amount{/ts}: {$totalAmount|crmMoney:$currency} {if $hookDiscount.message}({$hookDiscount.message}){/if}\n\n{if $pricesetFieldsCount }\n {assign var=\"count\" value= 0}\n {foreach from=$lineItem item=pcount}\n {assign var=\"lineItemCount\" value=0}\n {if $pcount neq \'skip\'}\n {foreach from=$pcount item=p_count}\n {assign var=\"lineItemCount\" value=$lineItemCount+$p_count.participant_count}\n {/foreach}\n {if $lineItemCount < 1 }\n {assign var=\"lineItemCount\" value=1}\n {/if}\n {assign var=\"count\" value=$count+$lineItemCount}\n {/if}\n {/foreach}\n\n{ts}Total Participants{/ts}: {$count}\n{/if}\n\n{if $register_date}\n{ts}Registration Date{/ts}: {$register_date|crmDate}\n{/if}\n{if $receive_date}\n{ts}Transaction Date{/ts}: {$receive_date|crmDate}\n{/if}\n{if $contributionTypeName}\n{ts}Financial Type{/ts}: {$contributionTypeName}\n{/if}\n{if $trxn_id}\n{ts}Transaction #{/ts}: {$trxn_id}\n{/if}\n{if $paidBy}\n{ts}Paid By{/ts}: {$paidBy}\n{/if}\n{if $checkNumber}\n{ts}Check Number{/ts}: {$checkNumber}\n{/if}\n{if $contributeMode ne \'notify\' and !$isAmountzero and !$is_pay_later and !$isOnWaitlist and !$isRequireApproval}\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{ts}Billing Name and Address{/ts}\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$billingName}\n{$address}\n{/if}\n\n{if $contributeMode eq \'direct\' and !$isAmountzero and !$is_pay_later and !$isOnWaitlist and !$isRequireApproval}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{ts}Credit Card Information{/ts}\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$credit_card_type}\n{$credit_card_number}\n{ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n{/if}\n{/if}\n{/if} {* End of conditional section for Paid events *}\n\n{if $customPre}\n{foreach from=$customPre item=customPr key=i}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$customPre_grouptitle.$i}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{foreach from=$customPr item=customValue key=customName}\n{if ( $trackingFields and ! in_array( $customName, $trackingFields ) ) or ! $trackingFields}\n {$customName}: {$customValue}\n{/if}\n{/foreach}\n{/foreach}\n{/if}\n\n{if $customPost}\n{foreach from=$customPost item=customPos key=j}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$customPost_grouptitle.$j}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{foreach from=$customPos item=customValue key=customName}\n{if ( $trackingFields and ! in_array( $customName, $trackingFields ) ) or ! $trackingFields}\n {$customName}: {$customValue}\n{/if}\n{/foreach}\n{/foreach}\n{/if}\n{if $customProfile}\n\n{foreach from=$customProfile.profile item=eachParticipant key=participantID}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{ts 1=$participantID+2}Participant Information - Participant %1{/ts}\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{foreach from=$eachParticipant item=eachProfile key=pid}\n----------------------------------------------------------{if $pricesetFieldsCount }--------------------{/if}\n\n{$customProfile.title.$pid}\n----------------------------------------------------------{if $pricesetFieldsCount }--------------------{/if}\n\n{foreach from=$eachProfile item=val key=field}\n{foreach from=$val item=v key=f}\n{$field}: {$v}\n{/foreach}\n{/foreach}\n{/foreach}\n{/foreach}\n{/if}\n{if $customGroup}\n{foreach from=$customGroup item=value key=customName}\n=========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$customName}\n=========================================================={if $pricesetFieldsCount }===================={/if}\n\n{foreach from=$value item=v key=n}\n{$n}: {$v}\n{/foreach}\n{/foreach}\n{/if}\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n \n \n \n
\n

Dear {contact.display_name},

\n\n {if $event.confirm_email_text AND (not $isOnWaitlist AND not $isRequireApproval)}\n

{$event.confirm_email_text|htmlize}

\n\n {else}\n

Thank you for your participation. This letter is a confirmation that your registration has been received and your status has been updated to {if $participant_status}{$participant_status}{else}{if $isOnWaitlist}waitlisted{else}registered{/if}{/if}.

\n\n {/if}\n\n

\n {if $isOnWaitlist}\n

{ts}You have been added to the WAIT LIST for this event.{/ts}

\n {if $isPrimary}\n

{ts}If space becomes available you will receive an email with\na link to a web page where you can complete your registration.{/ts}

\n {/if}\n {elseif $isRequireApproval}\n

{ts}Your registration has been submitted.{/ts}

\n {if $isPrimary}\n

{ts}Once your registration has been reviewed, you will receive\nan email with a link to a web page where you can complete the\nregistration process.{/ts}

\n {/if}\n {elseif $is_pay_later && !$isAmountzero && !$isAdditionalParticipant}\n

{$pay_later_receipt}

{* FIXME: this might be text rather than HTML *}\n {else}\n

{ts}Please print this confirmation for your records.{/ts}

\n {/if}\n\n
\n \n \n \n \n \n \n \n\n\n {if $conference_sessions}\n \n \n \n \n \n \n {/if}\n\n {if $event.participant_role neq \'Attendee\' and $defaultRole}\n \n \n \n \n {/if}\n\n {if $isShowLocation}\n \n \n \n {/if}\n\n {if $location.phone.1.phone || $location.email.1.email}\n \n \n \n {foreach from=$location.phone item=phone}\n {if $phone.phone}\n \n \n \n \n {/if}\n {/foreach}\n {foreach from=$location.email item=eventEmail}\n {if $eventEmail.email}\n \n \n \n \n {/if}\n {/foreach}\n {/if}\n \n \n \n {if $event.is_share}\n \n \n \n {/if}\n {if $payer.name}\n \n \n \n \n \n \n {/if}\n {if $event.is_monetary}\n\n \n \n \n\n {if $lineItem}\n {foreach from=$lineItem item=value key=priceset}\n {if $value neq \'skip\'}\n {if $isPrimary}\n {if $lineItem|@count GT 1} {* Header for multi participant registration cases. *}\n \n \n \n {/if}\n {/if}\n \n \n \n {/if}\n {/foreach}\n {/if}\n\n {if $amounts && !$lineItem}\n {foreach from=$amounts item=amnt key=level}\n \n \n \n {/foreach}\n {/if}\n\n {if $isPrimary}\n \n \n \n \n {if $pricesetFieldsCount }\n \n \n \n {/if}\n\n {if $register_date}\n \n \n \n \n {/if}\n\n {if $receive_date}\n \n \n \n \n {/if}\n\n {if $contributionTypeName}\n \n \n \n \n {/if}\n\n {if $trxn_id}\n \n \n \n \n {/if}\n\n {if $paidBy}\n \n \n \n \n {/if}\n\n {if $checkNumber}\n \n \n \n \n {/if}\n\n {if $contributeMode ne \'notify\' and !$isAmountzero and !$is_pay_later and !$isOnWaitlist and !$isRequireApproval}\n \n \n \n \n \n \n {/if}\n\n {if $contributeMode eq \'direct\' and !$isAmountzero and !$is_pay_later and !$isOnWaitlist and !$isRequireApproval}\n \n \n \n \n \n \n {/if}\n\n {/if}\n\n {/if} {* End of conditional section for Paid events *}\n\n\n{if $customPre}\n{foreach from=$customPre item=customPr key=i}\n \n {foreach from=$customPr item=customValue key=customName}\n {if ( $trackingFields and ! in_array( $customName, $trackingFields ) ) or ! $trackingFields}\n \n \n \n \n {/if}\n {/foreach}\n{/foreach}\n{/if}\n\n{if $customPost}\n{foreach from=$customPost item=customPos key=j}\n \n {foreach from=$customPos item=customValue key=customName}\n {if ( $trackingFields and ! in_array( $customName, $trackingFields ) ) or ! $trackingFields}\n \n \n \n \n{/if}\n{/foreach}\n{/foreach}\n{/if}\n\n{if $customProfile}\n{foreach from=$customProfile.profile item=eachParticipant key=participantID}\n \n {foreach from=$eachParticipant item=eachProfile key=pid}\n \n {foreach from=$eachProfile item=val key=field}\n {foreach from=$val item=v key=f}\n \n \n {/foreach}\n \n {/foreach}\n{/foreach}\n{/foreach}\n{/if}\n\n {if $customGroup}\n {foreach from=$customGroup item=value key=customName}\n \n \n \n {foreach from=$value item=v key=n}\n \n \n \n \n {/foreach}\n {/foreach}\n {/if}\n\n
\n {ts}Event Information and Location{/ts}\n
\n {$event.event_title}
\n {$event.event_start_date|date_format:\"%A\"} {$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|date_format:\"%Y%m%d\" == $event.event_start_date|date_format:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|date_format:\"%A\"} {$event.event_end_date|crmDate}{/if}{/if}\n
\n {ts}Your schedule:{/ts}\n
\n {assign var=\'group_by_day\' value=\'NA\'}\n {foreach from=$conference_sessions item=session}\n {if $session.start_date|date_format:\"%Y/%m/%d\" != $group_by_day|date_format:\"%Y/%m/%d\"}\n {assign var=\'group_by_day\' value=$session.start_date}\n {$group_by_day|date_format:\"%m/%d/%Y\"}
\n {/if}\n {$session.start_date|crmDate:0:1}{if $session.end_date}-{$session.end_date|crmDate:0:1}{/if} {$session.title}
\n {if $session.location}    {$session.location}
{/if}\n {/foreach}\n
\n {ts}Participant Role{/ts}\n \n {$event.participant_role}\n
\n {if $location.address.1.name}\n {$location.address.1.name}
\n {/if}\n {if $location.address.1.street_address}\n {$location.address.1.street_address}
\n {/if}\n {if $location.address.1.supplemental_address_1}\n {$location.address.1.supplemental_address_1}
\n {/if}\n {if $location.address.1.supplemental_address_2}\n {$location.address.1.supplemental_address_2}
\n {/if}\n {if $location.address.1.city}\n {$location.address.1.city}, {$location.address.1.state_province} {$location.address.1.postal_code}{if $location.address.1.postal_code_suffix} - {$location.address.1.postal_code_suffix}{/if}
\n {/if}\n
\n {ts}Event Contacts:{/ts}\n
\n {if $phone.phone_type}\n {$phone.phone_type_display}\n {else}\n {ts}Phone{/ts}\n {/if}\n \n {$phone.phone} {if $phone.phone_ext} {ts}ext.{/ts} {$phone.phone_ext}{/if}\n
\n {ts}Email{/ts}\n \n {$eventEmail.email}\n
\n {capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n {ts}Download iCalendar File{/ts}\n
\n {capture assign=eventUrl}{crmURL p=\'civicrm/event/info\' q=\"id=`$event.id`&reset=1\" a=true fe=1 h=1}{/capture}\n {include file=\"CRM/common/SocialNetwork.tpl\" emailMode=true url=$eventUrl title=$event.title pageURL=$eventUrl}\n
\n {ts}You were registered by:{/ts}\n
\n {$payer.name}\n
\n {$event.fee_label}\n
\n {ts 1=$priceset+1}Participant %1{/ts} {$part.$priceset.info}\n
\n {* FIXME: style this table so that it looks like the text version (justification, etc.) *}\n \n \n \n \n \n {if $pricesetFieldsCount }{/if}\n \n {foreach from=$value item=line}\n \n \n \n \n \n {if $pricesetFieldsCount } {/if}\n \n {/foreach}\n
{ts}Item{/ts}{ts}Qty{/ts}{ts}Each{/ts}{ts}Total{/ts}{ts}Total Participants{/ts}
\n {if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description}
{$line.description|truncate:30:\"...\"}
{/if}\n
\n {$line.qty}\n \n {$line.unit_price|crmMoney:$currency}\n \n {$line.line_total|crmMoney:$currency}\n {$line.participant_count}
\n
\n {$amnt.amount|crmMoney:$currency} {$amnt.label}\n
\n {ts}Total Amount{/ts}\n \n {$totalAmount|crmMoney:$currency} {if $hookDiscount.message}({$hookDiscount.message}){/if}\n
\n {ts}Total Participants{/ts}\n {assign var=\"count\" value= 0}\n {foreach from=$lineItem item=pcount}\n {assign var=\"lineItemCount\" value=0}\n {if $pcount neq \'skip\'}\n {foreach from=$pcount item=p_count}\n {assign var=\"lineItemCount\" value=$lineItemCount+$p_count.participant_count}\n {/foreach}\n {if $lineItemCount < 1 }\n {assign var=\"lineItemCount\" value=1}\n {/if}\n {assign var=\"count\" value=$count+$lineItemCount}\n {/if}\n {/foreach}\n {$count}\n
\n {ts}Registration Date{/ts}\n \n {$register_date|crmDate}\n
\n {ts}Transaction Date{/ts}\n \n {$receive_date|crmDate}\n
\n {ts}Financial Type{/ts}\n \n {$contributionTypeName}\n
\n {ts}Transaction #{/ts}\n \n {$trxn_id}\n
\n {ts}Paid By{/ts}\n \n {$paidBy}\n
\n {ts}Check Number{/ts}\n \n {$checkNumber}\n
\n {ts}Billing Name and Address{/ts}\n
\n {$billingName}
\n {$address|nl2br}\n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}
\n {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n
{$customPre_grouptitle.$i}
{$customName}{$customValue}
{$customPost_grouptitle.$j}
{$customName}{$customValue}
{ts 1=$participantID+2}Participant %1{/ts}
{$customProfile.title.$pid}
{$field}{$v}
\n {$customName}\n
\n {$n}\n \n {$v}\n
\n
\n
\n\n\n\n',1,719,1,0,NULL),(26,'Events - Registration Confirmation and Receipt (on-line)','{if $isOnWaitlist}{ts}Wait List Confirmation{/ts}{else}{ts}Registration Confirmation{/ts}{/if} - {$event.event_title}','Dear {contact.display_name},\n\n{if $event.confirm_email_text AND (not $isOnWaitlist AND not $isRequireApproval)}\n{$event.confirm_email_text}\n\n{else}\nThank you for your participation. This letter is a confirmation that your registration has been received and your status has been updated to {if $participant_status}{$participant_status}{else}{if $isOnWaitlist}waitlisted{else}registered{/if}{/if}.\n\n{/if}\n\n{if $isOnWaitlist}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{ts}You have been added to the WAIT LIST for this event.{/ts}\n\n{if $isPrimary}\n{ts}If space becomes available you will receive an email with\na link to a web page where you can complete your registration.{/ts}\n{/if}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{elseif $isRequireApproval}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{ts}Your registration has been submitted.{/ts}\n\n{if $isPrimary}\n{ts}Once your registration has been reviewed, you will receive\nan email with a link to a web page where you can complete the\nregistration process.{/ts}\n\n{/if}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{elseif $is_pay_later && !$isAmountzero && !$isAdditionalParticipant}\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$pay_later_receipt}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{else}\n\n{ts}Please print this confirmation for your records.{/ts}\n{/if}\n\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{ts}Event Information and Location{/ts}\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$event.event_title}\n{$event.event_start_date|date_format:\"%A\"} {$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|date_format:\"%Y%m%d\" == $event.event_start_date|date_format:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|date_format:\"%A\"} {$event.event_end_date|crmDate}{/if}{/if}\n{if $conference_sessions}\n\n\n{ts}Your schedule:{/ts}\n{assign var=\'group_by_day\' value=\'NA\'}\n{foreach from=$conference_sessions item=session}\n{if $session.start_date|date_format:\"%Y/%m/%d\" != $group_by_day|date_format:\"%Y/%m/%d\"}\n{assign var=\'group_by_day\' value=$session.start_date}\n\n{$group_by_day|date_format:\"%m/%d/%Y\"}\n\n\n{/if}\n{$session.start_date|crmDate:0:1}{if $session.end_date}-{$session.end_date|crmDate:0:1}{/if} {$session.title}\n{if $session.location} {$session.location}{/if}\n{/foreach}\n{/if}\n\n{if $event.participant_role neq \'Attendee\' and $defaultRole}\n{ts}Participant Role{/ts}: {$event.participant_role}\n{/if}\n\n{if $isShowLocation}\n{if $location.address.1.name}\n\n{$location.address.1.name}\n{/if}\n{if $location.address.1.street_address}{$location.address.1.street_address}\n{/if}\n{if $location.address.1.supplemental_address_1}{$location.address.1.supplemental_address_1}\n{/if}\n{if $location.address.1.supplemental_address_2}{$location.address.1.supplemental_address_2}\n{/if}\n{if $location.address.1.city}{$location.address.1.city}, {$location.address.1.state_province} {$location.address.1.postal_code}{if $location.address.1.postal_code_suffix} - {$location.address.1.postal_code_suffix}{/if}\n{/if}\n\n{/if}{*End of isShowLocation condition*}\n\n{if $location.phone.1.phone || $location.email.1.email}\n\n{ts}Event Contacts:{/ts}\n{foreach from=$location.phone item=phone}\n{if $phone.phone}\n\n{if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}: {$phone.phone}{/if} {if $phone.phone_ext} {ts}ext.{/ts} {$phone.phone_ext}{/if}\n{/foreach}\n{foreach from=$location.email item=eventEmail}\n{if $eventEmail.email}\n\n{ts}Email{/ts}: {$eventEmail.email}{/if}{/foreach}\n{/if}\n\n{capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n{ts}Download iCalendar File:{/ts} {$icalFeed}\n\n{if $payer.name}\nYou were registered by: {$payer.name}\n{/if}\n{if $event.is_monetary} {* This section for Paid events only.*}\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$event.fee_label}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{if $lineItem}{foreach from=$lineItem item=value key=priceset}\n\n{if $value neq \'skip\'}\n{if $isPrimary}\n{if $lineItem|@count GT 1} {* Header for multi participant registration cases. *}\n{ts 1=$priceset+1}Participant %1{/ts} {$part.$priceset.info}\n\n{/if}\n{/if}\n-----------------------------------------------------------{if $pricesetFieldsCount }--------------------{/if}\n\n{capture assign=ts_item}{ts}Item{/ts}{/capture}\n{capture assign=ts_qty}{ts}Qty{/ts}{/capture}\n{capture assign=ts_each}{ts}Each{/ts}{/capture}\n{capture assign=ts_total}{ts}Total{/ts}{/capture}\n{if $pricesetFieldsCount }{capture assign=ts_participant_total}{ts}Total Participants{/ts}{/capture}{/if}\n{$ts_item|string_format:\"%-30s\"} {$ts_qty|string_format:\"%5s\"} {$ts_each|string_format:\"%10s\"} {$ts_total|string_format:\"%10s\"} {$ts_participant_total|string_format:\"%10s\"}\n-----------------------------------------------------------{if $pricesetFieldsCount }--------------------{/if}\n\n{foreach from=$value item=line}\n{if $pricesetFieldsCount }{capture assign=ts_participant_count}{$line.participant_count}{/capture}{/if}\n{capture assign=ts_item}{if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description} {$line.description}{/if}{/capture}{$ts_item|truncate:30:\"...\"|string_format:\"%-30s\"} {$line.qty|string_format:\"%5s\"} {$line.unit_price|crmMoney:$currency|string_format:\"%10s\"} {$line.line_total|crmMoney:$currency|string_format:\"%10s\"}{$ts_participant_count|string_format:\"%10s\"}\n{/foreach}\n{/if}\n{/foreach}\n{/if}\n{if $amounts && !$lineItem}\n{foreach from=$amounts item=amnt key=level}{$amnt.amount|crmMoney:$currency} {$amnt.label}\n{/foreach}\n{/if}\n{if $isPrimary }\n\n{ts}Total Amount{/ts}: {$totalAmount|crmMoney:$currency} {if $hookDiscount.message}({$hookDiscount.message}){/if}\n\n{if $pricesetFieldsCount }\n {assign var=\"count\" value= 0}\n {foreach from=$lineItem item=pcount}\n {assign var=\"lineItemCount\" value=0}\n {if $pcount neq \'skip\'}\n {foreach from=$pcount item=p_count}\n {assign var=\"lineItemCount\" value=$lineItemCount+$p_count.participant_count}\n {/foreach}\n {if $lineItemCount < 1 }\n {assign var=\"lineItemCount\" value=1}\n {/if}\n {assign var=\"count\" value=$count+$lineItemCount}\n {/if}\n {/foreach}\n\n{ts}Total Participants{/ts}: {$count}\n{/if}\n\n{if $register_date}\n{ts}Registration Date{/ts}: {$register_date|crmDate}\n{/if}\n{if $receive_date}\n{ts}Transaction Date{/ts}: {$receive_date|crmDate}\n{/if}\n{if $contributionTypeName}\n{ts}Financial Type{/ts}: {$contributionTypeName}\n{/if}\n{if $trxn_id}\n{ts}Transaction #{/ts}: {$trxn_id}\n{/if}\n{if $paidBy}\n{ts}Paid By{/ts}: {$paidBy}\n{/if}\n{if $checkNumber}\n{ts}Check Number{/ts}: {$checkNumber}\n{/if}\n{if $contributeMode ne \'notify\' and !$isAmountzero and !$is_pay_later and !$isOnWaitlist and !$isRequireApproval}\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{ts}Billing Name and Address{/ts}\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$billingName}\n{$address}\n{/if}\n\n{if $contributeMode eq \'direct\' and !$isAmountzero and !$is_pay_later and !$isOnWaitlist and !$isRequireApproval}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{ts}Credit Card Information{/ts}\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$credit_card_type}\n{$credit_card_number}\n{ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n{/if}\n{/if}\n{/if} {* End of conditional section for Paid events *}\n\n{if $customPre}\n{foreach from=$customPre item=customPr key=i}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$customPre_grouptitle.$i}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{foreach from=$customPr item=customValue key=customName}\n{if ( $trackingFields and ! in_array( $customName, $trackingFields ) ) or ! $trackingFields}\n {$customName}: {$customValue}\n{/if}\n{/foreach}\n{/foreach}\n{/if}\n\n{if $customPost}\n{foreach from=$customPost item=customPos key=j}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$customPost_grouptitle.$j}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{foreach from=$customPos item=customValue key=customName}\n{if ( $trackingFields and ! in_array( $customName, $trackingFields ) ) or ! $trackingFields}\n {$customName}: {$customValue}\n{/if}\n{/foreach}\n{/foreach}\n{/if}\n{if $customProfile}\n\n{foreach from=$customProfile.profile item=eachParticipant key=participantID}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{ts 1=$participantID+2}Participant Information - Participant %1{/ts}\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{foreach from=$eachParticipant item=eachProfile key=pid}\n----------------------------------------------------------{if $pricesetFieldsCount }--------------------{/if}\n\n{$customProfile.title.$pid}\n----------------------------------------------------------{if $pricesetFieldsCount }--------------------{/if}\n\n{foreach from=$eachProfile item=val key=field}\n{foreach from=$val item=v key=f}\n{$field}: {$v}\n{/foreach}\n{/foreach}\n{/foreach}\n{/foreach}\n{/if}\n{if $customGroup}\n{foreach from=$customGroup item=value key=customName}\n=========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$customName}\n=========================================================={if $pricesetFieldsCount }===================={/if}\n\n{foreach from=$value item=v key=n}\n{$n}: {$v}\n{/foreach}\n{/foreach}\n{/if}\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n \n \n \n
\n

Dear {contact.display_name},

\n\n {if $event.confirm_email_text AND (not $isOnWaitlist AND not $isRequireApproval)}\n

{$event.confirm_email_text|htmlize}

\n\n {else}\n

Thank you for your participation. This letter is a confirmation that your registration has been received and your status has been updated to {if $participant_status}{$participant_status}{else}{if $isOnWaitlist}waitlisted{else}registered{/if}{/if}.

\n\n {/if}\n\n

\n {if $isOnWaitlist}\n

{ts}You have been added to the WAIT LIST for this event.{/ts}

\n {if $isPrimary}\n

{ts}If space becomes available you will receive an email with\na link to a web page where you can complete your registration.{/ts}

\n {/if}\n {elseif $isRequireApproval}\n

{ts}Your registration has been submitted.{/ts}

\n {if $isPrimary}\n

{ts}Once your registration has been reviewed, you will receive\nan email with a link to a web page where you can complete the\nregistration process.{/ts}

\n {/if}\n {elseif $is_pay_later && !$isAmountzero && !$isAdditionalParticipant}\n

{$pay_later_receipt}

{* FIXME: this might be text rather than HTML *}\n {else}\n

{ts}Please print this confirmation for your records.{/ts}

\n {/if}\n\n
\n \n \n \n \n \n \n \n\n\n {if $conference_sessions}\n \n \n \n \n \n \n {/if}\n\n {if $event.participant_role neq \'Attendee\' and $defaultRole}\n \n \n \n \n {/if}\n\n {if $isShowLocation}\n \n \n \n {/if}\n\n {if $location.phone.1.phone || $location.email.1.email}\n \n \n \n {foreach from=$location.phone item=phone}\n {if $phone.phone}\n \n \n \n \n {/if}\n {/foreach}\n {foreach from=$location.email item=eventEmail}\n {if $eventEmail.email}\n \n \n \n \n {/if}\n {/foreach}\n {/if}\n \n \n \n {if $event.is_share}\n \n \n \n {/if}\n {if $payer.name}\n \n \n \n \n \n \n {/if}\n {if $event.is_monetary}\n\n \n \n \n\n {if $lineItem}\n {foreach from=$lineItem item=value key=priceset}\n {if $value neq \'skip\'}\n {if $isPrimary}\n {if $lineItem|@count GT 1} {* Header for multi participant registration cases. *}\n \n \n \n {/if}\n {/if}\n \n \n \n {/if}\n {/foreach}\n {/if}\n\n {if $amounts && !$lineItem}\n {foreach from=$amounts item=amnt key=level}\n \n \n \n {/foreach}\n {/if}\n\n {if $isPrimary}\n \n \n \n \n {if $pricesetFieldsCount }\n \n \n \n {/if}\n\n {if $register_date}\n \n \n \n \n {/if}\n\n {if $receive_date}\n \n \n \n \n {/if}\n\n {if $contributionTypeName}\n \n \n \n \n {/if}\n\n {if $trxn_id}\n \n \n \n \n {/if}\n\n {if $paidBy}\n \n \n \n \n {/if}\n\n {if $checkNumber}\n \n \n \n \n {/if}\n\n {if $contributeMode ne \'notify\' and !$isAmountzero and !$is_pay_later and !$isOnWaitlist and !$isRequireApproval}\n \n \n \n \n \n \n {/if}\n\n {if $contributeMode eq \'direct\' and !$isAmountzero and !$is_pay_later and !$isOnWaitlist and !$isRequireApproval}\n \n \n \n \n \n \n {/if}\n\n {/if}\n\n {/if} {* End of conditional section for Paid events *}\n\n\n{if $customPre}\n{foreach from=$customPre item=customPr key=i}\n \n {foreach from=$customPr item=customValue key=customName}\n {if ( $trackingFields and ! in_array( $customName, $trackingFields ) ) or ! $trackingFields}\n \n \n \n \n {/if}\n {/foreach}\n{/foreach}\n{/if}\n\n{if $customPost}\n{foreach from=$customPost item=customPos key=j}\n \n {foreach from=$customPos item=customValue key=customName}\n {if ( $trackingFields and ! in_array( $customName, $trackingFields ) ) or ! $trackingFields}\n \n \n \n \n{/if}\n{/foreach}\n{/foreach}\n{/if}\n\n{if $customProfile}\n{foreach from=$customProfile.profile item=eachParticipant key=participantID}\n \n {foreach from=$eachParticipant item=eachProfile key=pid}\n \n {foreach from=$eachProfile item=val key=field}\n {foreach from=$val item=v key=f}\n \n \n {/foreach}\n \n {/foreach}\n{/foreach}\n{/foreach}\n{/if}\n\n {if $customGroup}\n {foreach from=$customGroup item=value key=customName}\n \n \n \n {foreach from=$value item=v key=n}\n \n \n \n \n {/foreach}\n {/foreach}\n {/if}\n\n
\n {ts}Event Information and Location{/ts}\n
\n {$event.event_title}
\n {$event.event_start_date|date_format:\"%A\"} {$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|date_format:\"%Y%m%d\" == $event.event_start_date|date_format:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|date_format:\"%A\"} {$event.event_end_date|crmDate}{/if}{/if}\n
\n {ts}Your schedule:{/ts}\n
\n {assign var=\'group_by_day\' value=\'NA\'}\n {foreach from=$conference_sessions item=session}\n {if $session.start_date|date_format:\"%Y/%m/%d\" != $group_by_day|date_format:\"%Y/%m/%d\"}\n {assign var=\'group_by_day\' value=$session.start_date}\n {$group_by_day|date_format:\"%m/%d/%Y\"}
\n {/if}\n {$session.start_date|crmDate:0:1}{if $session.end_date}-{$session.end_date|crmDate:0:1}{/if} {$session.title}
\n {if $session.location}    {$session.location}
{/if}\n {/foreach}\n
\n {ts}Participant Role{/ts}\n \n {$event.participant_role}\n
\n {if $location.address.1.name}\n {$location.address.1.name}
\n {/if}\n {if $location.address.1.street_address}\n {$location.address.1.street_address}
\n {/if}\n {if $location.address.1.supplemental_address_1}\n {$location.address.1.supplemental_address_1}
\n {/if}\n {if $location.address.1.supplemental_address_2}\n {$location.address.1.supplemental_address_2}
\n {/if}\n {if $location.address.1.city}\n {$location.address.1.city}, {$location.address.1.state_province} {$location.address.1.postal_code}{if $location.address.1.postal_code_suffix} - {$location.address.1.postal_code_suffix}{/if}
\n {/if}\n
\n {ts}Event Contacts:{/ts}\n
\n {if $phone.phone_type}\n {$phone.phone_type_display}\n {else}\n {ts}Phone{/ts}\n {/if}\n \n {$phone.phone} {if $phone.phone_ext} {ts}ext.{/ts} {$phone.phone_ext}{/if}\n
\n {ts}Email{/ts}\n \n {$eventEmail.email}\n
\n {capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n {ts}Download iCalendar File{/ts}\n
\n {capture assign=eventUrl}{crmURL p=\'civicrm/event/info\' q=\"id=`$event.id`&reset=1\" a=true fe=1 h=1}{/capture}\n {include file=\"CRM/common/SocialNetwork.tpl\" emailMode=true url=$eventUrl title=$event.title pageURL=$eventUrl}\n
\n {ts}You were registered by:{/ts}\n
\n {$payer.name}\n
\n {$event.fee_label}\n
\n {ts 1=$priceset+1}Participant %1{/ts} {$part.$priceset.info}\n
\n {* FIXME: style this table so that it looks like the text version (justification, etc.) *}\n \n \n \n \n \n {if $pricesetFieldsCount }{/if}\n \n {foreach from=$value item=line}\n \n \n \n \n \n {if $pricesetFieldsCount } {/if}\n \n {/foreach}\n
{ts}Item{/ts}{ts}Qty{/ts}{ts}Each{/ts}{ts}Total{/ts}{ts}Total Participants{/ts}
\n {if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description}
{$line.description|truncate:30:\"...\"}
{/if}\n
\n {$line.qty}\n \n {$line.unit_price|crmMoney:$currency}\n \n {$line.line_total|crmMoney:$currency}\n {$line.participant_count}
\n
\n {$amnt.amount|crmMoney:$currency} {$amnt.label}\n
\n {ts}Total Amount{/ts}\n \n {$totalAmount|crmMoney:$currency} {if $hookDiscount.message}({$hookDiscount.message}){/if}\n
\n {ts}Total Participants{/ts}\n {assign var=\"count\" value= 0}\n {foreach from=$lineItem item=pcount}\n {assign var=\"lineItemCount\" value=0}\n {if $pcount neq \'skip\'}\n {foreach from=$pcount item=p_count}\n {assign var=\"lineItemCount\" value=$lineItemCount+$p_count.participant_count}\n {/foreach}\n {if $lineItemCount < 1 }\n {assign var=\"lineItemCount\" value=1}\n {/if}\n {assign var=\"count\" value=$count+$lineItemCount}\n {/if}\n {/foreach}\n {$count}\n
\n {ts}Registration Date{/ts}\n \n {$register_date|crmDate}\n
\n {ts}Transaction Date{/ts}\n \n {$receive_date|crmDate}\n
\n {ts}Financial Type{/ts}\n \n {$contributionTypeName}\n
\n {ts}Transaction #{/ts}\n \n {$trxn_id}\n
\n {ts}Paid By{/ts}\n \n {$paidBy}\n
\n {ts}Check Number{/ts}\n \n {$checkNumber}\n
\n {ts}Billing Name and Address{/ts}\n
\n {$billingName}
\n {$address|nl2br}\n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}
\n {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n
{$customPre_grouptitle.$i}
{$customName}{$customValue}
{$customPost_grouptitle.$j}
{$customName}{$customValue}
{ts 1=$participantID+2}Participant %1{/ts}
{$customProfile.title.$pid}
{$field}{$v}
\n {$customName}\n
\n {$n}\n \n {$v}\n
\n
\n
\n\n\n\n',1,719,0,1,NULL),(27,'Events - Receipt only','Receipt for {if $events_in_cart} Event Registration{/if}\n','Dear {contact.display_name},\n{if $is_pay_later}\n This is being sent to you as an acknowledgement that you have registered one or more members for the following workshop, event or purchase. Please note, however, that the status of your payment is pending, and the registration for this event will not be completed until your payment is received.\n{else}\n This is being sent to you as a {if $is_refund}confirmation of refund{else}receipt of payment made{/if} for the following workshop, event registration or purchase.\n{/if}\n\n{if $is_pay_later}\n {$pay_later_receipt}\n{/if}\n\n Your order number is #{$transaction_id}. Please print this confirmation for your records.{if $line_items && !$is_refund} Information about the workshops will be sent separately to each participant.{/if}\n Here\'s a summary of your transaction placed on {$transaction_date|date_format:\"%D %I:%M %p %Z\"}:\n\n{if $billing_name}\n===========================================================\n{ts}Billing Name and Address{/ts}\n\n===========================================================\n{$billing_name}\n\n{$billing_street_address}\n\n{$billing_city}, {$billing_state} {$billing_postal_code}\n\n{$email}\n{/if}\n\n{if $source}\n{$source}\n{/if}\n\n\n{foreach from=$line_items item=line_item}\n{$line_item.event->title} ({$line_item.event->start_date|date_format:\"%D\"})\n{if $line_item.event->is_show_location}\n {if $line_item.location.address.1.name}\n {$line_item.location.address.1.name}\n {/if}\n {if $line_item.location.address.1.street_address}\n {$line_item.location.address.1.street_address}\n {/if}\n {if $line_item.location.address.1.supplemental_address_1}\n {$line_item.location.address.1.supplemental_address_1}\n {/if}\n {if $line_item.location.address.1.supplemental_address_2}\n {$line_item.location.address.1.supplemental_address_2}\n {/if}\n {if $line_item.location.address.1.city}\n {$line_item.location.address.1.city}, {$line_item.location.address.1.state_province} {$line_item.location.address.1.postal_code}\n {/if}\n{/if}{*End of isShowLocation condition*}\n{$line_item.event->start_date|date_format:\"%D %I:%M %p\"} - {$line_item.event->end_date|date_format:\"%I:%M %p\"}\n\n Quantity: {$line_item.num_participants}\n\n{if $line_item.num_participants > 0}\n {foreach from=$line_item.participants item=participant}\n {$participant.display_name}\n {/foreach}\n{/if}\n{if $line_item.num_waiting_participants > 0}\n Waitlisted:\n {foreach from=$line_item.waiting_participants item=participant}\n {$participant.display_name}\n {/foreach}\n{/if}\nCost: {$line_item.cost|crmMoney:$currency|string_format:\"%10s\"}\nTotal For This Event: {$line_item.amount|crmMoney:$currency|string_format:\"%10s\"}\n\n{/foreach}\n\n{if $discounts}\nSubtotal: {$sub_total|crmMoney:$currency|string_format:\"%10s\"}\n--------------------------------------\nDiscounts\n{foreach from=$discounts key=myId item=i}\n {$i.title}: -{$i.amount|crmMoney:$currency|string_format:\"%10s\"}\n{/foreach}\n{/if}\n======================================\nTotal: {$total|crmMoney:$currency|string_format:\"%10s\"}\n\n{if $credit_card_type}\n===========================================================\n{ts}Payment Information{/ts}\n\n===========================================================\n{$credit_card_type}\n{$credit_card_number}\n{ts}Expires{/ts}: {$credit_card_exp_date.M}/{$credit_card_exp_date.Y}\n{/if}\n\n If you have questions about the status of your registration or purchase please feel free to contact us.\n','\n\n \n \n \n \n \n {capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n {capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n {capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n

Dear {contact.display_name},

\n {if $is_pay_later}\n

\n This is being sent to you as an acknowledgement that you have registered one or more members for the following workshop, event or purchase. Please note, however, that the status of your payment is pending, and the registration for this event will not be completed until your payment is received.\n

\n {else}\n

\n This is being sent to you as a {if $is_refund}confirmation of refund{else}receipt of payment made{/if} for the following workshop, event registration or purchase.\n

\n {/if}\n\n {if $is_pay_later}\n

{$pay_later_receipt}

\n {/if}\n\n

Your order number is #{$transaction_id}. Please print this confirmation for your records.{if $line_items && !$is_refund} Information about the workshops will be sent separately to each participant.{/if}\n Here\'s a summary of your transaction placed on {$transaction_date|date_format:\"%D %I:%M %p %Z\"}:

\n\n\n{if $billing_name}\n \n \n \n \n \n \n \n
\n {ts}Billing Name and Address{/ts}\n
\n {$billing_name}
\n {$billing_street_address}
\n {$billing_city}, {$billing_state} {$billing_postal_code}
\n
\n {$email}\n
\n{/if}\n{if $credit_card_type}\n

 

\n \n \n \n \n \n \n \n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}
\n {ts}Expires{/ts}: {$credit_card_exp_date.M}/{$credit_card_exp_date.Y}\n
\n{/if}\n{if $source}\n

 

\n {$source}\n{/if}\n

 

\n \n \n \n{if $line_items}\n \n \n{/if}\n \n \n \n \n \n {foreach from=$line_items item=line_item}\n \n \n \n \n \n \n {/foreach}\n \n \n {if $discounts}\n \n \n \n \n \n \n {foreach from=$discounts key=myId item=i}\n \n \n \n \n \n \n {/foreach}\n {/if}\n \n{if $line_items}\n \n \n{/if}\n \n \n \n \n
\n Event\n \n Participants\n \n Price\n \n Total\n
\n {$line_item.event->title} ({$line_item.event->start_date|date_format:\"%D\"})
\n {if $line_item.event->is_show_location}\n {if $line_item.location.address.1.name}\n {$line_item.location.address.1.name}
\n {/if}\n {if $line_item.location.address.1.street_address}\n {$line_item.location.address.1.street_address}
\n {/if}\n {if $line_item.location.address.1.supplemental_address_1}\n {$line_item.location.address.1.supplemental_address_1}
\n {/if}\n {if $line_item.location.address.1.supplemental_address_2}\n {$line_item.location.address.1.supplemental_address_2}
\n {/if}\n {if $line_item.location.address.1.city}\n {$line_item.location.address.1.city}, {$line_item.location.address.1.state_province} {$location.address.1.postal_code}\n {/if}\n {/if}{*End of isShowLocation condition*}

\n {$line_item.event->start_date|date_format:\"%D %I:%M %p\"} - {$line_item.event->end_date|date_format:\"%I:%M %p\"}\n
\n {$line_item.num_participants}\n {if $line_item.num_participants > 0}\n
\n {foreach from=$line_item.participants item=participant}\n {$participant.display_name}
\n {/foreach}\n
\n {/if}\n {if $line_item.num_waiting_participants > 0}\n Waitlisted:
\n
\n {foreach from=$line_item.waiting_participants item=participant}\n {$participant.display_name}
\n {/foreach}\n
\n {/if}\n
\n {$line_item.cost|crmMoney:$currency|string_format:\"%10s\"}\n \n  {$line_item.amount|crmMoney:$currency|string_format:\"%10s\"}\n
\n \n \n Subtotal:\n \n  {$sub_total|crmMoney:$currency|string_format:\"%10s\"}\n
\n {$i.title}\n \n \n \n -{$i.amount}\n
\n \n \n Total:\n \n  {$total|crmMoney:$currency|string_format:\"%10s\"}\n
\n\n If you have questions about the status of your registration or purchase please feel free to contact us.\n \n\n',1,720,1,0,NULL),(28,'Events - Receipt only','Receipt for {if $events_in_cart} Event Registration{/if}\n','Dear {contact.display_name},\n{if $is_pay_later}\n This is being sent to you as an acknowledgement that you have registered one or more members for the following workshop, event or purchase. Please note, however, that the status of your payment is pending, and the registration for this event will not be completed until your payment is received.\n{else}\n This is being sent to you as a {if $is_refund}confirmation of refund{else}receipt of payment made{/if} for the following workshop, event registration or purchase.\n{/if}\n\n{if $is_pay_later}\n {$pay_later_receipt}\n{/if}\n\n Your order number is #{$transaction_id}. Please print this confirmation for your records.{if $line_items && !$is_refund} Information about the workshops will be sent separately to each participant.{/if}\n Here\'s a summary of your transaction placed on {$transaction_date|date_format:\"%D %I:%M %p %Z\"}:\n\n{if $billing_name}\n===========================================================\n{ts}Billing Name and Address{/ts}\n\n===========================================================\n{$billing_name}\n\n{$billing_street_address}\n\n{$billing_city}, {$billing_state} {$billing_postal_code}\n\n{$email}\n{/if}\n\n{if $source}\n{$source}\n{/if}\n\n\n{foreach from=$line_items item=line_item}\n{$line_item.event->title} ({$line_item.event->start_date|date_format:\"%D\"})\n{if $line_item.event->is_show_location}\n {if $line_item.location.address.1.name}\n {$line_item.location.address.1.name}\n {/if}\n {if $line_item.location.address.1.street_address}\n {$line_item.location.address.1.street_address}\n {/if}\n {if $line_item.location.address.1.supplemental_address_1}\n {$line_item.location.address.1.supplemental_address_1}\n {/if}\n {if $line_item.location.address.1.supplemental_address_2}\n {$line_item.location.address.1.supplemental_address_2}\n {/if}\n {if $line_item.location.address.1.city}\n {$line_item.location.address.1.city}, {$line_item.location.address.1.state_province} {$line_item.location.address.1.postal_code}\n {/if}\n{/if}{*End of isShowLocation condition*}\n{$line_item.event->start_date|date_format:\"%D %I:%M %p\"} - {$line_item.event->end_date|date_format:\"%I:%M %p\"}\n\n Quantity: {$line_item.num_participants}\n\n{if $line_item.num_participants > 0}\n {foreach from=$line_item.participants item=participant}\n {$participant.display_name}\n {/foreach}\n{/if}\n{if $line_item.num_waiting_participants > 0}\n Waitlisted:\n {foreach from=$line_item.waiting_participants item=participant}\n {$participant.display_name}\n {/foreach}\n{/if}\nCost: {$line_item.cost|crmMoney:$currency|string_format:\"%10s\"}\nTotal For This Event: {$line_item.amount|crmMoney:$currency|string_format:\"%10s\"}\n\n{/foreach}\n\n{if $discounts}\nSubtotal: {$sub_total|crmMoney:$currency|string_format:\"%10s\"}\n--------------------------------------\nDiscounts\n{foreach from=$discounts key=myId item=i}\n {$i.title}: -{$i.amount|crmMoney:$currency|string_format:\"%10s\"}\n{/foreach}\n{/if}\n======================================\nTotal: {$total|crmMoney:$currency|string_format:\"%10s\"}\n\n{if $credit_card_type}\n===========================================================\n{ts}Payment Information{/ts}\n\n===========================================================\n{$credit_card_type}\n{$credit_card_number}\n{ts}Expires{/ts}: {$credit_card_exp_date.M}/{$credit_card_exp_date.Y}\n{/if}\n\n If you have questions about the status of your registration or purchase please feel free to contact us.\n','\n\n \n \n \n \n \n {capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n {capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n {capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n

Dear {contact.display_name},

\n {if $is_pay_later}\n

\n This is being sent to you as an acknowledgement that you have registered one or more members for the following workshop, event or purchase. Please note, however, that the status of your payment is pending, and the registration for this event will not be completed until your payment is received.\n

\n {else}\n

\n This is being sent to you as a {if $is_refund}confirmation of refund{else}receipt of payment made{/if} for the following workshop, event registration or purchase.\n

\n {/if}\n\n {if $is_pay_later}\n

{$pay_later_receipt}

\n {/if}\n\n

Your order number is #{$transaction_id}. Please print this confirmation for your records.{if $line_items && !$is_refund} Information about the workshops will be sent separately to each participant.{/if}\n Here\'s a summary of your transaction placed on {$transaction_date|date_format:\"%D %I:%M %p %Z\"}:

\n\n\n{if $billing_name}\n \n \n \n \n \n \n \n
\n {ts}Billing Name and Address{/ts}\n
\n {$billing_name}
\n {$billing_street_address}
\n {$billing_city}, {$billing_state} {$billing_postal_code}
\n
\n {$email}\n
\n{/if}\n{if $credit_card_type}\n

 

\n \n \n \n \n \n \n \n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}
\n {ts}Expires{/ts}: {$credit_card_exp_date.M}/{$credit_card_exp_date.Y}\n
\n{/if}\n{if $source}\n

 

\n {$source}\n{/if}\n

 

\n \n \n \n{if $line_items}\n \n \n{/if}\n \n \n \n \n \n {foreach from=$line_items item=line_item}\n \n \n \n \n \n \n {/foreach}\n \n \n {if $discounts}\n \n \n \n \n \n \n {foreach from=$discounts key=myId item=i}\n \n \n \n \n \n \n {/foreach}\n {/if}\n \n{if $line_items}\n \n \n{/if}\n \n \n \n \n
\n Event\n \n Participants\n \n Price\n \n Total\n
\n {$line_item.event->title} ({$line_item.event->start_date|date_format:\"%D\"})
\n {if $line_item.event->is_show_location}\n {if $line_item.location.address.1.name}\n {$line_item.location.address.1.name}
\n {/if}\n {if $line_item.location.address.1.street_address}\n {$line_item.location.address.1.street_address}
\n {/if}\n {if $line_item.location.address.1.supplemental_address_1}\n {$line_item.location.address.1.supplemental_address_1}
\n {/if}\n {if $line_item.location.address.1.supplemental_address_2}\n {$line_item.location.address.1.supplemental_address_2}
\n {/if}\n {if $line_item.location.address.1.city}\n {$line_item.location.address.1.city}, {$line_item.location.address.1.state_province} {$location.address.1.postal_code}\n {/if}\n {/if}{*End of isShowLocation condition*}

\n {$line_item.event->start_date|date_format:\"%D %I:%M %p\"} - {$line_item.event->end_date|date_format:\"%I:%M %p\"}\n
\n {$line_item.num_participants}\n {if $line_item.num_participants > 0}\n
\n {foreach from=$line_item.participants item=participant}\n {$participant.display_name}
\n {/foreach}\n
\n {/if}\n {if $line_item.num_waiting_participants > 0}\n Waitlisted:
\n
\n {foreach from=$line_item.waiting_participants item=participant}\n {$participant.display_name}
\n {/foreach}\n
\n {/if}\n
\n {$line_item.cost|crmMoney:$currency|string_format:\"%10s\"}\n \n  {$line_item.amount|crmMoney:$currency|string_format:\"%10s\"}\n
\n \n \n Subtotal:\n \n  {$sub_total|crmMoney:$currency|string_format:\"%10s\"}\n
\n {$i.title}\n \n \n \n -{$i.amount}\n
\n \n \n Total:\n \n  {$total|crmMoney:$currency|string_format:\"%10s\"}\n
\n\n If you have questions about the status of your registration or purchase please feel free to contact us.\n \n\n',1,720,0,1,NULL),(29,'Events - Registration Cancellation Notice','{ts 1=$event.event_title}Event Registration Cancelled for %1{/ts}\n','{ts 1=$contact.display_name}Dear %1{/ts},\n\n{ts}Your Event Registration has been cancelled.{/ts}\n\n\n===========================================================\n{ts}Event Information and Location{/ts}\n\n===========================================================\n{$event.event_title}\n{$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|date_format:\"%Y%m%d\" == $event.event_start_date|date_format:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|crmDate}{/if}{/if}\n\n{ts}Participant Role{/ts}: {$participant.role}\n\n{if $isShowLocation}\n{if $event.location.address.1.name}\n\n{$event.location.address.1.name}\n{/if}\n{if $event.location.address.1.street_address}{$event.location.address.1.street_address}\n{/if}\n{if $event.location.address.1.supplemental_address_1}{$event.location.address.1.supplemental_address_1}\n{/if}\n{if $event.location.address.1.supplemental_address_2}{$event.location.address.1.supplemental_address_2}\n{/if}\n{if $event.location.address.1.city}{$event.location.address.1.city} {$event.location.address.1.postal_code}{if $event.location.address.1.postal_code_suffix} - {$event.location.address.1.postal_code_suffix}{/if}\n{/if}\n\n{/if}{*End of isShowLocation condition*}\n\n{if $event.location.phone.1.phone || $event.location.email.1.email}\n\n{ts}Event Contacts:{/ts}\n{foreach from=$event.location.phone item=phone}\n{if $phone.phone}\n\n{if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}: {$phone.phone}{/if}\n{/foreach}\n{foreach from=$event.location.email item=eventEmail}\n{if $eventEmail.email}\n\n{ts}Email{/ts}: {$eventEmail.email}{/if}{/foreach}\n{/if}\n\n{capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n{ts}Download iCalendar File{/ts}: {$icalFeed}\n{if $contact.email}\n\n===========================================================\n{ts}Registered Email{/ts}\n\n===========================================================\n{$contact.email}\n{/if}\n\n{if $register_date}\n{ts}Registration Date{/ts}: {$participant.register_date|crmDate}\n{/if}\n\n{ts 1=$domain.phone 2=$domain.email}Please contact us at %1 or send email to %2 if you have questions.{/ts}\n\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n \n \n \n\n \n \n \n\n
\n

{ts 1=$contact.display_name}Dear %1{/ts},

\n

{ts}Your Event Registration has been cancelled.{/ts}

\n
\n \n \n \n \n \n \n \n \n \n \n \n\n {if $isShowLocation}\n \n \n \n {/if}\n\n {if $event.location.phone.1.phone || $event.location.email.1.email}\n \n \n \n {foreach from=$event.location.phone item=phone}\n {if $phone.phone}\n \n \n \n \n {/if}\n {/foreach}\n {foreach from=$event.location.email item=eventEmail}\n {if $eventEmail.email}\n \n \n \n \n {/if}\n {/foreach}\n {/if}\n\n {capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n \n \n \n\n {if $contact.email}\n \n \n \n \n \n \n {/if}\n\n {if $register_date}\n \n \n \n \n {/if}\n\n
\n {ts}Event Information and Location{/ts}\n
\n {$event.event_title}
\n {$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|date_format:\"%Y%m%d\" == $event.event_start_date|date_format:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|crmDate}{/if}{/if}\n
\n {ts}Participant Role{/ts}:\n \n {$participant.role}\n
\n {if $event.location.address.1.name}\n {$event.location.address.1.name}
\n {/if}\n {if $event.location.address.1.street_address}\n {$event.location.address.1.street_address}
\n {/if}\n {if $event.location.address.1.supplemental_address_1}\n {$event.location.address.1.supplemental_address_1}
\n {/if}\n {if $event.location.address.1.supplemental_address_2}\n {$event.location.address.1.supplemental_address_2}
\n {/if}\n {if $event.location.address.1.city}\n {$event.location.address.1.city} {$event.location.address.1.postal_code}\n {if $event.location.address.1.postal_code_suffix}\n - {$event.location.address.1.postal_code_suffix}\n {/if}\n {/if}\n
\n {ts}Event Contacts:{/ts}\n
\n {if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}\n \n {$phone.phone}\n
\n {ts}Email{/ts}\n \n {$eventEmail.email}\n
\n {ts}Download iCalendar File{/ts}\n
\n {ts}Registered Email{/ts}\n
\n {$contact.email}\n
\n {ts}Registration Date{/ts}\n \n {$participant.register_date|crmDate}\n
\n
\n

{ts 1=$domain.phone 2=$domain.email}Please contact us at %1 or send email to %2 if you have questions.{/ts}

\n
\n
\n\n\n\n',1,721,1,0,NULL),(30,'Events - Registration Cancellation Notice','{ts 1=$event.event_title}Event Registration Cancelled for %1{/ts}\n','{ts 1=$contact.display_name}Dear %1{/ts},\n\n{ts}Your Event Registration has been cancelled.{/ts}\n\n\n===========================================================\n{ts}Event Information and Location{/ts}\n\n===========================================================\n{$event.event_title}\n{$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|date_format:\"%Y%m%d\" == $event.event_start_date|date_format:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|crmDate}{/if}{/if}\n\n{ts}Participant Role{/ts}: {$participant.role}\n\n{if $isShowLocation}\n{if $event.location.address.1.name}\n\n{$event.location.address.1.name}\n{/if}\n{if $event.location.address.1.street_address}{$event.location.address.1.street_address}\n{/if}\n{if $event.location.address.1.supplemental_address_1}{$event.location.address.1.supplemental_address_1}\n{/if}\n{if $event.location.address.1.supplemental_address_2}{$event.location.address.1.supplemental_address_2}\n{/if}\n{if $event.location.address.1.city}{$event.location.address.1.city} {$event.location.address.1.postal_code}{if $event.location.address.1.postal_code_suffix} - {$event.location.address.1.postal_code_suffix}{/if}\n{/if}\n\n{/if}{*End of isShowLocation condition*}\n\n{if $event.location.phone.1.phone || $event.location.email.1.email}\n\n{ts}Event Contacts:{/ts}\n{foreach from=$event.location.phone item=phone}\n{if $phone.phone}\n\n{if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}: {$phone.phone}{/if}\n{/foreach}\n{foreach from=$event.location.email item=eventEmail}\n{if $eventEmail.email}\n\n{ts}Email{/ts}: {$eventEmail.email}{/if}{/foreach}\n{/if}\n\n{capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n{ts}Download iCalendar File{/ts}: {$icalFeed}\n{if $contact.email}\n\n===========================================================\n{ts}Registered Email{/ts}\n\n===========================================================\n{$contact.email}\n{/if}\n\n{if $register_date}\n{ts}Registration Date{/ts}: {$participant.register_date|crmDate}\n{/if}\n\n{ts 1=$domain.phone 2=$domain.email}Please contact us at %1 or send email to %2 if you have questions.{/ts}\n\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n \n \n \n\n \n \n \n\n
\n

{ts 1=$contact.display_name}Dear %1{/ts},

\n

{ts}Your Event Registration has been cancelled.{/ts}

\n
\n \n \n \n \n \n \n \n \n \n \n \n\n {if $isShowLocation}\n \n \n \n {/if}\n\n {if $event.location.phone.1.phone || $event.location.email.1.email}\n \n \n \n {foreach from=$event.location.phone item=phone}\n {if $phone.phone}\n \n \n \n \n {/if}\n {/foreach}\n {foreach from=$event.location.email item=eventEmail}\n {if $eventEmail.email}\n \n \n \n \n {/if}\n {/foreach}\n {/if}\n\n {capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n \n \n \n\n {if $contact.email}\n \n \n \n \n \n \n {/if}\n\n {if $register_date}\n \n \n \n \n {/if}\n\n
\n {ts}Event Information and Location{/ts}\n
\n {$event.event_title}
\n {$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|date_format:\"%Y%m%d\" == $event.event_start_date|date_format:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|crmDate}{/if}{/if}\n
\n {ts}Participant Role{/ts}:\n \n {$participant.role}\n
\n {if $event.location.address.1.name}\n {$event.location.address.1.name}
\n {/if}\n {if $event.location.address.1.street_address}\n {$event.location.address.1.street_address}
\n {/if}\n {if $event.location.address.1.supplemental_address_1}\n {$event.location.address.1.supplemental_address_1}
\n {/if}\n {if $event.location.address.1.supplemental_address_2}\n {$event.location.address.1.supplemental_address_2}
\n {/if}\n {if $event.location.address.1.city}\n {$event.location.address.1.city} {$event.location.address.1.postal_code}\n {if $event.location.address.1.postal_code_suffix}\n - {$event.location.address.1.postal_code_suffix}\n {/if}\n {/if}\n
\n {ts}Event Contacts:{/ts}\n
\n {if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}\n \n {$phone.phone}\n
\n {ts}Email{/ts}\n \n {$eventEmail.email}\n
\n {ts}Download iCalendar File{/ts}\n
\n {ts}Registered Email{/ts}\n
\n {$contact.email}\n
\n {ts}Registration Date{/ts}\n \n {$participant.register_date|crmDate}\n
\n
\n

{ts 1=$domain.phone 2=$domain.email}Please contact us at %1 or send email to %2 if you have questions.{/ts}

\n
\n
\n\n\n\n',1,721,0,1,NULL),(31,'Events - Registration Confirmation Invite','{ts 1=$event.event_title}Confirm your registration for %1{/ts}\n','{ts 1=$contact.display_name}Dear %1{/ts},\n{if !$isAdditional and $participant.id}\n\n===========================================================\n{ts}Confirm Your Registration{/ts}\n\n===========================================================\n{capture assign=confirmUrl}{crmURL p=\'civicrm/event/confirm\' q=\"reset=1&participantId=`$participant.id`&cs=`$checksumValue`\" a=true h=0 fe=1}{/capture}\nClick this link to go to a web page where you can confirm your registration online:\n{$confirmUrl}\n{/if}\n\n===========================================================\n{ts}Event Information and Location{/ts}\n\n===========================================================\n{$event.event_title}\n{$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|date_format:\"%Y%m%d\" == $event.event_start_date|date_format:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|crmDate}{/if}{/if}\n{if $conference_sessions}\n\n\n{ts}Your schedule:{/ts}\n{assign var=\'group_by_day\' value=\'NA\'}\n{foreach from=$conference_sessions item=session}\n{if $session.start_date|date_format:\"%Y/%m/%d\" != $group_by_day|date_format:\"%Y/%m/%d\"}\n{assign var=\'group_by_day\' value=$session.start_date}\n\n{$group_by_day|date_format:\"%m/%d/%Y\"}\n\n\n{/if}\n{$session.start_date|crmDate:0:1}{if $session.end_date}-{$session.end_date|crmDate:0:1}{/if} {$session.title}\n{if $session.location} {$session.location}{/if}\n{/foreach}\n{/if}\n\n\n{ts}Participant Role{/ts}: {$participant.role}\n\n{if $isShowLocation}\n{if $event.location.address.1.name}\n\n{$event.location.address.1.name}\n{/if}\n{if $event.location.address.1.street_address}{$event.location.address.1.street_address}\n{/if}\n{if $event.location.address.1.supplemental_address_1}{$event.location.address.1.supplemental_address_1}\n{/if}\n{if $event.location.address.1.supplemental_address_2}{$event.location.address.1.supplemental_address_2}\n{/if}\n{if $event.location.address.1.city}{$event.location.address.1.city} {$event.location.address.1.postal_code}{if $event.location.address.1.postal_code_suffix} - {$event.location.address.1.postal_code_suffix}{/if}\n{/if}\n\n{/if}{*End of isShowLocation condition*}\n\n{if $event.location.phone.1.phone || $event.location.email.1.email}\n\n{ts}Event Contacts:{/ts}\n{foreach from=$event.location.phone item=phone}\n{if $phone.phone}\n\n{if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}: {$phone.phone}{/if}\n{/foreach}\n{foreach from=$event.location.email item=eventEmail}\n{if $eventEmail.email}\n\n{ts}Email{/ts}: {$eventEmail.email}{/if}{/foreach}\n{/if}\n\n{capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n{ts}Download iCalendar File{/ts}: {$icalFeed}\n{if $contact.email}\n\n===========================================================\n{ts}Registered Email{/ts}\n\n===========================================================\n{$contact.email}\n{/if}\n\n{if $register_date}\n{ts}Registration Date{/ts}: {$participant.register_date|crmDate}\n{/if}\n\n{ts 1=$domain.phone 2=$domain.email}Please contact us at %1 or send email to %2 if you have questions.{/ts}\n\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n {if !$isAdditional and $participant.id}\n \n \n \n \n \n \n {/if}\n \n \n \n\n \n \n \n\n
\n

{ts 1=$contact.display_name}Dear %1{/ts},

\n
\n {ts}Confirm Your Registration{/ts}\n
\n {capture assign=confirmUrl}{crmURL p=\'civicrm/event/confirm\' q=\"reset=1&participantId=`$participant.id`&cs=`$checksumValue`\" a=true h=0 fe=1}{/capture}\n Go to a web page where you can confirm your registration online\n
\n \n \n \n \n \n \n \n {if $conference_sessions}\n \n \n \n \n \n \n {/if}\n \n \n \n \n\n {if $isShowLocation}\n \n \n \n {/if}\n\n {if $event.location.phone.1.phone || $event.location.email.1.email}\n \n \n \n {foreach from=$event.location.phone item=phone}\n {if $phone.phone}\n \n \n \n \n {/if}\n {/foreach}\n {foreach from=$event.location.email item=eventEmail}\n {if $eventEmail.email}\n \n \n \n \n {/if}\n {/foreach}\n {/if}\n\n {capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n \n \n \n\n {if $contact.email}\n \n \n \n \n \n \n {/if}\n\n {if $register_date}\n \n \n \n \n {/if}\n\n
\n {ts}Event Information and Location{/ts}\n
\n {$event.event_title}
\n {$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|date_format:\"%Y%m%d\" == $event.event_start_date|date_format:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|crmDate}{/if}{/if}\n
\n {ts}Your schedule:{/ts}\n
\n {assign var=\'group_by_day\' value=\'NA\'}\n {foreach from=$conference_sessions item=session}\n {if $session.start_date|date_format:\"%Y/%m/%d\" != $group_by_day|date_format:\"%Y/%m/%d\"}\n {assign var=\'group_by_day\' value=$session.start_date}\n {$group_by_day|date_format:\"%m/%d/%Y\"}
\n {/if}\n {$session.start_date|crmDate:0:1}{if $session.end_date}-{$session.end_date|crmDate:0:1}{/if} {$session.title}
\n {if $session.location}    {$session.location}
{/if}\n {/foreach}\n
\n {ts}Participant Role{/ts}:\n \n {$participant.role}\n
\n {if $event.location.address.1.name}\n {$event.location.address.1.name}
\n {/if}\n {if $event.location.address.1.street_address}\n {$event.location.address.1.street_address}
\n {/if}\n {if $event.location.address.1.supplemental_address_1}\n {$event.location.address.1.supplemental_address_1}
\n {/if}\n {if $event.location.address.1.supplemental_address_2}\n {$event.location.address.1.supplemental_address_2}
\n {/if}\n {if $event.location.address.1.city}\n {$event.location.address.1.city} {$event.location.address.1.postal_code}\n {if $event.location.address.1.postal_code_suffix}\n - {$event.location.address.1.postal_code_suffix}\n {/if}\n {/if}\n
\n {ts}Event Contacts:{/ts}\n
\n {if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}\n \n {$phone.phone}\n
\n {ts}Email{/ts}\n \n {$eventEmail.email}\n
\n {ts}Download iCalendar File{/ts}\n
\n {ts}Registered Email{/ts}\n
\n {$contact.email}\n
\n {ts}Registration Date{/ts}\n \n {$participant.register_date|crmDate}\n
\n
\n

{ts 1=$domain.phone 2=$domain.email}Please contact us at %1 or send email to %2 if you have questions.{/ts}

\n
\n
\n\n\n\n',1,722,1,0,NULL),(32,'Events - Registration Confirmation Invite','{ts 1=$event.event_title}Confirm your registration for %1{/ts}\n','{ts 1=$contact.display_name}Dear %1{/ts},\n{if !$isAdditional and $participant.id}\n\n===========================================================\n{ts}Confirm Your Registration{/ts}\n\n===========================================================\n{capture assign=confirmUrl}{crmURL p=\'civicrm/event/confirm\' q=\"reset=1&participantId=`$participant.id`&cs=`$checksumValue`\" a=true h=0 fe=1}{/capture}\nClick this link to go to a web page where you can confirm your registration online:\n{$confirmUrl}\n{/if}\n\n===========================================================\n{ts}Event Information and Location{/ts}\n\n===========================================================\n{$event.event_title}\n{$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|date_format:\"%Y%m%d\" == $event.event_start_date|date_format:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|crmDate}{/if}{/if}\n{if $conference_sessions}\n\n\n{ts}Your schedule:{/ts}\n{assign var=\'group_by_day\' value=\'NA\'}\n{foreach from=$conference_sessions item=session}\n{if $session.start_date|date_format:\"%Y/%m/%d\" != $group_by_day|date_format:\"%Y/%m/%d\"}\n{assign var=\'group_by_day\' value=$session.start_date}\n\n{$group_by_day|date_format:\"%m/%d/%Y\"}\n\n\n{/if}\n{$session.start_date|crmDate:0:1}{if $session.end_date}-{$session.end_date|crmDate:0:1}{/if} {$session.title}\n{if $session.location} {$session.location}{/if}\n{/foreach}\n{/if}\n\n\n{ts}Participant Role{/ts}: {$participant.role}\n\n{if $isShowLocation}\n{if $event.location.address.1.name}\n\n{$event.location.address.1.name}\n{/if}\n{if $event.location.address.1.street_address}{$event.location.address.1.street_address}\n{/if}\n{if $event.location.address.1.supplemental_address_1}{$event.location.address.1.supplemental_address_1}\n{/if}\n{if $event.location.address.1.supplemental_address_2}{$event.location.address.1.supplemental_address_2}\n{/if}\n{if $event.location.address.1.city}{$event.location.address.1.city} {$event.location.address.1.postal_code}{if $event.location.address.1.postal_code_suffix} - {$event.location.address.1.postal_code_suffix}{/if}\n{/if}\n\n{/if}{*End of isShowLocation condition*}\n\n{if $event.location.phone.1.phone || $event.location.email.1.email}\n\n{ts}Event Contacts:{/ts}\n{foreach from=$event.location.phone item=phone}\n{if $phone.phone}\n\n{if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}: {$phone.phone}{/if}\n{/foreach}\n{foreach from=$event.location.email item=eventEmail}\n{if $eventEmail.email}\n\n{ts}Email{/ts}: {$eventEmail.email}{/if}{/foreach}\n{/if}\n\n{capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n{ts}Download iCalendar File{/ts}: {$icalFeed}\n{if $contact.email}\n\n===========================================================\n{ts}Registered Email{/ts}\n\n===========================================================\n{$contact.email}\n{/if}\n\n{if $register_date}\n{ts}Registration Date{/ts}: {$participant.register_date|crmDate}\n{/if}\n\n{ts 1=$domain.phone 2=$domain.email}Please contact us at %1 or send email to %2 if you have questions.{/ts}\n\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n {if !$isAdditional and $participant.id}\n \n \n \n \n \n \n {/if}\n \n \n \n\n \n \n \n\n
\n

{ts 1=$contact.display_name}Dear %1{/ts},

\n
\n {ts}Confirm Your Registration{/ts}\n
\n {capture assign=confirmUrl}{crmURL p=\'civicrm/event/confirm\' q=\"reset=1&participantId=`$participant.id`&cs=`$checksumValue`\" a=true h=0 fe=1}{/capture}\n Go to a web page where you can confirm your registration online\n
\n \n \n \n \n \n \n \n {if $conference_sessions}\n \n \n \n \n \n \n {/if}\n \n \n \n \n\n {if $isShowLocation}\n \n \n \n {/if}\n\n {if $event.location.phone.1.phone || $event.location.email.1.email}\n \n \n \n {foreach from=$event.location.phone item=phone}\n {if $phone.phone}\n \n \n \n \n {/if}\n {/foreach}\n {foreach from=$event.location.email item=eventEmail}\n {if $eventEmail.email}\n \n \n \n \n {/if}\n {/foreach}\n {/if}\n\n {capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n \n \n \n\n {if $contact.email}\n \n \n \n \n \n \n {/if}\n\n {if $register_date}\n \n \n \n \n {/if}\n\n
\n {ts}Event Information and Location{/ts}\n
\n {$event.event_title}
\n {$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|date_format:\"%Y%m%d\" == $event.event_start_date|date_format:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|crmDate}{/if}{/if}\n
\n {ts}Your schedule:{/ts}\n
\n {assign var=\'group_by_day\' value=\'NA\'}\n {foreach from=$conference_sessions item=session}\n {if $session.start_date|date_format:\"%Y/%m/%d\" != $group_by_day|date_format:\"%Y/%m/%d\"}\n {assign var=\'group_by_day\' value=$session.start_date}\n {$group_by_day|date_format:\"%m/%d/%Y\"}
\n {/if}\n {$session.start_date|crmDate:0:1}{if $session.end_date}-{$session.end_date|crmDate:0:1}{/if} {$session.title}
\n {if $session.location}    {$session.location}
{/if}\n {/foreach}\n
\n {ts}Participant Role{/ts}:\n \n {$participant.role}\n
\n {if $event.location.address.1.name}\n {$event.location.address.1.name}
\n {/if}\n {if $event.location.address.1.street_address}\n {$event.location.address.1.street_address}
\n {/if}\n {if $event.location.address.1.supplemental_address_1}\n {$event.location.address.1.supplemental_address_1}
\n {/if}\n {if $event.location.address.1.supplemental_address_2}\n {$event.location.address.1.supplemental_address_2}
\n {/if}\n {if $event.location.address.1.city}\n {$event.location.address.1.city} {$event.location.address.1.postal_code}\n {if $event.location.address.1.postal_code_suffix}\n - {$event.location.address.1.postal_code_suffix}\n {/if}\n {/if}\n
\n {ts}Event Contacts:{/ts}\n
\n {if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}\n \n {$phone.phone}\n
\n {ts}Email{/ts}\n \n {$eventEmail.email}\n
\n {ts}Download iCalendar File{/ts}\n
\n {ts}Registered Email{/ts}\n
\n {$contact.email}\n
\n {ts}Registration Date{/ts}\n \n {$participant.register_date|crmDate}\n
\n
\n

{ts 1=$domain.phone 2=$domain.email}Please contact us at %1 or send email to %2 if you have questions.{/ts}

\n
\n
\n\n\n\n',1,722,0,1,NULL),(33,'Events - Pending Registration Expiration Notice','{ts 1=$event.event_title}Event registration has expired for %1{/ts}\n','{ts 1=$contact.display_name}Dear %1{/ts},\n\n{ts 1=$event.event_title}Your pending event registration for %1 has expired\nbecause you did not confirm your registration.{/ts}\n\n\n{ts 1=$domain.phone 2=$domain.email}Please contact us at %1 or send email to %2 if you have questions\nor want to inquire about reinstating your registration for this event.{/ts}\n\n===========================================================\n{ts}Event Information and Location{/ts}\n\n===========================================================\n{$event.event_title}\n{$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|date_format:\"%Y%m%d\" == $event.event_start_date|date_format:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|crmDate}{/if}{/if}\n\n{ts}Participant Role{/ts}: {$participant.role}\n\n{if $isShowLocation}\n{if $event.location.address.1.name}\n\n{$event.location.address.1.name}\n{/if}\n{if $event.location.address.1.street_address}{$event.location.address.1.street_address}\n{/if}\n{if $event.location.address.1.supplemental_address_1}{$event.location.address.1.supplemental_address_1}\n{/if}\n{if $event.location.address.1.supplemental_address_2}{$event.location.address.1.supplemental_address_2}\n{/if}\n{if $event.location.address.1.city}{$event.location.address.1.city} {$event.location.address.1.postal_code}{if $event.location.address.1.postal_code_suffix} - {$event.location.address.1.postal_code_suffix}{/if}\n{/if}\n\n{/if}{*End of isShowLocation condition*}\n\n{if $event.location.phone.1.phone || $event.location.email.1.email}\n\n{ts}Event Contacts:{/ts}\n{foreach from=$event.location.phone item=phone}\n{if $phone.phone}\n\n{if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}: {$phone.phone}{/if}\n{/foreach}\n{foreach from=$event.location.email item=eventEmail}\n{if $eventEmail.email}\n\n{ts}Email{/ts}: {$eventEmail.email}{/if}{/foreach}\n{/if}\n\n{capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n{ts}Download iCalendar File{/ts}: {$icalFeed}\n{if $contact.email}\n\n===========================================================\n{ts}Registered Email{/ts}\n\n===========================================================\n{$contact.email}\n{/if}\n\n{if $register_date}\n{ts}Registration Date{/ts}: {$participant.register_date|crmDate}\n{/if}\n\n{ts 1=$domain.phone 2=$domain.email}Please contact us at %1 or send email to %2 if you have questions.{/ts}\n\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n \n \n \n\n \n \n \n\n
\n

{ts 1=$contact.display_name}Dear %1{/ts},

\n

{ts 1=$event.event_title}Your pending event registration for %1 has expired\nbecause you did not confirm your registration.{/ts}

\n

{ts 1=$domain.phone 2=$domain.email}Please contact us at %1 or send email to %2 if you have questions\nor want to inquire about reinstating your registration for this event.{/ts}

\n
\n \n \n \n \n \n \n \n \n \n \n \n\n {if $isShowLocation}\n \n \n \n {/if}\n\n {if $event.location.phone.1.phone || $event.location.email.1.email}\n \n \n \n {foreach from=$event.location.phone item=phone}\n {if $phone.phone}\n \n \n \n \n {/if}\n {/foreach}\n {foreach from=$event.location.email item=eventEmail}\n {if $eventEmail.email}\n \n \n \n \n {/if}\n {/foreach}\n {/if}\n\n {capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n \n \n \n\n {if $contact.email}\n \n \n \n \n \n \n {/if}\n\n {if $register_date}\n \n \n \n \n {/if}\n\n
\n {ts}Event Information and Location{/ts}\n
\n {$event.event_title}
\n {$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|date_format:\"%Y%m%d\" == $event.event_start_date|date_format:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|crmDate}{/if}{/if}\n
\n {ts}Participant Role{/ts}:\n \n {$participant.role}\n
\n {if $event.location.address.1.name}\n {$event.location.address.1.name}
\n {/if}\n {if $event.location.address.1.street_address}\n {$event.location.address.1.street_address}
\n {/if}\n {if $event.location.address.1.supplemental_address_1}\n {$event.location.address.1.supplemental_address_1}
\n {/if}\n {if $event.location.address.1.supplemental_address_2}\n {$event.location.address.1.supplemental_address_2}
\n {/if}\n {if $event.location.address.1.city}\n {$event.location.address.1.city} {$event.location.address.1.postal_code}\n {if $event.location.address.1.postal_code_suffix}\n - {$event.location.address.1.postal_code_suffix}\n {/if}\n {/if}\n
\n {ts}Event Contacts:{/ts}\n
\n {if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}\n \n {$phone.phone}\n
\n {ts}Email{/ts}\n \n {$eventEmail.email}\n
\n {ts}Download iCalendar File{/ts}\n
\n {ts}Registered Email{/ts}\n
\n {$contact.email}\n
\n {ts}Registration Date{/ts}\n \n {$participant.register_date|crmDate}\n
\n
\n

{ts 1=$domain.phone 2=$domain.email}Please contact us at %1 or send email to %2 if you have questions.{/ts}

\n
\n
\n\n\n\n',1,723,1,0,NULL),(34,'Events - Pending Registration Expiration Notice','{ts 1=$event.event_title}Event registration has expired for %1{/ts}\n','{ts 1=$contact.display_name}Dear %1{/ts},\n\n{ts 1=$event.event_title}Your pending event registration for %1 has expired\nbecause you did not confirm your registration.{/ts}\n\n\n{ts 1=$domain.phone 2=$domain.email}Please contact us at %1 or send email to %2 if you have questions\nor want to inquire about reinstating your registration for this event.{/ts}\n\n===========================================================\n{ts}Event Information and Location{/ts}\n\n===========================================================\n{$event.event_title}\n{$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|date_format:\"%Y%m%d\" == $event.event_start_date|date_format:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|crmDate}{/if}{/if}\n\n{ts}Participant Role{/ts}: {$participant.role}\n\n{if $isShowLocation}\n{if $event.location.address.1.name}\n\n{$event.location.address.1.name}\n{/if}\n{if $event.location.address.1.street_address}{$event.location.address.1.street_address}\n{/if}\n{if $event.location.address.1.supplemental_address_1}{$event.location.address.1.supplemental_address_1}\n{/if}\n{if $event.location.address.1.supplemental_address_2}{$event.location.address.1.supplemental_address_2}\n{/if}\n{if $event.location.address.1.city}{$event.location.address.1.city} {$event.location.address.1.postal_code}{if $event.location.address.1.postal_code_suffix} - {$event.location.address.1.postal_code_suffix}{/if}\n{/if}\n\n{/if}{*End of isShowLocation condition*}\n\n{if $event.location.phone.1.phone || $event.location.email.1.email}\n\n{ts}Event Contacts:{/ts}\n{foreach from=$event.location.phone item=phone}\n{if $phone.phone}\n\n{if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}: {$phone.phone}{/if}\n{/foreach}\n{foreach from=$event.location.email item=eventEmail}\n{if $eventEmail.email}\n\n{ts}Email{/ts}: {$eventEmail.email}{/if}{/foreach}\n{/if}\n\n{capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n{ts}Download iCalendar File{/ts}: {$icalFeed}\n{if $contact.email}\n\n===========================================================\n{ts}Registered Email{/ts}\n\n===========================================================\n{$contact.email}\n{/if}\n\n{if $register_date}\n{ts}Registration Date{/ts}: {$participant.register_date|crmDate}\n{/if}\n\n{ts 1=$domain.phone 2=$domain.email}Please contact us at %1 or send email to %2 if you have questions.{/ts}\n\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n \n \n \n\n \n \n \n\n
\n

{ts 1=$contact.display_name}Dear %1{/ts},

\n

{ts 1=$event.event_title}Your pending event registration for %1 has expired\nbecause you did not confirm your registration.{/ts}

\n

{ts 1=$domain.phone 2=$domain.email}Please contact us at %1 or send email to %2 if you have questions\nor want to inquire about reinstating your registration for this event.{/ts}

\n
\n \n \n \n \n \n \n \n \n \n \n \n\n {if $isShowLocation}\n \n \n \n {/if}\n\n {if $event.location.phone.1.phone || $event.location.email.1.email}\n \n \n \n {foreach from=$event.location.phone item=phone}\n {if $phone.phone}\n \n \n \n \n {/if}\n {/foreach}\n {foreach from=$event.location.email item=eventEmail}\n {if $eventEmail.email}\n \n \n \n \n {/if}\n {/foreach}\n {/if}\n\n {capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n \n \n \n\n {if $contact.email}\n \n \n \n \n \n \n {/if}\n\n {if $register_date}\n \n \n \n \n {/if}\n\n
\n {ts}Event Information and Location{/ts}\n
\n {$event.event_title}
\n {$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|date_format:\"%Y%m%d\" == $event.event_start_date|date_format:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|crmDate}{/if}{/if}\n
\n {ts}Participant Role{/ts}:\n \n {$participant.role}\n
\n {if $event.location.address.1.name}\n {$event.location.address.1.name}
\n {/if}\n {if $event.location.address.1.street_address}\n {$event.location.address.1.street_address}
\n {/if}\n {if $event.location.address.1.supplemental_address_1}\n {$event.location.address.1.supplemental_address_1}
\n {/if}\n {if $event.location.address.1.supplemental_address_2}\n {$event.location.address.1.supplemental_address_2}
\n {/if}\n {if $event.location.address.1.city}\n {$event.location.address.1.city} {$event.location.address.1.postal_code}\n {if $event.location.address.1.postal_code_suffix}\n - {$event.location.address.1.postal_code_suffix}\n {/if}\n {/if}\n
\n {ts}Event Contacts:{/ts}\n
\n {if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}\n \n {$phone.phone}\n
\n {ts}Email{/ts}\n \n {$eventEmail.email}\n
\n {ts}Download iCalendar File{/ts}\n
\n {ts}Registered Email{/ts}\n
\n {$contact.email}\n
\n {ts}Registration Date{/ts}\n \n {$participant.register_date|crmDate}\n
\n
\n

{ts 1=$domain.phone 2=$domain.email}Please contact us at %1 or send email to %2 if you have questions.{/ts}

\n
\n
\n\n\n\n',1,723,0,1,NULL),(35,'Tell-a-Friend Email','{ts 1=$senderContactName 2=$title}%1 wants you to know about %2{/ts}\n','{$senderMessage}\n\n{if $generalLink}{ts}For more information, visit:{/ts}\n>> {$generalLink}\n\n{/if}\n{if $contribute}{ts}To make a contribution, go to:{/ts}\n>> {$pageURL}\n\n{/if}\n{if $event}{ts}To find out more about this event, go to:{/ts}\n>> {$pageURL}\n{/if}\n\n\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n
\n

{$senderMessage}

\n {if $generalLink}\n

{ts}More information{/ts}

\n {/if}\n {if $contribute}\n

{ts}Make a contribution{/ts}

\n {/if}\n {if $event}\n

{ts}Find out more about this event{/ts}

\n {/if}\n
\n
\n\n\n\n',1,724,1,0,NULL),(36,'Tell-a-Friend Email','{ts 1=$senderContactName 2=$title}%1 wants you to know about %2{/ts}\n','{$senderMessage}\n\n{if $generalLink}{ts}For more information, visit:{/ts}\n>> {$generalLink}\n\n{/if}\n{if $contribute}{ts}To make a contribution, go to:{/ts}\n>> {$pageURL}\n\n{/if}\n{if $event}{ts}To find out more about this event, go to:{/ts}\n>> {$pageURL}\n{/if}\n\n\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n
\n

{$senderMessage}

\n {if $generalLink}\n

{ts}More information{/ts}

\n {/if}\n {if $contribute}\n

{ts}Make a contribution{/ts}

\n {/if}\n {if $event}\n

{ts}Find out more about this event{/ts}

\n {/if}\n
\n
\n\n\n\n',1,724,0,1,NULL),(37,'Memberships - Signup and Renewal Receipts (off-line)','{if $receiptType EQ \'membership signup\'}\n{ts}Membership Confirmation and Receipt{/ts}\n{elseif $receiptType EQ \'membership renewal\'}\n{ts}Membership Renewal Confirmation and Receipt{/ts}\n{/if}\n','{if $formValues.receipt_text_signup}\n{$formValues.receipt_text_signup}\n{elseif $formValues.receipt_text_renewal}\n{$formValues.receipt_text_renewal}\n{else}{ts}Thanks for your support.{/ts}{/if}\n\n{if ! $cancelled}{ts}Please print this receipt for your records.{/ts}\n\n\n{/if}\n{if !$lineItem}\n===========================================================\n{ts}Membership Information{/ts}\n\n===========================================================\n{ts}Membership Type{/ts}: {$membership_name}\n{/if}\n{if ! $cancelled}\n{if !$lineItem}\n{ts}Membership Start Date{/ts}: {$mem_start_date}\n{ts}Membership End Date{/ts}: {$mem_end_date}\n{/if}\n\n{if $formValues.total_amount}\n===========================================================\n{ts}Membership Fee{/ts}\n\n===========================================================\n{if $formValues.contributionType_name}\n{ts}Financial Type{/ts}: {$formValues.contributionType_name}\n{/if}\n{if $lineItem}\n{foreach from=$lineItem item=value key=priceset}\n{capture assign=ts_item}{ts}Item{/ts}{/capture}\n{capture assign=ts_total}{ts}Fee{/ts}{/capture}\n{capture assign=ts_start_date}{ts}Membership Start Date{/ts}{/capture}\n{capture assign=ts_end_date}{ts}Membership End Date{/ts}{/capture}\n{$ts_item|string_format:\"%-30s\"} {$ts_total|string_format:\"%10s\"} {$ts_start_date|string_format:\"%20s\"} {$ts_end_date|string_format:\"%20s\"}\n--------------------------------------------------------------------------------------------------\n\n{foreach from=$value item=line}\n{capture assign=ts_item}{if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description} {$line.description}{/if}{/capture}{$ts_item|truncate:30:\"...\"|string_format:\"%-30s\"} {$line.line_total|crmMoney|string_format:\"%10s\"} {$line.start_date|string_format:\"%20s\"} {$line.end_date|string_format:\"%20s\"}\n{/foreach}\n{/foreach}\n--------------------------------------------------------------------------------------------------\n{/if}\n{ts}Amount{/ts}: {$formValues.total_amount|crmMoney}\n{if $receive_date}\n{ts}Received Date{/ts}: {$receive_date|truncate:10:\'\'|crmDate}\n{/if}\n{if $formValues.paidBy}\n{ts}Paid By{/ts}: {$formValues.paidBy}\n{if $formValues.check_number}\n{ts}Check Number{/ts}: {$formValues.check_number}\n{/if}\n{/if}\n{/if}\n{/if}\n\n{if $isPrimary }\n{if $contributeMode ne \'notify\' and !$isAmountzero and !$is_pay_later }\n\n===========================================================\n{ts}Billing Name and Address{/ts}\n\n===========================================================\n{$billingName}\n{$address}\n{/if}\n\n{if $contributeMode eq \'direct\' and !$isAmountzero and !$is_pay_later}\n===========================================================\n{ts}Credit Card Information{/ts}\n\n===========================================================\n{$credit_card_type}\n{$credit_card_number}\n{ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n{/if}\n{/if}\n\n{if $customValues}\n===========================================================\n{ts}Membership Options{/ts}\n\n===========================================================\n{foreach from=$customValues item=value key=customName}\n {$customName} : {$value}\n{/foreach}\n{/if}\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n \n \n \n\n {if $isPrimary}\n \n \n \n {/if}\n\n {if $customValues}\n \n \n \n {/if}\n\n
\n {if $formValues.receipt_text_signup}\n

{$formValues.receipt_text_signup|htmlize}

\n {elseif $formValues.receipt_text_renewal}\n

{$formValues.receipt_text_renewal|htmlize}

\n {else}\n

{ts}Thanks for your support.{/ts}

\n {/if}\n {if ! $cancelled}\n

{ts}Please print this receipt for your records.{/ts}

\n {/if}\n
\n \n {if !$lineItem}\n \n \n \n \n \n \n \n {/if}\n {if ! $cancelled}\n {if !$lineItem}\n \n \n \n \n \n \n \n \n {/if}\n {if $formValues.total_amount}\n \n \n \n {if $formValues.contributionType_name}\n \n \n \n \n {/if}\n\n {if $lineItem}\n {foreach from=$lineItem item=value key=priceset}\n \n \n \n {/foreach}\n {/if}\n \n \n \n \n {if $receive_date}\n \n \n \n \n {/if}\n {if $formValues.paidBy}\n \n \n \n \n {if $formValues.check_number}\n \n \n \n \n {/if}\n {/if}\n {/if}\n {/if}\n
\n {ts}Membership Information{/ts}\n
\n {ts}Membership Type{/ts}\n \n {$membership_name}\n
\n {ts}Membership Start Date{/ts}\n \n {$mem_start_date}\n
\n {ts}Membership End Date{/ts}\n \n {$mem_end_date}\n
\n {ts}Membership Fee{/ts}\n
\n {ts}Financial Type{/ts}\n \n {$formValues.contributionType_name}\n
\n {* FIXME: style this table so that it looks like the text version (justification, etc.) *}\n \n \n \n \n \n \n {foreach from=$value item=line}\n \n \n \n \n \n \n {/foreach}\n
{ts}Item{/ts}{ts}Fee{/ts}{ts}Membership Start Date{/ts}{ts}Membership End Date{/ts}
\n {if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description}
{$line.description|truncate:30:\"...\"}
{/if}\n
\n {$line.line_total|crmMoney}\n \n {$line.start_date}\n \n {$line.end_date}\n
\n
\n {ts}Amount{/ts}\n \n {$formValues.total_amount|crmMoney}\n
\n {ts}Received Date{/ts}\n \n {$receive_date|truncate:10:\'\'|crmDate}\n
\n {ts}Paid By{/ts}\n \n {$formValues.paidBy}\n
\n {ts}Check Number{/ts}\n \n {$formValues.check_number}\n
\n
\n \n\n {if $contributeMode ne \'notify\' and !$isAmountzero and !$is_pay_later }\n \n \n \n \n \n \n {/if}\n\n {if $contributeMode eq \'direct\' and !$isAmountzero and !$is_pay_later}\n \n \n \n \n \n \n \n \n \n \n {/if}\n\n
\n {ts}Billing Name and Address{/ts}\n
\n {$billingName}
\n {$address}\n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}\n
\n {ts}Expires{/ts}\n \n {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n
\n
\n \n \n \n \n {foreach from=$customValues item=value key=customName}\n \n \n \n \n {/foreach}\n
\n {ts}Membership Options{/ts}\n
\n {$customName}\n \n {$value}\n
\n
\n
\n\n\n\n',1,725,1,0,NULL),(38,'Memberships - Signup and Renewal Receipts (off-line)','{if $receiptType EQ \'membership signup\'}\n{ts}Membership Confirmation and Receipt{/ts}\n{elseif $receiptType EQ \'membership renewal\'}\n{ts}Membership Renewal Confirmation and Receipt{/ts}\n{/if}\n','{if $formValues.receipt_text_signup}\n{$formValues.receipt_text_signup}\n{elseif $formValues.receipt_text_renewal}\n{$formValues.receipt_text_renewal}\n{else}{ts}Thanks for your support.{/ts}{/if}\n\n{if ! $cancelled}{ts}Please print this receipt for your records.{/ts}\n\n\n{/if}\n{if !$lineItem}\n===========================================================\n{ts}Membership Information{/ts}\n\n===========================================================\n{ts}Membership Type{/ts}: {$membership_name}\n{/if}\n{if ! $cancelled}\n{if !$lineItem}\n{ts}Membership Start Date{/ts}: {$mem_start_date}\n{ts}Membership End Date{/ts}: {$mem_end_date}\n{/if}\n\n{if $formValues.total_amount}\n===========================================================\n{ts}Membership Fee{/ts}\n\n===========================================================\n{if $formValues.contributionType_name}\n{ts}Financial Type{/ts}: {$formValues.contributionType_name}\n{/if}\n{if $lineItem}\n{foreach from=$lineItem item=value key=priceset}\n{capture assign=ts_item}{ts}Item{/ts}{/capture}\n{capture assign=ts_total}{ts}Fee{/ts}{/capture}\n{capture assign=ts_start_date}{ts}Membership Start Date{/ts}{/capture}\n{capture assign=ts_end_date}{ts}Membership End Date{/ts}{/capture}\n{$ts_item|string_format:\"%-30s\"} {$ts_total|string_format:\"%10s\"} {$ts_start_date|string_format:\"%20s\"} {$ts_end_date|string_format:\"%20s\"}\n--------------------------------------------------------------------------------------------------\n\n{foreach from=$value item=line}\n{capture assign=ts_item}{if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description} {$line.description}{/if}{/capture}{$ts_item|truncate:30:\"...\"|string_format:\"%-30s\"} {$line.line_total|crmMoney|string_format:\"%10s\"} {$line.start_date|string_format:\"%20s\"} {$line.end_date|string_format:\"%20s\"}\n{/foreach}\n{/foreach}\n--------------------------------------------------------------------------------------------------\n{/if}\n{ts}Amount{/ts}: {$formValues.total_amount|crmMoney}\n{if $receive_date}\n{ts}Received Date{/ts}: {$receive_date|truncate:10:\'\'|crmDate}\n{/if}\n{if $formValues.paidBy}\n{ts}Paid By{/ts}: {$formValues.paidBy}\n{if $formValues.check_number}\n{ts}Check Number{/ts}: {$formValues.check_number}\n{/if}\n{/if}\n{/if}\n{/if}\n\n{if $isPrimary }\n{if $contributeMode ne \'notify\' and !$isAmountzero and !$is_pay_later }\n\n===========================================================\n{ts}Billing Name and Address{/ts}\n\n===========================================================\n{$billingName}\n{$address}\n{/if}\n\n{if $contributeMode eq \'direct\' and !$isAmountzero and !$is_pay_later}\n===========================================================\n{ts}Credit Card Information{/ts}\n\n===========================================================\n{$credit_card_type}\n{$credit_card_number}\n{ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n{/if}\n{/if}\n\n{if $customValues}\n===========================================================\n{ts}Membership Options{/ts}\n\n===========================================================\n{foreach from=$customValues item=value key=customName}\n {$customName} : {$value}\n{/foreach}\n{/if}\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n \n \n \n\n {if $isPrimary}\n \n \n \n {/if}\n\n {if $customValues}\n \n \n \n {/if}\n\n
\n {if $formValues.receipt_text_signup}\n

{$formValues.receipt_text_signup|htmlize}

\n {elseif $formValues.receipt_text_renewal}\n

{$formValues.receipt_text_renewal|htmlize}

\n {else}\n

{ts}Thanks for your support.{/ts}

\n {/if}\n {if ! $cancelled}\n

{ts}Please print this receipt for your records.{/ts}

\n {/if}\n
\n \n {if !$lineItem}\n \n \n \n \n \n \n \n {/if}\n {if ! $cancelled}\n {if !$lineItem}\n \n \n \n \n \n \n \n \n {/if}\n {if $formValues.total_amount}\n \n \n \n {if $formValues.contributionType_name}\n \n \n \n \n {/if}\n\n {if $lineItem}\n {foreach from=$lineItem item=value key=priceset}\n \n \n \n {/foreach}\n {/if}\n \n \n \n \n {if $receive_date}\n \n \n \n \n {/if}\n {if $formValues.paidBy}\n \n \n \n \n {if $formValues.check_number}\n \n \n \n \n {/if}\n {/if}\n {/if}\n {/if}\n
\n {ts}Membership Information{/ts}\n
\n {ts}Membership Type{/ts}\n \n {$membership_name}\n
\n {ts}Membership Start Date{/ts}\n \n {$mem_start_date}\n
\n {ts}Membership End Date{/ts}\n \n {$mem_end_date}\n
\n {ts}Membership Fee{/ts}\n
\n {ts}Financial Type{/ts}\n \n {$formValues.contributionType_name}\n
\n {* FIXME: style this table so that it looks like the text version (justification, etc.) *}\n \n \n \n \n \n \n {foreach from=$value item=line}\n \n \n \n \n \n \n {/foreach}\n
{ts}Item{/ts}{ts}Fee{/ts}{ts}Membership Start Date{/ts}{ts}Membership End Date{/ts}
\n {if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description}
{$line.description|truncate:30:\"...\"}
{/if}\n
\n {$line.line_total|crmMoney}\n \n {$line.start_date}\n \n {$line.end_date}\n
\n
\n {ts}Amount{/ts}\n \n {$formValues.total_amount|crmMoney}\n
\n {ts}Received Date{/ts}\n \n {$receive_date|truncate:10:\'\'|crmDate}\n
\n {ts}Paid By{/ts}\n \n {$formValues.paidBy}\n
\n {ts}Check Number{/ts}\n \n {$formValues.check_number}\n
\n
\n \n\n {if $contributeMode ne \'notify\' and !$isAmountzero and !$is_pay_later }\n \n \n \n \n \n \n {/if}\n\n {if $contributeMode eq \'direct\' and !$isAmountzero and !$is_pay_later}\n \n \n \n \n \n \n \n \n \n \n {/if}\n\n
\n {ts}Billing Name and Address{/ts}\n
\n {$billingName}
\n {$address}\n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}\n
\n {ts}Expires{/ts}\n \n {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n
\n
\n \n \n \n \n {foreach from=$customValues item=value key=customName}\n \n \n \n \n {/foreach}\n
\n {ts}Membership Options{/ts}\n
\n {$customName}\n \n {$value}\n
\n
\n
\n\n\n\n',1,725,0,1,NULL),(39,'Memberships - Receipt (on-line)','{if $is_pay_later}{ts}Invoice{/ts}{else}{ts}Receipt{/ts}{/if} - {$title}\n','{if $receipt_text}\n{$receipt_text}\n{/if}\n{if $is_pay_later}\n\n===========================================================\n{$pay_later_receipt}\n===========================================================\n{else}\n\n{ts}Please print this receipt for your records.{/ts}\n{/if}\n\n{if $membership_assign && !$useForMember}\n===========================================================\n{ts}Membership Information{/ts}\n\n===========================================================\n{ts}Membership Type{/ts}: {$membership_name}\n{if $mem_start_date}{ts}Membership Start Date{/ts}: {$mem_start_date|crmDate}\n{/if}\n{if $mem_end_date}{ts}Membership End Date{/ts}: {$mem_end_date|crmDate}\n{/if}\n\n{/if}\n{if $amount}\n===========================================================\n{ts}Membership Fee{/ts}\n\n===========================================================\n{if !$useForMember && $membership_amount && $is_quick_config}\n{ts 1=$membership_name}%1 Membership{/ts}: {$membership_amount|crmMoney}\n{if $amount}\n{if ! $is_separate_payment }\n{ts}Contribution Amount{/ts}: {$amount|crmMoney}\n{else}\n{ts}Additional Contribution{/ts}: {$amount|crmMoney}\n{/if}\n{/if}\n-------------------------------------------\n{ts}Total{/ts}: {$amount+$membership_amount|crmMoney}\n{elseif !$useForMember && $lineItem and $priceSetID & !$is_quick_config}\n{foreach from=$lineItem item=value key=priceset}\n---------------------------------------------------------\n{capture assign=ts_item}{ts}Item{/ts}{/capture}\n{capture assign=ts_qty}{ts}Qty{/ts}{/capture}\n{capture assign=ts_each}{ts}Each{/ts}{/capture}\n{capture assign=ts_total}{ts}Total{/ts}{/capture}\n{$ts_item|string_format:\"%-30s\"} {$ts_qty|string_format:\"%5s\"} {$ts_each|string_format:\"%10s\"} {$ts_total|string_format:\"%10s\"}\n----------------------------------------------------------\n{foreach from=$value item=line}\n{$line.description|truncate:30:\"...\"|string_format:\"%-30s\"} {$line.qty|string_format:\"%5s\"} {$line.unit_price|crmMoney|string_format:\"%10s\"} {$line.line_total|crmMoney|string_format:\"%10s\"}\n{/foreach}\n{/foreach}\n\n{ts}Total Amount{/ts}: {$amount|crmMoney}\n{else}\n{if $useForMember && $lineItem && !$is_quick_config}\n{foreach from=$lineItem item=value key=priceset}\n{capture assign=ts_item}{ts}Item{/ts}{/capture}\n{capture assign=ts_total}{ts}Fee{/ts}{/capture}\n{capture assign=ts_start_date}{ts}Membership Start Date{/ts}{/capture}\n{capture assign=ts_end_date}{ts}Membership End Date{/ts}{/capture}\n{$ts_item|string_format:\"%-30s\"} {$ts_total|string_format:\"%10s\"} {$ts_start_date|string_format:\"%20s\"} {$ts_end_date|string_format:\"%20s\"}\n--------------------------------------------------------------------------------------------------\n\n{foreach from=$value item=line}\n{capture assign=ts_item}{if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description} {$line.description}{/if}{/capture}{$ts_item|truncate:30:\"...\"|string_format:\"%-30s\"} {$line.line_total|crmMoney|string_format:\"%10s\"} {$line.start_date|string_format:\"%20s\"} {$line.end_date|string_format:\"%20s\"}\n{/foreach}\n{/foreach}\n--------------------------------------------------------------------------------------------------\n{/if}\n{ts}Amount{/ts}: {$amount|crmMoney} {if $amount_level } - {$amount_level} {/if}\n{/if}\n{elseif $membership_amount}\n===========================================================\n{ts}Membership Fee{/ts}\n\n===========================================================\n{ts 1=$membership_name}%1 Membership{/ts}: {$membership_amount|crmMoney}\n{/if}\n\n{if $receive_date}\n\n{ts}Date{/ts}: {$receive_date|crmDate}\n{/if}\n{if $is_monetary and $trxn_id}\n{ts}Transaction #{/ts}: {$trxn_id}\n\n{/if}\n{if $membership_trx_id}\n{ts}Membership Transaction #{/ts}: {$membership_trx_id}\n\n{/if}\n{if $is_recur}\n{if $contributeMode eq \'notify\' or $contributeMode eq \'directIPN\'}\n{ts 1=$cancelSubscriptionUrl}This membership will be renewed automatically. You can cancel the auto-renewal option by visiting this web page: %1.{/ts}\n\n{ts 1=$updateSubscriptionBillingUrl}You can update billing details for this automatically renewed membership by visiting this web page.{/ts}\n{/if}\n{/if}\n\n{if $honor_block_is_active }\n===========================================================\n{$soft_credit_type}\n===========================================================\n{foreach from=$honoreeProfile item=value key=label}\n{$label}: {$value}\n{/foreach}\n\n{/if}\n{if $pcpBlock}\n===========================================================\n{ts}Personal Campaign Page{/ts}\n\n===========================================================\n{ts}Display In Honor Roll{/ts}: {if $pcp_display_in_roll}{ts}Yes{/ts}{else}{ts}No{/ts}{/if}\n\n{if $pcp_roll_nickname}{ts}Nickname{/ts}: {$pcp_roll_nickname}{/if}\n\n{if $pcp_personal_note}{ts}Personal Note{/ts}: {$pcp_personal_note}{/if}\n\n{/if}\n{if $onBehalfProfile}\n===========================================================\n{ts}On Behalf Of{/ts}\n\n===========================================================\n{foreach from=$onBehalfProfile item=onBehalfValue key=onBehalfName}\n{$onBehalfName}: {$onBehalfValue}\n{/foreach}\n{/if}\n\n{if !( $contributeMode eq \'notify\' OR $contributeMode eq \'directIPN\' ) and $is_monetary}\n{if $is_pay_later}\n===========================================================\n{ts}Registered Email{/ts}\n\n===========================================================\n{$email}\n{elseif $amount GT 0 OR $membership_amount GT 0 }\n===========================================================\n{ts}Billing Name and Address{/ts}\n\n===========================================================\n{$billingName}\n{$address}\n\n{$email}\n{/if} {* End ! is_pay_later condition. *}\n{/if}\n{if $contributeMode eq \'direct\' AND !$is_pay_later AND ( $amount GT 0 OR $membership_amount GT 0 ) }\n\n===========================================================\n{ts}Credit Card Information{/ts}\n\n===========================================================\n{$credit_card_type}\n{$credit_card_number}\n{ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n{/if}\n\n{if $selectPremium }\n===========================================================\n{ts}Premium Information{/ts}\n\n===========================================================\n{$product_name}\n{if $option}\n{ts}Option{/ts}: {$option}\n{/if}\n{if $sku}\n{ts}SKU{/ts}: {$sku}\n{/if}\n{if $start_date}\n{ts}Start Date{/ts}: {$start_date|crmDate}\n{/if}\n{if $end_date}\n{ts}End Date{/ts}: {$end_date|crmDate}\n{/if}\n{if $contact_email OR $contact_phone}\n\n{ts}For information about this premium, contact:{/ts}\n\n{if $contact_email}\n {$contact_email}\n{/if}\n{if $contact_phone}\n {$contact_phone}\n{/if}\n{/if}\n{if $is_deductible AND $price}\n\n{ts 1=$price|crmMoney}The value of this premium is %1. This may affect the amount of the tax deduction you can claim. Consult your tax advisor for more information.{/ts}{/if}\n{/if}\n\n{if $customPre}\n===========================================================\n{$customPre_grouptitle}\n\n===========================================================\n{foreach from=$customPre item=customValue key=customName}\n{if ( $trackingFields and ! in_array( $customName, $trackingFields ) ) or ! $trackingFields}\n {$customName}: {$customValue}\n{/if}\n{/foreach}\n{/if}\n\n\n{if $customPost}\n===========================================================\n{$customPost_grouptitle}\n\n===========================================================\n{foreach from=$customPost item=customValue key=customName}\n{if ( $trackingFields and ! in_array( $customName, $trackingFields ) ) or ! $trackingFields}\n {$customName}: {$customValue}\n{/if}\n{/foreach}\n{/if}\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n
\n\n {if $receipt_text}\n

{$receipt_text|htmlize}

\n {/if}\n\n {if $is_pay_later}\n

{$pay_later_receipt}

{* FIXME: this might be text rather than HTML *}\n {else}\n

{ts}Please print this confirmation for your records.{/ts}

\n {/if}\n\n
\n \n\n {if $membership_assign && !$useForMember}\n \n \n \n \n \n \n \n {if $mem_start_date}\n \n \n \n \n {/if}\n {if $mem_end_date}\n \n \n \n \n {/if}\n {/if}\n\n\n {if $amount}\n \n \n \n\n {if !$useForMember and $membership_amount and $is_quick_config}\n\n \n \n \n \n {if $amount}\n {if ! $is_separate_payment }\n \n \n \n \n {else}\n \n \n \n \n {/if}\n {/if}\n \n \n \n \n\n {elseif !$useForMember && $lineItem and $priceSetID and !$is_quick_config}\n\n {foreach from=$lineItem item=value key=priceset}\n \n \n \n {/foreach}\n \n \n \n \n\n {else}\n {if $useForMember && $lineItem and !$is_quick_config}\n {foreach from=$lineItem item=value key=priceset}\n \n \n \n {/foreach}\n {/if}\n \n \n \n \n\n {/if}\n\n\n {elseif $membership_amount}\n\n\n \n \n \n \n \n \n \n\n\n {/if}\n\n {if $receive_date}\n \n \n \n \n {/if}\n\n {if $is_monetary and $trxn_id}\n \n \n \n \n {/if}\n\n {if $membership_trx_id}\n \n \n \n \n {/if}\n {if $is_recur}\n {if $contributeMode eq \'notify\' or $contributeMode eq \'directIPN\'}\n \n \n \n \n \n \n {/if}\n {/if}\n\n {if $honor_block_is_active}\n \n \n \n {foreach from=$honoreeProfile item=value key=label}\n \n \n \n \n {/foreach}\n {/if}\n\n {if $pcpBlock}\n \n \n \n \n \n \n \n {if $pcp_roll_nickname}\n \n \n \n \n {/if}\n {if $pcp_personal_note}\n \n \n \n \n {/if}\n {/if}\n\n {if $onBehalfProfile}\n \n \n \n {foreach from=$onBehalfProfile item=onBehalfValue key=onBehalfName}\n \n \n \n \n {/foreach}\n {/if}\n\n {if ! ($contributeMode eq \'notify\' OR $contributeMode eq \'directIPN\') and $is_monetary}\n {if $is_pay_later}\n \n \n \n \n \n \n {elseif $amount GT 0 OR $membership_amount GT 0}\n \n \n \n \n \n \n {/if}\n {/if}\n\n {if $contributeMode eq \'direct\' AND !$is_pay_later AND ($amount GT 0 OR $membership_amount GT 0)}\n \n \n \n \n \n \n {/if}\n\n {if $selectPremium}\n \n \n \n \n \n \n {if $option}\n \n \n \n \n {/if}\n {if $sku}\n \n \n \n \n {/if}\n {if $start_date}\n \n \n \n \n {/if}\n {if $end_date}\n \n \n \n \n {/if}\n {if $contact_email OR $contact_phone}\n \n \n \n {/if}\n {if $is_deductible AND $price}\n \n \n \n {/if}\n {/if}\n\n {if $customPre}\n \n \n \n {foreach from=$customPre item=customValue key=customName}\n {if ($trackingFields and ! in_array($customName, $trackingFields)) or ! $trackingFields}\n \n \n \n \n {/if}\n {/foreach}\n {/if}\n\n {if $customPost}\n \n \n \n {foreach from=$customPost item=customValue key=customName}\n {if ($trackingFields and ! in_array($customName, $trackingFields)) or ! $trackingFields}\n \n \n \n \n {/if}\n {/foreach}\n {/if}\n\n
\n {ts}Membership Information{/ts}\n
\n {ts}Membership Type{/ts}\n \n {$membership_name}\n
\n {ts}Membership Start Date{/ts}\n \n {$mem_start_date|crmDate}\n
\n {ts}Membership End Date{/ts}\n \n {$mem_end_date|crmDate}\n
\n {ts}Membership Fee{/ts}\n
\n {ts 1=$membership_name}%1 Membership{/ts}\n \n {$membership_amount|crmMoney}\n
\n {ts}Contribution Amount{/ts}\n \n {$amount|crmMoney}\n
\n {ts}Additional Contribution{/ts}\n \n {$amount|crmMoney}\n
\n {ts}Total{/ts}\n \n {$amount+$membership_amount|crmMoney}\n
\n {* FIXME: style this table so that it looks like the text version (justification, etc.) *}\n \n \n \n \n \n \n {foreach from=$value item=line}\n \n \n \n \n \n \n {/foreach}\n
{ts}Item{/ts}{ts}Qty{/ts}{ts}Each{/ts}{ts}Total{/ts}
\n {$line.description|truncate:30:\"...\"}\n \n {$line.qty}\n \n {$line.unit_price|crmMoney}\n \n {$line.line_total|crmMoney}\n
\n
\n {ts}Total Amount{/ts}\n \n {$amount|crmMoney}\n
\n {* FIXME: style this table so that it looks like the text version (justification, etc.) *}\n \n \n \n \n \n \n {foreach from=$value item=line}\n \n \n \n \n \n \n {/foreach}\n
{ts}Item{/ts}{ts}Fee{/ts}{ts}Membership Start Date{/ts}{ts}Membership End Date{/ts}
\n {if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description}
{$line.description|truncate:30:\"...\"}
{/if}\n
\n {$line.line_total|crmMoney}\n \n {$line.start_date}\n \n {$line.end_date}\n
\n
\n {ts}Amount{/ts}\n \n {$amount|crmMoney} {if $amount_level} - {$amount_level}{/if}\n
\n {ts}Membership Fee{/ts}\n
\n {ts 1=$membership_name}%1 Membership{/ts}\n \n {$membership_amount|crmMoney}\n
\n {ts}Date{/ts}\n \n {$receive_date|crmDate}\n
\n {ts}Transaction #{/ts}\n \n {$trxn_id}\n
\n {ts}Membership Transaction #{/ts}\n \n {$membership_trx_id}\n
\n {ts 1=$cancelSubscriptionUrl}This membership will be renewed automatically. You can cancel the auto-renewal option by visiting this web page.{/ts}\n
\n {ts 1=$updateSubscriptionBillingUrl}You can update billing details for this automatically renewed membership by visiting this web page.{/ts}\n
\n {$soft_credit_type}\n
\n {$label}\n \n {$value}\n
\n {ts}Personal Campaign Page{/ts}\n
\n {ts}Display In Honor Roll{/ts}\n \n {if $pcp_display_in_roll}{ts}Yes{/ts}{else}{ts}No{/ts}{/if}\n
\n {ts}Nickname{/ts}\n \n {$pcp_roll_nickname}\n
\n {ts}Personal Note{/ts}\n \n {$pcp_personal_note}\n
\n {$onBehalfProfile_grouptitle}\n
\n {$onBehalfName}\n \n {$onBehalfValue}\n
\n {ts}Registered Email{/ts}\n
\n {$email}\n
\n {ts}Billing Name and Address{/ts}\n
\n {$billingName}
\n {$address|nl2br}
\n {$email}\n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}
\n {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}
\n
\n {ts}Premium Information{/ts}\n
\n {$product_name}\n
\n {ts}Option{/ts}\n \n {$option}\n
\n {ts}SKU{/ts}\n \n {$sku}\n
\n {ts}Start Date{/ts}\n \n {$start_date|crmDate}\n
\n {ts}End Date{/ts}\n \n {$end_date|crmDate}\n
\n

{ts}For information about this premium, contact:{/ts}

\n {if $contact_email}\n

{$contact_email}

\n {/if}\n {if $contact_phone}\n

{$contact_phone}

\n {/if}\n
\n

{ts 1=$price|crmMoney}The value of this premium is %1. This may affect the amount of the tax deduction you can claim. Consult your tax advisor for more information.{/ts}

\n
\n {$customPre_grouptitle}\n
\n {$customName}\n \n {$customValue}\n
\n {$customPost_grouptitle}\n
\n {$customName}\n \n {$customValue}\n
\n
\n\n\n\n',1,726,1,0,NULL),(40,'Memberships - Receipt (on-line)','{if $is_pay_later}{ts}Invoice{/ts}{else}{ts}Receipt{/ts}{/if} - {$title}\n','{if $receipt_text}\n{$receipt_text}\n{/if}\n{if $is_pay_later}\n\n===========================================================\n{$pay_later_receipt}\n===========================================================\n{else}\n\n{ts}Please print this receipt for your records.{/ts}\n{/if}\n\n{if $membership_assign && !$useForMember}\n===========================================================\n{ts}Membership Information{/ts}\n\n===========================================================\n{ts}Membership Type{/ts}: {$membership_name}\n{if $mem_start_date}{ts}Membership Start Date{/ts}: {$mem_start_date|crmDate}\n{/if}\n{if $mem_end_date}{ts}Membership End Date{/ts}: {$mem_end_date|crmDate}\n{/if}\n\n{/if}\n{if $amount}\n===========================================================\n{ts}Membership Fee{/ts}\n\n===========================================================\n{if !$useForMember && $membership_amount && $is_quick_config}\n{ts 1=$membership_name}%1 Membership{/ts}: {$membership_amount|crmMoney}\n{if $amount}\n{if ! $is_separate_payment }\n{ts}Contribution Amount{/ts}: {$amount|crmMoney}\n{else}\n{ts}Additional Contribution{/ts}: {$amount|crmMoney}\n{/if}\n{/if}\n-------------------------------------------\n{ts}Total{/ts}: {$amount+$membership_amount|crmMoney}\n{elseif !$useForMember && $lineItem and $priceSetID & !$is_quick_config}\n{foreach from=$lineItem item=value key=priceset}\n---------------------------------------------------------\n{capture assign=ts_item}{ts}Item{/ts}{/capture}\n{capture assign=ts_qty}{ts}Qty{/ts}{/capture}\n{capture assign=ts_each}{ts}Each{/ts}{/capture}\n{capture assign=ts_total}{ts}Total{/ts}{/capture}\n{$ts_item|string_format:\"%-30s\"} {$ts_qty|string_format:\"%5s\"} {$ts_each|string_format:\"%10s\"} {$ts_total|string_format:\"%10s\"}\n----------------------------------------------------------\n{foreach from=$value item=line}\n{$line.description|truncate:30:\"...\"|string_format:\"%-30s\"} {$line.qty|string_format:\"%5s\"} {$line.unit_price|crmMoney|string_format:\"%10s\"} {$line.line_total|crmMoney|string_format:\"%10s\"}\n{/foreach}\n{/foreach}\n\n{ts}Total Amount{/ts}: {$amount|crmMoney}\n{else}\n{if $useForMember && $lineItem && !$is_quick_config}\n{foreach from=$lineItem item=value key=priceset}\n{capture assign=ts_item}{ts}Item{/ts}{/capture}\n{capture assign=ts_total}{ts}Fee{/ts}{/capture}\n{capture assign=ts_start_date}{ts}Membership Start Date{/ts}{/capture}\n{capture assign=ts_end_date}{ts}Membership End Date{/ts}{/capture}\n{$ts_item|string_format:\"%-30s\"} {$ts_total|string_format:\"%10s\"} {$ts_start_date|string_format:\"%20s\"} {$ts_end_date|string_format:\"%20s\"}\n--------------------------------------------------------------------------------------------------\n\n{foreach from=$value item=line}\n{capture assign=ts_item}{if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description} {$line.description}{/if}{/capture}{$ts_item|truncate:30:\"...\"|string_format:\"%-30s\"} {$line.line_total|crmMoney|string_format:\"%10s\"} {$line.start_date|string_format:\"%20s\"} {$line.end_date|string_format:\"%20s\"}\n{/foreach}\n{/foreach}\n--------------------------------------------------------------------------------------------------\n{/if}\n{ts}Amount{/ts}: {$amount|crmMoney} {if $amount_level } - {$amount_level} {/if}\n{/if}\n{elseif $membership_amount}\n===========================================================\n{ts}Membership Fee{/ts}\n\n===========================================================\n{ts 1=$membership_name}%1 Membership{/ts}: {$membership_amount|crmMoney}\n{/if}\n\n{if $receive_date}\n\n{ts}Date{/ts}: {$receive_date|crmDate}\n{/if}\n{if $is_monetary and $trxn_id}\n{ts}Transaction #{/ts}: {$trxn_id}\n\n{/if}\n{if $membership_trx_id}\n{ts}Membership Transaction #{/ts}: {$membership_trx_id}\n\n{/if}\n{if $is_recur}\n{if $contributeMode eq \'notify\' or $contributeMode eq \'directIPN\'}\n{ts 1=$cancelSubscriptionUrl}This membership will be renewed automatically. You can cancel the auto-renewal option by visiting this web page: %1.{/ts}\n\n{ts 1=$updateSubscriptionBillingUrl}You can update billing details for this automatically renewed membership by visiting this web page.{/ts}\n{/if}\n{/if}\n\n{if $honor_block_is_active }\n===========================================================\n{$soft_credit_type}\n===========================================================\n{foreach from=$honoreeProfile item=value key=label}\n{$label}: {$value}\n{/foreach}\n\n{/if}\n{if $pcpBlock}\n===========================================================\n{ts}Personal Campaign Page{/ts}\n\n===========================================================\n{ts}Display In Honor Roll{/ts}: {if $pcp_display_in_roll}{ts}Yes{/ts}{else}{ts}No{/ts}{/if}\n\n{if $pcp_roll_nickname}{ts}Nickname{/ts}: {$pcp_roll_nickname}{/if}\n\n{if $pcp_personal_note}{ts}Personal Note{/ts}: {$pcp_personal_note}{/if}\n\n{/if}\n{if $onBehalfProfile}\n===========================================================\n{ts}On Behalf Of{/ts}\n\n===========================================================\n{foreach from=$onBehalfProfile item=onBehalfValue key=onBehalfName}\n{$onBehalfName}: {$onBehalfValue}\n{/foreach}\n{/if}\n\n{if !( $contributeMode eq \'notify\' OR $contributeMode eq \'directIPN\' ) and $is_monetary}\n{if $is_pay_later}\n===========================================================\n{ts}Registered Email{/ts}\n\n===========================================================\n{$email}\n{elseif $amount GT 0 OR $membership_amount GT 0 }\n===========================================================\n{ts}Billing Name and Address{/ts}\n\n===========================================================\n{$billingName}\n{$address}\n\n{$email}\n{/if} {* End ! is_pay_later condition. *}\n{/if}\n{if $contributeMode eq \'direct\' AND !$is_pay_later AND ( $amount GT 0 OR $membership_amount GT 0 ) }\n\n===========================================================\n{ts}Credit Card Information{/ts}\n\n===========================================================\n{$credit_card_type}\n{$credit_card_number}\n{ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n{/if}\n\n{if $selectPremium }\n===========================================================\n{ts}Premium Information{/ts}\n\n===========================================================\n{$product_name}\n{if $option}\n{ts}Option{/ts}: {$option}\n{/if}\n{if $sku}\n{ts}SKU{/ts}: {$sku}\n{/if}\n{if $start_date}\n{ts}Start Date{/ts}: {$start_date|crmDate}\n{/if}\n{if $end_date}\n{ts}End Date{/ts}: {$end_date|crmDate}\n{/if}\n{if $contact_email OR $contact_phone}\n\n{ts}For information about this premium, contact:{/ts}\n\n{if $contact_email}\n {$contact_email}\n{/if}\n{if $contact_phone}\n {$contact_phone}\n{/if}\n{/if}\n{if $is_deductible AND $price}\n\n{ts 1=$price|crmMoney}The value of this premium is %1. This may affect the amount of the tax deduction you can claim. Consult your tax advisor for more information.{/ts}{/if}\n{/if}\n\n{if $customPre}\n===========================================================\n{$customPre_grouptitle}\n\n===========================================================\n{foreach from=$customPre item=customValue key=customName}\n{if ( $trackingFields and ! in_array( $customName, $trackingFields ) ) or ! $trackingFields}\n {$customName}: {$customValue}\n{/if}\n{/foreach}\n{/if}\n\n\n{if $customPost}\n===========================================================\n{$customPost_grouptitle}\n\n===========================================================\n{foreach from=$customPost item=customValue key=customName}\n{if ( $trackingFields and ! in_array( $customName, $trackingFields ) ) or ! $trackingFields}\n {$customName}: {$customValue}\n{/if}\n{/foreach}\n{/if}\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n
\n\n {if $receipt_text}\n

{$receipt_text|htmlize}

\n {/if}\n\n {if $is_pay_later}\n

{$pay_later_receipt}

{* FIXME: this might be text rather than HTML *}\n {else}\n

{ts}Please print this confirmation for your records.{/ts}

\n {/if}\n\n
\n \n\n {if $membership_assign && !$useForMember}\n \n \n \n \n \n \n \n {if $mem_start_date}\n \n \n \n \n {/if}\n {if $mem_end_date}\n \n \n \n \n {/if}\n {/if}\n\n\n {if $amount}\n \n \n \n\n {if !$useForMember and $membership_amount and $is_quick_config}\n\n \n \n \n \n {if $amount}\n {if ! $is_separate_payment }\n \n \n \n \n {else}\n \n \n \n \n {/if}\n {/if}\n \n \n \n \n\n {elseif !$useForMember && $lineItem and $priceSetID and !$is_quick_config}\n\n {foreach from=$lineItem item=value key=priceset}\n \n \n \n {/foreach}\n \n \n \n \n\n {else}\n {if $useForMember && $lineItem and !$is_quick_config}\n {foreach from=$lineItem item=value key=priceset}\n \n \n \n {/foreach}\n {/if}\n \n \n \n \n\n {/if}\n\n\n {elseif $membership_amount}\n\n\n \n \n \n \n \n \n \n\n\n {/if}\n\n {if $receive_date}\n \n \n \n \n {/if}\n\n {if $is_monetary and $trxn_id}\n \n \n \n \n {/if}\n\n {if $membership_trx_id}\n \n \n \n \n {/if}\n {if $is_recur}\n {if $contributeMode eq \'notify\' or $contributeMode eq \'directIPN\'}\n \n \n \n \n \n \n {/if}\n {/if}\n\n {if $honor_block_is_active}\n \n \n \n {foreach from=$honoreeProfile item=value key=label}\n \n \n \n \n {/foreach}\n {/if}\n\n {if $pcpBlock}\n \n \n \n \n \n \n \n {if $pcp_roll_nickname}\n \n \n \n \n {/if}\n {if $pcp_personal_note}\n \n \n \n \n {/if}\n {/if}\n\n {if $onBehalfProfile}\n \n \n \n {foreach from=$onBehalfProfile item=onBehalfValue key=onBehalfName}\n \n \n \n \n {/foreach}\n {/if}\n\n {if ! ($contributeMode eq \'notify\' OR $contributeMode eq \'directIPN\') and $is_monetary}\n {if $is_pay_later}\n \n \n \n \n \n \n {elseif $amount GT 0 OR $membership_amount GT 0}\n \n \n \n \n \n \n {/if}\n {/if}\n\n {if $contributeMode eq \'direct\' AND !$is_pay_later AND ($amount GT 0 OR $membership_amount GT 0)}\n \n \n \n \n \n \n {/if}\n\n {if $selectPremium}\n \n \n \n \n \n \n {if $option}\n \n \n \n \n {/if}\n {if $sku}\n \n \n \n \n {/if}\n {if $start_date}\n \n \n \n \n {/if}\n {if $end_date}\n \n \n \n \n {/if}\n {if $contact_email OR $contact_phone}\n \n \n \n {/if}\n {if $is_deductible AND $price}\n \n \n \n {/if}\n {/if}\n\n {if $customPre}\n \n \n \n {foreach from=$customPre item=customValue key=customName}\n {if ($trackingFields and ! in_array($customName, $trackingFields)) or ! $trackingFields}\n \n \n \n \n {/if}\n {/foreach}\n {/if}\n\n {if $customPost}\n \n \n \n {foreach from=$customPost item=customValue key=customName}\n {if ($trackingFields and ! in_array($customName, $trackingFields)) or ! $trackingFields}\n \n \n \n \n {/if}\n {/foreach}\n {/if}\n\n
\n {ts}Membership Information{/ts}\n
\n {ts}Membership Type{/ts}\n \n {$membership_name}\n
\n {ts}Membership Start Date{/ts}\n \n {$mem_start_date|crmDate}\n
\n {ts}Membership End Date{/ts}\n \n {$mem_end_date|crmDate}\n
\n {ts}Membership Fee{/ts}\n
\n {ts 1=$membership_name}%1 Membership{/ts}\n \n {$membership_amount|crmMoney}\n
\n {ts}Contribution Amount{/ts}\n \n {$amount|crmMoney}\n
\n {ts}Additional Contribution{/ts}\n \n {$amount|crmMoney}\n
\n {ts}Total{/ts}\n \n {$amount+$membership_amount|crmMoney}\n
\n {* FIXME: style this table so that it looks like the text version (justification, etc.) *}\n \n \n \n \n \n \n {foreach from=$value item=line}\n \n \n \n \n \n \n {/foreach}\n
{ts}Item{/ts}{ts}Qty{/ts}{ts}Each{/ts}{ts}Total{/ts}
\n {$line.description|truncate:30:\"...\"}\n \n {$line.qty}\n \n {$line.unit_price|crmMoney}\n \n {$line.line_total|crmMoney}\n
\n
\n {ts}Total Amount{/ts}\n \n {$amount|crmMoney}\n
\n {* FIXME: style this table so that it looks like the text version (justification, etc.) *}\n \n \n \n \n \n \n {foreach from=$value item=line}\n \n \n \n \n \n \n {/foreach}\n
{ts}Item{/ts}{ts}Fee{/ts}{ts}Membership Start Date{/ts}{ts}Membership End Date{/ts}
\n {if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description}
{$line.description|truncate:30:\"...\"}
{/if}\n
\n {$line.line_total|crmMoney}\n \n {$line.start_date}\n \n {$line.end_date}\n
\n
\n {ts}Amount{/ts}\n \n {$amount|crmMoney} {if $amount_level} - {$amount_level}{/if}\n
\n {ts}Membership Fee{/ts}\n
\n {ts 1=$membership_name}%1 Membership{/ts}\n \n {$membership_amount|crmMoney}\n
\n {ts}Date{/ts}\n \n {$receive_date|crmDate}\n
\n {ts}Transaction #{/ts}\n \n {$trxn_id}\n
\n {ts}Membership Transaction #{/ts}\n \n {$membership_trx_id}\n
\n {ts 1=$cancelSubscriptionUrl}This membership will be renewed automatically. You can cancel the auto-renewal option by visiting this web page.{/ts}\n
\n {ts 1=$updateSubscriptionBillingUrl}You can update billing details for this automatically renewed membership by visiting this web page.{/ts}\n
\n {$soft_credit_type}\n
\n {$label}\n \n {$value}\n
\n {ts}Personal Campaign Page{/ts}\n
\n {ts}Display In Honor Roll{/ts}\n \n {if $pcp_display_in_roll}{ts}Yes{/ts}{else}{ts}No{/ts}{/if}\n
\n {ts}Nickname{/ts}\n \n {$pcp_roll_nickname}\n
\n {ts}Personal Note{/ts}\n \n {$pcp_personal_note}\n
\n {$onBehalfProfile_grouptitle}\n
\n {$onBehalfName}\n \n {$onBehalfValue}\n
\n {ts}Registered Email{/ts}\n
\n {$email}\n
\n {ts}Billing Name and Address{/ts}\n
\n {$billingName}
\n {$address|nl2br}
\n {$email}\n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}
\n {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}
\n
\n {ts}Premium Information{/ts}\n
\n {$product_name}\n
\n {ts}Option{/ts}\n \n {$option}\n
\n {ts}SKU{/ts}\n \n {$sku}\n
\n {ts}Start Date{/ts}\n \n {$start_date|crmDate}\n
\n {ts}End Date{/ts}\n \n {$end_date|crmDate}\n
\n

{ts}For information about this premium, contact:{/ts}

\n {if $contact_email}\n

{$contact_email}

\n {/if}\n {if $contact_phone}\n

{$contact_phone}

\n {/if}\n
\n

{ts 1=$price|crmMoney}The value of this premium is %1. This may affect the amount of the tax deduction you can claim. Consult your tax advisor for more information.{/ts}

\n
\n {$customPre_grouptitle}\n
\n {$customName}\n \n {$customValue}\n
\n {$customPost_grouptitle}\n
\n {$customName}\n \n {$customValue}\n
\n
\n\n\n\n',1,726,0,1,NULL),(41,'Memberships - Auto-renew Cancellation Notification','{ts}Autorenew Membership Cancellation Notification{/ts}\n','{ts 1=$membershipType}The automatic renewal of your %1 membership has been cancelled as requested. This does not affect the status of your membership - you will receive a separate notification when your membership is up for renewal.{/ts}\n\n===========================================================\n{ts}Membership Information{/ts}\n\n===========================================================\n{ts}Membership Status{/ts}: {$membership_status}\n{if $mem_start_date}{ts}Membership Start Date{/ts}: {$mem_start_date|crmDate}\n{/if}\n{if $mem_end_date}{ts}Membership End Date{/ts}: {$mem_end_date|crmDate}\n{/if}\n\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n
\n\n

{ts 1=$membershipType}The automatic renewal of your %1 membership has been cancelled as requested. This does not affect the status of your membership - you will receive a separate notification when your membership is up for renewal.{/ts}

\n\n
\n \n\n \n \n \n \n \n \n \n {if $mem_start_date}\n \n \n \n \n {/if}\n {if $mem_end_date}\n \n \n \n \n {/if}\n\n
\n {ts}Membership Information{/ts}\n
\n {ts}Membership Status{/ts}\n \n {$membership_status}\n
\n {ts}Membership Start Date{/ts}\n \n {$mem_start_date|crmDate}\n
\n {ts}Membership End Date{/ts}\n \n {$mem_end_date|crmDate}\n
\n
\n\n\n\n',1,727,1,0,NULL),(42,'Memberships - Auto-renew Cancellation Notification','{ts}Autorenew Membership Cancellation Notification{/ts}\n','{ts 1=$membershipType}The automatic renewal of your %1 membership has been cancelled as requested. This does not affect the status of your membership - you will receive a separate notification when your membership is up for renewal.{/ts}\n\n===========================================================\n{ts}Membership Information{/ts}\n\n===========================================================\n{ts}Membership Status{/ts}: {$membership_status}\n{if $mem_start_date}{ts}Membership Start Date{/ts}: {$mem_start_date|crmDate}\n{/if}\n{if $mem_end_date}{ts}Membership End Date{/ts}: {$mem_end_date|crmDate}\n{/if}\n\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n
\n\n

{ts 1=$membershipType}The automatic renewal of your %1 membership has been cancelled as requested. This does not affect the status of your membership - you will receive a separate notification when your membership is up for renewal.{/ts}

\n\n
\n \n\n \n \n \n \n \n \n \n {if $mem_start_date}\n \n \n \n \n {/if}\n {if $mem_end_date}\n \n \n \n \n {/if}\n\n
\n {ts}Membership Information{/ts}\n
\n {ts}Membership Status{/ts}\n \n {$membership_status}\n
\n {ts}Membership Start Date{/ts}\n \n {$mem_start_date|crmDate}\n
\n {ts}Membership End Date{/ts}\n \n {$mem_end_date|crmDate}\n
\n
\n\n\n\n',1,727,0,1,NULL),(43,'Memberships - Auto-renew Billing Updates','{ts}Membership Autorenewal Billing Updates{/ts}','{ts 1=$contact.display_name}Dear %1{/ts},\n\n{ts 1=$membershipType}Billing details for your automatically renewed %1 membership have been updated.{/ts}\n\n===========================================================\n{ts}Billing Name and Address{/ts}\n\n===========================================================\n{$billingName}\n{$address}\n\n{$email}\n\n===========================================================\n{ts}Credit Card Information{/ts}\n\n===========================================================\n{$credit_card_type}\n{$credit_card_number}\n{ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n\n\n{ts 1=$receipt_from_email}If you have questions please contact us at %1{/ts}','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n \n
\n

{ts 1=$contact.display_name}Dear %1{/ts},

\n

{ts 1=$membershipType}Billing details for your automatically renewed %1 membership have been updated.{/ts}

\n
\n\n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n
\n {ts}Billing Name and Address{/ts}\n
\n {$billingName}
\n {$address|nl2br}
\n {$email}\n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}
\n {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}
\n
\n {ts 1=$receipt_from_email}If you have questions please contact us at %1{/ts}\n
\n
\n\n\n\n',1,728,1,0,NULL),(44,'Memberships - Auto-renew Billing Updates','{ts}Membership Autorenewal Billing Updates{/ts}','{ts 1=$contact.display_name}Dear %1{/ts},\n\n{ts 1=$membershipType}Billing details for your automatically renewed %1 membership have been updated.{/ts}\n\n===========================================================\n{ts}Billing Name and Address{/ts}\n\n===========================================================\n{$billingName}\n{$address}\n\n{$email}\n\n===========================================================\n{ts}Credit Card Information{/ts}\n\n===========================================================\n{$credit_card_type}\n{$credit_card_number}\n{ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n\n\n{ts 1=$receipt_from_email}If you have questions please contact us at %1{/ts}','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n \n
\n

{ts 1=$contact.display_name}Dear %1{/ts},

\n

{ts 1=$membershipType}Billing details for your automatically renewed %1 membership have been updated.{/ts}

\n
\n\n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n
\n {ts}Billing Name and Address{/ts}\n
\n {$billingName}
\n {$address|nl2br}
\n {$email}\n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}
\n {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}
\n
\n {ts 1=$receipt_from_email}If you have questions please contact us at %1{/ts}\n
\n
\n\n\n\n',1,728,0,1,NULL),(45,'Test-drive - Receipt Header','[TEST]\n','***********************************************************\n\n{ts}Test-drive Email / Receipt{/ts}\n\n{ts}This is a test-drive email. No live financial transaction has occurred.{/ts}\n\n***********************************************************\n','
\n \n \n \n \n
\n

{ts}Test-drive Email / Receipt{/ts}

\n

{ts}This is a test-drive email. No live financial transaction has occurred.{/ts}

\n
\n
\n',1,729,1,0,NULL),(46,'Test-drive - Receipt Header','[TEST]\n','***********************************************************\n\n{ts}Test-drive Email / Receipt{/ts}\n\n{ts}This is a test-drive email. No live financial transaction has occurred.{/ts}\n\n***********************************************************\n','
\n \n \n \n \n
\n

{ts}Test-drive Email / Receipt{/ts}

\n

{ts}This is a test-drive email. No live financial transaction has occurred.{/ts}

\n
\n
\n',1,729,0,1,NULL),(47,'Pledges - Acknowledgement','{ts}Thank you for your Pledge{/ts}\n','{ts 1=$contact.display_name}Dear %1{/ts},\n\n{ts}Thank you for your generous pledge. Please print this acknowledgment for your records.{/ts}\n\n===========================================================\n{ts}Pledge Information{/ts}\n\n===========================================================\n{ts}Pledge Received{/ts}: {$create_date|truncate:10:\'\'|crmDate}\n{ts}Total Pledge Amount{/ts}: {$total_pledge_amount|crmMoney:$currency}\n\n===========================================================\n{ts}Payment Schedule{/ts}\n\n===========================================================\n{ts 1=$scheduled_amount|crmMoney:$currency 2=$frequency_interval 3=$frequency_unit 4=$installments}%1 every %2 %3 for %4 installments.{/ts}\n\n{if $frequency_day}\n\n{ts 1=$frequency_day 2=$frequency_unit}Payments are due on day %1 of the %2.{/ts}\n{/if}\n\n{if $payments}\n{assign var=\"count\" value=\"1\"}\n{foreach from=$payments item=payment}\n\n{ts 1=$count}Payment %1{/ts}: {$payment.amount|crmMoney:$currency} {if $payment.status eq 1}{ts}paid{/ts} {$payment.receive_date|truncate:10:\'\'|crmDate}{else}{ts}due{/ts} {$payment.due_date|truncate:10:\'\'|crmDate}{/if}\n{assign var=\"count\" value=`$count+1`}\n{/foreach}\n{/if}\n\n\n{ts 1=$domain.phone 2=$domain.email}Please contact us at %1 or send email to %2 if you have questions\nor need to modify your payment schedule.{/ts}\n\n{if $customGroup}\n{foreach from=$customGroup item=value key=customName}\n===========================================================\n{$customName}\n===========================================================\n{foreach from=$value item=v key=n}\n{$n}: {$v}\n{/foreach}\n{/foreach}\n{/if}\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n \n \n \n\n
\n

{ts 1=$contact.display_name}dear %1{/ts},

\n

{ts}thank you for your generous pledge. please print this acknowledgment for your records.{/ts}

\n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n {if $payments}\n {assign var=\"count\" value=\"1\"}\n {foreach from=$payments item=payment}\n \n \n \n \n {assign var=\"count\" value=`$count+1`}\n {/foreach}\n {/if}\n\n \n \n \n\n {if $customGroup}\n {foreach from=$customGroup item=value key=customName}\n \n \n \n {foreach from=$value item=v key=n}\n \n \n \n \n {/foreach}\n {/foreach}\n {/if}\n\n
\n {ts}Pledge Information{/ts}\n
\n {ts}Pledge Received{/ts}\n \n {$create_date|truncate:10:\'\'|crmDate}\n
\n {ts}Total Pledge Amount{/ts}\n \n {$total_pledge_amount|crmMoney:$currency}\n
\n {ts}Payment Schedule{/ts}\n
\n

{ts 1=$scheduled_amount|crmMoney:$currency 2=$frequency_interval 3=$frequency_unit 4=$installments}%1 every %2 %3 for %4 installments.{/ts}

\n\n {if $frequency_day}\n

{ts 1=$frequency_day 2=$frequency_unit}Payments are due on day %1 of the %2.{/ts}

\n {/if}\n
\n {ts 1=$count}Payment %1{/ts}\n \n {$payment.amount|crmMoney:$currency} {if $payment.status eq 1}{ts}paid{/ts} {$payment.receive_date|truncate:10:\'\'|crmDate}{else}{ts}due{/ts} {$payment.due_date|truncate:10:\'\'|crmDate}{/if}\n
\n

{ts 1=$domain.phone 2=$domain.email}Please contact us at %1 or send email to %2 if you have questions\nor need to modify your payment schedule.{/ts}

\n
\n {$customName}\n
\n {$n}\n \n {$v}\n
\n
\n
\n\n\n\n',1,730,1,0,NULL),(48,'Pledges - Acknowledgement','{ts}Thank you for your Pledge{/ts}\n','{ts 1=$contact.display_name}Dear %1{/ts},\n\n{ts}Thank you for your generous pledge. Please print this acknowledgment for your records.{/ts}\n\n===========================================================\n{ts}Pledge Information{/ts}\n\n===========================================================\n{ts}Pledge Received{/ts}: {$create_date|truncate:10:\'\'|crmDate}\n{ts}Total Pledge Amount{/ts}: {$total_pledge_amount|crmMoney:$currency}\n\n===========================================================\n{ts}Payment Schedule{/ts}\n\n===========================================================\n{ts 1=$scheduled_amount|crmMoney:$currency 2=$frequency_interval 3=$frequency_unit 4=$installments}%1 every %2 %3 for %4 installments.{/ts}\n\n{if $frequency_day}\n\n{ts 1=$frequency_day 2=$frequency_unit}Payments are due on day %1 of the %2.{/ts}\n{/if}\n\n{if $payments}\n{assign var=\"count\" value=\"1\"}\n{foreach from=$payments item=payment}\n\n{ts 1=$count}Payment %1{/ts}: {$payment.amount|crmMoney:$currency} {if $payment.status eq 1}{ts}paid{/ts} {$payment.receive_date|truncate:10:\'\'|crmDate}{else}{ts}due{/ts} {$payment.due_date|truncate:10:\'\'|crmDate}{/if}\n{assign var=\"count\" value=`$count+1`}\n{/foreach}\n{/if}\n\n\n{ts 1=$domain.phone 2=$domain.email}Please contact us at %1 or send email to %2 if you have questions\nor need to modify your payment schedule.{/ts}\n\n{if $customGroup}\n{foreach from=$customGroup item=value key=customName}\n===========================================================\n{$customName}\n===========================================================\n{foreach from=$value item=v key=n}\n{$n}: {$v}\n{/foreach}\n{/foreach}\n{/if}\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n \n \n \n\n
\n

{ts 1=$contact.display_name}dear %1{/ts},

\n

{ts}thank you for your generous pledge. please print this acknowledgment for your records.{/ts}

\n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n {if $payments}\n {assign var=\"count\" value=\"1\"}\n {foreach from=$payments item=payment}\n \n \n \n \n {assign var=\"count\" value=`$count+1`}\n {/foreach}\n {/if}\n\n \n \n \n\n {if $customGroup}\n {foreach from=$customGroup item=value key=customName}\n \n \n \n {foreach from=$value item=v key=n}\n \n \n \n \n {/foreach}\n {/foreach}\n {/if}\n\n
\n {ts}Pledge Information{/ts}\n
\n {ts}Pledge Received{/ts}\n \n {$create_date|truncate:10:\'\'|crmDate}\n
\n {ts}Total Pledge Amount{/ts}\n \n {$total_pledge_amount|crmMoney:$currency}\n
\n {ts}Payment Schedule{/ts}\n
\n

{ts 1=$scheduled_amount|crmMoney:$currency 2=$frequency_interval 3=$frequency_unit 4=$installments}%1 every %2 %3 for %4 installments.{/ts}

\n\n {if $frequency_day}\n

{ts 1=$frequency_day 2=$frequency_unit}Payments are due on day %1 of the %2.{/ts}

\n {/if}\n
\n {ts 1=$count}Payment %1{/ts}\n \n {$payment.amount|crmMoney:$currency} {if $payment.status eq 1}{ts}paid{/ts} {$payment.receive_date|truncate:10:\'\'|crmDate}{else}{ts}due{/ts} {$payment.due_date|truncate:10:\'\'|crmDate}{/if}\n
\n

{ts 1=$domain.phone 2=$domain.email}Please contact us at %1 or send email to %2 if you have questions\nor need to modify your payment schedule.{/ts}

\n
\n {$customName}\n
\n {$n}\n \n {$v}\n
\n
\n
\n\n\n\n',1,730,0,1,NULL),(49,'Pledges - Payment Reminder','{ts}Pledge Payment Reminder{/ts}\n','{ts 1=$contact.display_name}Dear %1{/ts},\n\n{ts 1=$next_payment|truncate:10:\'\'|crmDate}This is a reminder that the next payment on your pledge is due on %1.{/ts}\n\n===========================================================\n{ts}Payment Due{/ts}\n\n===========================================================\n{ts}Amount Due{/ts}: {$amount_due|crmMoney:$currency}\n{ts}Due Date{/ts}: {$scheduled_payment_date|truncate:10:\'\'|crmDate}\n\n{if $contribution_page_id}\n{capture assign=contributionUrl}{crmURL p=\'civicrm/contribute/transact\' q=\"reset=1&id=`$contribution_page_id`&cid=`$contact.contact_id`&pledgeId=`$pledge_id`&cs=`$checksumValue`\" a=true h=0}{/capture}\nClick this link to go to a web page where you can make your payment online:\n{$contributionUrl}\n{else}\n{ts}Please mail your payment to{/ts}:\n{$domain.address}\n{/if}\n\n===========================================================\n{ts}Pledge Information{/ts}\n\n===========================================================\n{ts}Pledge Received{/ts}: {$create_date|truncate:10:\'\'|crmDate}\n{ts}Total Pledge Amount{/ts}: {$amount|crmMoney:$currency}\n{ts}Total Paid{/ts}: {$amount_paid|crmMoney:$currency}\n\n{ts 1=$domain.phone 2=$domain.email}Please contact us at %1 or send email to %2 if you have questions\nor need to modify your payment schedule.{/ts}\n\n\n{ts}Thank your for your generous support.{/ts}\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n \n \n \n\n \n \n \n\n \n \n \n\n \n \n \n\n
\n

{ts 1=$contact.display_name}Dear %1{/ts},

\n

{ts 1=$next_payment|truncate:10:\'\'|crmDate}This is a reminder that the next payment on your pledge is due on %1.{/ts}

\n
\n \n \n \n \n \n \n \n \n
\n {ts}Payment Due{/ts}\n
\n {ts}Amount Due{/ts}\n \n {$amount_due|crmMoney:$currency}\n
\n
\n {if $contribution_page_id}\n {capture assign=contributionUrl}{crmURL p=\'civicrm/contribute/transact\' q=\"reset=1&id=`$contribution_page_id`&cid=`$contact.contact_id`&pledgeId=`$pledge_id`&cs=`$checksumValue`\" a=true h=0}{/capture}\n

{ts}Go to a web page where you can make your payment online{/ts}

\n {else}\n

{ts}Please mail your payment to{/ts}: {$domain.address}

\n {/if}\n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n {ts}Pledge Information{/ts}\n
\n {ts}Pledge Received{/ts}\n \n {$create_date|truncate:10:\'\'|crmDate}\n
\n {ts}Total Pledge Amount{/ts}\n \n {$amount|crmMoney:$currency}\n
\n {ts}Total Paid{/ts}\n \n {$amount_paid|crmMoney:$currency}\n
\n
\n

{ts 1=$domain.phone 2=$domain.email}Please contact us at %1 or send email to %2 if you have questions\nor need to modify your payment schedule.{/ts}

\n

{ts}Thank your for your generous support.{/ts}

\n
\n
\n\n\n\n',1,731,1,0,NULL),(50,'Pledges - Payment Reminder','{ts}Pledge Payment Reminder{/ts}\n','{ts 1=$contact.display_name}Dear %1{/ts},\n\n{ts 1=$next_payment|truncate:10:\'\'|crmDate}This is a reminder that the next payment on your pledge is due on %1.{/ts}\n\n===========================================================\n{ts}Payment Due{/ts}\n\n===========================================================\n{ts}Amount Due{/ts}: {$amount_due|crmMoney:$currency}\n{ts}Due Date{/ts}: {$scheduled_payment_date|truncate:10:\'\'|crmDate}\n\n{if $contribution_page_id}\n{capture assign=contributionUrl}{crmURL p=\'civicrm/contribute/transact\' q=\"reset=1&id=`$contribution_page_id`&cid=`$contact.contact_id`&pledgeId=`$pledge_id`&cs=`$checksumValue`\" a=true h=0}{/capture}\nClick this link to go to a web page where you can make your payment online:\n{$contributionUrl}\n{else}\n{ts}Please mail your payment to{/ts}:\n{$domain.address}\n{/if}\n\n===========================================================\n{ts}Pledge Information{/ts}\n\n===========================================================\n{ts}Pledge Received{/ts}: {$create_date|truncate:10:\'\'|crmDate}\n{ts}Total Pledge Amount{/ts}: {$amount|crmMoney:$currency}\n{ts}Total Paid{/ts}: {$amount_paid|crmMoney:$currency}\n\n{ts 1=$domain.phone 2=$domain.email}Please contact us at %1 or send email to %2 if you have questions\nor need to modify your payment schedule.{/ts}\n\n\n{ts}Thank your for your generous support.{/ts}\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n \n \n \n\n \n \n \n\n \n \n \n\n \n \n \n\n
\n

{ts 1=$contact.display_name}Dear %1{/ts},

\n

{ts 1=$next_payment|truncate:10:\'\'|crmDate}This is a reminder that the next payment on your pledge is due on %1.{/ts}

\n
\n \n \n \n \n \n \n \n \n
\n {ts}Payment Due{/ts}\n
\n {ts}Amount Due{/ts}\n \n {$amount_due|crmMoney:$currency}\n
\n
\n {if $contribution_page_id}\n {capture assign=contributionUrl}{crmURL p=\'civicrm/contribute/transact\' q=\"reset=1&id=`$contribution_page_id`&cid=`$contact.contact_id`&pledgeId=`$pledge_id`&cs=`$checksumValue`\" a=true h=0}{/capture}\n

{ts}Go to a web page where you can make your payment online{/ts}

\n {else}\n

{ts}Please mail your payment to{/ts}: {$domain.address}

\n {/if}\n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n {ts}Pledge Information{/ts}\n
\n {ts}Pledge Received{/ts}\n \n {$create_date|truncate:10:\'\'|crmDate}\n
\n {ts}Total Pledge Amount{/ts}\n \n {$amount|crmMoney:$currency}\n
\n {ts}Total Paid{/ts}\n \n {$amount_paid|crmMoney:$currency}\n
\n
\n

{ts 1=$domain.phone 2=$domain.email}Please contact us at %1 or send email to %2 if you have questions\nor need to modify your payment schedule.{/ts}

\n

{ts}Thank your for your generous support.{/ts}

\n
\n
\n\n\n\n',1,731,0,1,NULL),(51,'Profiles - Admin Notification','{$grouptitle} {ts 1=$displayName}Submitted by %1{/ts}\n','{ts}Submitted For:{/ts} {$displayName}\n{ts}Date:{/ts} {$currentDate}\n{ts}Contact Summary:{/ts} {$contactLink}\n\n===========================================================\n{$grouptitle}\n\n===========================================================\n{foreach from=$values item=value key=valueName}\n{$valueName}: {$value}\n{/foreach}\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n\n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n\n \n \n \n\n {foreach from=$values item=value key=valueName}\n \n \n \n \n {/foreach}\n
\n {ts}Submitted For{/ts}\n \n {$displayName}\n
\n {ts}Date{/ts}\n \n {$currentDate}\n
\n {ts}Contact Summary{/ts}\n \n {$contactLink}\n
\n {$grouptitle}\n
\n {$valueName}\n \n {$value}\n
\n
\n
\n\n\n\n',1,732,1,0,NULL),(52,'Profiles - Admin Notification','{$grouptitle} {ts 1=$displayName}Submitted by %1{/ts}\n','{ts}Submitted For:{/ts} {$displayName}\n{ts}Date:{/ts} {$currentDate}\n{ts}Contact Summary:{/ts} {$contactLink}\n\n===========================================================\n{$grouptitle}\n\n===========================================================\n{foreach from=$values item=value key=valueName}\n{$valueName}: {$value}\n{/foreach}\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n\n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n\n \n \n \n\n {foreach from=$values item=value key=valueName}\n \n \n \n \n {/foreach}\n
\n {ts}Submitted For{/ts}\n \n {$displayName}\n
\n {ts}Date{/ts}\n \n {$currentDate}\n
\n {ts}Contact Summary{/ts}\n \n {$contactLink}\n
\n {$grouptitle}\n
\n {$valueName}\n \n {$value}\n
\n
\n
\n\n\n\n',1,732,0,1,NULL),(53,'Petition - signature added','Thank you for signing {$petition.title}','Thank you for signing {$petition.title}.\n','

Thank you for signing {$petition.title}.

\n\n{include file=\"CRM/Campaign/Page/Petition/SocialNetwork.tpl\" petition_id=$survey_id noscript=true email=true}\n',1,733,1,0,NULL),(54,'Petition - signature added','Thank you for signing {$petition.title}','Thank you for signing {$petition.title}.\n','

Thank you for signing {$petition.title}.

\n\n{include file=\"CRM/Campaign/Page/Petition/SocialNetwork.tpl\" petition_id=$survey_id noscript=true email=true}\n',1,733,0,1,NULL),(55,'Petition - need verification','Confirmation of signature needed for {$petition.title}\n','Thank you for signing {$petition.title}.\n\nIn order to complete your signature, we must confirm your e-mail.\nPlease do so by visiting the following email confirmation web page:\n\n{$petition.confirmUrlPlainText}\n\nIf you did not sign this petition, please ignore this message.\n','

Thank you for signing {$petition.title}.

\n\n

In order to complete your signature, we must confirm your e-mail.\n
\nPlease do so by visiting the following web page by clicking\non the link below or pasting the link into your browser.\n

\nEmail confirmation page: {$petition.confirmUrl}

\n\n

If you did not sign this petition, please ignore this message.

\n',1,734,1,0,NULL),(56,'Petition - need verification','Confirmation of signature needed for {$petition.title}\n','Thank you for signing {$petition.title}.\n\nIn order to complete your signature, we must confirm your e-mail.\nPlease do so by visiting the following email confirmation web page:\n\n{$petition.confirmUrlPlainText}\n\nIf you did not sign this petition, please ignore this message.\n','

Thank you for signing {$petition.title}.

\n\n

In order to complete your signature, we must confirm your e-mail.\n
\nPlease do so by visiting the following web page by clicking\non the link below or pasting the link into your browser.\n

\nEmail confirmation page: {$petition.confirmUrl}

\n\n

If you did not sign this petition, please ignore this message.

\n',1,734,0,1,NULL),(57,'Sample CiviMail Newsletter Template','Sample CiviMail Newsletter','','\n \n \n \n \n \n\n \n \n\n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \"Replace\n    \n Your Newsletter Title\n
\n
\n \n \n \n \n \n
\n \n Greetings {contact.display_name},\n

\n This is a sample template designed to help you get started creating and sending your own CiviMail messages. This template uses an HTML layout that is generally compatible with the wide variety of email clients that your recipients might be using (e.g. Gmail, Outlook, Yahoo, etc.).\n

You can select this \"Sample CiviMail Newsletter Template\" from the \"Use Template\" drop-down in Step 3 of creating a mailing, and customize it to your needs. Then check the \"Save as New Template\" box on the bottom the page to save your customized version for use in future mailings.\n

The logo you use must be uploaded to your server. Copy and paste the URL path to the logo into the <img src= tag in the HTML at the top. Click \"Source\" or the Image button if you are using the text editor.\n

\n Edit the color of the links and headers using the color button or by editing the HTML.\n

\n Your newsletter message and donation appeal can go here. Click the link button to create links - remember to use a fully qualified URL starting with http:// in all your links!\n

\n To use CiviMail:\n \n Sincerely,\n

\n Your Team\n

\n
\n
\n
\n \n \n \n \n \n \n \n \n
News and Events
\n \n Featured Events
\n Fundraising Dinner
\n Training Meeting
\n Board of Directors Annual Meeting
\n\n

\n Community Events
\n Bake Sale
\n Charity Auction
\n Art Exhibit
\n\n

\n Important Dates
\n Tuesday August 27
\n Wednesday September 8
\n Thursday September 29
\n Saturday October 1
\n Sunday October 20
\n
\n
\n
\n \n \n \n \n
\n \n Helpful Tips\n

\n Tokens
\n Click \"Insert Tokens\" to dynamically insert names, addresses, and other contact data of your recipients.\n

\n Plain Text Version
\n Some people refuse HTML emails altogether. We recommend sending a plain-text version of your important communications to accommodate them. Luckily, CiviCRM accommodates for this! Just click \"Plain Text\" and copy and paste in some text. Line breaks (carriage returns) and fully qualified URLs like http://www.example.com are all you get, no HTML here!\n

\n Play by the Rules
\n The address of the sender is required by the Can Spam Act law. This is an available token called domain.address. An unsubscribe or opt-out link is also required. There are several available tokens for this. {action.optOutUrl} creates a link for recipients to click if they want to opt out of receiving emails from your organization. {action.unsubscribeUrl} creates a link to unsubscribe from the specific mailing list used to send this message. Click on \"Insert Tokens\" to find these and look for tokens named \"Domain\" or \"Unsubscribe\". This sample template includes both required tokens at the bottom of the message. You can also configure a default Mailing Footer containing these tokens.\n

\n Composing Offline
\n If you prefer to compose an HTML email offline in your own text editor, you can upload this HTML content into CiviMail or simply click \"Source\" and then copy and paste the HTML in.\n

\n Images
\n Most email clients these days (Outlook, Gmail, etc) block image loading by default. This is to protect their users from annoying or harmful email. Not much we can do about this, so encourage recipients to add you to their contacts or \"whitelist\". Also use images sparingly, do not rely on images to convey vital information, and always use HTML \"alt\" tags which describe the image content.\n
\n
\n \n
\n Click here to unsubscribe from this mailing list.

\n Our mailing address is:
\n {domain.address}\n
',1,NULL,1,0,NULL); /*!40000 ALTER TABLE `civicrm_msg_template` ENABLE KEYS */; UNLOCK TABLES; @@ -959,7 +959,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',93,'Invite members for the Steve Prefontaine 10k dream run',1,'2013-07-23',NULL,'0'),(2,'civicrm_contact',80,'Get the registration done for NGO status',1,'2013-12-27',NULL,'0'),(3,'civicrm_contact',56,'Get the registration done for NGO status',1,'2014-01-04',NULL,'0'),(4,'civicrm_contact',65,'Chart out route map for next 10k run',1,'2013-11-27',NULL,'0'),(5,'civicrm_contact',45,'Arrange collection of funds from members',1,'2013-04-20',NULL,'0'),(6,'civicrm_contact',46,'Arrange collection of funds from members',1,'2013-07-25',NULL,'0'),(7,'civicrm_contact',136,'Send reminder for annual dinner',1,'2013-04-22',NULL,'0'),(8,'civicrm_contact',159,'Send newsletter for April 2005',1,'2013-05-23',NULL,'0'),(9,'civicrm_contact',122,'Arrange for cricket match with Sunil Gavaskar',1,'2013-01-26',NULL,'0'),(10,'civicrm_contact',121,'Arrange for cricket match with Sunil Gavaskar',1,'2013-05-22',NULL,'0'),(11,'civicrm_contact',168,'Send reminder for annual dinner',1,'2013-03-16',NULL,'0'),(12,'civicrm_contact',154,'Reminder screening of \"Black\" on next Friday',1,'2014-01-02',NULL,'0'),(13,'civicrm_contact',173,'Arrange collection of funds from members',1,'2013-11-28',NULL,'0'),(14,'civicrm_contact',31,'Invite members for the Steve Prefontaine 10k dream run',1,'2013-07-15',NULL,'0'),(15,'civicrm_contact',196,'Get the registration done for NGO status',1,'2013-11-15',NULL,'0'),(16,'civicrm_contact',201,'Contact the Commisioner of Charities',1,'2013-08-12',NULL,'0'),(17,'civicrm_contact',188,'Send reminder for annual dinner',1,'2013-06-04',NULL,'0'),(18,'civicrm_contact',11,'Arrange collection of funds from members',1,'2013-06-05',NULL,'0'),(19,'civicrm_contact',177,'Arrange for cricket match with Sunil Gavaskar',1,'2014-01-17',NULL,'0'),(20,'civicrm_contact',110,'Invite members for the Steve Prefontaine 10k dream run',1,'2013-05-03',NULL,'0'); +INSERT INTO `civicrm_note` (`id`, `entity_table`, `entity_id`, `note`, `contact_id`, `modified_date`, `subject`, `privacy`) VALUES (1,'civicrm_contact',150,'Connect for presentation',1,'2013-02-11',NULL,'0'),(2,'civicrm_contact',33,'Send reminder for annual dinner',1,'2013-06-23',NULL,'0'),(3,'civicrm_contact',143,'Arrange for cricket match with Sunil Gavaskar',1,'2013-09-05',NULL,'0'),(4,'civicrm_contact',135,'Get the registration done for NGO status',1,'2013-03-23',NULL,'0'),(5,'civicrm_contact',53,'Get the registration done for NGO status',1,'2014-01-18',NULL,'0'),(6,'civicrm_contact',109,'Send reminder for annual dinner',1,'2013-09-21',NULL,'0'),(7,'civicrm_contact',152,'Chart out route map for next 10k run',1,'2013-06-16',NULL,'0'),(8,'civicrm_contact',25,'Connect for presentation',1,'2013-04-21',NULL,'0'),(9,'civicrm_contact',109,'Reminder screening of \"Black\" on next Friday',1,'2013-09-21',NULL,'0'),(10,'civicrm_contact',14,'Arrange for cricket match with Sunil Gavaskar',1,'2013-07-27',NULL,'0'),(11,'civicrm_contact',173,'Get the registration done for NGO status',1,'2013-04-09',NULL,'0'),(12,'civicrm_contact',102,'Arrange collection of funds from members',1,'2013-07-30',NULL,'0'),(13,'civicrm_contact',119,'Arrange for cricket match with Sunil Gavaskar',1,'2013-02-01',NULL,'0'),(14,'civicrm_contact',14,'Arrange collection of funds from members',1,'2014-01-12',NULL,'0'),(15,'civicrm_contact',30,'Reminder screening of \"Black\" on next Friday',1,'2013-04-26',NULL,'0'),(16,'civicrm_contact',56,'Get the registration done for NGO status',1,'2013-11-24',NULL,'0'),(17,'civicrm_contact',123,'Arrange collection of funds from members',1,'2013-12-06',NULL,'0'),(18,'civicrm_contact',86,'Chart out route map for next 10k run',1,'2013-10-23',NULL,'0'),(19,'civicrm_contact',39,'Contact the Commisioner of Charities',1,'2013-08-08',NULL,'0'),(20,'civicrm_contact',123,'Send newsletter for April 2005',1,'2013-11-15',NULL,'0'); /*!40000 ALTER TABLE `civicrm_note` ENABLE KEYS */; UNLOCK TABLES; @@ -998,7 +998,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`) VALUES (1,41,1,1,'1','2009-01-21 00:00:00','Check','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(2,49,2,2,'2','2008-05-07 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(3,194,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),(4,68,1,4,'4','2008-10-21 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(5,51,2,1,'1','2008-01-10 00:00:00','Check','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(6,119,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),(7,8,1,3,'3','2009-07-21 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(8,58,2,4,'4','2009-03-07 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(9,142,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),(10,27,1,2,'2','2008-02-01 00:00:00','Check','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(11,53,2,3,'3','2009-01-10 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(12,188,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),(13,184,1,1,'2','2008-06-04 00:00:00','Credit Card','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(14,97,2,2,'3','2008-01-10 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(15,105,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),(16,94,1,4,'2','2009-01-21 00:00:00','Credit Card','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(17,150,2,2,'3','2008-01-10 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(18,36,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),(19,15,1,2,'1','2008-10-21 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(20,91,2,4,'1','2009-01-10 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(21,57,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),(22,108,1,2,'3','2009-10-21 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(23,19,2,4,'1','2008-01-10 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(24,25,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),(25,46,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),(26,85,1,1,'1','2009-01-21 00:00:00','Check','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(27,170,2,2,'2','2008-05-07 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(28,88,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),(29,121,1,4,'4','2009-12-13 00:00:00','Credit Card','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(30,2,2,1,'1','2009-12-14 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(31,160,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),(32,151,1,3,'3','2009-07-21 00:00:00','Check','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(33,30,2,4,'4','2009-03-07 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(34,44,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),(35,109,1,2,'2','2009-12-13 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(36,141,2,3,'3','2009-01-10 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(37,201,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),(38,73,1,1,'2','2009-12-13 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(39,131,2,2,'3','2008-01-10 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(40,178,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),(41,5,1,4,'2','2009-01-21 00:00:00','Credit Card','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(42,23,2,2,'3','2009-12-15 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(43,110,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),(44,40,1,2,'1','2009-12-13 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(45,64,2,4,'1','2009-01-10 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(46,114,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),(47,26,1,2,'3','2009-10-21 00:00:00','Credit Card','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(48,37,2,4,'1','2009-12-10 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(49,156,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),(50,56,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); +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`) VALUES (1,187,1,1,'1','2009-01-21 00:00:00','Check','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(2,175,2,2,'2','2008-05-07 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(3,105,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),(4,100,1,4,'4','2008-10-21 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(5,184,2,1,'1','2008-01-10 00:00:00','Check','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(6,177,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),(7,134,1,3,'3','2009-07-21 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(8,174,2,4,'4','2009-03-07 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(9,195,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),(10,2,1,2,'2','2008-02-01 00:00:00','Check','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(11,82,2,3,'3','2009-01-10 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(12,72,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),(13,3,1,1,'2','2008-06-04 00:00:00','Credit Card','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(14,149,2,2,'3','2008-01-10 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(15,80,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),(16,133,1,4,'2','2009-01-21 00:00:00','Credit Card','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(17,104,2,2,'3','2008-01-10 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(18,108,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),(19,73,1,2,'1','2008-10-21 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(20,167,2,4,'1','2009-01-10 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(21,121,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),(22,129,1,2,'3','2009-10-21 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(23,40,2,4,'1','2008-01-10 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(24,61,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),(25,14,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),(26,78,1,1,'1','2009-01-21 00:00:00','Check','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(27,140,2,2,'2','2008-05-07 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(28,124,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),(29,161,1,4,'4','2009-12-13 00:00:00','Credit Card','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(30,36,2,1,'1','2009-12-14 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(31,123,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),(32,31,1,3,'3','2009-07-21 00:00:00','Check','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(33,178,2,4,'4','2009-03-07 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(34,122,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),(35,86,1,2,'2','2009-12-13 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(36,127,2,3,'3','2009-01-10 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(37,137,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),(38,24,1,1,'2','2009-12-13 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(39,38,2,2,'3','2008-01-10 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(40,91,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),(41,142,1,4,'2','2009-01-21 00:00:00','Credit Card','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(42,157,2,2,'3','2009-12-15 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(43,37,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),(44,92,1,2,'1','2009-12-13 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(45,88,2,4,'1','2009-01-10 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(46,5,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),(47,7,1,2,'3','2009-10-21 00:00:00','Credit Card','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(48,173,2,4,'1','2009-12-10 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(49,97,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),(50,106,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); /*!40000 ALTER TABLE `civicrm_participant` ENABLE KEYS */; UNLOCK TABLES; @@ -1008,7 +1008,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,30,45),(2,41,46),(3,7,47),(4,19,48),(5,23,49),(6,42,50),(7,24,51),(8,47,52),(9,10,53),(10,33,54),(11,18,55),(12,48,56),(13,44,57),(14,1,58),(15,34,59),(16,25,60),(17,2,61),(18,5,62),(19,11,63),(20,50,64),(21,21,65),(22,8,66),(23,45,67),(24,4,68),(25,38,69),(26,26,70),(27,28,71),(28,20,72),(29,16,73),(30,14,74),(31,15,75),(32,22,76),(33,35,77),(34,43,78),(35,46,79),(36,6,80),(37,29,81),(38,39,82),(39,36,83),(40,9,84),(41,17,85),(42,32,86),(43,49,87),(44,31,88),(45,27,89),(46,40,90),(47,13,91),(48,12,92),(49,3,93),(50,37,94); +INSERT INTO `civicrm_participant_payment` (`id`, `participant_id`, `contribution_id`) VALUES (1,10,45),(2,13,46),(3,46,47),(4,47,48),(5,25,49),(6,38,50),(7,32,51),(8,30,52),(9,43,53),(10,39,54),(11,23,55),(12,24,56),(13,12,57),(14,19,58),(15,26,59),(16,15,60),(17,11,61),(18,35,62),(19,45,63),(20,40,64),(21,44,65),(22,49,66),(23,4,67),(24,17,68),(25,3,69),(26,50,70),(27,18,71),(28,21,72),(29,34,73),(30,31,74),(31,28,75),(32,36,76),(33,22,77),(34,16,78),(35,7,79),(36,37,80),(37,27,81),(38,41,82),(39,14,83),(40,42,84),(41,29,85),(42,20,86),(43,48,87),(44,8,88),(45,2,89),(46,6,90),(47,33,91),(48,5,92),(49,1,93),(50,9,94); /*!40000 ALTER TABLE `civicrm_participant_payment` ENABLE KEYS */; UNLOCK TABLES; @@ -1047,7 +1047,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`) VALUES (1,146,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); +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`) VALUES (1,54,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); /*!40000 ALTER TABLE `civicrm_pcp` ENABLE KEYS */; UNLOCK TABLES; @@ -1076,7 +1076,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,172,1,1,0,NULL,'(677) 581-9354',NULL,'6775819354',1),(2,88,1,1,0,NULL,'396-5251',NULL,'3965251',1),(3,88,1,0,0,NULL,'(678) 729-1374',NULL,'6787291374',1),(4,146,1,1,0,NULL,'748-7450',NULL,'7487450',2),(5,146,1,0,0,NULL,'(595) 478-9282',NULL,'5954789282',1),(6,112,1,1,0,NULL,'(467) 635-5073',NULL,'4676355073',2),(7,112,1,0,0,NULL,'(679) 329-3119',NULL,'6793293119',2),(8,113,1,1,0,NULL,'(709) 389-6548',NULL,'7093896548',1),(9,81,1,1,0,NULL,'(334) 290-7239',NULL,'3342907239',1),(10,137,1,1,0,NULL,'649-2897',NULL,'6492897',2),(11,137,1,0,0,NULL,'(280) 569-2043',NULL,'2805692043',1),(12,169,1,1,0,NULL,'694-5776',NULL,'6945776',1),(13,125,1,1,0,NULL,'(415) 686-5739',NULL,'4156865739',2),(14,125,1,0,0,NULL,'720-4008',NULL,'7204008',1),(15,177,1,1,0,NULL,'574-7439',NULL,'5747439',1),(16,152,1,1,0,NULL,'(451) 452-3892',NULL,'4514523892',1),(17,152,1,0,0,NULL,'(290) 629-4563',NULL,'2906294563',1),(18,159,1,1,0,NULL,'224-4542',NULL,'2244542',2),(19,159,1,0,0,NULL,'600-9447',NULL,'6009447',1),(20,3,1,1,0,NULL,'(815) 865-2392',NULL,'8158652392',1),(21,3,1,0,0,NULL,'(456) 639-8055',NULL,'4566398055',1),(22,93,1,1,0,NULL,'231-1597',NULL,'2311597',1),(23,93,1,0,0,NULL,'325-8589',NULL,'3258589',2),(24,150,1,1,0,NULL,'862-7228',NULL,'8627228',1),(25,150,1,0,0,NULL,'(456) 692-8825',NULL,'4566928825',1),(26,89,1,1,0,NULL,'756-7359',NULL,'7567359',2),(27,4,1,1,0,NULL,'(227) 572-4275',NULL,'2275724275',2),(28,164,1,1,0,NULL,'(651) 721-8350',NULL,'6517218350',2),(29,90,1,1,0,NULL,'780-4485',NULL,'7804485',2),(30,67,1,1,0,NULL,'(310) 376-4576',NULL,'3103764576',1),(31,67,1,0,0,NULL,'761-1410',NULL,'7611410',1),(32,151,1,1,0,NULL,'(583) 688-5677',NULL,'5836885677',1),(33,151,1,0,0,NULL,'513-1124',NULL,'5131124',2),(34,82,1,1,0,NULL,'(418) 698-3767',NULL,'4186983767',2),(35,82,1,0,0,NULL,'(409) 823-2392',NULL,'4098232392',2),(36,42,1,1,0,NULL,'(688) 474-8547',NULL,'6884748547',2),(37,42,1,0,0,NULL,'(237) 373-1578',NULL,'2373731578',1),(38,57,1,1,0,NULL,'(318) 813-6098',NULL,'3188136098',2),(39,57,1,0,0,NULL,'(642) 575-2943',NULL,'6425752943',1),(40,66,1,1,0,NULL,'427-3043',NULL,'4273043',1),(41,66,1,0,0,NULL,'891-9469',NULL,'8919469',2),(42,160,1,1,0,NULL,'228-5932',NULL,'2285932',2),(43,28,1,1,0,NULL,'573-9480',NULL,'5739480',2),(44,28,1,0,0,NULL,'233-3543',NULL,'2333543',1),(45,189,1,1,0,NULL,'(608) 376-1881',NULL,'6083761881',2),(46,189,1,0,0,NULL,'628-1854',NULL,'6281854',1),(47,70,1,1,0,NULL,'(682) 667-9081',NULL,'6826679081',1),(48,201,1,1,0,NULL,'(671) 843-6320',NULL,'6718436320',1),(49,156,1,1,0,NULL,'588-1644',NULL,'5881644',2),(50,156,1,0,0,NULL,'418-3953',NULL,'4183953',2),(51,166,1,1,0,NULL,'381-6742',NULL,'3816742',2),(52,127,1,1,0,NULL,'(666) 772-9153',NULL,'6667729153',1),(53,49,1,1,0,NULL,'(460) 556-7336',NULL,'4605567336',1),(54,49,1,0,0,NULL,'614-2189',NULL,'6142189',1),(55,91,1,1,0,NULL,'247-7347',NULL,'2477347',2),(56,91,1,0,0,NULL,'629-9863',NULL,'6299863',2),(57,196,1,1,0,NULL,'(239) 294-4168',NULL,'2392944168',1),(58,196,1,0,0,NULL,'336-6912',NULL,'3366912',1),(59,173,1,1,0,NULL,'385-6232',NULL,'3856232',2),(60,173,1,0,0,NULL,'(410) 744-9033',NULL,'4107449033',1),(61,55,1,1,0,NULL,'(594) 508-7614',NULL,'5945087614',2),(62,55,1,0,0,NULL,'267-9035',NULL,'2679035',1),(63,83,1,1,0,NULL,'235-3773',NULL,'2353773',1),(64,83,1,0,0,NULL,'249-3455',NULL,'2493455',2),(65,99,1,1,0,NULL,'246-9189',NULL,'2469189',2),(66,99,1,0,0,NULL,'770-3676',NULL,'7703676',2),(67,128,1,1,0,NULL,'394-6438',NULL,'3946438',2),(68,128,1,0,0,NULL,'(253) 488-4174',NULL,'2534884174',2),(69,110,1,1,0,NULL,'(700) 547-4328',NULL,'7005474328',2),(70,36,1,1,0,NULL,'(229) 641-8253',NULL,'2296418253',1),(71,36,1,0,0,NULL,'263-6140',NULL,'2636140',2),(72,75,1,1,0,NULL,'(503) 585-3767',NULL,'5035853767',1),(73,75,1,0,0,NULL,'(229) 594-6591',NULL,'2295946591',2),(74,76,1,1,0,NULL,'(248) 375-9672',NULL,'2483759672',2),(75,76,1,0,0,NULL,'(434) 283-8867',NULL,'4342838867',1),(76,45,1,1,0,NULL,'800-5612',NULL,'8005612',1),(77,77,1,1,0,NULL,'607-3328',NULL,'6073328',2),(78,114,1,1,0,NULL,'(204) 458-7390',NULL,'2044587390',2),(79,114,1,0,0,NULL,'(388) 879-8271',NULL,'3888798271',1),(80,102,1,1,0,NULL,'(437) 225-6358',NULL,'4372256358',2),(81,168,1,1,0,NULL,'687-6320',NULL,'6876320',2),(82,135,1,1,0,NULL,'(720) 864-4945',NULL,'7208644945',1),(83,118,1,1,0,NULL,'(764) 764-9356',NULL,'7647649356',2),(84,118,1,0,0,NULL,'297-9531',NULL,'2979531',1),(85,143,1,1,0,NULL,'718-3465',NULL,'7183465',1),(86,143,1,0,0,NULL,'(505) 430-3661',NULL,'5054303661',2),(87,192,1,1,0,NULL,'(275) 382-4141',NULL,'2753824141',1),(88,192,1,0,0,NULL,'(647) 210-4796',NULL,'6472104796',1),(89,63,1,1,0,NULL,'595-7946',NULL,'5957946',1),(90,174,1,1,0,NULL,'448-2448',NULL,'4482448',1),(91,174,1,0,0,NULL,'(248) 340-1937',NULL,'2483401937',1),(92,171,1,1,0,NULL,'(646) 211-9832',NULL,'6462119832',2),(93,171,1,0,0,NULL,'490-2143',NULL,'4902143',2),(94,87,1,1,0,NULL,'(628) 552-3376',NULL,'6285523376',2),(95,87,1,0,0,NULL,'220-4797',NULL,'2204797',2),(96,185,1,1,0,NULL,'(497) 792-8000',NULL,'4977928000',2),(97,120,1,1,0,NULL,'(529) 521-3422',NULL,'5295213422',1),(98,120,1,0,0,NULL,'281-1884',NULL,'2811884',2),(99,94,1,1,0,NULL,'(831) 443-4788',NULL,'8314434788',2),(100,100,1,1,0,NULL,'288-8281',NULL,'2888281',2),(101,100,1,0,0,NULL,'(809) 843-8263',NULL,'8098438263',2),(102,5,1,1,0,NULL,'898-3449',NULL,'8983449',1),(103,5,1,0,0,NULL,'(668) 570-1658',NULL,'6685701658',1),(104,200,1,1,0,NULL,'661-2672',NULL,'6612672',1),(105,200,1,0,0,NULL,'474-6043',NULL,'4746043',1),(106,21,1,1,0,NULL,'558-1484',NULL,'5581484',2),(107,24,1,1,0,NULL,'(213) 882-6156',NULL,'2138826156',1),(108,24,1,0,0,NULL,'242-3638',NULL,'2423638',2),(109,29,1,1,0,NULL,'(872) 789-4331',NULL,'8727894331',2),(110,74,1,1,0,NULL,'(866) 732-9668',NULL,'8667329668',2),(111,180,1,1,0,NULL,'233-2296',NULL,'2332296',1),(112,180,1,0,0,NULL,'(250) 442-5123',NULL,'2504425123',1),(113,61,1,1,0,NULL,'213-5474',NULL,'2135474',2),(114,134,1,1,0,NULL,'370-8903',NULL,'3708903',2),(115,134,1,0,0,NULL,'(395) 768-3068',NULL,'3957683068',1),(116,31,1,1,0,NULL,'231-4869',NULL,'2314869',1),(117,31,1,0,0,NULL,'593-9470',NULL,'5939470',1),(118,39,1,1,0,NULL,'(625) 578-9317',NULL,'6255789317',2),(119,56,1,1,0,NULL,'732-2049',NULL,'7322049',2),(120,38,1,1,0,NULL,'392-3693',NULL,'3923693',1),(121,38,1,0,0,NULL,'(449) 446-1316',NULL,'4494461316',1),(122,184,1,1,0,NULL,'(378) 649-7213',NULL,'3786497213',2),(123,184,1,0,0,NULL,'(830) 580-2006',NULL,'8305802006',2),(124,130,1,1,0,NULL,'(371) 742-8844',NULL,'3717428844',2),(125,130,1,0,0,NULL,'613-7819',NULL,'6137819',1),(126,60,1,1,0,NULL,'(817) 832-2620',NULL,'8178322620',1),(127,26,1,1,0,NULL,'(756) 221-9122',NULL,'7562219122',1),(128,141,1,1,0,NULL,'(641) 332-4325',NULL,'6413324325',1),(129,10,1,1,0,NULL,'(680) 520-5636',NULL,'6805205636',1),(130,10,1,0,0,NULL,'520-4669',NULL,'5204669',1),(131,131,1,1,0,NULL,'453-9406',NULL,'4539406',1),(132,79,1,1,0,NULL,'327-5309',NULL,'3275309',2),(133,121,1,1,0,NULL,'(579) 345-1595',NULL,'5793451595',1),(134,121,1,0,0,NULL,'423-7326',NULL,'4237326',1),(135,162,1,1,0,NULL,'(311) 316-7072',NULL,'3113167072',1),(136,191,1,1,0,NULL,'(597) 344-4052',NULL,'5973444052',2),(137,59,1,1,0,NULL,'415-6028',NULL,'4156028',1),(138,154,1,1,0,NULL,'463-7739',NULL,'4637739',2),(139,80,1,1,0,NULL,'508-9111',NULL,'5089111',2),(140,80,1,0,0,NULL,'(685) 536-2256',NULL,'6855362256',1),(141,19,1,1,0,NULL,'(704) 598-9747',NULL,'7045989747',1),(142,35,1,1,0,NULL,'(514) 360-9603',NULL,'5143609603',1),(143,48,1,1,0,NULL,'767-7567',NULL,'7677567',1),(144,48,1,0,0,NULL,'(857) 491-7535',NULL,'8574917535',2),(145,109,1,1,0,NULL,'(552) 464-4541',NULL,'5524644541',2),(146,32,1,1,0,NULL,'329-5372',NULL,'3295372',2),(147,32,1,0,0,NULL,'661-9564',NULL,'6619564',1),(148,144,1,1,0,NULL,'(347) 347-7217',NULL,'3473477217',1),(149,144,1,0,0,NULL,'(661) 761-4462',NULL,'6617614462',2),(150,95,1,1,0,NULL,'816-9527',NULL,'8169527',2),(151,197,1,1,0,NULL,'(456) 800-4234',NULL,'4568004234',2),(152,197,1,0,0,NULL,'(242) 646-2021',NULL,'2426462021',1),(153,149,1,1,0,NULL,'(759) 660-1981',NULL,'7596601981',1),(154,149,1,0,0,NULL,'732-9677',NULL,'7329677',1),(155,107,1,1,0,NULL,'686-5416',NULL,'6865416',2),(156,71,1,1,0,NULL,'572-5070',NULL,'5725070',2),(157,71,1,0,0,NULL,'(735) 203-8877',NULL,'7352038877',2),(158,13,1,1,0,NULL,'(681) 404-8813',NULL,'6814048813',2),(159,199,1,1,0,NULL,'(800) 532-3507',NULL,'8005323507',2),(160,2,1,1,0,NULL,'403-5423',NULL,'4035423',1),(161,2,1,0,0,NULL,'323-9700',NULL,'3239700',1),(162,97,1,1,0,NULL,'(491) 777-1075',NULL,'4917771075',1),(163,97,1,0,0,NULL,'743-1978',NULL,'7431978',1),(164,126,1,1,0,NULL,'850-9815',NULL,'8509815',1),(165,54,1,1,0,NULL,'411-3326',NULL,'4113326',1),(166,116,1,1,0,NULL,'(771) 853-4457',NULL,'7718534457',1),(167,145,1,1,0,NULL,'(625) 459-3327',NULL,'6254593327',2),(168,145,1,0,0,NULL,'231-1443',NULL,'2311443',2),(169,133,1,1,0,NULL,'(370) 745-1998',NULL,'3707451998',1),(170,9,1,1,0,NULL,'(827) 548-1960',NULL,'8275481960',1),(171,52,1,1,0,NULL,'741-7766',NULL,'7417766',1),(172,139,1,1,0,NULL,'520-2628',NULL,'5202628',2),(173,139,1,0,0,NULL,'571-5051',NULL,'5715051',2),(174,40,1,1,0,NULL,'(816) 627-4939',NULL,'8166274939',2),(175,40,1,0,0,NULL,'561-7998',NULL,'5617998',2),(176,182,1,1,0,NULL,'488-1221',NULL,'4881221',1),(177,182,1,0,0,NULL,'(690) 865-4836',NULL,'6908654836',1),(178,27,1,1,0,NULL,'846-2212',NULL,'8462212',2),(179,27,1,0,0,NULL,'(229) 412-2205',NULL,'2294122205',2),(180,68,1,1,0,NULL,'(618) 582-4386',NULL,'6185824386',2),(181,68,1,0,0,NULL,'(422) 694-1054',NULL,'4226941054',2),(182,7,1,1,0,NULL,'(762) 378-4984',NULL,'7623784984',2),(183,7,1,0,0,NULL,'459-5113',NULL,'4595113',1),(184,108,1,1,0,NULL,'692-1858',NULL,'6921858',2),(185,34,1,1,0,NULL,'(257) 490-3666',NULL,'2574903666',2),(186,34,1,0,0,NULL,'(735) 494-3642',NULL,'7354943642',2),(187,NULL,1,0,0,NULL,'204 222-1000',NULL,'2042221000',1),(188,NULL,1,0,0,NULL,'204 223-1000',NULL,'2042231000',1),(189,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,34,1,1,0,NULL,'(482) 862-9774',NULL,'4828629774',2),(2,192,1,1,0,NULL,'625-5802',NULL,'6255802',2),(3,30,1,1,0,NULL,'(205) 235-9441',NULL,'2052359441',1),(4,30,1,0,0,NULL,'(502) 506-7819',NULL,'5025067819',2),(5,54,1,1,0,NULL,'457-6016',NULL,'4576016',2),(6,54,1,0,0,NULL,'617-1376',NULL,'6171376',1),(7,112,1,1,0,NULL,'(264) 678-5282',NULL,'2646785282',1),(8,99,1,1,0,NULL,'(330) 884-7819',NULL,'3308847819',1),(9,41,1,1,0,NULL,'654-2621',NULL,'6542621',2),(10,29,1,1,0,NULL,'721-5783',NULL,'7215783',2),(11,29,1,0,0,NULL,'(727) 760-6997',NULL,'7277606997',1),(12,66,1,1,0,NULL,'(857) 257-9115',NULL,'8572579115',2),(13,66,1,0,0,NULL,'329-3733',NULL,'3293733',2),(14,134,1,1,0,NULL,'(226) 474-7624',NULL,'2264747624',1),(15,165,1,1,0,NULL,'806-5983',NULL,'8065983',2),(16,179,1,1,0,NULL,'260-1753',NULL,'2601753',1),(17,159,1,1,0,NULL,'425-7513',NULL,'4257513',2),(18,183,1,1,0,NULL,'348-8538',NULL,'3488538',2),(19,183,1,0,0,NULL,'207-5922',NULL,'2075922',2),(20,42,1,1,0,NULL,'(801) 633-6412',NULL,'8016336412',2),(21,42,1,0,0,NULL,'832-9761',NULL,'8329761',1),(22,8,1,1,0,NULL,'(486) 295-1414',NULL,'4862951414',1),(23,8,1,0,0,NULL,'401-8165',NULL,'4018165',1),(24,116,1,1,0,NULL,'(572) 661-2863',NULL,'5726612863',1),(25,52,1,1,0,NULL,'(605) 730-2419',NULL,'6057302419',1),(26,52,1,0,0,NULL,'724-8826',NULL,'7248826',2),(27,186,1,1,0,NULL,'(867) 588-8215',NULL,'8675888215',1),(28,108,1,1,0,NULL,'(832) 407-4543',NULL,'8324074543',1),(29,108,1,0,0,NULL,'752-3348',NULL,'7523348',2),(30,146,1,1,0,NULL,'672-1946',NULL,'6721946',2),(31,3,1,1,0,NULL,'450-6555',NULL,'4506555',1),(32,89,1,1,0,NULL,'(703) 864-7429',NULL,'7038647429',2),(33,172,1,1,0,NULL,'(330) 227-6517',NULL,'3302276517',2),(34,80,1,1,0,NULL,'893-9197',NULL,'8939197',1),(35,82,1,1,0,NULL,'(601) 243-3297',NULL,'6012433297',2),(36,174,1,1,0,NULL,'(255) 690-5981',NULL,'2556905981',1),(37,191,1,1,0,NULL,'(230) 502-6318',NULL,'2305026318',2),(38,27,1,1,0,NULL,'702-4213',NULL,'7024213',1),(39,175,1,1,0,NULL,'(828) 472-4620',NULL,'8284724620',1),(40,175,1,0,0,NULL,'(378) 207-1940',NULL,'3782071940',2),(41,123,1,1,0,NULL,'679-9997',NULL,'6799997',1),(42,189,1,1,0,NULL,'718-6258',NULL,'7186258',1),(43,133,1,1,0,NULL,'(543) 841-4830',NULL,'5438414830',1),(44,133,1,0,0,NULL,'413-5686',NULL,'4135686',2),(45,194,1,1,0,NULL,'440-4056',NULL,'4404056',2),(46,152,1,1,0,NULL,'(375) 296-8485',NULL,'3752968485',1),(47,152,1,0,0,NULL,'579-4818',NULL,'5794818',1),(48,7,1,1,0,NULL,'(386) 647-9701',NULL,'3866479701',2),(49,7,1,0,0,NULL,'(615) 854-5034',NULL,'6158545034',2),(50,16,1,1,0,NULL,'569-2781',NULL,'5692781',1),(51,171,1,1,0,NULL,'(538) 374-6451',NULL,'5383746451',1),(52,43,1,1,0,NULL,'552-7230',NULL,'5527230',1),(53,43,1,0,0,NULL,'(385) 213-9572',NULL,'3852139572',2),(54,118,1,1,0,NULL,'690-3530',NULL,'6903530',2),(55,38,1,1,0,NULL,'518-2701',NULL,'5182701',2),(56,132,1,1,0,NULL,'(390) 727-2112',NULL,'3907272112',1),(57,132,1,0,0,NULL,'255-6492',NULL,'2556492',1),(58,158,1,1,0,NULL,'(460) 361-1466',NULL,'4603611466',1),(59,158,1,0,0,NULL,'358-9240',NULL,'3589240',1),(60,135,1,1,0,NULL,'657-6374',NULL,'6576374',1),(61,151,1,1,0,NULL,'(734) 510-7311',NULL,'7345107311',1),(62,101,1,1,0,NULL,'(785) 425-2997',NULL,'7854252997',2),(63,101,1,0,0,NULL,'(588) 531-4278',NULL,'5885314278',2),(64,81,1,1,0,NULL,'312-2722',NULL,'3122722',1),(65,97,1,1,0,NULL,'762-6093',NULL,'7626093',2),(66,37,1,1,0,NULL,'(522) 726-4973',NULL,'5227264973',2),(67,37,1,0,0,NULL,'312-1486',NULL,'3121486',1),(68,137,1,1,0,NULL,'406-5830',NULL,'4065830',1),(69,109,1,1,0,NULL,'796-3365',NULL,'7963365',2),(70,15,1,1,0,NULL,'(548) 591-8655',NULL,'5485918655',1),(71,181,1,1,0,NULL,'582-5424',NULL,'5825424',1),(72,93,1,1,0,NULL,'(333) 284-3833',NULL,'3332843833',2),(73,98,1,1,0,NULL,'(876) 435-9022',NULL,'8764359022',1),(74,98,1,0,0,NULL,'892-6594',NULL,'8926594',2),(75,120,1,1,0,NULL,'(433) 706-3831',NULL,'4337063831',1),(76,120,1,0,0,NULL,'(768) 379-6275',NULL,'7683796275',1),(77,167,1,1,0,NULL,'574-9503',NULL,'5749503',2),(78,167,1,0,0,NULL,'(840) 383-9906',NULL,'8403839906',2),(79,67,1,1,0,NULL,'(798) 822-7674',NULL,'7988227674',1),(80,87,1,1,0,NULL,'729-9776',NULL,'7299776',1),(81,87,1,0,0,NULL,'(832) 483-7943',NULL,'8324837943',1),(82,60,1,1,0,NULL,'525-1278',NULL,'5251278',2),(83,60,1,0,0,NULL,'258-9225',NULL,'2589225',2),(84,111,1,1,0,NULL,'760-6019',NULL,'7606019',2),(85,111,1,0,0,NULL,'445-1494',NULL,'4451494',2),(86,31,1,1,0,NULL,'(540) 615-8365',NULL,'5406158365',1),(87,115,1,1,0,NULL,'(425) 389-8866',NULL,'4253898866',2),(88,115,1,0,0,NULL,'374-3269',NULL,'3743269',2),(89,122,1,1,0,NULL,'(506) 839-9717',NULL,'5068399717',1),(90,6,1,1,0,NULL,'466-9012',NULL,'4669012',1),(91,6,1,0,0,NULL,'(395) 370-5584',NULL,'3953705584',1),(92,148,1,1,0,NULL,'528-3667',NULL,'5283667',1),(93,148,1,0,0,NULL,'(647) 453-4917',NULL,'6474534917',2),(94,56,1,1,0,NULL,'684-7531',NULL,'6847531',2),(95,147,1,1,0,NULL,'221-1203',NULL,'2211203',2),(96,48,1,1,0,NULL,'397-2882',NULL,'3972882',2),(97,48,1,0,0,NULL,'(378) 797-8559',NULL,'3787978559',2),(98,14,1,1,0,NULL,'581-1707',NULL,'5811707',2),(99,2,1,1,0,NULL,'328-4724',NULL,'3284724',2),(100,2,1,0,0,NULL,'551-7826',NULL,'5517826',1),(101,20,1,1,0,NULL,'557-2679',NULL,'5572679',1),(102,20,1,0,0,NULL,'540-2929',NULL,'5402929',1),(103,110,1,1,0,NULL,'580-2072',NULL,'5802072',1),(104,110,1,0,0,NULL,'(586) 459-8850',NULL,'5864598850',1),(105,162,1,1,0,NULL,'854-6697',NULL,'8546697',1),(106,162,1,0,0,NULL,'504-8281',NULL,'5048281',1),(107,119,1,1,0,NULL,'706-8087',NULL,'7068087',1),(108,128,1,1,0,NULL,'393-4756',NULL,'3934756',2),(109,156,1,1,0,NULL,'604-1333',NULL,'6041333',1),(110,51,1,1,0,NULL,'(584) 573-3204',NULL,'5845733204',2),(111,51,1,0,0,NULL,'(718) 471-9699',NULL,'7184719699',1),(112,71,1,1,0,NULL,'595-7223',NULL,'5957223',2),(113,117,1,1,0,NULL,'(374) 418-1915',NULL,'3744181915',2),(114,161,1,1,0,NULL,'(454) 464-4939',NULL,'4544644939',1),(115,188,1,1,0,NULL,'(614) 360-9365',NULL,'6143609365',2),(116,188,1,0,0,NULL,'(736) 717-6414',NULL,'7367176414',2),(117,138,1,1,0,NULL,'291-3218',NULL,'2913218',1),(118,138,1,0,0,NULL,'428-1319',NULL,'4281319',1),(119,19,1,1,0,NULL,'825-2806',NULL,'8252806',1),(120,33,1,1,0,NULL,'401-5179',NULL,'4015179',2),(121,13,1,1,0,NULL,'(834) 532-1734',NULL,'8345321734',1),(122,13,1,0,0,NULL,'(745) 446-9167',NULL,'7454469167',1),(123,143,1,1,0,NULL,'(571) 558-5203',NULL,'5715585203',1),(124,72,1,1,0,NULL,'509-2729',NULL,'5092729',1),(125,62,1,1,0,NULL,'(445) 815-5075',NULL,'4458155075',1),(126,62,1,0,0,NULL,'874-6990',NULL,'8746990',1),(127,145,1,1,0,NULL,'638-1570',NULL,'6381570',1),(128,145,1,0,0,NULL,'(522) 690-5769',NULL,'5226905769',2),(129,187,1,1,0,NULL,'395-4257',NULL,'3954257',1),(130,130,1,1,0,NULL,'236-7420',NULL,'2367420',1),(131,76,1,1,0,NULL,'246-2231',NULL,'2462231',2),(132,76,1,0,0,NULL,'512-2533',NULL,'5122533',1),(133,195,1,1,0,NULL,'605-6789',NULL,'6056789',1),(134,39,1,1,0,NULL,'225-4741',NULL,'2254741',1),(135,70,1,1,0,NULL,'301-2762',NULL,'3012762',1),(136,176,1,1,0,NULL,'(702) 476-8348',NULL,'7024768348',2),(137,95,1,1,0,NULL,'(543) 549-7188',NULL,'5435497188',2),(138,95,1,0,0,NULL,'(893) 269-5829',NULL,'8932695829',2),(139,79,1,1,0,NULL,'392-5968',NULL,'3925968',2),(140,79,1,0,0,NULL,'(320) 749-5178',NULL,'3207495178',1),(141,18,1,1,0,NULL,'(707) 284-5842',NULL,'7072845842',2),(142,18,1,0,0,NULL,'(728) 347-8950',NULL,'7283478950',2),(143,68,1,1,0,NULL,'(280) 850-8216',NULL,'2808508216',2),(144,68,1,0,0,NULL,'591-4692',NULL,'5914692',1),(145,199,1,1,0,NULL,'310-5583',NULL,'3105583',1),(146,199,1,0,0,NULL,'657-6760',NULL,'6576760',2),(147,154,1,1,0,NULL,'(840) 310-3131',NULL,'8403103131',2),(148,200,1,1,0,NULL,'575-7501',NULL,'5757501',1),(149,200,1,0,0,NULL,'844-4901',NULL,'8444901',1),(150,96,1,1,0,NULL,'799-2157',NULL,'7992157',1),(151,196,1,1,0,NULL,'305-1904',NULL,'3051904',1),(152,58,1,1,0,NULL,'882-8554',NULL,'8828554',1),(153,58,1,0,0,NULL,'(668) 254-9643',NULL,'6682549643',1),(154,197,1,1,0,NULL,'(776) 642-8483',NULL,'7766428483',1),(155,197,1,0,0,NULL,'(727) 751-4329',NULL,'7277514329',2),(156,47,1,1,0,NULL,'357-9365',NULL,'3579365',2),(157,47,1,0,0,NULL,'(621) 896-5442',NULL,'6218965442',2),(158,114,1,1,0,NULL,'298-7079',NULL,'2987079',1),(159,103,1,1,0,NULL,'334-2709',NULL,'3342709',2),(160,103,1,0,0,NULL,'(626) 408-7622',NULL,'6264087622',2),(161,NULL,1,0,0,NULL,'204 222-1000',NULL,'2042221000',1),(162,NULL,1,0,0,NULL,'204 223-1000',NULL,'2042231000',1),(163,NULL,1,0,0,NULL,'303 323-1000',NULL,'3033231000',1); /*!40000 ALTER TABLE `civicrm_phone` ENABLE KEYS */; UNLOCK TABLES; @@ -1224,7 +1224,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,136,24,1,NULL,NULL,1,NULL,0,0,NULL),(2,74,24,1,NULL,NULL,1,NULL,0,0,NULL),(3,136,29,1,NULL,NULL,1,NULL,0,0,NULL),(4,74,29,1,NULL,NULL,1,NULL,0,0,NULL),(5,74,136,4,NULL,NULL,1,NULL,0,0,NULL),(6,29,22,8,NULL,NULL,1,NULL,0,0,NULL),(7,136,22,8,NULL,NULL,1,NULL,0,0,NULL),(8,74,22,8,NULL,NULL,1,NULL,0,0,NULL),(9,24,22,7,NULL,NULL,1,NULL,0,0,NULL),(10,29,24,2,NULL,NULL,1,NULL,0,0,NULL),(11,180,14,1,NULL,NULL,1,NULL,0,0,NULL),(12,115,14,1,NULL,NULL,1,NULL,0,0,NULL),(13,180,72,1,NULL,NULL,1,NULL,0,0,NULL),(14,115,72,1,NULL,NULL,1,NULL,0,0,NULL),(15,115,180,4,NULL,NULL,1,NULL,0,0,NULL),(16,72,117,8,NULL,NULL,1,NULL,0,0,NULL),(17,180,117,8,NULL,NULL,1,NULL,0,0,NULL),(18,115,117,8,NULL,NULL,1,NULL,0,0,NULL),(19,14,117,7,NULL,NULL,1,NULL,0,0,NULL),(20,72,14,2,NULL,NULL,1,NULL,0,0,NULL),(21,61,15,1,NULL,NULL,1,NULL,0,0,NULL),(22,134,15,1,NULL,NULL,1,NULL,0,0,NULL),(23,61,20,1,NULL,NULL,1,NULL,0,0,NULL),(24,134,20,1,NULL,NULL,1,NULL,0,0,NULL),(25,134,61,4,NULL,NULL,1,NULL,0,0,NULL),(26,20,153,8,NULL,NULL,1,NULL,0,0,NULL),(27,61,153,8,NULL,NULL,1,NULL,0,0,NULL),(28,134,153,8,NULL,NULL,1,NULL,0,0,NULL),(29,15,153,7,NULL,NULL,1,NULL,0,0,NULL),(30,20,15,2,NULL,NULL,1,NULL,0,0,NULL),(31,46,31,1,NULL,NULL,1,NULL,0,0,NULL),(32,56,31,1,NULL,NULL,1,NULL,0,0,NULL),(33,46,39,1,NULL,NULL,1,NULL,0,0,NULL),(34,56,39,1,NULL,NULL,1,NULL,0,0,NULL),(35,56,46,4,NULL,NULL,1,NULL,0,0,NULL),(36,39,86,8,NULL,NULL,1,NULL,0,0,NULL),(37,46,86,8,NULL,NULL,1,NULL,0,0,NULL),(38,56,86,8,NULL,NULL,1,NULL,0,0,NULL),(39,31,86,7,NULL,NULL,0,NULL,0,0,NULL),(40,39,31,2,NULL,NULL,0,NULL,0,0,NULL),(41,105,129,1,NULL,NULL,1,NULL,0,0,NULL),(42,38,129,1,NULL,NULL,1,NULL,0,0,NULL),(43,105,96,1,NULL,NULL,1,NULL,0,0,NULL),(44,38,96,1,NULL,NULL,1,NULL,0,0,NULL),(45,38,105,4,NULL,NULL,1,NULL,0,0,NULL),(46,96,65,8,NULL,NULL,1,NULL,0,0,NULL),(47,105,65,8,NULL,NULL,1,NULL,0,0,NULL),(48,38,65,8,NULL,NULL,1,NULL,0,0,NULL),(49,129,65,7,NULL,NULL,1,NULL,0,0,NULL),(50,96,129,2,NULL,NULL,1,NULL,0,0,NULL),(51,60,184,1,NULL,NULL,1,NULL,0,0,NULL),(52,26,184,1,NULL,NULL,1,NULL,0,0,NULL),(53,60,130,1,NULL,NULL,1,NULL,0,0,NULL),(54,26,130,1,NULL,NULL,1,NULL,0,0,NULL),(55,26,60,4,NULL,NULL,1,NULL,0,0,NULL),(56,130,73,8,NULL,NULL,1,NULL,0,0,NULL),(57,60,73,8,NULL,NULL,1,NULL,0,0,NULL),(58,26,73,8,NULL,NULL,1,NULL,0,0,NULL),(59,184,73,7,NULL,NULL,0,NULL,0,0,NULL),(60,130,184,2,NULL,NULL,0,NULL,0,0,NULL),(61,195,122,1,NULL,NULL,1,NULL,0,0,NULL),(62,10,122,1,NULL,NULL,1,NULL,0,0,NULL),(63,195,141,1,NULL,NULL,1,NULL,0,0,NULL),(64,10,141,1,NULL,NULL,1,NULL,0,0,NULL),(65,10,195,4,NULL,NULL,1,NULL,0,0,NULL),(66,141,106,8,NULL,NULL,1,NULL,0,0,NULL),(67,195,106,8,NULL,NULL,1,NULL,0,0,NULL),(68,10,106,8,NULL,NULL,1,NULL,0,0,NULL),(69,122,106,7,NULL,NULL,0,NULL,0,0,NULL),(70,141,122,2,NULL,NULL,0,NULL,0,0,NULL),(71,79,131,1,NULL,NULL,1,NULL,0,0,NULL),(72,121,131,1,NULL,NULL,1,NULL,0,0,NULL),(73,79,111,1,NULL,NULL,1,NULL,0,0,NULL),(74,121,111,1,NULL,NULL,1,NULL,0,0,NULL),(75,121,79,4,NULL,NULL,1,NULL,0,0,NULL),(76,111,183,8,NULL,NULL,1,NULL,0,0,NULL),(77,79,183,8,NULL,NULL,1,NULL,0,0,NULL),(78,121,183,8,NULL,NULL,1,NULL,0,0,NULL),(79,131,183,7,NULL,NULL,1,NULL,0,0,NULL),(80,111,131,2,NULL,NULL,1,NULL,0,0,NULL),(81,59,162,1,NULL,NULL,1,NULL,0,0,NULL),(82,154,162,1,NULL,NULL,1,NULL,0,0,NULL),(83,59,191,1,NULL,NULL,1,NULL,0,0,NULL),(84,154,191,1,NULL,NULL,1,NULL,0,0,NULL),(85,154,59,4,NULL,NULL,1,NULL,0,0,NULL),(86,191,178,8,NULL,NULL,1,NULL,0,0,NULL),(87,59,178,8,NULL,NULL,1,NULL,0,0,NULL),(88,154,178,8,NULL,NULL,1,NULL,0,0,NULL),(89,162,178,7,NULL,NULL,0,NULL,0,0,NULL),(90,191,162,2,NULL,NULL,0,NULL,0,0,NULL),(91,35,80,1,NULL,NULL,1,NULL,0,0,NULL),(92,48,80,1,NULL,NULL,1,NULL,0,0,NULL),(93,35,19,1,NULL,NULL,1,NULL,0,0,NULL),(94,48,19,1,NULL,NULL,1,NULL,0,0,NULL),(95,48,35,4,NULL,NULL,1,NULL,0,0,NULL),(96,19,198,8,NULL,NULL,1,NULL,0,0,NULL),(97,35,198,8,NULL,NULL,1,NULL,0,0,NULL),(98,48,198,8,NULL,NULL,1,NULL,0,0,NULL),(99,80,198,7,NULL,NULL,0,NULL,0,0,NULL),(100,19,80,2,NULL,NULL,0,NULL,0,0,NULL),(101,144,109,1,NULL,NULL,1,NULL,0,0,NULL),(102,95,109,1,NULL,NULL,1,NULL,0,0,NULL),(103,144,32,1,NULL,NULL,1,NULL,0,0,NULL),(104,95,32,1,NULL,NULL,1,NULL,0,0,NULL),(105,95,144,4,NULL,NULL,1,NULL,0,0,NULL),(106,32,78,8,NULL,NULL,1,NULL,0,0,NULL),(107,144,78,8,NULL,NULL,1,NULL,0,0,NULL),(108,95,78,8,NULL,NULL,1,NULL,0,0,NULL),(109,109,78,7,NULL,NULL,1,NULL,0,0,NULL),(110,32,109,2,NULL,NULL,1,NULL,0,0,NULL),(111,149,197,1,NULL,NULL,1,NULL,0,0,NULL),(112,155,197,1,NULL,NULL,1,NULL,0,0,NULL),(113,149,194,1,NULL,NULL,1,NULL,0,0,NULL),(114,155,194,1,NULL,NULL,1,NULL,0,0,NULL),(115,155,149,4,NULL,NULL,1,NULL,0,0,NULL),(116,194,148,8,NULL,NULL,1,NULL,0,0,NULL),(117,149,148,8,NULL,NULL,1,NULL,0,0,NULL),(118,155,148,8,NULL,NULL,1,NULL,0,0,NULL),(119,197,148,7,NULL,NULL,0,NULL,0,0,NULL),(120,194,197,2,NULL,NULL,0,NULL,0,0,NULL),(121,107,62,1,NULL,NULL,1,NULL,0,0,NULL),(122,37,62,1,NULL,NULL,1,NULL,0,0,NULL),(123,107,165,1,NULL,NULL,1,NULL,0,0,NULL),(124,37,165,1,NULL,NULL,1,NULL,0,0,NULL),(125,37,107,4,NULL,NULL,1,NULL,0,0,NULL),(126,165,161,8,NULL,NULL,1,NULL,0,0,NULL),(127,107,161,8,NULL,NULL,1,NULL,0,0,NULL),(128,37,161,8,NULL,NULL,1,NULL,0,0,NULL),(129,62,161,7,NULL,NULL,1,NULL,0,0,NULL),(130,165,62,2,NULL,NULL,1,NULL,0,0,NULL),(131,199,71,1,NULL,NULL,1,NULL,0,0,NULL),(132,2,71,1,NULL,NULL,1,NULL,0,0,NULL),(133,199,13,1,NULL,NULL,1,NULL,0,0,NULL),(134,2,13,1,NULL,NULL,1,NULL,0,0,NULL),(135,2,199,4,NULL,NULL,1,NULL,0,0,NULL),(136,13,101,8,NULL,NULL,1,NULL,0,0,NULL),(137,199,101,8,NULL,NULL,1,NULL,0,0,NULL),(138,2,101,8,NULL,NULL,1,NULL,0,0,NULL),(139,71,101,7,NULL,NULL,1,NULL,0,0,NULL),(140,13,71,2,NULL,NULL,1,NULL,0,0,NULL),(141,54,97,1,NULL,NULL,1,NULL,0,0,NULL),(142,147,97,1,NULL,NULL,1,NULL,0,0,NULL),(143,54,126,1,NULL,NULL,1,NULL,0,0,NULL),(144,147,126,1,NULL,NULL,1,NULL,0,0,NULL),(145,147,54,4,NULL,NULL,1,NULL,0,0,NULL),(146,126,6,8,NULL,NULL,1,NULL,0,0,NULL),(147,54,6,8,NULL,NULL,1,NULL,0,0,NULL),(148,147,6,8,NULL,NULL,1,NULL,0,0,NULL),(149,97,6,7,NULL,NULL,1,NULL,0,0,NULL),(150,126,97,2,NULL,NULL,1,NULL,0,0,NULL),(151,133,116,1,NULL,NULL,1,NULL,0,0,NULL),(152,140,116,1,NULL,NULL,1,NULL,0,0,NULL),(153,133,145,1,NULL,NULL,1,NULL,0,0,NULL),(154,140,145,1,NULL,NULL,1,NULL,0,0,NULL),(155,140,133,4,NULL,NULL,1,NULL,0,0,NULL),(156,145,138,8,NULL,NULL,1,NULL,0,0,NULL),(157,133,138,8,NULL,NULL,1,NULL,0,0,NULL),(158,140,138,8,NULL,NULL,1,NULL,0,0,NULL),(159,116,138,7,NULL,NULL,1,NULL,0,0,NULL),(160,145,116,2,NULL,NULL,1,NULL,0,0,NULL),(161,139,9,1,NULL,NULL,1,NULL,0,0,NULL),(162,43,9,1,NULL,NULL,1,NULL,0,0,NULL),(163,139,52,1,NULL,NULL,1,NULL,0,0,NULL),(164,43,52,1,NULL,NULL,1,NULL,0,0,NULL),(165,43,139,4,NULL,NULL,1,NULL,0,0,NULL),(166,52,17,8,NULL,NULL,1,NULL,0,0,NULL),(167,139,17,8,NULL,NULL,1,NULL,0,0,NULL),(168,43,17,8,NULL,NULL,1,NULL,0,0,NULL),(169,9,17,7,NULL,NULL,0,NULL,0,0,NULL),(170,52,9,2,NULL,NULL,0,NULL,0,0,NULL),(171,170,40,1,NULL,NULL,1,NULL,0,0,NULL),(172,182,40,1,NULL,NULL,1,NULL,0,0,NULL),(173,170,176,1,NULL,NULL,1,NULL,0,0,NULL),(174,182,176,1,NULL,NULL,1,NULL,0,0,NULL),(175,182,170,4,NULL,NULL,1,NULL,0,0,NULL),(176,176,163,8,NULL,NULL,1,NULL,0,0,NULL),(177,170,163,8,NULL,NULL,1,NULL,0,0,NULL),(178,182,163,8,NULL,NULL,1,NULL,0,0,NULL),(179,40,163,7,NULL,NULL,1,NULL,0,0,NULL),(180,176,40,2,NULL,NULL,1,NULL,0,0,NULL),(181,68,27,1,NULL,NULL,1,NULL,0,0,NULL),(182,181,27,1,NULL,NULL,1,NULL,0,0,NULL),(183,68,123,1,NULL,NULL,1,NULL,0,0,NULL),(184,181,123,1,NULL,NULL,1,NULL,0,0,NULL),(185,181,68,4,NULL,NULL,1,NULL,0,0,NULL),(186,123,33,8,NULL,NULL,1,NULL,0,0,NULL),(187,68,33,8,NULL,NULL,1,NULL,0,0,NULL),(188,181,33,8,NULL,NULL,1,NULL,0,0,NULL),(189,27,33,7,NULL,NULL,1,NULL,0,0,NULL),(190,123,27,2,NULL,NULL,1,NULL,0,0,NULL),(191,25,7,1,NULL,NULL,1,NULL,0,0,NULL),(192,34,7,1,NULL,NULL,1,NULL,0,0,NULL),(193,25,108,1,NULL,NULL,1,NULL,0,0,NULL),(194,34,108,1,NULL,NULL,1,NULL,0,0,NULL),(195,34,25,4,NULL,NULL,1,NULL,0,0,NULL),(196,108,23,8,NULL,NULL,1,NULL,0,0,NULL),(197,25,23,8,NULL,NULL,1,NULL,0,0,NULL),(198,34,23,8,NULL,NULL,1,NULL,0,0,NULL),(199,7,23,7,NULL,NULL,0,NULL,0,0,NULL),(200,108,7,2,NULL,NULL,0,NULL,0,0,NULL),(201,184,8,5,NULL,NULL,1,NULL,0,0,NULL),(202,109,12,5,NULL,NULL,1,NULL,0,0,NULL),(203,124,50,5,NULL,NULL,1,NULL,0,0,NULL),(204,139,53,5,NULL,NULL,1,NULL,0,0,NULL),(205,48,58,5,NULL,NULL,1,NULL,0,0,NULL),(206,67,64,5,NULL,NULL,1,NULL,0,0,NULL),(207,85,69,5,NULL,NULL,1,NULL,0,0,NULL),(208,114,84,5,NULL,NULL,1,NULL,0,0,NULL),(209,18,98,5,NULL,NULL,1,NULL,0,0,NULL),(210,74,104,5,NULL,NULL,1,NULL,0,0,NULL),(211,46,132,5,NULL,NULL,1,NULL,0,0,NULL),(212,192,142,5,NULL,NULL,1,NULL,0,0,NULL),(213,152,157,5,NULL,NULL,1,NULL,0,0,NULL),(214,36,158,5,NULL,NULL,1,NULL,0,0,NULL),(215,34,175,5,NULL,NULL,1,NULL,0,0,NULL),(216,162,179,5,NULL,NULL,1,NULL,0,0,NULL),(217,180,186,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,120,93,1,NULL,NULL,1,NULL,0,0,NULL),(2,136,93,1,NULL,NULL,1,NULL,0,0,NULL),(3,120,98,1,NULL,NULL,1,NULL,0,0,NULL),(4,136,98,1,NULL,NULL,1,NULL,0,0,NULL),(5,136,120,4,NULL,NULL,1,NULL,0,0,NULL),(6,98,40,8,NULL,NULL,1,NULL,0,0,NULL),(7,120,40,8,NULL,NULL,1,NULL,0,0,NULL),(8,136,40,8,NULL,NULL,1,NULL,0,0,NULL),(9,93,40,7,NULL,NULL,0,NULL,0,0,NULL),(10,98,93,2,NULL,NULL,0,NULL,0,0,NULL),(11,67,167,1,NULL,NULL,1,NULL,0,0,NULL),(12,87,167,1,NULL,NULL,1,NULL,0,0,NULL),(13,67,163,1,NULL,NULL,1,NULL,0,0,NULL),(14,87,163,1,NULL,NULL,1,NULL,0,0,NULL),(15,87,67,4,NULL,NULL,1,NULL,0,0,NULL),(16,163,169,8,NULL,NULL,1,NULL,0,0,NULL),(17,67,169,8,NULL,NULL,1,NULL,0,0,NULL),(18,87,169,8,NULL,NULL,1,NULL,0,0,NULL),(19,167,169,7,NULL,NULL,1,NULL,0,0,NULL),(20,163,167,2,NULL,NULL,1,NULL,0,0,NULL),(21,31,60,1,NULL,NULL,1,NULL,0,0,NULL),(22,115,60,1,NULL,NULL,1,NULL,0,0,NULL),(23,31,111,1,NULL,NULL,1,NULL,0,0,NULL),(24,115,111,1,NULL,NULL,1,NULL,0,0,NULL),(25,115,31,4,NULL,NULL,1,NULL,0,0,NULL),(26,111,102,8,NULL,NULL,1,NULL,0,0,NULL),(27,31,102,8,NULL,NULL,1,NULL,0,0,NULL),(28,115,102,8,NULL,NULL,1,NULL,0,0,NULL),(29,60,102,7,NULL,NULL,0,NULL,0,0,NULL),(30,111,60,2,NULL,NULL,0,NULL,0,0,NULL),(31,21,122,1,NULL,NULL,1,NULL,0,0,NULL),(32,148,122,1,NULL,NULL,1,NULL,0,0,NULL),(33,21,6,1,NULL,NULL,1,NULL,0,0,NULL),(34,148,6,1,NULL,NULL,1,NULL,0,0,NULL),(35,148,21,4,NULL,NULL,1,NULL,0,0,NULL),(36,6,100,8,NULL,NULL,1,NULL,0,0,NULL),(37,21,100,8,NULL,NULL,1,NULL,0,0,NULL),(38,148,100,8,NULL,NULL,1,NULL,0,0,NULL),(39,122,100,7,NULL,NULL,1,NULL,0,0,NULL),(40,6,122,2,NULL,NULL,1,NULL,0,0,NULL),(41,166,184,1,NULL,NULL,1,NULL,0,0,NULL),(42,147,184,1,NULL,NULL,1,NULL,0,0,NULL),(43,166,56,1,NULL,NULL,1,NULL,0,0,NULL),(44,147,56,1,NULL,NULL,1,NULL,0,0,NULL),(45,147,166,4,NULL,NULL,1,NULL,0,0,NULL),(46,56,65,8,NULL,NULL,1,NULL,0,0,NULL),(47,166,65,8,NULL,NULL,1,NULL,0,0,NULL),(48,147,65,8,NULL,NULL,1,NULL,0,0,NULL),(49,184,65,7,NULL,NULL,0,NULL,0,0,NULL),(50,56,184,2,NULL,NULL,0,NULL,0,0,NULL),(51,14,48,1,NULL,NULL,1,NULL,0,0,NULL),(52,2,48,1,NULL,NULL,1,NULL,0,0,NULL),(53,14,88,1,NULL,NULL,1,NULL,0,0,NULL),(54,2,88,1,NULL,NULL,1,NULL,0,0,NULL),(55,2,14,4,NULL,NULL,1,NULL,0,0,NULL),(56,88,50,8,NULL,NULL,1,NULL,0,0,NULL),(57,14,50,8,NULL,NULL,1,NULL,0,0,NULL),(58,2,50,8,NULL,NULL,1,NULL,0,0,NULL),(59,48,50,7,NULL,NULL,1,NULL,0,0,NULL),(60,88,48,2,NULL,NULL,1,NULL,0,0,NULL),(61,20,129,1,NULL,NULL,1,NULL,0,0,NULL),(62,110,129,1,NULL,NULL,1,NULL,0,0,NULL),(63,20,59,1,NULL,NULL,1,NULL,0,0,NULL),(64,110,59,1,NULL,NULL,1,NULL,0,0,NULL),(65,110,20,4,NULL,NULL,1,NULL,0,0,NULL),(66,59,84,8,NULL,NULL,1,NULL,0,0,NULL),(67,20,84,8,NULL,NULL,1,NULL,0,0,NULL),(68,110,84,8,NULL,NULL,1,NULL,0,0,NULL),(69,129,84,7,NULL,NULL,1,NULL,0,0,NULL),(70,59,129,2,NULL,NULL,1,NULL,0,0,NULL),(71,173,162,1,NULL,NULL,1,NULL,0,0,NULL),(72,128,162,1,NULL,NULL,1,NULL,0,0,NULL),(73,173,119,1,NULL,NULL,1,NULL,0,0,NULL),(74,128,119,1,NULL,NULL,1,NULL,0,0,NULL),(75,128,173,4,NULL,NULL,1,NULL,0,0,NULL),(76,119,157,8,NULL,NULL,1,NULL,0,0,NULL),(77,173,157,8,NULL,NULL,1,NULL,0,0,NULL),(78,128,157,8,NULL,NULL,1,NULL,0,0,NULL),(79,162,157,7,NULL,NULL,1,NULL,0,0,NULL),(80,119,162,2,NULL,NULL,1,NULL,0,0,NULL),(81,51,17,1,NULL,NULL,1,NULL,0,0,NULL),(82,71,17,1,NULL,NULL,1,NULL,0,0,NULL),(83,51,156,1,NULL,NULL,1,NULL,0,0,NULL),(84,71,156,1,NULL,NULL,1,NULL,0,0,NULL),(85,71,51,4,NULL,NULL,1,NULL,0,0,NULL),(86,156,11,8,NULL,NULL,1,NULL,0,0,NULL),(87,51,11,8,NULL,NULL,1,NULL,0,0,NULL),(88,71,11,8,NULL,NULL,1,NULL,0,0,NULL),(89,17,11,7,NULL,NULL,1,NULL,0,0,NULL),(90,156,17,2,NULL,NULL,1,NULL,0,0,NULL),(91,78,190,1,NULL,NULL,1,NULL,0,0,NULL),(92,53,190,1,NULL,NULL,1,NULL,0,0,NULL),(93,78,117,1,NULL,NULL,1,NULL,0,0,NULL),(94,53,117,1,NULL,NULL,1,NULL,0,0,NULL),(95,53,78,4,NULL,NULL,1,NULL,0,0,NULL),(96,117,126,8,NULL,NULL,1,NULL,0,0,NULL),(97,78,126,8,NULL,NULL,1,NULL,0,0,NULL),(98,53,126,8,NULL,NULL,1,NULL,0,0,NULL),(99,190,126,7,NULL,NULL,0,NULL,0,0,NULL),(100,117,190,2,NULL,NULL,0,NULL,0,0,NULL),(101,4,161,1,NULL,NULL,1,NULL,0,0,NULL),(102,138,161,1,NULL,NULL,1,NULL,0,0,NULL),(103,4,188,1,NULL,NULL,1,NULL,0,0,NULL),(104,138,188,1,NULL,NULL,1,NULL,0,0,NULL),(105,138,4,4,NULL,NULL,1,NULL,0,0,NULL),(106,188,107,8,NULL,NULL,1,NULL,0,0,NULL),(107,4,107,8,NULL,NULL,1,NULL,0,0,NULL),(108,138,107,8,NULL,NULL,1,NULL,0,0,NULL),(109,161,107,7,NULL,NULL,1,NULL,0,0,NULL),(110,188,161,2,NULL,NULL,1,NULL,0,0,NULL),(111,170,19,1,NULL,NULL,1,NULL,0,0,NULL),(112,33,19,1,NULL,NULL,1,NULL,0,0,NULL),(113,170,168,1,NULL,NULL,1,NULL,0,0,NULL),(114,33,168,1,NULL,NULL,1,NULL,0,0,NULL),(115,33,170,4,NULL,NULL,1,NULL,0,0,NULL),(116,168,164,8,NULL,NULL,1,NULL,0,0,NULL),(117,170,164,8,NULL,NULL,1,NULL,0,0,NULL),(118,33,164,8,NULL,NULL,1,NULL,0,0,NULL),(119,19,164,7,NULL,NULL,1,NULL,0,0,NULL),(120,168,19,2,NULL,NULL,1,NULL,0,0,NULL),(121,72,13,1,NULL,NULL,1,NULL,0,0,NULL),(122,62,13,1,NULL,NULL,1,NULL,0,0,NULL),(123,72,143,1,NULL,NULL,1,NULL,0,0,NULL),(124,62,143,1,NULL,NULL,1,NULL,0,0,NULL),(125,62,72,4,NULL,NULL,1,NULL,0,0,NULL),(126,143,106,8,NULL,NULL,1,NULL,0,0,NULL),(127,72,106,8,NULL,NULL,1,NULL,0,0,NULL),(128,62,106,8,NULL,NULL,1,NULL,0,0,NULL),(129,13,106,7,NULL,NULL,1,NULL,0,0,NULL),(130,143,13,2,NULL,NULL,1,NULL,0,0,NULL),(131,187,74,1,NULL,NULL,1,NULL,0,0,NULL),(132,130,74,1,NULL,NULL,1,NULL,0,0,NULL),(133,187,145,1,NULL,NULL,1,NULL,0,0,NULL),(134,130,145,1,NULL,NULL,1,NULL,0,0,NULL),(135,130,187,4,NULL,NULL,1,NULL,0,0,NULL),(136,145,36,8,NULL,NULL,1,NULL,0,0,NULL),(137,187,36,8,NULL,NULL,1,NULL,0,0,NULL),(138,130,36,8,NULL,NULL,1,NULL,0,0,NULL),(139,74,36,7,NULL,NULL,1,NULL,0,0,NULL),(140,145,74,2,NULL,NULL,1,NULL,0,0,NULL),(141,195,28,1,NULL,NULL,1,NULL,0,0,NULL),(142,39,28,1,NULL,NULL,1,NULL,0,0,NULL),(143,195,76,1,NULL,NULL,1,NULL,0,0,NULL),(144,39,76,1,NULL,NULL,1,NULL,0,0,NULL),(145,39,195,4,NULL,NULL,1,NULL,0,0,NULL),(146,76,104,8,NULL,NULL,1,NULL,0,0,NULL),(147,195,104,8,NULL,NULL,1,NULL,0,0,NULL),(148,39,104,8,NULL,NULL,1,NULL,0,0,NULL),(149,28,104,7,NULL,NULL,0,NULL,0,0,NULL),(150,76,28,2,NULL,NULL,0,NULL,0,0,NULL),(151,95,70,1,NULL,NULL,1,NULL,0,0,NULL),(152,79,70,1,NULL,NULL,1,NULL,0,0,NULL),(153,95,176,1,NULL,NULL,1,NULL,0,0,NULL),(154,79,176,1,NULL,NULL,1,NULL,0,0,NULL),(155,79,95,4,NULL,NULL,1,NULL,0,0,NULL),(156,176,85,8,NULL,NULL,1,NULL,0,0,NULL),(157,95,85,8,NULL,NULL,1,NULL,0,0,NULL),(158,79,85,8,NULL,NULL,1,NULL,0,0,NULL),(159,70,85,7,NULL,NULL,1,NULL,0,0,NULL),(160,176,70,2,NULL,NULL,1,NULL,0,0,NULL),(161,142,18,1,NULL,NULL,1,NULL,0,0,NULL),(162,199,18,1,NULL,NULL,1,NULL,0,0,NULL),(163,142,68,1,NULL,NULL,1,NULL,0,0,NULL),(164,199,68,1,NULL,NULL,1,NULL,0,0,NULL),(165,199,142,4,NULL,NULL,1,NULL,0,0,NULL),(166,68,57,8,NULL,NULL,1,NULL,0,0,NULL),(167,142,57,8,NULL,NULL,1,NULL,0,0,NULL),(168,199,57,8,NULL,NULL,1,NULL,0,0,NULL),(169,18,57,7,NULL,NULL,1,NULL,0,0,NULL),(170,68,18,2,NULL,NULL,1,NULL,0,0,NULL),(171,200,154,1,NULL,NULL,1,NULL,0,0,NULL),(172,96,154,1,NULL,NULL,1,NULL,0,0,NULL),(173,200,155,1,NULL,NULL,1,NULL,0,0,NULL),(174,96,155,1,NULL,NULL,1,NULL,0,0,NULL),(175,96,200,4,NULL,NULL,1,NULL,0,0,NULL),(176,155,105,8,NULL,NULL,1,NULL,0,0,NULL),(177,200,105,8,NULL,NULL,1,NULL,0,0,NULL),(178,96,105,8,NULL,NULL,1,NULL,0,0,NULL),(179,154,105,7,NULL,NULL,1,NULL,0,0,NULL),(180,155,154,2,NULL,NULL,1,NULL,0,0,NULL),(181,201,196,1,NULL,NULL,1,NULL,0,0,NULL),(182,140,196,1,NULL,NULL,1,NULL,0,0,NULL),(183,201,58,1,NULL,NULL,1,NULL,0,0,NULL),(184,140,58,1,NULL,NULL,1,NULL,0,0,NULL),(185,140,201,4,NULL,NULL,1,NULL,0,0,NULL),(186,58,44,8,NULL,NULL,1,NULL,0,0,NULL),(187,201,44,8,NULL,NULL,1,NULL,0,0,NULL),(188,140,44,8,NULL,NULL,1,NULL,0,0,NULL),(189,196,44,7,NULL,NULL,1,NULL,0,0,NULL),(190,58,196,2,NULL,NULL,1,NULL,0,0,NULL),(191,114,197,1,NULL,NULL,1,NULL,0,0,NULL),(192,103,197,1,NULL,NULL,1,NULL,0,0,NULL),(193,114,47,1,NULL,NULL,1,NULL,0,0,NULL),(194,103,47,1,NULL,NULL,1,NULL,0,0,NULL),(195,103,114,4,NULL,NULL,1,NULL,0,0,NULL),(196,47,94,8,NULL,NULL,1,NULL,0,0,NULL),(197,114,94,8,NULL,NULL,1,NULL,0,0,NULL),(198,103,94,8,NULL,NULL,1,NULL,0,0,NULL),(199,197,94,7,NULL,NULL,1,NULL,0,0,NULL),(200,47,197,2,NULL,NULL,1,NULL,0,0,NULL),(201,62,5,5,NULL,NULL,1,NULL,0,0,NULL),(202,27,9,5,NULL,NULL,1,NULL,0,0,NULL),(203,182,10,5,NULL,NULL,1,NULL,0,0,NULL),(204,26,22,5,NULL,NULL,1,NULL,0,0,NULL),(205,2,23,5,NULL,NULL,1,NULL,0,0,NULL),(206,25,35,5,NULL,NULL,1,NULL,0,0,NULL),(207,109,45,5,NULL,NULL,1,NULL,0,0,NULL),(208,129,46,5,NULL,NULL,1,NULL,0,0,NULL),(209,71,49,5,NULL,NULL,1,NULL,0,0,NULL),(210,165,63,5,NULL,NULL,1,NULL,0,0,NULL),(211,88,64,5,NULL,NULL,1,NULL,0,0,NULL),(212,200,90,5,NULL,NULL,1,NULL,0,0,NULL),(213,191,91,5,NULL,NULL,1,NULL,0,0,NULL),(214,31,113,5,NULL,NULL,1,NULL,0,0,NULL),(215,146,124,5,NULL,NULL,1,NULL,0,0,NULL),(216,47,144,5,NULL,NULL,1,NULL,0,0,NULL),(217,83,149,5,NULL,NULL,1,NULL,0,0,NULL),(218,194,153,5,NULL,NULL,1,NULL,0,0,NULL),(219,69,160,5,NULL,NULL,1,NULL,0,0,NULL),(220,43,177,5,NULL,NULL,1,NULL,0,0,NULL); /*!40000 ALTER TABLE `civicrm_relationship` ENABLE KEYS */; UNLOCK TABLES; @@ -1263,7 +1263,7 @@ UNLOCK TABLES; LOCK TABLES `civicrm_setting` WRITE; /*!40000 ALTER TABLE `civicrm_setting` DISABLE KEYS */; -INSERT INTO `civicrm_setting` (`id`, `group_name`, `name`, `value`, `domain_id`, `contact_id`, `is_domain`, `component_id`, `created_date`, `created_id`) VALUES (1,'CiviCRM Preferences','contact_view_options','s:28:\"123456789101113\";',1,NULL,1,NULL,NULL,NULL),(2,'CiviCRM Preferences','contact_smart_group_display','s:1:\"1\";',1,NULL,1,NULL,NULL,NULL),(3,'CiviCRM Preferences','contact_edit_options','s:37:\"123456789111214151617\";',1,NULL,1,NULL,NULL,NULL),(4,'CiviCRM Preferences','advanced_search_options','s:46:\"123456789101112131516171819\";',1,NULL,1,NULL,NULL,NULL),(5,'CiviCRM Preferences','user_dashboard_options','s:15:\"1234578\";',1,NULL,1,NULL,NULL,NULL),(6,'CiviCRM Preferences','address_options','s:23:\"123456891011\";',1,NULL,1,NULL,NULL,NULL),(7,'CiviCRM Preferences','address_format','s:198:\"{contact.address_name}\n{contact.street_address}\n{contact.supplemental_address_1}\n{contact.supplemental_address_2}\n{contact.city}{, }{contact.state_province}{ }{contact.postal_code}\n{contact.country}\";',1,NULL,1,NULL,NULL,NULL),(8,'CiviCRM Preferences','mailing_format','s:195:\"{contact.addressee}\n{contact.street_address}\n{contact.supplemental_address_1}\n{contact.supplemental_address_2}\n{contact.city}{, }{contact.state_province}{ }{contact.postal_code}\n{contact.country}\";',1,NULL,1,NULL,NULL,NULL),(9,'CiviCRM Preferences','display_name_format','s:102:\"{contact.individual_prefix}{ }{contact.first_name}{ }{contact.last_name}{ }{contact.individual_suffix}\";',1,NULL,1,NULL,NULL,NULL),(10,'CiviCRM Preferences','sort_name_format','s:43:\"{contact.last_name}{, }{contact.first_name}\";',1,NULL,1,NULL,NULL,NULL),(11,'CiviCRM Preferences','editor_id','s:1:\"2\";',1,NULL,1,NULL,NULL,NULL),(12,'CiviCRM Preferences','contact_ajax_check_similar','s:1:\"1\";',1,NULL,1,NULL,NULL,NULL),(13,'CiviCRM Preferences','activity_assignee_notification','s:1:\"1\";',1,NULL,1,NULL,NULL,NULL),(14,'CiviCRM Preferences','activity_assignee_notification_ics','s:1:\"0\";',1,NULL,1,NULL,NULL,NULL),(15,'CiviCRM Preferences','contact_autocomplete_options','s:5:\"12\";',1,NULL,1,NULL,NULL,NULL),(16,'CiviCRM Preferences','contact_reference_options','s:5:\"12\";',1,NULL,1,NULL,NULL,NULL),(17,'Address Standardization Preferences','address_standardization_provider',NULL,1,NULL,1,NULL,NULL,NULL),(18,'Address Standardization Preferences','address_standardization_userid',NULL,1,NULL,1,NULL,NULL,NULL),(19,'Address Standardization Preferences','address_standardization_url',NULL,1,NULL,1,NULL,NULL,NULL),(20,'Campaign Preferences','tag_unconfirmed','s:11:\"Unconfirmed\";',1,NULL,1,NULL,NULL,NULL),(21,'Campaign Preferences','petition_contacts','s:17:\"Petition Contacts\";',1,NULL,1,NULL,NULL,NULL),(22,'Event Preferences','enable_cart','s:1:\"0\";',1,NULL,1,NULL,NULL,NULL),(23,'Mailing Preferences','profile_double_optin','s:1:\"1\";',1,NULL,1,NULL,NULL,NULL),(24,'Mailing Preferences','profile_add_to_group_double_optin','s:1:\"0\";',1,NULL,1,NULL,NULL,NULL),(25,'Mailing Preferences','track_civimail_replies','s:1:\"0\";',1,NULL,1,NULL,NULL,NULL),(26,'Mailing Preferences','civimail_workflow','s:1:\"0\";',1,NULL,1,NULL,NULL,NULL),(27,'Mailing Preferences','civimail_server_wide_lock','s:1:\"0\";',1,NULL,1,NULL,NULL,NULL),(28,'Mailing Preferences','mailing_backend','a:1:{s:15:\"outBound_option\";s:1:\"3\";}',1,NULL,1,NULL,NULL,NULL),(29,'Mailing Preferences','write_activity_record','s:1:\"1\";',1,NULL,1,NULL,NULL,NULL),(30,'Member Preferences','default_renewal_contribution_page',NULL,1,NULL,1,NULL,NULL,NULL),(31,'Multi Site Preferences','is_enabled','s:1:\"0\";',1,NULL,1,NULL,NULL,NULL),(32,'Multi Site Preferences','uniq_email_per_site','s:1:\"0\";',1,NULL,1,NULL,NULL,NULL),(33,'Multi Site Preferences','domain_group_id','s:1:\"0\";',1,NULL,1,NULL,NULL,NULL),(34,'Multi Site Preferences','event_price_set_domain_id','s:1:\"0\";',1,NULL,1,NULL,NULL,NULL),(35,'Directory Preferences','uploadDir','s:7:\"upload/\";',1,NULL,1,NULL,'2014-01-23 11:35:20',NULL),(36,'Directory Preferences','imageUploadDir','s:19:\"persist/contribute/\";',1,NULL,1,NULL,'2014-01-23 11:35:20',NULL),(37,'Directory Preferences','customFileUploadDir','s:7:\"custom/\";',1,NULL,1,NULL,'2014-01-23 11:35:20',NULL),(38,'Directory Preferences','customTemplateDir',NULL,1,NULL,1,NULL,NULL,NULL),(39,'Directory Preferences','customPHPPathDir',NULL,1,NULL,1,NULL,NULL,NULL),(40,'Directory Preferences','extensionsDir',NULL,1,NULL,1,NULL,NULL,NULL),(41,'URL Preferences','userFrameworkResourceURL',NULL,1,NULL,1,NULL,'2014-01-23 11:35:20',NULL),(42,'URL Preferences','imageUploadURL',NULL,1,NULL,1,NULL,'2014-01-23 11:35:20',NULL),(43,'URL Preferences','customCSSURL',NULL,1,NULL,1,NULL,NULL,NULL),(44,'URL Preferences','extensionsURL',NULL,1,NULL,1,NULL,NULL,NULL); +INSERT INTO `civicrm_setting` (`id`, `group_name`, `name`, `value`, `domain_id`, `contact_id`, `is_domain`, `component_id`, `created_date`, `created_id`) VALUES (1,'CiviCRM Preferences','contact_view_options','s:28:\"123456789101113\";',1,NULL,1,NULL,NULL,NULL),(2,'CiviCRM Preferences','contact_smart_group_display','s:1:\"1\";',1,NULL,1,NULL,NULL,NULL),(3,'CiviCRM Preferences','contact_edit_options','s:37:\"123456789111214151617\";',1,NULL,1,NULL,NULL,NULL),(4,'CiviCRM Preferences','advanced_search_options','s:46:\"123456789101112131516171819\";',1,NULL,1,NULL,NULL,NULL),(5,'CiviCRM Preferences','user_dashboard_options','s:15:\"1234578\";',1,NULL,1,NULL,NULL,NULL),(6,'CiviCRM Preferences','address_options','s:23:\"123456891011\";',1,NULL,1,NULL,NULL,NULL),(7,'CiviCRM Preferences','address_format','s:198:\"{contact.address_name}\n{contact.street_address}\n{contact.supplemental_address_1}\n{contact.supplemental_address_2}\n{contact.city}{, }{contact.state_province}{ }{contact.postal_code}\n{contact.country}\";',1,NULL,1,NULL,NULL,NULL),(8,'CiviCRM Preferences','mailing_format','s:195:\"{contact.addressee}\n{contact.street_address}\n{contact.supplemental_address_1}\n{contact.supplemental_address_2}\n{contact.city}{, }{contact.state_province}{ }{contact.postal_code}\n{contact.country}\";',1,NULL,1,NULL,NULL,NULL),(9,'CiviCRM Preferences','display_name_format','s:102:\"{contact.individual_prefix}{ }{contact.first_name}{ }{contact.last_name}{ }{contact.individual_suffix}\";',1,NULL,1,NULL,NULL,NULL),(10,'CiviCRM Preferences','sort_name_format','s:43:\"{contact.last_name}{, }{contact.first_name}\";',1,NULL,1,NULL,NULL,NULL),(11,'CiviCRM Preferences','editor_id','s:1:\"2\";',1,NULL,1,NULL,NULL,NULL),(12,'CiviCRM Preferences','contact_ajax_check_similar','s:1:\"1\";',1,NULL,1,NULL,NULL,NULL),(13,'CiviCRM Preferences','activity_assignee_notification','s:1:\"1\";',1,NULL,1,NULL,NULL,NULL),(14,'CiviCRM Preferences','activity_assignee_notification_ics','s:1:\"0\";',1,NULL,1,NULL,NULL,NULL),(15,'CiviCRM Preferences','contact_autocomplete_options','s:5:\"12\";',1,NULL,1,NULL,NULL,NULL),(16,'CiviCRM Preferences','contact_reference_options','s:5:\"12\";',1,NULL,1,NULL,NULL,NULL),(17,'Address Standardization Preferences','address_standardization_provider',NULL,1,NULL,1,NULL,NULL,NULL),(18,'Address Standardization Preferences','address_standardization_userid',NULL,1,NULL,1,NULL,NULL,NULL),(19,'Address Standardization Preferences','address_standardization_url',NULL,1,NULL,1,NULL,NULL,NULL),(20,'Campaign Preferences','tag_unconfirmed','s:11:\"Unconfirmed\";',1,NULL,1,NULL,NULL,NULL),(21,'Campaign Preferences','petition_contacts','s:17:\"Petition Contacts\";',1,NULL,1,NULL,NULL,NULL),(22,'Event Preferences','enable_cart','s:1:\"0\";',1,NULL,1,NULL,NULL,NULL),(23,'Mailing Preferences','profile_double_optin','s:1:\"1\";',1,NULL,1,NULL,NULL,NULL),(24,'Mailing Preferences','profile_add_to_group_double_optin','s:1:\"0\";',1,NULL,1,NULL,NULL,NULL),(25,'Mailing Preferences','track_civimail_replies','s:1:\"0\";',1,NULL,1,NULL,NULL,NULL),(26,'Mailing Preferences','civimail_workflow','s:1:\"0\";',1,NULL,1,NULL,NULL,NULL),(27,'Mailing Preferences','civimail_server_wide_lock','s:1:\"0\";',1,NULL,1,NULL,NULL,NULL),(28,'Mailing Preferences','mailing_backend','a:1:{s:15:\"outBound_option\";s:1:\"3\";}',1,NULL,1,NULL,NULL,NULL),(29,'Mailing Preferences','write_activity_record','s:1:\"1\";',1,NULL,1,NULL,NULL,NULL),(30,'Member Preferences','default_renewal_contribution_page',NULL,1,NULL,1,NULL,NULL,NULL),(31,'Multi Site Preferences','is_enabled','s:1:\"0\";',1,NULL,1,NULL,NULL,NULL),(32,'Multi Site Preferences','uniq_email_per_site','s:1:\"0\";',1,NULL,1,NULL,NULL,NULL),(33,'Multi Site Preferences','domain_group_id','s:1:\"0\";',1,NULL,1,NULL,NULL,NULL),(34,'Multi Site Preferences','event_price_set_domain_id','s:1:\"0\";',1,NULL,1,NULL,NULL,NULL),(35,'Directory Preferences','uploadDir','s:7:\"upload/\";',1,NULL,1,NULL,'2014-01-28 06:13:36',NULL),(36,'Directory Preferences','imageUploadDir','s:19:\"persist/contribute/\";',1,NULL,1,NULL,'2014-01-28 06:13:36',NULL),(37,'Directory Preferences','customFileUploadDir','s:7:\"custom/\";',1,NULL,1,NULL,'2014-01-28 06:13:36',NULL),(38,'Directory Preferences','customTemplateDir',NULL,1,NULL,1,NULL,NULL,NULL),(39,'Directory Preferences','customPHPPathDir',NULL,1,NULL,1,NULL,NULL,NULL),(40,'Directory Preferences','extensionsDir',NULL,1,NULL,1,NULL,NULL,NULL),(41,'URL Preferences','userFrameworkResourceURL',NULL,1,NULL,1,NULL,'2014-01-28 06:13:36',NULL),(42,'URL Preferences','imageUploadURL',NULL,1,NULL,1,NULL,'2014-01-28 06:13:36',NULL),(43,'URL Preferences','customCSSURL',NULL,1,NULL,1,NULL,NULL,NULL),(44,'URL Preferences','extensionsURL',NULL,1,NULL,1,NULL,NULL,NULL); /*!40000 ALTER TABLE `civicrm_setting` ENABLE KEYS */; UNLOCK TABLES; @@ -1292,7 +1292,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,172,2,'2013-10-09 09:17:37','Email','Added',NULL),(2,88,2,'2013-09-28 06:17:29','Email','Added',NULL),(3,85,2,'2013-09-13 02:20:55','Email','Added',NULL),(4,146,2,'2013-07-17 09:41:06','Admin','Added',NULL),(5,112,2,'2013-07-12 05:48:43','Email','Added',NULL),(6,113,2,'2013-04-23 09:18:26','Admin','Added',NULL),(7,103,2,'2013-07-15 02:18:34','Email','Added',NULL),(8,30,2,'2014-01-02 09:01:08','Admin','Added',NULL),(9,81,2,'2013-10-19 03:11:04','Admin','Added',NULL),(10,137,2,'2013-02-21 05:50:38','Email','Added',NULL),(11,169,2,'2013-12-31 07:20:29','Admin','Added',NULL),(12,125,2,'2013-02-01 10:01:19','Email','Added',NULL),(13,177,2,'2013-11-30 08:22:46','Email','Added',NULL),(14,152,2,'2013-05-04 01:05:46','Admin','Added',NULL),(15,159,2,'2013-09-26 10:07:39','Admin','Added',NULL),(16,3,2,'2013-08-22 01:50:45','Admin','Added',NULL),(17,124,2,'2013-05-08 07:38:40','Email','Added',NULL),(18,92,2,'2013-10-10 10:49:52','Admin','Added',NULL),(19,44,2,'2013-05-29 01:04:39','Admin','Added',NULL),(20,16,2,'2013-07-21 04:54:16','Email','Added',NULL),(21,93,2,'2013-05-28 02:41:13','Admin','Added',NULL),(22,150,2,'2013-06-21 02:14:53','Email','Added',NULL),(23,89,2,'2013-04-09 10:36:35','Email','Added',NULL),(24,4,2,'2013-11-01 11:08:37','Admin','Added',NULL),(25,164,2,'2013-12-03 08:06:46','Admin','Added',NULL),(26,90,2,'2013-03-20 10:59:33','Admin','Added',NULL),(27,67,2,'2013-08-24 09:06:14','Admin','Added',NULL),(28,151,2,'2013-07-07 09:54:58','Admin','Added',NULL),(29,82,2,'2014-01-22 04:57:18','Email','Added',NULL),(30,42,2,'2013-03-27 10:36:57','Admin','Added',NULL),(31,57,2,'2013-02-14 03:55:30','Email','Added',NULL),(32,66,2,'2013-09-16 09:02:38','Admin','Added',NULL),(33,188,2,'2013-07-10 12:31:40','Email','Added',NULL),(34,160,2,'2013-03-30 10:36:18','Email','Added',NULL),(35,28,2,'2013-03-18 07:08:54','Email','Added',NULL),(36,189,2,'2013-12-17 11:09:59','Email','Added',NULL),(37,70,2,'2014-01-04 07:36:13','Email','Added',NULL),(38,201,2,'2013-06-21 01:17:26','Admin','Added',NULL),(39,156,2,'2013-06-29 12:21:03','Email','Added',NULL),(40,166,2,'2013-08-17 02:18:22','Admin','Added',NULL),(41,190,2,'2013-05-08 12:11:37','Email','Added',NULL),(42,127,2,'2014-01-15 11:50:51','Admin','Added',NULL),(43,49,2,'2013-02-02 01:24:26','Email','Added',NULL),(44,91,2,'2013-06-26 05:08:26','Email','Added',NULL),(45,196,2,'2013-06-24 01:57:30','Email','Added',NULL),(46,173,2,'2013-09-14 12:12:47','Email','Added',NULL),(47,55,2,'2013-07-24 02:52:04','Admin','Added',NULL),(48,83,2,'2013-12-16 10:04:37','Admin','Added',NULL),(49,99,2,'2014-01-23 10:54:41','Admin','Added',NULL),(50,128,2,'2013-05-18 07:28:32','Email','Added',NULL),(51,110,2,'2013-02-20 02:47:35','Admin','Added',NULL),(52,36,2,'2013-09-05 11:13:57','Email','Added',NULL),(53,75,2,'2013-09-29 12:22:44','Email','Added',NULL),(54,51,2,'2013-06-23 07:19:10','Email','Added',NULL),(55,167,2,'2013-08-30 08:09:24','Admin','Added',NULL),(56,76,2,'2013-05-11 04:32:55','Admin','Added',NULL),(57,45,2,'2013-07-21 07:51:33','Email','Added',NULL),(58,77,2,'2013-10-31 07:49:49','Email','Added',NULL),(59,114,2,'2013-06-06 02:16:54','Admin','Added',NULL),(60,102,2,'2013-10-28 04:33:25','Email','Added',NULL),(61,11,3,'2013-09-16 10:01:55','Email','Added',NULL),(62,168,3,'2013-07-13 10:55:23','Admin','Added',NULL),(63,135,3,'2013-07-30 02:41:38','Admin','Added',NULL),(64,118,3,'2014-01-15 07:16:49','Admin','Added',NULL),(65,143,3,'2013-04-01 01:00:41','Email','Added',NULL),(66,192,3,'2013-12-07 07:29:01','Admin','Added',NULL),(67,63,3,'2013-07-24 07:37:38','Admin','Added',NULL),(68,18,3,'2013-08-07 07:26:25','Email','Added',NULL),(69,174,3,'2013-08-11 08:13:47','Email','Added',NULL),(70,171,3,'2013-03-14 02:56:09','Admin','Added',NULL),(71,87,3,'2013-07-26 08:49:44','Admin','Added',NULL),(72,185,3,'2013-12-15 06:27:15','Email','Added',NULL),(73,120,3,'2013-12-05 05:41:21','Email','Added',NULL),(74,94,3,'2013-07-06 09:06:52','Email','Added',NULL),(75,41,3,'2013-11-07 11:59:39','Email','Added',NULL),(76,172,4,'2014-01-01 03:19:36','Admin','Added',NULL),(77,30,4,'2013-06-12 01:05:59','Admin','Added',NULL),(78,159,4,'2013-10-27 01:55:05','Email','Added',NULL),(79,150,4,'2013-09-10 05:50:05','Email','Added',NULL),(80,82,4,'2013-03-07 09:28:11','Email','Added',NULL),(81,189,4,'2013-08-29 09:55:28','Admin','Added',NULL),(82,49,4,'2013-07-13 08:04:06','Admin','Added',NULL),(83,128,4,'2013-02-23 03:11:26','Email','Added',NULL); +INSERT INTO `civicrm_subscription_history` (`id`, `contact_id`, `group_id`, `date`, `method`, `status`, `tracking`) VALUES (1,34,2,'2013-01-31 02:29:10','Email','Added',NULL),(2,192,2,'2013-08-07 10:00:10','Admin','Added',NULL),(3,30,2,'2013-10-13 03:00:40','Admin','Added',NULL),(4,54,2,'2013-09-06 07:56:15','Admin','Added',NULL),(5,112,2,'2013-12-31 12:02:04','Admin','Added',NULL),(6,99,2,'2013-12-11 07:11:20','Email','Added',NULL),(7,41,2,'2013-12-26 04:02:37','Email','Added',NULL),(8,178,2,'2013-09-08 07:15:33','Admin','Added',NULL),(9,29,2,'2013-11-29 09:57:13','Admin','Added',NULL),(10,180,2,'2013-06-23 10:28:03','Email','Added',NULL),(11,66,2,'2013-04-28 11:39:16','Admin','Added',NULL),(12,32,2,'2013-02-15 07:44:52','Email','Added',NULL),(13,134,2,'2013-09-04 05:35:23','Email','Added',NULL),(14,26,2,'2013-08-09 07:40:28','Email','Added',NULL),(15,165,2,'2013-04-02 01:46:58','Admin','Added',NULL),(16,179,2,'2013-11-08 05:17:58','Email','Added',NULL),(17,159,2,'2013-12-18 08:50:13','Email','Added',NULL),(18,183,2,'2014-01-05 01:47:05','Admin','Added',NULL),(19,55,2,'2013-04-02 09:52:37','Admin','Added',NULL),(20,42,2,'2013-09-05 03:58:39','Admin','Added',NULL),(21,8,2,'2013-02-02 08:39:03','Email','Added',NULL),(22,86,2,'2013-04-04 04:09:08','Admin','Added',NULL),(23,139,2,'2013-06-17 08:06:45','Admin','Added',NULL),(24,116,2,'2013-11-19 11:39:42','Email','Added',NULL),(25,52,2,'2013-12-15 08:45:38','Admin','Added',NULL),(26,186,2,'2013-08-24 10:23:11','Admin','Added',NULL),(27,108,2,'2013-12-15 07:56:00','Email','Added',NULL),(28,24,2,'2013-12-27 10:19:21','Email','Added',NULL),(29,146,2,'2013-05-20 08:47:04','Email','Added',NULL),(30,3,2,'2013-12-25 10:39:29','Admin','Added',NULL),(31,69,2,'2013-07-10 05:38:27','Admin','Added',NULL),(32,89,2,'2013-09-05 12:30:03','Email','Added',NULL),(33,172,2,'2013-06-27 10:56:55','Email','Added',NULL),(34,80,2,'2013-04-02 09:09:07','Email','Added',NULL),(35,182,2,'2013-08-20 03:15:41','Email','Added',NULL),(36,131,2,'2013-02-25 07:11:17','Email','Added',NULL),(37,193,2,'2014-01-21 07:58:09','Email','Added',NULL),(38,82,2,'2013-08-18 08:54:15','Admin','Added',NULL),(39,174,2,'2013-09-29 02:00:31','Admin','Added',NULL),(40,191,2,'2013-11-23 03:11:56','Email','Added',NULL),(41,27,2,'2013-04-12 11:30:55','Email','Added',NULL),(42,175,2,'2013-12-04 11:44:30','Email','Added',NULL),(43,123,2,'2013-06-17 05:03:09','Admin','Added',NULL),(44,189,2,'2014-01-14 02:29:05','Admin','Added',NULL),(45,121,2,'2013-02-03 06:49:40','Admin','Added',NULL),(46,133,2,'2013-04-18 04:26:35','Admin','Added',NULL),(47,194,2,'2013-12-06 01:26:38','Admin','Added',NULL),(48,152,2,'2013-11-27 10:17:17','Admin','Added',NULL),(49,7,2,'2014-01-19 04:51:19','Email','Added',NULL),(50,92,2,'2013-02-26 06:30:48','Email','Added',NULL),(51,83,2,'2013-11-13 01:25:57','Admin','Added',NULL),(52,16,2,'2013-05-10 10:04:27','Admin','Added',NULL),(53,171,2,'2013-08-29 06:51:27','Email','Added',NULL),(54,43,2,'2013-03-27 09:24:19','Email','Added',NULL),(55,73,2,'2013-02-26 12:30:18','Admin','Added',NULL),(56,118,2,'2013-07-31 08:05:32','Admin','Added',NULL),(57,12,2,'2013-07-06 04:38:26','Email','Added',NULL),(58,38,2,'2014-01-27 07:20:55','Admin','Added',NULL),(59,132,2,'2013-10-11 07:09:09','Email','Added',NULL),(60,127,2,'2013-03-13 12:48:06','Email','Added',NULL),(61,61,3,'2013-08-10 01:26:56','Admin','Added',NULL),(62,77,3,'2013-07-30 06:20:35','Email','Added',NULL),(63,158,3,'2013-05-28 10:46:46','Email','Added',NULL),(64,135,3,'2013-04-23 11:31:58','Email','Added',NULL),(65,185,3,'2013-03-18 09:41:07','Admin','Added',NULL),(66,151,3,'2013-04-12 03:55:18','Admin','Added',NULL),(67,75,3,'2013-11-02 07:01:49','Admin','Added',NULL),(68,101,3,'2013-06-16 08:18:15','Email','Added',NULL),(69,81,3,'2013-10-09 03:32:22','Email','Added',NULL),(70,97,3,'2014-01-15 08:18:50','Admin','Added',NULL),(71,25,3,'2013-10-27 11:13:52','Email','Added',NULL),(72,150,3,'2013-03-27 02:09:49','Email','Added',NULL),(73,141,3,'2013-05-28 10:49:42','Email','Added',NULL),(74,37,3,'2013-09-25 02:09:42','Email','Added',NULL),(75,137,3,'2013-03-05 10:46:18','Email','Added',NULL),(76,34,4,'2013-10-26 05:32:31','Admin','Added',NULL),(77,178,4,'2013-08-13 03:50:04','Email','Added',NULL),(78,165,4,'2013-10-07 09:55:48','Admin','Added',NULL),(79,86,4,'2013-10-13 12:10:09','Admin','Added',NULL),(80,146,4,'2013-10-25 01:12:00','Admin','Added',NULL),(81,131,4,'2014-01-01 10:46:00','Email','Added',NULL),(82,123,4,'2013-05-29 10:30:37','Email','Added',NULL),(83,92,4,'2013-05-14 10:30:34','Admin','Added',NULL); /*!40000 ALTER TABLE `civicrm_subscription_history` ENABLE KEYS */; UNLOCK TABLES; @@ -1379,7 +1379,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,157,'http://secondsystems.org',1),(2,132,'http://progressiveagriculture.org',1),(3,187,'http://fwmusicalliance.org',1),(4,142,'http://urbanhealthservices.org',1),(5,104,'http://globalinitiative.org',1),(6,53,'http://ohiopartnership.org',1),(7,119,'http://ecactionalliance.org',1),(8,175,'http://virginiatrust.org',1),(9,12,'http://collegesolutions.org',1),(10,69,'http://progressivearts.org',1),(11,179,'http://statesassociation.org',1); +INSERT INTO `civicrm_website` (`id`, `contact_id`, `url`, `website_type_id`) VALUES (1,45,'http://maplesoftware.org',1),(2,9,'http://minnesotaschool.org',1),(3,90,'http://ohiosolutions.org',1),(4,46,'http://globalliteracyfellowship.org',1),(5,160,'http://wewokaalliance.org',1),(6,35,'http://arleealliance.org',1),(7,177,'http://rudyardmusicfund.org',1),(8,10,'http://globalwellnessnetwork.org',1),(9,144,'http://friendsfamilycenter.org',1),(10,5,'http://cadellacademy.org',1),(11,64,'http://mlkingmusic.org',1),(12,22,'http://unitedsoftwarecenter.org',1),(13,49,'http://creativefamily.org',1),(14,153,'http://wrhealthtrust.org',1),(15,63,'http://unitedinitiative.org',1),(16,23,'http://urbanfood.org',1); /*!40000 ALTER TABLE `civicrm_website` ENABLE KEYS */; UNLOCK TABLES; @@ -1411,7 +1411,7 @@ UNLOCK TABLES; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; --- Dump completed on 2014-01-23 23:38:20 +-- Dump completed on 2014-01-28 18:16:40 -- +--------------------------------------------------------------------+ -- | CiviCRM version 3.4 | -- +--------------------------------------------------------------------+ diff --git a/templates/CRM/Pledge/Form/Search/Common.tpl b/templates/CRM/Pledge/Form/Search/Common.tpl index ae82cb7b83..07e78649e7 100644 --- a/templates/CRM/Pledge/Form/Search/Common.tpl +++ b/templates/CRM/Pledge/Form/Search/Common.tpl @@ -77,10 +77,7 @@ - {$form.pledge_in_honor_of.label} -
{$form.pledge_in_honor_of.html} - - +
{$form.pledge_test.label} {help id="is-test" file="CRM/Contact/Form/Search/Advanced"}   {$form.pledge_test.html} ({ts}clear{/ts}) diff --git a/tests/phpunit/CiviTest/CiviSeleniumTestCase.php b/tests/phpunit/CiviTest/CiviSeleniumTestCase.php index 05a4b7277f..868b4e106a 100644 --- a/tests/phpunit/CiviTest/CiviSeleniumTestCase.php +++ b/tests/phpunit/CiviTest/CiviSeleniumTestCase.php @@ -874,6 +874,7 @@ class CiviSeleniumTestCase extends PHPUnit_Extensions_SeleniumTestCase { $this->click('honor_block_is_active'); $this->type('honor_block_title', "Honoree Section Title $hash"); $this->type('honor_block_text', "Honoree Introductory Message $hash"); + $this->select('crmasmSelect0', "label=Household"); } // is confirm enabled? it starts out enabled, so uncheck it if false @@ -1030,11 +1031,11 @@ class CiviSeleniumTestCase extends PHPUnit_Extensions_SeleniumTestCase { $this->waitForElementPresent('_qf_Custom_next-bottom'); if ($profilePreId) { - $this->select('custom_pre_id', "value={$profilePreId}"); + $this->select('css=tr.crm-contribution-contributionpage-custom-form-block-custom_pre_id span.crm-profile-selector-select select', "value={$profilePreId}"); } if ($profilePostId) { - $this->select('custom_post_id', "value={$profilePostId}"); + $this->select('css=tr.crm-contribution-contributionpage-custom-form-block-custom_post_id span.crm-profile-selector-select select', "value={$profilePostId}"); } $this->click('_qf_Custom_next-bottom'); diff --git a/tests/phpunit/WebTest/Contribute/OnlineContributionTest.php b/tests/phpunit/WebTest/Contribute/OnlineContributionTest.php index df0bf94a81..c7d287c830 100644 --- a/tests/phpunit/WebTest/Contribute/OnlineContributionTest.php +++ b/tests/phpunit/WebTest/Contribute/OnlineContributionTest.php @@ -106,12 +106,11 @@ class WebTest_Contribute_OnlineContributionTest extends CiviSeleniumTestCase { // Honoree Info $this->click("xpath=id('Main')/div[2]/fieldset/div[2]/div/label[text()='In Honor of']"); - $this->waitForElementPresent("honor_email"); - $this->select("honor_prefix_id", "label=Ms."); - $this->type("honor_first_name", $honorFirstName); - $this->type("honor_last_name", $honorLastName); - $this->type("honor_email", $honorEmail); + $this->select("honor[prefix_id]", "label=Ms."); + $this->type("honor[first_name]", $honorFirstName); + $this->type("honor[last_name]", $honorLastName); + $this->type("honor[email-1]", $honorEmail); //Credit Card Info $this->select("credit_card_type", "value=Visa"); @@ -151,10 +150,13 @@ class WebTest_Contribute_OnlineContributionTest extends CiviSeleniumTestCase { 'Financial Type' => 'Donation', 'Total Amount' => '100.00', 'Contribution Status' => 'Completed', - 'In Honor of' => $honorDisplayName ); $this->webtestVerifyTabularData($expected); + //View Soft Credit record of type 'Honor of' + $this->waitForTextPresent($honorDisplayName); + $this->waitForTextPresent('100.00 (In Honor of)'); + // Check for Honoree contact created $this->click("css=input#sort_name_navigation"); $this->type("css=input#sort_name_navigation", $honorSortName); @@ -215,7 +217,7 @@ class WebTest_Contribute_OnlineContributionTest extends CiviSeleniumTestCase { $widget, $pcp ); - + $this->openCiviPage("admin/contribute/amount", "reset=1&action=update&id=$pageId", '_qf_Amount_cancel-bottom'); $this->type('label_1', "Label $hash"); $this->type('value_1', 0); @@ -223,7 +225,7 @@ class WebTest_Contribute_OnlineContributionTest extends CiviSeleniumTestCase { //Contribution using Contribution Options $this->_doContributionAndVerifyData($pageId); - + //add priceset $this->openCiviPage("admin/price", "reset=1&action=add", '_qf_Set_next-bottom'); $this->type('title', "Test Priceset $rand"); @@ -242,7 +244,7 @@ class WebTest_Contribute_OnlineContributionTest extends CiviSeleniumTestCase { $this->clickLink('_qf_Amount_upload_done-bottom'); //Contribution using priceset - $this->_doContributionAndVerifyData($pageId, TRUE); + $this->_doContributionAndVerifyData($pageId, TRUE); } function _doContributionAndVerifyData($pageId, $priceSet = FALSE) { @@ -283,7 +285,7 @@ class WebTest_Contribute_OnlineContributionTest extends CiviSeleniumTestCase { $this->clickLink("_qf_Confirm_next-bottom", NULL); - + //login to check contribution // Log in using webtestLogin() method diff --git a/xml/templates/message_templates/contribution_offline_receipt_html.tpl b/xml/templates/message_templates/contribution_offline_receipt_html.tpl index 6d4162a7f7..985ddc5585 100644 --- a/xml/templates/message_templates/contribution_offline_receipt_html.tpl +++ b/xml/templates/message_templates/contribution_offline_receipt_html.tpl @@ -171,6 +171,26 @@ {/if} + {if $softCreditTypes and $softCredits} + {foreach from=$softCreditTypes item=softCreditType key=n} + + + {$softCreditType} + + + {foreach from=$softCredits.$n item=value key=label} + + + {$label} + + + {$value} + + + {/foreach} + {/foreach} + {/if} + {if $customGroup} {foreach from=$customGroup item=value key=customName} @@ -191,22 +211,6 @@ {/foreach} {/if} - {if $formValues.honor_first_name} - - - {$formValues.honor_type} - - - - - {$formValues.honor_prefix} {$formValues.honor_first_name} {$formValues.honor_last_name}
- {if $formValues.honor_email} - {ts}Honoree Email{/ts}: {$formValues.honor_email} - {/if} - - - {/if} - {if $formValues.product_name} diff --git a/xml/templates/message_templates/contribution_offline_receipt_text.tpl b/xml/templates/message_templates/contribution_offline_receipt_text.tpl index 8d50f2b254..91e39addc7 100644 --- a/xml/templates/message_templates/contribution_offline_receipt_text.tpl +++ b/xml/templates/message_templates/contribution_offline_receipt_text.tpl @@ -68,15 +68,16 @@ {/foreach} {/foreach} {/if} -{if $formValues.honor_first_name} +{if $softCreditTypes and $softCredits} +{foreach from=$softCreditTypes item=softCreditType key=n} =========================================================== -{$formValues.honor_type} +{softCreditType} =========================================================== -{$formValues.honor_prefix} {$formValues.honor_first_name} {$formValues.honor_last_name} -{if $formValues.honor_email} -{ts}Honoree Email{/ts}: {$formValues.honor_email} -{/if} +{foreach from=$softCredits.$n item=value key=label} +{$label}: {$value} +{/foreach} +{/foreach} {/if} {if $formValues.product_name} diff --git a/xml/templates/message_templates/contribution_online_receipt_html.tpl b/xml/templates/message_templates/contribution_online_receipt_html.tpl index 48bde393ba..547823ac92 100644 --- a/xml/templates/message_templates/contribution_online_receipt_html.tpl +++ b/xml/templates/message_templates/contribution_online_receipt_html.tpl @@ -150,24 +150,19 @@ {if $honor_block_is_active} - {$honor_type} + {$soft_credit_type} - - - {$honor_prefix} {$honor_first_name} {$honor_last_name} - - - {if $honor_email} - - - {ts}Honoree Email{/ts} - - - {$honor_email} - - - {/if} + {foreach from=$honoreeProfile item=value key=label} + + + {$label} + + + {$value} + + + {/foreach} {/if} {if $pcpBlock} diff --git a/xml/templates/message_templates/contribution_online_receipt_text.tpl b/xml/templates/message_templates/contribution_online_receipt_text.tpl index ae4f6a5d4c..2c85b65437 100644 --- a/xml/templates/message_templates/contribution_online_receipt_text.tpl +++ b/xml/templates/message_templates/contribution_online_receipt_text.tpl @@ -60,14 +60,13 @@ {/if} -{if $honor_block_is_active } +{if $honor_block_is_active} =========================================================== -{$honor_type} +{$soft_credit_type} =========================================================== -{$honor_prefix} {$honor_first_name} {$honor_last_name} -{if $honor_email} -{ts}Honoree Email{/ts}: {$honor_email} -{/if} +{foreach from=$honoreeProfile item=value key=label} +{$label}: {$value} +{/foreach} {/if} {if $pcpBlock} diff --git a/xml/templates/message_templates/membership_online_receipt_html.tpl b/xml/templates/message_templates/membership_online_receipt_html.tpl index c56152bbaa..af216f8956 100644 --- a/xml/templates/message_templates/membership_online_receipt_html.tpl +++ b/xml/templates/message_templates/membership_online_receipt_html.tpl @@ -277,24 +277,19 @@ {if $honor_block_is_active} - {$honor_type} + {$soft_credit_type} - - - {$honor_prefix} {$honor_first_name} {$honor_last_name} - - - {if $honor_email} - - - {ts}Honoree Email{/ts} - - - {$honor_email} - - - {/if} + {foreach from=$honoreeProfile item=value key=label} + + + {$label} + + + {$value} + + + {/foreach} {/if} {if $pcpBlock} diff --git a/xml/templates/message_templates/membership_online_receipt_text.tpl b/xml/templates/message_templates/membership_online_receipt_text.tpl index 957ac2fe23..481eaf84a6 100644 --- a/xml/templates/message_templates/membership_online_receipt_text.tpl +++ b/xml/templates/message_templates/membership_online_receipt_text.tpl @@ -102,12 +102,11 @@ {if $honor_block_is_active } =========================================================== -{$honor_type} +{$soft_credit_type} =========================================================== -{$honor_prefix} {$honor_first_name} {$honor_last_name} -{if $honor_email} -{ts}Honoree Email{/ts}: {$honor_email} -{/if} +{foreach from=$honoreeProfile item=value key=label} +{$label}: {$value} +{/foreach} {/if} {if $pcpBlock} diff --git a/xml/templates/message_templates/pledge_acknowledge_html.tpl b/xml/templates/message_templates/pledge_acknowledge_html.tpl index b4e42e170f..c0727c4078 100644 --- a/xml/templates/message_templates/pledge_acknowledge_html.tpl +++ b/xml/templates/message_templates/pledge_acknowledge_html.tpl @@ -85,21 +85,6 @@ or need to modify your payment schedule.{/ts}

- {if $honor_block_is_active} - - - {$honor_type} - - - - -

{$honor_prefix} {$honor_first_name} {$honor_last_name}

- {if $honor_email} -

{ts}Honoree Email{/ts}: {$honor_email}

- {/if} - - - {/if} {if $customGroup} {foreach from=$customGroup item=value key=customName} diff --git a/xml/templates/message_templates/pledge_acknowledge_text.tpl b/xml/templates/message_templates/pledge_acknowledge_text.tpl index f8803f5d3f..571f1b1bea 100644 --- a/xml/templates/message_templates/pledge_acknowledge_text.tpl +++ b/xml/templates/message_templates/pledge_acknowledge_text.tpl @@ -33,16 +33,6 @@ {ts 1=$domain.phone 2=$domain.email}Please contact us at %1 or send email to %2 if you have questions or need to modify your payment schedule.{/ts} -{if $honor_block_is_active} -=========================================================== -{$honor_type} -=========================================================== -{$honor_prefix} {$honor_first_name} {$honor_last_name} -{if $honor_email} -{ts}Honoree Email{/ts}: {$honor_email} -{/if} -{/if} - {if $customGroup} {foreach from=$customGroup item=value key=customName} =========================================================== -- 2.25.1