diff --git a/civicrm.php b/civicrm.php index a4dbcfaec30135e5223c6cd9ff78cfa73c4eae80..0a7fc763512171da20616c97834323686906b87a 100644 --- a/civicrm.php +++ b/civicrm.php @@ -2,7 +2,7 @@ /** * Plugin Name: CiviCRM * Description: CiviCRM - Growing and Sustaining Relationships - * Version: 5.58.1 + * Version: 5.59.0 * Requires at least: 4.9 * Requires PHP: 7.3 * Author: CiviCRM LLC @@ -36,7 +36,7 @@ if (!defined('ABSPATH')) { } // Set version here: changing it forces Javascript and CSS to reload. -define('CIVICRM_PLUGIN_VERSION', '5.58.1'); +define('CIVICRM_PLUGIN_VERSION', '5.59.0'); // Store reference to this file. if (!defined('CIVICRM_PLUGIN_FILE')) { diff --git a/civicrm/CRM/ACL/API.php b/civicrm/CRM/ACL/API.php index a02fb38a7cd68c5796727d06cb16a62bd266bb0d..1bafc8b8b615cc9d3c20ae51c83350926b33ef11 100644 --- a/civicrm/CRM/ACL/API.php +++ b/civicrm/CRM/ACL/API.php @@ -140,7 +140,7 @@ class CRM_ACL_API { * * @param string $tableName * @param array|null $allGroups - * @param array|null $includedGroups + * @param array $includedGroups * * @return array * the ids of the groups for which the user has permissions @@ -150,8 +150,12 @@ class CRM_ACL_API { $contactID = NULL, $tableName = 'civicrm_saved_search', $allGroups = NULL, - $includedGroups = NULL + $includedGroups = [] ) { + if (!is_array($includedGroups)) { + CRM_Core_Error::deprecatedWarning('pass an array for included groups'); + $includedGroups = (array) $includedGroups; + } if ($contactID == NULL) { $contactID = CRM_Core_Session::getLoggedInContactID(); } diff --git a/civicrm/CRM/ACL/BAO/ACL.php b/civicrm/CRM/ACL/BAO/ACL.php index 58b388b7330c13b08b899aa10b0d1de5e61b0b0c..d1166f87ed674171b131ee683af6345de5f3493e 100644 --- a/civicrm/CRM/ACL/BAO/ACL.php +++ b/civicrm/CRM/ACL/BAO/ACL.php @@ -324,7 +324,7 @@ SELECT g.* * @param int $contactID * @param string $tableName * @param array|null $allGroups - * @param array|null $includedGroups + * @param array $includedGroups * * @return array */ @@ -333,9 +333,13 @@ SELECT g.* $contactID = NULL, $tableName = 'civicrm_saved_search', $allGroups = NULL, - $includedGroups = NULL + $includedGroups = [] ) { - $userCacheKey = "{$contactID}_{$type}_{$tableName}_" . CRM_Core_Config::domainID() . '_' . md5(implode(',', array_merge((array) $allGroups, (array) $includedGroups))); + if (!is_array($includedGroups)) { + CRM_Core_Error::deprecatedWarning('pass an array for included groups'); + $includedGroups = (array) $includedGroups; + } + $userCacheKey = "{$contactID}_{$type}_{$tableName}_" . CRM_Core_Config::domainID() . '_' . md5(implode(',', array_merge((array) $allGroups, $includedGroups))); if (empty(Civi::$statics[__CLASS__]['permissioned_groups'])) { Civi::$statics[__CLASS__]['permissioned_groups'] = []; } @@ -363,9 +367,7 @@ SELECT g.* } } - if (empty($ids) && !empty($includedGroups) && - is_array($includedGroups) - ) { + if (empty($ids) && !empty($includedGroups)) { // This is pretty alarming - we 'sometimes' include all included groups // seems problematic per https://lab.civicrm.org/dev/core/-/issues/1879 $ids = $includedGroups; diff --git a/civicrm/CRM/Admin/Form/PaymentProcessor.php b/civicrm/CRM/Admin/Form/PaymentProcessor.php index 1700337313ee45e33c94c4f36af00070b33eaf5d..2e6a3b99d11093884073dc6140cd8815cb032e1f 100644 --- a/civicrm/CRM/Admin/Form/PaymentProcessor.php +++ b/civicrm/CRM/Admin/Form/PaymentProcessor.php @@ -114,13 +114,13 @@ class CRM_Admin_Form_PaymentProcessor extends CRM_Admin_Form { $this->assign('ppTypeName', $this->_paymentProcessorDAO->name); if ($this->_id) { - $refreshURL = CRM_Utils_System::url('civicrm/admin/paymentProcessor', + $refreshURL = CRM_Utils_System::url('civicrm/admin/paymentProcessor/edit', "reset=1&action=update&id={$this->_id}", FALSE, NULL, FALSE ); } else { - $refreshURL = CRM_Utils_System::url('civicrm/admin/paymentProcessor', + $refreshURL = CRM_Utils_System::url('civicrm/admin/paymentProcessor/edit', "reset=1&action=add", FALSE, NULL, FALSE ); diff --git a/civicrm/CRM/Admin/Page/Job.php b/civicrm/CRM/Admin/Page/Job.php index a521989ae254f3648d73169fb18df3200aa84dea..4808d676e245c6da087f6b991acb3c3a7154c495 100644 --- a/civicrm/CRM/Admin/Page/Job.php +++ b/civicrm/CRM/Admin/Page/Job.php @@ -143,7 +143,7 @@ class CRM_Admin_Page_Job extends CRM_Core_Page_Basic { public function browse() { // check if non-prod mode is enabled. if (CRM_Core_Config::environment() != 'Production') { - CRM_Core_Session::setStatus(ts('Execution of scheduled jobs has been turned off by default since this is a non-production environment. You can override this for particular jobs by adding runInNonProductionEnvironment=TRUE as a parameter.'), ts("Non-production Environment"), "warning", array('expires' => 0)); + CRM_Core_Session::setStatus(ts('Execution of scheduled jobs has been turned off by default since this is a non-production environment. You can override this for particular jobs by adding runInNonProductionEnvironment=TRUE as a parameter. This will ignore email settings for this job and will send actual emails if this job is sending mails!'), ts("Non-production Environment"), "warning", array('expires' => 0)); } else { $cronError = Civi\Api4\System::check(FALSE) diff --git a/civicrm/CRM/Campaign/Form/Task/Release.php b/civicrm/CRM/Campaign/Form/Task/Release.php index 4f5605379943d31f47a382ce26245c4958866c05..8cfb78ba14b284c396a81c64023c18293a2c876f 100644 --- a/civicrm/CRM/Campaign/Form/Task/Release.php +++ b/civicrm/CRM/Campaign/Form/Task/Release.php @@ -21,7 +21,7 @@ class CRM_Campaign_Form_Task_Release extends CRM_Campaign_Form_Task { /** - * Survet id + * Survey id * * @var int */ diff --git a/civicrm/CRM/Case/Form/ActivityView.php b/civicrm/CRM/Case/Form/ActivityView.php index 771d33d498bab4753d2f1e771d80908b69d48c59..44cae6ca68d7480e6edc421d34dbde564e3bd1b2 100644 --- a/civicrm/CRM/Case/Form/ActivityView.php +++ b/civicrm/CRM/Case/Form/ActivityView.php @@ -90,6 +90,7 @@ class CRM_Case_Form_ActivityView extends CRM_Core_Form { $this->assign('latestRevisionID', $latestRevisionID); } else { + $this->assign('revs', 0); if (count($viewPriorActivities) > 1) { $this->assign('activityID', $activityID); } @@ -100,9 +101,7 @@ class CRM_Case_Form_ActivityView extends CRM_Core_Form { } $parentID = CRM_Activity_BAO_Activity::getParentActivity($activityID); - if ($parentID) { - $this->assign('parentID', $parentID); - } + $this->assign('parentID', $parentID ?? NULL); //viewing activity should get diplayed in recent list.CRM-4670 $activityTypeID = CRM_Core_DAO::getFieldValue('CRM_Activity_DAO_Activity', $activityID, 'activity_type_id'); diff --git a/civicrm/CRM/Case/Form/CaseView.php b/civicrm/CRM/Case/Form/CaseView.php index 75b35d48c8e1a436de6029d14cd2706d1c916f99..61a8473f873d14ea8801ce6aeb2c7bce9ce615c7 100644 --- a/civicrm/CRM/Case/Form/CaseView.php +++ b/civicrm/CRM/Case/Form/CaseView.php @@ -25,11 +25,59 @@ class CRM_Case_Form_CaseView extends CRM_Core_Form { */ private $_mergeCases = FALSE; + /** + * Related case view + * + * @var bool + * @internal + */ + public $_showRelatedCases = FALSE; + + /** + * Does user have capabilities to access all cases and activities + * + * @var bool + * @internal + */ + public $_hasAccessToAllCases = FALSE; + + /** + * ID of contact being viewed + * + * @var int + * @internal + */ + public $_contactID; + + /** + * ID of case being viewed + * + * @var int + * @internal + */ + public $_caseID; + + /** + * Various case details, for use in the template + * + * @var array + * @internal + */ + public $_caseDetails = []; + + /** + * The name of the type associated with the current case + * + * @var string + * @internal + */ + public $_caseType; + /** * Set variables up before form is built. */ public function preProcess() { - $this->_showRelatedCases = $_GET['relatedCases'] ?? NULL; + $this->_showRelatedCases = (bool) ($_GET['relatedCases'] ?? FALSE); $xmlProcessorProcess = new CRM_Case_XMLProcessor_Process(); $isMultiClient = $xmlProcessorProcess->getAllowMultipleCaseClients(); @@ -40,7 +88,6 @@ class CRM_Case_Form_CaseView extends CRM_Core_Form { if ($this->_showRelatedCases) { $relatedCases = $this->get('relatedCases'); if (!isset($relatedCases)) { - $cId = CRM_Utils_Request::retrieve('cid', 'Integer'); $caseId = CRM_Utils_Request::retrieve('id', 'Integer'); $relatedCases = CRM_Case_BAO_Case::getRelatedCases($caseId); } diff --git a/civicrm/CRM/Case/Selector/Search.php b/civicrm/CRM/Case/Selector/Search.php index 9b430eea8bfd8d86ba21bae321cfebad4d90888b..d2f958f194bcef0f665dd4f80a9929dbc499150b 100644 --- a/civicrm/CRM/Case/Selector/Search.php +++ b/civicrm/CRM/Case/Selector/Search.php @@ -622,6 +622,8 @@ class CRM_Case_Selector_Search extends CRM_Core_Selector_Base { 'url' => 'civicrm/case/activity/view', 'qs' => 'reset=1&cid=%%cid%%&caseid=%%caseid%%&aid=%%aid%%', 'title' => ts('View'), + 'accessKey' => '', + 'ref' => 'View', ], CRM_Core_Action::UPDATE => [ 'name' => ts('Edit'), @@ -629,6 +631,8 @@ class CRM_Case_Selector_Search extends CRM_Core_Selector_Base { 'qs' => 'reset=1&cid=%%cid%%&caseid=%%caseid%%&id=%%aid%%&action=update%%cxt%%', 'title' => ts('Edit'), 'icon' => 'fa-pencil', + 'accessKey' => '', + 'ref' => 'Edit', ], CRM_Core_Action::DELETE => [ 'name' => ts('Delete'), @@ -636,6 +640,8 @@ class CRM_Case_Selector_Search extends CRM_Core_Selector_Base { 'qs' => 'reset=1&cid=%%cid%%&caseid=%%caseid%%&id=%%aid%%&action=delete%%cxt%%', 'title' => ts('Delete'), 'icon' => 'fa-trash', + 'accessKey' => '', + 'ref' => 'Delete', ], CRM_Core_Action::RENEW => [ 'name' => ts('Restore'), @@ -643,6 +649,8 @@ class CRM_Case_Selector_Search extends CRM_Core_Selector_Base { 'qs' => 'reset=1&cid=%%cid%%&caseid=%%caseid%%&id=%%aid%%&action=renew%%cxt%%', 'title' => ts('Restore'), 'icon' => 'fa-undo', + 'accessKey' => '', + 'ref' => 'Restore', ], CRM_Core_Action::DETACH => [ 'name' => ts('Move To Case'), @@ -650,6 +658,7 @@ class CRM_Case_Selector_Search extends CRM_Core_Selector_Base { 'title' => ts('Move To Case'), 'extra' => 'onclick = "Javascript:fileOnCase( \'move\', %%aid%%, %%caseid%%, this ); return false;"', 'icon' => 'fa-clipboard', + 'accessKey' => '', ], CRM_Core_Action::COPY => [ 'name' => ts('Copy To Case'), @@ -657,6 +666,7 @@ class CRM_Case_Selector_Search extends CRM_Core_Selector_Base { 'title' => ts('Copy To Case'), 'extra' => 'onclick = "Javascript:fileOnCase( \'copy\', %%aid%%, %%caseid%%, this ); return false;"', 'icon' => 'fa-files-o', + 'accessKey' => '', ], ]; } diff --git a/civicrm/CRM/Case/XMLProcessor/Report.php b/civicrm/CRM/Case/XMLProcessor/Report.php index 745a299dd72b9845ff36bfc60502c99b02267d4c..a6fb91e282fbec4b9cb4e368a4e1561544dc6234 100644 --- a/civicrm/CRM/Case/XMLProcessor/Report.php +++ b/civicrm/CRM/Case/XMLProcessor/Report.php @@ -199,7 +199,6 @@ AND ac.case_id = %1 * @return mixed */ public function &getActivityInfo($clientID, $activityID, $anyActivity = FALSE, $redact = 0) { - static $activityInfos = []; if ($redact) { $this->_isRedact = 1; $this->getRedactionRules(); @@ -211,8 +210,8 @@ AND ac.case_id = %1 $index = $index . '_' . $clientID; } - if (!array_key_exists($index, $activityInfos)) { - $activityInfos[$index] = []; + if (!array_key_exists($index, \Civi::$statics[__CLASS__][__FUNCTION__]['activityInfos'] ?? [])) { + \Civi::$statics[__CLASS__][__FUNCTION__]['activityInfos'][$index] = []; $selectCaseActivity = ""; $joinCaseActivity = ""; @@ -249,12 +248,12 @@ WHERE a.id = %1 $activityTypeInfo = $activityTypes[$dao->activity_type_id]; } if ($activityTypeInfo) { - $activityInfos[$index] = $this->getActivity($clientID, $dao, $activityTypeInfo); + \Civi::$statics[__CLASS__][__FUNCTION__]['activityInfos'][$index] = $this->getActivity($clientID, $dao, $activityTypeInfo); } } } - return $activityInfos[$index]; + return \Civi::$statics[__CLASS__][__FUNCTION__]['activityInfos'][$index]; } /** diff --git a/civicrm/CRM/Contact/BAO/Query.php b/civicrm/CRM/Contact/BAO/Query.php index 3200224475c82aa54a6880e8be4e43d48e441f05..86c6ae86fc5da2b59de8b9bae030e5d36733e14c 100644 --- a/civicrm/CRM/Contact/BAO/Query.php +++ b/civicrm/CRM/Contact/BAO/Query.php @@ -5298,10 +5298,6 @@ civicrm_relationship.start_date > {$today} ) { // @todo - remove dateFormat - pretty sure it's never passed in... [$name, $op, $value, $grouping, $wildcard] = $values; - if ($name !== $fieldName && $name !== "{$fieldName}_low" && $name !== "{$fieldName}_high") { - CRM_Core_Error::deprecatedFunctionWarning('Date query builder called unexpectedly'); - return; - } if ($tableName === 'civicrm_contact') { // Special handling for contact table as it has a known alias in advanced search. $tableName = 'contact_a'; @@ -6751,8 +6747,6 @@ AND displayRelType.is_active = 1 * @param string $additionalFromClause * Should be clause with proper joins, effective to reduce where clause load. * - * @param bool $skipOrderAndLimit - * * @return string * * @throws \CRM_Core_Exception @@ -6762,23 +6756,10 @@ AND displayRelType.is_active = 1 $count = FALSE, $includeContactIds = FALSE, $sortByChar = FALSE, $groupContacts = FALSE, $additionalWhereClause = NULL, $sortOrder = NULL, - $additionalFromClause = NULL, $skipOrderAndLimit = FALSE) { + $additionalFromClause = NULL) { $sqlParts = $this->getSearchSQLParts($offset, $rowCount, $sort, $count, $includeContactIds, $sortByChar, $groupContacts, $additionalWhereClause, $sortOrder, $additionalFromClause); - - if ($sortByChar) { - CRM_Core_Error::deprecatedFunctionWarning('sort by char is deprecated - use alphabetQuery method'); - $sqlParts['order_by'] = 'ORDER BY sort_name asc'; - } - - if ($skipOrderAndLimit) { - CRM_Core_Error::deprecatedFunctionWarning('skipOrderAndLimit is deprected - call getSearchSQLParts & construct it in the calling function'); - $query = "{$sqlParts['select']} {$sqlParts['from']} {$sqlParts['where']} {$sqlParts['having']} {$sqlParts['group_by']}"; - } - else { - $query = "{$sqlParts['select']} {$sqlParts['from']} {$sqlParts['where']} {$sqlParts['having']} {$sqlParts['group_by']} {$sqlParts['order_by']} {$sqlParts['limit']}"; - } - return $query; + return "{$sqlParts['select']} {$sqlParts['from']} {$sqlParts['where']} {$sqlParts['having']} {$sqlParts['group_by']} {$sqlParts['order_by']} {$sqlParts['limit']}"; } /** diff --git a/civicrm/CRM/Contact/Form/Task/AlterPreferences.php b/civicrm/CRM/Contact/Form/Task/AlterPreferences.php index fd3a239dd03ecc6f846e84fe616e65e2cdf55769..0e650ad480cf74c2a14493ab484c3a3112f4b4d7 100644 --- a/civicrm/CRM/Contact/Form/Task/AlterPreferences.php +++ b/civicrm/CRM/Contact/Form/Task/AlterPreferences.php @@ -34,7 +34,7 @@ class CRM_Contact_Form_Task_AlterPreferences extends CRM_Contact_Form_Task { $privacyOptions = CRM_Core_SelectValues::privacy(); foreach ($privacyOptions as $prefID => $prefName) { - $this->_prefElement = &$this->addElement('checkbox', "pref[$prefID]", NULL, $prefName); + $this->addElement('checkbox', "pref[$prefID]", NULL, $prefName); } $this->addDefaultButtons(ts('Set Privacy Options')); diff --git a/civicrm/CRM/Contact/Form/Task/PDFLetterCommon.php b/civicrm/CRM/Contact/Form/Task/PDFLetterCommon.php index eb2e058e99eaa5a8664ff82c14f3550e08541a63..b4df6126da00c3191d726b0592f5aee9a4cc5013 100644 --- a/civicrm/CRM/Contact/Form/Task/PDFLetterCommon.php +++ b/civicrm/CRM/Contact/Form/Task/PDFLetterCommon.php @@ -109,30 +109,6 @@ class CRM_Contact_Form_Task_PDFLetterCommon extends CRM_Core_Form_Task_PDFLetter return [$formValues, $categories, $html_message, $messageToken, $returnProperties]; } - /** - * Convert from a vague-type/file-extension to mime-type. - * - * @param string $type - * @return string - * @throws \CRM_Core_Exception - * - * @deprecated - */ - private static function getMimeType($type) { - $mimeTypes = [ - 'pdf' => 'application/pdf', - 'docx' => 'application/vnd.openxmlformats-officedocument.wordprocessingml.document', - 'odt' => 'application/vnd.oasis.opendocument.text', - 'html' => 'text/html', - ]; - if (isset($mimeTypes[$type])) { - return $mimeTypes[$type]; - } - else { - throw new \CRM_Core_Exception("Cannot determine mime type"); - } - } - /** * Get the categories required for rendering tokens. * diff --git a/civicrm/CRM/Contact/Form/Task/PDFTrait.php b/civicrm/CRM/Contact/Form/Task/PDFTrait.php index 08899023913611c743d7d298dd3ba2865aa4ee3c..e19cdac942c884506a8cd339b78bc22b66c03585 100644 --- a/civicrm/CRM/Contact/Form/Task/PDFTrait.php +++ b/civicrm/CRM/Contact/Form/Task/PDFTrait.php @@ -67,7 +67,7 @@ trait CRM_Contact_Form_Task_PDFTrait { FALSE ); - // Added for core#2121, + // Added for dev/core#2121, // To support sending a custom pdf filename before downloading. $form->addElement('hidden', 'pdf_file_name'); diff --git a/civicrm/CRM/Contact/Import/Form/MapField.php b/civicrm/CRM/Contact/Import/Form/MapField.php index 5a8b5d0cdc4979f36e388a1122d786c51770f84a..26d8eb6c35e88a7c8a15369dfcb71cb4b4cc2646 100644 --- a/civicrm/CRM/Contact/Import/Form/MapField.php +++ b/civicrm/CRM/Contact/Import/Form/MapField.php @@ -15,6 +15,8 @@ * @copyright CiviCRM LLC https://civicrm.org/licensing */ +use Civi\Api4\RelationshipType; + /** * This class gets the name of the file to upload. */ @@ -41,7 +43,7 @@ class CRM_Contact_Import_Form_MapField extends CRM_Import_Form_MapField { * * @return string */ - public function defaultFromColumnName($columnName) { + public function defaultFromColumnName(string $columnName): string { if (!preg_match('/^[a-z0-9 ]$/i', $columnName)) { if ($columnKey = array_search($columnName, $this->getFieldTitles())) { @@ -70,14 +72,11 @@ class CRM_Contact_Import_Form_MapField extends CRM_Import_Form_MapField { * @throws \CRM_Core_Exception * @throws \Civi\API\Exception\UnauthorizedException */ - public function preProcess() { + public function preProcess(): void { $this->_mapperFields = $this->getAvailableFields(); - $this->_contactSubType = $this->getSubmittedValue('contactSubType'); //format custom field names, CRM-2676 $contactType = $this->getContactType(); - $this->_contactType = $contactType; - if ($this->isIgnoreDuplicates()) { //Mark Dedupe Rule Fields as required, since it's used in matching contact foreach (CRM_Contact_BAO_ContactType::basicTypes() as $cType) { @@ -109,7 +108,7 @@ class CRM_Contact_Import_Form_MapField extends CRM_Import_Form_MapField { * * @throws \CRM_Core_Exception */ - public function buildQuickForm() { + public function buildQuickForm(): void { $this->addSavedMappingFields(); $this->addFormRule(['CRM_Contact_Import_Form_MapField', 'formRule']); @@ -118,12 +117,12 @@ class CRM_Contact_Import_Form_MapField extends CRM_Import_Form_MapField { $defaults = []; $mapperKeys = array_keys($this->_mapperFields); - $hasColumnNames = !empty($this->_columnNames); + $hasColumnNames = !empty($this->getDataSourceObject()->getColumnHeaders()); - $this->_location_types = ['Primary' => ts('Primary')] + CRM_Core_PseudoConstant::get('CRM_Core_DAO_Address', 'location_type_id'); + $this->getLocationTypes(); $defaultLocationType = CRM_Core_BAO_LocationType::getDefault(); $this->assign('defaultLocationType', $defaultLocationType->id); - $this->assign('defaultLocationTypeLabel', $this->_location_types[$defaultLocationType->id]); + $this->assign('defaultLocationTypeLabel', $this->getLocationTypeLabel($defaultLocationType->id)); /* Initialize all field usages to false */ foreach ($mapperKeys as $key) { @@ -137,7 +136,7 @@ class CRM_Contact_Import_Form_MapField extends CRM_Import_Form_MapField { $imProviders = CRM_Core_PseudoConstant::get('CRM_Core_DAO_IM', 'provider_id'); $websiteTypes = CRM_Core_PseudoConstant::get('CRM_Core_DAO_Website', 'website_type_id'); - foreach ($this->_location_types as $key => $value) { + foreach ($this->getLocationTypes() as $key => $value) { $sel3['phone'][$key] = &$phoneTypes; $sel3['phone_ext'][$key] = &$phoneTypes; //build array for IM service provider type for contact @@ -146,16 +145,6 @@ class CRM_Contact_Import_Form_MapField extends CRM_Import_Form_MapField { $sel4 = NULL; - // store and cache all relationship types - $contactRelation = new CRM_Contact_DAO_RelationshipType(); - $contactRelation->find(); - while ($contactRelation->fetch()) { - $contactRelationCache[$contactRelation->id] = []; - $contactRelationCache[$contactRelation->id]['contact_type_a'] = $contactRelation->contact_type_a; - $contactRelationCache[$contactRelation->id]['contact_sub_type_a'] = $contactRelation->contact_sub_type_a; - $contactRelationCache[$contactRelation->id]['contact_type_b'] = $contactRelation->contact_type_b; - $contactRelationCache[$contactRelation->id]['contact_sub_type_b'] = $contactRelation->contact_sub_type_b; - } $highlightedFields = $highlightedRelFields = []; $highlightedFields['email'] = 'All'; @@ -169,30 +158,21 @@ class CRM_Contact_Import_Form_MapField extends CRM_Import_Form_MapField { // check if there is a _a_b or _b_a in the key if (strpos($key, '_a_b') || strpos($key, '_b_a')) { [$id, $first, $second] = explode('_', $key); + $relatedContactType = $this->getRelatedContactType($key); + //CRM-5125 for contact subtype specific RelationshipTypes + $relatedContactSubType = $this->getRelatedContactSubType($key); } else { $id = $first = $second = NULL; } if (($first === 'a' && $second === 'b') || ($first === 'b' && $second === 'a')) { - $cType = $contactRelationCache[$id]["contact_type_{$second}"]; - - //CRM-5125 for contact subtype specific relationshiptypes - $cSubType = NULL; - if (!empty($contactRelationCache[$id]["contact_sub_type_{$second}"])) { - $cSubType = $contactRelationCache[$id]["contact_sub_type_{$second}"]; - } - - if (!$cType) { - $cType = 'All'; - } - - $relatedFields = CRM_Contact_BAO_Contact::importableFields($cType); + $relatedFields = CRM_Contact_BAO_Contact::importableFields($relatedContactType); unset($relatedFields['']); $values = []; foreach ($relatedFields as $name => $field) { $values[$name] = $field['title']; if ($this->isLocationTypeRequired($name)) { - $sel3[$key][$name] = $this->_location_types; + $sel3[$key][$name] = $this->getLocationTypes(); } elseif ($name === 'url') { $sel3[$key][$name] = $websiteTypes; @@ -203,39 +183,39 @@ class CRM_Contact_Import_Form_MapField extends CRM_Import_Form_MapField { } //fix to append custom group name to field name, CRM-2676 - if (empty($this->_formattedFieldNames[$cType]) || $cType == $this->_contactType) { - $this->_formattedFieldNames[$cType] = $this->formatCustomFieldName($values); + if (empty($this->_formattedFieldNames[$relatedContactType]) || $relatedContactType === $this->getContactType()) { + $this->_formattedFieldNames[$relatedContactType] = $this->formatCustomFieldName($values); } - $this->_formattedFieldNames[$cType] = array_merge($values, $this->_formattedFieldNames[$cType]); + $this->_formattedFieldNames[$relatedContactType] = array_merge($values, $this->_formattedFieldNames[$relatedContactType]); //Modified the Relationship fields if the fields are //present in dedupe rule - if ($this->isIgnoreDuplicates() && !empty($this->_dedupeFields[$cType]) && - is_array($this->_dedupeFields[$cType]) + if ($this->isIgnoreDuplicates() && !empty($this->_dedupeFields[$relatedContactType]) && + is_array($this->_dedupeFields[$relatedContactType]) ) { static $cTypeArray = []; - if ($cType != $this->_contactType && !in_array($cType, $cTypeArray)) { - foreach ($this->_dedupeFields[$cType] as $val) { - if ($valTitle = CRM_Utils_Array::value($val, $this->_formattedFieldNames[$cType])) { - $this->_formattedFieldNames[$cType][$val] = $valTitle . ' (match to contact)'; + if ($relatedContactType !== $this->getContactType() && !in_array($relatedContactType, $cTypeArray)) { + foreach ($this->_dedupeFields[$relatedContactType] as $val) { + if ($valTitle = CRM_Utils_Array::value($val, $this->_formattedFieldNames[$relatedContactType])) { + $this->_formattedFieldNames[$relatedContactType][$val] = $valTitle . ' (match to contact)'; } } - $cTypeArray[] = $cType; + $cTypeArray[] = $relatedContactType; } } foreach ($highlightedFields as $k => $v) { - if ($v == $cType || $v === 'All') { + if ($v === $relatedContactType || $v === 'All') { $highlightedRelFields[$key][] = $k; } } $this->assign('highlightedRelFields', $highlightedRelFields); - $sel2[$key] = $this->_formattedFieldNames[$cType]; + $sel2[$key] = $this->_formattedFieldNames[$relatedContactType]; - if (!empty($cSubType)) { + if (!empty($relatedContactSubType)) { //custom fields for sub type - $subTypeFields = CRM_Core_BAO_CustomField::getFieldsForImport($cSubType); + $subTypeFields = CRM_Core_BAO_CustomField::getFieldsForImport($relatedContactSubType); if (!empty($subTypeFields)) { $subType = NULL; @@ -246,7 +226,7 @@ class CRM_Contact_Import_Form_MapField extends CRM_Import_Form_MapField { } } - foreach ($this->_location_types as $k => $value) { + foreach ($this->getLocationTypes() as $k => $value) { $sel4[$key]['phone'][$k] = &$phoneTypes; $sel4[$key]['phone_ext'][$k] = &$phoneTypes; //build array of IM service provider for related contact @@ -256,7 +236,7 @@ class CRM_Contact_Import_Form_MapField extends CRM_Import_Form_MapField { else { $options = NULL; if ($this->isLocationTypeRequired($key)) { - $options = $this->_location_types; + $options = $this->getLocationTypes(); } elseif ($key === 'url') { $options = $websiteTypes; @@ -277,9 +257,8 @@ class CRM_Contact_Import_Form_MapField extends CRM_Import_Form_MapField { $processor->setContactSubType($this->getSubmittedValue('contactSubType')); $mapper = $this->getSubmittedValue('mapper'); - for ($i = 0; $i < $this->_columnCount; $i++) { + foreach ($this->getColumnHeaders() as $i => $columnHeader) { $sel = &$this->addElement('hierselect', "mapper[$i]", ts('Mapper for Field %1', [1 => $i]), NULL); - $last_key = 0; // Don't set any defaults if we are going to the next page. // ... or coming back. @@ -294,7 +273,7 @@ class CRM_Contact_Import_Form_MapField extends CRM_Import_Form_MapField { else { if ($hasColumnNames) { // do array search first to see if has mapped key - $columnKey = array_search($this->_columnNames[$i], $this->getFieldTitles()); + $columnKey = array_search($columnHeader, $this->getFieldTitles(), TRUE); if (isset($this->_fieldUsed[$columnKey])) { $defaults["mapper[$i]"] = [$columnKey]; $this->_fieldUsed[$key] = TRUE; @@ -302,7 +281,7 @@ class CRM_Contact_Import_Form_MapField extends CRM_Import_Form_MapField { else { // Infer the default from the column names if we have them $defaults["mapper[$i]"] = [ - $this->defaultFromColumnName($this->_columnNames[$i]), + $this->defaultFromColumnName($columnHeader), ]; } } @@ -330,12 +309,12 @@ class CRM_Contact_Import_Form_MapField extends CRM_Import_Form_MapField { * @param array $fields * Posted values of the form. * - * @return array|bool + * @return bool * list of errors to be posted back to the form */ - public static function formRule(array $fields) { + public static function formRule(array $fields): bool { if (!empty($fields['saveMapping'])) { - // todo - this is non-sensical - sane js is better. PR to fix got stale but + // todo - this is nonsensical - sane js is better. PR to fix got stale but // is here https://github.com/civicrm/civicrm-core/pull/23950 CRM_Core_Smarty::singleton()->assign('isCheked', TRUE); } @@ -344,8 +323,10 @@ class CRM_Contact_Import_Form_MapField extends CRM_Import_Form_MapField { /** * Process the mapped fields and map it into the uploaded file. + * + * @throws \CRM_Core_Exception */ - public function postProcess() { + public function postProcess(): void { $params = $this->controller->exportValues('MapField'); $this->updateUserJobMetadata('submitted_values', $this->getSubmittedValues()); $this->submit($params); @@ -360,7 +341,7 @@ class CRM_Contact_Import_Form_MapField extends CRM_Import_Form_MapField { * * @return array */ - public function formatCustomFieldName($fields) { + public function formatCustomFieldName(array $fields): array { //CRM-2676, replacing the conflict for same custom field name from different custom group. $fieldIds = $formattedFieldNames = []; foreach ($fields as $key => $value) { @@ -374,7 +355,7 @@ class CRM_Contact_Import_Form_MapField extends CRM_Import_Form_MapField { if (!empty($groupTitles)) { foreach ($groupTitles as $fId => $values) { - $key = "custom_{$fId}"; + $key = "custom_$fId"; $groupTitle = $values['groupTitle']; $formattedFieldNames[$key] = $fields[$key] . ' :: ' . $groupTitle; } @@ -389,14 +370,11 @@ class CRM_Contact_Import_Form_MapField extends CRM_Import_Form_MapField { * * Extracted to add testing & start refactoring. * - * @param $params - * @param $mapperKeys + * @param array $params * * @throws \CRM_Core_Exception */ - public function submit($params) { - $this->set('columnNames', $this->_columnNames); - + public function submit(array $params): void { // store mapping Id to display it in the preview page $this->set('loadMappingId', CRM_Utils_Array::value('mappingId', $params)); @@ -432,7 +410,6 @@ class CRM_Contact_Import_Form_MapField extends CRM_Import_Form_MapField { * Did the user specify duplicates matching should not be attempted. * * @return bool - * @throws \CRM_Core_Exception */ private function isIgnoreDuplicates(): bool { return ((int) $this->getSubmittedValue('onDuplicate')) === CRM_Import_Parser::DUPLICATE_NOCHECK; @@ -474,9 +451,11 @@ class CRM_Contact_Import_Form_MapField extends CRM_Import_Form_MapField { * * e.g ['first_name' => FALSE, 'email' => TRUE, 'street_address' => TRUE'] * + * @param string $name + * * @return bool */ - private function isLocationTypeRequired($name): bool { + private function isLocationTypeRequired(string $name): bool { if (!isset(Civi::$statics[__CLASS__]['location_fields'])) { Civi::$statics[__CLASS__]['location_fields'] = (new CRM_Contact_Import_Parser_Contact())->setUserJobID($this->getUserJobID())->getFieldsWhichSupportLocationTypes(); } @@ -492,4 +471,74 @@ class CRM_Contact_Import_Form_MapField extends CRM_Import_Form_MapField { return $parser; } + /** + * Get the location types for import, including the pseudo-type 'Primary'. + * + * @return array + */ + protected function getLocationTypes(): array { + return ['Primary' => ts('Primary')] + CRM_Core_PseudoConstant::get('CRM_Core_DAO_Address', 'location_type_id'); + } + + /** + * Get the location types for import, including the pseudo-type 'Primary'. + * + * @param int|string $type + * Location Type ID or 'Primary'. + * @return string + */ + protected function getLocationTypeLabel($type): string { + return $this->getLocationTypes()[$type]; + } + + /** + * Get the type of the related contact. + * + * @param string $key + * + * @return string + */ + protected function getRelatedContactType(string $key): string { + $relationship = $this->getRelationshipType($key); + if (strpos($key, '_a_b')) { + return $relationship['contact_type_b'] ?: 'All'; + } + return $relationship['contact_type_a'] ?: 'All'; + } + + /** + * Get the sub_type of the related contact. + * + * @param string $key + * + * @return string|null + */ + protected function getRelatedContactSubType(string $key): ?string { + $relationship = $this->getRelationshipType($key); + if (strpos($key, '_a_b')) { + return $relationship['contact_sub_type_b']; + } + return $relationship['contact_sub_type_a']; + } + + /** + * Get the relationship type. + * + * @param string $key + * e.g 5_a_b for relationship ID 5 in an a-b direction. + * + * @noinspection PhpUnhandledExceptionInspection + * @noinspection PhpDocMissingThrowsInspection + */ + protected function getRelationshipType(string $key): array { + $relationshipTypeID = str_replace(['_a_b', '_b_a'], '', $key); + if (!isset(Civi::$statics[__CLASS__]['relationship_type'][$relationshipTypeID])) { + Civi::$statics[__CLASS__]['relationship_type'][$relationshipTypeID] = RelationshipType::get(FALSE) + ->addWhere('id', '=', $relationshipTypeID) + ->addSelect('contact_type_a', 'contact_type_b', 'contact_sub_type_a', 'contact_sub_type_b') + ->execute()->first(); + } + return Civi::$statics[__CLASS__]['relationship_type'][$relationshipTypeID]; + } + } diff --git a/civicrm/CRM/Contact/Import/Parser/Contact.php b/civicrm/CRM/Contact/Import/Parser/Contact.php index 523924c4c40545f01d2ce74c3629388ebf22ecd2..f1b7b92b0e960b5575588a400c7fe743276bf377 100644 --- a/civicrm/CRM/Contact/Import/Parser/Contact.php +++ b/civicrm/CRM/Contact/Import/Parser/Contact.php @@ -420,12 +420,7 @@ class CRM_Contact_Import_Parser_Contact extends CRM_Import_Parser { if ((strtolower($v2['label']) == strtolower(trim($v1))) || (strtolower($v2['value']) == strtolower(trim($v1))) ) { - if ($htmlType == 'CheckBox') { - $params[$key][$v2['value']] = $formatted[$key][$v2['value']] = 1; - } - else { - $params[$key][] = $formatted[$key][] = $v2['value']; - } + $params[$key][] = $formatted[$key][] = $v2['value']; } } } diff --git a/civicrm/CRM/Contact/Page/DedupeException.php b/civicrm/CRM/Contact/Page/DedupeException.php index c1931202753efb9f9cc6feac9ef0c766b29170a5..091f0550d0a50029b447bd3062ba737e49c8222b 100644 --- a/civicrm/CRM/Contact/Page/DedupeException.php +++ b/civicrm/CRM/Contact/Page/DedupeException.php @@ -20,6 +20,12 @@ */ class CRM_Contact_Page_DedupeException extends CRM_Core_Page { + /** + * @var CRM_Utils_Pager + * @internal + */ + public $_pager; + /** * the main function that is called when the page loads, * it decides the which action has to be taken for the page. diff --git a/civicrm/CRM/Contact/Tokens.php b/civicrm/CRM/Contact/Tokens.php index a99da6faff803afc59afcf883a93e451531dcf33..bed30b86f737bc14d81e64789940ba5fea4b14a5 100644 --- a/civicrm/CRM/Contact/Tokens.php +++ b/civicrm/CRM/Contact/Tokens.php @@ -183,7 +183,7 @@ class CRM_Contact_Tokens extends CRM_Core_EntityTokens { /** * Get the fields exposed from related entities. * - * @return \string[][] + * @return string[][] */ protected function getRelatedEntityTokenMetadata(): array { return [ diff --git a/civicrm/CRM/Contribute/Form/AbstractEditPayment.php b/civicrm/CRM/Contribute/Form/AbstractEditPayment.php index 1aa0ee72f4eaec4480833ca70dee8436f3c07920..59c30d96ac0d821672e468411a52899e23da79d8 100644 --- a/civicrm/CRM/Contribute/Form/AbstractEditPayment.php +++ b/civicrm/CRM/Contribute/Form/AbstractEditPayment.php @@ -707,7 +707,7 @@ WHERE contribution_id = {$id} * * @throws \CRM_Core_Exception */ - protected function getDefaultPaymentInstrumentId() { + protected function getDefaultPaymentInstrumentId(): int { $paymentInstrumentID = CRM_Utils_Request::retrieve('payment_instrument_id', 'Integer'); return (int) ($paymentInstrumentID ?? $this->_paymentProcessor['payment_instrument_id']); } diff --git a/civicrm/CRM/Contribute/Form/AdditionalPayment.php b/civicrm/CRM/Contribute/Form/AdditionalPayment.php index d3929969298b853227ae5b2ee1d48b32b530f01c..97369550449eb9401b59a2d161107f0a957c9862 100644 --- a/civicrm/CRM/Contribute/Form/AdditionalPayment.php +++ b/civicrm/CRM/Contribute/Form/AdditionalPayment.php @@ -410,7 +410,7 @@ class CRM_Contribute_Form_AdditionalPayment extends CRM_Contribute_Form_Abstract if ($paymentParams['amount'] > 0.0) { try { - // force a reget of the payment processor in case the form changed it, CRM-7179 + // force a reset of the payment processor in case the form changed it, CRM-7179 $payment = Civi\Payment\System::singleton()->getByProcessor($this->_paymentProcessor); $result = $payment->doPayment($paymentParams); } diff --git a/civicrm/CRM/Contribute/Form/Contribution.php b/civicrm/CRM/Contribute/Form/Contribution.php index daac2892e9ac6a4b4d504cc4f8ab18caf51192d7..36df356cebffe73cd6e275ed28424243c58cea9b 100644 --- a/civicrm/CRM/Contribute/Form/Contribution.php +++ b/civicrm/CRM/Contribute/Form/Contribution.php @@ -208,6 +208,14 @@ class CRM_Contribute_Form_Contribution extends CRM_Contribute_Form_AbstractEditP */ protected $previousContributionStatus; + + /** + * Payment Instrument ID + * + * @var int + */ + public $payment_instrument_id; + /** * Explicitly declare the form context. */ @@ -397,10 +405,7 @@ class CRM_Contribute_Form_Contribution extends CRM_Contribute_Form_AbstractEditP if (empty($defaults['payment_instrument_id'])) { $defaults['payment_instrument_id'] = $this->getDefaultPaymentInstrumentId(); } - - if (!empty($defaults['is_test'])) { - $this->assign('is_test', TRUE); - } + $this->assign('is_test', !empty($defaults['is_test'])); $this->assign('showOption', TRUE); // For Premium section. @@ -422,13 +427,9 @@ class CRM_Contribute_Form_Contribution extends CRM_Contribute_Form_AbstractEditP } } - if (isset($this->userEmail)) { - $this->assign('email', $this->userEmail); - } + $this->assign('email', $this->userEmail); + $this->assign('is_pay_later', !empty($defaults['is_pay_later'])); - if (!empty($defaults['is_pay_later'])) { - $this->assign('is_pay_later', TRUE); - } $this->assign('contribution_status_id', CRM_Utils_Array::value('contribution_status_id', $defaults)); if (!empty($defaults['contribution_status_id']) && in_array( CRM_Contribute_PseudoConstant::contributionStatus($defaults['contribution_status_id'], 'name'), @@ -590,7 +591,7 @@ class CRM_Contribute_Form_Contribution extends CRM_Contribute_Form_AbstractEditP $paneNames[ts('Premium Information')] = 'Premium'; } - $this->payment_instrument_id = CRM_Utils_Array::value('payment_instrument_id', $defaults, $this->getDefaultPaymentInstrumentId()); + $this->payment_instrument_id = $defaults['payment_instrument_id'] ?? $this->getDefaultPaymentInstrumentId(); CRM_Core_Payment_Form::buildPaymentForm($this, $this->_paymentProcessor, FALSE, TRUE, $this->payment_instrument_id); if (!empty($this->_recurPaymentProcessors)) { $buildRecurBlock = TRUE; diff --git a/civicrm/CRM/Contribute/Form/Contribution/Main.php b/civicrm/CRM/Contribute/Form/Contribution/Main.php index 0056d1f72706adfb41aadcade70f7a1af5159fec..d09ea9c2533d20c0b3ab9992a2c2cc7f22258495 100644 --- a/civicrm/CRM/Contribute/Form/Contribution/Main.php +++ b/civicrm/CRM/Contribute/Form/Contribution/Main.php @@ -1406,6 +1406,15 @@ class CRM_Contribute_Form_Contribution_Main extends CRM_Contribute_Form_Contribu * Set form variables if contribution ID is found */ public function assignFormVariablesByContributionID() { + $dummyTitle = 0; + foreach ($this->_paymentProcessors as $pp) { + if ($pp['class_name'] == 'Payment_Dummy') { + $dummyTitle = $pp['name']; + break; + } + } + $this->assign('dummyTitle', $dummyTitle); + if (empty($this->_ccid)) { return; } diff --git a/civicrm/CRM/Contribute/Form/ContributionBase.php b/civicrm/CRM/Contribute/Form/ContributionBase.php index 80a51f4cb93fd27afcba2e2b9e75271d077370fd..c31e6ee9afb8e9a1265d9a0e13c367da8e1b8a4e 100644 --- a/civicrm/CRM/Contribute/Form/ContributionBase.php +++ b/civicrm/CRM/Contribute/Form/ContributionBase.php @@ -393,7 +393,7 @@ class CRM_Contribute_Form_ContributionBase extends CRM_Core_Form { $pledgeId, 'campaign_id' ); - self::authenticatePledgeUser(); + $this->authenticatePledgeUser(); } } $this->set('values', $this->_values); @@ -1052,7 +1052,7 @@ class CRM_Contribute_Form_ContributionBase extends CRM_Core_Form { * * @throws \CRM_Core_Exception */ - public function authenticatePledgeUser() { + private function authenticatePledgeUser(): void { //get the userChecksum and contact id $userChecksum = CRM_Utils_Request::retrieve('cs', 'String', $this); $contactID = CRM_Utils_Request::retrieve('cid', 'Positive', $this); diff --git a/civicrm/CRM/Contribute/Page/ContributionPage.php b/civicrm/CRM/Contribute/Page/ContributionPage.php index 9f96923ec30fa59bbb3460ae333dfc5e2100b4b5..db9f1ba790f9e5d974b78dee92f47fce39ca8a21 100644 --- a/civicrm/CRM/Contribute/Page/ContributionPage.php +++ b/civicrm/CRM/Contribute/Page/ContributionPage.php @@ -694,7 +694,7 @@ ORDER BY UPPER(LEFT(title, 1)) if (isset($link['class'])) { $classes = $link['class']; } - $link['class'] = array_merge($classes, array('disabled')); + $link['class'] = array_merge($classes, array('crm-disabled')); } } diff --git a/civicrm/CRM/Contribute/PseudoConstant.php b/civicrm/CRM/Contribute/PseudoConstant.php index af713803f738d7a141466ab5c1cb439a418c2b63..210cc1faa5db7bc7d4646b7fefde9f63e7d25bb5 100644 --- a/civicrm/CRM/Contribute/PseudoConstant.php +++ b/civicrm/CRM/Contribute/PseudoConstant.php @@ -173,7 +173,7 @@ class CRM_Contribute_PseudoConstant extends CRM_Core_PseudoConstant { * Do we want all pages or only active pages. * * - * @return array + * @return string|array|null * array reference of all contribution pages if any */ public static function &contributionPage($id = NULL, $all = FALSE) { diff --git a/civicrm/CRM/Core/BAO/Address.php b/civicrm/CRM/Core/BAO/Address.php index 5b114112fce890ddea5e51cfb1311ebd5ca8783a..e44f9c90d2fdcdb971dec5783b6bc45c4ca33c29 100644 --- a/civicrm/CRM/Core/BAO/Address.php +++ b/civicrm/CRM/Core/BAO/Address.php @@ -1149,7 +1149,8 @@ SELECT is_primary, * @param bool $returnStatus * By default false. * - * @return string + * @return array|void + * If ($returnStatus == true) the returned value is an array containing contactList and count */ public static function setSharedAddressDeleteStatus($addressId = NULL, $contactId = NULL, $returnStatus = FALSE) { // check if address that is being deleted has any shared @@ -1311,7 +1312,7 @@ SELECT is_primary, if ($providerExists) { $provider::format($params); } - // core#2379 - Limit geocode length to 14 characters to avoid validation error on save in UI. + // dev/core#2379 - Limit geocode length to 14 characters to avoid validation error on save in UI. foreach (['geo_code_1', 'geo_code_2'] as $geocode) { if ($params[$geocode] ?? FALSE) { // ensure that if the geocoding provider (Google, OSM etc) has returned the string 'null' because they can't geocode, ensure that contacts are not placed on null island 0,0 diff --git a/civicrm/CRM/Core/BAO/CMSUser.php b/civicrm/CRM/Core/BAO/CMSUser.php index c12773d9269182672ab1c2fac81bf3280b21cb71..a07b61a5f0c254670c4b715746f7403e1dadcdd2 100644 --- a/civicrm/CRM/Core/BAO/CMSUser.php +++ b/civicrm/CRM/Core/BAO/CMSUser.php @@ -144,65 +144,47 @@ class CRM_Core_BAO_CMSUser { $config = CRM_Core_Config::singleton(); - $isDrupal = $config->userSystem->is_drupal; - $isJoomla = ucfirst($config->userFramework) == 'Joomla'; - $isWordPress = $config->userFramework == 'WordPress'; - $errors = []; - if ($isDrupal || $isJoomla || $isWordPress) { - $emailName = NULL; - if (!empty($form->_bltID) && array_key_exists("email-{$form->_bltID}", $fields)) { - // this is a transaction related page - $emailName = 'email-' . $form->_bltID; - } - else { - // find the email field in a profile page - foreach ($fields as $name => $dontCare) { - if (substr($name, 0, 5) == 'email') { - $emailName = $name; - break; - } - } - } - if ($emailName == NULL) { - $errors['_qf_default'] = ts('Could not find an email address.'); - return $errors; - } + $emailName = $config->userSystem->getEmailFieldName($form, $fields); - if (empty($fields['cms_name'])) { - $errors['cms_name'] = ts('Please specify a username.'); - } + $params = [ + 'name' => $fields['cms_name'], + 'mail' => isset($fields[$emailName]) ? $fields[$emailName] : '', + 'pass' => isset($fields['cms_pass']) ? $fields['cms_pass'] : '', + ]; - if (empty($fields[$emailName])) { - $errors[$emailName] = ts('Please specify a valid email address.'); - } + // Verify the password. + if ($config->userSystem->isPasswordUserGenerated()) { + $config->userSystem->verifyPassword($params, $errors); + } - if ($config->userSystem->isPasswordUserGenerated()) { - if (empty($fields['cms_pass']) || - empty($fields['cms_confirm_pass']) - ) { - $errors['cms_pass'] = ts('Please enter a password.'); - } - if ($fields['cms_pass'] != $fields['cms_confirm_pass']) { - $errors['cms_pass'] = ts('Password and Confirm Password values are not the same.'); - } - } + // Set generic errors messages. + if ($emailName == '') { + $errors['_qf_default'] = ts('Could not find an email address.'); + } - if (!empty($errors)) { - return $errors; - } + if (empty($params['name'])) { + $errors['cms_name'] = ts('Please specify a username.'); + } - // now check that the cms db does not have the user name and/or email - if ($isDrupal or $isJoomla or $isWordPress) { - $params = [ - 'name' => $fields['cms_name'], - 'mail' => $fields[$emailName], - ]; - } + if (empty($params['mail'])) { + $errors[$emailName] = ts('Please specify a valid email address.'); + } - $config->userSystem->checkUserNameEmailExists($params, $errors, $emailName); + if ($config->userSystem->isPasswordUserGenerated()) { + if (empty($fields['cms_pass']) || + empty($fields['cms_confirm_pass']) + ) { + $errors['cms_pass'] = ts('Please enter a password.'); + } + if ($fields['cms_pass'] != $fields['cms_confirm_pass']) { + $errors['cms_pass'] = ts('Password and Confirm Password values are not the same.'); + } } + + $config->userSystem->checkUserNameEmailExists($params, $errors, $emailName); + return (!empty($errors)) ? $errors : TRUE; } diff --git a/civicrm/CRM/Core/BAO/Cache.php b/civicrm/CRM/Core/BAO/Cache.php index c7534119308217a3588a0a93000e25b9706d70f3..77c530f618276fbfc0ed0a6559ddd160977f7a23 100644 --- a/civicrm/CRM/Core/BAO/Cache.php +++ b/civicrm/CRM/Core/BAO/Cache.php @@ -99,7 +99,7 @@ class CRM_Core_BAO_Cache extends CRM_Core_DAO_Cache { /** * Restore session from cache. * - * @param string $names + * @param array $names */ public static function restoreSessionFromCache($names) { foreach ($names as $key => $sessionName) { diff --git a/civicrm/CRM/Core/BAO/CustomField.php b/civicrm/CRM/Core/BAO/CustomField.php index 9b03aef76d0454715c54349f6c862f29f6ba8c56..7f4aed8d5515d61c4522aeed2dfc258e3afc84ae 100644 --- a/civicrm/CRM/Core/BAO/CustomField.php +++ b/civicrm/CRM/Core/BAO/CustomField.php @@ -752,7 +752,7 @@ class CRM_Core_BAO_CustomField extends CRM_Core_DAO_CustomField { * True if used for search else false. * @param string $label * Label for custom field. - * @return \HTML_QuickForm_Element|null + * @return \HTML_QuickForm_element|null * @throws \CRM_Core_Exception */ public static function addQuickFormElement( @@ -1129,6 +1129,7 @@ class CRM_Core_BAO_CustomField extends CRM_Core_DAO_CustomField { * @param int|null $entityId * * @return string + * @throws \Brick\Money\Exception\UnknownCurrencyException */ private static function formatDisplayValue($value, $field, $entityId = NULL) { @@ -1269,19 +1270,21 @@ class CRM_Core_BAO_CustomField extends CRM_Core_DAO_CustomField { break; case 'Text': - if ($field['data_type'] == 'Money' && isset($value)) { + if ($field['data_type'] === 'Money' && isset($value)) { // $value can also be an array(while using IN operator from search builder or api). + $values = []; foreach ((array) $value as $val) { - $disp[] = CRM_Utils_Money::formatLocaleNumericRoundedForDefaultCurrency($val); + $values[] = $val === '' ? '' : CRM_Utils_Money::formatLocaleNumericRoundedForDefaultCurrency($val); } - $display = implode(', ', $disp); + $display = implode(', ', $values); } - elseif ($field['data_type'] == 'Float' && isset($value)) { + elseif ($field['data_type'] === 'Float' && isset($value)) { // $value can also be an array(while using IN operator from search builder or api). + $values = []; foreach ((array) $value as $val) { - $disp[] = CRM_Utils_Number::formatLocaleNumeric($val); + $values[] = $val === '' ? '' : CRM_Utils_Number::formatLocaleNumeric($val); } - $display = implode(', ', $disp); + $display = implode(', ', $values); } break; } diff --git a/civicrm/CRM/Core/BAO/CustomGroup.php b/civicrm/CRM/Core/BAO/CustomGroup.php index 378c58502c8b239b51dc6ebf1ff8960878d039e8..3615f2271f827daaade82d95099d909043d026d9 100644 --- a/civicrm/CRM/Core/BAO/CustomGroup.php +++ b/civicrm/CRM/Core/BAO/CustomGroup.php @@ -635,13 +635,15 @@ ORDER BY civicrm_custom_group.weight, /** * Clean and validate the filter before it is used in a db query. * + * @internal this will be private again soon. + * * @param string $entityType * @param string $subType * * @return string * @throws \CRM_Core_Exception */ - protected static function validateSubTypeByEntity($entityType, $subType) { + public static function validateSubTypeByEntity($entityType, $subType) { $subType = trim($subType, CRM_Core_DAO::VALUE_SEPARATOR); if (is_numeric($subType)) { return $subType; @@ -1802,7 +1804,8 @@ ORDER BY civicrm_custom_group.weight, } } } - if ($value = CRM_Utils_Request::retrieve($properties['element_name'], 'String', $form, FALSE, NULL, 'POST')) { + $value = CRM_Utils_Request::retrieve($properties['element_name'], 'String', $form, FALSE, NULL, 'POST'); + if ($value !== NULL) { $formValues[$properties['element_name']] = $value; } elseif (isset($submittedValues[$properties['element_name']])) { @@ -2273,6 +2276,9 @@ SELECT civicrm_custom_group.id as groupID, civicrm_custom_group.title as groupT /** * Build the metadata tree for the custom group. * + * @internal - function is temporarily public but will be private again + * once separated function disentangled. + * * @param string $entityType * @param array $toReturn * @param array $subTypes @@ -2283,7 +2289,7 @@ SELECT civicrm_custom_group.id as groupID, civicrm_custom_group.title as groupT * @return array * @throws \CRM_Core_Exception */ - private static function buildGroupTree($entityType, $toReturn, $subTypes, $queryString, $params, $subType) { + public static function buildGroupTree($entityType, $toReturn, $subTypes, $queryString, $params, $subType) { $groupTree = $multipleFieldGroups = []; $crmDAO = CRM_Core_DAO::executeQuery($queryString, $params); $customValueTables = []; diff --git a/civicrm/CRM/Core/BAO/Job.php b/civicrm/CRM/Core/BAO/Job.php index e07d3b2398a8a79f8053670ef6b5f5fc87ce296f..aecf92d79dba7268b67a24144d4f243b93dda639 100644 --- a/civicrm/CRM/Core/BAO/Job.php +++ b/civicrm/CRM/Core/BAO/Job.php @@ -26,7 +26,7 @@ class CRM_Core_BAO_Job extends CRM_Core_DAO_Job { * @param array $params * An assoc array of name/value pairs. * - * @return CRM_Financial_DAO_PaymentProcessorType + * @return CRM_Core_DAO_Job */ public static function create($params) { $job = new CRM_Core_DAO_Job(); diff --git a/civicrm/CRM/Core/BAO/UFGroup.php b/civicrm/CRM/Core/BAO/UFGroup.php index 0c9d57caa2f149d8ea74e9c192aae35f997569b9..44ea26425c1fd16d719f8ff01fee235269e008c0 100644 --- a/civicrm/CRM/Core/BAO/UFGroup.php +++ b/civicrm/CRM/Core/BAO/UFGroup.php @@ -729,7 +729,9 @@ class CRM_Core_BAO_UFGroup extends CRM_Core_DAO_UFGroup implements \Civi\Core\Ho if ($checkPermission == CRM_Core_Permission::CREATE) { $checkPermission = CRM_Core_Permission::EDIT; } - $cacheKey = 'uf_group_custom_fields_' . $ctype . '_' . (int) $checkPermission; + // Make the cache user specific by adding the ID to the key. + $contactId = CRM_Core_Session::getLoggedInContactID(); + $cacheKey = 'uf_group_custom_fields_' . $ctype . '_' . $contactId . '_' . (int) $checkPermission; if (!Civi::cache('metadata')->has($cacheKey)) { $customFields = CRM_Core_BAO_CustomField::getFieldsForImport($ctype, FALSE, FALSE, FALSE, $checkPermission, TRUE); @@ -916,11 +918,10 @@ class CRM_Core_BAO_UFGroup extends CRM_Core_DAO_UFGroup implements \Civi\Core\Ho $template = CRM_Core_Smarty::singleton(); - // Hide CRM error messages if they are displayed using drupal form_set_error. - if (!empty($_POST) && CRM_Core_Config::singleton()->userFramework == 'Drupal') { - if (arg(0) == 'user' || (arg(0) == 'admin' && arg(1) == 'people')) { - $template->assign('suppressForm', TRUE); - } + // Hide CRM error messages if they are set by the CMS. + if (!empty($_POST)) { + $supressForm = CRM_Core_Config::singleton()->userSystem->suppressProfileFormErrors(); + $template->assign('suppressForm', $supressForm); } $templateFile = "CRM/Profile/Form/{$profileID}/Dynamic.tpl"; @@ -1673,7 +1674,7 @@ AND ( entity_id IS NULL OR entity_id <= 0 ) * array of ufgroups for a module */ public static function getModuleUFGroup($moduleName = NULL, $count = 0, $skipPermission = TRUE, $op = CRM_Core_Permission::VIEW, $returnFields = NULL) { - $selectFields = ['id', 'title', 'created_id', 'is_active', 'is_reserved', 'group_type', 'description']; + $selectFields = ['id', 'name', 'title', 'created_id', 'is_active', 'is_reserved', 'group_type', 'description']; if (CRM_Core_BAO_SchemaHandler::checkIfFieldExists('civicrm_uf_group', 'frontend_title')) { $selectFields[] = 'frontend_title'; diff --git a/civicrm/CRM/Core/BAO/UFMatch.php b/civicrm/CRM/Core/BAO/UFMatch.php index 8100e72a3172c9a460521b97308fa5aa93299191..831a70ee70cbb32bff2a8272b8dc0062951a246e 100644 --- a/civicrm/CRM/Core/BAO/UFMatch.php +++ b/civicrm/CRM/Core/BAO/UFMatch.php @@ -179,16 +179,16 @@ class CRM_Core_BAO_UFMatch extends CRM_Core_DAO_UFMatch { $dao = NULL; if (!empty($_POST) && !$isLogin) { - $params = $_POST; - $params['email'] = $uniqId; + $dedupeParameters = $_POST; + $dedupeParameters['email'] = $uniqId; // dev/core#1858 Ensure that if we have a contactID parameter which is set in the Create user Record contact task form - // That this contacID value is passed through as the contact_id to the get duplicate contacts function. This is necessary because for Drupal 8 this function gets invoked + // That this contactID value is passed through as the contact_id to the get duplicate contacts function. This is necessary because for Drupal 8 this function gets invoked // Before the civicrm_uf_match record is added where as in D7 it isn't called until the user tries to actually login. - if (!empty($params['contactID'])) { - $params['contact_id'] = $params['contactID']; + if (!empty($dedupeParameters['contactID'])) { + $dedupeParameters['contact_id'] = $dedupeParameters['contactID']; } - $ids = CRM_Contact_BAO_Contact::getDuplicateContacts($params, 'Individual', 'Unsupervised', [], FALSE); + $ids = CRM_Contact_BAO_Contact::getDuplicateContacts($dedupeParameters, 'Individual', 'Unsupervised', [], FALSE); if (!empty($ids) && Civi::settings()->get('uniq_email_per_site')) { // restrict dupeIds to ones that belong to current domain/site. @@ -235,6 +235,7 @@ AND domain_id = %2 } if (!$found) { + $contactParameters = []; // Not sure why we're testing for this. Is there ever a case // in which $user is not an object? if (is_object($user)) { @@ -247,36 +248,39 @@ AND domain_id = %2 else { $primary_email = $user->email; } - $params['email'] = $primary_email; + $contactParameters['email'] = $primary_email; + } + else { + CRM_Core_Error::deprecatedWarning('please log how you hit this...'); } if ($ctype === 'Organization') { - $params['organization_name'] = $uniqId; + $contactParameters['organization_name'] = $uniqId; } elseif ($ctype === 'Household') { - $params['household_name'] = $uniqId; + $contactParameters['household_name'] = $uniqId; } - $params['contact_type'] = $ctype ?? 'Individual'; + $contactParameters['contact_type'] = $ctype ?? 'Individual'; // extract first / middle / last name // for joomla if ($uf === 'Joomla' && $user->name) { - CRM_Utils_String::extractName($user->name, $params); + CRM_Utils_String::extractName($user->name, $contactParameters); } if ($uf === 'WordPress') { if ($user->first_name) { - $params['first_name'] = $user->first_name; + $contactParameters['first_name'] = $user->first_name; } if ($user->last_name) { - $params['last_name'] = $user->last_name; + $contactParameters['last_name'] = $user->last_name; } } - $contactId = civicrm_api3('Contact', 'create', $params)['id']; - $ufmatch->contact_id = $contactId; + $contactID = civicrm_api3('Contact', 'create', $contactParameters)['id']; + $ufmatch->contact_id = $contactID; $ufmatch->uf_name = $uniqId; } diff --git a/civicrm/CRM/Core/DAO.php b/civicrm/CRM/Core/DAO.php index f5f376fa120f51416b3e3e5fd6d84c31ee5ed994..eb84c1651ca9286d5f9912a503ba771ae12a7285 100644 --- a/civicrm/CRM/Core/DAO.php +++ b/civicrm/CRM/Core/DAO.php @@ -1726,9 +1726,11 @@ LIKE %1 * @param array $params * @param bool $abort * @param bool $i18nRewrite + * * @return string|null * the result of the query if any * + * @throws \CRM_Core_Exception */ public static function &singleValueQuery( $query, diff --git a/civicrm/CRM/Core/DAO/CustomField.php b/civicrm/CRM/Core/DAO/CustomField.php index d971cd92ab3fbdec5bfb04e028a9c5ef0ea2b470..8faf7f472841dae228fa23a920043d7c0130da7f 100644 --- a/civicrm/CRM/Core/DAO/CustomField.php +++ b/civicrm/CRM/Core/DAO/CustomField.php @@ -6,7 +6,7 @@ * * Generated from xml/schema/CRM/Core/CustomField.xml * DO NOT EDIT. Generated by CRM_Core_CodeGen - * (GenCodeChecksum:b36f8202db0be873208f1895f3b3dc87) + * (GenCodeChecksum:f102cd2c666ba101ff0933c9fdac92ce) */ /** @@ -167,15 +167,6 @@ class CRM_Core_DAO_CustomField extends CRM_Core_DAO { */ public $help_post; - /** - * Optional format instructions for specific field types, like date types. - * - * @var string|null - * (SQL type: varchar(64)) - * Note that values will be retrieved from the database as a string. - */ - public $mask; - /** * Store collection of type-appropriate attributes, e.g. textarea needs rows/cols attributes * @@ -578,20 +569,6 @@ class CRM_Core_DAO_CustomField extends CRM_Core_DAO { 'localizable' => 1, 'add' => '1.1', ], - 'mask' => [ - 'name' => 'mask', - 'type' => CRM_Utils_Type::T_STRING, - 'title' => ts('Custom Field Formatting'), - 'description' => ts('Optional format instructions for specific field types, like date types.'), - 'maxlength' => 64, - 'size' => CRM_Utils_Type::BIG, - 'where' => 'civicrm_custom_field.mask', - 'table_name' => 'civicrm_custom_field', - 'entity' => 'CustomField', - 'bao' => 'CRM_Core_BAO_CustomField', - 'localizable' => 0, - 'add' => '1.1', - ], 'attributes' => [ 'name' => 'attributes', 'type' => CRM_Utils_Type::T_STRING, diff --git a/civicrm/CRM/Core/DAO/Email.php b/civicrm/CRM/Core/DAO/Email.php index da97c7dff7992f5ce7a772f7a81b19f94696fad7..dfb27ff5e63bbce6a514ef203fefb4c979099155 100644 --- a/civicrm/CRM/Core/DAO/Email.php +++ b/civicrm/CRM/Core/DAO/Email.php @@ -6,7 +6,7 @@ * * Generated from xml/schema/CRM/Core/Email.xml * DO NOT EDIT. Generated by CRM_Core_CodeGen - * (GenCodeChecksum:4cf435cd4ab6427311cbe3c4bdfee3d7) + * (GenCodeChecksum:9a78bc3d5abc98068f2615a4f6836141) */ /** @@ -271,7 +271,7 @@ class CRM_Core_DAO_Email extends CRM_Core_DAO { 'is_primary' => [ 'name' => 'is_primary', 'type' => CRM_Utils_Type::T_BOOLEAN, - 'title' => ts('Primary email'), + 'title' => ts('Is Primary'), 'description' => ts('Is this the primary email address'), 'required' => TRUE, 'where' => 'civicrm_email.is_primary', diff --git a/civicrm/CRM/Core/DAO/OptionGroup.php b/civicrm/CRM/Core/DAO/OptionGroup.php index 0b6a0d2de758315c7e174a370b020e49245fbbfc..8d1e0b423ad3dc861c84a0e84f18ffd3158a8bc1 100644 --- a/civicrm/CRM/Core/DAO/OptionGroup.php +++ b/civicrm/CRM/Core/DAO/OptionGroup.php @@ -6,7 +6,7 @@ * * Generated from xml/schema/CRM/Core/OptionGroup.xml * DO NOT EDIT. Generated by CRM_Core_CodeGen - * (GenCodeChecksum:6d1ca6dc8aa693e7b26bb19b731b0b55) + * (GenCodeChecksum:cccb007e18d25b34d3af8fd583ade04b) */ /** @@ -37,6 +37,16 @@ class CRM_Core_DAO_OptionGroup extends CRM_Core_DAO { */ public static $_log = TRUE; + /** + * Paths for accessing this entity in the UI. + * + * @var string[] + */ + protected static $_paths = [ + 'add' => 'civicrm/admin/options?action=add&reset=1', + 'update' => 'civicrm/admin/options?action=update&reset=1&id=[id]', + ]; + /** * Option Group ID * @@ -174,12 +184,15 @@ class CRM_Core_DAO_OptionGroup extends CRM_Core_DAO { 'entity' => 'OptionGroup', 'bao' => 'CRM_Core_BAO_OptionGroup', 'localizable' => 0, + 'html' => [ + 'type' => 'Text', + ], 'add' => '1.5', ], 'title' => [ 'name' => 'title', 'type' => CRM_Utils_Type::T_STRING, - 'title' => ts('Option Group title'), + 'title' => ts('Option Group Title'), 'description' => ts('Option Group title.'), 'maxlength' => 255, 'size' => CRM_Utils_Type::HUGE, @@ -188,6 +201,9 @@ class CRM_Core_DAO_OptionGroup extends CRM_Core_DAO { 'entity' => 'OptionGroup', 'bao' => 'CRM_Core_BAO_OptionGroup', 'localizable' => 1, + 'html' => [ + 'type' => 'Text', + ], 'add' => '1.5', ], 'description' => [ @@ -200,6 +216,9 @@ class CRM_Core_DAO_OptionGroup extends CRM_Core_DAO { 'entity' => 'OptionGroup', 'bao' => 'CRM_Core_BAO_OptionGroup', 'localizable' => 1, + 'html' => [ + 'type' => 'Text', + ], 'add' => '1.5', ], 'data_type' => [ @@ -222,7 +241,7 @@ class CRM_Core_DAO_OptionGroup extends CRM_Core_DAO { 'is_reserved' => [ 'name' => 'is_reserved', 'type' => CRM_Utils_Type::T_BOOLEAN, - 'title' => ts('Option Group Is Reserved?'), + 'title' => ts('Option Group Is Reserved'), 'description' => ts('Is this a predefined system option group (i.e. it can not be deleted)?'), 'required' => TRUE, 'where' => 'civicrm_option_group.is_reserved', @@ -231,12 +250,16 @@ class CRM_Core_DAO_OptionGroup extends CRM_Core_DAO { 'entity' => 'OptionGroup', 'bao' => 'CRM_Core_BAO_OptionGroup', 'localizable' => 0, + 'html' => [ + 'type' => 'CheckBox', + 'label' => ts("Reserved"), + ], 'add' => '1.5', ], 'is_active' => [ 'name' => 'is_active', 'type' => CRM_Utils_Type::T_BOOLEAN, - 'title' => ts('Option Group Is Active?'), + 'title' => ts('Enabled'), 'description' => ts('Is this option group active?'), 'required' => TRUE, 'where' => 'civicrm_option_group.is_active', @@ -263,6 +286,10 @@ class CRM_Core_DAO_OptionGroup extends CRM_Core_DAO { 'entity' => 'OptionGroup', 'bao' => 'CRM_Core_BAO_OptionGroup', 'localizable' => 0, + 'html' => [ + 'type' => 'CheckBox', + 'label' => ts("Locked"), + ], 'add' => '4.5', ], 'option_value_fields' => [ diff --git a/civicrm/CRM/Core/Form.php b/civicrm/CRM/Core/Form.php index 95834816b6d52dc0e2b1fac7220888627dd89ff5..f71fb5335bb5b712050b08c6bb78e85e3e6a1feb 100644 --- a/civicrm/CRM/Core/Form.php +++ b/civicrm/CRM/Core/Form.php @@ -1713,7 +1713,7 @@ class CRM_Core_Form extends HTML_QuickForm_Page { * @throws \CRM_Core_Exception * @throws \Exception * @return mixed - * HTML_QuickForm_Element + * HTML_QuickForm_element * void */ public function addField($name, $props = [], $required = FALSE, $legacyDate = TRUE) { diff --git a/civicrm/CRM/Core/Form/Task/PDFLetterCommon.php b/civicrm/CRM/Core/Form/Task/PDFLetterCommon.php index e9d32eab6cbe87173a6b11b9de88f250f48f6e70..af2e9e3fc357f511bd9cb96037f14004fd0bda3b 100644 --- a/civicrm/CRM/Core/Form/Task/PDFLetterCommon.php +++ b/civicrm/CRM/Core/Form/Task/PDFLetterCommon.php @@ -62,7 +62,7 @@ class CRM_Core_Form_Task_PDFLetterCommon { FALSE ); - // Added for core#2121, + // Added for dev/core#2121, // To support sending a custom pdf filename before downloading. $form->addElement('hidden', 'pdf_file_name'); diff --git a/civicrm/CRM/Core/I18n.php b/civicrm/CRM/Core/I18n.php index b1aa48974af0f1173cae2cae63b6f28d14585b39..c9db571c3247e3a13cec06760e5939859a422526 100644 --- a/civicrm/CRM/Core/I18n.php +++ b/civicrm/CRM/Core/I18n.php @@ -180,7 +180,7 @@ class CRM_Core_I18n { if (!$all) { $optionValues = []; - // Use `getValues`, not `buildOptions` to bypass hook_civicrm_fieldOptions. See core#1132. + // Use `getValues`, not `buildOptions` to bypass hook_civicrm_fieldOptions. See dev/core#1132. CRM_Core_OptionValue::getValues(['name' => 'languages'], $optionValues, 'weight', TRUE); $all = array_column($optionValues, 'label', 'name'); @@ -565,19 +565,25 @@ class CRM_Core_I18n { // It's only necessary to find/bind once if (!isset($this->_extensioncache[$key])) { try { + $path = CRM_Core_I18n::getResourceDir(); $mapper = CRM_Extension_System::singleton()->getMapper(); - $path = $mapper->keyToBasePath($key); $info = $mapper->keyToInfo($key); $domain = $info->file; + // Support extension .mo files outside the CiviCRM codebase (relates to dev/translation#52) + if (!file_exists(CRM_Core_I18n::getResourceDir() . $this->locale . DIRECTORY_SEPARATOR . 'LC_MESSAGES' . DIRECTORY_SEPARATOR . $domain . '.mo')) { + // Extensions that are not on Transifed might have their .po/mo files in their git repo + $path = $mapper->keyToBasePath($key) . DIRECTORY_SEPARATOR . 'l10n' . DIRECTORY_SEPARATOR; + } + if ($this->_nativegettext) { - bindtextdomain($domain, $path . DIRECTORY_SEPARATOR . 'l10n'); + bindtextdomain($domain, $path); bind_textdomain_codeset($domain, 'UTF-8'); $this->_extensioncache[$key] = $domain; } else { // phpgettext - $mo_file = $path . DIRECTORY_SEPARATOR . 'l10n' . DIRECTORY_SEPARATOR . $this->locale . DIRECTORY_SEPARATOR . 'LC_MESSAGES' . DIRECTORY_SEPARATOR . $domain . '.mo'; + $mo_file = $path . $this->locale . DIRECTORY_SEPARATOR . 'LC_MESSAGES' . DIRECTORY_SEPARATOR . $domain . '.mo'; $streamer = new FileReader($mo_file); $this->_extensioncache[$key] = $streamer->length() ? new gettext_reader($streamer) : NULL; } diff --git a/civicrm/CRM/Core/I18n/Form.php b/civicrm/CRM/Core/I18n/Form.php index f17c019e06538ae436c0e0d37b5f51da266ea47e..0dc8643f66015b6a3ffe681e0e3531eabc25371a 100644 --- a/civicrm/CRM/Core/I18n/Form.php +++ b/civicrm/CRM/Core/I18n/Form.php @@ -16,6 +16,22 @@ */ class CRM_Core_I18n_Form extends CRM_Core_Form { + /** + * List of available locales + * + * @var array + * @internal + */ + public $_locales = []; + + /** + * Database structure of translatable columns + * + * @var array + * @internal + */ + public $_structure = []; + public function buildQuickForm() { $config = CRM_Core_Config::singleton(); $tsLocale = CRM_Core_I18n::getLocale(); diff --git a/civicrm/CRM/Core/Payment.php b/civicrm/CRM/Core/Payment.php index 2280a1699f268d8f519b72482520a1f8d88f2c7a..84e47800bcd89ff3e237706d2e99830329b87a3b 100644 --- a/civicrm/CRM/Core/Payment.php +++ b/civicrm/CRM/Core/Payment.php @@ -1175,11 +1175,11 @@ abstract class CRM_Core_Payment { * Get url to return to after cancelled or failed transaction. * * @param string $qfKey - * @param int $participantID + * @param int|NULL $participantID * * @return string cancel url */ - public function getCancelUrl($qfKey, $participantID) { + public function getCancelUrl($qfKey, $participantID = NULL) { if (isset($this->cancelUrl)) { return $this->cancelUrl; } diff --git a/civicrm/CRM/Core/Payment/PayPalImpl.php b/civicrm/CRM/Core/Payment/PayPalImpl.php index acc2fe3aeb7512e1892cb7e9c8a8d22524e73001..bbaa04114c5278ef09784337db0addb333b2f318 100644 --- a/civicrm/CRM/Core/Payment/PayPalImpl.php +++ b/civicrm/CRM/Core/Payment/PayPalImpl.php @@ -255,7 +255,7 @@ class CRM_Core_Payment_PayPalImpl extends CRM_Core_Payment { $args['desc'] = $params['description'] ?? NULL; $args['invnum'] = $params['invoiceID']; $args['returnURL'] = $this->getReturnSuccessUrl($params['qfKey']); - $args['cancelURL'] = $this->getCancelUrl($params['qfKey'], NULL); + $args['cancelURL'] = $this->getCancelUrl($params['qfKey'], $params['participantID'] ?? NULL); $args['version'] = '56.0'; $args['SOLUTIONTYPE'] = 'Sole'; @@ -500,11 +500,11 @@ class CRM_Core_Payment_PayPalImpl extends CRM_Core_Payment { } if ($this->_paymentProcessor['billing_mode'] == 4) { - $this->doPaymentRedirectToPayPal($params, $component); + $this->doPaymentRedirectToPayPal($params); // redirect calls CiviExit() so execution is stopped } else { - $result = $this->doPaymentPayPalButton($params, $component); + $result = $this->doPaymentPayPalButton($params); if (is_array($result) && !isset($result['payment_status_id'])) { if (!empty($params['is_recur'])) { $result = $this->setStatusPaymentPending($result); @@ -537,12 +537,11 @@ class CRM_Core_Payment_PayPalImpl extends CRM_Core_Payment { * @param array $params * Assoc array of input parameters for this transaction. * - * @param string $component * @return array * the result in an nice formatted array (or an error object) * @throws \Civi\Payment\Exception\PaymentProcessorException */ - public function doPaymentPayPalButton(&$params, $component = 'contribute') { + public function doPaymentPayPalButton(&$params) { $args = []; $result = $this->setStatusPaymentPending([]); @@ -590,7 +589,7 @@ class CRM_Core_Payment_PayPalImpl extends CRM_Core_Payment { $args['totalbillingcycles'] = $params['installments'] ?? NULL; $args['version'] = 56.0; $args['PROFILEREFERENCE'] = "" . - "i=" . $params['invoiceID'] . "&m=" . $component . + "i=" . $params['invoiceID'] . "&m=" . $this->_component . "&c=" . $params['contactID'] . "&r=" . $params['contributionRecurID'] . "&b=" . $params['contributionID'] . "&p=" . $params['contributionPageID']; } @@ -915,12 +914,11 @@ class CRM_Core_Payment_PayPalImpl extends CRM_Core_Payment { /** * @param array $params - * @param string $component * * @throws Exception */ - public function doPaymentRedirectToPayPal(&$params, $component = 'contribute') { - $notifyParameters = ['module' => $component]; + public function doPaymentRedirectToPayPal(&$params) { + $notifyParameters = ['module' => $this->_component]; $notifyParameterMap = [ 'contactID' => 'contactID', 'contributionID' => 'contributionID', @@ -938,30 +936,15 @@ class CRM_Core_Payment_PayPalImpl extends CRM_Core_Payment { $notifyParameters[$notifyName] = $params[$paramsName]; } } - $notifyURL = $this->getNotifyUrl(); - $config = CRM_Core_Config::singleton(); - $url = ($component == 'event') ? 'civicrm/event/register' : 'civicrm/contribute/transact'; - $cancel = ($component == 'event') ? '_qf_Register_display' : '_qf_Main_display'; - - $cancelUrlString = "$cancel=1&cancel=1&qfKey={$params['qfKey']}"; - if (!empty($params['is_recur'])) { - $cancelUrlString .= "&isRecur=1&recurId={$params['contributionRecurID']}&contribId={$params['contributionID']}"; - } - - $cancelURL = CRM_Utils_System::url( - $url, - $cancelUrlString, - TRUE, NULL, FALSE - ); $paypalParams = [ 'business' => $this->_paymentProcessor['user_name'], - 'notify_url' => $notifyURL, + 'notify_url' => $this->getNotifyUrl(), 'item_name' => $this->getPaymentDescription($params, 127), 'quantity' => 1, 'undefined_quantity' => 0, - 'cancel_return' => $cancelURL, + 'cancel_return' => $this->getCancelUrl($params['qfKey'], $params['participantID'] ?? NULL), 'no_note' => 1, 'no_shipping' => 1, 'return' => $this->getReturnSuccessUrl($params['qfKey']), diff --git a/civicrm/CRM/Core/QuickForm/Action/Upload.php b/civicrm/CRM/Core/QuickForm/Action/Upload.php index fb999305c41ebfd8fbd289e80994a7189d59f674..c86d0b2f1602005de931f613b76a3d2d7440c538 100644 --- a/civicrm/CRM/Core/QuickForm/Action/Upload.php +++ b/civicrm/CRM/Core/QuickForm/Action/Upload.php @@ -72,6 +72,7 @@ class CRM_Core_QuickForm_Action_Upload extends CRM_Core_QuickForm_Action { // get the element containing the upload $element = &$page->getElement($uploadName); if ('file' == $element->getType()) { + /** @var HTML_QuickForm_file $element */ if ($element->isUploadedFile()) { // rename the uploaded file with a unique number at the end $value = $element->getValue(); diff --git a/civicrm/CRM/Core/Smarty.php b/civicrm/CRM/Core/Smarty.php index 483ef374baea205eac63e6b072809ea1c10630c4..5c0d1d884a7ffe6266e83d93950c9870cf5bbb75 100644 --- a/civicrm/CRM/Core/Smarty.php +++ b/civicrm/CRM/Core/Smarty.php @@ -19,6 +19,9 @@ * Fix for bug CRM-392. Not sure if this is the best fix or it will impact * other similar PEAR packages. doubt it */ + +use Civi\Core\Event\SmartyErrorEvent; + if (!class_exists('Smarty')) { require_once 'Smarty/Smarty.class.php'; } @@ -117,8 +120,8 @@ class CRM_Core_Smarty extends Smarty { // add the session and the config here $session = CRM_Core_Session::singleton(); - $this->assign_by_ref('config', $config); - $this->assign_by_ref('session', $session); + $this->assign('config', $config); + $this->assign('session', $session); $tsLocale = CRM_Core_I18n::getLocale(); $this->assign('tsLocale', $tsLocale); @@ -196,6 +199,21 @@ class CRM_Core_Smarty extends Smarty { return $output; } + /** + * Handle smarty error in one off string. + * + * @param int $errorNumber + * @param string $errorMessage + * + * @throws \CRM_Core_Exception + */ + public function handleSmartyError(int $errorNumber, string $errorMessage): void { + $event = new SmartyErrorEvent($errorNumber, $errorMessage); + \Civi::dispatcher()->dispatch('civi.smarty.error', $event); + restore_error_handler(); + throw new \CRM_Core_Exception('Message was not parsed due to invalid smarty syntax : ' . $errorMessage); + } + /** * Ensure these variables are set to make it easier to access them without e-notice. * diff --git a/civicrm/CRM/Custom/Form/Field.php b/civicrm/CRM/Custom/Form/Field.php index 3a4db3b7e55442941c985c26d498c09f65bc011f..0ae4d84ce06fe29459ae77fc50a90e340d1cd104 100644 --- a/civicrm/CRM/Custom/Form/Field.php +++ b/civicrm/CRM/Custom/Form/Field.php @@ -70,6 +70,7 @@ class CRM_Custom_Form_Field extends CRM_Core_Form { 'File' => ['File'], 'Link' => ['Link'], 'ContactReference' => ['Autocomplete-Select'], + 'EntityReference' => ['Autocomplete-Select'], ]; /** @@ -417,7 +418,7 @@ class CRM_Custom_Form_Field extends CRM_Core_Form { $this->add('number', 'options_per_line', ts('Options Per Line'), ['min' => 0]); $this->addRule('options_per_line', ts('must be a numeric value'), 'numeric'); - // default value, help pre, help post, mask, attributes, javascript ? + // default value, help pre, help post $this->add('text', 'default_value', ts('Default Value'), $attributes['default_value'] ); @@ -427,9 +428,6 @@ class CRM_Custom_Form_Field extends CRM_Core_Form { $this->add('textarea', 'help_post', ts('Field Post Help'), $attributes['help_post'] ); - $this->add('text', 'mask', ts('Mask'), - $attributes['mask'] - ); // is active ? $this->add('advcheckbox', 'is_active', ts('Active?')); @@ -740,7 +738,7 @@ SELECT count(*) } } elseif (in_array($htmlType, self::$htmlTypesWithOptions) && - !in_array($dataType, ['Boolean', 'Country', 'StateProvince', 'ContactReference']) + !in_array($dataType, ['Boolean', 'Country', 'StateProvince', 'ContactReference', 'EntityReference']) ) { if (!$fields['option_group_id']) { $errors['option_group_id'] = ts('You must select a Multiple Choice Option set if you chose Reuse an existing set.'); diff --git a/civicrm/CRM/Dedupe/Merger.php b/civicrm/CRM/Dedupe/Merger.php index ca76a69c785e70be46968607c87f7a057183b933..e0f7be46008255bea5f2ef30c6b972b6c8c69c05 100644 --- a/civicrm/CRM/Dedupe/Merger.php +++ b/civicrm/CRM/Dedupe/Merger.php @@ -1607,11 +1607,11 @@ INNER JOIN civicrm_membership membership2 ON membership1.membership_type_id = m } // handle custom fields - $mainTree = CRM_Core_BAO_CustomGroup::getTree($main['contact_type'], NULL, $mainId, -1, + $mainTree = self::getTree($main['contact_type'], NULL, $mainId, -1, CRM_Utils_Array::value('contact_sub_type', $main), NULL, TRUE, NULL, TRUE, $checkPermissions ? CRM_Core_Permission::EDIT : FALSE ); - $otherTree = CRM_Core_BAO_CustomGroup::getTree($main['contact_type'], NULL, $otherId, -1, + $otherTree = self::getTree($main['contact_type'], NULL, $otherId, -1, CRM_Utils_Array::value('contact_sub_type', $other), NULL, TRUE, NULL, TRUE, $checkPermissions ? CRM_Core_Permission::EDIT : FALSE ); @@ -1673,6 +1673,335 @@ INNER JOIN civicrm_membership membership2 ON membership1.membership_type_id = m return $result; } + /** + * Function is separated from shared function & can likely be distilled to an api call. + * + * @todo clean up post split. + * + * Get custom groups/fields data for type of entity in a tree structure representing group->field hierarchy + * This may also include entity specific data values. + * + * An array containing all custom groups and their custom fields is returned. + * + * @param string $entityType + * Of the contact whose contact type is needed. + * @param array $toReturn + * What data should be returned. ['custom_group' => ['id', 'name', etc.], 'custom_field' => ['id', 'label', etc.]] + * @param int $entityID + * @param int $groupID + * @param array $subTypes + * @param string $subName + * @param bool $fromCache + * @param bool $onlySubType + * Only return specified subtype or return specified subtype + unrestricted fields. + * @param bool $returnAll + * Do not restrict by subtype at all. (The parameter feels a bit cludgey but is only used from the + * api - through which it is properly tested - so can be refactored with some comfort.) + * @param bool|int $checkPermission + * Either a CRM_Core_Permission constant or FALSE to disable checks + * @param string|int $singleRecord + * holds 'new' or id if view/edit/copy form for a single record is being loaded. + * @param bool $showPublicOnly + * + * @return array + * Custom field 'tree'. + * + * The returned array is keyed by group id and has the custom group table fields + * and a subkey 'fields' holding the specific custom fields. + * If entityId is passed in the fields keys have a subkey 'customValue' which holds custom data + * if set for the given entity. This is structured as an array of values with each one having the keys 'id', 'data' + * + * @todo - review this - It also returns an array called 'info' with tables, select, from, where keys + * The reason for the info array in unclear and it could be determined from parsing the group tree after creation + * With caching the performance impact would be small & the function would be cleaner + * + * @throws \CRM_Core_Exception + */ + public static function getTree( + $entityType, + $toReturn = [], + $entityID = NULL, + $groupID = NULL, + $subTypes = [], + $subName = NULL, + $fromCache = TRUE, + $onlySubType = NULL, + $returnAll = FALSE, + $checkPermission = CRM_Core_Permission::EDIT, + $singleRecord = NULL, + $showPublicOnly = FALSE + ) { + if ($checkPermission === TRUE) { + CRM_Core_Error::deprecatedWarning('Unexpected TRUE passed to CustomGroup::getTree $checkPermission param.'); + $checkPermission = CRM_Core_Permission::EDIT; + } + if ($entityID) { + $entityID = CRM_Utils_Type::escape($entityID, 'Integer'); + } + if (!is_array($subTypes)) { + if (empty($subTypes)) { + $subTypes = []; + } + else { + if (stristr($subTypes, ',')) { + $subTypes = explode(',', $subTypes); + } + else { + $subTypes = explode(CRM_Core_DAO::VALUE_SEPARATOR, trim($subTypes, CRM_Core_DAO::VALUE_SEPARATOR)); + } + } + } + + // create a new tree + + // legacy hardcoded list of data to return + $tableData = [ + 'custom_field' => [ + 'id', + 'name', + 'label', + 'column_name', + 'data_type', + 'html_type', + 'default_value', + 'attributes', + 'is_required', + 'is_view', + 'help_pre', + 'help_post', + 'options_per_line', + 'start_date_years', + 'end_date_years', + 'date_format', + 'time_format', + 'option_group_id', + 'in_selector', + ], + 'custom_group' => [ + 'id', + 'name', + 'table_name', + 'title', + 'help_pre', + 'help_post', + 'collapse_display', + 'style', + 'is_multiple', + 'extends', + 'extends_entity_column_id', + 'extends_entity_column_value', + 'max_multiple', + ], + ]; + $current_db_version = CRM_Core_BAO_Domain::version(); + $is_public_version = version_compare($current_db_version, '4.7.19', '>='); + $serialize_version = version_compare($current_db_version, '5.27.alpha1', '>='); + if ($is_public_version) { + $tableData['custom_group'][] = 'is_public'; + } + if ($serialize_version) { + $tableData['custom_field'][] = 'serialize'; + } + if (!$toReturn || !is_array($toReturn)) { + $toReturn = $tableData; + } + else { + // Supply defaults and remove unknown array keys + $toReturn = array_intersect_key(array_filter($toReturn) + $tableData, $tableData); + // Merge in required fields that we must have + $toReturn['custom_field'] = array_unique(array_merge($toReturn['custom_field'], ['id', 'column_name', 'data_type'])); + $toReturn['custom_group'] = array_unique(array_merge($toReturn['custom_group'], ['id', 'is_multiple', 'table_name', 'name'])); + // Validate return fields + $toReturn['custom_field'] = array_intersect($toReturn['custom_field'], array_keys(CRM_Core_DAO_CustomField::fieldKeys())); + $toReturn['custom_group'] = array_intersect($toReturn['custom_group'], array_keys(CRM_Core_DAO_CustomGroup::fieldKeys())); + } + + // create select + $select = []; + foreach ($toReturn as $tableName => $tableColumn) { + foreach ($tableColumn as $columnName) { + $select[] = "civicrm_{$tableName}.{$columnName} as civicrm_{$tableName}_{$columnName}"; + } + } + $strSelect = "SELECT " . implode(', ', $select); + + // from, where, order by + $strFrom = " +FROM civicrm_custom_group +LEFT JOIN civicrm_custom_field ON (civicrm_custom_field.custom_group_id = civicrm_custom_group.id) +"; + + // if entity is either individual, organization or household pls get custom groups for 'contact' too. + if ($entityType == "Individual" || $entityType == 'Organization' || + $entityType == 'Household' + ) { + $in = "'$entityType', 'Contact'"; + } + elseif (strpos($entityType, "'") !== FALSE) { + // this allows the calling function to send in multiple entity types + $in = $entityType; + } + else { + // quote it + $in = "'$entityType'"; + } + + $params = []; + $sqlParamKey = 1; + $subType = ''; + if (!empty($subTypes)) { + foreach ($subTypes as $key => $subType) { + $subTypeClauses[] = self::whereListHas("civicrm_custom_group.extends_entity_column_value", CRM_Core_BAO_CustomGroup::validateSubTypeByEntity($entityType, $subType)); + } + $subTypeClause = '(' . implode(' OR ', $subTypeClauses) . ')'; + if (!$onlySubType) { + $subTypeClause = '(' . $subTypeClause . ' OR civicrm_custom_group.extends_entity_column_value IS NULL )'; + } + + $strWhere = " +WHERE civicrm_custom_group.is_active = 1 + AND civicrm_custom_field.is_active = 1 + AND civicrm_custom_group.extends IN ($in) + AND $subTypeClause +"; + if ($subName) { + $strWhere .= " AND civicrm_custom_group.extends_entity_column_id = %{$sqlParamKey}"; + $params[$sqlParamKey] = [$subName, 'String']; + $sqlParamKey = $sqlParamKey + 1; + } + } + else { + $strWhere = " +WHERE civicrm_custom_group.is_active = 1 + AND civicrm_custom_field.is_active = 1 + AND civicrm_custom_group.extends IN ($in) +"; + if (!$returnAll) { + $strWhere .= "AND civicrm_custom_group.extends_entity_column_value IS NULL"; + } + } + + if ($groupID > 0) { + // since we want a specific group id we add it to the where clause + $strWhere .= " AND civicrm_custom_group.id = %{$sqlParamKey}"; + $params[$sqlParamKey] = [$groupID, 'Integer']; + } + elseif (!$groupID) { + // since groupID is false we need to show all Inline groups + $strWhere .= " AND civicrm_custom_group.style = 'Inline'"; + } + if ($checkPermission) { + // ensure that the user has access to these custom groups + $strWhere .= " AND " . + CRM_Core_Permission::customGroupClause($checkPermission, + 'civicrm_custom_group.' + ); + } + + if ($showPublicOnly && $is_public_version) { + $strWhere .= "AND civicrm_custom_group.is_public = 1"; + } + + $orderBy = " +ORDER BY civicrm_custom_group.weight, + civicrm_custom_group.title, + civicrm_custom_field.weight, + civicrm_custom_field.label +"; + + // final query string + $queryString = "$strSelect $strFrom $strWhere $orderBy"; + + // lets see if we can retrieve the groupTree from cache + $cacheString = $queryString; + if ($groupID > 0) { + $cacheString .= "_{$groupID}"; + } + else { + $cacheString .= "_Inline"; + } + + $cacheKey = "CRM_Core_DAO_CustomGroup_Query " . md5($cacheString); + $multipleFieldGroupCacheKey = "CRM_Core_DAO_CustomGroup_QueryMultipleFields " . md5($cacheString); + $cache = CRM_Utils_Cache::singleton(); + if ($fromCache) { + $groupTree = $cache->get($cacheKey); + $multipleFieldGroups = $cache->get($multipleFieldGroupCacheKey); + } + + if (empty($groupTree)) { + [$multipleFieldGroups, $groupTree] = CRM_Core_BAO_CustomGroup::buildGroupTree($entityType, $toReturn, $subTypes, $queryString, $params, $subType); + + $cache->set($cacheKey, $groupTree); + $cache->set($multipleFieldGroupCacheKey, $multipleFieldGroups); + } + // entitySelectClauses is an array of select clauses for custom value tables which are not multiple + // and have data for the given entities. $entityMultipleSelectClauses is the same for ones with multiple + $entitySingleSelectClauses = $entityMultipleSelectClauses = $groupTree['info']['select'] = []; + $singleFieldTables = []; + // now that we have all the groups and fields, lets get the values + // since we need to know the table and field names + // add info to groupTree + + if (isset($groupTree['info']) && !empty($groupTree['info']) && + !empty($groupTree['info']['tables']) && $singleRecord != 'new' + ) { + $select = $from = $where = []; + $groupTree['info']['where'] = NULL; + + foreach ($groupTree['info']['tables'] as $table => $fields) { + $groupTree['info']['from'][] = $table; + $select = [ + "{$table}.id as {$table}_id", + "{$table}.entity_id as {$table}_entity_id", + ]; + foreach ($fields as $column => $dontCare) { + $select[] = "{$table}.{$column} as {$table}_{$column}"; + } + $groupTree['info']['select'] = array_merge($groupTree['info']['select'], $select); + if ($entityID) { + $groupTree['info']['where'][] = "{$table}.entity_id = $entityID"; + if (in_array($table, $multipleFieldGroups) && + CRM_Core_BAO_CustomGroup::customGroupDataExistsForEntity($entityID, $table) + ) { + $entityMultipleSelectClauses[$table] = $select; + } + else { + $singleFieldTables[] = $table; + $entitySingleSelectClauses = array_merge($entitySingleSelectClauses, $select); + } + + } + } + if ($entityID && !empty($singleFieldTables)) { + CRM_Core_BAO_CustomGroup::buildEntityTreeSingleFields($groupTree, $entityID, $entitySingleSelectClauses, $singleFieldTables); + } + $multipleFieldTablesWithEntityData = array_keys($entityMultipleSelectClauses); + if (!empty($multipleFieldTablesWithEntityData)) { + CRM_Core_BAO_CustomGroup::buildEntityTreeMultipleFields($groupTree, $entityID, $entityMultipleSelectClauses, $multipleFieldTablesWithEntityData, $singleRecord); + } + + } + return $groupTree; + } + + /** + * Suppose you have a SQL column, $column, which includes a delimited list, and you want + * a WHERE condition for rows that include $value. Use whereListHas(). + * + * @param string $column + * @param string $value + * @param string $delimiter + * @return string + * SQL condition. + */ + private static function whereListHas($column, $value, $delimiter = CRM_Core_DAO::VALUE_SEPARATOR) { + // ? + $bareValue = trim($value, $delimiter); + $escapedValue = CRM_Utils_Type::escape("%{$delimiter}{$bareValue}{$delimiter}%", 'String', FALSE); + return "($column LIKE \"$escapedValue\")"; + } + /** * Based on the provided two contact_ids and a set of tables, move the belongings of the * other contact to the main one - be it Location / CustomFields or Contact .. related info. @@ -1783,8 +2112,15 @@ INNER JOIN civicrm_membership membership2 ON membership1.membership_type_id = m $submitted = []; } foreach ($submitted as $key => $value) { - if (substr($key, 0, 7) === 'custom_') { - $submitted = self::processCustomFields($mainId, $key, $cFields, $submitted, $value); + if (strpos($key, 'custom_') === 0) { + $fieldID = (int) substr($key, 7); + if (empty($cFields[$fieldID])) { + $htmlType = $cFields[$fieldID]['attributes']['html_type']; + $isSerialized = CRM_Core_BAO_CustomField::isSerialized($cFields[$fieldID]['attributes']); + $isView = $cFields[$fieldID]['attributes']['is_view']; + $submitted = self::processCustomFields($mainId, $key, $submitted, $value, $fieldID, $isView, $htmlType, $isSerialized); + + } } } @@ -2197,31 +2533,27 @@ INNER JOIN civicrm_membership membership2 ON membership1.membership_type_id = m * * @param int $mainId * @param string $key - * @param array $cFields * @param array $submitted * @param mixed $value + * @param int $fieldID + * @param bool $isView + * @param string $htmlType + * @param bool $isSerialized * * @return array * @throws \CRM_Core_Exception */ - protected static function processCustomFields($mainId, $key, $cFields, $submitted, $value) { - $fid = (int) substr($key, 7); - if (empty($cFields[$fid])) { - return $submitted; - } - $htmlType = $cFields[$fid]['attributes']['html_type']; - $isSerialized = CRM_Core_BAO_CustomField::isSerialized($cFields[$fid]['attributes']); - + protected static function processCustomFields(int $mainId, string $key, array $submitted, $value, int $fieldID, bool $isView, string $htmlType, bool $isSerialized): array { if ($htmlType === 'File') { // Handled in CustomField->move(). Tested in testMergeCustomFields. - unset($submitted["custom_$fid"]); + unset($submitted["custom_$fieldID"]); } elseif (!$isSerialized && ($htmlType === 'Select Country' || $htmlType === 'Select State/Province')) { // @todo Test in testMergeCustomFields disabled as this does not work, Handle in CustomField->move(). - $submitted[$key] = CRM_Core_BAO_CustomField::displayValue($value, $fid); + $submitted[$key] = CRM_Core_BAO_CustomField::displayValue($value, $fieldID); } elseif ($htmlType === 'Select Date') { - if ($cFields[$fid]['attributes']['is_view']) { + if ($isView) { $submitted[$key] = date('YmdHis', strtotime($submitted[$key])); } } diff --git a/civicrm/CRM/Event/ActionMapping.php b/civicrm/CRM/Event/ActionMapping.php index c474a8dba6aaf87b5afd7ffaf7a5533fd66bdebd..a14785f48b1eb72d338307b630c435692fcc235c 100644 --- a/civicrm/CRM/Event/ActionMapping.php +++ b/civicrm/CRM/Event/ActionMapping.php @@ -37,6 +37,9 @@ class CRM_Event_ActionMapping extends \Civi\ActionSchedule\Mapping { * @param \Civi\ActionSchedule\Event\MappingRegisterEvent $registrations */ public static function onRegisterActionMappings(\Civi\ActionSchedule\Event\MappingRegisterEvent $registrations) { + if (!CRM_Core_Component::isEnabled('CiviEvent')) { + return; + } $registrations->register(CRM_Event_ActionMapping::create([ 'id' => CRM_Event_ActionMapping::EVENT_TYPE_MAPPING_ID, 'entity' => 'civicrm_participant', diff --git a/civicrm/CRM/Event/BAO/Event.php b/civicrm/CRM/Event/BAO/Event.php index d49e9d15482c6159c98776534308e28c7c321cff..23d26017feb7a8029451902f1ebf6ad87556c6c7 100644 --- a/civicrm/CRM/Event/BAO/Event.php +++ b/civicrm/CRM/Event/BAO/Event.php @@ -95,9 +95,6 @@ class CRM_Event_BAO_Event extends CRM_Event_DAO_Event implements \Civi\Core\Hook */ public static function create(&$params) { $transaction = new CRM_Core_Transaction(); - if (empty($params['is_template'])) { - $params['is_template'] = 0; - } // check if new event, if so set the created_id (if not set) // and always set created_date to now if (empty($params['id'])) { @@ -722,13 +719,13 @@ WHERE civicrm_address.geo_code_1 IS NOT NULL /** * Get the complete information for one or more events. * - * @param date $start + * @param Date $start * Get events with start date >= this date. * @param int $type Get events on the a specific event type (by event_type_id). * Get events on the a specific event type (by event_type_id). * @param int $eventId Return a single event - by event id. * Return a single event - by event id. - * @param date $end + * @param Date $end * Also get events with end date >= this date. * @param bool $onlyPublic Include public events only, default TRUE. * Include public events only, default TRUE. diff --git a/civicrm/CRM/Event/Form/Participant.php b/civicrm/CRM/Event/Form/Participant.php index 7fe919029e2aa2af17b6bb3c41c240750e39ba62..335d1088415a857ab1f73a3d9765ef019cd833ef 100644 --- a/civicrm/CRM/Event/Form/Participant.php +++ b/civicrm/CRM/Event/Form/Participant.php @@ -516,7 +516,6 @@ class CRM_Event_Form_Participant extends CRM_Contribute_Form_AbstractEditPayment $this->assign('participant_is_pay_later', TRUE); } - $this->assign('participant_status_id', $defaults[$this->_id]['participant_status_id']); $eventID = $defaults[$this->_id]['event_id']; $this->_eventTypeId = CRM_Core_DAO::getFieldValue('CRM_Event_DAO_Event', $eventID, 'event_type_id', 'id'); @@ -1025,6 +1024,7 @@ class CRM_Event_Form_Participant extends CRM_Contribute_Form_AbstractEditPayment $this->_params['participant_status_id'] = $params['status_id']; $this->_params['participant_role_id'] = is_array($params['role_id']) ? $params['role_id'] : explode(',', $params['role_id']); $roleIdWithSeparator = implode(CRM_Core_DAO::VALUE_SEPARATOR, $this->_params['participant_role_id']); + $this->assign('participant_status_id', $params['status_id']); $now = date('YmdHis'); diff --git a/civicrm/CRM/Event/Import/Parser/Participant.php b/civicrm/CRM/Event/Import/Parser/Participant.php index 4f4ab4c277297fdb8143d5e1e17fc9796ad93bba..86bc1f0a4bfa2859aa304208103d02a71eb3367f 100644 --- a/civicrm/CRM/Event/Import/Parser/Participant.php +++ b/civicrm/CRM/Event/Import/Parser/Participant.php @@ -187,7 +187,7 @@ class CRM_Event_Import_Parser_Participant extends CRM_Import_Parser { if (empty($params['contact_id'])) { $error = $this->checkContactDuplicate($formatValues); - if (CRM_Core_Error::isAPIError($error, CRM_Core_ERROR::DUPLICATE_CONTACT)) { + if (CRM_Core_Error::isAPIError($error, CRM_Core_Error::DUPLICATE_CONTACT)) { $matchedIDs = (array) $error['error_message']['params']; if (count($matchedIDs) >= 1) { foreach ($matchedIDs as $contactId) { diff --git a/civicrm/CRM/Event/Page/EventInfo.php b/civicrm/CRM/Event/Page/EventInfo.php index 58681f7177bfdb3a2f48d83e1c8ea1e657ceaa0d..8790c171bf5ea142626f31cea31cdef9e3bda408 100644 --- a/civicrm/CRM/Event/Page/EventInfo.php +++ b/civicrm/CRM/Event/Page/EventInfo.php @@ -280,10 +280,8 @@ class CRM_Event_Page_EventInfo extends CRM_Core_Page { $this->assign('registerURL', $url); } } - elseif (CRM_Core_Permission::check('register for events')) { - $this->assign('registerClosed', TRUE); - } } + $this->assign('registerClosed', !empty($values['event']['is_online_registration']) && !$isEventOpenForRegistration); $this->assign('allowRegistration', $allowRegistration); diff --git a/civicrm/CRM/Extension/Container/Static.php b/civicrm/CRM/Extension/Container/Static.php index 3ebb70888739013122791cf26a83aea8f79fda3c..07a2ddca1966023e715d3794c09f07ff7e5e274d 100644 --- a/civicrm/CRM/Extension/Container/Static.php +++ b/civicrm/CRM/Extension/Container/Static.php @@ -20,6 +20,11 @@ */ class CRM_Extension_Container_Static implements CRM_Extension_Container_Interface { + /** + * @var array + */ + protected $exts = []; + /** * @param array $exts * Array(string $key => array $spec) List of extensions. diff --git a/civicrm/CRM/Extension/Downloader.php b/civicrm/CRM/Extension/Downloader.php index 05e871f368e378ea812b809a18f4196aa4b5fe8b..dbf689a807d710d1f9463e1411504b31f71dd7af 100644 --- a/civicrm/CRM/Extension/Downloader.php +++ b/civicrm/CRM/Extension/Downloader.php @@ -73,7 +73,7 @@ class CRM_Extension_Downloader { /** * Determine whether downloading is supported. * - * @param \CRM_EXtension_Info $extensionInfo Optional info for (updated) extension + * @param \CRM_Extension_Info $extensionInfo Optional info for (updated) extension * * @return array * list of error messages; empty if OK diff --git a/civicrm/CRM/Import/Form/MapField.php b/civicrm/CRM/Import/Form/MapField.php index 476d632ed9ad7b88b58995f7e24fee7319d9e640..3ab882d2d110597517d638d9a0d4bb3e6e644de6 100644 --- a/civicrm/CRM/Import/Form/MapField.php +++ b/civicrm/CRM/Import/Form/MapField.php @@ -24,13 +24,6 @@ use Civi\Api4\MappingField; */ abstract class CRM_Import_Form_MapField extends CRM_Import_Forms { - /** - * Cache of preview data values - * - * @var array - */ - protected $_dataValues; - /** * Mapper fields * @@ -38,13 +31,6 @@ abstract class CRM_Import_Form_MapField extends CRM_Import_Forms { */ protected $_mapperFields; - /** - * Number of columns in import file - * - * @var int - */ - protected $_columnCount; - /** * Column headers, if we have them * @@ -141,46 +127,6 @@ abstract class CRM_Import_Form_MapField extends CRM_Import_Forms { return ''; } - /** - * Guess at the field names given the data and patterns from the schema. - * - * @param array $patterns - * @param string $index - * - * @return string - */ - public function defaultFromData($patterns, $index) { - $best = ''; - $bestHits = 0; - $n = count($this->_dataValues); - - foreach ($patterns as $key => $re) { - // Skip empty key/patterns - if (!$key || !$re || strlen("$re") < 5) { - continue; - } - - /* Take a vote over the preview data set */ - $hits = 0; - for ($i = 0; $i < $n; $i++) { - if (isset($this->_dataValues[$i][$index])) { - if (preg_match($re, $this->_dataValues[$i][$index])) { - $hits++; - } - } - } - if ($hits > $bestHits) { - $bestHits = $hits; - $best = $key; - } - } - - if ($best != '') { - $this->_fieldUsed[$best] = TRUE; - } - return $best; - } - /** * Add the saved mapping fields to the form. * diff --git a/civicrm/CRM/Import/Forms.php b/civicrm/CRM/Import/Forms.php index ff4da683aa2b8649339ce55d4b587fee70a6cb98..4c024ba2346a32126a08446152623f56dd17ea0b 100644 --- a/civicrm/CRM/Import/Forms.php +++ b/civicrm/CRM/Import/Forms.php @@ -678,14 +678,10 @@ class CRM_Import_Forms extends CRM_Core_Form { */ protected function assignMapFieldVariables(): void { $this->addExpectedSmartyVariables(['highlightedRelFields', 'initHideBoxes']); - $this->_columnCount = $this->getNumberOfColumns(); - $this->_columnNames = $this->getColumnHeaders(); - $this->_dataValues = array_values($this->getDataRows([], 2)); $this->assign('columnNames', $this->getColumnHeaders()); $this->assign('showColumnNames', $this->getSubmittedValue('skipColumnHeader') || $this->getSubmittedValue('dataSource') !== 'CRM_Import_DataSource'); $this->assign('highlightedFields', $this->getHighlightedFields()); - $this->assign('columnCount', $this->_columnCount); - $this->assign('dataValues', $this->_dataValues); + $this->assign('dataValues', array_values($this->getDataRows([], 2))); } /** diff --git a/civicrm/CRM/Import/Parser.php b/civicrm/CRM/Import/Parser.php index 9b909411f064b31d216358368865bdaf1e45f85f..6ad0e41dddf9b47d3822b65ef895b327c2e4580d 100644 --- a/civicrm/CRM/Import/Parser.php +++ b/civicrm/CRM/Import/Parser.php @@ -2548,16 +2548,20 @@ abstract class CRM_Import_Parser implements UserJobInterface { /** * @param array|null $row + * + * @return bool */ - public function validateRow(?array $row): void { + public function validateRow(?array $row): bool { try { $rowNumber = $row['_id']; $values = array_values($row); $this->validateValues($values); $this->setImportStatus($rowNumber, 'VALID', ''); + return TRUE; } catch (CRM_Core_Exception $e) { $this->setImportStatus($rowNumber, 'ERROR', $e->getMessage()); + return FALSE; } } diff --git a/civicrm/CRM/Logging/Schema.php b/civicrm/CRM/Logging/Schema.php index bbe7801f215a19228cd93a154a8fed57b6f9c24e..f1f5847cc4a2095e80dfb059f84dfc5f874ee0f2 100644 --- a/civicrm/CRM/Logging/Schema.php +++ b/civicrm/CRM/Logging/Schema.php @@ -743,7 +743,7 @@ WHERE table_schema IN ('{$this->db}', '{$civiDB}')"; } elseif ( $civiTableSpecs[$col]['COLUMN_DEFAULT'] != ($logTableSpecs[$col]['COLUMN_DEFAULT'] ?? NULL) - && !stristr($civiTableSpecs[$col]['COLUMN_DEFAULT'], 'timestamp') + && !stristr(($civiTableSpecs[$col]['COLUMN_DEFAULT'] ?? ''), 'timestamp') && !($civiTableSpecs[$col]['COLUMN_DEFAULT'] === NULL && ($logTableSpecs[$col]['COLUMN_DEFAULT'] ?? NULL) === 'NULL') ) { // if default property is different, and its not about a timestamp column, consider it diff --git a/civicrm/CRM/Mailing/MailStore/Imap.php b/civicrm/CRM/Mailing/MailStore/Imap.php index 718dc8c06751bafd05cfcadceb753616eb8ae75a..ec1149d8d570f135f8901d6289d7d953fbf5ce61 100644 --- a/civicrm/CRM/Mailing/MailStore/Imap.php +++ b/civicrm/CRM/Mailing/MailStore/Imap.php @@ -68,6 +68,8 @@ class CRM_Mailing_MailStore_Imap extends CRM_Mailing_MailStore { 'listLimit' => defined('MAIL_BATCH_SIZE') ? MAIL_BATCH_SIZE : 1000, 'ssl' => $ssl, 'uidReferencing' => TRUE, + // A timeout of 15 prevents the fetch_bounces job from failing if the response is a bit slow. + 'timeout' => 15, ]; $this->_transport = new ezcMailImapTransport($host, NULL, $options); if ($useXOAUTH2) { diff --git a/civicrm/CRM/Member/Form/MembershipView.php b/civicrm/CRM/Member/Form/MembershipView.php index fd0e1620d038a828665b53de9c0f964894dc8b4d..68d1855858b555407290f8c9d896e8af328429f7 100644 --- a/civicrm/CRM/Member/Form/MembershipView.php +++ b/civicrm/CRM/Member/Form/MembershipView.php @@ -15,6 +15,8 @@ * @copyright CiviCRM LLC https://civicrm.org/licensing */ +use Civi\Api4\Membership; + /** * This class generates form components for Payment-Instrument */ @@ -153,11 +155,14 @@ class CRM_Member_Form_MembershipView extends CRM_Core_Form { $this->assign('context', $context); if ($this->membershipID) { - $values = \Civi\Api4\Membership::get() + $memberships = Membership::get() ->addSelect('*', 'status_id:label', 'membership_type_id:label', 'membership_type_id.financial_type_id', 'status_id.is_current_member') ->addWhere('id', '=', $this->membershipID) - ->execute() - ->first(); + ->execute(); + if (!count($memberships)) { + CRM_Core_Error::statusBounce(ts('You do not have permission to access this page.')); + } + $values = $memberships->first(); // Ensure keys expected by MembershipView.tpl are set correctly // Some of these defaults are overwritten dependant on context below @@ -169,16 +174,11 @@ class CRM_Member_Form_MembershipView extends CRM_Core_Form { $values['owner_display_name'] = FALSE; $values['campaign'] = FALSE; - if (CRM_Financial_BAO_FinancialType::isACLFinancialTypeStatus()) { - $finTypeId = CRM_Core_DAO::getFieldValue('CRM_Member_DAO_MembershipType', $values['membership_type_id'], 'financial_type_id'); - $finType = CRM_Contribute_PseudoConstant::financialType($finTypeId); - if (!CRM_Core_Permission::check('view contributions of type ' . $finType)) { - CRM_Core_Error::statusBounce(ts('You do not have permission to access this page.')); - } - } - else { - $this->assign('noACL', TRUE); - } + // This tells the template not to check financial acls when determining + // whether to show edit & delete links. Link decisions + // should be moved to the php layer - with financialacls using hooks. + $this->assign('noACL', !CRM_Financial_BAO_FinancialType::isACLFinancialTypeStatus()); + $membershipType = CRM_Member_BAO_MembershipType::getMembershipTypeDetails($values['membership_type_id']); // Do the action on related Membership if needed diff --git a/civicrm/CRM/Member/Import/Parser/Membership.php b/civicrm/CRM/Member/Import/Parser/Membership.php index 3a29c4bc573a2d8cfb70f1d2715aa0d6f11300f9..92cb027c6da2eff1257aa44667d9ec0ad31b262e 100644 --- a/civicrm/CRM/Member/Import/Parser/Membership.php +++ b/civicrm/CRM/Member/Import/Parser/Membership.php @@ -204,7 +204,7 @@ class CRM_Member_Import_Parser_Membership extends CRM_Import_Parser { if (empty($formatValues['id']) && empty($formatValues['contact_id'])) { $error = $this->checkContactDuplicate($formatValues); - if (CRM_Core_Error::isAPIError($error, CRM_Core_ERROR::DUPLICATE_CONTACT)) { + if (CRM_Core_Error::isAPIError($error, CRM_Core_Error::DUPLICATE_CONTACT)) { $matchedIDs = (array) $error['error_message']['params']; if (count($matchedIDs) > 1) { throw new CRM_Core_Exception('Multiple matching contact records detected for this row. The membership was not imported', CRM_Import_Parser::ERROR); diff --git a/civicrm/CRM/PCP/Page/PCPInfo.php b/civicrm/CRM/PCP/Page/PCPInfo.php index 2a3cf3762ee9719f58031f0bc305cefe07268639..53711f255e04dd2be0b08f5e70a92957c2632953 100644 --- a/civicrm/CRM/PCP/Page/PCPInfo.php +++ b/civicrm/CRM/PCP/Page/PCPInfo.php @@ -62,17 +62,6 @@ class CRM_PCP_Page_PCPInfo extends CRM_Core_Page { $pcpStatus = CRM_Core_OptionGroup::values("pcp_status"); $approvedId = CRM_Core_PseudoConstant::getKey('CRM_PCP_BAO_PCP', 'status_id', 'Approved'); - // check if PCP is created by anonymous user - $anonymousPCP = CRM_Utils_Request::retrieve('ap', 'Boolean', $this); - if ($anonymousPCP) { - $loginURL = $config->userSystem->getLoginURL(); - $anonMessage = ts('Once you\'ve received your new account welcome email, you can <a href=%1>click here</a> to login and promote your campaign page.', [1 => $loginURL]); - CRM_Core_Session::setStatus($anonMessage, ts('Success'), 'success'); - } - else { - $statusMessage = ts('The personal campaign page you requested is currently unavailable. However you can still support the campaign by making a contribution here.'); - } - $pcpBlock = new CRM_PCP_DAO_PCPBlock(); $pcpBlock->entity_table = CRM_PCP_BAO_PCP::getPcpEntityTable($pcpInfo['page_type']); $pcpBlock->entity_id = $pcpInfo['page_id']; @@ -86,6 +75,21 @@ class CRM_PCP_Page_PCPInfo extends CRM_Core_Page { $urlBase = 'civicrm/event/register'; } + // check if PCP is created by anonymous user + $anonymousPCP = CRM_Utils_Request::retrieve('ap', 'Boolean', $this); + if ($anonymousPCP) { + $loginURL = $config->userSystem->getLoginURL(); + $anonMessage = ts('Once you\'ve received your new account welcome email, you can <a href=%1>click here</a> to login and promote your campaign page.', [1 => $loginURL]); + CRM_Core_Session::setStatus($anonMessage, ts('Success'), 'success'); + CRM_Utils_System::redirect(CRM_Utils_System::url($urlBase, + "reset=1&id=" . $pcpInfo['page_id'], + FALSE, NULL, FALSE, TRUE + )); + } + else { + $statusMessage = ts('The personal campaign page you requested is currently unavailable. However you can still support the campaign by making a contribution here.'); + } + if ($pcpInfo['status_id'] != $approvedId || !$pcpInfo['is_active']) { if ($pcpInfo['contact_id'] != $session->get('userID') && !$permissionCheck) { CRM_Core_Error::statusBounce($statusMessage, CRM_Utils_System::url($urlBase, diff --git a/civicrm/CRM/Price/BAO/PriceSet.php b/civicrm/CRM/Price/BAO/PriceSet.php index bfa8565048203e8c8130bf8e8ddfe8633bb3939b..30de2eaf3686ed0b943f2712d6281966e266115c 100644 --- a/civicrm/CRM/Price/BAO/PriceSet.php +++ b/civicrm/CRM/Price/BAO/PriceSet.php @@ -878,38 +878,18 @@ WHERE id = %1"; } /** - * Check the current Membership having end date null. + * Check for lifetime membership types this contact has that are in this price field. * * @param array $options - * @param int $userid - * Probably actually contact ID. + * @param int $contactId * * @return bool */ - public static function checkCurrentMembership(&$options, $userid) { - if (!$userid || empty($options)) { - return FALSE; - } - static $_contact_memberships = []; - $checkLifetime = FALSE; - foreach ($options as $key => $value) { - if (!empty($value['membership_type_id'])) { - if (!isset($_contact_memberships[$userid][$value['membership_type_id']])) { - $_contact_memberships[$userid][$value['membership_type_id']] = CRM_Member_BAO_Membership::getContactMembership($userid, $value['membership_type_id'], FALSE); - } - $currentMembership = $_contact_memberships[$userid][$value['membership_type_id']]; - if (!empty($currentMembership) && empty($currentMembership['end_date'])) { - unset($options[$key]); - $checkLifetime = TRUE; - } - } - } - if ($checkLifetime) { - return TRUE; - } - else { - return FALSE; - } + private static function checkCurrentMembership(array $options, int $contactId) : bool { + $contactsLifetimeMemberships = CRM_Member_BAO_Membership::getAllContactMembership($contactId, FALSE, TRUE); + $contactsLifetimeMembershipTypes = array_column($contactsLifetimeMemberships, 'membership_type_id'); + $memTypeIdsInPriceField = array_column($options, 'membership_type_id'); + return (bool) array_intersect($memTypeIdsInPriceField, $contactsLifetimeMembershipTypes); } /** @@ -1681,6 +1661,7 @@ WHERE ct.id = cp.financial_type_id AND $hideAdminValues = !CRM_Core_Permission::check('edit contributions'); // CRM-14492 Admin price fields should show up on event registration if user has 'administer CiviCRM' permissions $adminFieldVisible = CRM_Core_Permission::check('administer CiviCRM'); + $checklifetime = FALSE; foreach ($feeBlock as $id => $field) { if (CRM_Utils_Array::value('visibility', $field) == 'public' || (CRM_Utils_Array::value('visibility', $field) == 'admin' && $adminFieldVisible == TRUE) || @@ -1688,10 +1669,9 @@ WHERE ct.id = cp.financial_type_id AND ) { $options = $field['options'] ?? NULL; if ($className == 'CRM_Contribute_Form_Contribution_Main' && $component = 'membership') { - $userid = $form->getVar('_membershipContactID'); - $checklifetime = self::checkCurrentMembership($options, $userid); - if ($checklifetime) { - $form->assign('ispricelifetime', TRUE); + $contactId = $form->getVar('_membershipContactID'); + if ($contactId && $options) { + $checklifetime = $checklifetime ?: self::checkCurrentMembership($options, $contactId); } } @@ -1719,6 +1699,7 @@ WHERE ct.id = cp.financial_type_id AND } } } + $form->assign('ispricelifetime', $checklifetime); } } diff --git a/civicrm/CRM/Queue/Queue/Sql.php b/civicrm/CRM/Queue/Queue/Sql.php index d556cbaf7d9b9e5b7d19d5c6a070bcddf2025fcb..5d095dc1808a651dd90c6ad0ffd94d70da448cc6 100644 --- a/civicrm/CRM/Queue/Queue/Sql.php +++ b/civicrm/CRM/Queue/Queue/Sql.php @@ -56,29 +56,24 @@ class CRM_Queue_Queue_Sql extends CRM_Queue_Queue { ORDER BY weight, id LIMIT 1 ) first_in_queue - WHERE release_time IS NULL OR release_time < %2 + WHERE release_time IS NULL OR UNIX_TIMESTAMP(release_time) < %2 '; $params = [ 1 => [$this->getName(), 'String'], - 2 => [CRM_Utils_Time::getTime(), 'Timestamp'], + 2 => [CRM_Utils_Time::time(), 'Integer'], ]; $dao = CRM_Core_DAO::executeQuery($sql, $params, TRUE, 'CRM_Queue_DAO_QueueItem'); if ($dao->fetch()) { $nowEpoch = CRM_Utils_Time::getTimeRaw(); $dao->run_count++; - $sql = 'UPDATE civicrm_queue_item SET release_time = %1, run_count = %3 WHERE id = %2'; + $sql = 'UPDATE civicrm_queue_item SET release_time = from_unixtime(unix_timestamp() + %1), run_count = %3 WHERE id = %2'; $sqlParams = [ - '1' => [date('YmdHis', $nowEpoch + $lease_time), 'String'], + '1' => [CRM_Utils_Time::delta() + $lease_time, 'Integer'], '2' => [$dao->id, 'Integer'], '3' => [$dao->run_count, 'Integer'], ]; CRM_Core_DAO::executeQuery($sql, $sqlParams); - // (Comment by artfulrobot Sep 2019: Not sure what the below comment means, should be removed/clarified?) - // work-around: inconsistent date-formatting causes unintentional breakage - # $dao->submit_time = date('YmdHis', strtotime($dao->submit_time)); - # $dao->release_time = date('YmdHis', $nowEpoch + $lease_time); - # $dao->save(); $dao->data = unserialize($dao->data); $result = $dao; } @@ -114,8 +109,8 @@ class CRM_Queue_Queue_Sql extends CRM_Queue_Queue { if ($dao->fetch()) { $nowEpoch = CRM_Utils_Time::getTimeRaw(); $dao->run_count++; - CRM_Core_DAO::executeQuery("UPDATE civicrm_queue_item SET release_time = %1 WHERE id = %2", [ - '1' => [date('YmdHis', $nowEpoch + $lease_time), 'String'], + CRM_Core_DAO::executeQuery("UPDATE civicrm_queue_item SET release_time = from_unixtime(unix_timestamp() + %1) WHERE id = %2", [ + '1' => [CRM_Utils_Time::delta() + $lease_time, 'Integer'], '2' => [$dao->id, 'Integer'], ]); $dao->data = unserialize($dao->data); diff --git a/civicrm/CRM/Queue/Queue/SqlParallel.php b/civicrm/CRM/Queue/Queue/SqlParallel.php index 8573b7b99883b9aad03cfe0e3ccfdf6457a27a14..7a4b6e4704c3ba17488462326e31e215bee61577 100644 --- a/civicrm/CRM/Queue/Queue/SqlParallel.php +++ b/civicrm/CRM/Queue/Queue/SqlParallel.php @@ -53,13 +53,13 @@ class CRM_Queue_Queue_SqlParallel extends CRM_Queue_Queue implements CRM_Queue_Q $sql = "SELECT id, queue_name, submit_time, release_time, run_count, data FROM civicrm_queue_item WHERE queue_name = %1 - AND (release_time IS NULL OR release_time < %2) + AND (release_time IS NULL OR UNIX_TIMESTAMP(release_time) < %2) ORDER BY weight ASC, id ASC LIMIT %3 "; $params = [ 1 => [$this->getName(), 'String'], - 2 => [CRM_Utils_Time::getTime(), 'Timestamp'], + 2 => [CRM_Utils_Time::time(), 'Integer'], 3 => [$limit, 'Integer'], ]; $dao = CRM_Core_DAO::executeQuery($sql, $params, TRUE, 'CRM_Queue_DAO_QueueItem'); @@ -78,9 +78,8 @@ class CRM_Queue_Queue_SqlParallel extends CRM_Queue_Queue implements CRM_Queue_Q ]; } if ($result) { - $nowEpoch = CRM_Utils_Time::getTimeRaw(); - $sql = CRM_Utils_SQL::interpolate('UPDATE civicrm_queue_item SET release_time = @RT, run_count = 1+run_count WHERE id IN (#ids)', [ - 'RT' => date('YmdHis', $nowEpoch + $lease_time), + $sql = CRM_Utils_SQL::interpolate('UPDATE civicrm_queue_item SET release_time = FROM_UNIXTIME(UNIX_TIMESTAMP() + #release), run_count = 1+run_count WHERE id IN (#ids)', [ + 'release' => CRM_Utils_Time::delta() + $lease_time, 'ids' => CRM_Utils_Array::collect('id', $result), ]); CRM_Core_DAO::executeQuery($sql); @@ -117,8 +116,8 @@ class CRM_Queue_Queue_SqlParallel extends CRM_Queue_Queue implements CRM_Queue_Q if ($dao->fetch()) { $nowEpoch = CRM_Utils_Time::getTimeRaw(); $dao->run_count++; - CRM_Core_DAO::executeQuery("UPDATE civicrm_queue_item SET release_time = %1, run_count = %3 WHERE id = %2", [ - '1' => [date('YmdHis', $nowEpoch + $lease_time), 'String'], + CRM_Core_DAO::executeQuery("UPDATE civicrm_queue_item SET release_time = from_unixtime(unix_timestamp() + %1), run_count = %3 WHERE id = %2", [ + '1' => [CRM_Utils_Time::delta() + $lease_time, 'Integer'], '2' => [$dao->id, 'Integer'], '3' => [$dao->run_count, 'Integer'], ]); diff --git a/civicrm/CRM/Queue/Queue/SqlTrait.php b/civicrm/CRM/Queue/Queue/SqlTrait.php index 69f5cf2206897a4e0ddc49ef6997bf5b0fb52446..6b315b83ee27e9669e07a3c67b603b43ccdabe6f 100644 --- a/civicrm/CRM/Queue/Queue/SqlTrait.php +++ b/civicrm/CRM/Queue/Queue/SqlTrait.php @@ -59,12 +59,12 @@ trait CRM_Queue_Queue_SqlTrait { switch ($name) { case 'ready': return (int) CRM_Core_DAO::singleValueQuery( - 'SELECT count(*) FROM civicrm_queue_item WHERE queue_name = %1 AND (release_time is null OR release_time <= FROM_UNIXTIME(%2))', + 'SELECT count(*) FROM civicrm_queue_item WHERE queue_name = %1 AND (release_time is null OR UNIX_TIMESTAMP(release_time) <= %2)', [1 => [$this->getName(), 'String'], 2 => [CRM_Utils_Time::time(), 'Int']]); case 'blocked': return (int) CRM_Core_DAO::singleValueQuery( - 'SELECT count(*) FROM civicrm_queue_item WHERE queue_name = %1 AND release_time > FROM_UNIXTIME(%2)', + 'SELECT count(*) FROM civicrm_queue_item WHERE queue_name = %1 AND UNIX_TIMESTAMP(release_time) > %2', [1 => [$this->getName(), 'String'], 2 => [CRM_Utils_Time::time(), 'Int']]); case 'total': @@ -88,15 +88,21 @@ trait CRM_Queue_Queue_SqlTrait { * Ex: ['release_time' => strtotime('+3 hours')] */ public function createItem($data, $options = []) { - $dao = new CRM_Queue_DAO_QueueItem(); - $dao->queue_name = $this->getName(); - $dao->submit_time = CRM_Utils_Time::getTime('YmdHis'); - $dao->data = serialize($data); - $dao->weight = CRM_Utils_Array::value('weight', $options, 0); - if (isset($options['release_time'])) { - $dao->release_time = date('Y-m-d H:i:s', $options['release_time']); + if (!isset($options['release_time'])) { + $releaseTime = 'null'; } - $dao->save(); + elseif (is_numeric($options['release_time'])) { + $releaseTime = sprintf('FROM_UNIXTIME(%d)', $options['release_time']); + } + else { + throw new \CRM_Core_Exception("Cannot enqueue item. Malformed release_time."); + } + + \CRM_Core_DAO::executeQuery("INSERT INTO civicrm_queue_item (queue_name, submit_time, data, weight, release_time) VALUES (%1, now(), %2, %3, {$releaseTime})", [ + 1 => [$this->getName(), 'String'], + 2 => [serialize($data), 'String'], + 3 => [CRM_Utils_Array::value('weight', $options, 0), 'Integer'], + ], TRUE, NULL, FALSE, FALSE); } /** diff --git a/civicrm/CRM/Report/Form.php b/civicrm/CRM/Report/Form.php index 432d3f1ed2297a9853c34389e9fd150506b99edd..ee3cada4ec1299b255997727f51780689dea9640 100644 --- a/civicrm/CRM/Report/Form.php +++ b/civicrm/CRM/Report/Form.php @@ -598,7 +598,7 @@ class CRM_Report_Form extends CRM_Core_Form { // and addCustomDataToColumns() will allow access to all custom groups. $permCustomGroupIds = []; if (!CRM_Core_Permission::check('access all custom data')) { - $permCustomGroupIds = CRM_ACL_API::group(CRM_Core_Permission::VIEW, NULL, 'civicrm_custom_group', $allGroups, NULL); + $permCustomGroupIds = CRM_ACL_API::group(CRM_Core_Permission::VIEW, NULL, 'civicrm_custom_group', $allGroups); // do not allow custom data for reports if user doesn't have // permission to access custom data. if (!empty($this->_customGroupExtends) && empty($permCustomGroupIds)) { @@ -2695,7 +2695,7 @@ WHERE cg.extends IN ('" . implode("','", $this->_customGroupExtends) . "') AND $communicationMethods = CRM_Core_PseudoConstant::get('CRM_Contact_DAO_Contact', 'preferred_communication_method'); // Explode padded values. - $values = CRM_utils_array::explodePadded($value); + $values = CRM_Utils_Array::explodePadded($value); // Flip values, compute intersection with $communicationMethods, and implode with commas. $value = implode(', ', array_intersect_key($communicationMethods, array_flip($values))); return $value; diff --git a/civicrm/CRM/UF/Page/Group.php b/civicrm/CRM/UF/Page/Group.php index 7fa01478fc07a376f101da6475ebc10c13260b6f..2cf6c83c5095e778294d446325e382a7295ef554 100644 --- a/civicrm/CRM/UF/Page/Group.php +++ b/civicrm/CRM/UF/Page/Group.php @@ -303,7 +303,7 @@ class CRM_UF_Page_Group extends CRM_Core_Page { $ufGroup[$id]['frontend_title'] = $value['frontend_title']; $ufGroup[$id]['created_id'] = $value['created_id']; $ufGroup[$id]['created_by'] = CRM_Contact_BAO_Contact::displayName($value['created_id']); - $ufGroup[$id]['description'] = $value['description']; + $ufGroup[$id]['description'] = $value['description'] ?? ''; $ufGroup[$id]['is_active'] = $value['is_active']; $ufGroup[$id]['group_type'] = $value['group_type']; $ufGroup[$id]['is_reserved'] = $value['is_reserved']; diff --git a/civicrm/CRM/Upgrade/Headless.php b/civicrm/CRM/Upgrade/Headless.php index 44dca076c91657e18b509ab82b2aa6c16f1e33e2..e75be07d1e28053784718bda9062435801d76128 100644 --- a/civicrm/CRM/Upgrade/Headless.php +++ b/civicrm/CRM/Upgrade/Headless.php @@ -14,6 +14,13 @@ */ class CRM_Upgrade_Headless { + /** + * Pre Upgrade Message + * @var string + * HTML-formatted message + */ + private $preUpgradeMessage; + /** * Perform an upgrade without using the web-frontend * @@ -38,8 +45,11 @@ class CRM_Upgrade_Headless { CRM_Core_DAO::dropTriggers(); // CRM-11156 - $preUpgradeMessage = NULL; - $upgrade->setPreUpgradeMessage($preUpgradeMessage, $currentVer, $latestVer); + if (empty($this->preUpgradeMessage)) { + $preUpgradeMessage = NULL; + $upgrade->setPreUpgradeMessage($preUpgradeMessage, $currentVer, $latestVer); + $this->preUpgradeMessage = $preUpgradeMessage; + } $postUpgradeMessageFile = CRM_Utils_File::tempnam('civicrm-post-upgrade'); $queueRunner = new CRM_Queue_Runner([ @@ -67,4 +77,31 @@ class CRM_Upgrade_Headless { ]; } + /** + * Get the pre-upgrade message. + * + * @return array + * The upgrade message, in HTML and text formats. + * Ex: ['message' => '<p>Foo</p><b>Bar</p>', 'text' => ["Foo\n\nBar"]] + * @throws \Exception + */ + public function getPreUpgradeMessage(): array { + $upgrade = new CRM_Upgrade_Form(); + [$currentVer, $latestVer] = $upgrade->getUpgradeVersions(); + + if ($error = $upgrade->checkUpgradeableVersion($currentVer, $latestVer)) { + throw new Exception($error); + } + // CRM-11156 + if (empty($this->preUpgradeMessage)) { + $preUpgradeMessage = NULL; + $upgrade->setPreUpgradeMessage($preUpgradeMessage, $currentVer, $latestVer); + $this->preUpgradeMessage = $preUpgradeMessage; + } + return [ + 'message' => $this->preUpgradeMessage, + 'text' => CRM_Utils_String::htmlToText($this->preUpgradeMessage), + ]; + } + } diff --git a/civicrm/CRM/Upgrade/Incremental/Base.php b/civicrm/CRM/Upgrade/Incremental/Base.php index 2dc039a4bd20c86758ce7b25ea80f3792a5ef77b..7e6f85142a72db9679be2b8fb0ef14414a6b5ffc 100644 --- a/civicrm/CRM/Upgrade/Incremental/Base.php +++ b/civicrm/CRM/Upgrade/Incremental/Base.php @@ -225,7 +225,9 @@ class CRM_Upgrade_Incremental_Base { // Hrm, `enable()` normally does these things... but not during upgrade... // Note: A good test-scenario is to install 5.45; enable logging and CiviGrant; disable searchkit+afform; then upgrade to 5.47. $schema = new CRM_Logging_Schema(); - $schema->fixSchemaDifferences(); + if ($schema->isEnabled()) { + $schema->fixSchemaDifferences(); + } CRM_Core_Invoke::rebuildMenuAndCaches(FALSE, FALSE); // sessionReset is FALSE because upgrade status/postUpgradeMessages are needed by the page. We reset later in doFinish(). @@ -299,6 +301,10 @@ class CRM_Upgrade_Incremental_Base { foreach ($queries as $query) { CRM_Core_DAO::executeQuery($query, [], TRUE, NULL, FALSE, FALSE); } + $schema = new CRM_Logging_Schema(); + if ($schema->isEnabled()) { + $schema->fixSchemaDifferencesFor($table); + } } if ($locales && $triggerRebuild) { CRM_Core_I18n_Schema::rebuildMultilingualSchema($locales, $version, TRUE); @@ -517,6 +523,10 @@ class CRM_Upgrade_Incremental_Base { CRM_Core_DAO::executeQuery("ALTER TABLE `$table` DROP COLUMN `$column`", [], TRUE, NULL, FALSE, FALSE); } + $schema = new CRM_Logging_Schema(); + if ($schema->isEnabled()) { + $schema->fixSchemaDifferencesFor($table); + } return TRUE; } @@ -599,6 +609,10 @@ class CRM_Upgrade_Incremental_Base { foreach ($queries as $query) { CRM_Core_DAO::executeQuery($query, [], TRUE, NULL, FALSE, FALSE); } + $schema = new CRM_Logging_Schema(); + if ($schema->isEnabled()) { + $schema->fixSchemaDifferencesFor($table); + } return TRUE; } diff --git a/civicrm/CRM/Upgrade/Incremental/php/FiveFiftyNine.php b/civicrm/CRM/Upgrade/Incremental/php/FiveFiftyNine.php new file mode 100644 index 0000000000000000000000000000000000000000..b51a50c6af4d172a67a30b28a1714cfe76dfaba0 --- /dev/null +++ b/civicrm/CRM/Upgrade/Incremental/php/FiveFiftyNine.php @@ -0,0 +1,44 @@ +<?php +/* + +--------------------------------------------------------------------+ + | Copyright CiviCRM LLC. All rights reserved. | + | | + | This work is published under the GNU AGPLv3 license with some | + | permitted exceptions and without any warranty. For full license | + | and copyright information, see https://civicrm.org/licensing | + +--------------------------------------------------------------------+ + */ + +/** + * Upgrade logic for the 5.59.x series. + * + * Each minor version in the series is handled by either a `5.59.x.mysql.tpl` file, + * or a function in this class named `upgrade_5_59_x`. + * If only a .tpl file exists for a version, it will be run automatically. + * If the function exists, it must explicitly add the 'runSql' task if there is a corresponding .mysql.tpl. + * + * This class may also implement `setPreUpgradeMessage()` and `setPostUpgradeMessage()` functions. + */ +class CRM_Upgrade_Incremental_php_FiveFiftyNine extends CRM_Upgrade_Incremental_Base { + + public function setPreUpgradeMessage(&$preUpgradeMessage, $rev, $currentVer = NULL): void { + if ($rev === '5.59.alpha1') { + if (empty(CRM_Core_Config::singleton()->userSystem->is_wordpress)) { + $preUpgradeMessage .= '<p>' . ts('The handling of invalid smarty template code in mailings, reminders and other automated messages has changed. For details, see <a %1>upgrade notes</a>.', + [1 => 'href="https://docs.civicrm.org/sysadmin/en/latest/upgrade/version-specific/#civicrm-559" target="_blank"']) . '</p>'; + } + } + } + + /** + * Upgrade step; adds tasks including 'runSql'. + * + * @param string $rev + * The version number matching this function name + */ + public function upgrade_5_59_alpha1(string $rev): void { + $this->addTask(ts('Upgrade DB to %1: SQL', [1 => $rev]), 'runSql', $rev); + $this->addTask('Drop column civicrm_custom_field.mask', 'dropColumn', 'civicrm_custom_field', 'mask'); + } + +} diff --git a/civicrm/CRM/Upgrade/Incremental/php/FiveForty.php b/civicrm/CRM/Upgrade/Incremental/php/FiveForty.php index 047d87a9a0c5d38d0a8376aca742d7ce00ad704c..a771b55a8fc61d8840b28490101ebbd8ddbab52a 100644 --- a/civicrm/CRM/Upgrade/Incremental/php/FiveForty.php +++ b/civicrm/CRM/Upgrade/Incremental/php/FiveForty.php @@ -17,7 +17,7 @@ class CRM_Upgrade_Incremental_php_FiveForty extends CRM_Upgrade_Incremental_Base public function upgrade_5_40_alpha1($rev) { $this->addTask(ts('Upgrade DB to %1: SQL', [1 => $rev]), 'runSql', $rev); $this->addTask('Add option list for group_used_for', 'addGroupOptionList'); - $this->addTask('core-issue#2486 - Add product_id foreign key to civicrm_contribution_product', 'addContributionProductFK'); + $this->addTask('dev/core#2486 - Add product_id foreign key to civicrm_contribution_product', 'addContributionProductFK'); $this->addTask('Add membership_num_terms column to civicrm_line_item', 'addColumn', 'civicrm_line_item', 'membership_num_terms', "int unsigned DEFAULT NULL COMMENT 'Number of terms for this membership (only supported in Order->Payment flow). If the field is NULL it means unknown and it will be assumed to be 1 during payment.create if entity_table is civicrm_membership'" ); diff --git a/civicrm/CRM/Upgrade/Incremental/php/FiveThirtyFive.php b/civicrm/CRM/Upgrade/Incremental/php/FiveThirtyFive.php index 7d3e3f3c5ae2e02514e459eeb8bf7b8052f8d430..54ffd45a0775f191dacfbe2d087e00cb9e5afc85 100644 --- a/civicrm/CRM/Upgrade/Incremental/php/FiveThirtyFive.php +++ b/civicrm/CRM/Upgrade/Incremental/php/FiveThirtyFive.php @@ -22,11 +22,11 @@ class CRM_Upgrade_Incremental_php_FiveThirtyFive extends CRM_Upgrade_Incremental public function upgrade_5_35_alpha1(string $rev): void { $this->addTask(ts('Upgrade DB to %1: SQL', [1 => $rev]), 'runSql', $rev); - $this->addTask('dev/core/#2329 - Add is_active to Country', 'addColumn', + $this->addTask('dev/core#2329 - Add is_active to Country', 'addColumn', 'civicrm_country', 'is_active', "tinyint DEFAULT 1 COMMENT 'Is this Country active?'"); - $this->addTask('dev/core/#2329 - Add is_active to StateProvince', 'addColumn', + $this->addTask('dev/core#2329 - Add is_active to StateProvince', 'addColumn', 'civicrm_state_province', 'is_active', "tinyint DEFAULT 1 COMMENT 'Is this StateProvince active?'"); - $this->addTask('dev/core/#2329 - Add is_active to County', 'addColumn', + $this->addTask('dev/core#2329 - Add is_active to County', 'addColumn', 'civicrm_county', 'is_active', "tinyint DEFAULT 1 COMMENT 'Is this County active?'"); } diff --git a/civicrm/CRM/Upgrade/Incremental/php/FiveThirtyFour.php b/civicrm/CRM/Upgrade/Incremental/php/FiveThirtyFour.php index 7c6c49687645f885bd4e812d162563458e3fcf48..00419821e0f6fd6aa571f24b20232e6126e58077 100644 --- a/civicrm/CRM/Upgrade/Incremental/php/FiveThirtyFour.php +++ b/civicrm/CRM/Upgrade/Incremental/php/FiveThirtyFour.php @@ -122,16 +122,16 @@ class CRM_Upgrade_Incremental_php_FiveThirtyFour extends CRM_Upgrade_Incremental $this->addTask('Migrate SMTP password', 'migrateSmtpPasswords'); } - $this->addTask('core-issue#365 - Add created_date to civicrm_action_schedule', 'addColumn', + $this->addTask('dev/core#365 - Add created_date to civicrm_action_schedule', 'addColumn', 'civicrm_action_schedule', 'created_date', "timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'When was the schedule reminder created.'"); - $this->addTask('core-issue#365 - Add modified_date to civicrm_action_schedule', 'addColumn', + $this->addTask('dev/core#365 - Add modified_date to civicrm_action_schedule', 'addColumn', 'civicrm_action_schedule', 'modified_date', "timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'When was the schedule reminder created.'"); - $this->addTask('core-issue#365 - Add effective_start_date to civicrm_action_schedule', 'addColumn', + $this->addTask('dev/core#365 - Add effective_start_date to civicrm_action_schedule', 'addColumn', 'civicrm_action_schedule', 'effective_start_date', "timestamp NULL COMMENT 'Earliest date to consider start events from.'"); - $this->addTask('core-issue#365 - Add effective_end_date to civicrm_action_schedule', 'addColumn', + $this->addTask('dev/core#365 - Add effective_end_date to civicrm_action_schedule', 'addColumn', 'civicrm_action_schedule', 'effective_end_date', "timestamp NULL COMMENT 'Latest date to consider end events from.'"); $this->addTask('Set defaults and required on financial type boolean fields', 'updateFinancialTypeTable'); diff --git a/civicrm/CRM/Upgrade/Incremental/php/FiveThirtySeven.php b/civicrm/CRM/Upgrade/Incremental/php/FiveThirtySeven.php index b773ab8a9fd1900e15ab6a3fbba62f0c13caddf1..7e5ad9ff5345a09c002bcf822197e3aa9c9c5913 100644 --- a/civicrm/CRM/Upgrade/Incremental/php/FiveThirtySeven.php +++ b/civicrm/CRM/Upgrade/Incremental/php/FiveThirtySeven.php @@ -43,13 +43,13 @@ class CRM_Upgrade_Incremental_php_FiveThirtySeven extends CRM_Upgrade_Incrementa */ public function upgrade_5_37_alpha1($rev) { $this->addTask(ts('Upgrade DB to %1: SQL', [1 => $rev]), 'runSql', $rev); - $this->addTask('core-issue#1845 - Alter Foreign key on civicrm_group to delete when the associated group when the saved search is deleted', 'alterSavedSearchFK'); - $this->addTask('core-issue#2243 - Add note_date to civicrm_note', 'addColumn', + $this->addTask('dev/core#1845 - Alter Foreign key on civicrm_group to delete when the associated group when the saved search is deleted', 'alterSavedSearchFK'); + $this->addTask('dev/core#2243 - Add note_date to civicrm_note', 'addColumn', 'civicrm_note', 'note_date', "timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Date attached to the note'"); - $this->addTask('core-issue#2243 - Add created_date to civicrm_note', 'addColumn', + $this->addTask('dev/core#2243 - Add created_date to civicrm_note', 'addColumn', 'civicrm_note', 'created_date', "timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'When the note was created'"); - $this->addTask('core-issue#2243 - Update existing note_date and created_date', 'updateNoteDates'); - $this->addTask('core-issue#2487 Add / alter defaults for civicrm_contribution_recur', 'updateDBDefaultsForContributionRecur'); + $this->addTask('dev/core#2243 - Update existing note_date and created_date', 'updateNoteDates'); + $this->addTask('dev/core#2487 Add / alter defaults for civicrm_contribution_recur', 'updateDBDefaultsForContributionRecur'); $this->addTask('Install reCAPTCHA extension', 'installReCaptchaExtension'); } diff --git a/civicrm/CRM/Upgrade/Incremental/php/FiveThirtySix.php b/civicrm/CRM/Upgrade/Incremental/php/FiveThirtySix.php index 78ef2eb8c536e51d09bfb02722b5ef7d63079974..ba0ab2e70bb522d5f246c8295273f8f7e06a2fda 100644 --- a/civicrm/CRM/Upgrade/Incremental/php/FiveThirtySix.php +++ b/civicrm/CRM/Upgrade/Incremental/php/FiveThirtySix.php @@ -49,20 +49,20 @@ class CRM_Upgrade_Incremental_php_FiveThirtySix extends CRM_Upgrade_Incremental_ public function upgrade_5_36_alpha1(string $rev): void { // Not used // $this->addTask(ts('Upgrade DB to %1: SQL', [1 => $rev]), 'runSql', $rev); - $this->addTask('core-issue#2422 - Add created_id to civicrm_saved_search', 'addColumn', + $this->addTask('dev/core#2422 - Add created_id to civicrm_saved_search', 'addColumn', 'civicrm_saved_search', 'created_id', "int(10) unsigned DEFAULT NULL COMMENT 'FK to contact table.'"); - $this->addTask('core-issue#2422 - Add modified_id to civicrm_saved_search', 'addColumn', + $this->addTask('dev/core#2422 - Add modified_id to civicrm_saved_search', 'addColumn', 'civicrm_saved_search', 'modified_id', "int(10) unsigned DEFAULT NULL COMMENT 'FK to contact table.'"); - $this->addTask('core-issue#2422 - Add expires_date to civicrm_saved_search', 'addColumn', + $this->addTask('dev/core#2422 - Add expires_date to civicrm_saved_search', 'addColumn', 'civicrm_saved_search', 'expires_date', "timestamp NULL DEFAULT NULL COMMENT 'Optional date after which the search is not needed'"); - $this->addTask('core-issue#2422 - Add created_date to civicrm_saved_search', 'addColumn', + $this->addTask('dev/core#2422 - Add created_date to civicrm_saved_search', 'addColumn', 'civicrm_saved_search', 'created_date', "timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'When the search was created.'"); - $this->addTask('core-issue#2422 - Add modified_date to civicrm_saved_search', 'addColumn', + $this->addTask('dev/core#2422 - Add modified_date to civicrm_saved_search', 'addColumn', 'civicrm_saved_search', 'modified_date', "timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'When the search was last modified.'"); - $this->addTask('core-issue#2422 - Add description to civicrm_saved_search', 'addColumn', + $this->addTask('dev/core#2422 - Add description to civicrm_saved_search', 'addColumn', 'civicrm_saved_search', 'description', "text DEFAULT NULL"); - $this->addTask('core-issue#2422 - Add constraints to civicrm_saved_search', 'taskAddConstraints'); + $this->addTask('dev/core#2422 - Add constraints to civicrm_saved_search', 'taskAddConstraints'); } /** diff --git a/civicrm/CRM/Upgrade/Incremental/sql/5.3.alpha1.mysql.tpl b/civicrm/CRM/Upgrade/Incremental/sql/5.3.alpha1.mysql.tpl index 7c05f9ecaacd6d49817e864cdc591c67263400dd..c99948dd6ae0d4ee144b3e7a40b40c4643a35bfb 100644 --- a/civicrm/CRM/Upgrade/Incremental/sql/5.3.alpha1.mysql.tpl +++ b/civicrm/CRM/Upgrade/Incremental/sql/5.3.alpha1.mysql.tpl @@ -14,5 +14,5 @@ SET @UKCountryId = (SELECT id FROM civicrm_country cc WHERE cc.name = 'United Ki INSERT IGNORE INTO civicrm_state_province (country_id, abbreviation, name) VALUES (@UKCountryId, 'MON', 'Monmouthshire'); -{* dev/core/#152 *} +{* dev/core#152 *} UPDATE `civicrm_custom_field` set `html_type` = "Multi-Select" WHERE `html_type` = "AdvMulti-Select"; diff --git a/civicrm/CRM/Upgrade/Incremental/sql/5.59.alpha1.mysql.tpl b/civicrm/CRM/Upgrade/Incremental/sql/5.59.alpha1.mysql.tpl new file mode 100644 index 0000000000000000000000000000000000000000..2d0f9a3483c7627ea5fcba46450c14d0cf8bd253 --- /dev/null +++ b/civicrm/CRM/Upgrade/Incremental/sql/5.59.alpha1.mysql.tpl @@ -0,0 +1,17 @@ +{* file to handle db changes in 5.59.alpha1 during upgrade *} +-- Add missing provinces for Luxembourg +SELECT @country_id := id from civicrm_country where name = 'Luxembourg' AND iso_code = 'LU'; +INSERT IGNORE INTO `civicrm_state_province` (`country_id`, `abbreviation`, `name`) VALUES (@country_id, 'CA', 'Capellen'); +INSERT IGNORE INTO `civicrm_state_province` (`country_id`, `abbreviation`, `name`) VALUES (@country_id, 'CL', 'Clervaux'); +INSERT IGNORE INTO `civicrm_state_province` (`country_id`, `abbreviation`, `name`) VALUES (@country_id, 'EC', 'Echternach'); +INSERT IGNORE INTO `civicrm_state_province` (`country_id`, `abbreviation`, `name`) VALUES (@country_id, 'ES', 'Esch-sur-Alzette'); +INSERT IGNORE INTO `civicrm_state_province` (`country_id`, `abbreviation`, `name`) VALUES (@country_id, 'GR', 'Grevenmacher'); +INSERT IGNORE INTO `civicrm_state_province` (`country_id`, `abbreviation`, `name`) VALUES (@country_id, 'ME', 'Mersch'); +INSERT IGNORE INTO `civicrm_state_province` (`country_id`, `abbreviation`, `name`) VALUES (@country_id, 'RD', 'Redange-sur-Attert'); +INSERT IGNORE INTO `civicrm_state_province` (`country_id`, `abbreviation`, `name`) VALUES (@country_id, 'RM', 'Remich'); +INSERT IGNORE INTO `civicrm_state_province` (`country_id`, `abbreviation`, `name`) VALUES (@country_id, 'VD', 'Vianden'); +INSERT IGNORE INTO `civicrm_state_province` (`country_id`, `abbreviation`, `name`) VALUES (@country_id, 'WI', 'Wiltz'); +UPDATE `civicrm_state_province` SET abbreviation = 'LU' WHERE name = 'Luxembourg' AND country_id = @country_id; +UPDATE `civicrm_state_province` SET abbreviation = 'DI' WHERE name = 'Diekirch' AND country_id = @country_id; +UPDATE `civicrm_state_province` SET name = 'Grevenmacher' WHERE name = 'GreveNmacher' AND country_id = @country_id; +UPDATE `civicrm_state_province` SET abbreviation = 'GR' WHERE name = 'Grevenmacher' AND country_id = @country_id; diff --git a/civicrm/CRM/Upgrade/Snapshot.php b/civicrm/CRM/Upgrade/Snapshot.php index 9f5a493844f298b7c47ddcb8229fb0743a772df1..941f1fe127c523924922d42a3efec16f434f1338 100644 --- a/civicrm/CRM/Upgrade/Snapshot.php +++ b/civicrm/CRM/Upgrade/Snapshot.php @@ -9,6 +9,8 @@ +--------------------------------------------------------------------+ */ +use Civi\Test\Invasive; + /** * Provide helpers for recording data snapshots during an upgrade. */ @@ -35,6 +37,7 @@ class CRM_Upgrade_Snapshot { /** * Get a list of reasons why the snapshots should not run. + * * @return array * List of printable messages. */ @@ -57,15 +60,16 @@ class CRM_Upgrade_Snapshot { static::$activationIssues = []; foreach ($limits as $table => $limit) { try { - $count = CRM_Core_DAO::singleValueQuery("SELECT count(*) FROM `{$table}`"); + // Use select MAX(id) rather than COUNT as COUNT is slow on large databases. + $max = CRM_Core_DAO::singleValueQuery("SELECT MAX(id) FROM `{$table}`"); } catch (\Exception $e) { - $count = 0; + $max = 0; } - if ($count > $limit) { + if ($max > $limit) { static::$activationIssues["count_{$table}"] = ts('Table "%1" has a large number of records (%2 > %3).', [ 1 => $table, - 2 => $count, + 2 => $max, 3 => $limit, ]); } @@ -133,7 +137,7 @@ class CRM_Upgrade_Snapshot { */ public static function createTasks(string $owner, string $version, string $name, CRM_Utils_SQL_Select $select): iterable { $destTable = static::createTableName($owner, $version, $name); - $srcTable = \Civi\Test\Invasive::get([$select, 'from']); + $srcTable = Invasive::get([$select, 'from']); // Sometimes, backups fail and people rollback and try again. Reset prior snapshots. CRM_Core_DAO::executeQuery("DROP TABLE IF EXISTS `{$destTable}`"); @@ -164,7 +168,9 @@ class CRM_Upgrade_Snapshot { /** * @param \CRM_Queue_TaskContext $ctx * @param string $sql + * * @return bool + * @noinspection PhpUnusedParameterInspection */ public static function insertSnapshotTask(CRM_Queue_TaskContext $ctx, string $sql): bool { CRM_Core_DAO::executeQuery($sql); @@ -182,9 +188,13 @@ class CRM_Upgrade_Snapshot { * The current version of CiviCRM. * @param int|null $cleanupAfter * How long should we retain old snapshots? - * Time is measured in terms of MINOR versions - eg "4" means "retain for 4 MINOR versions". - * Thus, on v5.60, you could delete any snapshots predating 5.56. + * Time is measured in terms of MINOR versions - eg "4" means "retain for 4 + * MINOR versions". Thus, on v5.60, you could delete any snapshots + * predating 5.56. + * * @return bool + * @throws \CRM_Core_Exception + * @noinspection PhpUnusedParameterInspection */ public static function cleanupTask(?CRM_Queue_TaskContext $ctx = NULL, string $owner = 'civicrm', ?string $version = NULL, ?int $cleanupAfter = NULL): bool { $version = $version ?: CRM_Core_BAO_Domain::version(); @@ -194,12 +204,12 @@ class CRM_Upgrade_Snapshot { $cutoff = $major . '.' . max(0, $minor - $cleanupAfter); $dao = new CRM_Core_DAO(); - $query = " + $query = ' SELECT TABLE_NAME as tableName FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_SCHEMA = %1 AND TABLE_NAME LIKE %2 - "; + '; $tables = CRM_Core_DAO::executeQuery($query, [ 1 => [$dao->database(), 'String'], 2 => ["snap_{$owner}_v%", 'String'], diff --git a/civicrm/CRM/Utils/Date.php b/civicrm/CRM/Utils/Date.php index f97951a1ba54b05e3b2ec5b788cc1867793e9d95..409833e470a6a0e57331b4a8e3ceddf715e4c223 100644 --- a/civicrm/CRM/Utils/Date.php +++ b/civicrm/CRM/Utils/Date.php @@ -850,9 +850,9 @@ class CRM_Utils_Date { * Find whether today's date lies in * the given range * - * @param date $startDate + * @param Date $startDate * Start date for the range. - * @param date $endDate + * @param Date $endDate * End date for the range. * * @return bool @@ -915,9 +915,9 @@ class CRM_Utils_Date { /** * Calculate Age in Years if greater than one year else in months. * - * @param date $birthDate + * @param Date $birthDate * Birth Date. - * @param date $targetDate + * @param Date $targetDate * Target Date. (show age on specific date) * * @return array diff --git a/civicrm/CRM/Utils/Hook.php b/civicrm/CRM/Utils/Hook.php index edd44148f5847ab0629eda8f20748b0cbc2edcc4..90c73f3dabdbe8dace004a1b52d3d862c6421c01 100644 --- a/civicrm/CRM/Utils/Hook.php +++ b/civicrm/CRM/Utils/Hook.php @@ -309,6 +309,10 @@ abstract class CRM_Utils_Hook { * @param $moduleList */ public function requireCiviModules(&$moduleList) { + foreach ($GLOBALS['CIVICRM_FORCE_MODULES'] ?? [] as $prefix) { + $moduleList[$prefix] = $prefix; + } + $civiModules = CRM_Core_PseudoConstant::getModuleExtensions(); foreach ($civiModules as $civiModule) { if (!file_exists($civiModule['filePath'] ?? '')) { diff --git a/civicrm/CRM/Utils/Mail/Incoming.php b/civicrm/CRM/Utils/Mail/Incoming.php index c53e66fe6b0a0fb395918e610f184d058d76dfe0..d5911ac0156ed746ecd1dd966a92caf56d4d5a52 100644 --- a/civicrm/CRM/Utils/Mail/Incoming.php +++ b/civicrm/CRM/Utils/Mail/Incoming.php @@ -63,7 +63,7 @@ class CRM_Utils_Mail_Incoming { return self::formatMailRfc822Digest($part, $attachments); } - if ($part instanceof ezcMailMultiPart) { + if ($part instanceof ezcMailMultipart) { return self::formatMailMultipart($part, $attachments); } @@ -86,19 +86,19 @@ class CRM_Utils_Mail_Incoming { * @throws Exception */ public static function formatMailMultipart($part, &$attachments) { - if ($part instanceof ezcMailMultiPartAlternative) { + if ($part instanceof ezcMailMultipartAlternative) { return self::formatMailMultipartAlternative($part, $attachments); } - if ($part instanceof ezcMailMultiPartDigest) { + if ($part instanceof ezcMailMultipartDigest) { return self::formatMailMultipartDigest($part, $attachments); } - if ($part instanceof ezcMailMultiPartRelated) { + if ($part instanceof ezcMailMultipartRelated) { return self::formatMailMultipartRelated($part, $attachments); } - if ($part instanceof ezcMailMultiPartMixed) { + if ($part instanceof ezcMailMultipartMixed) { return self::formatMailMultipartMixed($part, $attachments); } @@ -394,7 +394,7 @@ class CRM_Utils_Mail_Incoming { } /** - * @param $address + * @param ezcMailAddress $address * @param array $params * @param $subParam * @param $mail @@ -418,7 +418,7 @@ class CRM_Utils_Mail_Incoming { } /** - * @param $addresses + * @param ezcMailAddress[] $addresses * @param $token * @param array $params * @param $mail diff --git a/civicrm/CRM/Utils/Number.php b/civicrm/CRM/Utils/Number.php index 790fdd1278e233b90f54f94591226b5e065c0a80..da5db035c5aa7cea21aa844f09560cb924d31ebd 100644 --- a/civicrm/CRM/Utils/Number.php +++ b/civicrm/CRM/Utils/Number.php @@ -117,6 +117,11 @@ class CRM_Utils_Number { * @throws \Brick\Money\Exception\UnknownCurrencyException */ public static function formatLocaleNumeric(string $amount, $locale = NULL): string { + if ($amount === "") { + CRM_Core_Error::deprecatedWarning('Passing an empty string for amount is deprecated.'); + return $amount; + } + $formatter = new \NumberFormatter($locale ?? CRM_Core_I18n::getLocale(), NumberFormatter::DECIMAL); $formatter->setSymbol(\NumberFormatter::DECIMAL_SEPARATOR_SYMBOL, CRM_Core_Config::singleton()->monetaryDecimalPoint); $formatter->setSymbol(\NumberFormatter::GROUPING_SEPARATOR_SYMBOL, CRM_Core_Config::singleton()->monetaryThousandSeparator); diff --git a/civicrm/CRM/Utils/REST.php b/civicrm/CRM/Utils/REST.php index 9a2f7ee25ea66cbf467ef3f6a82a01e9def0e324..4c6edc9c660656111c4d874a14ba87fd061f7ba5 100644 --- a/civicrm/CRM/Utils/REST.php +++ b/civicrm/CRM/Utils/REST.php @@ -133,7 +133,6 @@ class CRM_Utils_REST { if (!empty($requestParams['prettyprint'])) { // Don't set content-type header for api explorer output return json_encode(array_merge($result), JSON_PRETTY_PRINT + JSON_UNESCAPED_SLASHES + JSON_UNESCAPED_UNICODE); - return self::jsonFormated(array_merge($result)); } CRM_Utils_System::setHttpHeader('Content-Type', 'application/json'); return json_encode(array_merge($result)); diff --git a/civicrm/CRM/Utils/SQL/TempTable.php b/civicrm/CRM/Utils/SQL/TempTable.php index 567b282d561bf1103ff0555923746f250769b725..1a86f130b63faa9a1b23b9bd9ce1d95d75bfc1e1 100644 --- a/civicrm/CRM/Utils/SQL/TempTable.php +++ b/civicrm/CRM/Utils/SQL/TempTable.php @@ -156,7 +156,7 @@ class CRM_Utils_SQL_TempTable { /** * Create the empty table. * - * @parma string $columns + * @param string $columns * SQL column listing. * Ex: 'id int(10), name varchar(64)'. * @return CRM_Utils_SQL_TempTable diff --git a/civicrm/CRM/Utils/SoapServer.php b/civicrm/CRM/Utils/SoapServer.php index 46c24b98b65f81af0e84647682bcdefc5cd96546..4e1361057918896fa18b8922a39d654d8d5ee76f 100644 --- a/civicrm/CRM/Utils/SoapServer.php +++ b/civicrm/CRM/Utils/SoapServer.php @@ -10,322 +10,21 @@ */ /** - * This class handles all SOAP client requests. + * (OBSOLETE) This class previously handled SOAP requests. * + * The class is still referenced in some other repos. A stub is preserved to avoid hard-crashes + * when scanning the codebase. + * + * @deprecated * @package CRM * @copyright CiviCRM LLC https://civicrm.org/licensing */ class CRM_Utils_SoapServer { - /** - * Number of seconds we should let a soap process idle - * @var int - */ - public static $soap_timeout = 0; - - /** - * Cache the actual UF Class - * @var string - */ - public $ufClass; - - /** - * Class constructor. This caches the real user framework class locally, - * so we can use it for authentication and validation. - * - * @internal param string $uf The userframework class - */ - public function __construct() { - // any external program which call SoapServer is responsible for - // creating and attaching the session - $args = func_get_args(); - $this->ufClass = array_shift($args); - } - - /** - * Simple ping function to test for liveness. - * - * @param string $var - * The string to be echoed. - * - * @return string - */ - public function ping($var) { - $session = CRM_Core_Session::singleton(); - $key = $session->get('key'); - $session->set('key', $var); - return "PONG: $var ($key)"; - } - - /** - * Verify a SOAP key. - * - * @param string $key - * The soap key generated by authenticate(). - * - * @throws SoapFault - */ - public function verify($key) { - $session = CRM_Core_Session::singleton(); - - $soap_key = $session->get('soap_key'); - $t = time(); - - if ($key !== sha1($soap_key)) { - throw new SoapFault('Client', 'Invalid key'); - } - - if (self::$soap_timeout && - $t > ($session->get('soap_time') + self::$soap_timeout) - ) { - throw new SoapFault('Client', 'Expired key'); - } - - // otherwise, we're ok. update the timestamp - - $session->set('soap_time', $t); - } - - /** - * Authentication wrapper to the UF Class. - * - * @param string $name - * Login name. - * @param string $pass - * Password. - * - * @param bool $loadCMSBootstrap - * - * @throws SoapFault - * @return string - * The SOAP Client key - */ - public function authenticate($name, $pass, $loadCMSBootstrap = FALSE) { - require_once str_replace('_', DIRECTORY_SEPARATOR, $this->ufClass) . '.php'; - - if ($this->ufClass == 'CRM_Utils_System_Joomla' - || $this->ufClass == 'CRM_Utils_System_WordPress') { - $loadCMSBootstrap = TRUE; - } - - $result = CRM_Utils_System::authenticate($name, $pass, $loadCMSBootstrap); - - if (empty($result)) { - throw new SoapFault('Client', 'Invalid login'); - } - - $session = CRM_Core_Session::singleton(); - $session->set('soap_key', $result[2]); - $session->set('soap_time', time()); - - return sha1($result[2]); - } - - /** - * MAILER API. - * - * @param string $key - * @param int $job - * @param int $queue - * @param string $hash - * @param string $body - * - * @return array|int - * @throws \SoapFault - */ - public function mailer_event_bounce($key, $job, $queue, $hash, $body) { - $this->verify($key); - $params = [ - 'job_id' => $job, - 'time_stamp' => date('YmdHis'), - 'event_queue_id' => $queue, - 'hash' => $hash, - 'body' => $body, - 'version' => 3, - ]; - $result = civicrm_api('Mailing', 'event_bounce', $params); - return CRM_Utils_Array::encode_items($result); - } - - /** - * Mailer event unsubscribe. - * - * @param string $key - * @param int $job - * @param int $queue - * @param string $hash - * - * @return array|int - * @throws SoapFault - */ - public function mailer_event_unsubscribe($key, $job, $queue, $hash) { - $this->verify($key); - $params = [ - 'job_id' => $job, - 'time_stamp' => date('YmdHis'), - 'org_unsubscribe' => 0, - 'event_queue_id' => $queue, - 'hash' => $hash, - 'version' => 3, - ]; - $result = civicrm_api('MailingGroup', 'event_unsubscribe', $params); - return CRM_Utils_Array::encode_items($result); - } - - /** - * @param $key - * @param $job - * @param $queue - * @param $hash - * - * @return array|int - * @throws SoapFault - */ - public function mailer_event_domain_unsubscribe($key, $job, $queue, $hash) { - $this->verify($key); - $params = [ - 'job_id' => $job, - 'time_stamp' => date('YmdHis'), - 'org_unsubscribe' => 1, - 'event_queue_id' => $queue, - 'hash' => $hash, - 'version' => 3, - ]; - $result = civicrm_api('MailingGroup', 'event_domain_unsubscribe', $params); - return CRM_Utils_Array::encode_items($result); - } - - /** - * @param $key - * @param $job - * @param $queue - * @param $hash - * - * @return array|int - * @throws SoapFault - */ - public function mailer_event_resubscribe($key, $job, $queue, $hash) { - $this->verify($key); - $params = [ - 'job_id' => $job, - 'time_stamp' => date('YmdHis'), - 'org_unsubscribe' => 0, - 'event_queue_id' => $queue, - 'hash' => $hash, - 'version' => 3, - ]; - $result = civicrm_api('MailingGroup', 'event_resubscribe', $params); - return CRM_Utils_Array::encode_items($result); - } - - /** - * @param $key - * @param $email - * @param $domain - * @param $group - * - * @return array|int - * @throws SoapFault - */ - public function mailer_event_subscribe($key, $email, $domain, $group) { - $this->verify($key); - $params = [ - 'email' => $email, - 'group_id' => $group, - 'version' => 3, - ]; - $result = civicrm_api('MailingGroup', 'event_subscribe', $params); - return CRM_Utils_Array::encode_items($result); - } - - /** - * @param $key - * @param $contact - * @param $subscribe - * @param $hash - * - * @return array|int - * @throws SoapFault - */ - public function mailer_event_confirm($key, $contact, $subscribe, $hash) { - $this->verify($key); - $params = [ - 'contact_id' => $contact, - 'subscribe_id' => $subscribe, - 'time_stamp' => date('YmdHis'), - 'event_subscribe_id' => $subscribe, - 'hash' => $hash, - 'version' => 3, - ]; - $result = civicrm_api('Mailing', 'event_confirm', $params); - return CRM_Utils_Array::encode_items($result); - } - - /** - * @param $key - * @param $job - * @param $queue - * @param $hash - * @param $bodyTxt - * @param $rt - * @param null $bodyHTML - * @param null $fullEmail - * - * @return array|int - * @throws SoapFault - */ - public function mailer_event_reply($key, $job, $queue, $hash, $bodyTxt, $rt, $bodyHTML = NULL, $fullEmail = NULL) { - $this->verify($key); - $params = [ - 'job_id' => $job, - 'event_queue_id' => $queue, - 'hash' => $hash, - 'bodyTxt' => $bodyTxt, - 'replyTo' => $rt, - 'bodyHTML' => $bodyHTML, - 'fullEmail' => $fullEmail, - 'time_stamp' => date('YmdHis'), - 'version' => 3, - ]; - $result = civicrm_api('Mailing', 'event_reply', $params); - return CRM_Utils_Array::encode_items($result); - } - - /** - * @param $key - * @param $job - * @param $queue - * @param $hash - * @param $email - * - * @return array|int - * @throws SoapFault - */ - public function mailer_event_forward($key, $job, $queue, $hash, $email) { - $this->verify($key); - $params = [ - 'job_id' => $job, - 'event_queue_id' => $queue, - 'hash' => $hash, - 'email' => $email, - 'version' => 3, - ]; - $result = civicrm_api('Mailing', 'event_forward', $params); - return CRM_Utils_Array::encode_items($result); - } - - /** - * @param $key - * @param array $params - * - * @return array|int - * @throws SoapFault - */ - public function get_contact($key, $params) { - $this->verify($key); - $params['version'] = 3; - $result = civicrm_api('contact', 'get', $params); - return CRM_Utils_Array::encode_items($result); + public function __call($name, $arguments) { + throw new \SoapFault('obsolete', 'SOAP support is no longer included with civicrm-core.'); + // It's removed because (a) the main consumer is no longer live, (b) it's awkward to maintain 'extern/' scripts, + // and (c) there's an extensionized version at https://lab.civicrm.org/extensions/civismtp/ } } diff --git a/civicrm/CRM/Utils/String.php b/civicrm/CRM/Utils/String.php index e654e862a751609a540fe5e2901925ea0ce2d2a5..69f74151a05f7cc96dc65dc35839c2e3a7ab7bee 100644 --- a/civicrm/CRM/Utils/String.php +++ b/civicrm/CRM/Utils/String.php @@ -1026,6 +1026,10 @@ class CRM_Utils_String { * @param string $templateString * * @return string + * + * @noinspection PhpDocRedundantThrowsInspection + * + * @throws \CRM_Core_Exception */ public static function parseOneOffStringThroughSmarty($templateString) { if (!CRM_Utils_String::stringContainsTokens($templateString)) { @@ -1034,13 +1038,15 @@ class CRM_Utils_String { } $smarty = CRM_Core_Smarty::singleton(); $cachingValue = $smarty->caching; + set_error_handler([$smarty, 'handleSmartyError'], E_USER_ERROR); $smarty->caching = 0; $smarty->assign('smartySingleUseString', $templateString); // Do not escape the smartySingleUseString as that is our smarty template // and is likely to contain html. $templateString = (string) $smarty->fetch('string:{eval var=$smartySingleUseString|smarty:nodefaults}'); $smarty->caching = $cachingValue; - $smarty->assign('smartySingleUseString', NULL); + $smarty->assign('smartySingleUseString'); + restore_error_handler(); return $templateString; } diff --git a/civicrm/CRM/Utils/System/Backdrop.php b/civicrm/CRM/Utils/System/Backdrop.php index 8dbf8727830d03a926dbb07ae52b14010bc4e63b..014144bc0f9290b80823eaff5939fb9b940986cb 100644 --- a/civicrm/CRM/Utils/System/Backdrop.php +++ b/civicrm/CRM/Utils/System/Backdrop.php @@ -33,8 +33,13 @@ class CRM_Utils_System_Backdrop extends CRM_Utils_System_DrupalBase { ]; $admin = user_access('administer users'); + $user_register_conf = config_get('system.core', 'user_register'); + if (!$admin && $user_register_conf == 'admin_only') { + return FALSE; + } + if (!config_get('system.core', 'user_email_verification') || $admin) { - $form_state['input']['pass'] = ['pass1' => $params['cms_pass'], 'pass2' => $params['cms_pass']]; + $form_state['input']['pass'] = $params['cms_pass']; } if (!empty($params['notify'])) { @@ -87,20 +92,13 @@ class CRM_Utils_System_Backdrop extends CRM_Utils_System_DrupalBase { } /** - * Check if username and email exists in the Backdrop db. - * - * @param array $params - * Array of name and mail values. - * @param array $errors - * Array of errors. - * @param string $emailName - * Field label for the 'email'. + * @inheritdoc */ - public static function checkUserNameEmailExists(&$params, &$errors, $emailName = 'email') { - $errors = form_get_errors(); - if ($errors) { + public function checkUserNameEmailExists(&$params, &$errors, $emailName = 'email') { + if ($backdrop_errors = form_get_errors()) { // unset Backdrop messages to avoid twice display of errors unset($_SESSION['messages']); + $errors = array_merge($errors, $backdrop_errors); } if (!empty($params['name'])) { @@ -419,6 +417,44 @@ AND u.status = 1 return TRUE; } + /** + * @inheritdoc + */ + public function verifyPassword($params, &$errors) { + if ($backdrop_errors = form_get_errors()) { + // unset Backdrop messages to avoid twice display of errors + unset($_SESSION['messages']); + $errors = array_merge($errors, $backdrop_errors); + } + + $password = trim($params['pass']); + $username = $params['name']; + $email = $params['mail']; + + module_load_include('password.inc', 'user', 'user'); + $reject_weak = user_password_reject_weak($username); + if (!$reject_weak) { + return; + } + + $strength = _user_password_evaluate_strength($password, $username, $email); + + if ($strength < config('system.core')->get('user_password_strength_threshold')) { + $password_errors[] = ts('The password is too weak. Please consider making your password longer or more complex: that it contains a number of lower- and uppercase letters, digits and punctuation.'); + } + + if (backdrop_strtolower($password) == backdrop_strtolower($username)) { + $password_errors[] = ts('The password cannot be the same as the username.'); + } + if (backdrop_strtolower($password) == backdrop_strtolower($email)) { + $password_errors[] = ts('The password cannot be the same as the email.'); + } + + if (!empty($password_errors)) { + $errors['cms_pass'] = ts('Weak passwords are rejected. Please note the following issues: %1', [1 => implode(' ', $password_errors)]); + } + } + /** * @inheritDoc */ diff --git a/civicrm/CRM/Utils/System/Base.php b/civicrm/CRM/Utils/System/Base.php index 9426bf28adee68d0bd05862bd9a8e3fc9d4f2889..78e5f646013c61c1eeba2e1765d07cb70e699138 100644 --- a/civicrm/CRM/Utils/System/Base.php +++ b/civicrm/CRM/Utils/System/Base.php @@ -458,6 +458,17 @@ abstract class CRM_Utils_System_Base { return FALSE; } + /** + * Verify password + * + * @param array $params + * Array of name, mail and password values. + * @param array $errors + * Array of errors. + */ + public function verifyPassword($params, &$errors) { + } + /** * Is a front end page being accessed. * @@ -1114,4 +1125,38 @@ abstract class CRM_Utils_System_Base { return []; } + /** + * Suppress profile form errors + * + * @return bool + */ + public function suppressProfileFormErrors():bool { + return FALSE; + } + + /** + * Get email field name from form values + * + * @param CRM_Core_Form $form + * @param array $fields + * + * @return string + */ + public function getEmailFieldName(CRM_Core_Form $form, array $fields):string { + return 'email'; + } + + /** + * Check if username and email exists in the CMS. + * + * @param array $params + * Array of name and mail values. + * @param array $errors + * Array of errors. + * @param string $emailName + * Field label for the 'email'. + */ + public function checkUserNameEmailExists(&$params, &$errors, $emailName = 'email') { + } + } diff --git a/civicrm/CRM/Utils/System/Drupal.php b/civicrm/CRM/Utils/System/Drupal.php index eebbcf7fa2d49d4ece9130277f4a9c16d371296c..ee2c36eaad077a6a0aef7389139ae913dc3d07da 100644 --- a/civicrm/CRM/Utils/System/Drupal.php +++ b/civicrm/CRM/Utils/System/Drupal.php @@ -100,25 +100,13 @@ class CRM_Utils_System_Drupal extends CRM_Utils_System_DrupalBase { } /** - * Check if username and email exists in the drupal db. - * - * @param array $params - * Array of name and mail values. - * @param array $errors - * Array of errors. - * @param string $emailName - * Field label for the 'email'. + * @inheritdoc */ - public static function checkUserNameEmailExists(&$params, &$errors, $emailName = 'email') { - $config = CRM_Core_Config::singleton(); - - $dao = new CRM_Core_DAO(); - $name = $dao->escape(CRM_Utils_Array::value('name', $params)); - $email = $dao->escape(CRM_Utils_Array::value('mail', $params)); - $errors = form_get_errors(); - if ($errors) { - // unset drupal messages to avoid twice display of errors + public function checkUserNameEmailExists(&$params, &$errors, $emailName = 'email') { + if ($drupal_errors = form_get_errors()) { + // unset Drupal messages to avoid twice display of errors unset($_SESSION['messages']); + $errors = array_merge($errors, $drupal_errors); } if (!empty($params['name'])) { diff --git a/civicrm/CRM/Utils/System/Drupal8.php b/civicrm/CRM/Utils/System/Drupal8.php index c26f2b63b01d3e19a3b8e1f7a4a622c875f7fcbd..c65589d53acda2d892c3cb20df6b77b29556ac20 100644 --- a/civicrm/CRM/Utils/System/Drupal8.php +++ b/civicrm/CRM/Utils/System/Drupal8.php @@ -124,16 +124,9 @@ class CRM_Utils_System_Drupal8 extends CRM_Utils_System_DrupalBase { } /** - * Check if username and email exists in the drupal db. - * - * @param array $params - * Array of name and mail values. - * @param array $errors - * Errors. - * @param string $emailName - * Field label for the 'email'. + * @inheritdoc */ - public static function checkUserNameEmailExists(&$params, &$errors, $emailName = 'email') { + public function checkUserNameEmailExists(&$params, &$errors, $emailName = 'email') { // If we are given a name, let's check to see if it already exists. if (!empty($params['name'])) { $name = $params['name']; @@ -901,4 +894,18 @@ class CRM_Utils_System_Drupal8 extends CRM_Utils_System_DrupalBase { return 'Unknown'; } + /** + * @inheritdoc + */ + public function suppressProfileFormErrors():bool { + // Suppress the errors if they are displayed using + // setErrorByName method on FormStateInterface. + $current_path = \Drupal::service('path.current')->getPath(); + $path_args = explode('/', $current_path); + if ($path_args[1] == 'user' || ($path_args[1] == 'admin' && $path_args[2] == 'people')) { + return TRUE; + } + return FALSE; + } + } diff --git a/civicrm/CRM/Utils/System/DrupalBase.php b/civicrm/CRM/Utils/System/DrupalBase.php index f5b916bf09fcaecda8478563837a1fff4ebb3b6b..d3360c2de01f0754773e7028a3b15c5da757667d 100644 --- a/civicrm/CRM/Utils/System/DrupalBase.php +++ b/civicrm/CRM/Utils/System/DrupalBase.php @@ -721,4 +721,39 @@ abstract class CRM_Utils_System_DrupalBase extends CRM_Utils_System_Base { ]; } + /** + * @inheritdoc + */ + public function suppressProfileFormErrors():bool { + // Suppress the errors if they are displayed using + // form_set_error. + if (arg(0) == 'user' || (arg(0) == 'admin' && arg(1) == 'people')) { + return TRUE; + } + return FALSE; + } + + /** + * @inheritdoc + */ + public function getEmailFieldName(CRM_Core_Form $form, array $fields):string { + $emailName = ''; + + if (!empty($form->_bltID) && array_key_exists("email-{$form->_bltID}", $fields)) { + // this is a transaction related page + $emailName = 'email-' . $form->_bltID; + } + else { + // find the email field in a profile page + foreach ($fields as $name => $dontCare) { + if (substr($name, 0, 5) == 'email') { + $emailName = $name; + break; + } + } + } + + return $emailName; + } + } diff --git a/civicrm/CRM/Utils/System/Joomla.php b/civicrm/CRM/Utils/System/Joomla.php index e2773fe2f25e0f55caf41cfedd275948fac5443e..f5b2bb007bf297e3941f2c3c42c4081cad1e3b29 100644 --- a/civicrm/CRM/Utils/System/Joomla.php +++ b/civicrm/CRM/Utils/System/Joomla.php @@ -100,14 +100,30 @@ class CRM_Utils_System_Joomla extends CRM_Utils_System_Base { } /** - * Check if username and email exists in the Joomla db. - * - * @param array $params - * Array of name and mail values. - * @param array $errors - * Array of errors. - * @param string $emailName - * Field label for the 'email'. + * @inheritdoc + */ + public function getEmailFieldName(CRM_Core_Form $form, array $fields):string { + $emailName = ''; + + if (!empty($form->_bltID) && array_key_exists("email-{$form->_bltID}", $fields)) { + // this is a transaction related page + $emailName = 'email-' . $form->_bltID; + } + else { + // find the email field in a profile page + foreach ($fields as $name => $dontCare) { + if (substr($name, 0, 5) == 'email') { + $emailName = $name; + break; + } + } + } + + return $emailName; + } + + /** + * @inheritdoc */ public function checkUserNameEmailExists(&$params, &$errors, $emailName = 'email') { $config = CRM_Core_Config::singleton(); diff --git a/civicrm/CRM/Utils/System/WordPress.php b/civicrm/CRM/Utils/System/WordPress.php index 706049eedbd04c442bc130e1d05f4a7ad24e99fb..2856631fc8413d63c311e827d9b3bdd5bbd8264d 100644 --- a/civicrm/CRM/Utils/System/WordPress.php +++ b/civicrm/CRM/Utils/System/WordPress.php @@ -581,15 +581,15 @@ class CRM_Utils_System_WordPress extends CRM_Utils_System_Base { */ public function loadUser($user) { $userdata = get_user_by('login', $user); - if (!$userdata->data->ID) { + if (empty($userdata->ID)) { return FALSE; } - $uid = $userdata->data->ID; + $uid = $userdata->ID; wp_set_current_user($uid); $contactID = CRM_Core_BAO_UFMatch::getContactId($uid); - // lets store contact id and user id in session + // Lets store contact id and user id in session. $session = CRM_Core_Session::singleton(); $session->set('ufID', $uid); $session->set('userID', $contactID); @@ -616,10 +616,10 @@ class CRM_Utils_System_WordPress extends CRM_Utils_System_Base { */ public function getUfId($username) { $userdata = get_user_by('login', $username); - if (!$userdata->data->ID) { + if (empty($userdata->ID)) { return NULL; } - return $userdata->data->ID; + return $userdata->ID; } /** @@ -972,17 +972,32 @@ class CRM_Utils_System_WordPress extends CRM_Utils_System_Base { } /** - * @param array $params - * @param array $errors - * @param string $emailName + * @inheritdoc */ - public function checkUserNameEmailExists(&$params, &$errors, $emailName = 'email') { - $config = CRM_Core_Config::singleton(); + public function getEmailFieldName(CRM_Core_Form $form, array $fields):string { + $emailName = ''; - $dao = new CRM_Core_DAO(); - $name = $dao->escape(CRM_Utils_Array::value('name', $params)); - $email = $dao->escape(CRM_Utils_Array::value('mail', $params)); + if (!empty($form->_bltID) && array_key_exists("email-{$form->_bltID}", $fields)) { + // this is a transaction related page + $emailName = 'email-' . $form->_bltID; + } + else { + // find the email field in a profile page + foreach ($fields as $name => $dontCare) { + if (substr($name, 0, 5) == 'email') { + $emailName = $name; + break; + } + } + } + + return $emailName; + } + /** + * @inheritdoc + */ + public function checkUserNameEmailExists(&$params, &$errors, $emailName = 'email') { if (!empty($params['name'])) { if (!validate_username($params['name'])) { $errors['cms_name'] = ts("Your username contains invalid characters"); diff --git a/civicrm/CRM/Utils/Time.php b/civicrm/CRM/Utils/Time.php index dd56d6b9e422125c1c3832cbbf6b521e6b3c87b5..dab77826d5b5b1473f2f0c124c7530ee6242b718 100644 --- a/civicrm/CRM/Utils/Time.php +++ b/civicrm/CRM/Utils/Time.php @@ -74,6 +74,16 @@ class CRM_Utils_Time { return self::$callback === NULL ? time() : call_user_func(self::$callback); } + /** + * Get the simulation offset. + * + * @return int + * Seconds between logical time and real time. + */ + public static function delta(): int { + return self::$callback === NULL ? 0 : (call_user_func(self::$callback) - time()); + } + /** * Get the time. * diff --git a/civicrm/Civi/ActionSchedule/Mapping.php b/civicrm/Civi/ActionSchedule/Mapping.php index 2c092ddcea2e1f22619be7db95f8e6af456920f5..6032dcf103185238e58e6dffdf2fe63f745679ad 100644 --- a/civicrm/Civi/ActionSchedule/Mapping.php +++ b/civicrm/Civi/ActionSchedule/Mapping.php @@ -275,15 +275,17 @@ abstract class Mapping implements MappingInterface { asort($valueLabelMap['activity_type']); $valueLabelMap['activity_status'] = \CRM_Core_PseudoConstant::activityStatus(); - $valueLabelMap['event_type'] = \CRM_Event_PseudoConstant::eventType(); - $valueLabelMap['civicrm_event'] = \CRM_Event_PseudoConstant::event(NULL, FALSE, "( is_template IS NULL OR is_template != 1 )"); - $valueLabelMap['civicrm_participant_status_type'] = \CRM_Event_PseudoConstant::participantStatus(NULL, NULL, 'label'); - $valueLabelMap['event_template'] = \Civi\Api4\Event::get(FALSE) - ->addWhere('is_template', '=', TRUE) - ->addWhere('is_active', '=', TRUE) - ->execute() - ->indexBy('id') - ->column('template_title'); + if (\CRM_Core_Component::isEnabled('CiviEvent')) { + $valueLabelMap['event_type'] = \CRM_Event_PseudoConstant::eventType(); + $valueLabelMap['civicrm_event'] = \CRM_Event_PseudoConstant::event(NULL, FALSE, "( is_template IS NULL OR is_template != 1 )"); + $valueLabelMap['civicrm_participant_status_type'] = \CRM_Event_PseudoConstant::participantStatus(NULL, NULL, 'label'); + $valueLabelMap['event_template'] = \Civi\Api4\Event::get(FALSE) + ->addWhere('is_template', '=', TRUE) + ->addWhere('is_active', '=', TRUE) + ->execute() + ->indexBy('id') + ->column('template_title'); + } $valueLabelMap['auto_renew_options'] = \CRM_Core_OptionGroup::values('auto_renew_options'); $valueLabelMap['contact_date_reminder_options'] = \CRM_Core_OptionGroup::values('contact_date_reminder_options'); $valueLabelMap['civicrm_membership_type'] = \CRM_Member_PseudoConstant::membershipType(); diff --git a/civicrm/Civi/Api4/Action/Setting/GetFields.php b/civicrm/Civi/Api4/Action/Setting/GetFields.php index dab24462689e0b8d20ecbb0e51b088fa4b8838c5..2fc022832aceacf6a31e1992e47ba1c2a526a3ef 100644 --- a/civicrm/Civi/Api4/Action/Setting/GetFields.php +++ b/civicrm/Civi/Api4/Action/Setting/GetFields.php @@ -15,7 +15,7 @@ namespace Civi\Api4\Action\Setting; /** * Get information about CiviCRM settings. * - * @method int getDomainId + * @method int getDomainId() * @method $this setDomainId(int $domainId) */ class GetFields extends \Civi\Api4\Generic\BasicGetFieldsAction { diff --git a/civicrm/Civi/Api4/Entity.php b/civicrm/Civi/Api4/Entity.php index 6b84d73b9ce759ddbf564e68f378c63dba9d8dd1..5f36793aa7fcce1da0e44b32b6dd29cf6bd60ed5 100644 --- a/civicrm/Civi/Api4/Entity.php +++ b/civicrm/Civi/Api4/Entity.php @@ -15,6 +15,8 @@ namespace Civi\Api4; * * @see \Civi\Api4\Generic\AbstractEntity * + * @primaryKey name + * @labelField title_plural * @searchable none * @since 5.19 * @package Civi\Api4 @@ -147,6 +149,15 @@ class Entity extends Generic\AbstractEntity { }))->setCheckPermissions($checkPermissions); } + /** + * @param bool $checkPermissions + * @return Generic\AutocompleteAction + */ + public static function autocomplete($checkPermissions = TRUE) { + return (new Generic\AutocompleteAction('Entity', __FUNCTION__)) + ->setCheckPermissions($checkPermissions); + } + /** * @param bool $checkPermissions * @deprecated diff --git a/civicrm/Civi/Api4/Generic/Traits/ArrayQueryActionTrait.php b/civicrm/Civi/Api4/Generic/Traits/ArrayQueryActionTrait.php index b740f5e72ba7ed0d456eed429b41f0f190b3892b..dc33d11885c00c3356f0d9b21b00c42375162936 100644 --- a/civicrm/Civi/Api4/Generic/Traits/ArrayQueryActionTrait.php +++ b/civicrm/Civi/Api4/Generic/Traits/ArrayQueryActionTrait.php @@ -178,7 +178,8 @@ trait ArrayQueryActionTrait { return in_array($expected, $value); } elseif (is_string($value) || is_numeric($value)) { - return strpos((string) $value, (string) $expected) !== FALSE; + // Lowercase check if string contains string + return strpos(strtolower((string) $value), strtolower((string) $expected)) !== FALSE; } return $value == $expected; diff --git a/civicrm/Civi/Api4/ReportInstance.php b/civicrm/Civi/Api4/ReportInstance.php new file mode 100644 index 0000000000000000000000000000000000000000..aaa1f89774c6d0271ddce10d881dd9224c94ef28 --- /dev/null +++ b/civicrm/Civi/Api4/ReportInstance.php @@ -0,0 +1,23 @@ +<?php +/* + +--------------------------------------------------------------------+ + | Copyright CiviCRM LLC. All rights reserved. | + | | + | This work is published under the GNU AGPLv3 license with some | + | permitted exceptions and without any warranty. For full license | + | and copyright information, see https://civicrm.org/licensing | + +--------------------------------------------------------------------+ + */ +namespace Civi\Api4; + +/** + * ReportInstance entity. + * + * @searchable secondary + * @since 5.58 + * @package Civi\Api4 + */ +class ReportInstance extends Generic\DAOEntity { + use Generic\Traits\ManagedEntity; + +} diff --git a/civicrm/Civi/Api4/Service/Autocomplete/EntityAutocompleteProvider.php b/civicrm/Civi/Api4/Service/Autocomplete/EntityAutocompleteProvider.php new file mode 100644 index 0000000000000000000000000000000000000000..652cb4c2a0be86ce79e2679da38bfa6e5cd02bfd --- /dev/null +++ b/civicrm/Civi/Api4/Service/Autocomplete/EntityAutocompleteProvider.php @@ -0,0 +1,53 @@ +<?php + +/* + +--------------------------------------------------------------------+ + | Copyright CiviCRM LLC. All rights reserved. | + | | + | This work is published under the GNU AGPLv3 license with some | + | permitted exceptions and without any warranty. For full license | + | and copyright information, see https://civicrm.org/licensing | + +--------------------------------------------------------------------+ + */ + +namespace Civi\Api4\Service\Autocomplete; + +use Civi\Core\Event\GenericHookEvent; +use Civi\Core\HookInterface; + +/** + * @service + * @internal + */ +class EntityAutocompleteProvider extends \Civi\Core\Service\AutoService implements HookInterface { + + /** + * Provide default SearchDisplay for ContactType autocompletes + * + * @param \Civi\Core\Event\GenericHookEvent $e + */ + public static function on_civi_search_defaultDisplay(GenericHookEvent $e) { + if ($e->display['settings'] || $e->display['type'] !== 'autocomplete' || $e->savedSearch['api_entity'] !== 'Entity') { + return; + } + $e->display['settings'] = [ + 'sort' => [ + ['title_plural', 'ASC'], + ], + 'columns' => [ + [ + 'type' => 'field', + 'key' => 'title_plural', + 'icons' => [ + ['field' => 'icon'], + ], + ], + [ + 'type' => 'field', + 'key' => 'description', + ], + ], + ]; + } + +} diff --git a/civicrm/Civi/Api4/Service/Autocomplete/PledgeAutocompleteProvider.php b/civicrm/Civi/Api4/Service/Autocomplete/PledgeAutocompleteProvider.php new file mode 100644 index 0000000000000000000000000000000000000000..7e7e22964b141b2b0493072cde90263091764256 --- /dev/null +++ b/civicrm/Civi/Api4/Service/Autocomplete/PledgeAutocompleteProvider.php @@ -0,0 +1,86 @@ +<?php + +/* + +--------------------------------------------------------------------+ + | Copyright CiviCRM LLC. All rights reserved. | + | | + | This work is published under the GNU AGPLv3 license with some | + | permitted exceptions and without any warranty. For full license | + | and copyright information, see https://civicrm.org/licensing | + +--------------------------------------------------------------------+ + */ + +namespace Civi\Api4\Service\Autocomplete; + +use Civi\Core\Event\GenericHookEvent; +use Civi\Core\HookInterface; + +/** + * @service + * @internal + */ +class PledgeAutocompleteProvider extends \Civi\Core\Service\AutoService implements HookInterface { + + /** + * Provide default SavedSearch for Pledge autocompletes + * + * @param \Civi\Core\Event\GenericHookEvent $e + */ + public static function on_civi_search_autocompleteDefault(GenericHookEvent $e) { + if (!is_array($e->savedSearch) || $e->savedSearch['api_entity'] !== 'Pledge') { + return; + } + $e->savedSearch['api_params'] = [ + 'version' => 4, + 'select' => [ + 'id', + 'contact_id.display_name', + 'amount', + 'start_date', + 'end_date', + 'financial_type_id:label', + ], + 'orderBy' => [], + 'where' => [], + 'groupBy' => [], + 'join' => [], + 'having' => [], + ]; + } + + /** + * Provide default SearchDisplay for Pledge autocompletes + * + * @param \Civi\Core\Event\GenericHookEvent $e + */ + public static function on_civi_search_defaultDisplay(GenericHookEvent $e) { + if ($e->display['settings'] || $e->display['type'] !== 'autocomplete' || $e->savedSearch['api_entity'] !== 'Pledge') { + return; + } + $e->display['settings'] = [ + 'sort' => [ + ['contact_id.sort_name', 'ASC'], + ['amount', 'ASC'], + ['start_date', 'DESC'], + ], + 'columns' => [ + [ + 'type' => 'field', + 'key' => 'contact_id.display_name', + 'rewrite' => '[contact_id.display_name] - [amount]', + ], + [ + 'type' => 'field', + 'key' => 'financial_type_id:label', + 'rewrite' => '#[id] [financial_type_id:label]', + ], + [ + 'type' => 'field', + 'key' => 'start_date', + 'rewrite' => '[start_date] - [end_date]', + ], + ], + ]; + } + +} diff --git a/civicrm/Civi/Core/ClassScanner.php b/civicrm/Civi/Core/ClassScanner.php index c1e8eefbc76937624cb8b280b4f1ecd8db48a1c2..7863d07edf57f590c04083a3634cff460557e774 100644 --- a/civicrm/Civi/Core/ClassScanner.php +++ b/civicrm/Civi/Core/ClassScanner.php @@ -143,12 +143,6 @@ class ClassScanner { static::scanFolders($classes, $civicrmRoot, 'CRM/*/WorkflowMessage', '_'); static::scanFolders($classes, $civicrmRoot, 'CRM/*/Import', '_'); static::scanFolders($classes, $civicrmRoot, 'Civi', '\\', ';\\\(Security|Test)\\\;'); - if (\CRM_Utils_Constant::value('CIVICRM_UF') === 'UnitTests') { - if (strpos(get_include_path(), $civicrmRoot . 'tests/phpunit') !== FALSE) { - static::scanFolders($classes, $civicrmRoot . 'tests/phpunit', 'CRM/*/WorkflowMessage', '_'); - static::scanFolders($classes, $civicrmRoot . 'tests/phpunit', 'Civi/*/WorkflowMessage', '\\'); - } - } $cache->set($cacheKey, $classes, static::TTL); return $classes; diff --git a/civicrm/Civi/Test/Api4TestTrait.php b/civicrm/Civi/Test/Api4TestTrait.php new file mode 100644 index 0000000000000000000000000000000000000000..1f9b9e2ba73541f38f5866454b4e36562497521f --- /dev/null +++ b/civicrm/Civi/Test/Api4TestTrait.php @@ -0,0 +1,336 @@ +<?php + +namespace Civi\Test; + +use Civi\Api4\Generic\Result; +use Civi\Api4\Service\Spec\Provider\FinancialItemCreationSpecProvider; +use Civi\Api4\Utils\CoreUtil; + +/** + * Class Api4TestTrait + * + * @package Civi\Test + * + * This trait defines apiv4 helper functions to create, track and cleanup test data. + * + * Specifically: + * - `createTestRecord()` will create a new entity record with example data. + * - `saveTestRecords()` is the same as `createTestRecord` for multiple creation of the same entity type. + * - `deleteTestRecords()` will batch-delete all the test-data created by `createTestRecord()` + */ +trait Api4TestTrait { + + /** + * Records created which will be deleted during tearDown + * + * @var array + */ + private $testRecords = []; + + /** + * Inserts a test record, supplying all required values if not provided. + * + * Test records will be automatically deleted if `deleteTestRecords` is called. + * + * This is a convenience helper for `saveTestRecords` when working with a + * single entity. + * + * @param string $entityName + * @param array $values + * + * @return array|null + * + * @noinspection PhpDocMissingThrowsInspection + * @noinspection PhpUnhandledExceptionInspection + */ + public function createTestRecord(string $entityName, array $values = []): ?array { + return $this->saveTestRecords($entityName, ['records' => [$values]])->single(); + } + + /** + * Saves one or more test records, supplying default values. + * + * Test records will be deleted when the `deleteTestRecords` function is + * called, usually in `tearDown`. + * + * If the transactional method is in use (and nothing is down to cause + * the transaction to commit, such as creating custom fields) then the + * `deleteTestRecords` function does not need to be called. + * + * @param string $entityName + * @param array $saveParams + * + * @return \Civi\Api4\Generic\Result + * + * @noinspection PhpDocMissingThrowsInspection + * @noinspection PhpUnhandledExceptionInspection + */ + public function saveTestRecords(string $entityName, array $saveParams): Result { + $saveParams += [ + 'checkPermissions' => FALSE, + 'defaults' => [], + ]; + $idField = CoreUtil::getIdFieldName($entityName); + foreach ($saveParams['records'] as $index => $record) { + $saveParams['records'][$index] += $saveParams['defaults']; + if (empty($record[$idField])) { + $saveParams['records'][$index] = $this->getRequiredValuesToCreate($entityName, $saveParams['records'][$index]); + } + } + $saved = civicrm_api4($entityName, 'save', $saveParams); + foreach ($saved as $item) { + $this->testRecords[] = [$entityName, [[$idField, '=', $item[$idField]]]]; + } + return $saved; + } + + /** + * Generate some random lowercase letters. + * + * @param int $len + * @return string + */ + private function randomLetters(int $len = 10): string { + return \CRM_Utils_String::createRandom($len, implode('', range('a', 'z'))); + } + + /** + * Get the required fields for the api entity + action. + * + * @param string $entity + * @param array $values + * + * @return array + * @throws \CRM_Core_Exception + */ + protected function getRequiredValuesToCreate(string $entity, array $values = []): array { + $requiredFields = civicrm_api4($entity, 'getfields', [ + 'action' => 'create', + 'loadOptions' => TRUE, + 'where' => [ + ['type', 'IN', ['Field', 'Extra']], + ['OR', + [ + ['required', '=', TRUE], + // Include conditionally-required fields only if they don't create a circular FK reference + ['AND', [['required_if', 'IS NOT EMPTY'], ['fk_entity', '!=', $entity]]], + ], + ], + ['default_value', 'IS EMPTY'], + ['readonly', 'IS EMPTY'], + ], + ], 'name'); + + $extraValues = []; + foreach ($requiredFields as $fieldName => $requiredField) { + if (!isset($values[$fieldName])) { + $extraValues[$fieldName] = $this->getRequiredValue($requiredField); + } + } + + // Hack in some extra per-entity values that couldn't be determined by metadata. + // Try to keep this to a minimum and improve metadata as a first-resort. + + switch ($entity) { + case 'UFField': + $extraValues['field_name'] = 'activity_campaign_id'; + break; + + case 'Translation': + $extraValues['entity_table'] = 'civicrm_msg_template'; + $extraValues['entity_field'] = 'msg_subject'; + $extraValues['entity_id'] = $this->getFkID('MessageTemplate'); + break; + + case 'Case': + $extraValues['creator_id'] = $this->getFkID('Contact'); + break; + + case 'CaseContact': + // Prevent "already exists" error from using an existing contact id + $extraValues['contact_id'] = $this->createTestRecord('Contact')['id']; + break; + + case 'CaseType': + $extraValues['definition'] = [ + 'activityTypes' => [ + [ + 'name' => 'Open Case', + 'max_instances' => 1, + ], + [ + 'name' => 'Follow up', + ], + ], + 'activitySets' => [ + [ + 'name' => 'standard_timeline', + 'label' => 'Standard Timeline', + 'timeline' => 1, + 'activityTypes' => [ + [ + 'name' => 'Open Case', + 'status' => 'Completed', + ], + [ + 'name' => 'Follow up', + 'reference_activity' => 'Open Case', + 'reference_offset' => 3, + 'reference_select' => 'newest', + ], + ], + ], + ], + 'timelineActivityTypes' => [ + [ + 'name' => 'Open Case', + 'status' => 'Completed', + ], + [ + 'name' => 'Follow up', + 'reference_activity' => 'Open Case', + 'reference_offset' => 3, + 'reference_select' => 'newest', + ], + ], + 'caseRoles' => [ + [ + 'name' => 'Parent of', + 'creator' => 1, + 'manager' => 1, + ], + ], + ]; + break; + } + + $values += $extraValues; + return $values; + } + + /** + * Attempt to get a value using field option, defaults, FKEntity, or a random + * value based on the data type. + * + * @param array $field + * + * @return mixed + * @throws \CRM_Core_Exception + */ + private function getRequiredValue(array $field) { + if (!empty($field['options'])) { + return key($field['options']); + } + if (!empty($field['fk_entity'])) { + return $this->getFkID($field['fk_entity']); + } + if (isset($field['default_value'])) { + return $field['default_value']; + } + if ($field['name'] === 'contact_id') { + return $this->getFkID('Contact'); + } + if ($field['name'] === 'entity_id') { + // What could possibly go wrong with this? + switch ($field['table_name'] ?? NULL) { + case 'civicrm_financial_item': + return $this->getFkID(FinancialItemCreationSpecProvider::DEFAULT_ENTITY); + + default: + return $this->getFkID('Contact'); + } + } + + $randomValue = $this->getRandomValue($field['data_type']); + + if ($randomValue) { + return $randomValue; + } + + throw new \CRM_Core_Exception('Could not provide default value'); + } + + /** + * Delete records previously created by the `saveTestRecords` function. + * + * This should be called during the `tearDown` function if the test + * class does not use the transactional interface. + * + * @noinspection PhpUnhandledExceptionInspection + */ + protected function deleteTestRecords(): void { + // Delete all test records in reverse order to prevent fk constraints + foreach (array_reverse($this->testRecords) as $record) { + $params = ['checkPermissions' => FALSE, 'where' => $record[1]]; + + // Set useTrash param if it exists + $entityClass = CoreUtil::getApiClass($record[0]); + $deleteAction = $entityClass::delete(); + if (property_exists($deleteAction, 'useTrash')) { + $params['useTrash'] = FALSE; + } + + civicrm_api4($record[0], 'delete', $params); + } + } + + /** + * Get an ID for the appropriate entity. + * + * @param string $fkEntity + * + * @return int + * + * @throws \CRM_Core_Exception + */ + private function getFkID(string $fkEntity): int { + $params = ['checkPermissions' => FALSE]; + // Be predictable about what type of contact we select + if ($fkEntity === 'Contact') { + $params['where'] = [['contact_type', '=', 'Individual']]; + } + $entityList = civicrm_api4($fkEntity, 'get', $params); + // If no existing entities, create one + if ($entityList->count() < 1) { + return $this->createTestRecord($fkEntity)['id']; + } + + return $entityList->last()['id']; + } + + /** + * @param $dataType + * + * @return int|null|string + * + * @noinspection PhpUnhandledExceptionInspection + * @noinspection PhpDocMissingThrowsInspection + */ + private function getRandomValue($dataType) { + switch ($dataType) { + case 'Boolean': + return TRUE; + + case 'Integer': + return random_int(1, 2000); + + case 'String': + return $this->randomLetters(); + + case 'Text': + return $this->randomLetters(100); + + case 'Money': + return sprintf('%d.%2d', random_int(0, 2000), random_int(10, 99)); + + case 'Date': + return '20100102'; + + case 'Timestamp': + return 'now'; + } + + return NULL; + } + +} diff --git a/civicrm/Civi/Test/ContactTestTrait.php b/civicrm/Civi/Test/ContactTestTrait.php index 80b3a5b48b0a3a0b1bda62de7d9dc11b6cfee6f6..0242c8380122e13892e1d9bcac9a2fd5dbd0364b 100644 --- a/civicrm/Civi/Test/ContactTestTrait.php +++ b/civicrm/Civi/Test/ContactTestTrait.php @@ -15,6 +15,13 @@ namespace Civi\Test; */ trait ContactTestTrait { + /** + * API version to use for any api calls. + * + * @var int + */ + public $apiversion = 4; + /** * Emulate a logged in user since certain functions use that. * value to store a record in the DB (like activity) diff --git a/civicrm/api/v3/Contact.php b/civicrm/api/v3/Contact.php index 732f14be833ff9c12aa020199a7707ed62759354..0fc2ca5b6606d8963559e2d93e299542c7c05cf4 100644 --- a/civicrm/api/v3/Contact.php +++ b/civicrm/api/v3/Contact.php @@ -770,7 +770,7 @@ function civicrm_api3_contact_getquick($params) { if ($field_name == 'contact_id') { $field_name = 'id'; } - // core#1420 : trim non-numeric character from phone search string + // dev/core#1420 : trim non-numeric character from phone search string elseif ($field_name == 'phone_numeric') { $name = preg_replace('/[^\d]/', '', $name); } diff --git a/civicrm/api/v3/MessageTemplate.php b/civicrm/api/v3/MessageTemplate.php index 89b285e75d388aa060768884e4d762cc1ea6b97f..08c281f295a614539db2f370f04c002c24224c5b 100644 --- a/civicrm/api/v3/MessageTemplate.php +++ b/civicrm/api/v3/MessageTemplate.php @@ -102,7 +102,7 @@ function civicrm_api3_message_template_send($params) { // the 'wrong' BAO ones. It works, it's tested & // we can do better in apiv4 once we get a suitable // api there. - if ($spec['name'] !== 'workflow' && isset($spec['api.aliases']) && array_key_exists($field, $params)) { + if (($spec['name'] ?? '') !== 'workflow' && isset($spec['api.aliases']) && array_key_exists($field, $params)) { $params[CRM_Utils_Array::first($spec['api.aliases'])] = $params[$field]; unset($params[$field]); } diff --git a/civicrm/civicrm-version.php b/civicrm/civicrm-version.php index 0622fa7f4d5a7ae468789e2a4282138513b13b83..267c2f601dadf4561552121895361b2c23a57a5e 100644 --- a/civicrm/civicrm-version.php +++ b/civicrm/civicrm-version.php @@ -1,7 +1,7 @@ <?php /** @deprecated */ function civicrmVersion( ) { - return array( 'version' => '5.58.1', + return array( 'version' => '5.59.0', 'cms' => 'Wordpress', 'revision' => '' ); } diff --git a/civicrm/composer.lock b/civicrm/composer.lock index 13078911faf5ccffb41a6d9a1f4ee48fd521be22..a233b0ac696fee24dafe9ed7b748430001afe991 100644 --- a/civicrm/composer.lock +++ b/civicrm/composer.lock @@ -4043,16 +4043,16 @@ }, { "name": "symfony/polyfill-ctype", - "version": "v1.26.0", + "version": "v1.27.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-ctype.git", - "reference": "6fd1b9a79f6e3cf65f9e679b23af304cd9e010d4" + "reference": "5bbc823adecdae860bb64756d639ecfec17b050a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/6fd1b9a79f6e3cf65f9e679b23af304cd9e010d4", - "reference": "6fd1b9a79f6e3cf65f9e679b23af304cd9e010d4", + "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/5bbc823adecdae860bb64756d639ecfec17b050a", + "reference": "5bbc823adecdae860bb64756d639ecfec17b050a", "shasum": "" }, "require": { @@ -4067,7 +4067,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "1.26-dev" + "dev-main": "1.27-dev" }, "thanks": { "name": "symfony/polyfill", @@ -4105,7 +4105,7 @@ "portable" ], "support": { - "source": "https://github.com/symfony/polyfill-ctype/tree/v1.26.0" + "source": "https://github.com/symfony/polyfill-ctype/tree/v1.27.0" }, "funding": [ { @@ -4121,24 +4121,27 @@ "type": "tidelift" } ], - "time": "2022-05-24T11:49:31+00:00" + "time": "2022-11-03T14:55:06+00:00" }, { "name": "symfony/polyfill-iconv", - "version": "v1.17.0", + "version": "v1.27.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-iconv.git", - "reference": "c4de7601eefbf25f9d47190abe07f79fe0a27424" + "reference": "927013f3aac555983a5059aada98e1907d842695" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/c4de7601eefbf25f9d47190abe07f79fe0a27424", - "reference": "c4de7601eefbf25f9d47190abe07f79fe0a27424", + "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/927013f3aac555983a5059aada98e1907d842695", + "reference": "927013f3aac555983a5059aada98e1907d842695", "shasum": "" }, "require": { - "php": ">=5.3.3" + "php": ">=7.1" + }, + "provide": { + "ext-iconv": "*" }, "suggest": { "ext-iconv": "For best performance" @@ -4146,7 +4149,11 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "1.17-dev" + "dev-main": "1.27-dev" + }, + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" } }, "autoload": { @@ -4181,7 +4188,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-iconv/tree/v1.17.0" + "source": "https://github.com/symfony/polyfill-iconv/tree/v1.27.0" }, "funding": [ { @@ -4197,20 +4204,20 @@ "type": "tidelift" } ], - "time": "2020-05-12T16:47:27+00:00" + "time": "2022-11-03T14:55:06+00:00" }, { "name": "symfony/polyfill-intl-idn", - "version": "v1.26.0", + "version": "v1.27.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-intl-idn.git", - "reference": "59a8d271f00dd0e4c2e518104cc7963f655a1aa8" + "reference": "639084e360537a19f9ee352433b84ce831f3d2da" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/59a8d271f00dd0e4c2e518104cc7963f655a1aa8", - "reference": "59a8d271f00dd0e4c2e518104cc7963f655a1aa8", + "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/639084e360537a19f9ee352433b84ce831f3d2da", + "reference": "639084e360537a19f9ee352433b84ce831f3d2da", "shasum": "" }, "require": { @@ -4224,7 +4231,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "1.26-dev" + "dev-main": "1.27-dev" }, "thanks": { "name": "symfony/polyfill", @@ -4268,7 +4275,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.26.0" + "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.27.0" }, "funding": [ { @@ -4284,20 +4291,20 @@ "type": "tidelift" } ], - "time": "2022-05-24T11:49:31+00:00" + "time": "2022-11-03T14:55:06+00:00" }, { "name": "symfony/polyfill-intl-normalizer", - "version": "v1.26.0", + "version": "v1.27.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-intl-normalizer.git", - "reference": "219aa369ceff116e673852dce47c3a41794c14bd" + "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/219aa369ceff116e673852dce47c3a41794c14bd", - "reference": "219aa369ceff116e673852dce47c3a41794c14bd", + "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/19bd1e4fcd5b91116f14d8533c57831ed00571b6", + "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6", "shasum": "" }, "require": { @@ -4309,7 +4316,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "1.26-dev" + "dev-main": "1.27-dev" }, "thanks": { "name": "symfony/polyfill", @@ -4352,7 +4359,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.26.0" + "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.27.0" }, "funding": [ { @@ -4368,20 +4375,20 @@ "type": "tidelift" } ], - "time": "2022-05-24T11:49:31+00:00" + "time": "2022-11-03T14:55:06+00:00" }, { "name": "symfony/polyfill-mbstring", - "version": "v1.26.0", + "version": "v1.27.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-mbstring.git", - "reference": "9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e" + "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e", - "reference": "9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e", + "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/8ad114f6b39e2c98a8b0e3bd907732c207c2b534", + "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534", "shasum": "" }, "require": { @@ -4396,7 +4403,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "1.26-dev" + "dev-main": "1.27-dev" }, "thanks": { "name": "symfony/polyfill", @@ -4435,7 +4442,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.26.0" + "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.27.0" }, "funding": [ { @@ -4451,20 +4458,20 @@ "type": "tidelift" } ], - "time": "2022-05-24T11:49:31+00:00" + "time": "2022-11-03T14:55:06+00:00" }, { "name": "symfony/polyfill-php72", - "version": "v1.26.0", + "version": "v1.27.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-php72.git", - "reference": "bf44a9fd41feaac72b074de600314a93e2ae78e2" + "reference": "869329b1e9894268a8a61dabb69153029b7a8c97" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/bf44a9fd41feaac72b074de600314a93e2ae78e2", - "reference": "bf44a9fd41feaac72b074de600314a93e2ae78e2", + "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/869329b1e9894268a8a61dabb69153029b7a8c97", + "reference": "869329b1e9894268a8a61dabb69153029b7a8c97", "shasum": "" }, "require": { @@ -4473,7 +4480,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "1.26-dev" + "dev-main": "1.27-dev" }, "thanks": { "name": "symfony/polyfill", @@ -4511,7 +4518,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-php72/tree/v1.26.0" + "source": "https://github.com/symfony/polyfill-php72/tree/v1.27.0" }, "funding": [ { @@ -4527,20 +4534,20 @@ "type": "tidelift" } ], - "time": "2022-05-24T11:49:31+00:00" + "time": "2022-11-03T14:55:06+00:00" }, { "name": "symfony/polyfill-php73", - "version": "v1.25.0", + "version": "v1.27.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-php73.git", - "reference": "cc5db0e22b3cb4111010e48785a97f670b350ca5" + "reference": "9e8ecb5f92152187c4799efd3c96b78ccab18ff9" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/cc5db0e22b3cb4111010e48785a97f670b350ca5", - "reference": "cc5db0e22b3cb4111010e48785a97f670b350ca5", + "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/9e8ecb5f92152187c4799efd3c96b78ccab18ff9", + "reference": "9e8ecb5f92152187c4799efd3c96b78ccab18ff9", "shasum": "" }, "require": { @@ -4549,7 +4556,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "1.23-dev" + "dev-main": "1.27-dev" }, "thanks": { "name": "symfony/polyfill", @@ -4590,7 +4597,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-php73/tree/v1.25.0" + "source": "https://github.com/symfony/polyfill-php73/tree/v1.27.0" }, "funding": [ { @@ -4606,20 +4613,20 @@ "type": "tidelift" } ], - "time": "2021-06-05T21:20:04+00:00" + "time": "2022-11-03T14:55:06+00:00" }, { "name": "symfony/polyfill-php74", - "version": "v1.26.0", + "version": "v1.27.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-php74.git", - "reference": "ad4f7d62a17b1187d9f381f0a662aab19ff3c033" + "reference": "aa7f1231a1aa56d695e626043252b7be6a90c4ce" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php74/zipball/ad4f7d62a17b1187d9f381f0a662aab19ff3c033", - "reference": "ad4f7d62a17b1187d9f381f0a662aab19ff3c033", + "url": "https://api.github.com/repos/symfony/polyfill-php74/zipball/aa7f1231a1aa56d695e626043252b7be6a90c4ce", + "reference": "aa7f1231a1aa56d695e626043252b7be6a90c4ce", "shasum": "" }, "require": { @@ -4628,7 +4635,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "1.26-dev" + "dev-main": "1.27-dev" }, "thanks": { "name": "symfony/polyfill", @@ -4670,7 +4677,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-php74/tree/v1.26.0" + "source": "https://github.com/symfony/polyfill-php74/tree/v1.27.0" }, "funding": [ { @@ -4686,20 +4693,20 @@ "type": "tidelift" } ], - "time": "2022-05-24T11:49:31+00:00" + "time": "2022-11-03T14:55:06+00:00" }, { "name": "symfony/polyfill-php80", - "version": "v1.26.0", + "version": "v1.27.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-php80.git", - "reference": "cfa0ae98841b9e461207c13ab093d76b0fa7bace" + "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/cfa0ae98841b9e461207c13ab093d76b0fa7bace", - "reference": "cfa0ae98841b9e461207c13ab093d76b0fa7bace", + "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936", + "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936", "shasum": "" }, "require": { @@ -4708,7 +4715,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "1.26-dev" + "dev-main": "1.27-dev" }, "thanks": { "name": "symfony/polyfill", @@ -4753,7 +4760,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-php80/tree/v1.26.0" + "source": "https://github.com/symfony/polyfill-php80/tree/v1.27.0" }, "funding": [ { @@ -4769,20 +4776,20 @@ "type": "tidelift" } ], - "time": "2022-05-10T07:21:04+00:00" + "time": "2022-11-03T14:55:06+00:00" }, { "name": "symfony/polyfill-php81", - "version": "v1.26.0", + "version": "v1.27.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-php81.git", - "reference": "13f6d1271c663dc5ae9fb843a8f16521db7687a1" + "reference": "707403074c8ea6e2edaf8794b0157a0bfa52157a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/13f6d1271c663dc5ae9fb843a8f16521db7687a1", - "reference": "13f6d1271c663dc5ae9fb843a8f16521db7687a1", + "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/707403074c8ea6e2edaf8794b0157a0bfa52157a", + "reference": "707403074c8ea6e2edaf8794b0157a0bfa52157a", "shasum": "" }, "require": { @@ -4791,7 +4798,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "1.26-dev" + "dev-main": "1.27-dev" }, "thanks": { "name": "symfony/polyfill", @@ -4832,7 +4839,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-php81/tree/v1.26.0" + "source": "https://github.com/symfony/polyfill-php81/tree/v1.27.0" }, "funding": [ { @@ -4848,20 +4855,20 @@ "type": "tidelift" } ], - "time": "2022-05-24T11:49:31+00:00" + "time": "2022-11-03T14:55:06+00:00" }, { "name": "symfony/polyfill-php82", - "version": "v1.26.0", + "version": "v1.27.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-php82.git", - "reference": "a88014fcea4120c9f77b4fefd48942ce38e412e7" + "reference": "80ddf7bfa17ef7b06db4e6d007a95bf584e07b44" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php82/zipball/a88014fcea4120c9f77b4fefd48942ce38e412e7", - "reference": "a88014fcea4120c9f77b4fefd48942ce38e412e7", + "url": "https://api.github.com/repos/symfony/polyfill-php82/zipball/80ddf7bfa17ef7b06db4e6d007a95bf584e07b44", + "reference": "80ddf7bfa17ef7b06db4e6d007a95bf584e07b44", "shasum": "" }, "require": { @@ -4870,7 +4877,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "1.26-dev" + "dev-main": "1.27-dev" }, "thanks": { "name": "symfony/polyfill", @@ -4911,7 +4918,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-php82/tree/v1.26.0" + "source": "https://github.com/symfony/polyfill-php82/tree/v1.27.0" }, "funding": [ { @@ -4927,7 +4934,7 @@ "type": "tidelift" } ], - "time": "2022-05-24T09:13:51+00:00" + "time": "2022-11-10T10:10:54+00:00" }, { "name": "symfony/process", @@ -5747,5 +5754,5 @@ "platform-overrides": { "php": "7.3.0" }, - "plugin-api-version": "2.3.0" + "plugin-api-version": "2.2.0" } diff --git a/civicrm/css/civicrm.css b/civicrm/css/civicrm.css index 7306d752d6ddf193f1e50418b95fec5860424f70..e958d97ba0ac8616c9787909440c99f31d79cae0 100644 --- a/civicrm/css/civicrm.css +++ b/civicrm/css/civicrm.css @@ -2784,6 +2784,7 @@ tbody.scrollContent tr.alternateRow { } .crm-container .disabled, +.crm-container .crm-disabled, .crm-container .disabled *, .crm-container .cancelled, .crm-container .cancelled td, diff --git a/civicrm/ext/afform/admin/info.xml b/civicrm/ext/afform/admin/info.xml index 31c7ec80acfb0e7debe184776e8bb5aaf2cbdef7..c955e059ae4760eb2a8f98a937b286426ea2bc41 100644 --- a/civicrm/ext/afform/admin/info.xml +++ b/civicrm/ext/afform/admin/info.xml @@ -13,10 +13,10 @@ <url desc="Licensing">http://www.gnu.org/licenses/agpl-3.0.html</url> </urls> <releaseDate>2020-01-09</releaseDate> - <version>5.58.1</version> + <version>5.59.0</version> <develStage>beta</develStage> <compatibility> - <ver>5.58</ver> + <ver>5.59</ver> </compatibility> <comments>FormBuilder provides a UI to administer and edit forms. It is an optional admin tool and not required for the forms to function.</comments> <requires> diff --git a/civicrm/ext/afform/core/CRM/Afform/Upgrader.php b/civicrm/ext/afform/core/CRM/Afform/Upgrader.php index d104d03f286df94ce5212176e73fb7024deaeacc..4859a2981a71b1ac7917adb33901f1c2fb7146ac 100644 --- a/civicrm/ext/afform/core/CRM/Afform/Upgrader.php +++ b/civicrm/ext/afform/core/CRM/Afform/Upgrader.php @@ -4,7 +4,7 @@ use CRM_Afform_ExtensionUtil as E; /** * Collection of upgrade steps. */ -class CRM_Afform_Upgrader extends CRM_Afform_Upgrader_Base { +class CRM_Afform_Upgrader extends CRM_Extension_Upgrader_Base { /** * Update names of blocks and joins diff --git a/civicrm/ext/afform/core/CRM/Afform/Upgrader/Base.php b/civicrm/ext/afform/core/CRM/Afform/Upgrader/Base.php deleted file mode 100644 index 207520ddd58bc7d0292d1eafa5770b8610b6774d..0000000000000000000000000000000000000000 --- a/civicrm/ext/afform/core/CRM/Afform/Upgrader/Base.php +++ /dev/null @@ -1,396 +0,0 @@ -<?php - -// AUTO-GENERATED FILE -- Civix may overwrite any changes made to this file -use CRM_Afform_ExtensionUtil as E; - -/** - * Base class which provides helpers to execute upgrade logic - */ -class CRM_Afform_Upgrader_Base { - - /** - * @var CRM_Afform_Upgrader_Base - */ - public static $instance; - - /** - * @var CRM_Queue_TaskContext - */ - protected $ctx; - - /** - * @var string - * eg 'com.example.myextension' - */ - protected $extensionName; - - /** - * @var string - * full path to the extension's source tree - */ - protected $extensionDir; - - /** - * @var array - * sorted numerically - */ - private $revisions; - - /** - * @var bool - * Flag to clean up extension revision data in civicrm_setting - */ - private $revisionStorageIsDeprecated = FALSE; - - /** - * Obtain a reference to the active upgrade handler. - */ - public static function instance() { - if (!self::$instance) { - self::$instance = new CRM_Afform_Upgrader( - 'org.civicrm.afform', - E::path() - ); - } - return self::$instance; - } - - /** - * Adapter that lets you add normal (non-static) member functions to the queue. - * - * Note: Each upgrader instance should only be associated with one - * task-context; otherwise, this will be non-reentrant. - * - * ``` - * CRM_Afform_Upgrader_Base::_queueAdapter($ctx, 'methodName', 'arg1', 'arg2'); - * ``` - */ - public static function _queueAdapter() { - $instance = self::instance(); - $args = func_get_args(); - $instance->ctx = array_shift($args); - $instance->queue = $instance->ctx->queue; - $method = array_shift($args); - return call_user_func_array([$instance, $method], $args); - } - - /** - * CRM_Afform_Upgrader_Base constructor. - * - * @param $extensionName - * @param $extensionDir - */ - public function __construct($extensionName, $extensionDir) { - $this->extensionName = $extensionName; - $this->extensionDir = $extensionDir; - } - - // ******** Task helpers ******** - - /** - * Run a CustomData file. - * - * @param string $relativePath - * the CustomData XML file path (relative to this extension's dir) - * @return bool - */ - public function executeCustomDataFile($relativePath) { - $xml_file = $this->extensionDir . '/' . $relativePath; - return $this->executeCustomDataFileByAbsPath($xml_file); - } - - /** - * Run a CustomData file - * - * @param string $xml_file - * the CustomData XML file path (absolute path) - * - * @return bool - */ - protected function executeCustomDataFileByAbsPath($xml_file) { - $import = new CRM_Utils_Migrate_Import(); - $import->run($xml_file); - return TRUE; - } - - /** - * Run a SQL file. - * - * @param string $relativePath - * the SQL file path (relative to this extension's dir) - * - * @return bool - */ - public function executeSqlFile($relativePath) { - CRM_Utils_File::sourceSQLFile( - CIVICRM_DSN, - $this->extensionDir . DIRECTORY_SEPARATOR . $relativePath - ); - return TRUE; - } - - /** - * Run the sql commands in the specified file. - * - * @param string $tplFile - * The SQL file path (relative to this extension's dir). - * Ex: "sql/mydata.mysql.tpl". - * - * @return bool - * @throws \CRM_Core_Exception - */ - public function executeSqlTemplate($tplFile) { - // Assign multilingual variable to Smarty. - $upgrade = new CRM_Upgrade_Form(); - - $tplFile = CRM_Utils_File::isAbsolute($tplFile) ? $tplFile : $this->extensionDir . DIRECTORY_SEPARATOR . $tplFile; - $smarty = CRM_Core_Smarty::singleton(); - $smarty->assign('domainID', CRM_Core_Config::domainID()); - CRM_Utils_File::sourceSQLFile( - CIVICRM_DSN, $smarty->fetch($tplFile), NULL, TRUE - ); - return TRUE; - } - - /** - * Run one SQL query. - * - * This is just a wrapper for CRM_Core_DAO::executeSql, but it - * provides syntactic sugar for queueing several tasks that - * run different queries - * - * @return bool - */ - public function executeSql($query, $params = []) { - // FIXME verify that we raise an exception on error - CRM_Core_DAO::executeQuery($query, $params); - return TRUE; - } - - /** - * Syntactic sugar for enqueuing a task which calls a function in this class. - * - * The task is weighted so that it is processed - * as part of the currently-pending revision. - * - * After passing the $funcName, you can also pass parameters that will go to - * the function. Note that all params must be serializable. - */ - public function addTask($title) { - $args = func_get_args(); - $title = array_shift($args); - $task = new CRM_Queue_Task( - [get_class($this), '_queueAdapter'], - $args, - $title - ); - return $this->queue->createItem($task, ['weight' => -1]); - } - - // ******** Revision-tracking helpers ******** - - /** - * Determine if there are any pending revisions. - * - * @return bool - */ - public function hasPendingRevisions() { - $revisions = $this->getRevisions(); - $currentRevision = $this->getCurrentRevision(); - - if (empty($revisions)) { - return FALSE; - } - if (empty($currentRevision)) { - return TRUE; - } - - return ($currentRevision < max($revisions)); - } - - /** - * Add any pending revisions to the queue. - * - * @param CRM_Queue_Queue $queue - */ - public function enqueuePendingRevisions(CRM_Queue_Queue $queue) { - $this->queue = $queue; - - $currentRevision = $this->getCurrentRevision(); - foreach ($this->getRevisions() as $revision) { - if ($revision > $currentRevision) { - $title = E::ts('Upgrade %1 to revision %2', [ - 1 => $this->extensionName, - 2 => $revision, - ]); - - // note: don't use addTask() because it sets weight=-1 - - $task = new CRM_Queue_Task( - [get_class($this), '_queueAdapter'], - ['upgrade_' . $revision], - $title - ); - $this->queue->createItem($task); - - $task = new CRM_Queue_Task( - [get_class($this), '_queueAdapter'], - ['setCurrentRevision', $revision], - $title - ); - $this->queue->createItem($task); - } - } - } - - /** - * Get a list of revisions. - * - * @return array - * revisionNumbers sorted numerically - */ - public function getRevisions() { - if (!is_array($this->revisions)) { - $this->revisions = []; - - $clazz = new ReflectionClass(get_class($this)); - $methods = $clazz->getMethods(); - foreach ($methods as $method) { - if (preg_match('/^upgrade_(.*)/', $method->name, $matches)) { - $this->revisions[] = $matches[1]; - } - } - sort($this->revisions, SORT_NUMERIC); - } - - return $this->revisions; - } - - public function getCurrentRevision() { - $revision = CRM_Core_BAO_Extension::getSchemaVersion($this->extensionName); - if (!$revision) { - $revision = $this->getCurrentRevisionDeprecated(); - } - return $revision; - } - - private function getCurrentRevisionDeprecated() { - $key = $this->extensionName . ':version'; - if ($revision = \Civi::settings()->get($key)) { - $this->revisionStorageIsDeprecated = TRUE; - } - return $revision; - } - - public function setCurrentRevision($revision) { - CRM_Core_BAO_Extension::setSchemaVersion($this->extensionName, $revision); - // clean up legacy schema version store (CRM-19252) - $this->deleteDeprecatedRevision(); - return TRUE; - } - - private function deleteDeprecatedRevision() { - if ($this->revisionStorageIsDeprecated) { - $setting = new CRM_Core_BAO_Setting(); - $setting->name = $this->extensionName . ':version'; - $setting->delete(); - CRM_Core_Error::debug_log_message("Migrated extension schema revision ID for {$this->extensionName} from civicrm_setting (deprecated) to civicrm_extension.\n"); - } - } - - // ******** Hook delegates ******** - - /** - * @see https://docs.civicrm.org/dev/en/latest/hooks/hook_civicrm_install - */ - public function onInstall() { - $files = glob($this->extensionDir . '/sql/*_install.sql'); - if (is_array($files)) { - foreach ($files as $file) { - CRM_Utils_File::sourceSQLFile(CIVICRM_DSN, $file); - } - } - $files = glob($this->extensionDir . '/sql/*_install.mysql.tpl'); - if (is_array($files)) { - foreach ($files as $file) { - $this->executeSqlTemplate($file); - } - } - $files = glob($this->extensionDir . '/xml/*_install.xml'); - if (is_array($files)) { - foreach ($files as $file) { - $this->executeCustomDataFileByAbsPath($file); - } - } - if (is_callable([$this, 'install'])) { - $this->install(); - } - } - - /** - * @see https://docs.civicrm.org/dev/en/latest/hooks/hook_civicrm_postInstall - */ - public function onPostInstall() { - $revisions = $this->getRevisions(); - if (!empty($revisions)) { - $this->setCurrentRevision(max($revisions)); - } - if (is_callable([$this, 'postInstall'])) { - $this->postInstall(); - } - } - - /** - * @see https://docs.civicrm.org/dev/en/latest/hooks/hook_civicrm_uninstall - */ - public function onUninstall() { - $files = glob($this->extensionDir . '/sql/*_uninstall.mysql.tpl'); - if (is_array($files)) { - foreach ($files as $file) { - $this->executeSqlTemplate($file); - } - } - if (is_callable([$this, 'uninstall'])) { - $this->uninstall(); - } - $files = glob($this->extensionDir . '/sql/*_uninstall.sql'); - if (is_array($files)) { - foreach ($files as $file) { - CRM_Utils_File::sourceSQLFile(CIVICRM_DSN, $file); - } - } - } - - /** - * @see https://docs.civicrm.org/dev/en/latest/hooks/hook_civicrm_enable - */ - public function onEnable() { - // stub for possible future use - if (is_callable([$this, 'enable'])) { - $this->enable(); - } - } - - /** - * @see https://docs.civicrm.org/dev/en/latest/hooks/hook_civicrm_disable - */ - public function onDisable() { - // stub for possible future use - if (is_callable([$this, 'disable'])) { - $this->disable(); - } - } - - public function onUpgrade($op, CRM_Queue_Queue $queue = NULL) { - switch ($op) { - case 'check': - return [$this->hasPendingRevisions()]; - - case 'enqueue': - return $this->enqueuePendingRevisions($queue); - - default: - } - } - -} diff --git a/civicrm/ext/afform/core/afform.civix.php b/civicrm/ext/afform/core/afform.civix.php index 11006a5f58ccbff8a0a3b045fe48b2ce6eadf236..85f9a141821cac15bda44337d7d927c64e6c709f 100644 --- a/civicrm/ext/afform/core/afform.civix.php +++ b/civicrm/ext/afform/core/afform.civix.php @@ -84,27 +84,20 @@ use CRM_Afform_ExtensionUtil as E; * * @link https://docs.civicrm.org/dev/en/latest/hooks/hook_civicrm_config */ -function _afform_civix_civicrm_config(&$config = NULL) { +function _afform_civix_civicrm_config($config = NULL) { static $configured = FALSE; if ($configured) { return; } $configured = TRUE; - $template = CRM_Core_Smarty::singleton(); - $extRoot = __DIR__ . DIRECTORY_SEPARATOR; $extDir = $extRoot . 'templates'; - - if (is_array($template->template_dir)) { - array_unshift($template->template_dir, $extDir); - } - else { - $template->template_dir = [$extDir, $template->template_dir]; - } + CRM_Core_Smarty::singleton()->addTemplateDir($extDir); $include_path = $extRoot . PATH_SEPARATOR . get_include_path(); set_include_path($include_path); + // Based on <compatibility>, this does not currently require mixin/polyfill.php. } /** @@ -114,35 +107,7 @@ function _afform_civix_civicrm_config(&$config = NULL) { */ function _afform_civix_civicrm_install() { _afform_civix_civicrm_config(); - if ($upgrader = _afform_civix_upgrader()) { - $upgrader->onInstall(); - } -} - -/** - * Implements hook_civicrm_postInstall(). - * - * @link https://docs.civicrm.org/dev/en/latest/hooks/hook_civicrm_postInstall - */ -function _afform_civix_civicrm_postInstall() { - _afform_civix_civicrm_config(); - if ($upgrader = _afform_civix_upgrader()) { - if (is_callable([$upgrader, 'onPostInstall'])) { - $upgrader->onPostInstall(); - } - } -} - -/** - * Implements hook_civicrm_uninstall(). - * - * @link https://docs.civicrm.org/dev/en/latest/hooks/hook_civicrm_uninstall - */ -function _afform_civix_civicrm_uninstall(): void { - _afform_civix_civicrm_config(); - if ($upgrader = _afform_civix_upgrader()) { - $upgrader->onUninstall(); - } + // Based on <compatibility>, this does not currently require mixin/polyfill.php. } /** @@ -152,56 +117,7 @@ function _afform_civix_civicrm_uninstall(): void { */ function _afform_civix_civicrm_enable(): void { _afform_civix_civicrm_config(); - if ($upgrader = _afform_civix_upgrader()) { - if (is_callable([$upgrader, 'onEnable'])) { - $upgrader->onEnable(); - } - } -} - -/** - * (Delegated) Implements hook_civicrm_disable(). - * - * @link https://docs.civicrm.org/dev/en/latest/hooks/hook_civicrm_disable - * @return mixed - */ -function _afform_civix_civicrm_disable(): void { - _afform_civix_civicrm_config(); - if ($upgrader = _afform_civix_upgrader()) { - if (is_callable([$upgrader, 'onDisable'])) { - $upgrader->onDisable(); - } - } -} - -/** - * (Delegated) Implements hook_civicrm_upgrade(). - * - * @param $op string, the type of operation being performed; 'check' or 'enqueue' - * @param $queue CRM_Queue_Queue, (for 'enqueue') the modifiable list of pending up upgrade tasks - * - * @return mixed - * based on op. for 'check', returns array(boolean) (TRUE if upgrades are pending) - * for 'enqueue', returns void - * - * @link https://docs.civicrm.org/dev/en/latest/hooks/hook_civicrm_upgrade - */ -function _afform_civix_civicrm_upgrade($op, CRM_Queue_Queue $queue = NULL) { - if ($upgrader = _afform_civix_upgrader()) { - return $upgrader->onUpgrade($op, $queue); - } -} - -/** - * @return CRM_Afform_Upgrader - */ -function _afform_civix_upgrader() { - if (!file_exists(__DIR__ . '/CRM/Afform/Upgrader.php')) { - return NULL; - } - else { - return CRM_Afform_Upgrader_Base::instance(); - } + // Based on <compatibility>, this does not currently require mixin/polyfill.php. } /** diff --git a/civicrm/ext/afform/core/afform.php b/civicrm/ext/afform/core/afform.php index e72f2eca212fae593ccae5a8e7c3f278c54b828a..b381f64801a97df4029d42a297debe18d15628a1 100644 --- a/civicrm/ext/afform/core/afform.php +++ b/civicrm/ext/afform/core/afform.php @@ -76,24 +76,6 @@ function afform_civicrm_install() { _afform_civix_civicrm_install(); } -/** - * Implements hook_civicrm_postInstall(). - * - * @link http://wiki.civicrm.org/confluence/display/CRMDOC/hook_civicrm_postInstall - */ -function afform_civicrm_postInstall() { - _afform_civix_civicrm_postInstall(); -} - -/** - * Implements hook_civicrm_uninstall(). - * - * @link http://wiki.civicrm.org/confluence/display/CRMDOC/hook_civicrm_uninstall - */ -function afform_civicrm_uninstall() { - _afform_civix_civicrm_uninstall(); -} - /** * Implements hook_civicrm_enable(). * @@ -103,24 +85,6 @@ function afform_civicrm_enable() { _afform_civix_civicrm_enable(); } -/** - * Implements hook_civicrm_disable(). - * - * @link http://wiki.civicrm.org/confluence/display/CRMDOC/hook_civicrm_disable - */ -function afform_civicrm_disable() { - _afform_civix_civicrm_disable(); -} - -/** - * Implements hook_civicrm_upgrade(). - * - * @link http://wiki.civicrm.org/confluence/display/CRMDOC/hook_civicrm_upgrade - */ -function afform_civicrm_upgrade($op, CRM_Queue_Queue $queue = NULL) { - return _afform_civix_civicrm_upgrade($op, $queue); -} - /** * Implements hook_civicrm_managed(). * diff --git a/civicrm/ext/afform/core/info.xml b/civicrm/ext/afform/core/info.xml index 38db7d63bcf739dae09cf9333369da3dd5c1daa8..911a5c2ca5abfd7d07fa1005940e57863b60fb39 100644 --- a/civicrm/ext/afform/core/info.xml +++ b/civicrm/ext/afform/core/info.xml @@ -13,15 +13,15 @@ <url desc="Licensing">http://www.gnu.org/licenses/agpl-3.0.html</url> </urls> <releaseDate>2020-01-09</releaseDate> - <version>5.58.1</version> + <version>5.59.0</version> <develStage>beta</develStage> <compatibility> - <ver>5.58</ver> + <ver>5.59</ver> </compatibility> <comments>The Form Core extension is required to use any dynamic form. To administer and edit forms, also install the FormBuilder extension.</comments> <civix> <namespace>CRM/Afform</namespace> - <format>22.10.0</format> + <format>22.12.1</format> </civix> <classloader> <psr4 prefix="Civi\" path="Civi"/> @@ -35,4 +35,5 @@ <mixin>mgd-php@1.0.0</mixin> <mixin>scan-classes@1.0.0</mixin> </mixins> + <upgrader>CRM_Afform_Upgrader</upgrader> </extension> diff --git a/civicrm/ext/afform/core/tests/phpunit/Civi/Afform/AfformContactSummaryTest.php b/civicrm/ext/afform/core/tests/phpunit/Civi/Afform/AfformContactSummaryTest.php index 21aafaeb5ffb0b47697fd1e043a4c90784a733a6..aa8817b792c9f91496f719b6d6c513d2ae33be71 100644 --- a/civicrm/ext/afform/core/tests/phpunit/Civi/Afform/AfformContactSummaryTest.php +++ b/civicrm/ext/afform/core/tests/phpunit/Civi/Afform/AfformContactSummaryTest.php @@ -1,15 +1,19 @@ <?php namespace Civi\Afform; -// Hopefully temporry workaround for loading core test classes -require_once __DIR__ . '/../../../../../../../tests/phpunit/api/v4/Api4TestBase.php'; - use Civi\Api4\Afform; +use Civi\Test; +use Civi\Test\Api4TestTrait; +use Civi\Test\CiviEnvBuilder; +use Civi\Test\HeadlessInterface; +use PHPUnit\Framework\TestCase; /** * @group headless */ -class AfformContactSummaryTest extends \api\v4\Api4TestBase { +class AfformContactSummaryTest extends TestCase implements HeadlessInterface { + + use Api4TestTrait; private $formNames = [ 'contact_summary_test1', @@ -19,13 +23,13 @@ class AfformContactSummaryTest extends \api\v4\Api4TestBase { 'contact_summary_test5', ]; - public function setUpHeadless() { - return \Civi\Test::headless()->installMe(__DIR__)->install('org.civicrm.search_kit')->apply(); + public function setUpHeadless(): CiviEnvBuilder { + return Test::headless()->installMe(__DIR__)->install('org.civicrm.search_kit')->apply(); } public function tearDown(): void { Afform::revert(FALSE)->addWhere('name', 'IN', $this->formNames)->execute(); - parent::tearDown(); + $this->deleteTestRecords(); } public function testAfformContactSummaryTab(): void { diff --git a/civicrm/ext/afform/html/info.xml b/civicrm/ext/afform/html/info.xml index b4852505eb7c7b9e8d74adcb8b8248ac6a3ac37c..b7e69137a914b68fd6431ad9334a0a4f317cb17d 100644 --- a/civicrm/ext/afform/html/info.xml +++ b/civicrm/ext/afform/html/info.xml @@ -13,10 +13,10 @@ <url desc="Licensing">http://www.gnu.org/licenses/agpl-3.0.html</url> </urls> <releaseDate>2020-01-09</releaseDate> - <version>5.58.1</version> + <version>5.59.0</version> <develStage>alpha</develStage> <compatibility> - <ver>5.58</ver> + <ver>5.59</ver> </compatibility> <requires> <ext>org.civicrm.afform</ext> diff --git a/civicrm/ext/afform/mock/info.xml b/civicrm/ext/afform/mock/info.xml index 1801f0ad37c0cf111fb22128d40520eb51a13b98..d5b72b3e9b2754c6224d9d3a72d6df93546ad158 100644 --- a/civicrm/ext/afform/mock/info.xml +++ b/civicrm/ext/afform/mock/info.xml @@ -12,13 +12,13 @@ <url desc="Licensing">http://www.gnu.org/licenses/agpl-3.0.html</url> </urls> <releaseDate>2020-01-09</releaseDate> - <version>5.58.1</version> + <version>5.59.0</version> <tags> <tag>mgmt:hidden</tag> </tags> <develStage>alpha</develStage> <compatibility> - <ver>5.58</ver> + <ver>5.59</ver> </compatibility> <requires> <ext>org.civicrm.afform</ext> diff --git a/civicrm/ext/authx/info.xml b/civicrm/ext/authx/info.xml index 47b654cd16d052f864e28e265d002adf7943ad1b..719c6db45d61811f141c8ceaf63cfcbeb03bc614 100644 --- a/civicrm/ext/authx/info.xml +++ b/civicrm/ext/authx/info.xml @@ -15,10 +15,10 @@ <url desc="Licensing">http://www.gnu.org/licenses/agpl-3.0.html</url> </urls> <releaseDate>2021-02-11</releaseDate> - <version>5.58.1</version> + <version>5.59.0</version> <develStage>stable</develStage> <compatibility> - <ver>5.58</ver> + <ver>5.59</ver> </compatibility> <comments>AuthX enables remote applications to connect to CiviCRM. Use it to enable and disable different forms of authentication (such as username-password, API key, and/or JWT).</comments> <classloader> diff --git a/civicrm/ext/civicrm_admin_ui/info.xml b/civicrm/ext/civicrm_admin_ui/info.xml index 6aeef831e47bd58aefe41a08b042dd67c17bdc2b..146355f1b9e63ab270d11d4a4d1114e3f56cd22a 100644 --- a/civicrm/ext/civicrm_admin_ui/info.xml +++ b/civicrm/ext/civicrm_admin_ui/info.xml @@ -15,10 +15,10 @@ <url desc="Licensing">http://www.gnu.org/licenses/agpl-3.0.html</url> </urls> <releaseDate>2022-01-02</releaseDate> - <version>5.58.1</version> + <version>5.59.0</version> <develStage>alpha</develStage> <compatibility> - <ver>5.58</ver> + <ver>5.59</ver> </compatibility> <requires> <ext>org.civicrm.search_kit</ext> diff --git a/civicrm/ext/civigrant/civigrant.civix.php b/civicrm/ext/civigrant/civigrant.civix.php index 424cd9e19a3db0d8b6cddb0f01ccd9039209a386..0b066cd2fa0f04c8b377b162cc8bd6c410f2309c 100644 --- a/civicrm/ext/civigrant/civigrant.civix.php +++ b/civicrm/ext/civigrant/civigrant.civix.php @@ -91,18 +91,7 @@ function _civigrant_civix_civicrm_config(&$config = NULL) { } $configured = TRUE; - $template = CRM_Core_Smarty::singleton(); - $extRoot = __DIR__ . DIRECTORY_SEPARATOR; - $extDir = $extRoot . 'templates'; - - if (is_array($template->template_dir)) { - array_unshift($template->template_dir, $extDir); - } - else { - $template->template_dir = [$extDir, $template->template_dir]; - } - $include_path = $extRoot . PATH_SEPARATOR . get_include_path(); set_include_path($include_path); } diff --git a/civicrm/ext/civigrant/info.xml b/civicrm/ext/civigrant/info.xml index 1545bb490526997514bc1f4b714967a0569ccc7c..50ce0dfab89897c7022a168b11da93bc38ed1860 100644 --- a/civicrm/ext/civigrant/info.xml +++ b/civicrm/ext/civigrant/info.xml @@ -13,10 +13,10 @@ <url desc="Licensing">http://www.gnu.org/licenses/agpl-3.0.html</url> </urls> <releaseDate>2021-11-11</releaseDate> - <version>5.58.1</version> + <version>5.59.0</version> <develStage>stable</develStage> <compatibility> - <ver>5.58</ver> + <ver>5.59</ver> </compatibility> <comments>CiviGrant was originally a core component before migrating to an extension</comments> <requires> @@ -32,6 +32,7 @@ <mixin>menu-xml@1.0.0</mixin> <mixin>mgd-php@1.0.0</mixin> <mixin>afform-entity-php@1.0.0</mixin> + <mixin>smarty-v2@1.0.0</mixin> </mixins> <civix> <namespace>CRM/Grant</namespace> diff --git a/civicrm/ext/civiimport/Civi/Api4/Import/Import.php b/civicrm/ext/civiimport/Civi/Api4/Import/Import.php index 60099303bd8076cb5535d307a437feb0b711cf74..4a152d255faabbec95f51a6990d4d8d27b54b12d 100644 --- a/civicrm/ext/civiimport/Civi/Api4/Import/Import.php +++ b/civicrm/ext/civiimport/Civi/Api4/Import/Import.php @@ -25,10 +25,12 @@ class Import extends DAOGetAction { public function _run(Result $result): void { $userJobID = (int) str_replace('Import_', '', $this->_entityName); $where = $this->where; - $this->addWhere('_status', 'IN', ['new', 'valid']); $this->getImportRows($result); $parser = $this->getParser($userJobID); foreach ($result as $row) { + if (!in_array($row['_status'], ['new', 'valid'], TRUE) && !$parser->validateRow($row)) { + continue; + } $parser->import(array_values($row)); } $parser->doPostImportActions(); diff --git a/civicrm/ext/civiimport/Civi/Api4/Import/ImportProcessTrait.php b/civicrm/ext/civiimport/Civi/Api4/Import/ImportProcessTrait.php index c60a4d5b4e2125f54f028facc919d09a7f22fd5b..71f91e7ffd167eeb5133a5650523eba2e2350527 100644 --- a/civicrm/ext/civiimport/Civi/Api4/Import/ImportProcessTrait.php +++ b/civicrm/ext/civiimport/Civi/Api4/Import/ImportProcessTrait.php @@ -66,6 +66,7 @@ trait ImportProcessTrait { ->indexBy('name')); $importFields[] = '_id'; $importFields[] = '_entity_id'; + $importFields[] = '_status'; $this->setSelect($importFields); parent::_run($result); foreach ($result as &$row) { diff --git a/civicrm/ext/civiimport/Civi/Api4/Import/ImportSpecProvider.php b/civicrm/ext/civiimport/Civi/Api4/Import/ImportSpecProvider.php index 333f5a7c206660203880227b90e7b31a52de810a..c423e509d706a155d01463d73edb9cbddbadedd5 100644 --- a/civicrm/ext/civiimport/Civi/Api4/Import/ImportSpecProvider.php +++ b/civicrm/ext/civiimport/Civi/Api4/Import/ImportSpecProvider.php @@ -32,8 +32,14 @@ class ImportSpecProvider extends AutoService implements SpecProviderInterface { */ public function modifySpec(RequestSpec $spec): void { $tableName = $spec->getEntityTableName(); - $columns = Import::getFieldsForTable($tableName); - $action = $spec->getAction(); + try { + $columns = Import::getFieldsForTable($tableName); + } + catch (\CRM_Core_Exception $e) { + // The api metadata may retain the expectation that this entity exists after the + // table is deleted - & hence we get an error. + return; + } // CheckPermissions does not reach us here - so we will have to rely on earlier permission filters. $userJobID = substr($spec->getEntity(), (strpos($spec->getEntity(), '_') + 1)); $userJob = UserJob::get(FALSE)->addWhere('id', '=', $userJobID)->addSelect('metadata', 'job_type', 'created_id')->execute()->first(); diff --git a/civicrm/ext/civiimport/Civi/BAO/Import.php b/civicrm/ext/civiimport/Civi/BAO/Import.php index eff6f36c4b370593a5c437d7711dddb5cb71d238..2a7e807da7d515e0c56522df568ecea81590d06d 100644 --- a/civicrm/ext/civiimport/Civi/BAO/Import.php +++ b/civicrm/ext/civiimport/Civi/BAO/Import.php @@ -203,7 +203,12 @@ class Import extends CRM_Core_DAO { $headers = UserJob::get(FALSE) ->addWhere('metadata', 'LIKE', '%' . $tableName . '%') ->addSelect('metadata')->execute()->first()['metadata']['DataSource']['column_headers'] ?? []; - $result = CRM_Core_DAO::executeQuery("SHOW COLUMNS FROM $tableName"); + try { + $result = CRM_Core_DAO::executeQuery("SHOW COLUMNS FROM $tableName"); + } + catch (\PEAR_Exception $e) { + throw new CRM_Core_Exception('Import table no longer exists'); + } $userFieldIndex = 0; while ($result->fetch()) { $columns[$result->Field] = ['name' => $result->Field, 'table_name' => $tableName]; diff --git a/civicrm/ext/civiimport/info.xml b/civicrm/ext/civiimport/info.xml index 877c1b2b0344688095a24d56553557a8c9b57547..738f4d42f24a8f956fd9d70c0e2c258e97ec1912 100644 --- a/civicrm/ext/civiimport/info.xml +++ b/civicrm/ext/civiimport/info.xml @@ -15,10 +15,10 @@ <url desc="Licensing">http://www.gnu.org/licenses/agpl-3.0.html</url> </urls> <releaseDate>2022-08-11</releaseDate> - <version>5.58.1</version> + <version>5.59.0</version> <develStage>alpha</develStage> <compatibility> - <ver>5.58</ver> + <ver>5.59</ver> </compatibility> <comments>Core extension for us to start moving import logic into, has more functionality</comments> <requires> diff --git a/civicrm/ext/ckeditor4/info.xml b/civicrm/ext/ckeditor4/info.xml index 2fe1dd6c96278038924e8d8f428f00a5c8496dc2..2a11e41e64bbebcf14b7291f78f0ae0c442b6523 100644 --- a/civicrm/ext/ckeditor4/info.xml +++ b/civicrm/ext/ckeditor4/info.xml @@ -15,10 +15,10 @@ <url desc="Licensing">https://www.gnu.org/licenses/agpl-3.0.html</url> </urls> <releaseDate>2021-05-23</releaseDate> - <version>5.58.1</version> + <version>5.59.0</version> <develStage>stable</develStage> <compatibility> - <ver>5.58</ver> + <ver>5.59</ver> </compatibility> <comments>This is the version of CKEditor that originally shipped with CiviCRM core</comments> <classloader> diff --git a/civicrm/ext/contributioncancelactions/info.xml b/civicrm/ext/contributioncancelactions/info.xml index f3b7ea1fd15fb614592f426cf26eccbf8693985f..c904bde8c5aece7e70a993e7fe652fefec4aae1a 100644 --- a/civicrm/ext/contributioncancelactions/info.xml +++ b/civicrm/ext/contributioncancelactions/info.xml @@ -15,10 +15,10 @@ <url desc="Licensing">http://www.gnu.org/licenses/agpl-3.0.html</url> </urls> <releaseDate>2020-10-12</releaseDate> - <version>5.58.1</version> + <version>5.59.0</version> <develStage>stable</develStage> <compatibility> - <ver>5.58</ver> + <ver>5.59</ver> </compatibility> <comments>This code has been moved from core to a separate extension in 5.32. Note that if you disable it failed or cancelled contributions will not cause related memberships and participant records to be updated</comments> <classloader> diff --git a/civicrm/ext/elavon/CRM/Core/Payment/Elavon.php b/civicrm/ext/elavon/CRM/Core/Payment/Elavon.php index 32f6039b61da15bb4bf7c8cd5b3e5d03b5c17167..3615ccf621b63bee76bc4e3504c9f0df5f491a2a 100644 --- a/civicrm/ext/elavon/CRM/Core/Payment/Elavon.php +++ b/civicrm/ext/elavon/CRM/Core/Payment/Elavon.php @@ -27,6 +27,13 @@ use Civi\Payment\Exception\PaymentProcessorException; */ class CRM_Core_Payment_Elavon extends CRM_Core_Payment { + /** + * Payment Processor Mode + * either test or live + * @var string + */ + protected $_mode; + /** * Constructor. * diff --git a/civicrm/ext/elavon/info.xml b/civicrm/ext/elavon/info.xml index 4477e1f0430af0683771a0a2260ef132751917ee..a7c4d58b17488be46a95a97e53dc0ae1a502d0b6 100644 --- a/civicrm/ext/elavon/info.xml +++ b/civicrm/ext/elavon/info.xml @@ -15,10 +15,10 @@ <url desc="Licensing">http://www.gnu.org/licenses/agpl-3.0.html</url> </urls> <releaseDate>2022-08-05</releaseDate> - <version>5.58.1</version> + <version>5.59.0</version> <develStage>stable</develStage> <compatibility> - <ver>5.58</ver> + <ver>5.59</ver> </compatibility> <comments/> <classloader> diff --git a/civicrm/ext/elavon/tests/phpunit/CRM/Core/Payment/ElavonTest.php b/civicrm/ext/elavon/tests/phpunit/CRM/Core/Payment/ElavonTest.php index c6a785d390c4b550b38d01108e3d92df62455fa4..76ca53526e9bcf0543d72f8fc5440989d5de5880 100644 --- a/civicrm/ext/elavon/tests/phpunit/CRM/Core/Payment/ElavonTest.php +++ b/civicrm/ext/elavon/tests/phpunit/CRM/Core/Payment/ElavonTest.php @@ -25,6 +25,18 @@ class CRM_Core_Payment_ElavonTest extends \PHPUnit\Framework\TestCase implements use \Civi\Test\GuzzleTestTrait; use \Civi\Test\Api3TestTrait; + /** + * Instance of CRM_Core_Payment_Elavon|null + * @var CRM_Core_Payment_Elavon + */ + protected $processor; + + /** + * Created Object Ids + * @var array + */ + public $ids; + /** * Setup used when HeadlessInterface is implemented. * diff --git a/civicrm/ext/eventcart/eventcart.civix.php b/civicrm/ext/eventcart/eventcart.civix.php index 609fdb2e6e7b3108788aa10c1c3259ab81e33d16..91bd958e3b75ccb3c4c34901b681c9fb4f7d7d46 100644 --- a/civicrm/ext/eventcart/eventcart.civix.php +++ b/civicrm/ext/eventcart/eventcart.civix.php @@ -84,27 +84,22 @@ use CRM_Event_Cart_ExtensionUtil as E; * * @link https://docs.civicrm.org/dev/en/latest/hooks/hook_civicrm_config */ -function _eventcart_civix_civicrm_config(&$config = NULL) { +function _eventcart_civix_civicrm_config($config = NULL) { static $configured = FALSE; if ($configured) { return; } $configured = TRUE; - $template = CRM_Core_Smarty::singleton(); - $extRoot = __DIR__ . DIRECTORY_SEPARATOR; $extDir = $extRoot . 'templates'; - - if (is_array($template->template_dir)) { - array_unshift($template->template_dir, $extDir); - } - else { - $template->template_dir = [$extDir, $template->template_dir]; + if (file_exists($extDir)) { + CRM_Core_Smarty::singleton()->addTemplateDir($extDir); } $include_path = $extRoot . PATH_SEPARATOR . get_include_path(); set_include_path($include_path); + // Based on <compatibility>, this does not currently require mixin/polyfill.php. } /** @@ -114,35 +109,7 @@ function _eventcart_civix_civicrm_config(&$config = NULL) { */ function _eventcart_civix_civicrm_install() { _eventcart_civix_civicrm_config(); - if ($upgrader = _eventcart_civix_upgrader()) { - $upgrader->onInstall(); - } -} - -/** - * Implements hook_civicrm_postInstall(). - * - * @link https://docs.civicrm.org/dev/en/latest/hooks/hook_civicrm_postInstall - */ -function _eventcart_civix_civicrm_postInstall() { - _eventcart_civix_civicrm_config(); - if ($upgrader = _eventcart_civix_upgrader()) { - if (is_callable([$upgrader, 'onPostInstall'])) { - $upgrader->onPostInstall(); - } - } -} - -/** - * Implements hook_civicrm_uninstall(). - * - * @link https://docs.civicrm.org/dev/en/latest/hooks/hook_civicrm_uninstall - */ -function _eventcart_civix_civicrm_uninstall(): void { - _eventcart_civix_civicrm_config(); - if ($upgrader = _eventcart_civix_upgrader()) { - $upgrader->onUninstall(); - } + // Based on <compatibility>, this does not currently require mixin/polyfill.php. } /** @@ -152,56 +119,7 @@ function _eventcart_civix_civicrm_uninstall(): void { */ function _eventcart_civix_civicrm_enable(): void { _eventcart_civix_civicrm_config(); - if ($upgrader = _eventcart_civix_upgrader()) { - if (is_callable([$upgrader, 'onEnable'])) { - $upgrader->onEnable(); - } - } -} - -/** - * (Delegated) Implements hook_civicrm_disable(). - * - * @link https://docs.civicrm.org/dev/en/latest/hooks/hook_civicrm_disable - * @return mixed - */ -function _eventcart_civix_civicrm_disable(): void { - _eventcart_civix_civicrm_config(); - if ($upgrader = _eventcart_civix_upgrader()) { - if (is_callable([$upgrader, 'onDisable'])) { - $upgrader->onDisable(); - } - } -} - -/** - * (Delegated) Implements hook_civicrm_upgrade(). - * - * @param $op string, the type of operation being performed; 'check' or 'enqueue' - * @param $queue CRM_Queue_Queue, (for 'enqueue') the modifiable list of pending up upgrade tasks - * - * @return mixed - * based on op. for 'check', returns array(boolean) (TRUE if upgrades are pending) - * for 'enqueue', returns void - * - * @link https://docs.civicrm.org/dev/en/latest/hooks/hook_civicrm_upgrade - */ -function _eventcart_civix_civicrm_upgrade($op, CRM_Queue_Queue $queue = NULL) { - if ($upgrader = _eventcart_civix_upgrader()) { - return $upgrader->onUpgrade($op, $queue); - } -} - -/** - * @return CRM_Event_Cart_Upgrader - */ -function _eventcart_civix_upgrader() { - if (!file_exists(__DIR__ . '/CRM/Event/Cart/Upgrader.php')) { - return NULL; - } - else { - return CRM_Event_Cart_Upgrader_Base::instance(); - } + // Based on <compatibility>, this does not currently require mixin/polyfill.php. } /** diff --git a/civicrm/ext/eventcart/eventcart.php b/civicrm/ext/eventcart/eventcart.php index d160a35861ac025fc27bed03f88d736a8e50f91e..df46e2bc7f6ea6055194d3da3a7b7276e1bf5821 100644 --- a/civicrm/ext/eventcart/eventcart.php +++ b/civicrm/ext/eventcart/eventcart.php @@ -32,24 +32,6 @@ function eventcart_civicrm_install() { _eventcart_civix_civicrm_install(); } -/** - * Implements hook_civicrm_postInstall(). - * - * @link https://docs.civicrm.org/dev/en/latest/hooks/hook_civicrm_postInstall - */ -function eventcart_civicrm_postInstall() { - _eventcart_civix_civicrm_postInstall(); -} - -/** - * Implements hook_civicrm_uninstall(). - * - * @link https://docs.civicrm.org/dev/en/latest/hooks/hook_civicrm_uninstall - */ -function eventcart_civicrm_uninstall() { - _eventcart_civix_civicrm_uninstall(); -} - /** * Implements hook_civicrm_enable(). * @@ -59,24 +41,6 @@ function eventcart_civicrm_enable() { _eventcart_civix_civicrm_enable(); } -/** - * Implements hook_civicrm_disable(). - * - * @link https://docs.civicrm.org/dev/en/latest/hooks/hook_civicrm_disable - */ -function eventcart_civicrm_disable() { - _eventcart_civix_civicrm_disable(); -} - -/** - * Implements hook_civicrm_upgrade(). - * - * @link https://docs.civicrm.org/dev/en/latest/hooks/hook_civicrm_upgrade - */ -function eventcart_civicrm_upgrade($op, CRM_Queue_Queue $queue = NULL) { - return _eventcart_civix_civicrm_upgrade($op, $queue); -} - /** * Implements hook_civicrm_entityTypes(). * diff --git a/civicrm/ext/eventcart/info.xml b/civicrm/ext/eventcart/info.xml index b84e15f03727292d3563c3c7c8eca74b6edf8ac3..3ae214b40c1436bd537280ae07785a2406287770 100644 --- a/civicrm/ext/eventcart/info.xml +++ b/civicrm/ext/eventcart/info.xml @@ -13,13 +13,13 @@ <url desc="Licensing">http://www.gnu.org/licenses/agpl-3.0.html</url> </urls> <releaseDate>2020-08-03</releaseDate> - <version>5.58.1</version> + <version>5.59.0</version> <tags> <tag>mgmt:hidden</tag> </tags> <develStage>stable</develStage> <compatibility> - <ver>5.58</ver> + <ver>5.59</ver> </compatibility> <classloader> <psr0 prefix="CRM_" path="."/> @@ -31,6 +31,6 @@ </mixins> <civix> <namespace>CRM/Event/Cart</namespace> - <format>22.10.0</format> + <format>22.12.1</format> </civix> </extension> diff --git a/civicrm/ext/ewaysingle/CRM/Core/Payment/eWAY.php b/civicrm/ext/ewaysingle/CRM/Core/Payment/eWAY.php index a36c28c5ec007ca64a8801c564ee666e171f7ca8..9a8669181781850d68d6f4de0ba722cc1159b1ff 100644 --- a/civicrm/ext/ewaysingle/CRM/Core/Payment/eWAY.php +++ b/civicrm/ext/ewaysingle/CRM/Core/Payment/eWAY.php @@ -93,6 +93,13 @@ class CRM_Core_Payment_eWAY extends CRM_Core_Payment { */ protected $guzzleClient; + /** + * Payment Processor Mode + * either test or live + * @var string + */ + protected $_mode; + /** * ******************************************************* * Constructor diff --git a/civicrm/ext/ewaysingle/info.xml b/civicrm/ext/ewaysingle/info.xml index e5fac2c140f3d2d6491eb8eeb649d95697d63d59..018d361be84fc876b4a500e7410ce562170de319 100644 --- a/civicrm/ext/ewaysingle/info.xml +++ b/civicrm/ext/ewaysingle/info.xml @@ -15,13 +15,13 @@ <url desc="Licensing">http://www.gnu.org/licenses/agpl-3.0.html</url> </urls> <releaseDate>2020-10-07</releaseDate> - <version>5.58.1</version> + <version>5.59.0</version> <tags> <tag>mgmt:hidden</tag> </tags> <develStage>stable</develStage> <compatibility> - <ver>5.58</ver> + <ver>5.59</ver> </compatibility> <comments>This is an extension to contain the eWAY Single Currency Payment Processor</comments> <classloader> diff --git a/civicrm/ext/ewaysingle/tests/phpunit/CRM/Core/Payment/EwayTest.php b/civicrm/ext/ewaysingle/tests/phpunit/CRM/Core/Payment/EwayTest.php index d0f77adc2d911cc96624f83b0009c10ee89148d5..f22c9bcda26e64d9239f7061b1d09278dfa6b4ff 100644 --- a/civicrm/ext/ewaysingle/tests/phpunit/CRM/Core/Payment/EwayTest.php +++ b/civicrm/ext/ewaysingle/tests/phpunit/CRM/Core/Payment/EwayTest.php @@ -23,6 +23,18 @@ class CRM_Core_Payment_EwayTest extends \PHPUnit\Framework\TestCase implements H use \Civi\Test\GuzzleTestTrait; use \Civi\Test\Api3TestTrait; + /** + * Instance of CRM_Core_Payment_eWay|null + * @var CRM_Core_Payment_eWay + */ + protected $processor; + + /** + * Created Object Ids + * @var array + */ + public $ids; + public function setUpHeadless() { // Civi\Test has many helpers, like install(), uninstall(), sql(), and sqlFile(). // See: https://docs.civicrm.org/dev/en/latest/testing/phpunit/#civitest diff --git a/civicrm/ext/financialacls/info.xml b/civicrm/ext/financialacls/info.xml index 47ce98a29a2407810a9d068ceede11116af83c63..e7cabc600d9a7de58158c4d6b52804a889d61189 100644 --- a/civicrm/ext/financialacls/info.xml +++ b/civicrm/ext/financialacls/info.xml @@ -15,10 +15,10 @@ <url desc="Licensing">http://www.gnu.org/licenses/agpl-3.0.html</url> </urls> <releaseDate>2020-08-27</releaseDate> - <version>5.58.1</version> + <version>5.59.0</version> <develStage>stable</develStage> <compatibility> - <ver>5.58</ver> + <ver>5.59</ver> </compatibility> <tags> <tag>mgmt:hidden</tag> diff --git a/civicrm/ext/flexmailer/flexmailer.civix.php b/civicrm/ext/flexmailer/flexmailer.civix.php index 92186e76323b04a45d7e95815c9bdd0893ec5041..6a215af368203984f1e8e053025aadc56f39e8cb 100644 --- a/civicrm/ext/flexmailer/flexmailer.civix.php +++ b/civicrm/ext/flexmailer/flexmailer.civix.php @@ -84,27 +84,20 @@ use CRM_Flexmailer_ExtensionUtil as E; * * @link https://docs.civicrm.org/dev/en/latest/hooks/hook_civicrm_config */ -function _flexmailer_civix_civicrm_config(&$config = NULL) { +function _flexmailer_civix_civicrm_config($config = NULL) { static $configured = FALSE; if ($configured) { return; } $configured = TRUE; - $template = CRM_Core_Smarty::singleton(); - $extRoot = __DIR__ . DIRECTORY_SEPARATOR; $extDir = $extRoot . 'templates'; - - if (is_array($template->template_dir)) { - array_unshift($template->template_dir, $extDir); - } - else { - $template->template_dir = [$extDir, $template->template_dir]; - } + CRM_Core_Smarty::singleton()->addTemplateDir($extDir); $include_path = $extRoot . PATH_SEPARATOR . get_include_path(); set_include_path($include_path); + // Based on <compatibility>, this does not currently require mixin/polyfill.php. } /** @@ -114,35 +107,7 @@ function _flexmailer_civix_civicrm_config(&$config = NULL) { */ function _flexmailer_civix_civicrm_install() { _flexmailer_civix_civicrm_config(); - if ($upgrader = _flexmailer_civix_upgrader()) { - $upgrader->onInstall(); - } -} - -/** - * Implements hook_civicrm_postInstall(). - * - * @link https://docs.civicrm.org/dev/en/latest/hooks/hook_civicrm_postInstall - */ -function _flexmailer_civix_civicrm_postInstall() { - _flexmailer_civix_civicrm_config(); - if ($upgrader = _flexmailer_civix_upgrader()) { - if (is_callable([$upgrader, 'onPostInstall'])) { - $upgrader->onPostInstall(); - } - } -} - -/** - * Implements hook_civicrm_uninstall(). - * - * @link https://docs.civicrm.org/dev/en/latest/hooks/hook_civicrm_uninstall - */ -function _flexmailer_civix_civicrm_uninstall(): void { - _flexmailer_civix_civicrm_config(); - if ($upgrader = _flexmailer_civix_upgrader()) { - $upgrader->onUninstall(); - } + // Based on <compatibility>, this does not currently require mixin/polyfill.php. } /** @@ -152,56 +117,7 @@ function _flexmailer_civix_civicrm_uninstall(): void { */ function _flexmailer_civix_civicrm_enable(): void { _flexmailer_civix_civicrm_config(); - if ($upgrader = _flexmailer_civix_upgrader()) { - if (is_callable([$upgrader, 'onEnable'])) { - $upgrader->onEnable(); - } - } -} - -/** - * (Delegated) Implements hook_civicrm_disable(). - * - * @link https://docs.civicrm.org/dev/en/latest/hooks/hook_civicrm_disable - * @return mixed - */ -function _flexmailer_civix_civicrm_disable(): void { - _flexmailer_civix_civicrm_config(); - if ($upgrader = _flexmailer_civix_upgrader()) { - if (is_callable([$upgrader, 'onDisable'])) { - $upgrader->onDisable(); - } - } -} - -/** - * (Delegated) Implements hook_civicrm_upgrade(). - * - * @param $op string, the type of operation being performed; 'check' or 'enqueue' - * @param $queue CRM_Queue_Queue, (for 'enqueue') the modifiable list of pending up upgrade tasks - * - * @return mixed - * based on op. for 'check', returns array(boolean) (TRUE if upgrades are pending) - * for 'enqueue', returns void - * - * @link https://docs.civicrm.org/dev/en/latest/hooks/hook_civicrm_upgrade - */ -function _flexmailer_civix_civicrm_upgrade($op, CRM_Queue_Queue $queue = NULL) { - if ($upgrader = _flexmailer_civix_upgrader()) { - return $upgrader->onUpgrade($op, $queue); - } -} - -/** - * @return CRM_Flexmailer_Upgrader - */ -function _flexmailer_civix_upgrader() { - if (!file_exists(__DIR__ . '/CRM/Flexmailer/Upgrader.php')) { - return NULL; - } - else { - return CRM_Flexmailer_Upgrader_Base::instance(); - } + // Based on <compatibility>, this does not currently require mixin/polyfill.php. } /** diff --git a/civicrm/ext/flexmailer/flexmailer.php b/civicrm/ext/flexmailer/flexmailer.php index bf3047f4276d1305a6ef3fc1370816a4321d6610..7397be2abf1b0cb52a00268e0fa4d7cbbf8d7f21 100644 --- a/civicrm/ext/flexmailer/flexmailer.php +++ b/civicrm/ext/flexmailer/flexmailer.php @@ -32,24 +32,6 @@ function flexmailer_civicrm_install() { _flexmailer_civix_civicrm_install(); } -/** - * Implements hook_civicrm_postInstall(). - * - * @link http://wiki.civicrm.org/confluence/display/CRMDOC/hook_civicrm_postInstall - */ -function flexmailer_civicrm_postInstall() { - _flexmailer_civix_civicrm_postInstall(); -} - -/** - * Implements hook_civicrm_uninstall(). - * - * @link http://wiki.civicrm.org/confluence/display/CRMDOC/hook_civicrm_uninstall - */ -function flexmailer_civicrm_uninstall() { - _flexmailer_civix_civicrm_uninstall(); -} - /** * Implements hook_civicrm_enable(). * @@ -59,24 +41,6 @@ function flexmailer_civicrm_enable() { _flexmailer_civix_civicrm_enable(); } -/** - * Implements hook_civicrm_disable(). - * - * @link http://wiki.civicrm.org/confluence/display/CRMDOC/hook_civicrm_disable - */ -function flexmailer_civicrm_disable() { - _flexmailer_civix_civicrm_disable(); -} - -/** - * Implements hook_civicrm_upgrade(). - * - * @link http://wiki.civicrm.org/confluence/display/CRMDOC/hook_civicrm_upgrade - */ -function flexmailer_civicrm_upgrade($op, CRM_Queue_Queue $queue = NULL) { - return _flexmailer_civix_civicrm_upgrade($op, $queue); -} - /** * Implements hook_civicrm_navigationMenu(). * diff --git a/civicrm/ext/flexmailer/info.xml b/civicrm/ext/flexmailer/info.xml index 7a71dddabf4a07a98a15c8b11a34452c236597ec..a14303b45eb341a873c84e2be705e05c91773fff 100644 --- a/civicrm/ext/flexmailer/info.xml +++ b/civicrm/ext/flexmailer/info.xml @@ -15,7 +15,7 @@ <url desc="Licensing">http://www.gnu.org/licenses/agpl-3.0.html</url> </urls> <releaseDate>2020-08-05</releaseDate> - <version>5.58.1</version> + <version>5.59.0</version> <develStage>stable</develStage> <comments> FlexMailer is an email delivery engine which replaces the internal guts @@ -23,7 +23,7 @@ to provide richer email features. </comments> <compatibility> - <ver>5.58</ver> + <ver>5.59</ver> </compatibility> <tags> <tag>mgmt:required</tag> @@ -37,6 +37,6 @@ </mixins> <civix> <namespace>CRM/Flexmailer</namespace> - <format>22.10.0</format> + <format>22.12.1</format> </civix> </extension> diff --git a/civicrm/ext/greenwich/greenwich.civix.php b/civicrm/ext/greenwich/greenwich.civix.php index 782bb0f998e53f889c14adf68ac833c52d33d392..3e018c743bd32fc9ce60d0ed00d1218b51bf8830 100644 --- a/civicrm/ext/greenwich/greenwich.civix.php +++ b/civicrm/ext/greenwich/greenwich.civix.php @@ -84,27 +84,20 @@ use CRM_Greenwich_ExtensionUtil as E; * * @link https://docs.civicrm.org/dev/en/latest/hooks/hook_civicrm_config */ -function _greenwich_civix_civicrm_config(&$config = NULL) { +function _greenwich_civix_civicrm_config($config = NULL) { static $configured = FALSE; if ($configured) { return; } $configured = TRUE; - $template = CRM_Core_Smarty::singleton(); - $extRoot = __DIR__ . DIRECTORY_SEPARATOR; $extDir = $extRoot . 'templates'; - - if (is_array($template->template_dir)) { - array_unshift($template->template_dir, $extDir); - } - else { - $template->template_dir = [$extDir, $template->template_dir]; - } + CRM_Core_Smarty::singleton()->addTemplateDir($extDir); $include_path = $extRoot . PATH_SEPARATOR . get_include_path(); set_include_path($include_path); + // Based on <compatibility>, this does not currently require mixin/polyfill.php. } /** @@ -114,35 +107,7 @@ function _greenwich_civix_civicrm_config(&$config = NULL) { */ function _greenwich_civix_civicrm_install() { _greenwich_civix_civicrm_config(); - if ($upgrader = _greenwich_civix_upgrader()) { - $upgrader->onInstall(); - } -} - -/** - * Implements hook_civicrm_postInstall(). - * - * @link https://docs.civicrm.org/dev/en/latest/hooks/hook_civicrm_postInstall - */ -function _greenwich_civix_civicrm_postInstall() { - _greenwich_civix_civicrm_config(); - if ($upgrader = _greenwich_civix_upgrader()) { - if (is_callable([$upgrader, 'onPostInstall'])) { - $upgrader->onPostInstall(); - } - } -} - -/** - * Implements hook_civicrm_uninstall(). - * - * @link https://docs.civicrm.org/dev/en/latest/hooks/hook_civicrm_uninstall - */ -function _greenwich_civix_civicrm_uninstall(): void { - _greenwich_civix_civicrm_config(); - if ($upgrader = _greenwich_civix_upgrader()) { - $upgrader->onUninstall(); - } + // Based on <compatibility>, this does not currently require mixin/polyfill.php. } /** @@ -152,56 +117,7 @@ function _greenwich_civix_civicrm_uninstall(): void { */ function _greenwich_civix_civicrm_enable(): void { _greenwich_civix_civicrm_config(); - if ($upgrader = _greenwich_civix_upgrader()) { - if (is_callable([$upgrader, 'onEnable'])) { - $upgrader->onEnable(); - } - } -} - -/** - * (Delegated) Implements hook_civicrm_disable(). - * - * @link https://docs.civicrm.org/dev/en/latest/hooks/hook_civicrm_disable - * @return mixed - */ -function _greenwich_civix_civicrm_disable(): void { - _greenwich_civix_civicrm_config(); - if ($upgrader = _greenwich_civix_upgrader()) { - if (is_callable([$upgrader, 'onDisable'])) { - $upgrader->onDisable(); - } - } -} - -/** - * (Delegated) Implements hook_civicrm_upgrade(). - * - * @param $op string, the type of operation being performed; 'check' or 'enqueue' - * @param $queue CRM_Queue_Queue, (for 'enqueue') the modifiable list of pending up upgrade tasks - * - * @return mixed - * based on op. for 'check', returns array(boolean) (TRUE if upgrades are pending) - * for 'enqueue', returns void - * - * @link https://docs.civicrm.org/dev/en/latest/hooks/hook_civicrm_upgrade - */ -function _greenwich_civix_civicrm_upgrade($op, CRM_Queue_Queue $queue = NULL) { - if ($upgrader = _greenwich_civix_upgrader()) { - return $upgrader->onUpgrade($op, $queue); - } -} - -/** - * @return CRM_Greenwich_Upgrader - */ -function _greenwich_civix_upgrader() { - if (!file_exists(__DIR__ . '/CRM/Greenwich/Upgrader.php')) { - return NULL; - } - else { - return CRM_Greenwich_Upgrader_Base::instance(); - } + // Based on <compatibility>, this does not currently require mixin/polyfill.php. } /** diff --git a/civicrm/ext/greenwich/info.xml b/civicrm/ext/greenwich/info.xml index c98060aa5b39baf718d9de0db63928fbe67831fd..797c445b05fb1677c594b013cb70b3f9f8c9fab6 100644 --- a/civicrm/ext/greenwich/info.xml +++ b/civicrm/ext/greenwich/info.xml @@ -15,13 +15,13 @@ <url desc="Licensing">http://www.gnu.org/licenses/agpl-3.0.html</url> </urls> <releaseDate>2020-07-21</releaseDate> - <version>5.58.1</version> + <version>5.59.0</version> <tags> <tag>mgmt:hidden</tag> </tags> <develStage>stable</develStage> <compatibility> - <ver>5.58</ver> + <ver>5.59</ver> </compatibility> <classloader> <psr0 prefix="CRM_" path="."/> @@ -29,6 +29,6 @@ </classloader> <civix> <namespace>CRM/Greenwich</namespace> - <format>22.10.0</format> + <format>22.12.1</format> </civix> </extension> diff --git a/civicrm/ext/legacycustomsearches/CRM/Contact/Form/Search/Custom/Base.php b/civicrm/ext/legacycustomsearches/CRM/Contact/Form/Search/Custom/Base.php index 6c275cdc07305fc6dc0e55934ce69213f19e1062..2ff571d5a26521a4c04c2d9c43b8520663c91a22 100644 --- a/civicrm/ext/legacycustomsearches/CRM/Contact/Form/Search/Custom/Base.php +++ b/civicrm/ext/legacycustomsearches/CRM/Contact/Form/Search/Custom/Base.php @@ -69,10 +69,14 @@ class CRM_Contact_Form_Search_Custom_Base { * @param int $rowcount * @param null $sort * @param bool $returnSQL + * Deprecated parameter * * @return string */ public function contactIDs($offset = 0, $rowcount = 0, $sort = NULL, $returnSQL = FALSE) { + if ($returnSQL) { + CRM_Core_Error::deprecatedWarning('do not pass returnSQL'); + } $sql = $this->sql( 'contact_a.id as contact_id', $offset, @@ -80,12 +84,7 @@ class CRM_Contact_Form_Search_Custom_Base { $sort ); $this->validateUserSQL($sql); - - if ($returnSQL) { - return $sql; - } - - return CRM_Core_DAO::composeQuery($sql); + return $sql; } /** diff --git a/civicrm/ext/legacycustomsearches/CRM/Contact/Form/Search/Custom/FullText.php b/civicrm/ext/legacycustomsearches/CRM/Contact/Form/Search/Custom/FullText.php index f3a9fd78daa59be48a813db415396c7aa6d20c5f..ae6eeec70cf2be1f72e3fcc8414144f7685ab871 100644 --- a/civicrm/ext/legacycustomsearches/CRM/Contact/Form/Search/Custom/FullText.php +++ b/civicrm/ext/legacycustomsearches/CRM/Contact/Form/Search/Custom/FullText.php @@ -29,9 +29,16 @@ class CRM_Contact_Form_Search_Custom_FullText extends CRM_Contact_Form_Search_Cu protected $_text = NULL; - protected $_table = NULL; + protected $_table; - protected $_tableName = NULL; + protected $tableName; + + /** + * @return mixed + */ + public function getTableName() { + return $this->tableName; + } protected $_entityIDTableName = NULL; @@ -53,7 +60,7 @@ class CRM_Contact_Form_Search_Custom_FullText extends CRM_Contact_Form_Search_Cu * * @var array|null */ - protected $_limitRowClause = NULL; + protected $_limitRowClause; /** * Limit detail clause. @@ -119,13 +126,15 @@ class CRM_Contact_Form_Search_Custom_FullText extends CRM_Contact_Form_Search_Cu /** * Get a value from $formValues. If missing, get it from the request. * - * @param $formValues - * @param $field + * @param array $formValues + * @param string $field * @param $type * @param null $default + * * @return mixed|null + * @throws \CRM_Core_Exception */ - public function getFieldValue($formValues, $field, $type, $default = NULL) { + public function getFieldValue(array $formValues, string $field, $type, $default = NULL) { $value = $formValues[$field] ?? NULL; if (!$value) { return CRM_Utils_Request::retrieve($field, $type, CRM_Core_DAO::$_nullObject, FALSE, $default); @@ -148,9 +157,9 @@ class CRM_Contact_Form_Search_Custom_FullText extends CRM_Contact_Form_Search_Cu } } - public function buildTempTable() { + public function buildTempTable(): void { $table = CRM_Utils_SQL_TempTable::build()->setCategory('custom')->setMemory(); - $this->_tableName = $table->getName(); + $this->tableName = $table->getName(); $this->_tableFields = [ 'id' => 'int unsigned NOT NULL AUTO_INCREMENT', @@ -209,33 +218,29 @@ class CRM_Contact_Form_Search_Custom_FullText extends CRM_Contact_Form_Search_Cu $sql .= "$name $desc,\n"; } - $sql .= " + $sql .= ' PRIMARY KEY ( id ) -"; +'; $table->createWithColumns($sql); $entityIdTable = CRM_Utils_SQL_TempTable::build()->setCategory('custom')->setMemory(); $this->_entityIDTableName = $entityIdTable->getName(); - $sql = " + $sql = ' id int unsigned NOT NULL AUTO_INCREMENT, entity_id int unsigned NOT NULL, UNIQUE INDEX unique_entity_id ( entity_id ), PRIMARY KEY ( id ) -"; +'; $entityIdTable->createWithColumns($sql); - - if (!empty($this->_formValues['is_unit_test'])) { - $this->_tableNameForTest = $this->_tableName; - } } - public function fillTable() { + public function fillTable(): void { /** @var CRM_Contact_Form_Search_Custom_FullText_AbstractPartialQuery $partialQuery */ foreach ($this->_partialQueries as $partialQuery) { if (!$this->_table || $this->_table == $partialQuery->getName()) { if ($partialQuery->isActive()) { - $result = $partialQuery->fillTempTable($this->_text, $this->_entityIDTableName, $this->_tableName, $this->_limitClause, $this->_limitDetailClause); + $result = $partialQuery->fillTempTable($this->_text, $this->_entityIDTableName, $this->tableName, $this->_limitClause, $this->_limitDetailClause); $this->_foundRows[$partialQuery->getName()] = $result['count']; } } @@ -244,9 +249,9 @@ class CRM_Contact_Form_Search_Custom_FullText extends CRM_Contact_Form_Search_Cu $this->filterACLContacts(); } - public function filterACLContacts() { + public function filterACLContacts(): void { if (CRM_Core_Permission::check('view all contacts')) { - CRM_Core_DAO::executeQuery("DELETE FROM {$this->_tableName} WHERE contact_id IN (SELECT id FROM civicrm_contact WHERE is_deleted = 1)"); + CRM_Core_DAO::executeQuery("DELETE FROM {$this->tableName} WHERE contact_id IN (SELECT id FROM civicrm_contact WHERE is_deleted = 1)"); return; } @@ -262,7 +267,7 @@ class CRM_Contact_Form_Search_Custom_FullText extends CRM_Contact_Form_Search_Cu $sql = " DELETE t.* -FROM {$this->_tableName} t +FROM {$this->tableName} t WHERE NOT EXISTS ( SELECT c.contact_id FROM civicrm_acl_contact_cache c WHERE c.user_id = %1 AND t.contact_id = c.contact_id ) @@ -271,7 +276,7 @@ WHERE NOT EXISTS ( SELECT c.contact_id $sql = " DELETE t.* -FROM {$this->_tableName} t +FROM {$this->tableName} t WHERE t.table_name = 'Activity' AND NOT EXISTS ( SELECT c.contact_id FROM civicrm_acl_contact_cache c @@ -281,7 +286,7 @@ WHERE t.table_name = 'Activity' AND $sql = " DELETE t.* -FROM {$this->_tableName} t +FROM {$this->tableName} t WHERE t.table_name = 'Activity' AND NOT EXISTS ( SELECT c.contact_id FROM civicrm_acl_contact_cache c @@ -366,7 +371,7 @@ WHERE t.table_name = 'Activity' AND } // now iterate through the table and add entries to the relevant section - $sql = "SELECT * FROM {$this->_tableName}"; + $sql = "SELECT * FROM {$this->tableName}"; if ($this->_table) { $sql .= " {$this->toLimit($this->_limitRowClause)} "; } @@ -377,7 +382,7 @@ WHERE t.table_name = 'Activity' AND while ($dao->fetch()) { $row = []; foreach ($this->_tableFields as $name => $dontCare) { - if ($name != 'activity_type_id') { + if ($name !== 'activity_type_id') { $row[$name] = $dao->$name; } else { @@ -430,7 +435,7 @@ WHERE t.table_name = 'Activity' AND return $this->_foundRows[$this->_table]; } else { - return CRM_Core_DAO::singleValueQuery("SELECT count(id) FROM {$this->_tableName}"); + return CRM_Core_DAO::singleValueQuery("SELECT count(id) FROM {$this->tableName}"); } } @@ -444,13 +449,7 @@ WHERE t.table_name = 'Activity' AND */ public function contactIDs($offset = 0, $rowcount = 0, $sort = NULL, $returnSQL = FALSE) { $this->initialize(); - - if ($returnSQL) { - return $this->all($offset, $rowcount, $sort, FALSE, TRUE); - } - else { - return CRM_Core_DAO::singleValueQuery("SELECT contact_id FROM {$this->_tableName}"); - } + return $this->all($offset, $rowcount, $sort, FALSE, TRUE); } /** @@ -477,7 +476,7 @@ WHERE t.table_name = 'Activity' AND $sql = " SELECT $select -FROM {$this->_tableName} contact_a +FROM {$this->tableName} contact_a {$this->toLimit($this->_limitRowClause)} "; return $sql; @@ -509,7 +508,7 @@ FROM {$this->_tableName} contact_a /** * @return array */ - public function setDefaultValues() { + public function setDefaultValues(): array { return []; } @@ -525,16 +524,16 @@ FROM {$this->_tableName} contact_a * SQL * @see CRM_Contact_Form_Search_Custom_FullText_AbstractPartialQuery::toLimit */ - public function toLimit($limit) { + public function toLimit($limit): string { if (is_array($limit)) { - list ($limit, $offset) = $limit; + [$limit, $offset] = $limit; } if (empty($limit)) { return ''; } $result = "LIMIT {$limit}"; if ($offset) { - $result .= " OFFSET {$offset}"; + $result .= " OFFSET $offset"; } return $result; } diff --git a/civicrm/ext/legacycustomsearches/CRM/Contact/Form/Search/Custom/Group.php b/civicrm/ext/legacycustomsearches/CRM/Contact/Form/Search/Custom/Group.php index 7eabd91dadcd8757d7e2aaa5e2870ff1fd8f0987..f63bdb2f5a4302f2bdcaa1ebf47af65cc54d3f2b 100644 --- a/civicrm/ext/legacycustomsearches/CRM/Contact/Form/Search/Custom/Group.php +++ b/civicrm/ext/legacycustomsearches/CRM/Contact/Form/Search/Custom/Group.php @@ -67,6 +67,60 @@ class CRM_Contact_Form_Search_Custom_Group extends CRM_Contact_Form_Search_Custo protected $_aclFrom = NULL; protected $_aclWhere = NULL; + /** + * Include Groups + * @var array + */ + protected $_includeGroups; + + /** + * Exclude Groups + * @var array + */ + protected $_excludeGroups; + + /** + * Include Tags + * @var array + */ + protected $_includeTags; + + /** + * Exclude Tags + * @var array + */ + protected $_excludeTags; + + /** + * All Search + * @var bool + */ + protected $_allSearch; + + /** + * Does this search use groups + * @var bool + */ + protected $_groups; + + /** + * Does this search use tags + * @var bool + */ + protected $_tags; + + /** + * Is this search And or OR search + * @var string + */ + protected $_andOr; + + /** + * Search Columns + * @var array + */ + protected $_columns; + /** * Class constructor. * diff --git a/civicrm/ext/legacycustomsearches/info.xml b/civicrm/ext/legacycustomsearches/info.xml index 59ee823f8c4860ba6a76f2a7465eb2e94c5c50d1..0c470b23eff441cdfecd5f2798e666c92da09918 100644 --- a/civicrm/ext/legacycustomsearches/info.xml +++ b/civicrm/ext/legacycustomsearches/info.xml @@ -15,13 +15,13 @@ <url desc="Licensing">http://www.gnu.org/licenses/agpl-3.0.html</url> </urls> <releaseDate>2021-07-25</releaseDate> - <version>5.58.1</version> + <version>5.59.0</version> <develStage>stable</develStage> <tags> <tag>mgmt:hidden</tag> </tags> <compatibility> - <ver>5.58</ver> + <ver>5.59</ver> </compatibility> <comments>This is hidden on install to give extensions that require it time to add it to their requires and to allow us to get it out of GroupContact load</comments> <classloader> diff --git a/civicrm/ext/legacycustomsearches/tests/phpunit/Civi/Searches/FullTextTest.php b/civicrm/ext/legacycustomsearches/tests/phpunit/Civi/Searches/FullTextTest.php new file mode 100644 index 0000000000000000000000000000000000000000..47dce216fec23a49d0db0aa3f20d70e6de4220dc --- /dev/null +++ b/civicrm/ext/legacycustomsearches/tests/phpunit/Civi/Searches/FullTextTest.php @@ -0,0 +1,86 @@ +<?php + +namespace Civi\Searches; + +use Civi\Test; +use Civi\Test\HeadlessInterface; +use Civi\Test\HookInterface; +use Civi\Test\TransactionalInterface; +use CRM_Contact_Form_Search_Custom_FullText; +use CRM_Core_Config; +use CRM_Core_DAO; +use PHPUnit\Framework\TestCase; + +/** + * FIXME - Add test description. + * + * Tips: + * - With HookInterface, you may implement CiviCRM hooks directly in the test + * class. Simply create corresponding functions (e.g. "hook_civicrm_post(...)" + * or similar). + * - With TransactionalInterface, any data changes made by setUp() or + * test****() functions will rollback automatically -- as long as you don't + * manipulate schema or truncate tables. If this test needs to manipulate + * schema or truncate tables, then either: a. Do all that using setupHeadless() + * and Civi\Test. b. Disable TransactionalInterface, and handle all + * setup/teardown yourself. + * + * @group headless + */ +class FullTextTest extends TestCase implements HeadlessInterface, HookInterface, TransactionalInterface { + + /** + * Entity ids created as part of test + * @var array + */ + protected $ids; + + use Test\ContactTestTrait; + use Test\Api3TestTrait; + + /** + * Civi\Test has many helpers, like install(), uninstall(), sql(), and + * sqlFile(). See: + * https://github.com/civicrm/org.civicrm.testapalooza/blob/master/civi-test.md + */ + public function setUpHeadless(): Test\CiviEnvBuilder { + return Test::headless() + ->install(['legacycustomsearches']) + ->apply(); + } + + /** + * Test ACL contacts are filtered properly. + */ + public function testFilterACLContacts(): void { + $userId = $this->createLoggedInUser(); + // remove all permissions + CRM_Core_Config::singleton()->userPermissionClass->permissions = []; + + for ($i = 1; $i <= 10; $i++) { + $contactId = $this->individualCreate([], $i); + if ($i <= 5) { + $queryParams = [ + 1 => [$userId, 'Integer'], + 2 => [$contactId, 'Integer'], + ]; + CRM_Core_DAO::executeQuery("INSERT INTO civicrm_acl_contact_cache ( user_id, contact_id, operation ) VALUES(%1, %2, 'View')", $queryParams); + } + $contactIDs[$i] = $contactId; + } + + $formValues = ['component_mode' => 1, 'operator' => 1, 'is_unit_test' => 1]; + $fullText = new CRM_Contact_Form_Search_Custom_FullText($formValues); + $fullText->initialize(); + + //Assert that ACL contacts are filtered. + $queryParams = [1 => [$userId, 'Integer']]; + $whereClause = 'WHERE NOT EXISTS (SELECT c.contact_id + FROM civicrm_acl_contact_cache c + WHERE c.user_id = %1 AND t.contact_id = c.contact_id )'; + + $count = CRM_Core_DAO::singleValueQuery('SELECT COUNT(*) FROM ' . $fullText->getTableName() . " t $whereClause", $queryParams); + $this->assertEmpty($count, 'ACL contacts are not removed.'); + } + +} diff --git a/civicrm/ext/message_admin/info.xml b/civicrm/ext/message_admin/info.xml index a8e835b4a0ea2a969a502c0a986ce910d7b722e9..69526d69e1cdcacb625eb2b6b3f4ef64ef2ba3f5 100644 --- a/civicrm/ext/message_admin/info.xml +++ b/civicrm/ext/message_admin/info.xml @@ -15,10 +15,10 @@ <url desc="Licensing">http://www.gnu.org/licenses/agpl-3.0.html</url> </urls> <releaseDate>2021-06-12</releaseDate> - <version>5.58.1</version> + <version>5.59.0</version> <develStage>alpha</develStage> <compatibility> - <ver>5.58</ver> + <ver>5.59</ver> </compatibility> <requires> <ext>org.civicrm.afform</ext> @@ -34,6 +34,6 @@ </mixins> <civix> <namespace>CRM/MessageAdmin</namespace> - <format>22.10.0</format> + <format>22.12.1</format> </civix> </extension> diff --git a/civicrm/ext/message_admin/message_admin.civix.php b/civicrm/ext/message_admin/message_admin.civix.php index 14af7812f49b6b40562f52923452bfc927a2aac2..b386a62dc72dc94c064415741459afc7d43bc7fe 100644 --- a/civicrm/ext/message_admin/message_admin.civix.php +++ b/civicrm/ext/message_admin/message_admin.civix.php @@ -84,27 +84,20 @@ use CRM_MessageAdmin_ExtensionUtil as E; * * @link https://docs.civicrm.org/dev/en/latest/hooks/hook_civicrm_config */ -function _message_admin_civix_civicrm_config(&$config = NULL) { +function _message_admin_civix_civicrm_config($config = NULL) { static $configured = FALSE; if ($configured) { return; } $configured = TRUE; - $template = CRM_Core_Smarty::singleton(); - $extRoot = __DIR__ . DIRECTORY_SEPARATOR; $extDir = $extRoot . 'templates'; - - if (is_array($template->template_dir)) { - array_unshift($template->template_dir, $extDir); - } - else { - $template->template_dir = [$extDir, $template->template_dir]; - } + CRM_Core_Smarty::singleton()->addTemplateDir($extDir); $include_path = $extRoot . PATH_SEPARATOR . get_include_path(); set_include_path($include_path); + // Based on <compatibility>, this does not currently require mixin/polyfill.php. } /** @@ -114,35 +107,7 @@ function _message_admin_civix_civicrm_config(&$config = NULL) { */ function _message_admin_civix_civicrm_install() { _message_admin_civix_civicrm_config(); - if ($upgrader = _message_admin_civix_upgrader()) { - $upgrader->onInstall(); - } -} - -/** - * Implements hook_civicrm_postInstall(). - * - * @link https://docs.civicrm.org/dev/en/latest/hooks/hook_civicrm_postInstall - */ -function _message_admin_civix_civicrm_postInstall() { - _message_admin_civix_civicrm_config(); - if ($upgrader = _message_admin_civix_upgrader()) { - if (is_callable([$upgrader, 'onPostInstall'])) { - $upgrader->onPostInstall(); - } - } -} - -/** - * Implements hook_civicrm_uninstall(). - * - * @link https://docs.civicrm.org/dev/en/latest/hooks/hook_civicrm_uninstall - */ -function _message_admin_civix_civicrm_uninstall(): void { - _message_admin_civix_civicrm_config(); - if ($upgrader = _message_admin_civix_upgrader()) { - $upgrader->onUninstall(); - } + // Based on <compatibility>, this does not currently require mixin/polyfill.php. } /** @@ -152,56 +117,7 @@ function _message_admin_civix_civicrm_uninstall(): void { */ function _message_admin_civix_civicrm_enable(): void { _message_admin_civix_civicrm_config(); - if ($upgrader = _message_admin_civix_upgrader()) { - if (is_callable([$upgrader, 'onEnable'])) { - $upgrader->onEnable(); - } - } -} - -/** - * (Delegated) Implements hook_civicrm_disable(). - * - * @link https://docs.civicrm.org/dev/en/latest/hooks/hook_civicrm_disable - * @return mixed - */ -function _message_admin_civix_civicrm_disable(): void { - _message_admin_civix_civicrm_config(); - if ($upgrader = _message_admin_civix_upgrader()) { - if (is_callable([$upgrader, 'onDisable'])) { - $upgrader->onDisable(); - } - } -} - -/** - * (Delegated) Implements hook_civicrm_upgrade(). - * - * @param $op string, the type of operation being performed; 'check' or 'enqueue' - * @param $queue CRM_Queue_Queue, (for 'enqueue') the modifiable list of pending up upgrade tasks - * - * @return mixed - * based on op. for 'check', returns array(boolean) (TRUE if upgrades are pending) - * for 'enqueue', returns void - * - * @link https://docs.civicrm.org/dev/en/latest/hooks/hook_civicrm_upgrade - */ -function _message_admin_civix_civicrm_upgrade($op, CRM_Queue_Queue $queue = NULL) { - if ($upgrader = _message_admin_civix_upgrader()) { - return $upgrader->onUpgrade($op, $queue); - } -} - -/** - * @return CRM_MessageAdmin_Upgrader - */ -function _message_admin_civix_upgrader() { - if (!file_exists(__DIR__ . '/CRM/MessageAdmin/Upgrader.php')) { - return NULL; - } - else { - return CRM_MessageAdmin_Upgrader_Base::instance(); - } + // Based on <compatibility>, this does not currently require mixin/polyfill.php. } /** diff --git a/civicrm/ext/message_admin/message_admin.php b/civicrm/ext/message_admin/message_admin.php index 4f9bd7b47540b468a347422193be38e174761629..872e322729f4fbee94b61262979ef47e1e8b5fe0 100644 --- a/civicrm/ext/message_admin/message_admin.php +++ b/civicrm/ext/message_admin/message_admin.php @@ -23,24 +23,6 @@ function message_admin_civicrm_install() { _message_admin_civix_civicrm_install(); } -/** - * Implements hook_civicrm_postInstall(). - * - * @link https://docs.civicrm.org/dev/en/latest/hooks/hook_civicrm_postInstall - */ -function message_admin_civicrm_postInstall() { - _message_admin_civix_civicrm_postInstall(); -} - -/** - * Implements hook_civicrm_uninstall(). - * - * @link https://docs.civicrm.org/dev/en/latest/hooks/hook_civicrm_uninstall - */ -function message_admin_civicrm_uninstall() { - _message_admin_civix_civicrm_uninstall(); -} - /** * Implements hook_civicrm_enable(). * @@ -50,24 +32,6 @@ function message_admin_civicrm_enable() { _message_admin_civix_civicrm_enable(); } -/** - * Implements hook_civicrm_disable(). - * - * @link https://docs.civicrm.org/dev/en/latest/hooks/hook_civicrm_disable - */ -function message_admin_civicrm_disable() { - _message_admin_civix_civicrm_disable(); -} - -/** - * Implements hook_civicrm_upgrade(). - * - * @link https://docs.civicrm.org/dev/en/latest/hooks/hook_civicrm_upgrade - */ -function message_admin_civicrm_upgrade($op, CRM_Queue_Queue $queue = NULL) { - return _message_admin_civix_civicrm_upgrade($op, $queue); -} - /** * Implements hook_civicrm_entityTypes(). * diff --git a/civicrm/ext/oauth-client/CRM/OAuth/DAO/OAuthClient.php b/civicrm/ext/oauth-client/CRM/OAuth/DAO/OAuthClient.php index 8ef1e32107b75efa33b4041a4f068270fc3d3b7c..eb8826a22f25f4fcc8a2d81c20da1f6fb838126b 100644 --- a/civicrm/ext/oauth-client/CRM/OAuth/DAO/OAuthClient.php +++ b/civicrm/ext/oauth-client/CRM/OAuth/DAO/OAuthClient.php @@ -6,7 +6,7 @@ * * Generated from oauth-client/xml/schema/CRM/OAuth/OAuthClient.xml * DO NOT EDIT. Generated by CRM_Core_CodeGen - * (GenCodeChecksum:6d11e5e77e49b52267e60124c13d9fa4) + * (GenCodeChecksum:547088257f723e251fbec42e97c710bb) */ use CRM_OAuth_ExtensionUtil as E; @@ -58,6 +58,15 @@ class CRM_OAuth_DAO_OAuthClient extends CRM_Core_DAO { */ public $guid; + /** + * Tenant ID + * + * @var string|null + * (SQL type: varchar(128)) + * Note that values will be retrieved from the database as a string. + */ + public $tenant; + /** * Client Secret * @@ -175,6 +184,23 @@ class CRM_OAuth_DAO_OAuthClient extends CRM_Core_DAO { 'localizable' => 0, 'add' => '5.32', ], + 'tenant' => [ + 'name' => 'tenant', + 'type' => CRM_Utils_Type::T_STRING, + 'title' => E::ts('Tenant ID'), + 'description' => E::ts('Tenant ID'), + 'maxlength' => 128, + 'size' => CRM_Utils_Type::HUGE, + 'where' => 'civicrm_oauth_client.tenant', + 'permission' => [ + 'manage OAuth client', + ], + 'table_name' => 'civicrm_oauth_client', + 'entity' => 'OAuthClient', + 'bao' => 'CRM_OAuth_DAO_OAuthClient', + 'localizable' => 0, + 'add' => '5.57', + ], 'secret' => [ 'name' => 'secret', 'type' => CRM_Utils_Type::T_TEXT, @@ -218,6 +244,10 @@ class CRM_OAuth_DAO_OAuthClient extends CRM_Core_DAO { 'entity' => 'OAuthClient', 'bao' => 'CRM_OAuth_DAO_OAuthClient', 'localizable' => 0, + 'html' => [ + 'type' => 'CheckBox', + 'label' => E::ts("Enabled"), + ], 'add' => '5.32', ], 'created_date' => [ diff --git a/civicrm/ext/oauth-client/CRM/OAuth/DAO/OAuthContactToken.php b/civicrm/ext/oauth-client/CRM/OAuth/DAO/OAuthContactToken.php index 65305eb68ea4e4ab4e9e209c993537f9b3ddac84..1031036c9e5105340f342c66bf51302ba0edb32d 100644 --- a/civicrm/ext/oauth-client/CRM/OAuth/DAO/OAuthContactToken.php +++ b/civicrm/ext/oauth-client/CRM/OAuth/DAO/OAuthContactToken.php @@ -6,7 +6,7 @@ * * Generated from oauth-client/xml/schema/CRM/OAuth/OAuthContactToken.xml * DO NOT EDIT. Generated by CRM_Core_CodeGen - * (GenCodeChecksum:1246756a94c72807dc6cb4bc2c70bb7e) + * (GenCodeChecksum:e94388515cadc3bb149a0339ef42acdb) */ use CRM_OAuth_ExtensionUtil as E; diff --git a/civicrm/ext/oauth-client/CRM/OAuth/DAO/OAuthSysToken.php b/civicrm/ext/oauth-client/CRM/OAuth/DAO/OAuthSysToken.php index ee08c34adaf947ed70beebecd3aaddc228a6a104..9d3070cbf5e3913815b92b7500ee0a80640c66e4 100644 --- a/civicrm/ext/oauth-client/CRM/OAuth/DAO/OAuthSysToken.php +++ b/civicrm/ext/oauth-client/CRM/OAuth/DAO/OAuthSysToken.php @@ -6,7 +6,7 @@ * * Generated from oauth-client/xml/schema/CRM/OAuth/OAuthSysToken.xml * DO NOT EDIT. Generated by CRM_Core_CodeGen - * (GenCodeChecksum:14387fad3c51ab994575b3cd759e6229) + * (GenCodeChecksum:5e1f78f265ffdd9101b9c5f76ed947f2) */ use CRM_OAuth_ExtensionUtil as E; diff --git a/civicrm/ext/oauth-client/CRM/OAuth/Upgrader.php b/civicrm/ext/oauth-client/CRM/OAuth/Upgrader.php index 9b38f5c40e4c6645235f38e71634748fcaf1a96d..d196fd8ee6753859276abace9a34e442790a0e69 100644 --- a/civicrm/ext/oauth-client/CRM/OAuth/Upgrader.php +++ b/civicrm/ext/oauth-client/CRM/OAuth/Upgrader.php @@ -4,7 +4,7 @@ use CRM_OAuth_ExtensionUtil as E; /** * Collection of upgrade steps. */ -class CRM_OAuth_Upgrader extends CRM_OAuth_Upgrader_Base { +class CRM_OAuth_Upgrader extends CRM_Extension_Upgrader_Base { /** * @see CRM_Utils_Hook::install() @@ -36,4 +36,16 @@ class CRM_OAuth_Upgrader extends CRM_OAuth_Upgrader_Base { return TRUE; } + /** + * Add support for tenancy + * + * @return bool + * @throws Exception + */ + public function upgrade_5581(): bool { + $this->ctx->log->info('Applying oauth-client update 5581. Adding tenant column to the civicrm_oauth_client table.'); + $this->addTask('Add Tenant ID to civicrm_oauth_client', 'addColumn', 'civicrm_oauth_client', 'tenant', 'varchar(128) NULL COMMENT "Tenant ID" AFTER guid'); + return TRUE; + } + } diff --git a/civicrm/ext/oauth-client/CRM/OAuth/Upgrader/Base.php b/civicrm/ext/oauth-client/CRM/OAuth/Upgrader/Base.php deleted file mode 100644 index ae97dcb7334d74722f8d08c1ce4f59fcd3eda000..0000000000000000000000000000000000000000 --- a/civicrm/ext/oauth-client/CRM/OAuth/Upgrader/Base.php +++ /dev/null @@ -1,7 +0,0 @@ -<?php - -/** - * Base class which provides helpers to execute upgrade logic - */ -class CRM_OAuth_Upgrader_Base extends CRM_Extension_Upgrader_Base { -} diff --git a/civicrm/ext/oauth-client/Civi/OAuth/CiviGenericProvider.php b/civicrm/ext/oauth-client/Civi/OAuth/CiviGenericProvider.php index 8bff0ffb38d2e442e7c59f759fae3c4201d0548d..6edd596a0b732142e9424fb190efcb5ef1fd189a 100644 --- a/civicrm/ext/oauth-client/Civi/OAuth/CiviGenericProvider.php +++ b/civicrm/ext/oauth-client/Civi/OAuth/CiviGenericProvider.php @@ -17,9 +17,16 @@ use League\OAuth2\Client\Token\AccessToken; * and proprietary scopes+URLs. To use this, set the the option: * * "urlResourceOwnerDetails": "{{use_id_token}}", + * - Allow support for {{tenant}} token in provider URLs, if the provider has + * the 'tenancy' option set to TRUE (eg: ms-exchange). */ class CiviGenericProvider extends \League\OAuth2\Client\Provider\GenericProvider { + /** + * @var string + */ + protected $tenant; + protected function getAuthorizationParameters(array $options) { $newOptions = parent::getAuthorizationParameters($options); if (!isset($options['approval_prompt'])) { @@ -30,6 +37,46 @@ class CiviGenericProvider extends \League\OAuth2\Client\Provider\GenericProvider return $newOptions; } + /** + * Returns the base URL for authorizing a client. + * + * Eg. https://oauth.service.com/authorize + * + * @return string + */ + public function getBaseAuthorizationUrl() { + $url = parent::getBaseAuthorizationUrl(); + return $this->replaceTenantToken($url); + } + + /** + * Returns the base URL for requesting an access token. + * + * Eg. https://oauth.service.com/token + * + * @param array $params + * @return string + */ + public function getBaseAccessTokenUrl(array $params) { + $url = parent::getBaseAccessTokenUrl($params); + return $this->replaceTenantToken($url); + } + + /** + * Replace {{tenant}} in the endpoint URLs with 'common' for consumer accounts + * or the tenancy ID for dedicated services. + * + * @param string $str URL to replace + * @return string + */ + private function replaceTenantToken($str) { + if (strpos($str, '{{tenant}}') !== FALSE) { + $tenant = !empty($this->tenant) ? $this->tenant : 'common'; + $str = str_replace('{{tenant}}', $tenant, $str); + } + return $str; + } + /** * Requests resource owner details. * diff --git a/civicrm/ext/oauth-client/Civi/OAuth/OAuthLeagueFacade.php b/civicrm/ext/oauth-client/Civi/OAuth/OAuthLeagueFacade.php index 01fd7d406480fbb3c514b98b4930ea5ae760125d..27d0c18fcbe69b642b46a209ce7ca9140b6a140d 100644 --- a/civicrm/ext/oauth-client/Civi/OAuth/OAuthLeagueFacade.php +++ b/civicrm/ext/oauth-client/Civi/OAuth/OAuthLeagueFacade.php @@ -34,6 +34,7 @@ class OAuthLeagueFacade { $localOptions = []; $localOptions['clientId'] = $clientDef['guid']; + $localOptions['tenant'] = !empty($clientDef['tenant']) ? $clientDef['tenant'] : ''; $localOptions['clientSecret'] = $clientDef['secret']; // NOTE: If we ever have frontend users, this may need to change. $localOptions['redirectUri'] = \CRM_OAuth_BAO_OAuthClient::getRedirectUri(); diff --git a/civicrm/ext/oauth-client/ang/oauthClientCreateHelp.aff.html b/civicrm/ext/oauth-client/ang/oauthClientCreateHelp.aff.html index ab9a8b19d248ffcded651ba4c4525ed2bbcc8491..bf774c7b996953fa9011383bb24355d43716c526 100644 --- a/civicrm/ext/oauth-client/ang/oauthClientCreateHelp.aff.html +++ b/civicrm/ext/oauth-client/ang/oauthClientCreateHelp.aff.html @@ -25,8 +25,8 @@ </li> <li> - {{ts('Determine the client credentials ("Client ID" and "Client Secret").')}} + {{ts('Determine the client credentials, including a client ID and secret.')}} </li> </ul> - <p>{{ts('Finally, copy the client credentials below:')}}</p> + <p>{{ts('Finally, enter the client credentials below.')}}</p> </div> diff --git a/civicrm/ext/oauth-client/ang/oauthClientCreator.aff.html b/civicrm/ext/oauth-client/ang/oauthClientCreator.aff.html index 15e7443575a4229df8281dc7d6f8bba13aa2da48..810cfd9ee397466d64c6280c959712907ce0c696 100644 --- a/civicrm/ext/oauth-client/ang/oauthClientCreator.aff.html +++ b/civicrm/ext/oauth-client/ang/oauthClientCreator.aff.html @@ -3,12 +3,17 @@ <div ng-form="create" class="form-horizontal"> <div class="form-group"> <div> - <label for="guid">{{ts('Client ID')}}:</label> - <input class="form-control" ng-model="options.client.guid" type="text" id="guid" /> + <label for="guid">{{ts('Client ID')}}: <span class="crm-marker" title="{{ts('Required')}}">*</span></label> + <input class="form-control" ng-model="options.client.guid" type="text" id="guid" required /> + </div> + <div ng-if="theProviders[options.client.provider].options.tenancy"> + <label for="tenant">{{ts('Tenant ID')}}:</label> + <input class="form-control" ng-model="options.client.tenant" type="text" id="tenant" /> + <div class="help-block">{{ts('Optional. Leave blank for consumer accounts. If you have a dedicated instance of Microsoft 365, and your application is not multi-tenancy, then enter your tenant ID here.')}}</div> </div> <div> - <label for="secret">{{ts('Client Secret')}}:</label> - <input class="form-control" ng-model="options.client.secret" type="text" id="secret" /> + <label for="secret">{{ts('Client Secret')}}: <span class="crm-marker" title="{{ts('Required')}}">*</span></label> + <input class="form-control" ng-model="options.client.secret" type="text" id="secret" required /> </div> </div> </div> diff --git a/civicrm/ext/oauth-client/ang/oauthClientEditor.aff.html b/civicrm/ext/oauth-client/ang/oauthClientEditor.aff.html index 7588460ebc535abf88b8b2ee55a01c7e3f07cfac..359a24cda0e493de5d34a7f8900ab243fc6d7eb6 100644 --- a/civicrm/ext/oauth-client/ang/oauthClientEditor.aff.html +++ b/civicrm/ext/oauth-client/ang/oauthClientEditor.aff.html @@ -11,12 +11,17 @@ <input class="form-control" ng-model="options.client.id" type="text" id="id{{options.client.id}}" disabled/> </div> <div> - <label for="guid{{options.client.id}}">{{ts('Client ID (Public)')}}:</label> - <input class="form-control" ng-model="options.client.guid" type="text" id="guid{{options.client.id}}"/> + <label for="guid{{options.client.id}}">{{ts('Client ID (Public)')}}: <span class="crm-marker" title="{{ts('Required')}}">*</span></label> + <input class="form-control" ng-model="options.client.guid" type="text" id="guid{{options.client.id}}" required/> + </div> + <div ng-if="theProviders[options.client.provider].options.tenancy"> + <label for="tenant{{options.client.id}}">{{ts('Tenant ID')}}:</label> + <input class="form-control" ng-model="options.client.tenant" type="text" id="tenant{{options.client.id}}"/> + <p class="help-block">{{ts('Optional. Leave blank for consumer accounts. If you have a dedicated instance of Microsoft 365, and your application is not multi-tenancy, then enter your tenant ID here.')}}</p> </div> <div> - <label for="secret{{options.client.id}}">{{ts('Client Secret')}}:</label> - <input class="form-control" ng-model="options.client.secret" type="text" id="secret{{options.client.id}}"/> + <label for="secret{{options.client.id}}">{{ts('Client Secret')}}: <span class="crm-marker" title="{{ts('Required')}}">*</span></label> + <input class="form-control" ng-model="options.client.secret" type="text" id="secret{{options.client.id}}" required/> </div> <div ng-if="options.client.created_date"> <label for="created_date{{options.client.id}}">{{ts('Created Date')}}:</label> diff --git a/civicrm/ext/oauth-client/info.xml b/civicrm/ext/oauth-client/info.xml index e5063c1c3bc0f434339ecd42435779a758ef8f79..ebfd165c5b8735248e9fdfcab10ed6624f806ce3 100644 --- a/civicrm/ext/oauth-client/info.xml +++ b/civicrm/ext/oauth-client/info.xml @@ -15,10 +15,10 @@ <url desc="Licensing">http://www.gnu.org/licenses/agpl-3.0.html</url> </urls> <releaseDate>2020-10-23</releaseDate> - <version>5.58.1</version> + <version>5.59.0</version> <develStage>stable</develStage> <compatibility> - <ver>5.58</ver> + <ver>5.59</ver> </compatibility> <requires> <ext version="~4.5">org.civicrm.afform</ext> @@ -36,6 +36,6 @@ </mixins> <civix> <namespace>CRM/OAuth</namespace> - <format>22.10.0</format> + <format>22.12.1</format> </civix> </extension> diff --git a/civicrm/ext/oauth-client/oauth_client.civix.php b/civicrm/ext/oauth-client/oauth_client.civix.php index e83d3f14ba526a5e048731c130b39c0498d02c1e..91cdf5cfa0fd33d4cdc0d31402d157161e767077 100644 --- a/civicrm/ext/oauth-client/oauth_client.civix.php +++ b/civicrm/ext/oauth-client/oauth_client.civix.php @@ -84,27 +84,20 @@ use CRM_OAuth_ExtensionUtil as E; * * @link https://docs.civicrm.org/dev/en/latest/hooks/hook_civicrm_config */ -function _oauth_client_civix_civicrm_config(&$config = NULL) { +function _oauth_client_civix_civicrm_config($config = NULL) { static $configured = FALSE; if ($configured) { return; } $configured = TRUE; - $template = CRM_Core_Smarty::singleton(); - $extRoot = __DIR__ . DIRECTORY_SEPARATOR; $extDir = $extRoot . 'templates'; - - if (is_array($template->template_dir)) { - array_unshift($template->template_dir, $extDir); - } - else { - $template->template_dir = [$extDir, $template->template_dir]; - } + CRM_Core_Smarty::singleton()->addTemplateDir($extDir); $include_path = $extRoot . PATH_SEPARATOR . get_include_path(); set_include_path($include_path); + // Based on <compatibility>, this does not currently require mixin/polyfill.php. } /** @@ -114,35 +107,7 @@ function _oauth_client_civix_civicrm_config(&$config = NULL) { */ function _oauth_client_civix_civicrm_install() { _oauth_client_civix_civicrm_config(); - if ($upgrader = _oauth_client_civix_upgrader()) { - $upgrader->onInstall(); - } -} - -/** - * Implements hook_civicrm_postInstall(). - * - * @link https://docs.civicrm.org/dev/en/latest/hooks/hook_civicrm_postInstall - */ -function _oauth_client_civix_civicrm_postInstall() { - _oauth_client_civix_civicrm_config(); - if ($upgrader = _oauth_client_civix_upgrader()) { - if (is_callable([$upgrader, 'onPostInstall'])) { - $upgrader->onPostInstall(); - } - } -} - -/** - * Implements hook_civicrm_uninstall(). - * - * @link https://docs.civicrm.org/dev/en/latest/hooks/hook_civicrm_uninstall - */ -function _oauth_client_civix_civicrm_uninstall(): void { - _oauth_client_civix_civicrm_config(); - if ($upgrader = _oauth_client_civix_upgrader()) { - $upgrader->onUninstall(); - } + // Based on <compatibility>, this does not currently require mixin/polyfill.php. } /** @@ -152,56 +117,7 @@ function _oauth_client_civix_civicrm_uninstall(): void { */ function _oauth_client_civix_civicrm_enable(): void { _oauth_client_civix_civicrm_config(); - if ($upgrader = _oauth_client_civix_upgrader()) { - if (is_callable([$upgrader, 'onEnable'])) { - $upgrader->onEnable(); - } - } -} - -/** - * (Delegated) Implements hook_civicrm_disable(). - * - * @link https://docs.civicrm.org/dev/en/latest/hooks/hook_civicrm_disable - * @return mixed - */ -function _oauth_client_civix_civicrm_disable(): void { - _oauth_client_civix_civicrm_config(); - if ($upgrader = _oauth_client_civix_upgrader()) { - if (is_callable([$upgrader, 'onDisable'])) { - $upgrader->onDisable(); - } - } -} - -/** - * (Delegated) Implements hook_civicrm_upgrade(). - * - * @param $op string, the type of operation being performed; 'check' or 'enqueue' - * @param $queue CRM_Queue_Queue, (for 'enqueue') the modifiable list of pending up upgrade tasks - * - * @return mixed - * based on op. for 'check', returns array(boolean) (TRUE if upgrades are pending) - * for 'enqueue', returns void - * - * @link https://docs.civicrm.org/dev/en/latest/hooks/hook_civicrm_upgrade - */ -function _oauth_client_civix_civicrm_upgrade($op, CRM_Queue_Queue $queue = NULL) { - if ($upgrader = _oauth_client_civix_upgrader()) { - return $upgrader->onUpgrade($op, $queue); - } -} - -/** - * @return CRM_OAuth_Upgrader - */ -function _oauth_client_civix_upgrader() { - if (!file_exists(__DIR__ . '/CRM/OAuth/Upgrader.php')) { - return NULL; - } - else { - return CRM_OAuth_Upgrader_Base::instance(); - } + // Based on <compatibility>, this does not currently require mixin/polyfill.php. } /** diff --git a/civicrm/ext/oauth-client/providers/ms-exchange.dist.json b/civicrm/ext/oauth-client/providers/ms-exchange.dist.json index b496c5cb01a1efebe8067fe8ea673f5ca4d8356c..9065e2cbe924a0ea60d2543c0e228445d600628a 100644 --- a/civicrm/ext/oauth-client/providers/ms-exchange.dist.json +++ b/civicrm/ext/oauth-client/providers/ms-exchange.dist.json @@ -1,8 +1,8 @@ { "title": "Microsoft Exchange Online", "options": { - "urlAuthorize": "https://login.microsoftonline.com/common/oauth2/v2.0/authorize", - "urlAccessToken": "https://login.microsoftonline.com/common/oauth2/v2.0/token", + "urlAuthorize": "https://login.microsoftonline.com/{{tenant}}/oauth2/v2.0/authorize", + "urlAccessToken": "https://login.microsoftonline.com/{{tenant}}/oauth2/v2.0/token", "urlResourceOwnerDetails": "{{use_id_token}}", "scopeSeparator": " ", "scopes": [ @@ -12,7 +12,8 @@ "openid", "email", "offline_access" - ] + ], + "tenancy": true }, "mailSettingsTemplate": { "name": "{{token.resource_owner.email}}", diff --git a/civicrm/ext/oauth-client/sql/auto_install.sql b/civicrm/ext/oauth-client/sql/auto_install.sql index dbb478e5c0890013ea971a2377bc4db302f50a73..7c27e6ce5532c7b68140fa413253520ff854e3d8 100644 --- a/civicrm/ext/oauth-client/sql/auto_install.sql +++ b/civicrm/ext/oauth-client/sql/auto_install.sql @@ -9,21 +9,9 @@ -- Generated from schema.tpl -- DO NOT EDIT. Generated by CRM_Core_CodeGen -- - --- +--------------------------------------------------------------------+ --- | Copyright CiviCRM LLC. All rights reserved. | --- | | --- | This work is published under the GNU AGPLv3 license with some | --- | permitted exceptions and without any warranty. For full license | --- | and copyright information, see https://civicrm.org/licensing | --- +--------------------------------------------------------------------+ --- --- Generated from drop.tpl --- DO NOT EDIT. Generated by CRM_Core_CodeGen --- -- /******************************************************* -- * --- * Clean up the existing tables +-- * Clean up the existing tables - this section generated from drop.tpl -- * -- *******************************************************/ @@ -46,28 +34,20 @@ SET FOREIGN_KEY_CHECKS=1; -- * -- *******************************************************/ CREATE TABLE `civicrm_oauth_client` ( - - - `id` int unsigned AUTO_INCREMENT COMMENT 'Internal Client ID', - `provider` varchar(128) NOT NULL COMMENT 'Provider', - `guid` varchar(128) NOT NULL COMMENT 'Client ID', - `secret` text COMMENT 'Client Secret', - `options` text COMMENT 'Extra override options for the service (JSON)', - `is_active` tinyint NOT NULL DEFAULT 1 COMMENT 'Is the client currently enabled?', - `created_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'When the client was created.', - `modified_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'When the client was created or modified.' -, - PRIMARY KEY (`id`) - - , INDEX `UI_provider`( - provider - ) - , INDEX `UI_guid`( - guid - ) - - -) ENGINE=InnoDB ; + `id` int unsigned AUTO_INCREMENT COMMENT 'Internal Client ID', + `provider` varchar(128) NOT NULL COMMENT 'Provider', + `guid` varchar(128) NOT NULL COMMENT 'Client ID', + `tenant` varchar(128) COMMENT 'Tenant ID', + `secret` text COMMENT 'Client Secret', + `options` text COMMENT 'Extra override options for the service (JSON)', + `is_active` tinyint NOT NULL DEFAULT 1 COMMENT 'Is the client currently enabled?', + `created_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'When the client was created.', + `modified_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'When the client was created or modified.', + PRIMARY KEY (`id`), + INDEX `UI_provider`(provider), + INDEX `UI_guid`(guid) +) +ENGINE=InnoDB; -- /******************************************************* -- * @@ -75,33 +55,28 @@ CREATE TABLE `civicrm_oauth_client` ( -- * -- *******************************************************/ CREATE TABLE `civicrm_oauth_contact_token` ( - - - `id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Token ID', - `tag` varchar(128) COMMENT 'The tag specifies how this token will be used.', - `client_id` int unsigned COMMENT 'Client ID', - `contact_id` int unsigned COMMENT 'Contact ID', - `grant_type` varchar(31) COMMENT 'Ex: authorization_code', - `scopes` text COMMENT 'List of scopes addressed by this token', - `token_type` varchar(128) COMMENT 'Ex: Bearer or MAC', - `access_token` text COMMENT 'Token to present when accessing resources', - `expires` int unsigned DEFAULT 0 COMMENT 'Expiration time for the access_token (seconds since epoch)', - `refresh_token` text COMMENT 'Token to present when refreshing the access_token', - `resource_owner_name` varchar(128) COMMENT 'Identifier for the resource owner. Structure varies by service.', - `resource_owner` text COMMENT 'Cached details describing the resource owner', - `error` text COMMENT '?? copied from OAuthSysToken', - `raw` text COMMENT 'The token response data, per AccessToken::jsonSerialize', - `created_date` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'When the token was created.', - `modified_date` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'When the token was created or modified.' -, - PRIMARY KEY (`id`) - - , INDEX `UI_tag`( - tag - ) - -, CONSTRAINT FK_civicrm_oauth_contact_token_client_id FOREIGN KEY (`client_id`) REFERENCES `civicrm_oauth_client`(`id`) ON DELETE CASCADE, CONSTRAINT FK_civicrm_oauth_contact_token_contact_id FOREIGN KEY (`contact_id`) REFERENCES `civicrm_contact`(`id`) ON DELETE CASCADE -) ENGINE=InnoDB ; + `id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Token ID', + `tag` varchar(128) COMMENT 'The tag specifies how this token will be used.', + `client_id` int unsigned COMMENT 'Client ID', + `contact_id` int unsigned COMMENT 'Contact ID', + `grant_type` varchar(31) COMMENT 'Ex: authorization_code', + `scopes` text COMMENT 'List of scopes addressed by this token', + `token_type` varchar(128) COMMENT 'Ex: Bearer or MAC', + `access_token` text COMMENT 'Token to present when accessing resources', + `expires` int unsigned DEFAULT 0 COMMENT 'Expiration time for the access_token (seconds since epoch)', + `refresh_token` text COMMENT 'Token to present when refreshing the access_token', + `resource_owner_name` varchar(128) COMMENT 'Identifier for the resource owner. Structure varies by service.', + `resource_owner` text COMMENT 'Cached details describing the resource owner', + `error` text COMMENT '?? copied from OAuthSysToken', + `raw` text COMMENT 'The token response data, per AccessToken::jsonSerialize', + `created_date` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'When the token was created.', + `modified_date` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'When the token was created or modified.', + PRIMARY KEY (`id`), + INDEX `UI_tag`(tag), + CONSTRAINT FK_civicrm_oauth_contact_token_client_id FOREIGN KEY (`client_id`) REFERENCES `civicrm_oauth_client`(`id`) ON DELETE CASCADE, + CONSTRAINT FK_civicrm_oauth_contact_token_contact_id FOREIGN KEY (`contact_id`) REFERENCES `civicrm_contact`(`id`) ON DELETE CASCADE +) +ENGINE=InnoDB; -- /******************************************************* -- * @@ -109,30 +84,23 @@ CREATE TABLE `civicrm_oauth_contact_token` ( -- * -- *******************************************************/ CREATE TABLE `civicrm_oauth_systoken` ( - - - `id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Token ID', - `tag` varchar(128) COMMENT 'The tag specifies how this token will be used.', - `client_id` int unsigned COMMENT 'Client ID', - `grant_type` varchar(31) COMMENT 'Ex: authorization_code', - `scopes` text COMMENT 'List of scopes addressed by this token', - `token_type` varchar(128) COMMENT 'Ex: Bearer or MAC', - `access_token` text COMMENT 'Token to present when accessing resources', - `expires` int unsigned DEFAULT 0 COMMENT 'Expiration time for the access_token (seconds since epoch)', - `refresh_token` text COMMENT 'Token to present when refreshing the access_token', - `resource_owner_name` varchar(128) COMMENT 'Identifier for the resource owner. Structure varies by service.', - `resource_owner` text COMMENT 'Cached details describing the resource owner', - `error` text COMMENT 'List of scopes addressed by this token', - `raw` text COMMENT 'The token response data, per AccessToken::jsonSerialize', - `created_date` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'When the token was created.', - `modified_date` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'When the token was created or modified.' -, - PRIMARY KEY (`id`) - - , INDEX `UI_tag`( - tag - ) - -, CONSTRAINT FK_civicrm_oauth_systoken_client_id FOREIGN KEY (`client_id`) REFERENCES `civicrm_oauth_client`(`id`) ON DELETE CASCADE -) ENGINE=InnoDB ; - + `id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Token ID', + `tag` varchar(128) COMMENT 'The tag specifies how this token will be used.', + `client_id` int unsigned COMMENT 'Client ID', + `grant_type` varchar(31) COMMENT 'Ex: authorization_code', + `scopes` text COMMENT 'List of scopes addressed by this token', + `token_type` varchar(128) COMMENT 'Ex: Bearer or MAC', + `access_token` text COMMENT 'Token to present when accessing resources', + `expires` int unsigned DEFAULT 0 COMMENT 'Expiration time for the access_token (seconds since epoch)', + `refresh_token` text COMMENT 'Token to present when refreshing the access_token', + `resource_owner_name` varchar(128) COMMENT 'Identifier for the resource owner. Structure varies by service.', + `resource_owner` text COMMENT 'Cached details describing the resource owner', + `error` text COMMENT 'List of scopes addressed by this token', + `raw` text COMMENT 'The token response data, per AccessToken::jsonSerialize', + `created_date` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'When the token was created.', + `modified_date` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'When the token was created or modified.', + PRIMARY KEY (`id`), + INDEX `UI_tag`(tag), + CONSTRAINT FK_civicrm_oauth_systoken_client_id FOREIGN KEY (`client_id`) REFERENCES `civicrm_oauth_client`(`id`) ON DELETE CASCADE +) +ENGINE=InnoDB; diff --git a/civicrm/ext/oauth-client/sql/auto_uninstall.sql b/civicrm/ext/oauth-client/sql/auto_uninstall.sql index a3c96fd5662da529b7d67e3d5437ea229c4c95c2..dac2c6f766dbad8a02e1dce49a9aa66c0d1321b7 100644 --- a/civicrm/ext/oauth-client/sql/auto_uninstall.sql +++ b/civicrm/ext/oauth-client/sql/auto_uninstall.sql @@ -8,11 +8,9 @@ -- -- Generated from drop.tpl -- DO NOT EDIT. Generated by CRM_Core_CodeGen --- --- /******************************************************* --- * --- * Clean up the existing tables +---- /******************************************************* -- * +-- * Clean up the existing tables-- * -- *******************************************************/ SET FOREIGN_KEY_CHECKS=0; diff --git a/civicrm/ext/oauth-client/tests/phpunit/Civi/OAuth/CiviGenericProviderTest.php b/civicrm/ext/oauth-client/tests/phpunit/Civi/OAuth/CiviGenericProviderTest.php new file mode 100644 index 0000000000000000000000000000000000000000..c9114b68e5770e4de76d4283ad8a93a360a552c0 --- /dev/null +++ b/civicrm/ext/oauth-client/tests/phpunit/Civi/OAuth/CiviGenericProviderTest.php @@ -0,0 +1,98 @@ +<?php + +namespace Civi\OAuth; + +use Civi\Test\HeadlessInterface; +use Civi\Test\HookInterface; +use Civi\Test\TransactionalInterface; + +/** + * @group headless + */ +class CiviGenericProviderTest extends \PHPUnit\Framework\TestCase implements + HeadlessInterface, + HookInterface, + TransactionalInterface { + + private $clients = []; + private $providers = []; + + public function setUpHeadless() { + return \Civi\Test::headless()->install('oauth-client')->apply(); + } + + public function setUp(): void { + $this->makeDummyProviders(); + $this->makeDummyClients(); + parent::setUp(); + } + + public function tearDown(): void { + parent::tearDown(); + } + + public function hook_civicrm_oauthProviders(&$providers) { + $providers = array_merge($providers, $this->providers); + } + + public function makeDummyProviders() { + $this->providers['no-tenancy'] = [ + 'name' => 'no-tenancy', + 'title' => 'Provider without tenancy', + 'options' => [ + 'urlAuthorize' => 'https://dummy/authorize', + 'urlAccessToken' => 'https://dummy/token', + 'urlResourceOwnerDetails' => '{{use_id_token}}', + 'scopes' => ['foo'], + ], + ]; + $this->providers['with-tenancy'] = [ + 'name' => 'with-tenancy', + 'title' => 'Provider with tenancy', + 'options' => [ + 'urlAuthorize' => 'https://dummy/{{tenant}}/authorize', + 'urlAccessToken' => 'https://dummy/{{tenant}}/token', + 'urlResourceOwnerDetails' => '{{use_id_token}}', + 'scopes' => ['foo'], + 'tenancy' => TRUE, + ], + ]; + } + + private function makeDummyClients() { + $this->clients['no-tenancy'] = \Civi\Api4\OAuthClient::create(FALSE)->setValues( + [ + 'provider' => 'no-tenancy', + 'guid' => 'example-client-guid-no-tenancy', + 'secret' => 'example-secret', + ] + )->execute()->single(); + $this->clients['with-tenancy'] = \Civi\Api4\OAuthClient::create(FALSE)->setValues( + [ + 'provider' => 'with-tenancy', + 'guid' => 'example-client-guid-with-tenancy', + 'secret' => 'example-secret', + 'tenant' => '123-456-789', + ] + )->execute()->single(); + } + + public function testTenancyInURLs() { + + // Test no tenancy settings + $provider = \Civi::service('oauth2.league')->createProvider($this->clients['no-tenancy']); + $computedAuthorizationURL = $provider->getBaseAuthorizationUrl(); + $this->assertEquals($this->providers['no-tenancy']['options']['urlAuthorize'], $computedAuthorizationURL); + $computedTokenURL = $provider->getBaseAccessTokenUrl([]); + $this->assertEquals($this->providers['no-tenancy']['options']['urlAccessToken'], $computedTokenURL); + + // Test tenancy token rewrite + $provider = \Civi::service('oauth2.league')->createProvider($this->clients['with-tenancy']); + $computedAuthorizationURL = $provider->getBaseAuthorizationUrl(); + $this->assertEquals('https://dummy/123-456-789/authorize', $computedAuthorizationURL); + $computedTokenURL = $provider->getBaseAccessTokenUrl([]); + $this->assertEquals('https://dummy/123-456-789/token', $computedTokenURL); + + } + +} diff --git a/civicrm/ext/oauth-client/xml/schema/CRM/OAuth/OAuthClient.xml b/civicrm/ext/oauth-client/xml/schema/CRM/OAuth/OAuthClient.xml index 467c1e4ecd690d789e5b1ba4338b3c7931904aae..59864cca0c98533d7cb6dd3412a6fd15831c7e23 100644 --- a/civicrm/ext/oauth-client/xml/schema/CRM/OAuth/OAuthClient.xml +++ b/civicrm/ext/oauth-client/xml/schema/CRM/OAuth/OAuthClient.xml @@ -48,6 +48,18 @@ <add>5.32</add> </index> + <field> + <name>tenant</name> + <title>Tenant ID</title> + <type>varchar</type> + <length>128</length> + <comment>Tenant ID</comment> + <add>5.57</add> + <permission> + manage OAuth client + </permission> + </field> + <field> <name>secret</name> <title>Client Secret</title> diff --git a/civicrm/ext/payflowpro/CRM/Core/Payment/PayflowPro.php b/civicrm/ext/payflowpro/CRM/Core/Payment/PayflowPro.php index acd64bb021322c7a0bb32e3873bfaf3fead493b0..0fad94fce8a88c30a8a1114b66e4b3272f041c1f 100644 --- a/civicrm/ext/payflowpro/CRM/Core/Payment/PayflowPro.php +++ b/civicrm/ext/payflowpro/CRM/Core/Payment/PayflowPro.php @@ -21,6 +21,13 @@ class CRM_Core_Payment_PayflowPro extends CRM_Core_Payment { */ protected $guzzleClient; + /** + * Payment Processor Mode + * either test or live + * @var string + */ + protected $_mode; + /** * Constructor * diff --git a/civicrm/ext/payflowpro/info.xml b/civicrm/ext/payflowpro/info.xml index 00b3b400ec32da978f68f3d82d5e1449f77619a4..4a19f7b5211dc02ef70ce818387c1f4bae27af4c 100644 --- a/civicrm/ext/payflowpro/info.xml +++ b/civicrm/ext/payflowpro/info.xml @@ -15,10 +15,10 @@ <url desc="Licensing">http://www.gnu.org/licenses/agpl-3.0.html</url> </urls> <releaseDate>2021-04-13</releaseDate> - <version>5.58.1</version> + <version>5.59.0</version> <develStage>stable</develStage> <compatibility> - <ver>5.58</ver> + <ver>5.59</ver> </compatibility> <comments>This extension is extraction of the original Core Payflow Pro Payment Processor</comments> <classloader> diff --git a/civicrm/ext/payflowpro/tests/phpunit/CRM/Core/Payment/PayflowProTest.php b/civicrm/ext/payflowpro/tests/phpunit/CRM/Core/Payment/PayflowProTest.php index 4021911608e5f600f5f99723e1852e2e8ec15395..dd5a889138c038f160b314891b172ce899ae863a 100644 --- a/civicrm/ext/payflowpro/tests/phpunit/CRM/Core/Payment/PayflowProTest.php +++ b/civicrm/ext/payflowpro/tests/phpunit/CRM/Core/Payment/PayflowProTest.php @@ -23,6 +23,18 @@ class CRM_Core_Payment_PayflowProTest extends \PHPUnit\Framework\TestCase implem use \Civi\Test\GuzzleTestTrait; use \Civi\Test\Api3TestTrait; + /** + * Instance of CRM_Core_Payment_PayflowPro|null + * @var CRM_Core_Payment_PayflowPro + */ + protected $processor; + + /** + * Created Object Ids + * @var array + */ + public $ids; + public function setUpHeadless() { // Civi\Test has many helpers, like install(), uninstall(), sql(), and sqlFile(). // See: https://docs.civicrm.org/dev/en/latest/testing/phpunit/#civitest diff --git a/civicrm/ext/recaptcha/info.xml b/civicrm/ext/recaptcha/info.xml index ef978c7f7a260990bdbbab00316460474834b1c0..1baa71c04ab2294634fcde880a2c9d6609ca76b1 100644 --- a/civicrm/ext/recaptcha/info.xml +++ b/civicrm/ext/recaptcha/info.xml @@ -13,13 +13,13 @@ <url desc="Licensing">http://www.gnu.org/licenses/agpl-3.0.html</url> </urls> <releaseDate>2021-04-03</releaseDate> - <version>5.58.1</version> + <version>5.59.0</version> <tags> <tag>mgmt:hidden</tag> </tags> <develStage>stable</develStage> <compatibility> - <ver>5.58</ver> + <ver>5.59</ver> </compatibility> <classloader> <psr0 prefix="CRM_" path="."/> diff --git a/civicrm/ext/search_kit/Civi/Search/Admin.php b/civicrm/ext/search_kit/Civi/Search/Admin.php index 0f74b1f740ec8e7616768420cc74320b16853d7e..ee85568afd35e737fb4dda130a19e915dbeabc69 100644 --- a/civicrm/ext/search_kit/Civi/Search/Admin.php +++ b/civicrm/ext/search_kit/Civi/Search/Admin.php @@ -12,6 +12,7 @@ namespace Civi\Search; use Civi\Api4\Action\SearchDisplay\AbstractRunAction; +use Civi\Api4\Entity; use Civi\Api4\Extension; use Civi\Api4\Query\SqlEquation; use Civi\Api4\Query\SqlFunction; @@ -30,6 +31,7 @@ class Admin { * Returns clientside data needed for the `crmSearchAdmin` Angular module. * * @return array + * @throws \CRM_Core_Exception */ public static function getAdminSettings():array { $schema = self::getSchema(); @@ -119,10 +121,11 @@ class Admin { * Fetch all entities the current user has permission to `get`. * * @return array[] + * @throws \CRM_Core_Exception */ public static function getSchema(): array { $schema = []; - $entities = \Civi\Api4\Entity::get() + $entities = Entity::get() ->addSelect('name', 'title', 'title_plural', 'bridge_title', 'type', 'primary_key', 'description', 'label_field', 'icon', 'dao', 'bridge', 'ui_join_filters', 'searchable', 'order_by') ->addWhere('searchable', '!=', 'none') ->addOrderBy('title_plural') @@ -141,11 +144,17 @@ class Admin { if (!empty($paths['add'])) { $entity['addPath'] = $paths['add']; } - $getFields = civicrm_api4($entity['name'], 'getFields', [ - 'select' => ['name', 'title', 'label', 'description', 'type', 'options', 'input_type', 'input_attrs', 'data_type', 'serialize', 'entity', 'fk_entity', 'readonly', 'operators', 'suffixes', 'nullable'], - 'where' => [['deprecated', '=', FALSE], ['name', 'NOT IN', ['api_key', 'hash']]], - 'orderBy' => ['label'], - ]); + try { + $getFields = civicrm_api4($entity['name'], 'getFields', [ + 'select' => ['name', 'title', 'label', 'description', 'type', 'options', 'input_type', 'input_attrs', 'data_type', 'serialize', 'entity', 'fk_entity', 'readonly', 'operators', 'suffixes', 'nullable'], + 'where' => [['deprecated', '=', FALSE], ['name', 'NOT IN', ['api_key', 'hash']]], + 'orderBy' => ['label'], + ]); + } + catch (\CRM_Core_Exception $e) { + \Civi::log()->warning('Entity could not be loaded', ['entity' => $entity['name']]); + continue; + } foreach ($getFields as $field) { $field['fieldName'] = $field['name']; // Hack for RelationshipCache to make Relationship fields editable @@ -408,7 +417,11 @@ class Admin { * * @param string $alias * @param array ...$entities + * * @return array + * + * @throws \CRM_Core_Exception + * @throws \Civi\API\Exception\NotImplementedException */ private static function getJoinDefaults(string $alias, ...$entities):array { $conditions = []; diff --git a/civicrm/ext/search_kit/info.xml b/civicrm/ext/search_kit/info.xml index ebab5ba583ff54cbad4326a901228290cf7ed26d..d415d743f9b559f481b2f1bbd34518aa8ee9c6fd 100644 --- a/civicrm/ext/search_kit/info.xml +++ b/civicrm/ext/search_kit/info.xml @@ -15,13 +15,13 @@ <url desc="Licensing">http://www.gnu.org/licenses/agpl-3.0.html</url> </urls> <releaseDate>2021-01-06</releaseDate> - <version>5.58.1</version> + <version>5.59.0</version> <develStage>stable</develStage> <tags> <tag>mgmt:required</tag> </tags> <compatibility> - <ver>5.58</ver> + <ver>5.59</ver> </compatibility> <comments>Click on the chat link above to discuss development, report problems or ask questions.</comments> <classloader> @@ -35,6 +35,7 @@ <mixin>menu-xml@1.0.0</mixin> <mixin>mgd-php@1.0.0</mixin> <mixin>entity-types-php@1.0.0</mixin> + <mixin>smarty-v2@1.0.0</mixin> </mixins> <civix> <namespace>CRM/Search</namespace> diff --git a/civicrm/ext/search_kit/search_kit.civix.php b/civicrm/ext/search_kit/search_kit.civix.php index 414f9a73d43285ee313d7c4ff1895fe046891295..b74feb61fc6be7d47ba5853fa19ec5c684074691 100644 --- a/civicrm/ext/search_kit/search_kit.civix.php +++ b/civicrm/ext/search_kit/search_kit.civix.php @@ -91,17 +91,7 @@ function _search_kit_civix_civicrm_config(&$config = NULL) { } $configured = TRUE; - $template = CRM_Core_Smarty::singleton(); - $extRoot = __DIR__ . DIRECTORY_SEPARATOR; - $extDir = $extRoot . 'templates'; - - if (is_array($template->template_dir)) { - array_unshift($template->template_dir, $extDir); - } - else { - $template->template_dir = [$extDir, $template->template_dir]; - } $include_path = $extRoot . PATH_SEPARATOR . get_include_path(); set_include_path($include_path); diff --git a/civicrm/ext/search_kit/tests/phpunit/api/v4/SearchDisplay/SearchRunTest.php b/civicrm/ext/search_kit/tests/phpunit/api/v4/SearchDisplay/SearchRunTest.php index 819d3b879f8656a05cb7b03d584c1aae45f32405..985d00024812868bc27317a58879bcdd8a46c6c7 100644 --- a/civicrm/ext/search_kit/tests/phpunit/api/v4/SearchDisplay/SearchRunTest.php +++ b/civicrm/ext/search_kit/tests/phpunit/api/v4/SearchDisplay/SearchRunTest.php @@ -14,6 +14,7 @@ use Civi\Api4\Phone; use Civi\Api4\SavedSearch; use Civi\Api4\SearchDisplay; use Civi\Api4\UFMatch; +use Civi\Test\CiviEnvBuilder; use Civi\Test\TransactionalInterface; /** @@ -22,7 +23,7 @@ use Civi\Test\TransactionalInterface; class SearchRunTest extends Api4TestBase implements TransactionalInterface { use \Civi\Test\ACLPermissionTrait; - public function setUpHeadless() { + public function setUpHeadless(): CiviEnvBuilder { // Civi\Test has many helpers, like install(), uninstall(), sql(), and sqlFile(). // See: https://docs.civicrm.org/dev/en/latest/testing/phpunit/#civitest return \Civi\Test::headless() diff --git a/civicrm/ext/search_kit/tests/phpunit/api/v4/SearchDisplay/SearchRunWithCustomFieldTest.php b/civicrm/ext/search_kit/tests/phpunit/api/v4/SearchDisplay/SearchRunWithCustomFieldTest.php index 0e5bf67769467ec895e7c0d694c4dcb7056ccd30..9497758b102494e537e431f985a65c39866d6608 100644 --- a/civicrm/ext/search_kit/tests/phpunit/api/v4/SearchDisplay/SearchRunWithCustomFieldTest.php +++ b/civicrm/ext/search_kit/tests/phpunit/api/v4/SearchDisplay/SearchRunWithCustomFieldTest.php @@ -10,13 +10,14 @@ use Civi\Api4\Activity; use Civi\Api4\Contact; use Civi\Api4\CustomField; use Civi\Api4\CustomGroup; +use Civi\Test\CiviEnvBuilder; /** * @group headless */ class SearchRunWithCustomFieldTest extends CustomTestBase { - public function setUpHeadless() { + public function setUpHeadless(): CiviEnvBuilder { return \Civi\Test::headless() ->installMe(__DIR__) ->apply(); diff --git a/civicrm/ext/sequentialcreditnotes/info.xml b/civicrm/ext/sequentialcreditnotes/info.xml index 5ed5ee2a77c1a41d9e05819126ab31e516cc4125..fdf8650dd8dfe5f03e246d47cdbaf425da954ff3 100644 --- a/civicrm/ext/sequentialcreditnotes/info.xml +++ b/civicrm/ext/sequentialcreditnotes/info.xml @@ -15,13 +15,13 @@ <url desc="Licensing">http://www.gnu.org/licenses/agpl-3.0.html</url> </urls> <releaseDate>2020-01-28</releaseDate> - <version>5.58.1</version> + <version>5.59.0</version> <tags> <tag>mgmt:hidden</tag> </tags> <develStage>stable</develStage> <compatibility> - <ver>5.58</ver> + <ver>5.59</ver> </compatibility> <mixins> <mixin>setting-php@1.0.0</mixin> diff --git a/civicrm/extern/soap.php b/civicrm/extern/soap.php index fcd2318d66ceb3b08e61278ede1b58ee75d2c23e..3da3f2ce58dd63ba1840d85509c077c36c77a9d8 100644 --- a/civicrm/extern/soap.php +++ b/civicrm/extern/soap.php @@ -14,26 +14,11 @@ if (defined('PANTHEON_ENVIRONMENT')) { } session_start(); -require_once '../civicrm.config.php'; -require_once 'CRM/Core/Config.php'; - -$server = new SoapServer(NULL, - array( - 'uri' => 'urn:civicrm', - 'soap_version' => SOAP_1_2, - ) -); - - -require_once 'CRM/Utils/SoapServer.php'; -$crm_soap = new CRM_Utils_SoapServer(); - -/* Cache the real UF, override it with the SOAP environment */ - -$civicrmConfig = CRM_Core_Config::singleton(); - -$server->setClass('CRM_Utils_SoapServer', $civicrmConfig->userFrameworkClass); - -$server->setPersistence(SOAP_PERSISTENCE_SESSION); - -$server->handle(); +$server = new SoapServer(NULL, [ + 'uri' => 'urn:civicrm', + 'soap_version' => SOAP_1_2, +]); + +$server->fault('obsolete', "SOAP support is no longer included with civicrm-core."); +// It's removed because (a) the main consumer is no longer live, (b) it's awkward to maintain 'extern/' scripts, +// and (c) there's an extensionized version at https://lab.civicrm.org/extensions/civismtp/ diff --git a/civicrm/mixin/smarty-v2@1/mixin.php b/civicrm/mixin/smarty-v2@1/mixin.php new file mode 100644 index 0000000000000000000000000000000000000000..0b371057cce7efb4228c109e2c4aea8e34b24151 --- /dev/null +++ b/civicrm/mixin/smarty-v2@1/mixin.php @@ -0,0 +1,56 @@ +<?php + +/** + * Auto-register "templates/" folder. + * + * @mixinName smarty-v2 + * @mixinVersion 1.0.0 + * @since 5.59 + * + * @param CRM_Extension_MixInfo $mixInfo + * On newer deployments, this will be an instance of MixInfo. On older deployments, Civix may polyfill with a work-a-like. + * @param \CRM_Extension_BootCache $bootCache + * On newer deployments, this will be an instance of MixInfo. On older deployments, Civix may polyfill with a work-a-like. + */ +return function ($mixInfo, $bootCache) { + $dir = $mixInfo->getPath('templates'); + if (!file_exists($dir)) { + return; + } + + $register = function() use ($dir) { + // This implementation is useful for older versions of CiviCRM. It can be replaced/updated going forward (v1.1+). + $smarty = CRM_Core_Smarty::singleton(); + if (!is_array($smarty->template_dir)) { + $this->template_dir = [$smarty->template_dir]; + } + if (!in_array($dir, $smarty->template_dir)) { + array_unshift($smarty->template_dir, $dir); + } + }; + + // Let's figure out what environment we're in -- so that we know the best way to call $register(). + + if (!empty($GLOBALS['_CIVIX_MIXIN_POLYFILL'])) { + // Polyfill Loader (v<=5.45): We're already in the middle of firing `hook_config`. + if ($mixInfo->isActive()) { + $register(); + } + return; + } + + if (CRM_Extension_System::singleton()->getManager()->extensionIsBeingInstalledOrEnabled($mixInfo->longName)) { + // New Install, Standard Loader: The extension has just been enabled, and we're now setting it up. + // System has already booted. New templates may be needed for upcoming installation steps. + $register(); + return; + } + + // Typical Pageview, Standard Loader: Defer the actual registration for a moment -- to ensure that Smarty is online. + \Civi::dispatcher()->addListener('hook_civicrm_config', function() use ($mixInfo, $register) { + if ($mixInfo->isActive()) { + $register(); + } + }); + +}; diff --git a/civicrm/packages/Smarty/Config_File.class.php b/civicrm/packages/Smarty/Config_File.class.php index 491fa84081f3126167e19d6c8f7ebded811aabb3..1ad6e73e4ba15c39bda73eba6d1b4d993d81b614 100644 --- a/civicrm/packages/Smarty/Config_File.class.php +++ b/civicrm/packages/Smarty/Config_File.class.php @@ -22,7 +22,6 @@ * smarty-discussion-subscribe@googlegroups.com * * @link http://www.smarty.net/ - * @version 2.6.25-dev * @copyright Copyright: 2001-2005 New Digital Group, Inc. * @author Andrei Zmievski <andrei@php.net> * @access public diff --git a/civicrm/packages/Smarty/Smarty.class.php b/civicrm/packages/Smarty/Smarty.class.php index 764b168ca6dd904cb3d8ea7f5c96e87cb568060e..e5b6e3118a810988bddcad673ec2dca699608d59 100644 --- a/civicrm/packages/Smarty/Smarty.class.php +++ b/civicrm/packages/Smarty/Smarty.class.php @@ -27,7 +27,6 @@ * @author Monte Ohrt <monte at ohrt dot com> * @author Andrei Zmievski <andrei@php.net> * @package Smarty - * @version 2.6.31-dev */ /* $Id$ */ @@ -466,7 +465,7 @@ class Smarty * * @var string */ - var $_version = '2.6.31'; + var $_version = '2.6.32'; /** * current template inclusion depth @@ -1212,7 +1211,7 @@ class Smarty $_server_vars = ($this->request_use_auto_globals) ? $_SERVER : $GLOBALS['HTTP_SERVER_VARS']; $_last_modified_date = @substr($_server_vars['HTTP_IF_MODIFIED_SINCE'], 0, strpos($_server_vars['HTTP_IF_MODIFIED_SINCE'], 'GMT') + 3); $_gmt_mtime = gmdate('D, d M Y H:i:s', $this->_cache_info['timestamp']).' GMT'; - if (@count($this->_cache_info['insert_tags']) == 0 + if (empty($this->_cache_info['insert_tags']) && !$this->_cache_serials && $_gmt_mtime == $_last_modified_date) { if (php_sapi_name()=='cgi') diff --git a/civicrm/packages/Smarty/Smarty_Compiler.class.php b/civicrm/packages/Smarty/Smarty_Compiler.class.php index 6d186a40c515642a0cb0b631a8923b8ffb7919ef..7f1ed25f7da5a33eb81fd21828ca17e108074d72 100644 --- a/civicrm/packages/Smarty/Smarty_Compiler.class.php +++ b/civicrm/packages/Smarty/Smarty_Compiler.class.php @@ -21,7 +21,6 @@ * @link http://smarty.php.net/ * @author Monte Ohrt <monte at ohrt dot com> * @author Andrei Zmievski <andrei@php.net> - * @version 2.6.25-dev * @copyright 2001-2005 New Digital Group, Inc. * @package Smarty */ @@ -1192,7 +1191,7 @@ class Smarty_Compiler extends Smarty { } $output = '<?php '; - $output .= "\$_from = $from; if (!is_array(\$_from) && !is_object(\$_from)) { settype(\$_from, 'array'); }"; + $output .= "\$_from = $from; if ((\$_from instanceof StdClass) || (!is_array(\$_from) && !is_object(\$_from))) { settype(\$_from, 'array'); }"; if (isset($name)) { $foreach_props = "\$this->_foreach[$name]"; $output .= "{$foreach_props} = array('total' => count(\$_from), 'iteration' => 0);\n"; diff --git a/civicrm/packages/kcfinder/lib/class_image.php b/civicrm/packages/kcfinder/lib/class_image.php index 49056529c96d0480129f2e7152d760a8172b77f9..1bb7d924fe8351bf0898a94d4419a72dc95df3b9 100644 --- a/civicrm/packages/kcfinder/lib/class_image.php +++ b/civicrm/packages/kcfinder/lib/class_image.php @@ -116,8 +116,8 @@ abstract class image { $img = $image->image; } elseif (is_array($image)) { - list($key, $width) = each($image); - list($key, $height) = each($image); + $width = array_shift($image); + $height = array_shift($image); $img = $this->getBlankImage($width, $height); } else @@ -240,4 +240,4 @@ abstract class image { } -?> \ No newline at end of file +?> diff --git a/civicrm/release-notes.md b/civicrm/release-notes.md index e154f374200dde18d4c9496eeeae826b5beac462..060b9b5def4770a01c8df6930a88cd0f058b15fa 100644 --- a/civicrm/release-notes.md +++ b/civicrm/release-notes.md @@ -15,15 +15,16 @@ Other resources for identifying changes are: * https://github.com/civicrm/civicrm-joomla * https://github.com/civicrm/civicrm-wordpress -## CiviCRM 5.58.1 +## CiviCRM 5.59.0 -Released February 15, 2023 +Released March 1, 2023 -- **[Synopsis](release-notes/5.58.1.md#synopsis)** -- **[Security advisories](release-notes/5.58.1.md#security)** -- **[Bugs resolved](release-notes/5.58.1.md#bugs)** -- **[Credits](release-notes/5.58.1.md#credits)** -- **[Feedback](release-notes/5.58.1.md#feedback)** +- **[Synopsis](release-notes/5.59.0.md#synopsis)** +- **[Features](release-notes/5.59.0.md#features)** +- **[Bugs resolved](release-notes/5.59.0.md#bugs)** +- **[Miscellany](release-notes/5.59.0.md#misc)** +- **[Credits](release-notes/5.59.0.md#credits)** +- **[Feedback](release-notes/5.59.0.md#feedback)** ## CiviCRM 5.58.0 diff --git a/civicrm/release-notes/5.10.0.md b/civicrm/release-notes/5.10.0.md index e0fc05b648904b97f23b78052523d3267951499c..4524bf189eaa620164a8c7bdc20a57eed755c216 100644 --- a/civicrm/release-notes/5.10.0.md +++ b/civicrm/release-notes/5.10.0.md @@ -63,7 +63,7 @@ Released February 6, 2019 ### CiviCase -- **[dev-core#564](https://lab.civicrm.org/dev/core/issues/564) Differentiate +- **[dev/core#564](https://lab.civicrm.org/dev/core/issues/564) Differentiate case relationships in Contact Summary page ([13189](https://github.com/civicrm/civicrm-core/pull/13189))** diff --git a/civicrm/release-notes/5.16.0.md b/civicrm/release-notes/5.16.0.md index 82cddef0ff1ec4624f7bcde2323cde4d8887cba2..39c010b6763f909c05dc6cf8b1309182916fd81d 100644 --- a/civicrm/release-notes/5.16.0.md +++ b/civicrm/release-notes/5.16.0.md @@ -363,7 +363,7 @@ Released August 7, 2019 [14625](https://github.com/civicrm/civicrm-core/pull/14625))** - **Improper character encoding breaks xml processor - ([dev-core#1079](https://lab.civicrm.org/dev/core/issues/1079): + ([dev/core#1079](https://lab.civicrm.org/dev/core/issues/1079): [14654](https://github.com/civicrm/civicrm-core/pull/14654))** - **Php 7.2 notices fix on import diff --git a/civicrm/release-notes/5.56.0.md b/civicrm/release-notes/5.56.0.md index 48a06ba5b48f4831bb78f26f8d034a4534760239..f4e741e570912377e9cfe109728aa934b331d1e7 100644 --- a/civicrm/release-notes/5.56.0.md +++ b/civicrm/release-notes/5.56.0.md @@ -417,7 +417,7 @@ Released December 7, 2022 - **Additional Participants are incorrectly added to group set in profile for primary participant - ([dev/core/#3849](https://lab.civicrm.org/dev/core/-/issues/3849): + ([dev/core#3849](https://lab.civicrm.org/dev/core/-/issues/3849): [24633](https://github.com/civicrm/civicrm-core/pull/24633))** ### CiviMember diff --git a/civicrm/release-notes/5.58.1.md b/civicrm/release-notes/5.58.1.md deleted file mode 100644 index db065998ce431a70a92ebd7b296bec466d83af82..0000000000000000000000000000000000000000 --- a/civicrm/release-notes/5.58.1.md +++ /dev/null @@ -1,53 +0,0 @@ -# CiviCRM 5.58.1 - -Released February 15, 2023 - -- **[Synopsis](#synopsis)** -- **[Security advisories](#security)** -- **[Bugs resolved](#bugs)** -- **[Credits](#credits)** -- **[Feedback](#feedback)** - -## <a name="synopsis"></a>Synopsis - -| *Does this version...?* | | -| --------------------------------------------------------------- | -------- | -| Change the database schema? | no | -| Alter the API? | no | -| Require attention to configuration options? | no | -| Fix problems installing or upgrading to a previous version? | no | -| Introduce features? | no | -| **Fix bugs?** | **yes** | -| **Fix security vulnerabilities?** | **yes** | - -## <a name="security"></a>Security advisories - -* **[CIVI-SA-2023-04](https://civicrm.org/advisory/civi-sa-2023-04-file-type-restrictions): File Type Restrictions** -* **[CIVI-SA-2023-05](https://civicrm.org/advisory/civi-sa-2023-05-quick-add-xss): Quick Add XSS (WordPress)** -* **[CIVI-SA-2023-06](https://civicrm.org/advisory/civi-sa-2023-06-dompdf-203): Dompdf 2.0.3 RCE** - -## <a name="bugs"></a>Bugs resolved - -* **_CiviContribute_: PDF invoice renders with incorrect formatting ([dev/core#4080](https://lab.civicrm.org/dev/core/-/issues/4080): [#25547](https://github.com/civicrm/civicrm-core/pull/25547))** -* **_CiviEvent_: Excessive validation of title field ([dev/core#4119](https://lab.civicrm.org/dev/core/-/issues/4119): [#25578](https://github.com/civicrm/civicrm-core/pull/25578))** -* **_CiviReports_: Error "no such field" when displaying to limited-access user ([dev/core#4068](https://lab.civicrm.org/dev/core/-/issues/4068): [#25525](https://github.com/civicrm/civicrm-core/pull/25525))** -* **_Extensions_: During installation, new classes may not initially load ([dev/core#4055](https://lab.civicrm.org/dev/core/-/issues/4055): [#25379](https://github.com/civicrm/civicrm-core/pull/25379))** -* **_Status Check_: Tweak severity of new timezone warning ([#25583](https://github.com/civicrm/civicrm-core/pull/25583/))** -* **_Testing_: Headless tests should initialize timezone ([#25534](https://github.com/civicrm/civicrm-core/pull/25534))** -* **_Tokens_: Tokens like `{contact.email_primary.email}` do not render consistently ([dev/core#4109](https://lab.civicrm.org/dev/core/-/issues/4109): [#25548](https://github.com/civicrm/civicrm-core/pull/25548/))** - -## <a name="credits"></a>Credits - -This release was developed by the following authors and reviewers: - -Wikimedia Foundation - Eileen McNaughton; timinaust; Tadpole Collective - Kevin Cristiano; -Megaphone Technology Consulting - Jon Goldberg; Maria; JMA Consulting - Seamus Lee; -Deloitte - Andrea Intilangelo; Dave D; CiviDesk - Yashodha Chaku; CiviCRM - Tim Otten; -CiviCoop - Klaas Eikelboom, Erik Hommel; Circle Interactive - Pradeep Nayak; Bob Silvern; -ben_fairless; Australian Greens - Andrew Cormick-Dockery - -## <a name="feedback"></a>Feedback - -These release notes are edited by Tim Otten and Andie Hunt. If you'd like to -provide feedback on them, please login to https://chat.civicrm.org/civicrm and -contact `@agh1`. diff --git a/civicrm/release-notes/5.59.0.md b/civicrm/release-notes/5.59.0.md new file mode 100644 index 0000000000000000000000000000000000000000..ffff4d031ea6e3fb9edfd75a0ad98abb04e993d1 --- /dev/null +++ b/civicrm/release-notes/5.59.0.md @@ -0,0 +1,589 @@ +# CiviCRM 5.59.0 + +Released March 1, 2023 + +- **[Synopsis](#synopsis)** +- **[Features](#features)** +- **[Bugs resolved](#bugs)** +- **[Miscellany](#misc)** +- **[Credits](#credits)** +- **[Feedback](#feedback)** + +## <a name="synopsis"></a>Synopsis + +| *Does this version...?* | | +|:--------------------------------------------------------------- |:-------:| +| Fix security vulnerabilities? | no | +| **Change the database schema?** | **yes** | +| **Alter the API?** | **yes** | +| Require attention to configuration options? | no | +| Fix problems installing or upgrading to a previous version? | no | +| **Introduce features?** | **yes** | +| **Fix bugs?** | **yes** | + +## <a name="features"></a>Features + +- **Add Report Instance apiv4 + ([25226](https://github.com/civicrm/civicrm-core/pull/25226))** + + Adds the Report Instance entity to APIv4. + +- **Add support for extension .mo in [civicrm.l10n] + ([dev/translation#76](https://lab.civicrm.org/dev/translation/-/issues/76): + [25419](https://github.com/civicrm/civicrm-core/pull/25419))** + + Allows extension "mo" files to live in the I18N resource dir. + +- **luxembourg-provices added missing provinces, updated outdated ISO code… + ([25211](https://github.com/civicrm/civicrm-core/pull/25211))** + + Adds missing provinces for luxembourg, updates 3 outdated ISO codes for + Diekirch, Grevenmacher and Luxembourg provinces because after 2015 they were + changed and also changes GreveNmacher province name to Grevenmacher. + +- **Proposal - change title for all `is_primary` fields to 'Is Primary' + ([dev/core#4096](https://lab.civicrm.org/dev/core/-/issues/4096): + [25473](https://github.com/civicrm/civicrm-core/pull/25473))** + + Renames the import field "Primary Email" to "Is Primary". + +- **Scheduled jobs: Warning text if runInNonProductionEnvironment=TRUE + ([25307](https://github.com/civicrm/civicrm-core/pull/25307))** + + Adds a description to inform admins about runInNonProductionEnvironment=TRUE + sending emails even if mail sending is suppressed in settings. + +- **APIv4 - Support autocompletes of the Entity entity + ([25409](https://github.com/civicrm/civicrm-core/pull/25409))** + + Adds missing metadata to allow browsing API entities with the APIv4 + autocomplete select. + +- **Enhance metadata for OptionGroups + ([25188](https://github.com/civicrm/civicrm-core/pull/25188))** + + Improves metadata for Option Groups. + +- **CRM_Core_BAO_CMSUser - use system specific method rather than checking + userFramework + ([dev/core#4074](https://lab.civicrm.org/dev/core/-/issues/4074): + [25323](https://github.com/civicrm/civicrm-core/pull/25323))** + + Helps make CiviCRM more CMS agnostic. + +- **Smarty Mixin - Allow extensions to enable Smarty via mixin + ([25369](https://github.com/civicrm/civicrm-core/pull/25369))** + + Define a mixin, smarty-v2@1.0.0, which can be used by extensions to register + their templates/ folder. + +## <a name="bugs"></a>Bugs resolved + +### Core CiviCRM + +- **Sometimes Custom fields missing on profile + ([dev/core#1984](https://lab.civicrm.org/dev/core/-/issues/1984): + [25321](https://github.com/civicrm/civicrm-core/pull/25321))** + +- **Warning: count(): Parameter must be an array or an object that implements + Countable when saving My Profile or Name and Address + ([dev/core#2301](https://lab.civicrm.org/dev/core/-/issues/2301): + [25315](https://github.com/civicrm/civicrm-core/pull/25315))** + +- **Cannot get Auth Code in Oauth2 from Microsoft Azure Application + ([dev/core#2559](https://lab.civicrm.org/dev/core/-/issues/2559): + [25214](https://github.com/civicrm/civicrm-core/pull/25214))** + +- **Extension cannot find its own classes during install when opcache is enabled + ([dev/core#4055](https://lab.civicrm.org/dev/core/-/issues/4055): + [25379](https://github.com/civicrm/civicrm-core/pull/25379))** + +- **Running a Contact Summary report as a limited access user granted gives DB + Error: no such field + ([dev/core#4068](https://lab.civicrm.org/dev/core/-/issues/4068): + [25525](https://github.com/civicrm/civicrm-core/pull/25525))** + +- **system workflow templates do not respect the selected pdf format anymore + ([dev/core#4080](https://lab.civicrm.org/dev/core/-/issues/4080): + [25547](https://github.com/civicrm/civicrm-core/pull/25547))** + +- **Regression - CiviCRM core unit tests interfere with running non-CiviCRM + tests ([dev/core#4088](https://lab.civicrm.org/dev/core/-/issues/4088): + [25415](https://github.com/civicrm/civicrm-core/pull/25415), + [25378](https://github.com/civicrm/civicrm-core/pull/25378) and + [25412](https://github.com/civicrm/civicrm-core/pull/25412))** + +- **CRM_Utils_Number::formatLocaleNumeric() method throws fatal error with empty + string parameter. + ([dev/core#4097](https://lab.civicrm.org/dev/core/-/issues/4097): + [25448](https://github.com/civicrm/civicrm-core/pull/25448) and + [25462](https://github.com/civicrm/civicrm-core/pull/25462))** + +- **New `address_primary` tokens don't work + ([dev/core#4109](https://lab.civicrm.org/dev/core/-/issues/4109): + [25548](https://github.com/civicrm/civicrm-core/pull/25548))** + +- **civiimport - PEAR Exception handling - Mitigation of scenario where an + import table has been deleted and the metadata is out of date + ([25633](https://github.com/civicrm/civicrm-core/pull/25633))** + +- **Status Check - Tweak severity of timezone warning + ([25583](https://github.com/civicrm/civicrm-core/pull/25583))** + +- **Fix slow queries in snapshot process + ([25420](https://github.com/civicrm/civicrm-core/pull/25420))** + +- **Increase timeout on imap + ([25418](https://github.com/civicrm/civicrm-core/pull/25418))** + +- **Ensure useful exception thrown for all Smarty errors from user strings + ([25334](https://github.com/civicrm/civicrm-core/pull/25334))** + +- **Queues - Ensure that queue timings work, even with bad tzdata + ([25363](https://github.com/civicrm/civicrm-core/pull/25363))** + +- **CustomField - Fix smarty notices on field create/edit form + ([25397](https://github.com/civicrm/civicrm-core/pull/25397))** + +- **Fix custom field bug on UFMatch sync + ([25549](https://github.com/civicrm/civicrm-core/pull/25549))** + +- **CustomFields - Drop unused column 'mask' + ([25396](https://github.com/civicrm/civicrm-core/pull/25396))** + +- **Pass metadata values rather than convoluted array to `processCustomFields` + ([25318](https://github.com/civicrm/civicrm-core/pull/25318))** + +- **Disable extern/soap.php. Remove implementation and tests. + ([25317](https://github.com/civicrm/civicrm-core/pull/25317))** + + Deprecates soap integration which is no longer being used. + +- **Fix Undefined index: name Notice in civicrm_api3_message_template_send + ([25288](https://github.com/civicrm/civicrm-core/pull/25288))** + +- **Standardise Type on `includedGroups` parameter + ([25330](https://github.com/civicrm/civicrm-core/pull/25330))** + +- **Smarty notice fix - check array key exists before querying + ([25453](https://github.com/civicrm/civicrm-core/pull/25453))** + +- **Do not crash the whole SearchKit UI if one entity fails + ([25433](https://github.com/civicrm/civicrm-core/pull/25433))** + +- **Fix typo in upgrade message + ([25481](https://github.com/civicrm/civicrm-core/pull/25481))** + +- **Fix exception type in upgrade snapshot + ([25480](https://github.com/civicrm/civicrm-core/pull/25480))** + +- **Report tpl enotices fix + ([25452](https://github.com/civicrm/civicrm-core/pull/25452))** + +- **Fix some more smarty assignments to assign even when FALSE + ([25459](https://github.com/civicrm/civicrm-core/pull/25459))** + +- **Do not attempt to format custom value of empty string + ([25451](https://github.com/civicrm/civicrm-core/pull/25451))** + +### CiviCase + +- **Undefined array keys on case activity view + ([25381](https://github.com/civicrm/civicrm-core/pull/25381))** + +- **Undefined `accessKey` on case activity view + ([25382](https://github.com/civicrm/civicrm-core/pull/25382))** + +- **Fix display of custom data in cases + ([25440](https://github.com/civicrm/civicrm-core/pull/25440))** + +### CiviContribute + +- **Dummy payment processor should be flagged as such on LIVE page + ([dev/core#3844](https://lab.civicrm.org/dev/core/-/issues/3844): + [25282](https://github.com/civicrm/civicrm-core/pull/25282))** + +- **Fix failure when changing processor type on add Payment Processor screen + ([25340](https://github.com/civicrm/civicrm-core/pull/25340))** + +- **avoid empty error message when submitting PCP page. + ([25277](https://github.com/civicrm/civicrm-core/pull/25277))** + +- **Searchkit not loading pledge ID's + ([dev/core#4131](https://lab.civicrm.org/dev/core/-/issues/4131): + [25598](https://github.com/civicrm/civicrm-core/pull/25598))** + +- **Paypal cancel/notify/return URLs + ([25376](https://github.com/civicrm/civicrm-core/pull/25376))** + + Fixes Paypal standard on Drupal9 Webform and any other offsite payment + processor that uses the standard methods. + +### CiviEvent + +- **"Please enter a Title for the registration Confirmation Page" when saving + event with no confirmation page + ([dev/core#4119](https://lab.civicrm.org/dev/core/-/issues/4119): + [25578](https://github.com/civicrm/civicrm-core/pull/25578))** + +- **Assign participant_status_id in both edit/create modes + ([dev/core#4084](https://lab.civicrm.org/dev/core/-/issues/4084): + [25366](https://github.com/civicrm/civicrm-core/pull/25366))** + + Previously only assigned in edit mode. + +- **API v.3 Event.create used for update will change Event Template to ordinary + Event ([dev/core#4081](https://lab.civicrm.org/dev/core/-/issues/4081): + [25356](https://github.com/civicrm/civicrm-core/pull/25356))** + +- **Original value is displayed after setting custom event field blank + ([dev/core#2985](https://lab.civicrm.org/dev/core/-/issues/2985): + [25229](https://github.com/civicrm/civicrm-core/pull/25229))** + +- **Manage Events - Configure options have class disabled if no settings + entered - causes Bootstrap issues + ([dev/core#2542](https://lab.civicrm.org/dev/core/-/issues/2542): + [24665](https://github.com/civicrm/civicrm-core/pull/24665))** + +- **Unconditionally assign `registerClosed` on event info page + ([25251](https://github.com/civicrm/civicrm-core/pull/25251))** + +### Backdrop Integration + +- **Bug: when adding CMS user with a profile, get a fatal error when passwords + get verified for strength + ([dev/backdrop#77](https://lab.civicrm.org/dev/backdrop/-/issues/77): + [25371](https://github.com/civicrm/civicrm-core/pull/25371))** + +### Drupal Integration + +- **Drupal 8 profile validation not finding the right profile when validating + submission on CMS user tabs + ([dev/drupal#153](https://lab.civicrm.org/dev/drupal/-/issues/153): + [77](https://github.com/civicrm/civicrm-drupal-8/pull/77) and + [25336](https://github.com/civicrm/civicrm-core/pull/25336))** + +### Joomla Integration + +- **[Joomla 4.0] Cannot access/set user permissions + ([dev/joomla#35](https://lab.civicrm.org/dev/joomla/-/issues/35): + [67](https://github.com/civicrm/civicrm-joomla/pull/67))** + +- **Use correct var for joomla synchronizeUFMatch + ([25658](https://github.com/civicrm/civicrm-core/pull/25658))** + +### WordPress Integration + +- **Prevent PHP warnings when no WordPress user is found + ([25477](https://github.com/civicrm/civicrm-core/pull/25477))** + +## <a name="misc"></a>Miscellany + +- **Update class_image.php for PHP8 + ([358](https://github.com/civicrm/civicrm-packages/pull/358))** + +- **Update polyfill packages + ([25417](https://github.com/civicrm/civicrm-core/pull/25417))** + +- **simplify calculation of lifetime memberships in CRM_Price_BAO_PriceSet + ([25456](https://github.com/civicrm/civicrm-core/pull/25456))** + +- **Make otherwise unused form function private + ([25389](https://github.com/civicrm/civicrm-core/pull/25389))** + +- **Bump dompdf/dompdf from 2.0.2 to 2.0.3 + ([25523](https://github.com/civicrm/civicrm-core/pull/25523))** + +- **Deprecate meaningless parameter + ([25259](https://github.com/civicrm/civicrm-core/pull/25259))** + +- **Greenwich - Run `civix upgrade` + ([25249](https://github.com/civicrm/civicrm-core/pull/25249))** + +- **Flexmailer - Re-run civix upgrade + ([25357](https://github.com/civicrm/civicrm-core/pull/25357))** + +- **Run civix upgrade on oauth + ([25358](https://github.com/civicrm/civicrm-core/pull/25358))** + +- **Civix upgrade on event cart + ([25361](https://github.com/civicrm/civicrm-core/pull/25361))** + +- **Civix upgrade message_admin + ([25359](https://github.com/civicrm/civicrm-core/pull/25359))** + +- **Run Civix upgrade on afform/core with template patch applied + ([25250](https://github.com/civicrm/civicrm-core/pull/25250))** + +- **Remove code for legacy php versions - `assign_by_ref` with an object + ([25247](https://github.com/civicrm/civicrm-core/pull/25247))** + +- **Remove a couple of legacy uses of `contributeMode` + ([25239](https://github.com/civicrm/civicrm-core/pull/25239))** + +- **Remove code deprecated in 2019 + ([25262](https://github.com/civicrm/civicrm-core/pull/25262))** + +- **Remove unused method in CRM_Contact_Form_Task_PDFLetterCommon + ([25326](https://github.com/civicrm/civicrm-core/pull/25326))** + +- **added myself to contributor-key.yml + ([25314](https://github.com/civicrm/civicrm-core/pull/25314))** + +- **Add dontub to contributor-key.yml + ([25475](https://github.com/civicrm/civicrm-core/pull/25475))** + +- **Remove error suppression operator from test + ([25344](https://github.com/civicrm/civicrm-core/pull/25344))** + +- **typo: dlass --> class + ([25308](https://github.com/civicrm/civicrm-core/pull/25308))** + +- **PHP 8.1 compatibility when enabling logging + ([25339](https://github.com/civicrm/civicrm-core/pull/25339))** + +- **Php 8.2 fix undefined property, move test to appropriate extension + ([25313](https://github.com/civicrm/civicrm-core/pull/25313))** + +- **php8 - don't pass null to htmlspecialchars on profile admin page + ([25463](https://github.com/civicrm/civicrm-core/pull/25463))** + +- **Php8.2 Contact import Map Field screen - remove undefined property usage + (mutliple) ([25298](https://github.com/civicrm/civicrm-core/pull/25298))** + +- **Php 8.2 - undefined property fix in test class + ([25332](https://github.com/civicrm/civicrm-core/pull/25332))** + +- **php8.2 - Fix undefined property, general test cleanup + ([25312](https://github.com/civicrm/civicrm-core/pull/25312))** + +- **[REF][PHP8.2] Avoid dynamic property in ReportTest + ([25399](https://github.com/civicrm/civicrm-core/pull/25399))** + +- **[REF][PHP8.2] Fix Eway Single Payment Processor extension for dynamic + properties ([25354](https://github.com/civicrm/civicrm-core/pull/25354))** + +- **[REF][PHP8.2] Use const instead of dynamic property: + CRM_Contribute_BAO_ContributionPageTest + ([25372](https://github.com/civicrm/civicrm-core/pull/25372))** + +- **[REF][PHP8.2] Fix Deprecated Dynamic class properties in Legacy custom + searches extension + ([25393](https://github.com/civicrm/civicrm-core/pull/25393))** + +- **[REF][PHP8.2] Declare processor property in CRM_Case_XMLProcessorTest + ([25407](https://github.com/civicrm/civicrm-core/pull/25407))** + +- **[REF][PHP8.2] Avoid dynamic property in CRM_SMS_ProviderTest + ([25388](https://github.com/civicrm/civicrm-core/pull/25388))** + +- **[REF][PHP8.2] Declare $file property in CRM_Utils_ZipTest + ([25373](https://github.com/civicrm/civicrm-core/pull/25373))** + +- **[REF][PHP8.2] Avoid dynamic properties in api_v3_EventTest + ([25375](https://github.com/civicrm/civicrm-core/pull/25375))** + +- **[REF][PHP8.2] Avoid dynamic properties in module tests + ([25348](https://github.com/civicrm/civicrm-core/pull/25348))** + +- **[REF][PHP8.2] Fix PHP8.2 creation of dynamic properties in the elavon tests + and Payment Processor class + ([25353](https://github.com/civicrm/civicrm-core/pull/25353))** + +- **[REF][PHP8.2] Avoid dynamic properties in api_v3_GroupOrganizationTest + ([25352](https://github.com/civicrm/civicrm-core/pull/25352))** + +- **[REF][PHP8.2] Avoid dynamic properties in api_v3_ContactTypeTest + ([25342](https://github.com/civicrm/civicrm-core/pull/25342))** + +- **[REF][PHP8.2] Avoid dynamic properties in + CRM_Contact_BAO_ContactType_RelationshipTest + ([25347](https://github.com/civicrm/civicrm-core/pull/25347))** + +- **[REF][PHP8.2] Move to standard varaibles in + CRM_Price_BAO_PriceFieldValueTest to avoid dynamic properties + ([25343](https://github.com/civicrm/civicrm-core/pull/25343))** + +- **[REF][PHP8.2] Use const instead of dynamic property api_v3_CaseTypeTest + ([25345](https://github.com/civicrm/civicrm-core/pull/25345))** + +- **[REF][PHP8.2] Avoid dynamic properties in CRM_Case_XMLProcessor_ProcessTest + ([25325](https://github.com/civicrm/civicrm-core/pull/25325))** + +- **[REF][PHP8.2] Fix creation of dynamic properties in Payflow Pro extension + ([25355](https://github.com/civicrm/civicrm-core/pull/25355))** + +- **[REF][PHP8.2] Tidy up of CRM_Report_Form_Member_DetailTest + ([25450](https://github.com/civicrm/civicrm-core/pull/25450))** + +- **[REF][PHP8.2] Declare missing property on CRM_Utils_HookTest + ([25447](https://github.com/civicrm/civicrm-core/pull/25447))** + +- **[REF][PHP8.2] Avoid dynamic properties in CRM_Event_BAO_ParticipantTest + ([25449](https://github.com/civicrm/civicrm-core/pull/25449))** + +- **[REF][PHP8.2] Fix Dynamic property payment instrument id on back office + contribution form + ([25426](https://github.com/civicrm/civicrm-core/pull/25426))** + +- **[REF][PHP8.2] Tidy up CRM_Batch_Form_EntryTest + ([25455](https://github.com/civicrm/civicrm-core/pull/25455))** + +- **[REF][PHP8.2] Tidy, and PHP8.2 compatibility for + api_v3_CustomValueContactTypeTest + ([25479](https://github.com/civicrm/civicrm-core/pull/25479))** + +- **[REF][PHP8.2] Declare system property in tests + ([25401](https://github.com/civicrm/civicrm-core/pull/25401))** + +- **[REF][PHP8.2] Declare file property in CRM_Extension_InfoTest + ([25405](https://github.com/civicrm/civicrm-core/pull/25405))** + +- **[REF][PHP8.2] Declare properties in CRM_Activity_Page_AJAXTest + ([25443](https://github.com/civicrm/civicrm-core/pull/25443))** + +- **[REF][PHP8.2] Refactor CRM_Case_BAO_CaseTest to use const + ([25442](https://github.com/civicrm/civicrm-core/pull/25442))** + +- **[REF][PHP8.2] Remove dynamic property in + CRM_Contribute_Form_ContributionPageTranslationTest + ([25489](https://github.com/civicrm/civicrm-core/pull/25489))** + +- **[REF][PHP8.2] Declare properties on CRM_Member_Import_Parser_MembershipTest + ([25491](https://github.com/civicrm/civicrm-core/pull/25491))** + +- **[REF][PHP8.2] Refactor CRM_Contact_BAO_ContactType_ContactSearchTest to not + use dynamic properties + ([25406](https://github.com/civicrm/civicrm-core/pull/25406))** + +- **[REF][PHP8.2] Declare properties in CRM_Contact_BAO_ContactType_ContactTest + ([25478](https://github.com/civicrm/civicrm-core/pull/25478))** + +- **[REF][PHP8.2] Avoid dynamic properties in queue tests + ([25299](https://github.com/civicrm/civicrm-core/pull/25299))** + +- **[REF][PHP8.2] Avoid dynamic properties in CRM_Core_I18n_Form + ([25297](https://github.com/civicrm/civicrm-core/pull/25297))** + +- **[REF][PHP8.2] Avoid dynamic properties in api_v3_NoteTest + ([25310](https://github.com/civicrm/civicrm-core/pull/25310))** + +- **[REF][PHP8.2] Avoid dynamic properties in CRM_Contact_Page_DedupeException + ([25301](https://github.com/civicrm/civicrm-core/pull/25301))** + +- **[REF][PHP8.2] Avoid dynamic properties in CRM_Case_Form_CaseView + ([25292](https://github.com/civicrm/civicrm-core/pull/25292))** + +- **[REF][PHP8.2] Avoid dynamic properties in CRM_Extension_Container_Static + ([25311](https://github.com/civicrm/civicrm-core/pull/25311))** + +- **[REF] Use civi::statics to get activityinfos in case activity view + ([25404](https://github.com/civicrm/civicrm-core/pull/25404))** + +- **[REF] Regen following #25211 + ([25413](https://github.com/civicrm/civicrm-core/pull/25413))** + +- **(REF) Tidy up properties in CRM_Core_ResourcesTest + ([25349](https://github.com/civicrm/civicrm-core/pull/25349))** + +- **(REF) Tidy up of CRM_Extension_ManagerTest + ([25350](https://github.com/civicrm/civicrm-core/pull/25350))** + +- **(REF) Fix field name when doing DAO find in MergerTest + ([25337](https://github.com/civicrm/civicrm-core/pull/25337))** + +- **(REF) Tidy-up unreachable return + ([25324](https://github.com/civicrm/civicrm-core/pull/25324))** + +- **[Ref] MembershipView page - Remove redundant financialacl check + ([23230](https://github.com/civicrm/civicrm-core/pull/23230))** + +- **[REF] Use Civi::statics in CRM_Utils_File instead of php static + ([25498](https://github.com/civicrm/civicrm-core/pull/25498))** + +- **(REF) CRM_Upgrade_Headless - The pre-up and post-up msgs should have same + formatting ([25488](https://github.com/civicrm/civicrm-core/pull/25488))** + +- **[REF] Add in function to retrieve Pre Upgrade messages in headless + ([25414](https://github.com/civicrm/civicrm-core/pull/25414))** + +- **[REF] Disable Soap wp reset options + ([288](https://github.com/civicrm/civicrm-wordpress/pull/288))** + +- **(REF) Remove _prefElement dynamic property + ([25293](https://github.com/civicrm/civicrm-core/pull/25293))** + +- **[REF] Upgrade Smarty to 2.6.32 + ([359](https://github.com/civicrm/civicrm-packages/pull/359))** + +- **[REF] [Merge custom fields] Copy complex function into merger class, ready + to disentangle as little shared code is really used + ([25219](https://github.com/civicrm/civicrm-core/pull/25219))** + +- **CaseActivityTest - Fix quiet regressions + ([25416](https://github.com/civicrm/civicrm-core/pull/25416))** + +- **[NFC/Unit tests] Deprecated theme in unit test base class + ([76](https://github.com/civicrm/civicrm-drupal-8/pull/76))** + +- **NFC - Update tested up to value for WP sites + ([287](https://github.com/civicrm/civicrm-wordpress/pull/287))** + +- **(NFC) Another batch of PHPDoc fixes + ([25351](https://github.com/civicrm/civicrm-core/pull/25351))** + +- **(NFC) Cleanup Gitlab references + ([25365](https://github.com/civicrm/civicrm-core/pull/25365))** + +- **(NFC) Speed up random tests by 55-60% + ([25439](https://github.com/civicrm/civicrm-core/pull/25439))** + +- **[NFC] Incorrect docblock in + CRM_Contribute_PseudoConstant::contributionPage() + ([25398](https://github.com/civicrm/civicrm-core/pull/25398))** + +- **CiviTestListener - Headless tests should initialize timezone + ([25534](https://github.com/civicrm/civicrm-core/pull/25534))** + +- **(NFC) Mixin Tests - Add more type-hints + ([25384](https://github.com/civicrm/civicrm-core/pull/25384))** + +- **NFC superficial prelminary cleanup in test class + ([25333](https://github.com/civicrm/civicrm-core/pull/25333))** + +- **[NFC] Test classname should match filename + ([25283](https://github.com/civicrm/civicrm-core/pull/25283))** + +- **[NFC] Remove broken test + ([25279](https://github.com/civicrm/civicrm-core/pull/25279))** + +- **(NFC) Reference classes with correct case + ([25295](https://github.com/civicrm/civicrm-core/pull/25295))** + +## <a name="credits"></a>Credits + +This release was developed by the following code authors: + +AGH Strategies - Alice Frumin, Andie Hunt; BrightMinded Ltd - Bradley Taylor; +Christian Wach; Circle Interactive - Pradeep Nayak; CiviCRM - Coleman Watts, +Tim Otten; CiviDesk - Yashodha Chaku; Coop SymbioTIC - Mathieu Lutfy; Dave D; +Freeform Solutions - Herb van den Dool; jmacarthur98; JMA Consulting - Monish +Deb, Seamus Lee; John Kingsnorth; Megaphone Technology Consulting - Jon +Goldberg; Michael-Labriola; MJW Consulting - Matthew Wire; Progressive +Technology Project - Jamie McClelland; redcuillin; Squiffle Consulting - Aidan +Saunders; Stephen Palmstrom; SYSTOPIA - Johannes Franz; Tadpole Collective - +Kevin Cristiano; Wikimedia Foundation - Eileen McNaughton; Wildsight - Lars +Sanders-Green + +Most authors also reviewed code for this release; in addition, the following +reviewers contributed their comments: + +Artful Robot - Rich Lott; Australian Greens - Andrew Cormick-Dockery; Betty +Dolfing; CiviCoop - Klaas Eikelboom; JMA Consulting - Joe Murray; Nicol +Wistreich + +## <a name="feedback"></a>Feedback + +These release notes are edited by Alice Frumin and Andie Hunt. If you'd like +to provide feedback on them, please log in to https://chat.civicrm.org/civicrm +and contact `@agh1`. diff --git a/civicrm/release-notes/5.9.0.md b/civicrm/release-notes/5.9.0.md index 687ecddb1f92b0463f5fd52190fd82106fb2c6ca..e7c307dbc806ea345527bd8aee4ae7bbefd608bd 100644 --- a/civicrm/release-notes/5.9.0.md +++ b/civicrm/release-notes/5.9.0.md @@ -78,7 +78,7 @@ Released January 2, 2019 This change makes it so extension authors can specify phpType and crmType in their xml files. -- **[dev-core#565](https://lab.civicrm.org/dev/core/issues/565) Make subject +- **[dev/core#565](https://lab.civicrm.org/dev/core/issues/565) Make subject field of Note, inline editable in contact summary page ([13190](https://github.com/civicrm/civicrm-core/pull/13190))** diff --git a/civicrm/sql/civicrm.mysql b/civicrm/sql/civicrm.mysql index ae12d364c3da576fa924f3f44e1e2fc96653724d..eacd6acbbfb9ad06f5103cc9c1b2d9c7089ad673 100644 --- a/civicrm/sql/civicrm.mysql +++ b/civicrm/sql/civicrm.mysql @@ -1459,7 +1459,6 @@ CREATE TABLE `civicrm_custom_field` ( `weight` int NOT NULL DEFAULT 1 COMMENT 'Controls field display order within an extended property group.', `help_pre` text COMMENT 'Description and/or help text to display before this field.', `help_post` text COMMENT 'Description and/or help text to display after this field.', - `mask` varchar(64) COMMENT 'Optional format instructions for specific field types, like date types.', `attributes` varchar(255) COMMENT 'Store collection of type-appropriate attributes, e.g. textarea needs rows/cols attributes', `javascript` varchar(255) COMMENT 'Optional scripting attributes for field.', `is_active` tinyint DEFAULT 1 COMMENT 'Is this property active?', diff --git a/civicrm/sql/civicrm_data.mysql b/civicrm/sql/civicrm_data.mysql index aaf3e966332d3cc4c006b054dd3dd094855efb2e..deb4e34dbdbeda7c2688c167390cf2604795898b 100644 --- a/civicrm/sql/civicrm_data.mysql +++ b/civicrm/sql/civicrm_data.mysql @@ -2264,8 +2264,8 @@ INSERT INTO civicrm_state_province (id, country_id, abbreviation, name) VALUES (3519, 1125, "TE", "TelÅ¡ių Apskritis"), (3520, 1125, "UT", "Utenos Apskritis"), (3521, 1125, "VL", "Vilniaus Apskritis"), -(3522, 1126, "D", "Diekirch"), -(3523, 1126, "G", "GreveNmacher"), +(3522, 1126, "DI", "Diekirch"), +(3523, 1126, "GR", "Grevenmacher"), (3550, 1119, "DGV", "Daugavpils"), (3551, 1119, "JEL", "Jelgava"), (3552, 1119, "JUR", "JÅ«rmala"), @@ -4037,7 +4037,7 @@ INSERT INTO civicrm_state_province (id, country_id, abbreviation, name) VALUES (NULL, 1045, "ZW", "Zhongwei"), -- CRM-10863 Added Missing Province for Luxembourg -(NULL, 1126, "L", "Luxembourg"), +(NULL, 1126, "LU", "Luxembourg"), -- CRM-11367 Latvian regions (NULL, 1119, "002", "Aizkraukles novads"), @@ -4443,9 +4443,22 @@ INSERT INTO civicrm_state_province (id, country_id, abbreviation, name) VALUES -- Add in missing Indian State provinces (NULL, 1101, "DH", "DÄdra and Nagar Haveli and DamÄn and Diu"), -(NULL, 1101, "LA", "LadÄkh") +(NULL, 1101, "LA", "LadÄkh"), -- end of statement: + +-- Add missing provinces for Luxembourg +(NULL, 1126, 'CA', 'Capellen'), +(NULL, 1126, 'CL', 'Clervaux'), +(NULL, 1126, 'EC', 'Echternach'), +(NULL, 1126, 'ES', 'Esch-sur-Alzette'), +(NULL, 1126, 'ME', 'Mersch'), +(NULL, 1126, 'RD', 'Redange-sur-Attert'), +(NULL, 1126, 'RM', 'Remich'), +(NULL, 1126, 'VD', 'Vianden'), +(NULL, 1126, 'WI', 'Wiltz') + +-- end of statement: ; -- +--------------------------------------------------------------------+ -- | Copyright CiviCRM LLC. All rights reserved. | @@ -23665,4 +23678,4 @@ INSERT INTO `civicrm_report_instance` ( `domain_id`, `title`, `report_id`, `description`, `permission`, `form_values`) VALUES ( @domainID, 'Survey Details', 'survey/detail', 'Detailed report for canvassing, phone-banking, walk lists or other surveys.', 'access CiviReport', 'a:39:{s:6:"fields";a:2:{s:9:"sort_name";s:1:"1";s:6:"result";s:1:"1";}s:22:"assignee_contact_id_op";s:2:"eq";s:25:"assignee_contact_id_value";s:0:"";s:12:"sort_name_op";s:3:"has";s:15:"sort_name_value";s:0:"";s:17:"street_number_min";s:0:"";s:17:"street_number_max";s:0:"";s:16:"street_number_op";s:3:"lte";s:19:"street_number_value";s:0:"";s:14:"street_name_op";s:3:"has";s:17:"street_name_value";s:0:"";s:15:"postal_code_min";s:0:"";s:15:"postal_code_max";s:0:"";s:14:"postal_code_op";s:3:"lte";s:17:"postal_code_value";s:0:"";s:7:"city_op";s:3:"has";s:10:"city_value";s:0:"";s:20:"state_province_id_op";s:2:"in";s:23:"state_province_id_value";a:0:{}s:13:"country_id_op";s:2:"in";s:16:"country_id_value";a:0:{}s:12:"survey_id_op";s:2:"in";s:15:"survey_id_value";a:0:{}s:12:"status_id_op";s:2:"eq";s:15:"status_id_value";s:1:"1";s:11:"custom_1_op";s:2:"in";s:14:"custom_1_value";a:0:{}s:11:"custom_2_op";s:2:"in";s:14:"custom_2_value";a:0:{}s:17:"custom_3_relative";s:1:"0";s:13:"custom_3_from";s:0:"";s:11:"custom_3_to";s:0:"";s:11:"description";s:75:"Detailed report for canvassing, phone-banking, walk lists or other surveys.";s:13:"email_subject";s:0:"";s:8:"email_to";s:0:"";s:8:"email_cc";s:0:"";s:10:"permission";s:17:"access CiviReport";s:6:"groups";s:0:"";s:9:"domain_id";i:1;}'); -UPDATE civicrm_domain SET version = '5.58.1'; +UPDATE civicrm_domain SET version = '5.59.0'; diff --git a/civicrm/sql/civicrm_generated.mysql b/civicrm/sql/civicrm_generated.mysql index 83764dab85c0e8b5c5a9833815036d144033eb73..ef7c1f5916b86a1688283253a8c85adeda3070ae 100644 --- a/civicrm/sql/civicrm_generated.mysql +++ b/civicrm/sql/civicrm_generated.mysql @@ -1,15 +1,16 @@ --- MariaDB dump 10.19 Distrib 10.5.15-MariaDB, for debian-linux-gnu (x86_64) +-- MySQL dump 10.13 Distrib 8.0.32, for Linux (x86_64) -- --- Host: 127.0.0.1 Database: mycivicivi_3bru0 +-- Host: 127.0.0.1 Database: 47testcivi_yg7kx -- ------------------------------------------------------ --- Server version 10.5.15-MariaDB-0+deb11u1 +-- Server version 8.0.32 /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; -/*!40101 SET NAMES utf8mb4 */; +/*!50503 SET NAMES utf8mb4 */; /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; /*!40103 SET TIME_ZONE='+00:00' */; +/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; @@ -161,647 +162,647 @@ UNLOCK TABLES; LOCK TABLES `civicrm_activity` WRITE; /*!40000 ALTER TABLE `civicrm_activity` DISABLE KEYS */; INSERT INTO `civicrm_activity` (`id`, `source_record_id`, `activity_type_id`, `subject`, `activity_date_time`, `duration`, `location`, `phone_id`, `phone_number`, `details`, `status_id`, `priority_id`, `parent_id`, `is_test`, `medium_id`, `is_auto`, `relationship_id`, `is_current_revision`, `original_id`, `result`, `is_deleted`, `campaign_id`, `engagement_level`, `weight`, `is_star`, `created_date`, `modified_date`) VALUES - (1,NULL,2,'Subject for Phone Call','2021-12-08 01:15:02',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (2,NULL,1,'Subject for Meeting','2022-03-23 23:15:37',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (3,NULL,22,'Subject for Print/Merge Document','2022-03-17 01:31:46',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (4,NULL,22,'Subject for Print/Merge Document','2022-09-06 16:03:52',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (5,NULL,9,'Subject for Tell a Friend','2022-05-01 04:26:58',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (6,NULL,55,'Subject for Interview','2022-01-19 23:05:34',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (7,NULL,1,'Subject for Meeting','2022-06-17 20:00:48',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (8,NULL,22,'Subject for Print/Merge Document','2021-12-28 07:40:12',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (9,NULL,2,'Subject for Phone Call','2022-05-20 20:03:35',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (10,NULL,9,'Subject for Tell a Friend','2022-04-19 16:55:26',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (11,NULL,22,'Subject for Print/Merge Document','2022-02-03 16:41:06',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (12,NULL,55,'Subject for Interview','2022-05-27 11:09:02',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (13,NULL,22,'Subject for Print/Merge Document','2022-06-11 18:08:05',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (14,NULL,2,'Subject for Phone Call','2022-08-04 18:22:40',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (15,NULL,2,'Subject for Phone Call','2022-01-29 05:00:03',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (16,NULL,55,'Subject for Interview','2021-12-25 02:24:39',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (17,NULL,55,'Subject for Interview','2022-02-10 07:38:53',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (18,NULL,9,'Subject for Tell a Friend','2022-09-22 18:47:16',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (19,NULL,2,'Subject for Phone Call','2022-11-02 09:19:35',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (20,NULL,1,'Subject for Meeting','2022-04-05 02:07:43',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (21,NULL,2,'Subject for Phone Call','2022-02-11 18:39:54',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (22,NULL,55,'Subject for Interview','2022-10-20 17:12:36',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (23,NULL,2,'Subject for Phone Call','2022-03-21 11:59:21',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (24,NULL,1,'Subject for Meeting','2022-02-23 08:03:35',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (25,NULL,9,'Subject for Tell a Friend','2022-03-21 18:27:44',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (26,NULL,2,'Subject for Phone Call','2022-06-25 03:22:32',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (27,NULL,22,'Subject for Print/Merge Document','2022-01-10 08:02:01',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (28,NULL,22,'Subject for Print/Merge Document','2022-08-29 04:01:45',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (29,NULL,55,'Subject for Interview','2022-10-07 09:31:30',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (30,NULL,1,'Subject for Meeting','2022-11-26 13:54:55',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (31,NULL,22,'Subject for Print/Merge Document','2022-02-23 08:00:41',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (32,NULL,22,'Subject for Print/Merge Document','2022-06-08 18:38:24',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (33,NULL,2,'Subject for Phone Call','2022-11-20 04:00:38',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (34,NULL,9,'Subject for Tell a Friend','2022-09-02 00:44:30',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (35,NULL,9,'Subject for Tell a Friend','2022-11-19 03:03:57',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (36,NULL,22,'Subject for Print/Merge Document','2022-05-05 20:50:19',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (37,NULL,2,'Subject for Phone Call','2022-08-19 11:07:41',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (38,NULL,9,'Subject for Tell a Friend','2022-08-19 05:33:23',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (39,NULL,2,'Subject for Phone Call','2022-10-15 03:01:57',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (40,NULL,55,'Subject for Interview','2022-06-28 19:08:47',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (41,NULL,2,'Subject for Phone Call','2022-08-21 23:20:26',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (42,NULL,22,'Subject for Print/Merge Document','2022-04-05 11:22:04',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (43,NULL,22,'Subject for Print/Merge Document','2022-02-23 19:23:16',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (44,NULL,22,'Subject for Print/Merge Document','2022-02-10 23:26:35',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (45,NULL,1,'Subject for Meeting','2022-07-08 17:49:54',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (46,NULL,2,'Subject for Phone Call','2022-01-31 11:39:31',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (47,NULL,55,'Subject for Interview','2022-05-31 14:38:44',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (48,NULL,1,'Subject for Meeting','2022-04-01 11:56:24',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (49,NULL,2,'Subject for Phone Call','2022-10-30 04:58:47',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (50,NULL,1,'Subject for Meeting','2022-10-10 21:16:54',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (51,NULL,2,'Subject for Phone Call','2022-03-08 20:17:19',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (52,NULL,55,'Subject for Interview','2022-03-31 06:07:09',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (53,NULL,22,'Subject for Print/Merge Document','2022-11-04 01:48:16',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (54,NULL,9,'Subject for Tell a Friend','2022-06-19 13:53:01',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (55,NULL,2,'Subject for Phone Call','2022-11-20 01:33:15',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (56,NULL,55,'Subject for Interview','2022-06-29 23:06:24',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (57,NULL,1,'Subject for Meeting','2022-08-15 09:57:34',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (58,NULL,1,'Subject for Meeting','2022-01-17 19:41:07',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (59,NULL,1,'Subject for Meeting','2022-09-21 18:50:24',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (60,NULL,22,'Subject for Print/Merge Document','2022-01-26 08:35:23',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (61,NULL,55,'Subject for Interview','2022-02-23 08:13:59',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (62,NULL,55,'Subject for Interview','2021-12-16 19:15:03',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (63,NULL,2,'Subject for Phone Call','2022-10-04 19:13:33',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (64,NULL,2,'Subject for Phone Call','2022-07-16 21:17:58',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (65,NULL,2,'Subject for Phone Call','2022-04-17 00:47:50',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (66,NULL,55,'Subject for Interview','2022-08-26 00:38:29',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (67,NULL,9,'Subject for Tell a Friend','2022-01-29 03:02:10',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (68,NULL,55,'Subject for Interview','2022-10-31 06:00:58',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (69,NULL,1,'Subject for Meeting','2022-08-27 20:25:55',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (70,NULL,1,'Subject for Meeting','2022-01-18 23:57:20',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (71,NULL,9,'Subject for Tell a Friend','2022-09-10 11:23:53',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (72,NULL,22,'Subject for Print/Merge Document','2022-06-28 23:55:34',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (73,NULL,22,'Subject for Print/Merge Document','2022-09-16 15:08:42',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (74,NULL,9,'Subject for Tell a Friend','2022-10-12 03:21:27',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (75,NULL,1,'Subject for Meeting','2022-03-03 10:26:28',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (76,NULL,22,'Subject for Print/Merge Document','2022-03-03 15:34:34',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (77,NULL,9,'Subject for Tell a Friend','2022-03-24 07:50:04',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (78,NULL,2,'Subject for Phone Call','2022-06-30 12:53:21',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (79,NULL,22,'Subject for Print/Merge Document','2022-09-11 11:11:52',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (80,NULL,2,'Subject for Phone Call','2021-12-22 21:48:26',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (81,NULL,1,'Subject for Meeting','2022-09-18 05:57:13',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (82,NULL,55,'Subject for Interview','2022-01-14 12:24:59',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (83,NULL,55,'Subject for Interview','2022-08-13 07:45:10',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (84,NULL,55,'Subject for Interview','2022-06-12 08:28:02',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (85,NULL,22,'Subject for Print/Merge Document','2022-07-22 00:59:49',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (86,NULL,2,'Subject for Phone Call','2022-01-21 16:27:50',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (87,NULL,1,'Subject for Meeting','2022-03-13 08:32:27',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (88,NULL,22,'Subject for Print/Merge Document','2022-09-29 05:49:02',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (89,NULL,2,'Subject for Phone Call','2022-09-06 21:18:47',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (90,NULL,55,'Subject for Interview','2022-09-03 00:36:47',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (91,NULL,1,'Subject for Meeting','2022-01-28 03:43:43',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (92,NULL,1,'Subject for Meeting','2022-10-01 04:59:32',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (93,NULL,1,'Subject for Meeting','2022-02-01 14:53:04',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (94,NULL,2,'Subject for Phone Call','2022-02-24 04:19:46',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (95,NULL,1,'Subject for Meeting','2022-04-03 03:25:03',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (96,NULL,55,'Subject for Interview','2022-07-18 13:20:33',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (97,NULL,55,'Subject for Interview','2022-04-11 15:17:37',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (98,NULL,2,'Subject for Phone Call','2022-07-05 09:09:45',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (99,NULL,2,'Subject for Phone Call','2021-12-25 14:52:07',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (100,NULL,55,'Subject for Interview','2022-02-01 17:06:35',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (101,NULL,22,'Subject for Print/Merge Document','2022-01-02 14:11:50',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (102,NULL,2,'Subject for Phone Call','2022-04-05 03:34:16',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (103,NULL,1,'Subject for Meeting','2022-04-24 10:18:40',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (104,NULL,1,'Subject for Meeting','2022-04-25 03:37:45',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (105,NULL,9,'Subject for Tell a Friend','2022-07-13 07:39:56',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (106,NULL,22,'Subject for Print/Merge Document','2022-07-18 00:52:17',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (107,NULL,55,'Subject for Interview','2022-02-24 19:43:23',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (108,NULL,2,'Subject for Phone Call','2022-01-07 12:19:40',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (109,NULL,1,'Subject for Meeting','2022-09-14 05:21:00',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (110,NULL,2,'Subject for Phone Call','2022-09-25 09:03:10',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (111,NULL,55,'Subject for Interview','2022-03-08 08:43:17',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (112,NULL,9,'Subject for Tell a Friend','2022-02-02 18:27:50',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (113,NULL,9,'Subject for Tell a Friend','2022-06-01 05:14:41',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (114,NULL,9,'Subject for Tell a Friend','2022-03-30 07:51:46',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (115,NULL,9,'Subject for Tell a Friend','2022-08-28 04:05:34',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (116,NULL,22,'Subject for Print/Merge Document','2022-09-17 04:37:46',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (117,NULL,55,'Subject for Interview','2022-05-04 13:56:24',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (118,NULL,9,'Subject for Tell a Friend','2022-08-12 10:55:42',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (119,NULL,22,'Subject for Print/Merge Document','2022-10-01 19:15:18',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (120,NULL,9,'Subject for Tell a Friend','2022-05-06 12:31:21',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (121,NULL,9,'Subject for Tell a Friend','2022-09-12 17:32:48',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (122,NULL,55,'Subject for Interview','2022-05-19 00:15:51',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (123,NULL,22,'Subject for Print/Merge Document','2022-03-18 02:43:22',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (124,NULL,55,'Subject for Interview','2022-10-16 23:36:48',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (125,NULL,9,'Subject for Tell a Friend','2022-12-07 02:27:57',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (126,NULL,55,'Subject for Interview','2022-09-09 21:10:23',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (127,NULL,9,'Subject for Tell a Friend','2022-05-27 13:25:49',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (128,NULL,2,'Subject for Phone Call','2022-03-09 13:57:13',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (129,NULL,22,'Subject for Print/Merge Document','2022-06-22 13:44:17',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (130,NULL,22,'Subject for Print/Merge Document','2022-02-28 10:52:54',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (131,NULL,55,'Subject for Interview','2022-02-08 20:42:29',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (132,NULL,22,'Subject for Print/Merge Document','2022-09-13 02:08:01',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (133,NULL,55,'Subject for Interview','2022-05-19 22:58:36',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (134,NULL,2,'Subject for Phone Call','2022-11-09 06:44:47',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (135,NULL,2,'Subject for Phone Call','2022-04-01 00:47:15',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (136,NULL,1,'Subject for Meeting','2022-01-06 04:33:14',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (137,NULL,1,'Subject for Meeting','2022-06-14 15:10:11',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (138,NULL,2,'Subject for Phone Call','2022-03-03 11:34:10',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (139,NULL,9,'Subject for Tell a Friend','2022-06-10 08:26:20',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (140,NULL,2,'Subject for Phone Call','2022-03-29 08:22:12',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (141,NULL,2,'Subject for Phone Call','2022-03-22 00:55:39',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (142,NULL,1,'Subject for Meeting','2022-11-06 00:25:59',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (143,NULL,9,'Subject for Tell a Friend','2022-04-24 14:59:57',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (144,NULL,9,'Subject for Tell a Friend','2022-12-04 00:01:54',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (145,NULL,9,'Subject for Tell a Friend','2022-12-02 03:10:01',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (146,NULL,1,'Subject for Meeting','2022-09-29 02:52:21',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (147,NULL,9,'Subject for Tell a Friend','2022-09-26 22:16:26',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (148,NULL,55,'Subject for Interview','2022-08-25 18:17:43',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (149,NULL,2,'Subject for Phone Call','2022-02-04 20:26:43',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (150,NULL,1,'Subject for Meeting','2022-03-25 22:02:44',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (151,NULL,22,'Subject for Print/Merge Document','2022-06-29 13:47:13',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (152,NULL,1,'Subject for Meeting','2022-12-01 18:27:05',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (153,NULL,1,'Subject for Meeting','2022-01-23 15:15:47',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (154,NULL,1,'Subject for Meeting','2022-10-28 18:57:58',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (155,NULL,9,'Subject for Tell a Friend','2022-04-03 13:40:38',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (156,NULL,55,'Subject for Interview','2022-12-04 03:02:15',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (157,NULL,22,'Subject for Print/Merge Document','2022-05-23 16:32:40',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (158,NULL,55,'Subject for Interview','2022-07-20 15:27:05',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (159,NULL,22,'Subject for Print/Merge Document','2022-07-22 00:46:32',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (160,NULL,2,'Subject for Phone Call','2022-05-24 07:22:01',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (161,NULL,1,'Subject for Meeting','2022-01-01 03:33:37',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (162,NULL,22,'Subject for Print/Merge Document','2022-03-21 17:47:41',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (163,NULL,55,'Subject for Interview','2022-09-30 11:51:38',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (164,NULL,1,'Subject for Meeting','2022-04-17 13:43:14',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (165,NULL,9,'Subject for Tell a Friend','2022-05-18 07:32:13',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (166,NULL,2,'Subject for Phone Call','2022-08-26 07:08:58',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (167,NULL,22,'Subject for Print/Merge Document','2022-06-20 09:28:31',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (168,NULL,9,'Subject for Tell a Friend','2022-07-18 10:48:30',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (169,NULL,55,'Subject for Interview','2022-09-03 12:05:00',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (170,NULL,2,'Subject for Phone Call','2022-10-25 00:28:42',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (171,NULL,55,'Subject for Interview','2022-12-04 02:22:36',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (172,NULL,9,'Subject for Tell a Friend','2022-11-15 19:34:35',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (173,NULL,22,'Subject for Print/Merge Document','2022-03-29 20:08:48',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (174,NULL,2,'Subject for Phone Call','2022-06-22 15:50:41',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (175,NULL,55,'Subject for Interview','2022-10-02 01:57:08',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (176,NULL,22,'Subject for Print/Merge Document','2022-09-23 10:12:28',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (177,NULL,55,'Subject for Interview','2022-01-07 23:55:28',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (178,NULL,22,'Subject for Print/Merge Document','2022-07-20 22:34:37',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (179,NULL,22,'Subject for Print/Merge Document','2022-11-14 02:02:57',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (180,NULL,1,'Subject for Meeting','2022-03-17 16:44:58',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (181,NULL,22,'Subject for Print/Merge Document','2022-02-19 23:54:33',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (182,NULL,55,'Subject for Interview','2022-01-26 06:48:03',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (183,NULL,22,'Subject for Print/Merge Document','2022-02-10 10:15:46',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (184,NULL,55,'Subject for Interview','2022-05-02 08:21:47',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (185,NULL,2,'Subject for Phone Call','2022-06-05 00:26:55',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (186,NULL,2,'Subject for Phone Call','2022-03-30 12:28:37',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (187,NULL,9,'Subject for Tell a Friend','2022-11-11 23:29:46',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (188,NULL,1,'Subject for Meeting','2022-08-01 00:37:42',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (189,NULL,22,'Subject for Print/Merge Document','2022-08-05 00:01:39',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (190,NULL,9,'Subject for Tell a Friend','2022-09-01 21:55:26',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (191,NULL,22,'Subject for Print/Merge Document','2022-11-10 18:27:57',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (192,NULL,2,'Subject for Phone Call','2022-05-25 06:29:08',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (193,NULL,9,'Subject for Tell a Friend','2021-12-10 12:51:30',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (194,NULL,2,'Subject for Phone Call','2021-12-23 07:18:04',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (195,NULL,1,'Subject for Meeting','2021-12-28 09:21:01',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (196,NULL,2,'Subject for Phone Call','2022-09-16 01:00:01',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (197,NULL,2,'Subject for Phone Call','2022-10-25 00:08:56',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (198,NULL,1,'Subject for Meeting','2022-02-11 18:33:52',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (199,NULL,2,'Subject for Phone Call','2022-07-07 06:24:18',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (200,NULL,22,'Subject for Print/Merge Document','2022-11-27 05:14:58',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (201,NULL,2,'Subject for Phone Call','2022-11-09 09:38:08',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (202,NULL,2,'Subject for Phone Call','2022-08-05 14:56:14',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (203,NULL,22,'Subject for Print/Merge Document','2022-11-11 19:47:06',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (204,NULL,22,'Subject for Print/Merge Document','2022-10-05 19:52:54',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (205,NULL,9,'Subject for Tell a Friend','2022-03-17 03:52:14',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (206,NULL,22,'Subject for Print/Merge Document','2022-02-12 01:38:08',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (207,NULL,2,'Subject for Phone Call','2022-01-10 02:19:30',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (208,NULL,2,'Subject for Phone Call','2022-04-21 04:57:31',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (209,NULL,9,'Subject for Tell a Friend','2022-02-11 18:17:02',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (210,NULL,9,'Subject for Tell a Friend','2022-10-26 02:14:04',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (211,NULL,1,'Subject for Meeting','2022-11-22 11:01:53',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (212,NULL,22,'Subject for Print/Merge Document','2022-05-04 12:19:00',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (213,NULL,55,'Subject for Interview','2022-01-22 13:55:25',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (214,NULL,55,'Subject for Interview','2022-09-11 06:33:04',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (215,NULL,2,'Subject for Phone Call','2022-02-18 06:57:57',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (216,NULL,9,'Subject for Tell a Friend','2022-10-12 12:14:16',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (217,NULL,9,'Subject for Tell a Friend','2022-08-22 22:25:05',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (218,NULL,1,'Subject for Meeting','2022-04-26 16:30:24',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (219,NULL,9,'Subject for Tell a Friend','2022-05-08 04:15:25',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (220,NULL,55,'Subject for Interview','2022-07-26 19:30:36',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (221,NULL,2,'Subject for Phone Call','2021-12-13 00:37:55',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (222,NULL,55,'Subject for Interview','2022-06-22 13:26:35',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (223,NULL,9,'Subject for Tell a Friend','2022-06-12 15:33:33',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (224,NULL,1,'Subject for Meeting','2022-03-05 20:36:16',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (225,NULL,9,'Subject for Tell a Friend','2021-12-14 01:31:16',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (226,NULL,2,'Subject for Phone Call','2022-11-01 13:10:43',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (227,NULL,55,'Subject for Interview','2022-01-31 09:07:17',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (228,NULL,22,'Subject for Print/Merge Document','2021-12-17 20:15:50',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (229,NULL,9,'Subject for Tell a Friend','2022-08-29 13:20:00',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (230,NULL,22,'Subject for Print/Merge Document','2022-01-06 08:30:33',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (231,NULL,9,'Subject for Tell a Friend','2022-01-23 08:43:21',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (232,NULL,9,'Subject for Tell a Friend','2022-03-16 13:48:11',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (233,NULL,55,'Subject for Interview','2022-12-07 16:46:23',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (234,NULL,2,'Subject for Phone Call','2022-02-03 12:40:56',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (235,NULL,22,'Subject for Print/Merge Document','2022-06-17 00:29:10',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (236,NULL,1,'Subject for Meeting','2022-07-17 19:42:34',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (237,NULL,22,'Subject for Print/Merge Document','2022-03-23 12:02:31',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (238,NULL,1,'Subject for Meeting','2022-09-23 10:56:09',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (239,NULL,55,'Subject for Interview','2022-01-10 20:01:24',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (240,NULL,2,'Subject for Phone Call','2022-11-21 09:03:59',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (241,NULL,9,'Subject for Tell a Friend','2022-10-07 18:52:58',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (242,NULL,1,'Subject for Meeting','2022-11-24 21:00:57',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (243,NULL,55,'Subject for Interview','2022-07-12 19:13:51',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (244,NULL,9,'Subject for Tell a Friend','2022-02-12 06:01:07',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (245,NULL,22,'Subject for Print/Merge Document','2022-03-29 18:30:01',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (246,NULL,1,'Subject for Meeting','2022-06-27 06:17:33',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (247,NULL,55,'Subject for Interview','2022-10-27 06:50:03',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (248,NULL,2,'Subject for Phone Call','2022-05-31 17:36:29',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (249,NULL,55,'Subject for Interview','2022-01-02 21:04:06',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (250,NULL,9,'Subject for Tell a Friend','2022-06-21 05:31:44',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (251,NULL,55,'Subject for Interview','2022-06-21 09:53:40',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (252,NULL,55,'Subject for Interview','2022-02-10 12:42:09',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (253,NULL,22,'Subject for Print/Merge Document','2022-06-09 00:57:56',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (254,NULL,1,'Subject for Meeting','2022-09-30 08:36:10',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (255,NULL,1,'Subject for Meeting','2022-02-01 18:53:38',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (256,NULL,2,'Subject for Phone Call','2022-12-07 02:31:56',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (257,NULL,9,'Subject for Tell a Friend','2022-07-26 19:06:59',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (258,NULL,9,'Subject for Tell a Friend','2021-12-30 08:00:27',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (259,NULL,55,'Subject for Interview','2022-06-10 23:50:18',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (260,NULL,9,'Subject for Tell a Friend','2022-09-10 10:54:32',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (261,NULL,55,'Subject for Interview','2022-10-05 11:02:40',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (262,NULL,1,'Subject for Meeting','2022-08-19 17:00:22',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (263,NULL,2,'Subject for Phone Call','2022-09-23 12:59:57',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (264,NULL,9,'Subject for Tell a Friend','2022-11-17 15:43:36',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (265,NULL,2,'Subject for Phone Call','2022-05-26 07:53:59',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (266,NULL,55,'Subject for Interview','2022-04-01 05:33:59',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (267,NULL,1,'Subject for Meeting','2022-11-12 21:54:51',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (268,NULL,22,'Subject for Print/Merge Document','2022-08-09 03:50:07',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (269,NULL,22,'Subject for Print/Merge Document','2022-07-27 04:25:53',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (270,NULL,9,'Subject for Tell a Friend','2022-06-10 18:58:02',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (271,NULL,22,'Subject for Print/Merge Document','2022-05-04 19:22:03',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (272,NULL,9,'Subject for Tell a Friend','2022-06-09 15:39:46',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (273,NULL,2,'Subject for Phone Call','2022-11-22 18:05:58',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (274,NULL,2,'Subject for Phone Call','2022-05-05 10:45:59',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (275,NULL,22,'Subject for Print/Merge Document','2022-05-22 08:30:31',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (276,NULL,1,'Subject for Meeting','2022-05-02 21:42:50',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (277,NULL,55,'Subject for Interview','2022-11-03 08:56:26',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (278,NULL,22,'Subject for Print/Merge Document','2022-06-18 08:13:37',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (279,NULL,1,'Subject for Meeting','2022-04-07 01:03:37',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (280,NULL,2,'Subject for Phone Call','2022-03-15 11:34:19',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (281,NULL,2,'Subject for Phone Call','2022-03-20 00:53:28',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (282,NULL,55,'Subject for Interview','2021-12-21 01:08:38',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (283,NULL,22,'Subject for Print/Merge Document','2022-05-11 08:36:44',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (284,NULL,1,'Subject for Meeting','2022-03-17 23:06:56',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (285,NULL,9,'Subject for Tell a Friend','2022-06-19 12:37:29',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (286,NULL,55,'Subject for Interview','2022-07-31 13:43:09',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (287,NULL,22,'Subject for Print/Merge Document','2022-07-29 14:44:27',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (288,NULL,55,'Subject for Interview','2022-04-19 07:12:04',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (289,NULL,1,'Subject for Meeting','2022-08-15 01:10:23',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (290,NULL,9,'Subject for Tell a Friend','2022-02-03 00:20:10',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (291,NULL,1,'Subject for Meeting','2022-10-24 10:15:41',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (292,NULL,55,'Subject for Interview','2022-06-14 17:18:26',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (293,NULL,55,'Subject for Interview','2022-04-29 09:16:52',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (294,NULL,55,'Subject for Interview','2022-08-09 11:21:24',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (295,NULL,9,'Subject for Tell a Friend','2022-04-26 18:56:14',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (296,NULL,55,'Subject for Interview','2022-05-15 01:36:08',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (297,NULL,55,'Subject for Interview','2022-04-11 04:02:02',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (298,NULL,1,'Subject for Meeting','2022-07-28 19:39:24',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (299,NULL,22,'Subject for Print/Merge Document','2022-09-08 14:38:24',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (300,NULL,2,'Subject for Phone Call','2022-03-08 05:33:23',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (301,NULL,2,'Subject for Phone Call','2022-07-30 19:09:18',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (302,NULL,55,'Subject for Interview','2022-05-05 01:06:35',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (303,NULL,1,'Subject for Meeting','2022-10-01 18:21:32',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (304,NULL,1,'Subject for Meeting','2022-09-17 21:18:22',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (305,NULL,9,'Subject for Tell a Friend','2022-09-09 11:06:03',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (306,NULL,55,'Subject for Interview','2022-04-06 06:39:32',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (307,NULL,9,'Subject for Tell a Friend','2022-08-20 01:50:17',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (308,NULL,22,'Subject for Print/Merge Document','2022-05-16 21:25:42',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (309,NULL,22,'Subject for Print/Merge Document','2022-01-28 16:50:35',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (310,NULL,55,'Subject for Interview','2022-03-12 21:11:57',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (311,NULL,9,'Subject for Tell a Friend','2022-01-29 15:05:49',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (312,NULL,55,'Subject for Interview','2022-10-12 05:38:18',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (313,NULL,1,'Subject for Meeting','2022-09-17 09:50:14',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (314,NULL,1,'Subject for Meeting','2022-08-06 21:49:31',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (315,NULL,22,'Subject for Print/Merge Document','2022-11-30 23:47:19',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (316,NULL,1,'Subject for Meeting','2022-01-23 14:39:30',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (317,NULL,9,'Subject for Tell a Friend','2022-11-28 06:05:45',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (318,NULL,55,'Subject for Interview','2022-09-20 09:15:35',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (319,NULL,55,'Subject for Interview','2022-12-03 07:13:58',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (320,NULL,1,'Subject for Meeting','2022-07-19 07:27:17',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (321,NULL,22,'Subject for Print/Merge Document','2022-02-15 16:45:37',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (322,NULL,9,'Subject for Tell a Friend','2022-08-28 17:21:19',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (323,NULL,2,'Subject for Phone Call','2021-12-26 20:36:14',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (324,NULL,55,'Subject for Interview','2022-05-22 16:16:26',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (325,NULL,22,'Subject for Print/Merge Document','2022-02-19 00:33:39',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (326,NULL,22,'Subject for Print/Merge Document','2022-07-06 07:23:18',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (327,NULL,55,'Subject for Interview','2022-11-17 17:11:26',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (328,NULL,2,'Subject for Phone Call','2022-07-16 19:32:50',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (329,NULL,1,'Subject for Meeting','2022-08-18 10:36:51',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (330,NULL,22,'Subject for Print/Merge Document','2022-02-23 19:26:17',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (331,NULL,2,'Subject for Phone Call','2022-11-01 21:19:11',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (332,NULL,1,'Subject for Meeting','2022-05-04 11:24:41',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (333,NULL,9,'Subject for Tell a Friend','2022-02-28 14:04:37',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (334,NULL,55,'Subject for Interview','2022-08-04 18:13:40',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (335,NULL,2,'Subject for Phone Call','2022-04-15 02:56:30',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (336,NULL,9,'Subject for Tell a Friend','2022-02-16 04:05:14',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (337,NULL,2,'Subject for Phone Call','2022-08-11 10:29:54',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (338,NULL,55,'Subject for Interview','2022-11-12 10:31:32',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (339,NULL,1,'Subject for Meeting','2021-12-10 04:22:15',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (340,NULL,2,'Subject for Phone Call','2022-06-08 23:05:04',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (341,NULL,55,'Subject for Interview','2022-03-18 12:24:37',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (342,NULL,22,'Subject for Print/Merge Document','2022-11-29 07:23:08',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (343,NULL,9,'Subject for Tell a Friend','2021-12-25 21:36:18',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (344,NULL,55,'Subject for Interview','2021-12-30 01:05:14',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (345,NULL,55,'Subject for Interview','2022-03-28 06:20:22',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (346,NULL,2,'Subject for Phone Call','2022-04-16 08:34:02',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (347,NULL,1,'Subject for Meeting','2022-06-17 21:35:09',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (348,NULL,1,'Subject for Meeting','2022-08-29 18:10:19',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (349,NULL,2,'Subject for Phone Call','2022-01-22 17:21:33',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (350,NULL,22,'Subject for Print/Merge Document','2022-03-23 18:03:27',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (351,NULL,22,'Subject for Print/Merge Document','2021-12-15 09:32:31',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (352,NULL,22,'Subject for Print/Merge Document','2022-06-03 21:15:41',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (353,NULL,55,'Subject for Interview','2022-02-04 19:03:51',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (354,NULL,55,'Subject for Interview','2022-01-17 08:01:31',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (355,NULL,9,'Subject for Tell a Friend','2022-03-10 15:07:44',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (356,NULL,2,'Subject for Phone Call','2022-09-25 23:20:48',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (357,NULL,55,'Subject for Interview','2022-02-13 11:15:02',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (358,NULL,2,'Subject for Phone Call','2022-08-11 16:21:51',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (359,NULL,9,'Subject for Tell a Friend','2022-03-12 23:33:13',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (360,NULL,9,'Subject for Tell a Friend','2022-07-02 23:40:40',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (361,NULL,9,'Subject for Tell a Friend','2022-03-28 18:13:03',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (362,NULL,55,'Subject for Interview','2022-05-17 02:12:49',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (363,NULL,55,'Subject for Interview','2022-07-01 20:34:50',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (364,NULL,9,'Subject for Tell a Friend','2022-07-23 20:50:19',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (365,NULL,22,'Subject for Print/Merge Document','2022-05-07 18:54:03',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (366,NULL,22,'Subject for Print/Merge Document','2022-06-26 20:56:41',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (367,NULL,9,'Subject for Tell a Friend','2022-06-18 05:31:38',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (368,NULL,22,'Subject for Print/Merge Document','2022-06-14 01:55:41',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (369,NULL,55,'Subject for Interview','2022-04-05 08:38:04',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (370,NULL,9,'Subject for Tell a Friend','2022-09-29 01:52:57',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (371,NULL,1,'Subject for Meeting','2021-12-16 21:05:24',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (372,NULL,1,'Subject for Meeting','2022-09-11 11:20:37',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (373,NULL,1,'Subject for Meeting','2022-01-11 23:58:10',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (374,NULL,2,'Subject for Phone Call','2022-11-22 01:59:41',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (375,NULL,9,'Subject for Tell a Friend','2022-07-11 22:27:14',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (376,NULL,55,'Subject for Interview','2021-12-21 23:16:28',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (377,NULL,22,'Subject for Print/Merge Document','2022-04-07 04:39:33',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (378,NULL,1,'Subject for Meeting','2022-08-17 11:18:15',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (379,NULL,55,'Subject for Interview','2022-11-15 15:09:14',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (380,NULL,22,'Subject for Print/Merge Document','2022-04-23 00:16:01',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (381,NULL,55,'Subject for Interview','2022-10-22 21:32:43',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (382,NULL,22,'Subject for Print/Merge Document','2022-07-23 19:57:20',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (383,NULL,55,'Subject for Interview','2022-08-04 19:50:33',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (384,NULL,9,'Subject for Tell a Friend','2022-02-09 23:35:07',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (385,NULL,55,'Subject for Interview','2022-05-28 04:34:31',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (386,NULL,9,'Subject for Tell a Friend','2022-01-02 12:38:40',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (387,NULL,9,'Subject for Tell a Friend','2022-01-04 07:23:56',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (388,NULL,55,'Subject for Interview','2022-10-16 03:47:44',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (389,NULL,9,'Subject for Tell a Friend','2022-04-23 13:06:57',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'), - (390,NULL,9,'Subject for Tell a Friend','2022-07-16 13:10:45',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (391,NULL,2,'Subject for Phone Call','2022-02-09 20:32:05',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (392,NULL,1,'Subject for Meeting','2022-11-30 15:01:50',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (393,NULL,1,'Subject for Meeting','2022-03-08 13:54:53',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (394,NULL,55,'Subject for Interview','2022-06-24 18:00:18',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (395,NULL,22,'Subject for Print/Merge Document','2022-05-02 17:32:10',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (396,NULL,9,'Subject for Tell a Friend','2022-06-25 09:23:46',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (397,NULL,22,'Subject for Print/Merge Document','2022-08-01 02:37:50',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (398,NULL,2,'Subject for Phone Call','2022-09-22 10:47:25',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (399,NULL,55,'Subject for Interview','2022-10-10 03:38:43',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (400,NULL,9,'Subject for Tell a Friend','2022-08-17 02:17:50',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (401,NULL,22,'Subject for Print/Merge Document','2022-10-31 11:23:26',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (402,NULL,55,'Subject for Interview','2022-06-10 07:00:58',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (403,NULL,1,'Subject for Meeting','2022-10-26 20:24:10',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (404,NULL,1,'Subject for Meeting','2022-02-05 04:20:24',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (405,NULL,1,'Subject for Meeting','2022-05-03 02:18:18',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (406,NULL,22,'Subject for Print/Merge Document','2022-09-10 09:22:25',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (407,NULL,1,'Subject for Meeting','2021-12-27 13:32:02',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (408,NULL,22,'Subject for Print/Merge Document','2022-02-01 04:53:21',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (409,NULL,1,'Subject for Meeting','2022-07-10 11:14:26',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (410,NULL,1,'Subject for Meeting','2022-10-17 22:36:22',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (411,NULL,55,'Subject for Interview','2022-01-16 06:29:45',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (412,NULL,1,'Subject for Meeting','2022-11-07 10:52:55',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (413,NULL,9,'Subject for Tell a Friend','2022-02-18 06:55:40',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (414,NULL,9,'Subject for Tell a Friend','2021-12-13 20:11:35',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (415,NULL,9,'Subject for Tell a Friend','2022-02-12 08:15:16',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (416,NULL,1,'Subject for Meeting','2022-07-23 22:51:32',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (417,NULL,9,'Subject for Tell a Friend','2021-12-18 14:16:48',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (418,NULL,9,'Subject for Tell a Friend','2022-10-11 20:24:22',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (419,NULL,9,'Subject for Tell a Friend','2022-05-25 17:38:14',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (420,NULL,22,'Subject for Print/Merge Document','2022-01-09 06:57:00',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (421,NULL,55,'Subject for Interview','2022-09-14 22:09:46',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (422,NULL,2,'Subject for Phone Call','2022-06-17 05:56:42',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (423,NULL,2,'Subject for Phone Call','2022-05-18 07:56:42',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (424,NULL,1,'Subject for Meeting','2021-12-12 22:51:16',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (425,NULL,22,'Subject for Print/Merge Document','2022-05-19 03:02:28',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (426,NULL,22,'Subject for Print/Merge Document','2022-08-11 10:34:05',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (427,NULL,55,'Subject for Interview','2022-05-28 07:07:16',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (428,NULL,1,'Subject for Meeting','2022-04-09 15:52:05',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (429,NULL,2,'Subject for Phone Call','2022-05-05 21:51:06',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (430,NULL,9,'Subject for Tell a Friend','2022-02-22 01:22:55',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (431,NULL,1,'Subject for Meeting','2022-05-31 18:57:16',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (432,NULL,22,'Subject for Print/Merge Document','2022-03-12 03:38:54',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (433,NULL,2,'Subject for Phone Call','2022-10-19 08:05:29',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (434,NULL,9,'Subject for Tell a Friend','2022-09-15 04:00:38',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (435,NULL,1,'Subject for Meeting','2022-10-13 15:17:00',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (436,NULL,9,'Subject for Tell a Friend','2021-12-11 04:54:32',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (437,NULL,9,'Subject for Tell a Friend','2022-04-14 15:32:11',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (438,NULL,2,'Subject for Phone Call','2022-11-02 05:13:37',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (439,NULL,2,'Subject for Phone Call','2022-09-22 12:24:44',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (440,NULL,55,'Subject for Interview','2022-03-12 19:42:06',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (441,NULL,9,'Subject for Tell a Friend','2022-02-23 12:19:08',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (442,NULL,55,'Subject for Interview','2022-05-17 14:06:35',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (443,NULL,9,'Subject for Tell a Friend','2022-07-27 15:08:37',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (444,NULL,22,'Subject for Print/Merge Document','2022-09-18 22:07:05',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (445,NULL,9,'Subject for Tell a Friend','2022-04-17 06:59:50',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (446,NULL,2,'Subject for Phone Call','2022-05-26 04:04:29',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (447,NULL,1,'Subject for Meeting','2022-10-04 10:08:52',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (448,NULL,55,'Subject for Interview','2022-01-14 06:00:52',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (449,NULL,9,'Subject for Tell a Friend','2022-07-12 19:06:37',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (450,NULL,22,'Subject for Print/Merge Document','2022-01-10 05:19:46',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (451,1,6,'$ 125 April Mailer 1','2023-02-07 16:48:59',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (452,2,6,'$ 50 Online: Save the Penguins','2023-02-07 16:48:59',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (453,3,6,'£ 25 April Mailer 1','2023-02-07 16:48:59',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (454,4,6,'$ 50 Online: Save the Penguins','2023-02-07 16:48:59',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (455,5,6,'$ 50 Online: Save the Penguins','2023-02-07 16:48:59',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (456,6,6,'$ 500 April Mailer 1','2023-02-07 16:48:59',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (457,7,6,'$ 1750 Online: Save the Penguins','2023-02-07 16:48:59',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (458,8,6,'$ 50 Online: Save the Penguins','2023-02-07 16:48:59',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (459,9,6,'$ 10 Online: Help CiviCRM','2023-02-07 16:48:59',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (460,10,6,'$ 250 Online: Help CiviCRM','2023-02-07 16:48:59',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (461,11,6,'Â¥ 500 ','2023-02-07 16:48:59',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (462,12,6,'$ 50 Online: Save the Penguins','2023-02-07 16:48:59',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (463,13,6,'$ 50 ','2023-02-07 16:48:59',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (464,14,6,'$ 50 ','2023-02-07 16:48:59',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (465,15,6,'$ 25 Recurring contribution','2023-02-07 16:48:59',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (466,16,6,'$ 25 Recurring contribution','2023-02-07 16:48:59',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (467,17,6,'$ 25 Recurring contribution','2023-02-07 16:48:59',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (468,18,6,'$ 25 Recurring contribution','2023-02-07 16:48:59',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (469,19,6,'$ 25 Recurring contribution','2023-02-07 16:48:59',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (470,20,6,'$ 25 Recurring contribution','2023-02-07 16:48:59',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (471,21,6,'$ 25 Recurring contribution','2023-02-07 16:48:59',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (472,22,6,'$ 25 Recurring contribution','2023-02-07 16:48:59',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (473,23,6,'$ 25 Recurring contribution','2023-02-07 16:48:59',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (474,24,6,'$ 25 Recurring contribution','2023-02-07 16:48:59',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (475,25,6,'$ 25 Recurring contribution','2023-02-07 16:48:59',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (476,26,6,'$ 10 Recurring contribution','2023-02-07 16:48:59',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (477,27,6,'$ 10 Recurring contribution','2023-02-07 16:48:59',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (478,28,6,'$ 10 Recurring contribution','2023-02-07 16:48:59',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (479,29,6,'$ 10 Recurring contribution','2023-02-07 16:48:59',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (480,30,6,'$ 10 Recurring contribution','2023-02-07 16:48:59',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (481,31,6,'€ 5 Recurring contribution','2023-02-07 16:48:59',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (482,1,7,'General','2022-12-07 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (483,2,7,'Student','2022-12-06 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (484,3,7,'General','2022-12-05 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (485,4,7,'Student','2022-12-04 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (486,5,7,'General','2020-11-05 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (487,6,7,'Student','2022-12-02 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (488,7,7,'General','2022-12-01 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (489,8,7,'Student','2022-11-30 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (490,9,7,'General','2022-11-29 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (491,10,7,'General','2020-09-26 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (492,11,7,'Lifetime','2022-11-27 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (493,12,7,'Student','2022-11-26 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (494,13,7,'General','2022-11-25 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (495,14,7,'Student','2022-11-24 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (496,15,7,'General','2020-08-17 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (497,16,7,'Student','2022-11-22 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (498,17,7,'General','2022-11-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (499,18,7,'Student','2022-11-20 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (500,19,7,'General','2022-11-19 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (501,20,7,'General','2020-07-08 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (502,21,7,'General','2022-11-17 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (503,22,7,'Lifetime','2022-11-16 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (504,23,7,'General','2022-11-15 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (505,24,7,'Student','2022-11-14 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (506,25,7,'General','2020-05-29 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (507,26,7,'Student','2022-11-12 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (508,27,7,'General','2022-11-11 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (509,28,7,'Student','2022-11-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (510,29,7,'General','2022-11-09 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (511,30,7,'General','2020-04-19 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (512,32,6,'$ 100.00 - General Membership: Offline signup','2022-12-07 16:48:59',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (513,33,6,'$ 50.00 - Student Membership: Offline signup','2022-12-07 16:48:59',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (514,34,6,'$ 100.00 - General Membership: Offline signup','2022-12-07 16:48:59',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (515,35,6,'$ 50.00 - Student Membership: Offline signup','2022-12-07 16:48:59',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (516,36,6,'$ 100.00 - General Membership: Offline signup','2022-12-07 16:48:59',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (517,37,6,'$ 50.00 - Student Membership: Offline signup','2022-12-07 16:48:59',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (518,38,6,'$ 100.00 - General Membership: Offline signup','2022-12-07 16:48:59',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (519,39,6,'$ 50.00 - Student Membership: Offline signup','2022-12-07 16:48:59',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (520,40,6,'$ 100.00 - General Membership: Offline signup','2022-12-07 16:48:59',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (521,41,6,'$ 100.00 - General Membership: Offline signup','2022-12-07 16:48:59',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (522,42,6,'$ 1200.00 - Lifetime Membership: Offline signup','2022-12-07 16:48:59',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (523,43,6,'$ 50.00 - Student Membership: Offline signup','2022-12-07 16:48:59',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (524,44,6,'$ 100.00 - General Membership: Offline signup','2022-12-07 16:48:59',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (525,45,6,'$ 50.00 - Student Membership: Offline signup','2022-12-07 16:48:59',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (526,46,6,'$ 100.00 - General Membership: Offline signup','2022-12-07 16:48:59',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (527,47,6,'$ 50.00 - Student Membership: Offline signup','2022-12-07 16:48:59',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (528,48,6,'$ 100.00 - General Membership: Offline signup','2022-12-07 16:48:59',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (529,49,6,'$ 50.00 - Student Membership: Offline signup','2022-12-07 16:48:59',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (530,50,6,'$ 100.00 - General Membership: Offline signup','2022-12-07 16:48:59',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (531,51,6,'$ 100.00 - General Membership: Offline signup','2022-12-07 16:48:59',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (532,52,6,'$ 100.00 - General Membership: Offline signup','2022-12-07 16:48:59',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (533,53,6,'$ 1200.00 - Lifetime Membership: Offline signup','2022-12-07 16:48:59',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (534,54,6,'$ 100.00 - General Membership: Offline signup','2022-12-07 16:48:59',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (535,55,6,'$ 50.00 - Student Membership: Offline signup','2022-12-07 16:48:59',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (536,56,6,'$ 100.00 - General Membership: Offline signup','2022-12-07 16:48:59',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (537,57,6,'$ 50.00 - Student Membership: Offline signup','2022-12-07 16:48:59',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (538,58,6,'$ 100.00 - General Membership: Offline signup','2022-12-07 16:48:59',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (539,59,6,'$ 50.00 - Student Membership: Offline signup','2022-12-07 16:48:59',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (540,60,6,'$ 100.00 - General Membership: Offline signup','2022-12-07 16:48:59',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (541,61,6,'$ 100.00 - General Membership: Offline signup','2022-12-07 16:48:59',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (543,1,5,'NULL','2009-01-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (544,2,5,'NULL','2008-05-07 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (545,3,5,'NULL','2008-05-05 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (546,4,5,'NULL','2008-10-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (547,5,5,'NULL','2008-01-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (548,6,5,'NULL','2008-03-05 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (549,7,5,'NULL','2009-07-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (550,8,5,'NULL','2009-03-07 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (551,9,5,'NULL','2008-02-05 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (552,10,5,'NULL','2008-02-01 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (553,11,5,'NULL','2009-01-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (554,12,5,'NULL','2009-03-06 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (555,13,5,'NULL','2008-06-04 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (556,14,5,'NULL','2008-01-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (557,15,5,'NULL','2008-07-04 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (558,16,5,'NULL','2009-01-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (559,17,5,'NULL','2008-01-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (560,18,5,'NULL','2009-03-05 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (561,19,5,'NULL','2008-10-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (562,20,5,'NULL','2009-01-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (563,21,5,'NULL','2008-03-25 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (564,22,5,'NULL','2009-10-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (565,23,5,'NULL','2008-01-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (566,24,5,'NULL','2008-03-11 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (567,25,5,'NULL','2008-04-05 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (568,26,5,'NULL','2009-01-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (569,27,5,'NULL','2008-05-07 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (570,28,5,'NULL','2009-12-12 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (571,29,5,'NULL','2009-12-13 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (572,30,5,'NULL','2009-12-14 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (573,31,5,'NULL','2009-12-15 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (574,32,5,'NULL','2009-07-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (575,33,5,'NULL','2009-03-07 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (576,34,5,'NULL','2009-12-15 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (577,35,5,'NULL','2009-12-13 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (578,36,5,'NULL','2009-01-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (579,37,5,'NULL','2009-03-06 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (580,38,5,'NULL','2009-12-13 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (581,39,5,'NULL','2008-01-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (582,40,5,'NULL','2009-12-14 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (583,41,5,'NULL','2009-01-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (584,42,5,'NULL','2009-12-15 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (585,43,5,'NULL','2009-03-05 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (586,44,5,'NULL','2009-12-13 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (587,45,5,'NULL','2009-01-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (588,46,5,'NULL','2009-12-13 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (589,47,5,'NULL','2009-10-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (590,48,5,'NULL','2009-12-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (591,49,5,'NULL','2009-03-11 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (592,50,5,'NULL','2009-04-05 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (593,63,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2022-12-07 16:48:59',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (594,64,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2022-12-07 16:48:59',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (595,65,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2022-12-07 16:48:59',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (596,66,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2022-12-07 16:48:59',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (597,67,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2022-12-07 16:48:59',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (598,68,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2022-12-07 16:48:59',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (599,69,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2022-12-07 16:48:59',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (600,70,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2022-12-07 16:48:59',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (601,71,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2022-12-07 16:48:59',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (602,72,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2022-12-07 16:48:59',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (603,73,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2022-12-07 16:48:59',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (604,74,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2022-12-07 16:48:59',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (605,75,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2022-12-07 16:48:59',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (606,76,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2022-12-07 16:48:59',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (607,77,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2022-12-07 16:48:59',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (608,78,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2022-12-07 16:48:59',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (609,79,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2022-12-07 16:48:59',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (610,80,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2022-12-07 16:48:59',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (611,81,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2022-12-07 16:48:59',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (612,82,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2022-12-07 16:48:59',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (613,83,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2022-12-07 16:48:59',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (614,84,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2022-12-07 16:48:59',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (615,85,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2022-12-07 16:48:59',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (616,86,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2022-12-07 16:48:59',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (617,87,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2022-12-07 16:48:59',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (618,88,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2022-12-07 16:48:59',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (619,89,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2022-12-07 16:48:59',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (620,90,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2022-12-07 16:48:59',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (621,91,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2022-12-07 16:48:59',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (622,92,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2022-12-07 16:48:59',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (623,93,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2022-12-07 16:48:59',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (624,94,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2022-12-07 16:48:59',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (625,95,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2022-12-07 16:48:59',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (626,96,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2022-12-07 16:48:59',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (627,97,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2022-12-07 16:48:59',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (628,98,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2022-12-07 16:48:59',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (629,99,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2022-12-07 16:48:59',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (630,100,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2022-12-07 16:48:59',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (631,101,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2022-12-07 16:48:59',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (632,102,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2022-12-07 16:48:59',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (633,103,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2022-12-07 16:48:59',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (634,104,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2022-12-07 16:48:59',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (635,105,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2022-12-07 16:48:59',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (636,106,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2022-12-07 16:48:59',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (637,107,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2022-12-07 16:48:59',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (638,108,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2022-12-07 16:48:59',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (639,109,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2022-12-07 16:48:59',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (640,110,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2022-12-07 16:48:59',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (641,111,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2022-12-07 16:48:59',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'), - (642,112,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2022-12-07 16:48:59',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-12-07 16:48:59','2022-12-07 16:48:59'); + (1,NULL,1,'Subject for Meeting','2022-07-26 07:46:37',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:19','2023-01-25 00:10:19'), + (2,NULL,9,'Subject for Tell a Friend','2022-04-28 14:02:59',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:19','2023-01-25 00:10:19'), + (3,NULL,55,'Subject for Interview','2022-07-20 15:35:19',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:19','2023-01-25 00:10:19'), + (4,NULL,2,'Subject for Phone Call','2022-11-07 08:40:33',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:19','2023-01-25 00:10:19'), + (5,NULL,55,'Subject for Interview','2022-05-02 00:29:51',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:19','2023-01-25 00:10:19'), + (6,NULL,55,'Subject for Interview','2022-12-27 06:35:51',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:19','2023-01-25 00:10:19'), + (7,NULL,1,'Subject for Meeting','2022-05-04 22:26:48',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:19','2023-01-25 00:10:19'), + (8,NULL,2,'Subject for Phone Call','2022-12-04 08:10:00',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:19','2023-01-25 00:10:19'), + (9,NULL,1,'Subject for Meeting','2022-07-31 16:53:24',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:19','2023-01-25 00:10:19'), + (10,NULL,2,'Subject for Phone Call','2022-11-03 22:16:59',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:19','2023-01-25 00:10:19'), + (11,NULL,22,'Subject for Print/Merge Document','2022-12-21 12:00:09',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:19','2023-01-25 00:10:19'), + (12,NULL,55,'Subject for Interview','2022-07-05 12:08:30',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:19','2023-01-25 00:10:19'), + (13,NULL,2,'Subject for Phone Call','2022-03-25 00:29:39',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:19','2023-01-25 00:10:19'), + (14,NULL,55,'Subject for Interview','2022-02-04 02:59:29',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:19','2023-01-25 00:10:19'), + (15,NULL,22,'Subject for Print/Merge Document','2022-06-15 21:53:13',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:19','2023-01-25 00:10:19'), + (16,NULL,55,'Subject for Interview','2022-07-25 06:34:02',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:19','2023-01-25 00:10:19'), + (17,NULL,55,'Subject for Interview','2022-10-28 23:39:47',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:19','2023-01-25 00:10:19'), + (18,NULL,1,'Subject for Meeting','2022-08-21 08:24:44',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:19','2023-01-25 00:10:19'), + (19,NULL,2,'Subject for Phone Call','2022-04-22 10:01:46',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:19','2023-01-25 00:10:19'), + (20,NULL,2,'Subject for Phone Call','2022-06-06 20:36:48',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:19','2023-01-25 00:10:19'), + (21,NULL,1,'Subject for Meeting','2022-07-31 09:41:30',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:19','2023-01-25 00:10:19'), + (22,NULL,9,'Subject for Tell a Friend','2022-12-12 01:03:50',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:19','2023-01-25 00:10:19'), + (23,NULL,2,'Subject for Phone Call','2022-02-03 11:17:32',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:19','2023-01-25 00:10:19'), + (24,NULL,2,'Subject for Phone Call','2022-05-01 06:33:02',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:19','2023-01-25 00:10:19'), + (25,NULL,22,'Subject for Print/Merge Document','2023-01-01 22:35:50',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:19','2023-01-25 00:10:19'), + (26,NULL,55,'Subject for Interview','2022-04-22 07:08:00',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:19','2023-01-25 00:10:19'), + (27,NULL,55,'Subject for Interview','2022-10-22 16:33:57',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:19','2023-01-25 00:10:19'), + (28,NULL,9,'Subject for Tell a Friend','2022-10-20 20:20:07',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:19','2023-01-25 00:10:19'), + (29,NULL,2,'Subject for Phone Call','2022-07-10 07:27:56',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:19','2023-01-25 00:10:19'), + (30,NULL,1,'Subject for Meeting','2022-04-11 01:43:36',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:19','2023-01-25 00:10:19'), + (31,NULL,1,'Subject for Meeting','2022-04-26 16:02:21',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:19','2023-01-25 00:10:19'), + (32,NULL,2,'Subject for Phone Call','2022-03-11 15:34:50',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:19','2023-01-25 00:10:19'), + (33,NULL,1,'Subject for Meeting','2022-03-22 20:50:02',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:19','2023-01-25 00:10:19'), + (34,NULL,22,'Subject for Print/Merge Document','2022-05-01 23:28:07',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:19','2023-01-25 00:10:19'), + (35,NULL,9,'Subject for Tell a Friend','2022-02-18 03:02:30',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:19','2023-01-25 00:10:19'), + (36,NULL,9,'Subject for Tell a Friend','2022-04-25 22:58:52',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:19','2023-01-25 00:10:19'), + (37,NULL,1,'Subject for Meeting','2022-02-13 04:16:33',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:19','2023-01-25 00:10:19'), + (38,NULL,2,'Subject for Phone Call','2022-02-06 01:32:32',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:19','2023-01-25 00:10:19'), + (39,NULL,55,'Subject for Interview','2022-01-27 12:18:40',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:19','2023-01-25 00:10:19'), + (40,NULL,22,'Subject for Print/Merge Document','2022-09-07 10:04:18',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:19','2023-01-25 00:10:19'), + (41,NULL,55,'Subject for Interview','2022-10-02 01:48:29',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:19','2023-01-25 00:10:19'), + (42,NULL,9,'Subject for Tell a Friend','2022-08-14 18:22:02',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:19','2023-01-25 00:10:19'), + (43,NULL,1,'Subject for Meeting','2022-03-25 03:49:12',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:19','2023-01-25 00:10:19'), + (44,NULL,22,'Subject for Print/Merge Document','2022-04-25 09:40:00',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:19','2023-01-25 00:10:19'), + (45,NULL,1,'Subject for Meeting','2022-05-20 13:49:43',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:19','2023-01-25 00:10:19'), + (46,NULL,1,'Subject for Meeting','2022-11-25 18:19:17',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:19','2023-01-25 00:10:19'), + (47,NULL,55,'Subject for Interview','2022-02-01 21:08:36',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:19','2023-01-25 00:10:19'), + (48,NULL,22,'Subject for Print/Merge Document','2022-11-05 17:16:15',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:19','2023-01-25 00:10:19'), + (49,NULL,22,'Subject for Print/Merge Document','2022-04-14 14:37:56',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:19','2023-01-25 00:10:19'), + (50,NULL,9,'Subject for Tell a Friend','2022-05-19 20:52:33',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:19','2023-01-25 00:10:19'), + (51,NULL,9,'Subject for Tell a Friend','2022-07-16 11:14:41',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:19','2023-01-25 00:10:19'), + (52,NULL,1,'Subject for Meeting','2022-01-28 14:25:53',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:19','2023-01-25 00:10:19'), + (53,NULL,2,'Subject for Phone Call','2022-05-14 12:53:35',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:19','2023-01-25 00:10:19'), + (54,NULL,1,'Subject for Meeting','2022-08-29 01:06:01',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:19','2023-01-25 00:10:19'), + (55,NULL,2,'Subject for Phone Call','2022-06-23 11:59:54',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:19','2023-01-25 00:10:19'), + (56,NULL,22,'Subject for Print/Merge Document','2023-01-04 06:59:59',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:19','2023-01-25 00:10:19'), + (57,NULL,9,'Subject for Tell a Friend','2022-06-04 02:53:18',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:19','2023-01-25 00:10:19'), + (58,NULL,9,'Subject for Tell a Friend','2022-10-22 07:37:06',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:19','2023-01-25 00:10:19'), + (59,NULL,2,'Subject for Phone Call','2022-08-09 13:22:04',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:19','2023-01-25 00:10:19'), + (60,NULL,55,'Subject for Interview','2022-10-21 21:28:18',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:19','2023-01-25 00:10:19'), + (61,NULL,1,'Subject for Meeting','2022-12-04 09:32:40',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:19','2023-01-25 00:10:19'), + (62,NULL,9,'Subject for Tell a Friend','2023-01-24 18:40:50',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:19','2023-01-25 00:10:19'), + (63,NULL,1,'Subject for Meeting','2022-08-14 01:51:46',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:19','2023-01-25 00:10:19'), + (64,NULL,2,'Subject for Phone Call','2022-09-13 00:06:03',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:19','2023-01-25 00:10:19'), + (65,NULL,1,'Subject for Meeting','2022-06-10 20:13:57',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:19','2023-01-25 00:10:19'), + (66,NULL,9,'Subject for Tell a Friend','2022-06-10 13:29:12',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:19','2023-01-25 00:10:19'), + (67,NULL,2,'Subject for Phone Call','2022-07-19 12:07:20',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:19','2023-01-25 00:10:19'), + (68,NULL,22,'Subject for Print/Merge Document','2022-07-25 12:48:57',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (69,NULL,2,'Subject for Phone Call','2022-02-24 22:03:45',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (70,NULL,2,'Subject for Phone Call','2022-07-09 23:59:27',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (71,NULL,55,'Subject for Interview','2022-02-21 11:07:30',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (72,NULL,22,'Subject for Print/Merge Document','2022-07-25 00:18:00',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (73,NULL,22,'Subject for Print/Merge Document','2022-09-04 20:15:37',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (74,NULL,2,'Subject for Phone Call','2022-09-16 21:05:48',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (75,NULL,2,'Subject for Phone Call','2022-09-30 21:00:49',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (76,NULL,2,'Subject for Phone Call','2022-09-04 09:31:16',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (77,NULL,22,'Subject for Print/Merge Document','2022-02-24 10:19:48',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (78,NULL,1,'Subject for Meeting','2022-12-27 13:16:42',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (79,NULL,55,'Subject for Interview','2022-12-19 22:32:28',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (80,NULL,22,'Subject for Print/Merge Document','2022-07-26 15:41:07',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (81,NULL,9,'Subject for Tell a Friend','2022-09-16 01:35:07',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (82,NULL,1,'Subject for Meeting','2022-04-12 00:42:10',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (83,NULL,9,'Subject for Tell a Friend','2022-04-21 08:02:10',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (84,NULL,2,'Subject for Phone Call','2022-04-17 16:48:45',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (85,NULL,2,'Subject for Phone Call','2023-01-06 18:47:19',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (86,NULL,9,'Subject for Tell a Friend','2022-07-02 13:11:42',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (87,NULL,2,'Subject for Phone Call','2022-12-02 08:07:29',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (88,NULL,1,'Subject for Meeting','2022-12-22 16:56:23',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (89,NULL,55,'Subject for Interview','2022-09-16 14:21:34',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (90,NULL,2,'Subject for Phone Call','2022-12-28 01:19:37',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (91,NULL,55,'Subject for Interview','2022-12-18 20:00:38',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (92,NULL,22,'Subject for Print/Merge Document','2022-08-13 06:15:19',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (93,NULL,2,'Subject for Phone Call','2022-01-27 18:12:26',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (94,NULL,1,'Subject for Meeting','2022-02-15 00:48:04',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (95,NULL,1,'Subject for Meeting','2022-12-01 15:06:47',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (96,NULL,9,'Subject for Tell a Friend','2022-02-05 05:53:50',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (97,NULL,2,'Subject for Phone Call','2022-07-16 00:44:50',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (98,NULL,22,'Subject for Print/Merge Document','2022-06-05 13:57:09',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (99,NULL,9,'Subject for Tell a Friend','2022-09-12 00:51:27',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (100,NULL,55,'Subject for Interview','2022-11-29 23:57:13',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (101,NULL,1,'Subject for Meeting','2022-11-01 13:23:31',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (102,NULL,9,'Subject for Tell a Friend','2022-09-30 13:36:25',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (103,NULL,22,'Subject for Print/Merge Document','2022-08-09 14:10:15',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (104,NULL,9,'Subject for Tell a Friend','2022-03-27 07:02:10',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (105,NULL,1,'Subject for Meeting','2023-01-19 20:52:04',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (106,NULL,1,'Subject for Meeting','2022-05-01 00:07:42',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (107,NULL,22,'Subject for Print/Merge Document','2022-07-10 09:33:19',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (108,NULL,22,'Subject for Print/Merge Document','2022-09-28 20:06:09',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (109,NULL,9,'Subject for Tell a Friend','2022-03-17 18:21:45',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (110,NULL,1,'Subject for Meeting','2022-03-05 20:23:39',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (111,NULL,2,'Subject for Phone Call','2022-04-10 05:16:00',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (112,NULL,2,'Subject for Phone Call','2022-02-11 10:03:30',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (113,NULL,9,'Subject for Tell a Friend','2022-11-14 10:08:16',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (114,NULL,2,'Subject for Phone Call','2022-09-23 23:30:57',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (115,NULL,9,'Subject for Tell a Friend','2022-03-30 22:32:53',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (116,NULL,1,'Subject for Meeting','2022-12-20 00:14:18',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (117,NULL,55,'Subject for Interview','2022-02-28 23:26:20',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (118,NULL,22,'Subject for Print/Merge Document','2022-10-01 19:51:28',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (119,NULL,1,'Subject for Meeting','2022-12-09 10:59:43',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (120,NULL,9,'Subject for Tell a Friend','2022-11-17 15:07:19',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (121,NULL,9,'Subject for Tell a Friend','2022-07-10 17:49:46',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (122,NULL,55,'Subject for Interview','2022-08-19 15:11:48',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (123,NULL,55,'Subject for Interview','2022-08-14 21:53:38',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (124,NULL,2,'Subject for Phone Call','2022-08-10 20:56:05',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (125,NULL,1,'Subject for Meeting','2022-05-03 12:07:09',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (126,NULL,9,'Subject for Tell a Friend','2022-05-25 15:06:15',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (127,NULL,9,'Subject for Tell a Friend','2022-09-15 18:59:31',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (128,NULL,22,'Subject for Print/Merge Document','2022-07-28 22:26:22',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (129,NULL,9,'Subject for Tell a Friend','2022-09-23 15:03:45',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (130,NULL,55,'Subject for Interview','2022-07-06 09:39:42',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (131,NULL,9,'Subject for Tell a Friend','2022-11-07 03:23:16',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (132,NULL,22,'Subject for Print/Merge Document','2022-06-22 06:51:49',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (133,NULL,22,'Subject for Print/Merge Document','2022-08-12 07:52:54',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (134,NULL,2,'Subject for Phone Call','2022-10-16 07:06:32',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (135,NULL,22,'Subject for Print/Merge Document','2022-05-10 20:14:25',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (136,NULL,9,'Subject for Tell a Friend','2022-07-09 19:40:29',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (137,NULL,2,'Subject for Phone Call','2022-06-28 13:38:10',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (138,NULL,9,'Subject for Tell a Friend','2022-05-13 05:22:35',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (139,NULL,2,'Subject for Phone Call','2022-05-06 00:26:12',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (140,NULL,2,'Subject for Phone Call','2022-10-23 02:47:24',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (141,NULL,1,'Subject for Meeting','2022-04-09 18:37:05',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (142,NULL,9,'Subject for Tell a Friend','2022-02-09 10:53:23',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (143,NULL,1,'Subject for Meeting','2023-01-03 02:48:40',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (144,NULL,9,'Subject for Tell a Friend','2022-07-01 12:28:51',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (145,NULL,22,'Subject for Print/Merge Document','2022-09-02 09:50:02',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (146,NULL,9,'Subject for Tell a Friend','2022-08-09 09:47:48',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (147,NULL,22,'Subject for Print/Merge Document','2022-11-04 18:24:19',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (148,NULL,2,'Subject for Phone Call','2023-01-20 17:00:22',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (149,NULL,1,'Subject for Meeting','2022-04-23 15:58:10',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (150,NULL,9,'Subject for Tell a Friend','2022-05-16 00:17:30',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (151,NULL,1,'Subject for Meeting','2022-02-12 00:26:01',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (152,NULL,1,'Subject for Meeting','2022-02-23 07:48:28',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (153,NULL,22,'Subject for Print/Merge Document','2022-07-04 08:22:19',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (154,NULL,1,'Subject for Meeting','2022-02-15 20:20:56',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (155,NULL,1,'Subject for Meeting','2022-10-29 14:44:19',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (156,NULL,9,'Subject for Tell a Friend','2022-10-09 10:55:55',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (157,NULL,1,'Subject for Meeting','2022-02-16 23:21:53',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (158,NULL,22,'Subject for Print/Merge Document','2022-12-05 13:33:04',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (159,NULL,2,'Subject for Phone Call','2022-11-19 22:56:36',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (160,NULL,2,'Subject for Phone Call','2022-02-15 03:19:03',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (161,NULL,55,'Subject for Interview','2022-10-07 20:41:30',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (162,NULL,55,'Subject for Interview','2022-04-06 00:18:43',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (163,NULL,9,'Subject for Tell a Friend','2022-03-25 22:05:19',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (164,NULL,55,'Subject for Interview','2022-08-24 06:46:20',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (165,NULL,55,'Subject for Interview','2022-10-01 21:21:55',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (166,NULL,22,'Subject for Print/Merge Document','2022-04-26 09:29:55',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (167,NULL,55,'Subject for Interview','2022-10-06 18:39:51',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (168,NULL,1,'Subject for Meeting','2022-04-07 08:23:09',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (169,NULL,9,'Subject for Tell a Friend','2022-04-20 02:58:58',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (170,NULL,22,'Subject for Print/Merge Document','2022-04-17 12:28:34',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (171,NULL,55,'Subject for Interview','2022-06-25 00:55:40',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (172,NULL,1,'Subject for Meeting','2022-04-10 12:37:12',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (173,NULL,9,'Subject for Tell a Friend','2022-02-06 14:21:05',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (174,NULL,55,'Subject for Interview','2022-08-02 12:52:14',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (175,NULL,55,'Subject for Interview','2022-07-18 01:24:01',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (176,NULL,2,'Subject for Phone Call','2022-09-17 22:53:12',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (177,NULL,55,'Subject for Interview','2022-06-17 18:37:22',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (178,NULL,55,'Subject for Interview','2022-02-25 02:25:51',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (179,NULL,1,'Subject for Meeting','2022-02-15 00:12:32',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (180,NULL,55,'Subject for Interview','2022-08-17 04:31:51',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (181,NULL,2,'Subject for Phone Call','2022-04-09 13:22:58',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (182,NULL,22,'Subject for Print/Merge Document','2022-03-26 05:46:41',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (183,NULL,9,'Subject for Tell a Friend','2022-01-30 19:35:53',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (184,NULL,9,'Subject for Tell a Friend','2022-11-18 12:51:04',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (185,NULL,55,'Subject for Interview','2022-05-13 09:40:35',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (186,NULL,2,'Subject for Phone Call','2022-05-05 17:09:46',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (187,NULL,2,'Subject for Phone Call','2022-04-17 06:30:28',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (188,NULL,9,'Subject for Tell a Friend','2022-03-20 21:23:55',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (189,NULL,22,'Subject for Print/Merge Document','2022-06-19 12:25:47',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (190,NULL,22,'Subject for Print/Merge Document','2022-02-02 15:25:43',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (191,NULL,9,'Subject for Tell a Friend','2022-02-24 22:23:00',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (192,NULL,1,'Subject for Meeting','2022-12-09 11:37:36',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (193,NULL,1,'Subject for Meeting','2022-07-08 23:57:39',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (194,NULL,1,'Subject for Meeting','2022-02-27 00:26:52',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (195,NULL,22,'Subject for Print/Merge Document','2022-07-16 12:11:59',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (196,NULL,9,'Subject for Tell a Friend','2022-09-10 22:20:26',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (197,NULL,1,'Subject for Meeting','2022-12-22 06:01:06',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (198,NULL,55,'Subject for Interview','2022-10-09 17:28:57',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (199,NULL,55,'Subject for Interview','2022-12-17 05:34:50',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (200,NULL,22,'Subject for Print/Merge Document','2022-10-08 09:24:48',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (201,NULL,1,'Subject for Meeting','2022-11-19 05:10:30',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (202,NULL,22,'Subject for Print/Merge Document','2023-01-06 08:22:56',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (203,NULL,22,'Subject for Print/Merge Document','2023-01-25 07:09:05',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (204,NULL,9,'Subject for Tell a Friend','2022-09-27 21:19:30',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (205,NULL,55,'Subject for Interview','2022-02-11 19:39:54',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (206,NULL,55,'Subject for Interview','2022-04-07 13:12:44',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (207,NULL,22,'Subject for Print/Merge Document','2023-01-17 11:01:02',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (208,NULL,55,'Subject for Interview','2022-03-08 14:01:22',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (209,NULL,55,'Subject for Interview','2022-03-25 14:08:23',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (210,NULL,9,'Subject for Tell a Friend','2022-11-17 09:21:43',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (211,NULL,9,'Subject for Tell a Friend','2022-11-27 16:31:33',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (212,NULL,55,'Subject for Interview','2022-03-31 02:05:55',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (213,NULL,2,'Subject for Phone Call','2022-06-07 08:20:32',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (214,NULL,9,'Subject for Tell a Friend','2022-11-19 12:32:21',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (215,NULL,2,'Subject for Phone Call','2022-09-19 10:15:57',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (216,NULL,55,'Subject for Interview','2022-12-23 10:08:48',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (217,NULL,22,'Subject for Print/Merge Document','2022-12-08 04:56:44',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (218,NULL,2,'Subject for Phone Call','2022-04-23 07:14:52',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (219,NULL,9,'Subject for Tell a Friend','2022-02-07 03:00:51',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (220,NULL,1,'Subject for Meeting','2022-09-01 17:24:10',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (221,NULL,2,'Subject for Phone Call','2022-02-28 15:23:49',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (222,NULL,22,'Subject for Print/Merge Document','2022-10-04 13:40:29',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (223,NULL,9,'Subject for Tell a Friend','2022-05-03 15:53:08',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (224,NULL,22,'Subject for Print/Merge Document','2022-10-09 21:18:51',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (225,NULL,2,'Subject for Phone Call','2022-07-03 07:38:49',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (226,NULL,22,'Subject for Print/Merge Document','2022-12-25 20:38:09',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (227,NULL,22,'Subject for Print/Merge Document','2022-10-25 16:57:24',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (228,NULL,22,'Subject for Print/Merge Document','2022-08-22 02:08:08',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (229,NULL,22,'Subject for Print/Merge Document','2022-09-07 11:09:48',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (230,NULL,22,'Subject for Print/Merge Document','2022-04-03 17:32:26',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (231,NULL,1,'Subject for Meeting','2022-11-03 18:03:17',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (232,NULL,22,'Subject for Print/Merge Document','2022-10-22 20:21:34',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (233,NULL,1,'Subject for Meeting','2022-12-27 17:17:54',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (234,NULL,55,'Subject for Interview','2022-09-29 09:32:34',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (235,NULL,9,'Subject for Tell a Friend','2022-10-27 21:22:59',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (236,NULL,9,'Subject for Tell a Friend','2022-09-18 04:36:00',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (237,NULL,2,'Subject for Phone Call','2022-05-07 02:24:37',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (238,NULL,1,'Subject for Meeting','2022-04-02 13:23:02',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (239,NULL,2,'Subject for Phone Call','2022-03-21 04:09:45',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (240,NULL,2,'Subject for Phone Call','2022-03-03 03:24:45',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (241,NULL,9,'Subject for Tell a Friend','2022-01-28 01:40:19',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (242,NULL,9,'Subject for Tell a Friend','2022-09-12 16:10:04',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (243,NULL,55,'Subject for Interview','2022-11-09 02:51:04',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (244,NULL,55,'Subject for Interview','2022-11-27 14:54:41',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (245,NULL,9,'Subject for Tell a Friend','2022-05-04 17:56:16',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (246,NULL,22,'Subject for Print/Merge Document','2022-07-16 08:46:33',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (247,NULL,22,'Subject for Print/Merge Document','2022-02-15 15:03:47',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (248,NULL,1,'Subject for Meeting','2022-11-06 01:35:36',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (249,NULL,55,'Subject for Interview','2022-11-23 04:23:39',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (250,NULL,9,'Subject for Tell a Friend','2022-09-02 19:11:35',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (251,NULL,55,'Subject for Interview','2022-11-14 07:24:24',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (252,NULL,22,'Subject for Print/Merge Document','2023-01-14 06:57:29',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (253,NULL,1,'Subject for Meeting','2022-06-24 19:28:35',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (254,NULL,1,'Subject for Meeting','2022-03-20 17:00:50',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (255,NULL,1,'Subject for Meeting','2023-01-09 18:59:52',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (256,NULL,9,'Subject for Tell a Friend','2022-08-29 14:50:49',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (257,NULL,55,'Subject for Interview','2023-01-01 22:23:13',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (258,NULL,2,'Subject for Phone Call','2022-03-10 06:55:07',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (259,NULL,55,'Subject for Interview','2022-08-25 02:05:27',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (260,NULL,22,'Subject for Print/Merge Document','2022-08-27 10:28:53',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (261,NULL,22,'Subject for Print/Merge Document','2022-06-16 18:47:28',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (262,NULL,1,'Subject for Meeting','2022-10-22 03:49:26',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (263,NULL,1,'Subject for Meeting','2022-07-07 03:31:19',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (264,NULL,2,'Subject for Phone Call','2022-06-19 01:56:21',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (265,NULL,2,'Subject for Phone Call','2022-03-17 16:05:59',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (266,NULL,55,'Subject for Interview','2022-11-28 16:26:42',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (267,NULL,9,'Subject for Tell a Friend','2022-11-14 01:11:27',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (268,NULL,22,'Subject for Print/Merge Document','2022-07-07 18:42:52',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (269,NULL,9,'Subject for Tell a Friend','2022-06-08 02:16:18',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (270,NULL,55,'Subject for Interview','2022-08-06 09:48:05',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (271,NULL,22,'Subject for Print/Merge Document','2022-03-13 20:40:09',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (272,NULL,55,'Subject for Interview','2022-04-21 11:16:25',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (273,NULL,55,'Subject for Interview','2022-07-10 22:24:18',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (274,NULL,22,'Subject for Print/Merge Document','2022-07-08 00:12:46',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (275,NULL,2,'Subject for Phone Call','2022-02-12 14:27:53',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (276,NULL,2,'Subject for Phone Call','2022-08-09 04:35:44',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (277,NULL,22,'Subject for Print/Merge Document','2023-01-17 10:47:26',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (278,NULL,1,'Subject for Meeting','2022-08-23 07:17:50',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (279,NULL,9,'Subject for Tell a Friend','2022-12-29 12:52:05',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (280,NULL,22,'Subject for Print/Merge Document','2023-01-14 08:16:48',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (281,NULL,2,'Subject for Phone Call','2022-08-30 12:49:00',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (282,NULL,9,'Subject for Tell a Friend','2022-03-19 22:19:00',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (283,NULL,55,'Subject for Interview','2022-06-17 05:37:03',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (284,NULL,2,'Subject for Phone Call','2022-05-07 00:05:58',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (285,NULL,22,'Subject for Print/Merge Document','2022-05-01 10:34:26',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (286,NULL,2,'Subject for Phone Call','2022-08-10 04:34:35',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (287,NULL,2,'Subject for Phone Call','2022-10-02 01:52:57',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (288,NULL,2,'Subject for Phone Call','2022-06-12 12:53:03',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (289,NULL,1,'Subject for Meeting','2022-02-14 21:27:23',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (290,NULL,9,'Subject for Tell a Friend','2022-02-16 08:50:52',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (291,NULL,9,'Subject for Tell a Friend','2022-11-23 16:40:23',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (292,NULL,22,'Subject for Print/Merge Document','2022-02-01 16:05:52',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (293,NULL,1,'Subject for Meeting','2022-08-13 11:04:17',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (294,NULL,55,'Subject for Interview','2022-05-25 04:42:45',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (295,NULL,1,'Subject for Meeting','2022-04-30 11:39:40',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (296,NULL,22,'Subject for Print/Merge Document','2022-09-22 20:33:41',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (297,NULL,22,'Subject for Print/Merge Document','2022-07-31 04:07:46',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (298,NULL,22,'Subject for Print/Merge Document','2022-02-25 01:22:22',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (299,NULL,22,'Subject for Print/Merge Document','2022-05-20 18:28:18',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (300,NULL,2,'Subject for Phone Call','2022-09-11 10:30:08',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (301,NULL,1,'Subject for Meeting','2022-07-15 06:27:58',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (302,NULL,22,'Subject for Print/Merge Document','2022-10-07 15:08:54',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (303,NULL,1,'Subject for Meeting','2022-11-14 21:53:26',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (304,NULL,55,'Subject for Interview','2022-08-12 18:14:08',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (305,NULL,2,'Subject for Phone Call','2022-09-06 16:55:43',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (306,NULL,1,'Subject for Meeting','2022-05-20 14:34:04',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (307,NULL,2,'Subject for Phone Call','2022-09-21 10:20:31',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (308,NULL,22,'Subject for Print/Merge Document','2022-04-11 08:08:36',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (309,NULL,9,'Subject for Tell a Friend','2022-06-19 15:14:47',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (310,NULL,9,'Subject for Tell a Friend','2022-10-21 09:26:34',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (311,NULL,9,'Subject for Tell a Friend','2022-07-09 23:12:09',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (312,NULL,1,'Subject for Meeting','2023-01-16 03:44:05',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (313,NULL,1,'Subject for Meeting','2022-02-16 11:03:23',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (314,NULL,1,'Subject for Meeting','2022-10-08 01:10:37',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (315,NULL,2,'Subject for Phone Call','2022-02-23 19:53:12',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (316,NULL,55,'Subject for Interview','2023-01-23 02:10:49',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (317,NULL,22,'Subject for Print/Merge Document','2022-12-29 20:17:46',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (318,NULL,1,'Subject for Meeting','2022-08-11 05:58:08',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (319,NULL,22,'Subject for Print/Merge Document','2022-03-31 19:21:55',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (320,NULL,55,'Subject for Interview','2022-03-05 22:21:06',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (321,NULL,55,'Subject for Interview','2022-09-24 11:00:40',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (322,NULL,1,'Subject for Meeting','2022-11-10 04:53:14',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (323,NULL,55,'Subject for Interview','2022-09-14 08:09:24',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (324,NULL,2,'Subject for Phone Call','2022-07-20 08:29:30',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (325,NULL,55,'Subject for Interview','2022-12-11 10:11:15',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (326,NULL,9,'Subject for Tell a Friend','2022-07-16 14:34:32',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (327,NULL,9,'Subject for Tell a Friend','2022-07-11 22:15:57',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (328,NULL,55,'Subject for Interview','2022-03-13 06:31:20',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (329,NULL,22,'Subject for Print/Merge Document','2022-10-31 14:40:23',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (330,NULL,22,'Subject for Print/Merge Document','2022-04-07 04:26:58',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (331,NULL,22,'Subject for Print/Merge Document','2023-01-15 02:09:43',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (332,NULL,55,'Subject for Interview','2022-10-09 13:00:25',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (333,NULL,2,'Subject for Phone Call','2022-11-16 21:59:34',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (334,NULL,2,'Subject for Phone Call','2022-02-21 10:26:56',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (335,NULL,55,'Subject for Interview','2022-10-24 06:46:05',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (336,NULL,1,'Subject for Meeting','2022-03-15 22:10:05',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (337,NULL,2,'Subject for Phone Call','2022-05-24 12:43:26',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (338,NULL,22,'Subject for Print/Merge Document','2022-06-07 04:35:42',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (339,NULL,55,'Subject for Interview','2022-02-11 06:05:18',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (340,NULL,2,'Subject for Phone Call','2022-04-16 11:55:39',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (341,NULL,1,'Subject for Meeting','2022-04-29 01:02:20',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (342,NULL,1,'Subject for Meeting','2022-05-28 17:18:39',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (343,NULL,2,'Subject for Phone Call','2022-05-04 16:23:41',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (344,NULL,22,'Subject for Print/Merge Document','2022-12-07 17:23:39',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (345,NULL,2,'Subject for Phone Call','2022-03-21 10:09:35',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (346,NULL,2,'Subject for Phone Call','2022-05-15 23:28:15',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (347,NULL,9,'Subject for Tell a Friend','2022-02-15 18:38:58',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (348,NULL,55,'Subject for Interview','2022-10-17 22:02:02',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (349,NULL,1,'Subject for Meeting','2022-01-28 10:21:18',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (350,NULL,55,'Subject for Interview','2022-03-24 18:45:34',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (351,NULL,2,'Subject for Phone Call','2022-06-04 02:18:36',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (352,NULL,55,'Subject for Interview','2022-08-03 11:35:55',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (353,NULL,2,'Subject for Phone Call','2022-02-25 08:25:34',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (354,NULL,2,'Subject for Phone Call','2022-12-15 09:11:27',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (355,NULL,2,'Subject for Phone Call','2022-02-25 22:56:54',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (356,NULL,9,'Subject for Tell a Friend','2022-06-09 09:08:24',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (357,NULL,22,'Subject for Print/Merge Document','2022-06-10 16:16:21',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (358,NULL,1,'Subject for Meeting','2022-03-31 07:15:32',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (359,NULL,55,'Subject for Interview','2022-10-28 02:37:19',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (360,NULL,2,'Subject for Phone Call','2022-07-29 18:40:57',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (361,NULL,1,'Subject for Meeting','2022-04-17 16:28:26',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (362,NULL,22,'Subject for Print/Merge Document','2022-05-04 17:26:23',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (363,NULL,1,'Subject for Meeting','2022-06-03 08:00:04',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (364,NULL,9,'Subject for Tell a Friend','2022-07-17 16:37:18',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (365,NULL,2,'Subject for Phone Call','2022-08-30 05:11:30',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:20','2023-01-25 00:10:20'), + (366,NULL,9,'Subject for Tell a Friend','2022-12-01 18:36:52',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (367,NULL,55,'Subject for Interview','2022-09-11 04:39:24',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (368,NULL,2,'Subject for Phone Call','2022-08-01 19:29:11',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (369,NULL,2,'Subject for Phone Call','2022-12-10 09:43:36',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (370,NULL,1,'Subject for Meeting','2022-11-11 22:54:30',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (371,NULL,55,'Subject for Interview','2022-11-03 14:03:56',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (372,NULL,2,'Subject for Phone Call','2022-07-07 23:35:20',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (373,NULL,1,'Subject for Meeting','2022-06-04 16:46:14',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (374,NULL,2,'Subject for Phone Call','2022-06-09 13:34:38',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (375,NULL,9,'Subject for Tell a Friend','2022-06-22 07:13:26',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (376,NULL,2,'Subject for Phone Call','2023-01-12 21:08:52',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (377,NULL,9,'Subject for Tell a Friend','2022-11-05 07:58:45',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (378,NULL,22,'Subject for Print/Merge Document','2022-10-13 09:30:23',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (379,NULL,22,'Subject for Print/Merge Document','2022-10-18 21:51:19',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (380,NULL,55,'Subject for Interview','2022-11-01 09:21:46',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (381,NULL,22,'Subject for Print/Merge Document','2022-05-14 22:51:40',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (382,NULL,1,'Subject for Meeting','2022-12-10 11:58:06',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (383,NULL,22,'Subject for Print/Merge Document','2022-07-29 22:13:59',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (384,NULL,22,'Subject for Print/Merge Document','2022-07-11 20:50:29',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (385,NULL,55,'Subject for Interview','2023-01-04 22:59:28',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (386,NULL,2,'Subject for Phone Call','2022-02-08 19:25:15',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (387,NULL,55,'Subject for Interview','2023-01-05 07:49:11',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (388,NULL,9,'Subject for Tell a Friend','2022-05-23 12:15:50',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (389,NULL,9,'Subject for Tell a Friend','2022-11-12 23:54:49',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (390,NULL,1,'Subject for Meeting','2022-05-14 20:54:07',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (391,NULL,9,'Subject for Tell a Friend','2022-12-22 11:33:14',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (392,NULL,55,'Subject for Interview','2022-12-29 15:19:40',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (393,NULL,1,'Subject for Meeting','2022-09-28 21:15:22',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (394,NULL,22,'Subject for Print/Merge Document','2022-04-14 05:42:58',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (395,NULL,9,'Subject for Tell a Friend','2023-01-18 22:57:45',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (396,NULL,2,'Subject for Phone Call','2022-03-24 23:37:37',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (397,NULL,22,'Subject for Print/Merge Document','2022-07-19 15:10:05',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (398,NULL,2,'Subject for Phone Call','2022-02-02 19:55:04',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (399,NULL,1,'Subject for Meeting','2022-05-13 00:35:39',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (400,NULL,9,'Subject for Tell a Friend','2022-11-23 00:32:28',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (401,NULL,2,'Subject for Phone Call','2022-09-10 04:30:04',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (402,NULL,55,'Subject for Interview','2022-03-09 13:35:15',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (403,NULL,1,'Subject for Meeting','2022-02-24 02:48:54',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (404,NULL,55,'Subject for Interview','2022-08-16 03:27:07',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (405,NULL,55,'Subject for Interview','2022-09-27 14:50:14',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (406,NULL,55,'Subject for Interview','2022-01-29 14:16:43',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (407,NULL,1,'Subject for Meeting','2022-04-19 00:01:42',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (408,NULL,22,'Subject for Print/Merge Document','2022-11-20 16:15:04',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (409,NULL,9,'Subject for Tell a Friend','2022-11-27 03:05:42',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (410,NULL,9,'Subject for Tell a Friend','2022-07-06 04:03:50',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (411,NULL,1,'Subject for Meeting','2022-05-16 23:18:57',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (412,NULL,9,'Subject for Tell a Friend','2022-03-06 16:26:43',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (413,NULL,9,'Subject for Tell a Friend','2022-06-08 23:48:30',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (414,NULL,2,'Subject for Phone Call','2022-10-27 21:07:59',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (415,NULL,55,'Subject for Interview','2022-07-08 12:49:31',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (416,NULL,1,'Subject for Meeting','2022-04-18 12:46:39',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (417,NULL,55,'Subject for Interview','2022-06-06 03:08:02',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (418,NULL,9,'Subject for Tell a Friend','2022-05-11 20:40:25',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (419,NULL,2,'Subject for Phone Call','2022-11-19 17:57:15',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (420,NULL,55,'Subject for Interview','2022-10-02 22:27:47',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (421,NULL,22,'Subject for Print/Merge Document','2022-06-12 11:24:34',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (422,NULL,9,'Subject for Tell a Friend','2022-06-07 02:34:15',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (423,NULL,9,'Subject for Tell a Friend','2022-04-01 21:50:10',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (424,NULL,9,'Subject for Tell a Friend','2022-05-07 20:33:44',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (425,NULL,55,'Subject for Interview','2022-05-15 12:43:00',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (426,NULL,9,'Subject for Tell a Friend','2022-10-17 16:26:52',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (427,NULL,2,'Subject for Phone Call','2022-06-24 10:28:20',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (428,NULL,22,'Subject for Print/Merge Document','2022-05-24 19:41:03',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (429,NULL,9,'Subject for Tell a Friend','2022-03-16 19:25:52',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (430,NULL,9,'Subject for Tell a Friend','2022-05-06 15:49:52',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (431,NULL,55,'Subject for Interview','2022-10-16 16:58:35',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (432,NULL,1,'Subject for Meeting','2022-06-06 01:14:05',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (433,NULL,2,'Subject for Phone Call','2022-07-29 23:24:08',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (434,NULL,2,'Subject for Phone Call','2022-11-05 17:52:33',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (435,NULL,55,'Subject for Interview','2022-08-26 04:38:22',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (436,NULL,1,'Subject for Meeting','2022-08-31 08:25:03',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (437,NULL,1,'Subject for Meeting','2022-05-31 09:21:34',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (438,NULL,9,'Subject for Tell a Friend','2022-06-03 04:45:45',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (439,NULL,9,'Subject for Tell a Friend','2022-10-09 13:02:52',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (440,NULL,9,'Subject for Tell a Friend','2022-10-11 15:19:01',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (441,NULL,2,'Subject for Phone Call','2022-07-06 13:39:38',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (442,NULL,22,'Subject for Print/Merge Document','2022-03-20 18:31:37',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (443,NULL,22,'Subject for Print/Merge Document','2022-04-12 02:00:41',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (444,NULL,1,'Subject for Meeting','2022-08-15 10:19:07',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (445,NULL,22,'Subject for Print/Merge Document','2022-10-14 14:58:03',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (446,NULL,9,'Subject for Tell a Friend','2022-03-13 00:56:35',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (447,NULL,22,'Subject for Print/Merge Document','2022-03-30 11:40:14',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (448,NULL,1,'Subject for Meeting','2022-10-30 03:14:33',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (449,NULL,2,'Subject for Phone Call','2022-08-04 16:26:09',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (450,NULL,2,'Subject for Phone Call','2022-06-09 04:51:59',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (451,1,6,'$ 125 April Mailer 1','2023-03-25 11:10:21',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (452,2,6,'$ 50 Online: Save the Penguins','2023-03-25 11:10:21',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (453,3,6,'£ 25 April Mailer 1','2023-03-25 11:10:21',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (454,4,6,'$ 50 Online: Save the Penguins','2023-03-25 11:10:21',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (455,5,6,'$ 50 Online: Save the Penguins','2023-03-25 11:10:21',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (456,6,6,'$ 500 April Mailer 1','2023-03-25 11:10:21',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (457,7,6,'$ 1750 Online: Save the Penguins','2023-03-25 11:10:21',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (458,8,6,'$ 50 Online: Save the Penguins','2023-03-25 11:10:21',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (459,9,6,'$ 10 Online: Help CiviCRM','2023-03-25 11:10:21',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (460,10,6,'$ 250 Online: Help CiviCRM','2023-03-25 11:10:21',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (461,11,6,'Â¥ 500 ','2023-03-25 11:10:21',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (462,12,6,'$ 50 Online: Save the Penguins','2023-03-25 11:10:21',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (463,13,6,'$ 50 ','2023-03-25 11:10:21',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (464,14,6,'$ 50 ','2023-03-25 11:10:21',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (465,15,6,'$ 25 Recurring contribution','2023-03-25 11:10:21',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (466,16,6,'$ 25 Recurring contribution','2023-03-25 11:10:21',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (467,17,6,'$ 25 Recurring contribution','2023-03-25 11:10:21',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (468,18,6,'$ 25 Recurring contribution','2023-03-25 11:10:21',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (469,19,6,'$ 25 Recurring contribution','2023-03-25 11:10:21',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (470,20,6,'$ 25 Recurring contribution','2023-03-25 11:10:21',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (471,21,6,'$ 25 Recurring contribution','2023-03-25 11:10:21',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (472,22,6,'$ 25 Recurring contribution','2023-03-25 11:10:21',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (473,23,6,'$ 25 Recurring contribution','2023-03-25 11:10:21',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (474,24,6,'$ 25 Recurring contribution','2023-03-25 11:10:21',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (475,25,6,'$ 25 Recurring contribution','2023-03-25 11:10:21',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (476,26,6,'$ 10 Recurring contribution','2023-03-25 11:10:21',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (477,27,6,'$ 10 Recurring contribution','2023-03-25 11:10:21',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (478,28,6,'$ 10 Recurring contribution','2023-03-25 11:10:21',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (479,29,6,'$ 10 Recurring contribution','2023-03-25 11:10:21',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (480,30,6,'$ 10 Recurring contribution','2023-03-25 11:10:21',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (481,31,6,'€ 5 Recurring contribution','2023-03-25 11:10:21',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (482,1,7,'General','2023-01-25 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (483,2,7,'Student','2023-01-24 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (484,3,7,'General','2023-01-23 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (485,4,7,'Student','2023-01-22 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (486,5,7,'Student','2022-01-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (487,6,7,'Student','2023-01-20 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (488,7,7,'General','2023-01-19 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (489,8,7,'Student','2023-01-18 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (490,9,7,'General','2023-01-17 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (491,10,7,'Student','2022-01-16 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (492,11,7,'Lifetime','2023-01-15 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (493,12,7,'Student','2023-01-14 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (494,13,7,'General','2023-01-13 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (495,14,7,'Student','2023-01-12 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (496,15,7,'General','2020-10-05 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (497,16,7,'Student','2023-01-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (498,17,7,'General','2023-01-09 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (499,18,7,'Student','2023-01-08 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (500,19,7,'General','2023-01-07 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (501,20,7,'Student','2022-01-06 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (502,21,7,'General','2023-01-05 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (503,22,7,'Lifetime','2023-01-04 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (504,23,7,'General','2023-01-03 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (505,24,7,'Student','2023-01-02 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (506,25,7,'General','2020-07-17 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (507,26,7,'Student','2022-12-31 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (508,27,7,'General','2022-12-30 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (509,28,7,'Student','2022-12-29 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (510,29,7,'General','2022-12-28 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (511,30,7,'General','2020-06-07 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (512,32,6,'$ 100.00 - General Membership: Offline signup','2023-01-25 11:10:21',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (513,33,6,'$ 50.00 - Student Membership: Offline signup','2023-01-25 11:10:21',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (514,34,6,'$ 100.00 - General Membership: Offline signup','2023-01-25 11:10:21',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (515,35,6,'$ 50.00 - Student Membership: Offline signup','2023-01-25 11:10:21',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (516,36,6,'$ 50.00 - Student Membership: Offline signup','2023-01-25 11:10:21',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (517,37,6,'$ 50.00 - Student Membership: Offline signup','2023-01-25 11:10:21',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (518,38,6,'$ 100.00 - General Membership: Offline signup','2023-01-25 11:10:21',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (519,39,6,'$ 50.00 - Student Membership: Offline signup','2023-01-25 11:10:21',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (520,40,6,'$ 100.00 - General Membership: Offline signup','2023-01-25 11:10:21',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (521,41,6,'$ 50.00 - Student Membership: Offline signup','2023-01-25 11:10:21',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (522,42,6,'$ 1200.00 - Lifetime Membership: Offline signup','2023-01-25 11:10:21',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (523,43,6,'$ 50.00 - Student Membership: Offline signup','2023-01-25 11:10:21',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (524,44,6,'$ 100.00 - General Membership: Offline signup','2023-01-25 11:10:21',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (525,45,6,'$ 50.00 - Student Membership: Offline signup','2023-01-25 11:10:21',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (526,46,6,'$ 100.00 - General Membership: Offline signup','2023-01-25 11:10:21',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (527,47,6,'$ 50.00 - Student Membership: Offline signup','2023-01-25 11:10:21',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (528,48,6,'$ 100.00 - General Membership: Offline signup','2023-01-25 11:10:21',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (529,49,6,'$ 50.00 - Student Membership: Offline signup','2023-01-25 11:10:21',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (530,50,6,'$ 100.00 - General Membership: Offline signup','2023-01-25 11:10:21',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (531,51,6,'$ 50.00 - Student Membership: Offline signup','2023-01-25 11:10:21',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (532,52,6,'$ 100.00 - General Membership: Offline signup','2023-01-25 11:10:21',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (533,53,6,'$ 1200.00 - Lifetime Membership: Offline signup','2023-01-25 11:10:21',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (534,54,6,'$ 100.00 - General Membership: Offline signup','2023-01-25 11:10:21',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (535,55,6,'$ 50.00 - Student Membership: Offline signup','2023-01-25 11:10:21',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (536,56,6,'$ 100.00 - General Membership: Offline signup','2023-01-25 11:10:21',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (537,57,6,'$ 50.00 - Student Membership: Offline signup','2023-01-25 11:10:21',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (538,58,6,'$ 100.00 - General Membership: Offline signup','2023-01-25 11:10:21',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (539,59,6,'$ 50.00 - Student Membership: Offline signup','2023-01-25 11:10:21',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (540,60,6,'$ 100.00 - General Membership: Offline signup','2023-01-25 11:10:21',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (541,61,6,'$ 100.00 - General Membership: Offline signup','2023-01-25 11:10:21',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (543,1,5,'NULL','2009-01-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (544,2,5,'NULL','2008-05-07 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (545,3,5,'NULL','2008-05-05 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (546,4,5,'NULL','2008-10-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (547,5,5,'NULL','2008-01-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (548,6,5,'NULL','2008-03-05 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (549,7,5,'NULL','2009-07-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (550,8,5,'NULL','2009-03-07 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (551,9,5,'NULL','2008-02-05 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (552,10,5,'NULL','2008-02-01 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (553,11,5,'NULL','2009-01-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (554,12,5,'NULL','2009-03-06 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (555,13,5,'NULL','2008-06-04 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (556,14,5,'NULL','2008-01-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (557,15,5,'NULL','2008-07-04 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (558,16,5,'NULL','2009-01-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (559,17,5,'NULL','2008-01-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (560,18,5,'NULL','2009-03-05 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (561,19,5,'NULL','2008-10-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (562,20,5,'NULL','2009-01-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (563,21,5,'NULL','2008-03-25 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (564,22,5,'NULL','2009-10-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (565,23,5,'NULL','2008-01-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (566,24,5,'NULL','2008-03-11 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (567,25,5,'NULL','2008-04-05 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (568,26,5,'NULL','2009-01-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (569,27,5,'NULL','2008-05-07 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (570,28,5,'NULL','2009-12-12 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (571,29,5,'NULL','2009-12-13 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (572,30,5,'NULL','2009-12-14 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (573,31,5,'NULL','2009-12-15 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (574,32,5,'NULL','2009-07-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (575,33,5,'NULL','2009-03-07 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (576,34,5,'NULL','2009-12-15 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (577,35,5,'NULL','2009-12-13 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (578,36,5,'NULL','2009-01-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (579,37,5,'NULL','2009-03-06 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (580,38,5,'NULL','2009-12-13 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (581,39,5,'NULL','2008-01-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (582,40,5,'NULL','2009-12-14 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (583,41,5,'NULL','2009-01-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (584,42,5,'NULL','2009-12-15 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (585,43,5,'NULL','2009-03-05 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (586,44,5,'NULL','2009-12-13 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (587,45,5,'NULL','2009-01-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (588,46,5,'NULL','2009-12-13 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (589,47,5,'NULL','2009-10-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (590,48,5,'NULL','2009-12-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (591,49,5,'NULL','2009-03-11 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (592,50,5,'NULL','2009-04-05 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (593,63,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2023-01-25 11:10:21',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (594,64,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2023-01-25 11:10:21',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (595,65,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2023-01-25 11:10:21',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (596,66,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2023-01-25 11:10:21',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (597,67,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2023-01-25 11:10:21',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (598,68,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2023-01-25 11:10:21',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (599,69,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2023-01-25 11:10:21',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (600,70,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2023-01-25 11:10:21',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (601,71,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2023-01-25 11:10:21',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (602,72,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2023-01-25 11:10:21',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (603,73,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2023-01-25 11:10:21',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (604,74,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2023-01-25 11:10:21',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (605,75,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2023-01-25 11:10:21',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (606,76,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2023-01-25 11:10:21',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (607,77,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2023-01-25 11:10:21',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (608,78,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2023-01-25 11:10:21',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (609,79,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2023-01-25 11:10:21',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (610,80,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2023-01-25 11:10:21',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (611,81,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2023-01-25 11:10:21',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (612,82,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2023-01-25 11:10:21',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (613,83,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2023-01-25 11:10:21',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (614,84,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2023-01-25 11:10:21',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (615,85,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2023-01-25 11:10:21',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (616,86,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2023-01-25 11:10:21',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (617,87,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2023-01-25 11:10:21',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (618,88,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2023-01-25 11:10:21',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (619,89,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2023-01-25 11:10:21',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (620,90,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2023-01-25 11:10:21',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (621,91,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2023-01-25 11:10:21',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (622,92,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2023-01-25 11:10:21',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (623,93,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2023-01-25 11:10:21',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (624,94,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2023-01-25 11:10:21',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (625,95,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2023-01-25 11:10:21',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (626,96,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2023-01-25 11:10:21',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (627,97,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2023-01-25 11:10:21',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (628,98,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2023-01-25 11:10:21',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (629,99,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2023-01-25 11:10:21',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (630,100,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2023-01-25 11:10:21',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (631,101,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2023-01-25 11:10:21',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (632,102,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2023-01-25 11:10:21',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (633,103,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2023-01-25 11:10:21',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (634,104,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2023-01-25 11:10:21',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (635,105,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2023-01-25 11:10:21',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (636,106,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2023-01-25 11:10:21',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (637,107,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2023-01-25 11:10:21',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (638,108,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2023-01-25 11:10:21',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (639,109,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2023-01-25 11:10:21',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (640,110,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2023-01-25 11:10:21',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (641,111,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2023-01-25 11:10:21',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'), + (642,112,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2023-01-25 11:10:21',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2023-01-25 00:10:21','2023-01-25 00:10:21'); /*!40000 ALTER TABLE `civicrm_activity` ENABLE KEYS */; UNLOCK TABLES; @@ -812,958 +813,959 @@ 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 - (295,164,1,3), - (401,224,1,3), - (532,296,1,3), - (536,298,1,3), - (559,311,1,3), - (718,399,1,3), - (104,59,2,3), - (322,180,2,3), - (563,313,2,3), - (747,415,2,3), - (812,451,2,2), - (31,18,3,3), - (175,98,3,3), - (210,117,3,3), - (318,177,3,3), - (415,232,3,3), - (440,246,3,3), - (465,259,3,3), - (720,400,3,3), - (802,445,3,3), - (930,569,3,2), - (372,209,4,3), - (557,310,4,3), - (813,452,4,2), - (816,455,4,2), - (473,263,5,3), - (565,314,5,3), - (937,576,5,2), - (23,14,6,3), - (125,70,6,3), - (212,118,6,3), - (352,197,6,3), - (509,284,6,3), - (694,386,6,3), - (706,392,6,3), - (814,453,6,2), - (379,213,7,3), - (652,362,7,3), - (723,402,7,3), - (143,81,8,3), - (610,339,8,3), - (815,454,8,2), - (123,69,9,3), - (339,190,9,3), - (795,441,9,3), - (10,6,10,3), - (94,54,10,3), - (203,113,10,3), - (419,234,10,3), - (427,239,10,3), - (583,324,10,3), - (598,333,10,3), - (669,372,10,3), - (8,5,11,3), - (17,10,11,3), - (127,71,11,3), - (154,87,12,3), - (219,122,12,3), - (255,142,12,3), - (399,223,12,3), - (457,255,12,3), - (682,379,12,3), - (858,497,12,2), - (888,527,12,2), - (917,556,12,2), - (405,226,13,3), - (437,244,13,3), - (444,248,13,3), - (727,404,13,3), - (737,410,13,3), - (909,548,13,2), - (442,247,14,3), - (604,336,14,3), - (201,112,15,3), - (374,210,15,3), - (760,422,15,3), - (37,21,16,3), - (282,156,16,3), - (817,456,16,2), - (169,95,17,3), - (230,128,17,3), - (280,155,17,3), - (861,500,17,2), - (891,530,17,2), - (39,22,19,3), - (107,61,19,3), - (395,221,19,3), - (417,233,19,3), - (818,457,19,2), - (4,2,20,3), - (51,29,20,3), - (197,110,20,3), - (729,405,20,3), - (53,30,21,3), - (247,138,21,3), - (806,447,21,3), - (860,499,21,2), - (890,529,21,2), - (947,586,21,2), - (224,125,22,3), - (579,322,22,3), - (650,361,22,3), - (745,414,22,3), - (602,335,23,3), - (808,448,23,3), - (109,62,24,3), - (163,92,24,3), - (290,161,24,3), - (663,369,24,3), - (102,58,25,3), - (446,249,25,3), - (455,254,25,3), - (574,319,25,3), - (642,357,25,3), - (872,511,25,2), - (902,541,25,2), - (945,584,25,2), - (20,12,26,3), - (315,175,26,3), - (485,270,26,3), - (361,202,27,3), - (502,280,27,3), - (634,353,27,3), - (675,375,27,3), - (191,107,28,3), - (195,109,28,3), - (271,150,28,3), - (304,169,28,3), - (334,187,28,3), - (293,163,29,3), - (644,358,29,3), - (762,423,29,3), - (193,108,30,3), - (433,242,30,3), - (915,554,30,2), - (425,238,31,3), - (910,549,31,2), - (608,338,32,3), - (735,409,32,3), - (824,463,32,2), - (825,464,32,2), - (83,48,33,3), - (789,438,33,3), - (387,217,34,3), - (821,460,34,2), - (946,585,34,2), - (68,39,35,3), - (257,143,35,3), - (261,145,35,3), - (348,195,35,3), - (741,412,35,3), - (868,507,35,2), - (898,537,35,2), - (302,168,36,3), - (581,323,36,3), - (698,388,37,3), - (755,419,37,3), - (215,120,38,3), - (217,121,38,3), - (313,174,38,3), - (350,196,38,3), - (606,337,38,3), - (87,50,39,3), - (299,166,39,3), - (342,192,39,3), - (138,78,40,3), - (477,265,40,3), - (614,341,40,3), - (646,359,40,3), - (867,506,40,2), - (897,536,40,2), - (45,25,41,3), - (475,264,41,3), - (596,332,41,3), - (857,496,41,2), - (887,526,41,2), - (925,564,41,2), - (145,82,42,3), - (199,111,42,3), - (267,148,42,3), - (481,267,42,3), - (528,294,42,3), - (677,376,42,3), - (793,440,42,3), - (33,19,43,3), - (136,77,43,3), - (265,147,43,3), - (431,241,43,3), - (467,260,43,3), - (511,285,43,3), - (823,462,43,2), - (115,65,44,3), - (920,559,44,2), - (251,140,45,3), - (413,231,45,3), - (561,312,45,3), - (147,83,46,3), - (259,144,46,3), - (407,227,46,3), - (504,281,46,3), - (656,364,46,3), - (680,378,46,3), - (81,47,47,3), - (186,104,47,3), - (500,279,47,3), - (847,486,47,2), - (877,516,47,2), - (594,331,48,3), - (685,381,48,3), - (96,55,49,3), - (121,68,49,3), - (171,96,49,3), - (344,193,49,3), - (435,243,49,3), - (461,257,49,3), - (541,301,49,3), - (791,439,49,3), - (904,543,49,2), - (654,363,50,3), - (660,367,50,3), - (469,261,51,3), - (177,99,52,3), - (479,266,52,3), - (625,347,52,3), - (713,396,52,3), - (774,430,52,3), - (804,446,52,3), - (43,24,53,3), - (234,131,53,3), - (640,356,53,3), - (871,510,53,2), - (901,540,53,2), - (310,172,54,3), - (403,225,54,3), - (526,293,54,3), - (549,305,54,3), - (702,390,54,3), - (772,429,54,3), - (448,250,55,3), - (522,291,55,3), - (692,385,55,3), - (810,449,55,3), - (245,137,56,3), - (368,207,56,3), - (385,216,56,3), - (516,288,56,3), - (732,407,56,3), - (941,580,56,2), - (222,124,57,3), - (852,491,57,2), - (882,521,57,2), - (29,17,58,3), - (422,236,59,3), - (826,465,59,2), - (827,466,59,2), - (828,467,59,2), - (829,468,59,2), - (830,469,59,2), - (831,470,59,2), - (832,471,59,2), - (833,472,59,2), - (834,473,59,2), - (835,474,59,2), - (836,475,59,2), - (98,56,60,3), - (119,67,60,3), - (779,433,60,3), - (845,484,60,2), - (875,514,60,2), - (938,577,60,2), - (41,23,61,3), - (226,126,61,3), - (228,127,61,3), - (768,427,61,3), - (182,102,62,3), - (336,188,62,3), - (376,211,62,3), - (636,354,62,3), - (690,384,62,3), - (749,416,62,3), - (844,483,62,2), - (874,513,62,2), - (410,229,63,3), - (568,316,63,3), - (79,46,64,3), - (490,273,64,3), - (600,334,64,3), - (57,33,65,3), - (149,84,65,3), - (370,208,65,3), - (530,295,65,3), - (743,413,65,3), - (243,136,66,3), - (308,171,66,3), - (907,546,66,2), - (572,318,67,3), - (696,387,67,3), - (783,435,67,3), - (70,40,68,3), - (285,158,68,3), - (325,182,68,3), - (617,343,68,3), - (638,355,68,3), - (15,9,69,3), - (61,35,69,3), - (547,304,69,3), - (276,153,70,3), - (704,391,70,3), - (751,417,70,3), - (781,434,70,3), - (12,7,71,3), - (570,317,71,3), - (700,389,71,3), - (822,461,71,2), - (906,545,71,2), - (393,220,72,3), - (518,289,72,3), - (587,327,72,3), - (913,552,72,2), - (159,90,73,3), - (389,218,73,3), - (85,49,74,3), - (288,160,74,3), - (471,262,74,3), - (621,345,74,3), - (952,591,74,2), - (35,20,75,3), - (452,252,75,3), - (671,373,75,3), - (846,485,75,2), - (876,515,75,2), - (64,37,76,3), - (488,272,76,3), - (673,374,76,3), - (716,398,76,3), - (758,421,76,3), - (953,592,76,2), - (297,165,77,3), - (397,222,77,3), - (513,286,77,3), - (648,360,77,3), - (47,26,78,3), - (429,240,78,3), - (463,258,78,3), - (66,38,79,3), - (188,105,79,3), - (520,290,79,3), - (623,346,79,3), - (905,544,79,2), - (72,41,80,3), - (77,45,80,3), - (450,251,80,3), - (524,292,80,3), - (764,424,80,3), - (936,575,80,2), - (100,57,81,3), - (330,185,81,3), - (365,205,81,3), - (534,297,81,3), - (725,403,81,3), - (89,51,82,3), - (328,184,82,3), - (753,418,82,3), - (819,458,82,2), - (207,115,83,3), - (269,149,83,3), - (332,186,83,3), - (383,215,83,3), - (612,340,83,3), - (2,1,84,3), - (59,34,84,3), - (152,86,85,3), - (553,307,85,3), - (627,348,85,3), - (739,411,85,3), - (111,63,86,3), - (131,74,86,3), - (239,134,86,3), - (492,274,86,3), - (629,349,86,3), - (167,94,87,3), - (381,214,87,3), - (665,370,88,3), - (797,442,88,3), - (25,15,89,3), - (237,133,89,3), - (278,154,89,3), - (306,170,89,3), - (589,328,89,3), - (591,329,89,3), - (497,277,90,3), - (551,306,90,3), - (667,371,90,3), - (785,436,91,3), - (117,66,92,3), - (165,93,92,3), - (274,152,92,3), - (506,282,92,3), - (820,459,92,2), - (113,64,94,3), - (141,80,94,3), - (157,89,94,3), - (708,393,94,3), - (770,428,94,3), - (161,91,95,3), - (184,103,95,3), - (249,139,95,3), - (346,194,95,3), - (391,219,95,3), - (619,344,95,3), - (856,495,95,2), - (886,525,95,2), - (359,201,96,3), - (495,276,96,3), - (543,302,96,3), - (576,320,96,3), - (710,394,96,3), - (799,443,96,3), - (859,498,96,2), - (889,528,96,2), - (545,303,97,3), - (173,97,98,3), - (179,100,98,3), - (253,141,98,3), - (459,256,98,3), - (539,300,98,3), - (776,431,98,3), - (939,578,98,2), - (27,16,99,3), - (205,114,99,3), - (263,146,99,3), - (354,198,99,3), - (356,199,99,3), - (688,383,99,3), - (787,437,99,3), - (837,476,99,2), - (838,477,99,2), - (839,478,99,2), - (840,479,99,2), - (841,480,99,2), - (91,52,100,3), - (241,135,100,3), - (133,75,101,3), - (949,588,101,2), - (923,562,102,2), - (842,481,103,2), - (908,547,103,2), - (869,508,104,2), - (899,538,104,2), - (865,504,106,2), - (895,534,106,2), - (922,561,109,2), - (942,581,111,2), - (940,579,114,2), - (921,560,115,2), - (863,502,116,2), - (893,532,116,2), - (862,501,118,2), - (892,531,118,2), - (1,1,119,2), - (3,2,119,2), - (5,3,119,2), - (6,4,119,2), - (7,5,119,2), - (9,6,119,2), - (11,7,119,2), - (13,8,119,2), - (14,9,119,2), - (16,10,119,2), - (18,11,119,2), - (19,12,119,2), - (21,13,119,2), - (22,14,119,2), - (24,15,119,2), - (26,16,119,2), - (28,17,119,2), - (30,18,119,2), - (32,19,119,2), - (34,20,119,2), - (36,21,119,2), - (38,22,119,2), - (40,23,119,2), - (42,24,119,2), - (44,25,119,2), - (46,26,119,2), - (48,27,119,2), - (49,28,119,2), - (50,29,119,2), - (52,30,119,2), - (54,31,119,2), - (55,32,119,2), - (56,33,119,2), - (58,34,119,2), - (60,35,119,2), - (62,36,119,2), - (63,37,119,2), - (65,38,119,2), - (67,39,119,2), - (69,40,119,2), - (71,41,119,2), - (73,42,119,2), - (74,43,119,2), - (75,44,119,2), - (76,45,119,2), - (78,46,119,2), - (80,47,119,2), - (82,48,119,2), - (84,49,119,2), - (86,50,119,2), - (88,51,119,2), - (90,52,119,2), - (92,53,119,2), - (93,54,119,2), - (95,55,119,2), - (97,56,119,2), - (99,57,119,2), - (101,58,119,2), - (103,59,119,2), - (105,60,119,2), - (106,61,119,2), - (108,62,119,2), - (110,63,119,2), - (112,64,119,2), - (114,65,119,2), - (116,66,119,2), - (118,67,119,2), - (120,68,119,2), - (122,69,119,2), - (124,70,119,2), - (126,71,119,2), - (128,72,119,2), - (129,73,119,2), - (130,74,119,2), - (132,75,119,2), - (134,76,119,2), - (135,77,119,2), - (137,78,119,2), - (139,79,119,2), - (140,80,119,2), - (142,81,119,2), - (144,82,119,2), - (146,83,119,2), - (148,84,119,2), - (150,85,119,2), - (151,86,119,2), - (153,87,119,2), - (155,88,119,2), - (156,89,119,2), - (158,90,119,2), - (160,91,119,2), - (162,92,119,2), - (164,93,119,2), - (166,94,119,2), - (168,95,119,2), - (170,96,119,2), - (172,97,119,2), - (174,98,119,2), - (176,99,119,2), - (178,100,119,2), - (180,101,119,2), - (181,102,119,2), - (183,103,119,2), - (185,104,119,2), - (187,105,119,2), - (189,106,119,2), - (190,107,119,2), - (192,108,119,2), - (194,109,119,2), - (196,110,119,2), - (198,111,119,2), - (200,112,119,2), - (202,113,119,2), - (204,114,119,2), - (206,115,119,2), - (208,116,119,2), - (209,117,119,2), - (211,118,119,2), - (213,119,119,2), - (214,120,119,2), - (216,121,119,2), - (218,122,119,2), - (220,123,119,2), - (221,124,119,2), - (223,125,119,2), - (225,126,119,2), - (227,127,119,2), - (229,128,119,2), - (231,129,119,2), - (232,130,119,2), - (233,131,119,2), - (235,132,119,2), - (236,133,119,2), - (238,134,119,2), - (240,135,119,2), - (242,136,119,2), - (244,137,119,2), - (246,138,119,2), - (248,139,119,2), - (250,140,119,2), - (252,141,119,2), - (254,142,119,2), - (256,143,119,2), - (258,144,119,2), - (260,145,119,2), - (262,146,119,2), - (264,147,119,2), - (266,148,119,2), - (268,149,119,2), - (270,150,119,2), - (272,151,122,2), - (273,152,122,2), - (275,153,122,2), - (277,154,122,2), - (279,155,122,2), - (281,156,122,2), - (283,157,122,2), - (284,158,122,2), - (286,159,122,2), - (287,160,122,2), - (289,161,122,2), - (291,162,122,2), - (292,163,122,2), - (294,164,122,2), - (296,165,122,2), - (298,166,122,2), - (300,167,122,2), - (301,168,122,2), - (303,169,122,2), - (305,170,122,2), - (307,171,122,2), - (309,172,122,2), - (311,173,122,2), - (312,174,122,2), - (314,175,122,2), - (316,176,122,2), - (317,177,122,2), - (319,178,122,2), - (320,179,122,2), - (321,180,122,2), - (323,181,122,2), - (324,182,122,2), - (326,183,122,2), - (327,184,122,2), - (329,185,122,2), - (331,186,122,2), - (333,187,122,2), - (335,188,122,2), - (337,189,122,2), - (338,190,122,2), - (340,191,122,2), - (341,192,122,2), - (343,193,122,2), - (345,194,122,2), - (347,195,122,2), - (349,196,122,2), - (351,197,122,2), - (353,198,122,2), - (355,199,122,2), - (357,200,122,2), - (358,201,122,2), - (360,202,122,2), - (362,203,122,2), - (363,204,122,2), - (364,205,122,2), - (366,206,122,2), - (367,207,122,2), - (369,208,122,2), - (371,209,122,2), - (373,210,122,2), - (375,211,122,2), - (377,212,122,2), - (378,213,122,2), - (380,214,122,2), - (382,215,122,2), - (384,216,122,2), - (386,217,122,2), - (388,218,122,2), - (390,219,122,2), - (392,220,122,2), - (394,221,122,2), - (396,222,122,2), - (398,223,122,2), - (400,224,122,2), - (402,225,122,2), - (404,226,122,2), - (406,227,122,2), - (408,228,122,2), - (409,229,122,2), - (411,230,122,2), - (412,231,122,2), - (414,232,122,2), - (416,233,122,2), - (418,234,122,2), - (420,235,122,2), - (421,236,122,2), - (423,237,122,2), - (424,238,122,2), - (426,239,122,2), - (428,240,122,2), - (430,241,122,2), - (432,242,122,2), - (434,243,122,2), - (436,244,122,2), - (438,245,122,2), - (439,246,122,2), - (441,247,122,2), - (443,248,122,2), - (445,249,122,2), - (447,250,122,2), - (449,251,122,2), - (451,252,122,2), - (453,253,122,2), - (454,254,122,2), - (456,255,122,2), - (458,256,122,2), - (460,257,122,2), - (462,258,122,2), - (464,259,122,2), - (466,260,122,2), - (468,261,122,2), - (470,262,122,2), - (472,263,122,2), - (474,264,122,2), - (476,265,122,2), - (478,266,122,2), - (480,267,122,2), - (482,268,122,2), - (483,269,122,2), - (484,270,122,2), - (486,271,122,2), - (487,272,122,2), - (489,273,122,2), - (491,274,122,2), - (493,275,122,2), - (494,276,122,2), - (496,277,122,2), - (498,278,122,2), - (499,279,122,2), - (501,280,122,2), - (503,281,122,2), - (505,282,122,2), - (507,283,122,2), - (508,284,122,2), - (510,285,122,2), - (512,286,122,2), - (514,287,122,2), - (515,288,122,2), - (517,289,122,2), - (519,290,122,2), - (521,291,122,2), - (523,292,122,2), - (525,293,122,2), - (527,294,122,2), - (529,295,122,2), - (531,296,122,2), - (533,297,122,2), - (535,298,122,2), - (537,299,122,2), - (538,300,122,2), - (851,490,123,2), - (881,520,123,2), - (951,590,128,2), - (914,553,134,2), - (540,301,137,2), - (542,302,137,2), - (544,303,137,2), - (546,304,137,2), - (548,305,137,2), - (550,306,137,2), - (552,307,137,2), - (554,308,137,2), - (555,309,137,2), - (556,310,137,2), - (558,311,137,2), - (560,312,137,2), - (562,313,137,2), - (564,314,137,2), - (566,315,137,2), - (567,316,137,2), - (569,317,137,2), - (571,318,137,2), - (573,319,137,2), - (575,320,137,2), - (577,321,137,2), - (578,322,137,2), - (580,323,137,2), - (582,324,137,2), - (584,325,137,2), - (585,326,137,2), - (586,327,137,2), - (588,328,137,2), - (590,329,137,2), - (592,330,137,2), - (593,331,137,2), - (595,332,137,2), - (597,333,137,2), - (599,334,137,2), - (601,335,137,2), - (603,336,137,2), - (605,337,137,2), - (607,338,137,2), - (609,339,137,2), - (611,340,137,2), - (613,341,137,2), - (615,342,137,2), - (616,343,137,2), - (618,344,137,2), - (620,345,137,2), - (622,346,137,2), - (624,347,137,2), - (626,348,137,2), - (628,349,137,2), - (630,350,137,2), - (631,351,137,2), - (632,352,137,2), - (633,353,137,2), - (635,354,137,2), - (637,355,137,2), - (639,356,137,2), - (641,357,137,2), - (643,358,137,2), - (645,359,137,2), - (647,360,137,2), - (649,361,137,2), - (651,362,137,2), - (653,363,137,2), - (655,364,137,2), - (657,365,137,2), - (658,366,137,2), - (659,367,137,2), - (661,368,137,2), - (662,369,137,2), - (664,370,137,2), - (666,371,137,2), - (668,372,137,2), - (670,373,137,2), - (672,374,137,2), - (674,375,137,2), - (676,376,137,2), - (678,377,137,2), - (679,378,137,2), - (681,379,137,2), - (683,380,137,2), - (684,381,137,2), - (686,382,137,2), - (687,383,137,2), - (689,384,137,2), - (691,385,137,2), - (693,386,137,2), - (695,387,137,2), - (697,388,137,2), - (699,389,137,2), - (701,390,137,2), - (703,391,137,2), - (705,392,137,2), - (707,393,137,2), - (709,394,137,2), - (711,395,137,2), - (712,396,137,2), - (714,397,137,2), - (715,398,137,2), - (717,399,137,2), - (719,400,137,2), - (721,401,137,2), - (722,402,137,2), - (724,403,137,2), - (726,404,137,2), - (728,405,137,2), - (730,406,137,2), - (731,407,137,2), - (733,408,137,2), - (734,409,137,2), - (736,410,137,2), - (738,411,137,2), - (740,412,137,2), - (742,413,137,2), - (744,414,137,2), - (746,415,137,2), - (748,416,137,2), - (750,417,137,2), - (752,418,137,2), - (754,419,137,2), - (756,420,137,2), - (757,421,137,2), - (759,422,137,2), - (761,423,137,2), - (763,424,137,2), - (765,425,137,2), - (766,426,137,2), - (767,427,137,2), - (769,428,137,2), - (771,429,137,2), - (773,430,137,2), - (775,431,137,2), - (777,432,137,2), - (778,433,137,2), - (780,434,137,2), - (782,435,137,2), - (784,436,137,2), - (786,437,137,2), - (788,438,137,2), - (790,439,137,2), - (792,440,137,2), - (794,441,137,2), - (796,442,137,2), - (798,443,137,2), - (800,444,137,2), - (801,445,137,2), - (803,446,137,2), - (805,447,137,2), - (807,448,137,2), - (809,449,137,2), - (811,450,137,2), - (870,509,139,2), - (900,539,139,2), - (944,583,139,2), - (934,573,143,2), - (943,582,145,2), - (916,555,147,2), - (866,505,148,2), - (896,535,148,2), - (931,570,148,2), - (950,589,149,2), - (855,494,150,2), - (885,524,150,2), - (935,574,157,2), - (843,482,160,2), - (873,512,160,2), - (911,550,160,2), - (854,493,164,2), - (884,523,164,2), - (848,487,169,2), - (878,517,169,2), - (932,571,171,2), - (850,489,179,2), - (880,519,179,2), - (918,557,179,2), - (912,551,180,2), - (849,488,186,2), - (879,518,186,2), - (929,568,187,2), - (927,566,188,2), - (948,587,190,2), - (864,503,193,2), - (894,533,193,2), - (853,492,195,2), - (883,522,195,2), - (933,572,195,2), - (919,558,197,2), - (924,563,198,2), - (928,567,200,2), - (926,565,201,2); + (485,269,1,3), + (195,106,2,3), + (300,164,2,3), + (351,192,2,3), + (397,218,2,3), + (638,355,2,3), + (813,451,2,2), + (6,3,3,3), + (278,152,3,3), + (296,162,3,3), + (343,187,3,3), + (392,215,3,3), + (531,295,3,3), + (100,54,4,3), + (577,322,4,3), + (814,452,4,2), + (817,455,4,2), + (419,233,5,3), + (620,346,5,3), + (203,111,6,3), + (715,398,6,3), + (746,414,6,3), + (815,453,6,2), + (72,38,7,3), + (314,172,7,3), + (458,254,7,3), + (548,306,7,3), + (786,435,7,3), + (788,436,7,3), + (798,441,7,3), + (68,36,8,3), + (729,405,8,3), + (816,454,8,2), + (855,493,8,2), + (885,523,8,2), + (138,75,9,3), + (143,78,9,3), + (220,120,9,3), + (349,191,9,3), + (360,197,9,3), + (758,420,9,3), + (431,239,10,3), + (600,335,10,3), + (674,374,10,3), + (262,143,11,3), + (281,154,11,3), + (371,204,11,3), + (468,259,11,3), + (717,399,11,3), + (790,437,11,3), + (846,484,11,2), + (876,514,11,2), + (148,81,12,3), + (160,87,12,3), + (544,304,12,3), + (171,93,13,3), + (433,240,13,3), + (853,491,13,2), + (883,521,13,2), + (907,545,13,2), + (416,231,14,3), + (613,342,14,3), + (754,418,14,3), + (312,171,15,3), + (654,364,15,3), + (611,341,16,3), + (626,349,16,3), + (662,368,16,3), + (818,456,16,2), + (851,489,16,2), + (881,519,16,2), + (113,61,17,3), + (125,67,17,3), + (168,91,17,3), + (497,276,17,3), + (778,431,17,3), + (18,9,18,3), + (84,45,18,3), + (205,112,18,3), + (218,119,18,3), + (292,160,18,3), + (447,248,18,3), + (505,281,18,3), + (594,332,18,3), + (910,548,18,2), + (495,275,19,3), + (587,327,19,3), + (736,409,19,3), + (819,457,19,2), + (930,568,19,2), + (25,13,20,3), + (228,124,20,3), + (264,144,20,3), + (316,173,20,3), + (330,180,20,3), + (456,253,20,3), + (670,372,20,3), + (810,449,21,3), + (867,505,21,2), + (897,535,21,2), + (939,577,21,2), + (156,85,22,3), + (209,114,22,3), + (439,243,22,3), + (507,282,22,3), + (563,314,22,3), + (802,444,22,3), + (8,4,23,3), + (409,225,23,3), + (32,17,24,3), + (309,169,24,3), + (476,264,24,3), + (355,194,25,3), + (636,354,25,3), + (697,388,25,3), + (302,165,26,3), + (441,244,26,3), + (756,419,26,3), + (776,430,26,3), + (46,24,27,3), + (492,273,27,3), + (509,283,27,3), + (719,400,27,3), + (908,546,27,2), + (294,161,28,3), + (307,168,28,3), + (524,291,28,3), + (660,367,28,3), + (152,83,29,3), + (173,94,29,3), + (191,104,29,3), + (222,121,29,3), + (324,177,29,3), + (435,241,29,3), + (516,287,29,3), + (691,385,29,3), + (276,151,30,3), + (472,262,30,3), + (490,272,30,3), + (213,116,31,3), + (748,415,31,3), + (864,502,31,2), + (894,532,31,2), + (23,12,32,3), + (38,20,32,3), + (61,32,32,3), + (74,39,32,3), + (94,51,32,3), + (128,69,32,3), + (132,71,32,3), + (239,130,32,3), + (258,141,32,3), + (287,157,32,3), + (403,221,32,3), + (649,361,32,3), + (825,463,32,2), + (826,464,32,2), + (245,134,33,3), + (318,174,33,3), + (328,179,33,3), + (529,294,33,3), + (632,352,33,3), + (695,387,33,3), + (42,22,34,3), + (63,33,34,3), + (380,209,34,3), + (822,460,34,2), + (345,188,35,3), + (36,19,36,3), + (59,31,36,3), + (105,57,36,3), + (162,88,36,3), + (808,448,36,3), + (40,21,37,3), + (98,53,37,3), + (145,79,37,3), + (230,125,37,3), + (272,149,37,3), + (394,216,37,3), + (684,380,37,3), + (761,422,37,3), + (215,117,39,3), + (237,129,39,3), + (335,183,39,3), + (771,427,39,3), + (250,137,40,3), + (676,375,40,3), + (763,423,40,3), + (596,333,41,3), + (668,371,41,3), + (784,434,41,3), + (111,60,42,3), + (932,570,42,2), + (55,29,43,3), + (199,109,43,3), + (283,155,43,3), + (553,309,43,3), + (664,369,43,3), + (721,401,43,3), + (824,462,43,2), + (913,551,43,2), + (201,110,44,3), + (559,312,44,3), + (604,337,44,3), + (862,500,44,2), + (892,530,44,2), + (934,572,44,2), + (298,163,45,3), + (437,242,45,3), + (792,438,45,3), + (117,63,46,3), + (624,348,46,3), + (640,356,46,3), + (81,43,47,3), + (561,313,47,3), + (701,390,47,3), + (53,28,48,3), + (738,410,48,3), + (918,556,48,2), + (123,66,49,3), + (326,178,49,3), + (647,360,49,3), + (652,363,49,3), + (658,366,49,3), + (866,504,49,2), + (896,534,49,2), + (226,123,50,3), + (466,258,50,3), + (51,27,51,3), + (378,208,51,3), + (567,316,51,3), + (705,392,51,3), + (812,450,51,3), + (57,30,52,3), + (863,501,52,2), + (893,531,52,2), + (384,211,53,3), + (449,249,53,3), + (500,278,53,3), + (522,290,53,3), + (672,373,54,3), + (725,403,54,3), + (914,552,54,2), + (10,5,55,3), + (589,328,55,3), + (678,376,55,3), + (796,440,55,3), + (193,105,56,3), + (464,257,56,3), + (527,293,56,3), + (645,359,56,3), + (750,416,56,3), + (86,46,57,3), + (130,70,57,3), + (254,139,58,3), + (401,220,58,3), + (555,310,58,3), + (12,6,59,3), + (699,389,59,3), + (827,465,59,2), + (828,466,59,2), + (829,467,59,2), + (830,468,59,2), + (831,469,59,2), + (832,470,59,2), + (833,471,59,2), + (834,472,59,2), + (835,473,59,2), + (836,474,59,2), + (837,475,59,2), + (511,284,60,3), + (687,382,60,3), + (712,396,60,3), + (115,62,62,3), + (207,113,62,3), + (241,131,62,3), + (693,386,62,3), + (733,407,62,3), + (744,413,62,3), + (16,8,63,3), + (140,76,63,3), + (177,96,63,3), + (332,181,63,3), + (575,321,64,3), + (940,578,64,2), + (164,89,65,3), + (188,102,65,3), + (252,138,65,3), + (274,150,65,3), + (423,235,65,3), + (474,263,65,3), + (581,324,65,3), + (927,565,65,2), + (341,186,66,3), + (514,286,66,3), + (666,370,66,3), + (77,41,67,3), + (290,159,67,3), + (399,219,67,3), + (136,74,68,3), + (460,255,68,3), + (478,265,68,3), + (946,584,69,2), + (358,196,70,3), + (429,238,70,3), + (598,334,70,3), + (630,351,70,3), + (950,588,70,2), + (782,433,71,3), + (823,461,71,2), + (873,511,71,2), + (903,541,71,2), + (848,486,72,2), + (878,516,72,2), + (121,65,73,3), + (234,127,73,3), + (367,201,73,3), + (537,300,73,3), + (305,167,74,3), + (388,213,74,3), + (602,336,74,3), + (158,86,75,3), + (557,311,75,3), + (570,318,75,3), + (44,23,76,3), + (518,288,76,3), + (634,353,76,3), + (727,404,76,3), + (502,279,77,3), + (542,303,77,3), + (34,18,78,3), + (88,47,78,3), + (232,126,78,3), + (362,198,78,3), + (443,245,78,3), + (520,289,78,3), + (615,343,78,3), + (767,425,78,3), + (382,210,79,3), + (769,426,79,3), + (933,571,79,2), + (184,100,80,3), + (406,223,80,3), + (462,256,80,3), + (487,270,80,3), + (656,365,80,3), + (703,391,80,3), + (723,402,80,3), + (915,553,80,2), + (451,250,81,3), + (546,305,81,3), + (869,507,81,2), + (899,537,81,2), + (27,14,82,3), + (30,16,82,3), + (154,84,82,3), + (320,175,82,3), + (752,417,82,3), + (794,439,82,3), + (820,458,82,2), + (936,574,82,2), + (186,101,83,3), + (573,320,83,3), + (953,591,83,2), + (70,37,84,3), + (102,55,84,3), + (119,64,84,3), + (150,82,84,3), + (579,323,84,3), + (609,340,84,3), + (628,350,84,3), + (224,122,85,3), + (680,377,85,3), + (740,411,85,3), + (285,156,86,3), + (425,236,86,3), + (550,307,86,3), + (921,559,86,2), + (4,2,87,3), + (353,193,87,3), + (480,266,87,3), + (211,115,88,3), + (386,212,88,3), + (926,564,88,2), + (373,205,89,3), + (765,424,89,3), + (107,58,90,3), + (421,234,90,3), + (539,301,90,3), + (731,406,90,3), + (805,446,90,3), + (166,90,91,3), + (427,237,91,3), + (482,267,91,3), + (857,495,91,2), + (887,525,91,2), + (79,42,92,3), + (96,52,92,3), + (270,148,92,3), + (607,339,92,3), + (774,429,92,3), + (780,432,92,3), + (821,459,92,2), + (14,7,93,3), + (20,10,93,3), + (66,35,93,3), + (337,184,93,3), + (742,412,93,3), + (925,563,93,2), + (339,185,94,3), + (375,206,94,3), + (1,1,95,2), + (3,2,95,2), + (5,3,95,2), + (7,4,95,2), + (9,5,95,2), + (11,6,95,2), + (13,7,95,2), + (15,8,95,2), + (17,9,95,2), + (19,10,95,2), + (21,11,95,2), + (22,12,95,2), + (24,13,95,2), + (26,14,95,2), + (28,15,95,2), + (29,16,95,2), + (31,17,95,2), + (33,18,95,2), + (35,19,95,2), + (37,20,95,2), + (39,21,95,2), + (41,22,95,2), + (43,23,95,2), + (45,24,95,2), + (47,25,95,2), + (48,26,95,2), + (50,27,95,2), + (52,28,95,2), + (54,29,95,2), + (56,30,95,2), + (58,31,95,2), + (60,32,95,2), + (62,33,95,2), + (64,34,95,2), + (65,35,95,2), + (67,36,95,2), + (69,37,95,2), + (71,38,95,2), + (73,39,95,2), + (75,40,95,2), + (76,41,95,2), + (78,42,95,2), + (80,43,95,2), + (82,44,95,2), + (83,45,95,2), + (85,46,95,2), + (87,47,95,2), + (89,48,95,2), + (90,49,95,2), + (91,50,95,2), + (93,51,95,2), + (95,52,95,2), + (97,53,95,2), + (99,54,95,2), + (101,55,95,2), + (103,56,95,2), + (104,57,95,2), + (106,58,95,2), + (108,59,95,2), + (110,60,95,2), + (112,61,95,2), + (114,62,95,2), + (116,63,95,2), + (118,64,95,2), + (120,65,95,2), + (122,66,95,2), + (124,67,95,2), + (126,68,95,2), + (127,69,95,2), + (129,70,95,2), + (131,71,95,2), + (133,72,95,2), + (134,73,95,2), + (135,74,95,2), + (137,75,95,2), + (139,76,95,2), + (141,77,95,2), + (142,78,95,2), + (144,79,95,2), + (146,80,95,2), + (147,81,95,2), + (149,82,95,2), + (151,83,95,2), + (153,84,95,2), + (155,85,95,2), + (157,86,95,2), + (159,87,95,2), + (161,88,95,2), + (163,89,95,2), + (165,90,95,2), + (167,91,95,2), + (169,92,95,2), + (170,93,95,2), + (172,94,95,2), + (174,95,95,2), + (176,96,95,2), + (178,97,95,2), + (180,98,95,2), + (181,99,95,2), + (182,99,95,3), + (183,100,95,2), + (185,101,95,2), + (187,102,95,2), + (189,103,95,2), + (190,104,95,2), + (192,105,95,2), + (194,106,95,2), + (196,107,95,2), + (197,108,95,2), + (198,109,95,2), + (200,110,95,2), + (202,111,95,2), + (204,112,95,2), + (206,113,95,2), + (208,114,95,2), + (210,115,95,2), + (212,116,95,2), + (214,117,95,2), + (216,118,95,2), + (217,119,95,2), + (219,120,95,2), + (221,121,95,2), + (223,122,95,2), + (225,123,95,2), + (227,124,95,2), + (229,125,95,2), + (231,126,95,2), + (233,127,95,2), + (235,128,95,2), + (236,129,95,2), + (238,130,95,2), + (240,131,95,2), + (242,132,95,2), + (243,133,95,2), + (244,134,95,2), + (246,135,95,2), + (247,136,95,2), + (249,137,95,2), + (251,138,95,2), + (253,139,95,2), + (255,140,95,2), + (257,141,95,2), + (259,142,95,2), + (261,143,95,2), + (263,144,95,2), + (265,145,95,2), + (266,146,95,2), + (268,147,95,2), + (269,148,95,2), + (271,149,95,2), + (273,150,95,2), + (618,345,95,3), + (707,393,95,3), + (267,146,96,3), + (364,199,96,3), + (583,325,96,3), + (585,326,96,3), + (622,347,96,3), + (916,554,96,2), + (248,136,97,3), + (260,142,97,3), + (929,567,97,2), + (92,50,98,3), + (322,176,98,3), + (49,26,99,3), + (175,95,99,3), + (179,97,99,3), + (256,140,99,3), + (565,315,99,3), + (838,476,99,2), + (839,477,99,2), + (840,478,99,2), + (841,479,99,2), + (842,480,99,2), + (847,485,99,2), + (877,515,99,2), + (954,592,99,2), + (109,59,100,3), + (390,214,100,3), + (453,251,100,3), + (710,395,100,3), + (868,506,100,2), + (898,536,100,2), + (938,576,100,2), + (2,1,101,3), + (643,358,101,3), + (843,481,103,2), + (935,573,109,2), + (870,508,110,2), + (900,538,110,2), + (909,547,111,2), + (906,544,113,2), + (859,497,115,2), + (889,527,115,2), + (924,562,118,2), + (952,590,123,2), + (945,583,124,2), + (937,575,127,2), + (844,482,134,2), + (874,512,134,2), + (922,560,134,2), + (942,580,137,2), + (865,503,138,2), + (895,533,138,2), + (872,510,144,2), + (902,540,144,2), + (912,550,146,2), + (538,301,152,2), + (540,302,152,2), + (541,303,152,2), + (543,304,152,2), + (545,305,152,2), + (547,306,152,2), + (549,307,152,2), + (551,308,152,2), + (552,309,152,2), + (554,310,152,2), + (556,311,152,2), + (558,312,152,2), + (560,313,152,2), + (562,314,152,2), + (564,315,152,2), + (566,316,152,2), + (568,317,152,2), + (569,318,152,2), + (571,319,152,2), + (572,320,152,2), + (574,321,152,2), + (576,322,152,2), + (578,323,152,2), + (580,324,152,2), + (582,325,152,2), + (584,326,152,2), + (586,327,152,2), + (588,328,152,2), + (590,329,152,2), + (591,330,152,2), + (592,331,152,2), + (593,332,152,2), + (595,333,152,2), + (597,334,152,2), + (599,335,152,2), + (601,336,152,2), + (603,337,152,2), + (605,338,152,2), + (606,339,152,2), + (608,340,152,2), + (610,341,152,2), + (612,342,152,2), + (614,343,152,2), + (616,344,152,2), + (617,345,152,2), + (619,346,152,2), + (621,347,152,2), + (623,348,152,2), + (625,349,152,2), + (627,350,152,2), + (629,351,152,2), + (631,352,152,2), + (633,353,152,2), + (635,354,152,2), + (637,355,152,2), + (639,356,152,2), + (641,357,152,2), + (642,358,152,2), + (644,359,152,2), + (646,360,152,2), + (648,361,152,2), + (650,362,152,2), + (651,363,152,2), + (653,364,152,2), + (655,365,152,2), + (657,366,152,2), + (659,367,152,2), + (661,368,152,2), + (663,369,152,2), + (665,370,152,2), + (667,371,152,2), + (669,372,152,2), + (671,373,152,2), + (673,374,152,2), + (675,375,152,2), + (677,376,152,2), + (679,377,152,2), + (681,378,152,2), + (682,379,152,2), + (683,380,152,2), + (685,381,152,2), + (686,382,152,2), + (688,383,152,2), + (689,384,152,2), + (690,385,152,2), + (692,386,152,2), + (694,387,152,2), + (696,388,152,2), + (698,389,152,2), + (700,390,152,2), + (702,391,152,2), + (704,392,152,2), + (706,393,152,2), + (708,394,152,2), + (709,395,152,2), + (711,396,152,2), + (713,397,152,2), + (714,398,152,2), + (716,399,152,2), + (718,400,152,2), + (720,401,152,2), + (722,402,152,2), + (724,403,152,2), + (726,404,152,2), + (728,405,152,2), + (730,406,152,2), + (732,407,152,2), + (734,408,152,2), + (735,409,152,2), + (737,410,152,2), + (739,411,152,2), + (741,412,152,2), + (743,413,152,2), + (745,414,152,2), + (747,415,152,2), + (749,416,152,2), + (751,417,152,2), + (753,418,152,2), + (755,419,152,2), + (757,420,152,2), + (759,421,152,2), + (760,422,152,2), + (762,423,152,2), + (764,424,152,2), + (766,425,152,2), + (768,426,152,2), + (770,427,152,2), + (772,428,152,2), + (773,429,152,2), + (775,430,152,2), + (777,431,152,2), + (779,432,152,2), + (781,433,152,2), + (783,434,152,2), + (785,435,152,2), + (787,436,152,2), + (789,437,152,2), + (791,438,152,2), + (793,439,152,2), + (795,440,152,2), + (797,441,152,2), + (799,442,152,2), + (800,443,152,2), + (801,444,152,2), + (803,445,152,2), + (804,446,152,2), + (806,447,152,2), + (807,448,152,2), + (809,449,152,2), + (811,450,152,2), + (849,487,152,2), + (879,517,152,2), + (854,492,153,2), + (884,522,153,2), + (852,490,154,2), + (882,520,154,2), + (861,499,155,2), + (891,529,155,2), + (928,566,157,2), + (919,557,159,2), + (944,582,160,2), + (856,494,165,2), + (886,524,165,2), + (923,561,166,2), + (845,483,168,2), + (875,513,168,2), + (860,498,169,2), + (890,528,169,2), + (911,549,170,2), + (943,581,172,2), + (948,586,176,2), + (920,558,179,2), + (917,555,180,2), + (941,579,183,2), + (871,509,187,2), + (901,539,187,2), + (947,585,187,2), + (949,587,188,2), + (931,569,190,2), + (951,589,191,2), + (858,496,193,2), + (888,526,193,2), + (850,488,194,2), + (880,518,194,2), + (905,543,194,2), + (275,151,197,2), + (277,152,197,2), + (279,153,197,2), + (280,154,197,2), + (282,155,197,2), + (284,156,197,2), + (286,157,197,2), + (288,158,197,2), + (289,159,197,2), + (291,160,197,2), + (293,161,197,2), + (295,162,197,2), + (297,163,197,2), + (299,164,197,2), + (301,165,197,2), + (303,166,197,2), + (304,167,197,2), + (306,168,197,2), + (308,169,197,2), + (310,170,197,2), + (311,171,197,2), + (313,172,197,2), + (315,173,197,2), + (317,174,197,2), + (319,175,197,2), + (321,176,197,2), + (323,177,197,2), + (325,178,197,2), + (327,179,197,2), + (329,180,197,2), + (331,181,197,2), + (333,182,197,2), + (334,183,197,2), + (336,184,197,2), + (338,185,197,2), + (340,186,197,2), + (342,187,197,2), + (344,188,197,2), + (346,189,197,2), + (347,190,197,2), + (348,191,197,2), + (350,192,197,2), + (352,193,197,2), + (354,194,197,2), + (356,195,197,2), + (357,196,197,2), + (359,197,197,2), + (361,198,197,2), + (363,199,197,2), + (365,200,197,2), + (366,201,197,2), + (368,202,197,2), + (369,203,197,2), + (370,204,197,2), + (372,205,197,2), + (374,206,197,2), + (376,207,197,2), + (377,208,197,2), + (379,209,197,2), + (381,210,197,2), + (383,211,197,2), + (385,212,197,2), + (387,213,197,2), + (389,214,197,2), + (391,215,197,2), + (393,216,197,2), + (395,217,197,2), + (396,218,197,2), + (398,219,197,2), + (400,220,197,2), + (402,221,197,2), + (404,222,197,2), + (405,223,197,2), + (407,224,197,2), + (408,225,197,2), + (410,226,197,2), + (411,227,197,2), + (412,228,197,2), + (413,229,197,2), + (414,230,197,2), + (415,231,197,2), + (417,232,197,2), + (418,233,197,2), + (420,234,197,2), + (422,235,197,2), + (424,236,197,2), + (426,237,197,2), + (428,238,197,2), + (430,239,197,2), + (432,240,197,2), + (434,241,197,2), + (436,242,197,2), + (438,243,197,2), + (440,244,197,2), + (442,245,197,2), + (444,246,197,2), + (445,247,197,2), + (446,248,197,2), + (448,249,197,2), + (450,250,197,2), + (452,251,197,2), + (454,252,197,2), + (455,253,197,2), + (457,254,197,2), + (459,255,197,2), + (461,256,197,2), + (463,257,197,2), + (465,258,197,2), + (467,259,197,2), + (469,260,197,2), + (470,261,197,2), + (471,262,197,2), + (473,263,197,2), + (475,264,197,2), + (477,265,197,2), + (479,266,197,2), + (481,267,197,2), + (483,268,197,2), + (484,269,197,2), + (486,270,197,2), + (488,271,197,2), + (489,272,197,2), + (491,273,197,2), + (493,274,197,2), + (494,275,197,2), + (496,276,197,2), + (498,277,197,2), + (499,278,197,2), + (501,279,197,2), + (503,280,197,2), + (504,281,197,2), + (506,282,197,2), + (508,283,197,2), + (510,284,197,2), + (512,285,197,2), + (513,286,197,2), + (515,287,197,2), + (517,288,197,2), + (519,289,197,2), + (521,290,197,2), + (523,291,197,2), + (525,292,197,2), + (526,293,197,2), + (528,294,197,2), + (530,295,197,2), + (532,296,197,2), + (533,297,197,2), + (534,298,197,2), + (535,299,197,2), + (536,300,197,2); /*!40000 ALTER TABLE `civicrm_activity_contact` ENABLE KEYS */; UNLOCK TABLES; @@ -1774,193 +1776,190 @@ 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,188,1,1,0,'439U Beech Dr E',439,'U',NULL,'Beech','Dr','E',NULL,NULL,NULL,NULL,'Otter Lake',1,1021,NULL,'48464',NULL,1228,43.219132,-83.42227,0,NULL,NULL,NULL), - (2,88,1,1,0,'538U Jackson Rd NE',538,'U',NULL,'Jackson','Rd','NE',NULL,NULL,NULL,NULL,'Antigo',1,1048,NULL,'54409',NULL,1228,45.121666,-89.13388,0,NULL,NULL,NULL), - (3,6,1,1,0,'106L Green Dr SW',106,'L',NULL,'Green','Dr','SW',NULL,NULL,NULL,NULL,'Minerva',1,1016,NULL,'41062',NULL,1228,38.719573,-83.910276,0,NULL,NULL,NULL), - (4,106,1,1,0,'300I College Ln S',300,'I',NULL,'College','Ln','S',NULL,NULL,NULL,NULL,'Burlington',1,1042,NULL,'76519',NULL,1228,31.002164,-97.0358,0,NULL,NULL,NULL), - (5,197,1,1,0,'509X Jackson St NW',509,'X',NULL,'Jackson','St','NW',NULL,NULL,NULL,NULL,'Hyattsville',1,1019,NULL,'20784',NULL,1228,38.950528,-76.8888,0,NULL,NULL,NULL), - (6,7,1,1,0,'526C Caulder Way S',526,'C',NULL,'Caulder','Way','S',NULL,NULL,NULL,NULL,'Tate',1,1009,NULL,'30177',NULL,1228,34.418116,-84.38462,0,NULL,NULL,NULL), - (7,131,1,1,0,'880U El Camino St NW',880,'U',NULL,'El Camino','St','NW',NULL,NULL,NULL,NULL,'Macedonia',1,1012,NULL,'62860',NULL,1228,38.041978,-88.73257,0,NULL,NULL,NULL), - (8,172,1,1,0,'134R Beech Ln NW',134,'R',NULL,'Beech','Ln','NW',NULL,NULL,NULL,NULL,'Empire',1,1027,NULL,'89405',NULL,1228,40.555197,-119.35093,0,NULL,NULL,NULL), - (9,84,1,1,0,'530W Lincoln Way SE',530,'W',NULL,'Lincoln','Way','SE',NULL,NULL,NULL,NULL,'Seattle',1,1046,NULL,'98155',NULL,1228,47.753019,-122.30373,0,NULL,NULL,NULL), - (10,184,1,1,0,'760F States Path NE',760,'F',NULL,'States','Path','NE',NULL,NULL,NULL,NULL,'Visalia',1,1004,NULL,'93291',NULL,1228,36.351009,-119.33655,0,NULL,NULL,NULL), - (11,98,1,1,0,'347J Van Ness Path E',347,'J',NULL,'Van Ness','Path','E',NULL,NULL,NULL,NULL,'Pasadena',1,1004,NULL,'91124',NULL,1228,33.786594,-118.298662,0,NULL,NULL,NULL), - (12,48,1,1,0,'250S Green Path NE',250,'S',NULL,'Green','Path','NE',NULL,NULL,NULL,NULL,'San Antonio',1,1042,NULL,'78280',NULL,1228,29.437532,-98.461582,0,NULL,NULL,NULL), - (13,62,1,1,0,'842L Pine Dr SW',842,'L',NULL,'Pine','Dr','SW',NULL,NULL,NULL,NULL,'Sutherland',1,1045,NULL,'23885',NULL,1228,37.191579,-77.56682,0,NULL,NULL,NULL), - (14,9,1,1,0,'718Q College Path NW',718,'Q',NULL,'College','Path','NW',NULL,NULL,NULL,NULL,'North Charleston',1,1039,NULL,'29405',NULL,1228,32.856634,-79.98218,0,NULL,NULL,NULL), - (15,144,1,1,0,'216F Bay Dr S',216,'F',NULL,'Bay','Dr','S',NULL,NULL,NULL,NULL,'Athens',1,1047,NULL,'24712',NULL,1228,37.448532,-81.0032,0,NULL,NULL,NULL), - (16,33,1,1,0,'365L Jackson Pl NE',365,'L',NULL,'Jackson','Pl','NE',NULL,NULL,NULL,NULL,'Kettleman City',1,1004,NULL,'93239',NULL,1228,36.015318,-120.00772,0,NULL,NULL,NULL), - (17,58,1,1,0,'320E El Camino St S',320,'E',NULL,'El Camino','St','S',NULL,NULL,NULL,NULL,'Springfield',1,1020,NULL,'01108',NULL,1228,42.084094,-72.55523,0,NULL,NULL,NULL), - (18,72,1,1,0,'727E Second Path N',727,'E',NULL,'Second','Path','N',NULL,NULL,NULL,NULL,'Pleasant Unity',1,1037,NULL,'15676',NULL,1228,40.243195,-79.45737,0,NULL,NULL,NULL), - (19,93,1,1,0,'980Y Second Dr W',980,'Y',NULL,'Second','Dr','W',NULL,NULL,NULL,NULL,'Bolton',1,1023,NULL,'39041',NULL,1228,32.39336,-90.47024,0,NULL,NULL,NULL), - (20,18,1,1,0,'659Y Van Ness Way N',659,'Y',NULL,'Van Ness','Way','N',NULL,NULL,NULL,NULL,'Locust Grove',1,1035,NULL,'74352',NULL,1228,36.148065,-95.16801,0,NULL,NULL,NULL), - (21,13,1,1,0,'747T Main Way NW',747,'T',NULL,'Main','Way','NW',NULL,NULL,NULL,NULL,'Anton Chico',1,1030,NULL,'87711',NULL,1228,35.203048,-105.15426,0,NULL,NULL,NULL), - (22,17,1,1,0,'535O Woodbridge Way E',535,'O',NULL,'Woodbridge','Way','E',NULL,NULL,NULL,NULL,'Stanford',1,1013,NULL,'47463',NULL,1228,39.085896,-86.6689,0,NULL,NULL,NULL), - (23,61,1,1,0,'374P Northpoint St W',374,'P',NULL,'Northpoint','St','W',NULL,NULL,NULL,NULL,'Henry',1,1026,NULL,'69349',NULL,1228,41.992583,-104.04977,0,NULL,NULL,NULL), - (24,41,1,1,0,'339W Van Ness Ln S',339,'W',NULL,'Van Ness','Ln','S',NULL,NULL,NULL,NULL,'Miller City',1,1012,NULL,'62962',NULL,1228,37.097546,-89.33547,0,NULL,NULL,NULL), - (25,90,1,1,0,'85R Caulder Dr W',85,'R',NULL,'Caulder','Dr','W',NULL,NULL,NULL,NULL,'Cimarron',1,1005,NULL,'81220',NULL,1228,38.321598,-107.4166,0,NULL,NULL,NULL), - (26,195,1,1,0,'218Z Pine Ave W',218,'Z',NULL,'Pine','Ave','W',NULL,NULL,NULL,NULL,'Cranston',1,1038,NULL,'02910',NULL,1228,41.776867,-71.43672,0,NULL,NULL,NULL), - (27,101,1,1,0,'489H Cadell Ln NE',489,'H',NULL,'Cadell','Ln','NE',NULL,NULL,NULL,NULL,'San Diego',1,1004,NULL,'92158',NULL,1228,33.016928,-116.846046,0,NULL,NULL,NULL), - (28,155,1,1,0,'152Q Pine St NW',152,'Q',NULL,'Pine','St','NW',NULL,NULL,NULL,NULL,'Regent',1,1033,NULL,'58650',NULL,1228,46.405798,-102.60398,0,NULL,NULL,NULL), - (29,66,1,1,0,'235J Martin Luther King Path N',235,'J',NULL,'Martin Luther King','Path','N',NULL,NULL,NULL,NULL,'Winona',1,1034,NULL,'44493',NULL,1228,40.828584,-80.896714,0,NULL,NULL,NULL), - (30,65,1,1,0,'696J Martin Luther King Rd SW',696,'J',NULL,'Martin Luther King','Rd','SW',NULL,NULL,NULL,NULL,'Norfolk',1,1045,NULL,'23508',NULL,1228,36.886447,-76.30065,0,NULL,NULL,NULL), - (31,170,1,1,0,'998M Cadell Dr SE',998,'M',NULL,'Cadell','Dr','SE',NULL,NULL,NULL,NULL,'Creedmoor',1,1032,NULL,'27564',NULL,1228,36.101529,-78.713346,0,NULL,NULL,NULL), - (32,183,1,1,0,'890L Pine Blvd W',890,'L',NULL,'Pine','Blvd','W',NULL,NULL,NULL,NULL,'College Park',1,1019,NULL,'20740',NULL,1228,38.99756,-76.92577,0,NULL,NULL,NULL), - (33,201,1,1,0,'916H Northpoint Pl N',916,'H',NULL,'Northpoint','Pl','N',NULL,NULL,NULL,NULL,'Colt',1,1003,NULL,'72326',NULL,1228,35.111687,-90.8989,0,NULL,NULL,NULL), - (34,75,1,1,0,'987T Dowlen Blvd E',987,'T',NULL,'Dowlen','Blvd','E',NULL,NULL,NULL,NULL,'Fort Lauderdale',1,1008,NULL,'33340',NULL,1228,26.145724,-80.448254,0,NULL,NULL,NULL), - (35,47,1,1,0,'672M Woodbridge Path N',672,'M',NULL,'Woodbridge','Path','N',NULL,NULL,NULL,NULL,'Wanette',1,1035,NULL,'74878',NULL,1228,35.012317,-97.06156,0,NULL,NULL,NULL), - (36,130,1,1,0,'411W El Camino Blvd S',411,'W',NULL,'El Camino','Blvd','S',NULL,NULL,NULL,NULL,'Jacksonville',1,1008,NULL,'32219',NULL,1228,30.411564,-81.76653,0,NULL,NULL,NULL), - (37,71,1,1,0,'815K El Camino Path S',815,'K',NULL,'El Camino','Path','S',NULL,NULL,NULL,NULL,'Gaylord',1,1021,NULL,'49735',NULL,1228,44.989608,-84.67492,0,NULL,NULL,NULL), - (38,35,1,1,0,'425M Beech Way SE',425,'M',NULL,'Beech','Way','SE',NULL,NULL,NULL,NULL,'Coker',1,1000,NULL,'35452',NULL,1228,33.249332,-87.67217,0,NULL,NULL,NULL), - (39,123,1,1,0,'747U Second Dr E',747,'U',NULL,'Second','Dr','E',NULL,NULL,NULL,NULL,'Villa Grove',1,1005,NULL,'81155',NULL,1228,38.327695,-106.14476,0,NULL,NULL,NULL), - (40,146,1,1,0,'234P States Ave E',234,'P',NULL,'States','Ave','E',NULL,NULL,NULL,NULL,'Canoga Park',1,1004,NULL,'91303',NULL,1228,34.198204,-118.60206,0,NULL,NULL,NULL), - (41,50,1,1,0,'296Z Martin Luther King Way W',296,'Z',NULL,'Martin Luther King','Way','W',NULL,NULL,NULL,NULL,'Saint Louis',1,1024,NULL,'63167',NULL,1228,38.638318,-90.427118,0,NULL,NULL,NULL), - (42,162,1,1,0,'623P Martin Luther King Dr N',623,'P',NULL,'Martin Luther King','Dr','N',NULL,NULL,NULL,NULL,'Gatzke',1,1022,NULL,'56724',NULL,1228,48.445999,-95.74148,0,NULL,NULL,NULL), - (43,191,1,1,0,'763M Jackson Rd N',763,'M',NULL,'Jackson','Rd','N',NULL,NULL,NULL,NULL,'Flat Rock',1,1000,NULL,'35966',NULL,1228,34.788306,-85.67642,0,NULL,NULL,NULL), - (44,175,1,1,0,'121K Green Way S',121,'K',NULL,'Green','Way','S',NULL,NULL,NULL,NULL,'San Juan',1,1056,NULL,'00902',NULL,1228,18.410462,-66.060533,0,NULL,NULL,NULL), - (45,152,1,1,0,'349K Dowlen St S',349,'K',NULL,'Dowlen','St','S',NULL,NULL,NULL,NULL,'Ulm',1,1025,NULL,'59485',NULL,1228,47.429273,-111.59357,0,NULL,NULL,NULL), - (46,80,1,1,0,'95A Second Blvd S',95,'A',NULL,'Second','Blvd','S',NULL,NULL,NULL,NULL,'Larchmont',1,1031,NULL,'10538',NULL,1228,40.933089,-73.75615,0,NULL,NULL,NULL), - (47,179,1,1,0,'577R States Pl W',577,'R',NULL,'States','Pl','W',NULL,NULL,NULL,NULL,'Elmore',1,1034,NULL,'43416',NULL,1228,41.477061,-83.28361,0,NULL,NULL,NULL), - (48,160,1,1,0,'340H Green Rd SW',340,'H',NULL,'Green','Rd','SW',NULL,NULL,NULL,NULL,'Salt Lake City',1,1043,NULL,'84151',NULL,1228,40.668068,-111.908297,0,NULL,NULL,NULL), - (49,196,1,1,0,'608F College Path SW',608,'F',NULL,'College','Path','SW',NULL,NULL,NULL,NULL,'Humboldt',1,1041,NULL,'38343',NULL,1228,35.825299,-88.90218,0,NULL,NULL,NULL), - (50,34,1,1,0,'144H Martin Luther King Ave SW',144,'H',NULL,'Martin Luther King','Ave','SW',NULL,NULL,NULL,NULL,'Phoenix',1,1002,NULL,'85023',NULL,1228,33.638271,-112.09341,0,NULL,NULL,NULL), - (51,94,1,1,0,'26H Martin Luther King Rd NW',26,'H',NULL,'Martin Luther King','Rd','NW',NULL,NULL,NULL,NULL,'Modesto',1,1004,NULL,'95350',NULL,1228,37.671778,-121.01249,0,NULL,NULL,NULL), - (52,76,1,1,0,'645H Cadell Rd NE',645,'H',NULL,'Cadell','Rd','NE',NULL,NULL,NULL,NULL,'Seiling',1,1035,NULL,'73663',NULL,1228,36.13196,-98.91683,0,NULL,NULL,NULL), - (53,79,1,1,0,'618F Pine Blvd SW',618,'F',NULL,'Pine','Blvd','SW',NULL,NULL,NULL,NULL,'Iron City',1,1041,NULL,'38463',NULL,1228,35.069017,-87.62171,0,NULL,NULL,NULL), - (54,27,1,1,0,'494P El Camino Way N',494,'P',NULL,'El Camino','Way','N',NULL,NULL,NULL,NULL,'Arnold',1,1019,NULL,'21012',NULL,1228,39.049377,-76.49892,0,NULL,NULL,NULL), - (55,77,1,1,0,'476T Martin Luther King Rd E',476,'T',NULL,'Martin Luther King','Rd','E',NULL,NULL,NULL,NULL,'Tilden',1,1012,NULL,'62292',NULL,1228,38.214035,-89.68346,0,NULL,NULL,NULL), - (56,133,1,1,0,'795Q Dowlen Blvd SW',795,'Q',NULL,'Dowlen','Blvd','SW',NULL,NULL,NULL,NULL,'Mariposa',1,1004,NULL,'95338',NULL,1228,37.505484,-119.92527,0,NULL,NULL,NULL), - (57,135,1,1,0,'840Y El Camino Ln S',840,'Y',NULL,'El Camino','Ln','S',NULL,NULL,NULL,NULL,'Phillipsburg',1,1034,NULL,'45354',NULL,1228,39.904603,-84.40163,0,NULL,NULL,NULL), - (58,20,1,1,0,'30J Green Rd N',30,'J',NULL,'Green','Rd','N',NULL,NULL,NULL,NULL,'Robert',1,1017,NULL,'70455',NULL,1228,30.520782,-90.30638,0,NULL,NULL,NULL), - (59,85,1,1,0,'22L College Rd W',22,'L',NULL,'College','Rd','W',NULL,NULL,NULL,NULL,'Erie',1,1037,NULL,'16509',NULL,1228,42.074056,-80.06927,0,NULL,NULL,NULL), - (60,26,1,1,0,'480R Lincoln Path N',480,'R',NULL,'Lincoln','Path','N',NULL,NULL,NULL,NULL,'Kempton',1,1012,NULL,'60946',NULL,1228,40.908942,-88.21304,0,NULL,NULL,NULL), - (61,189,1,1,0,'383M El Camino Rd NE',383,'M',NULL,'El Camino','Rd','NE',NULL,NULL,NULL,NULL,'Oklahoma City',1,1035,NULL,'73114',NULL,1228,35.568806,-97.52544,0,NULL,NULL,NULL), - (62,153,1,1,0,'749R Jackson Path N',749,'R',NULL,'Jackson','Path','N',NULL,NULL,NULL,NULL,'Powellton',1,1047,NULL,'25161',NULL,1228,38.084773,-81.31241,0,NULL,NULL,NULL), - (63,46,1,1,0,'291H Martin Luther King Blvd NW',291,'H',NULL,'Martin Luther King','Blvd','NW',NULL,NULL,NULL,NULL,'Kansas City',1,1024,NULL,'64119',NULL,1228,39.202654,-94.51816,0,NULL,NULL,NULL), - (64,143,1,1,0,'587I States Rd S',587,'I',NULL,'States','Rd','S',NULL,NULL,NULL,NULL,'West Dummerston',1,1044,NULL,'05357',NULL,1228,42.957233,-72.62408,0,NULL,NULL,NULL), - (65,73,1,1,0,'171B Lincoln St SW',171,'B',NULL,'Lincoln','St','SW',NULL,NULL,NULL,NULL,'Gurnee',1,1012,NULL,'60031',NULL,1228,42.375821,-87.93517,0,NULL,NULL,NULL), - (66,173,1,1,0,'305S Martin Luther King Path NW',305,'S',NULL,'Martin Luther King','Path','NW',NULL,NULL,NULL,NULL,'Milton',1,1014,NULL,'52570',NULL,1228,40.679958,-92.162,0,NULL,NULL,NULL), - (67,19,1,1,0,'350E Beech Way N',350,'E',NULL,'Beech','Way','N',NULL,NULL,NULL,NULL,'Creighton',1,1026,NULL,'68729',NULL,1228,42.469145,-97.9023,0,NULL,NULL,NULL), - (68,63,1,1,0,'982N Maple Dr S',982,'N',NULL,'Maple','Dr','S',NULL,NULL,NULL,NULL,'Harkers Island',1,1032,NULL,'28531',NULL,1228,34.712315,-76.52748,0,NULL,NULL,NULL), - (69,200,1,1,0,'232T Caulder St SE',232,'T',NULL,'Caulder','St','SE',NULL,NULL,NULL,NULL,'Columbus',1,1034,NULL,'43201',NULL,1228,39.990764,-83.00117,0,NULL,NULL,NULL), - (70,177,1,1,0,'800O Second Blvd N',800,'O',NULL,'Second','Blvd','N',NULL,NULL,NULL,NULL,'Dracut',1,1020,NULL,'01826',NULL,1228,42.677772,-71.316,0,NULL,NULL,NULL), - (71,49,3,1,0,'240P Jackson Pl N',240,'P',NULL,'Jackson','Pl','N',NULL,'Editorial Dept',NULL,NULL,'Proctor',1,1042,NULL,'76468',NULL,1228,31.989197,-98.42529,0,NULL,NULL,NULL), - (72,195,2,0,0,'240P Jackson Pl N',240,'P',NULL,'Jackson','Pl','N',NULL,'Editorial Dept',NULL,NULL,'Proctor',1,1042,NULL,'76468',NULL,1228,31.989197,-98.42529,0,NULL,NULL,71), - (73,37,3,1,0,'759G College Path N',759,'G',NULL,'College','Path','N',NULL,'Attn: Accounting',NULL,NULL,'Coral',1,1037,NULL,'15731',NULL,1228,40.500385,-79.17407,0,NULL,NULL,NULL), - (74,55,3,1,0,'710H Cadell Way W',710,'H',NULL,'Cadell','Way','W',NULL,'Payables Dept.',NULL,NULL,'Charlotte',1,1032,NULL,'28253',NULL,1228,35.26002,-80.804151,0,NULL,NULL,NULL), - (75,15,3,1,0,'616E States Dr N',616,'E',NULL,'States','Dr','N',NULL,'Mailstop 101',NULL,NULL,'Penn Run',1,1037,NULL,'15765',NULL,1228,40.592854,-78.98412,0,NULL,NULL,NULL), - (76,198,2,1,0,'616E States Dr N',616,'E',NULL,'States','Dr','N',NULL,'Mailstop 101',NULL,NULL,'Penn Run',1,1037,NULL,'15765',NULL,1228,40.592854,-78.98412,0,NULL,NULL,75), - (77,42,3,1,0,'370F Cadell Pl NE',370,'F',NULL,'Cadell','Pl','NE',NULL,'Donor Relations',NULL,NULL,'Corning',1,1034,NULL,'43730',NULL,1228,39.617263,-82.09325,0,NULL,NULL,NULL), - (78,103,2,1,0,'370F Cadell Pl NE',370,'F',NULL,'Cadell','Pl','NE',NULL,'Donor Relations',NULL,NULL,'Corning',1,1034,NULL,'43730',NULL,1228,39.617263,-82.09325,0,NULL,NULL,77), - (79,168,3,1,0,'41E Maple Ln S',41,'E',NULL,'Maple','Ln','S',NULL,'Payables Dept.',NULL,NULL,'Waite Park',1,1022,NULL,'56387',NULL,1228,45.550378,-94.22429,0,NULL,NULL,NULL), - (80,58,2,0,0,'41E Maple Ln S',41,'E',NULL,'Maple','Ln','S',NULL,'Payables Dept.',NULL,NULL,'Waite Park',1,1022,NULL,'56387',NULL,1228,45.550378,-94.22429,0,NULL,NULL,79), - (81,2,3,1,0,'762B Woodbridge Path N',762,'B',NULL,'Woodbridge','Path','N',NULL,'Disbursements',NULL,NULL,'Akaska',1,1040,NULL,'57420',NULL,1228,45.327593,-100.12424,0,NULL,NULL,NULL), - (82,38,3,1,0,'669V Main Rd SE',669,'V',NULL,'Main','Rd','SE',NULL,'Subscriptions Dept',NULL,NULL,'Lemoore',1,1004,NULL,'93245',NULL,1228,36.312075,-119.80349,0,NULL,NULL,NULL), - (83,32,2,1,0,'669V Main Rd SE',669,'V',NULL,'Main','Rd','SE',NULL,'Subscriptions Dept',NULL,NULL,'Lemoore',1,1004,NULL,'93245',NULL,1228,36.312075,-119.80349,0,NULL,NULL,82), - (84,43,3,1,0,'382Q El Camino Rd SE',382,'Q',NULL,'El Camino','Rd','SE',NULL,'c/o PO Plus',NULL,NULL,'Comstock',1,1031,NULL,'12821',NULL,1228,43.461692,-73.40197,0,NULL,NULL,NULL), - (85,179,2,0,0,'382Q El Camino Rd SE',382,'Q',NULL,'El Camino','Rd','SE',NULL,'c/o PO Plus',NULL,NULL,'Comstock',1,1031,NULL,'12821',NULL,1228,43.461692,-73.40197,0,NULL,NULL,84), - (86,199,3,1,0,'265R College Ln SW',265,'R',NULL,'College','Ln','SW',NULL,'Disbursements',NULL,NULL,'Barling',1,1003,NULL,'72923',NULL,1228,35.332908,-94.30853,0,NULL,NULL,NULL), - (87,139,2,1,0,'265R College Ln SW',265,'R',NULL,'College','Ln','SW',NULL,'Disbursements',NULL,NULL,'Barling',1,1003,NULL,'72923',NULL,1228,35.332908,-94.30853,0,NULL,NULL,86), - (88,110,3,1,0,'870P States Blvd S',870,'P',NULL,'States','Blvd','S',NULL,'Mailstop 101',NULL,NULL,'Rydal',1,1009,NULL,'30171',NULL,1228,34.346142,-84.73232,0,NULL,NULL,NULL), - (89,167,3,1,0,'415A El Camino Ln SW',415,'A',NULL,'El Camino','Ln','SW',NULL,'Churchgate',NULL,NULL,'Jacksonville',1,1008,NULL,'32208',NULL,1228,30.392888,-81.67933,0,NULL,NULL,NULL), - (90,89,2,1,0,'415A El Camino Ln SW',415,'A',NULL,'El Camino','Ln','SW',NULL,'Churchgate',NULL,NULL,'Jacksonville',1,1008,NULL,'32208',NULL,1228,30.392888,-81.67933,0,NULL,NULL,89), - (91,24,3,1,0,'297X Cadell St NW',297,'X',NULL,'Cadell','St','NW',NULL,'Churchgate',NULL,NULL,'Gibsonville',1,1032,NULL,'27249',NULL,1228,36.125747,-79.56352,0,NULL,NULL,NULL), - (92,70,2,1,0,'297X Cadell St NW',297,'X',NULL,'Cadell','St','NW',NULL,'Churchgate',NULL,NULL,'Gibsonville',1,1032,NULL,'27249',NULL,1228,36.125747,-79.56352,0,NULL,NULL,91), - (93,141,3,1,0,'115J Martin Luther King Rd NW',115,'J',NULL,'Martin Luther King','Rd','NW',NULL,'Payables Dept.',NULL,NULL,'Biddeford Pool',1,1018,NULL,'04006',NULL,1228,43.436049,-70.3598,0,NULL,NULL,NULL), - (94,64,3,1,0,'265Q Pine St W',265,'Q',NULL,'Pine','St','W',NULL,'Churchgate',NULL,NULL,'Bokchito',1,1035,NULL,'74726',NULL,1228,33.98526,-96.15629,0,NULL,NULL,NULL), - (95,194,2,1,0,'265Q Pine St W',265,'Q',NULL,'Pine','St','W',NULL,'Churchgate',NULL,NULL,'Bokchito',1,1035,NULL,'74726',NULL,1228,33.98526,-96.15629,0,NULL,NULL,94), - (96,36,3,1,0,'744D College St N',744,'D',NULL,'College','St','N',NULL,'Attn: Development',NULL,NULL,'Falls Of Rough',1,1016,NULL,'40119',NULL,1228,37.600179,-86.52846,0,NULL,NULL,NULL), - (97,171,2,1,0,'744D College St N',744,'D',NULL,'College','St','N',NULL,'Attn: Development',NULL,NULL,'Falls Of Rough',1,1016,NULL,'40119',NULL,1228,37.600179,-86.52846,0,NULL,NULL,96), - (98,192,3,1,0,'399Y Martin Luther King Path W',399,'Y',NULL,'Martin Luther King','Path','W',NULL,'c/o OPDC',NULL,NULL,'Quail',1,1042,NULL,'79251',NULL,1228,34.975549,-100.44628,0,NULL,NULL,NULL), - (99,99,2,1,0,'399Y Martin Luther King Path W',399,'Y',NULL,'Martin Luther King','Path','W',NULL,'c/o OPDC',NULL,NULL,'Quail',1,1042,NULL,'79251',NULL,1228,34.975549,-100.44628,0,NULL,NULL,98), - (100,11,3,1,0,'418P States Dr SW',418,'P',NULL,'States','Dr','SW',NULL,'Mailstop 101',NULL,NULL,'Pelzer',1,1039,NULL,'29669',NULL,1228,34.646501,-82.44077,0,NULL,NULL,NULL), - (101,113,3,1,0,'270J Beech St NE',270,'J',NULL,'Beech','St','NE',NULL,'Urgent',NULL,NULL,'Point Pleasant Beach',1,1029,NULL,'08742',NULL,1228,40.081165,-74.06003,0,NULL,NULL,NULL), - (102,137,2,1,0,'270J Beech St NE',270,'J',NULL,'Beech','St','NE',NULL,'Urgent',NULL,NULL,'Point Pleasant Beach',1,1029,NULL,'08742',NULL,1228,40.081165,-74.06003,0,NULL,NULL,101), - (103,124,3,1,0,'785F Main St SW',785,'F',NULL,'Main','St','SW',NULL,'c/o OPDC',NULL,NULL,'Nalcrest',1,1008,NULL,'33856',NULL,1228,27.855686,-81.430915,0,NULL,NULL,NULL), - (104,16,2,1,0,'785F Main St SW',785,'F',NULL,'Main','St','SW',NULL,'c/o OPDC',NULL,NULL,'Nalcrest',1,1008,NULL,'33856',NULL,1228,27.855686,-81.430915,0,NULL,NULL,103), - (105,109,1,1,0,'26H Martin Luther King Rd NW',26,'H',NULL,'Martin Luther King','Rd','NW',NULL,NULL,NULL,NULL,'Modesto',1,1004,NULL,'95350',NULL,1228,37.671778,-121.01249,0,NULL,NULL,51), - (106,74,1,1,0,'26H Martin Luther King Rd NW',26,'H',NULL,'Martin Luther King','Rd','NW',NULL,NULL,NULL,NULL,'Modesto',1,1004,NULL,'95350',NULL,1228,37.671778,-121.01249,0,NULL,NULL,51), - (107,60,1,1,0,'26H Martin Luther King Rd NW',26,'H',NULL,'Martin Luther King','Rd','NW',NULL,NULL,NULL,NULL,'Modesto',1,1004,NULL,'95350',NULL,1228,37.671778,-121.01249,0,NULL,NULL,51), - (108,34,1,0,0,'26H Martin Luther King Rd NW',26,'H',NULL,'Martin Luther King','Rd','NW',NULL,NULL,NULL,NULL,'Modesto',1,1004,NULL,'95350',NULL,1228,37.671778,-121.01249,0,NULL,NULL,51), - (109,164,1,1,0,'645H Cadell Rd NE',645,'H',NULL,'Cadell','Rd','NE',NULL,NULL,NULL,NULL,'Seiling',1,1035,NULL,'73663',NULL,1228,36.13196,-98.91683,0,NULL,NULL,52), - (110,118,1,1,0,'645H Cadell Rd NE',645,'H',NULL,'Cadell','Rd','NE',NULL,NULL,NULL,NULL,'Seiling',1,1035,NULL,'73663',NULL,1228,36.13196,-98.91683,0,NULL,NULL,52), - (111,132,1,1,0,'645H Cadell Rd NE',645,'H',NULL,'Cadell','Rd','NE',NULL,NULL,NULL,NULL,'Seiling',1,1035,NULL,'73663',NULL,1228,36.13196,-98.91683,0,NULL,NULL,52), - (112,148,1,1,0,'600W Jackson St N',600,'W',NULL,'Jackson','St','N',NULL,NULL,NULL,NULL,'Wood Dale',1,1012,NULL,'60191',NULL,1228,41.962979,-87.97688,0,NULL,NULL,NULL), - (113,198,1,0,0,'618F Pine Blvd SW',618,'F',NULL,'Pine','Blvd','SW',NULL,NULL,NULL,NULL,'Iron City',1,1041,NULL,'38463',NULL,1228,35.069017,-87.62171,0,NULL,NULL,53), - (114,53,1,1,0,'618F Pine Blvd SW',618,'F',NULL,'Pine','Blvd','SW',NULL,NULL,NULL,NULL,'Iron City',1,1041,NULL,'38463',NULL,1228,35.069017,-87.62171,0,NULL,NULL,53), - (115,158,1,1,0,'618F Pine Blvd SW',618,'F',NULL,'Pine','Blvd','SW',NULL,NULL,NULL,NULL,'Iron City',1,1041,NULL,'38463',NULL,1228,35.069017,-87.62171,0,NULL,NULL,53), - (116,186,1,1,0,'402R Martin Luther King Way S',402,'R',NULL,'Martin Luther King','Way','S',NULL,NULL,NULL,NULL,'Bay City',1,1021,NULL,'48707',NULL,1228,43.737798,-83.933337,0,NULL,NULL,NULL), - (117,154,1,1,0,'494P El Camino Way N',494,'P',NULL,'El Camino','Way','N',NULL,NULL,NULL,NULL,'Arnold',1,1019,NULL,'21012',NULL,1228,39.049377,-76.49892,0,NULL,NULL,54), - (118,165,1,1,0,'494P El Camino Way N',494,'P',NULL,'El Camino','Way','N',NULL,NULL,NULL,NULL,'Arnold',1,1019,NULL,'21012',NULL,1228,39.049377,-76.49892,0,NULL,NULL,54), - (119,149,1,1,0,'494P El Camino Way N',494,'P',NULL,'El Camino','Way','N',NULL,NULL,NULL,NULL,'Arnold',1,1019,NULL,'21012',NULL,1228,39.049377,-76.49892,0,NULL,NULL,54), - (120,121,1,1,0,'494P El Camino Way N',494,'P',NULL,'El Camino','Way','N',NULL,NULL,NULL,NULL,'Arnold',1,1019,NULL,'21012',NULL,1228,39.049377,-76.49892,0,NULL,NULL,54), - (121,127,1,1,0,'476T Martin Luther King Rd E',476,'T',NULL,'Martin Luther King','Rd','E',NULL,NULL,NULL,NULL,'Tilden',1,1012,NULL,'62292',NULL,1228,38.214035,-89.68346,0,NULL,NULL,55), - (122,3,1,1,0,'476T Martin Luther King Rd E',476,'T',NULL,'Martin Luther King','Rd','E',NULL,NULL,NULL,NULL,'Tilden',1,1012,NULL,'62292',NULL,1228,38.214035,-89.68346,0,NULL,NULL,55), - (123,51,1,1,0,'476T Martin Luther King Rd E',476,'T',NULL,'Martin Luther King','Rd','E',NULL,NULL,NULL,NULL,'Tilden',1,1012,NULL,'62292',NULL,1228,38.214035,-89.68346,0,NULL,NULL,55), - (124,157,1,1,0,'285E Van Ness Ave SE',285,'E',NULL,'Van Ness','Ave','SE',NULL,NULL,NULL,NULL,'Bridgeport',1,1046,NULL,'98813',NULL,1228,47.999618,-119.66129,0,NULL,NULL,NULL), - (125,119,1,1,0,'795Q Dowlen Blvd SW',795,'Q',NULL,'Dowlen','Blvd','SW',NULL,NULL,NULL,NULL,'Mariposa',1,1004,NULL,'95338',NULL,1228,37.505484,-119.92527,0,NULL,NULL,56), - (126,156,1,1,0,'795Q Dowlen Blvd SW',795,'Q',NULL,'Dowlen','Blvd','SW',NULL,NULL,NULL,NULL,'Mariposa',1,1004,NULL,'95338',NULL,1228,37.505484,-119.92527,0,NULL,NULL,56), - (127,122,1,1,0,'795Q Dowlen Blvd SW',795,'Q',NULL,'Dowlen','Blvd','SW',NULL,NULL,NULL,NULL,'Mariposa',1,1004,NULL,'95338',NULL,1228,37.505484,-119.92527,0,NULL,NULL,56), - (128,137,1,0,0,'795Q Dowlen Blvd SW',795,'Q',NULL,'Dowlen','Blvd','SW',NULL,NULL,NULL,NULL,'Mariposa',1,1004,NULL,'95338',NULL,1228,37.505484,-119.92527,0,NULL,NULL,56), - (129,126,1,1,0,'840Y El Camino Ln S',840,'Y',NULL,'El Camino','Ln','S',NULL,NULL,NULL,NULL,'Phillipsburg',1,1034,NULL,'45354',NULL,1228,39.904603,-84.40163,0,NULL,NULL,57), - (130,125,1,1,0,'840Y El Camino Ln S',840,'Y',NULL,'El Camino','Ln','S',NULL,NULL,NULL,NULL,'Phillipsburg',1,1034,NULL,'45354',NULL,1228,39.904603,-84.40163,0,NULL,NULL,57), - (131,194,1,0,0,'840Y El Camino Ln S',840,'Y',NULL,'El Camino','Ln','S',NULL,NULL,NULL,NULL,'Phillipsburg',1,1034,NULL,'45354',NULL,1228,39.904603,-84.40163,0,NULL,NULL,57), - (132,22,1,1,0,'840Y El Camino Ln S',840,'Y',NULL,'El Camino','Ln','S',NULL,NULL,NULL,NULL,'Phillipsburg',1,1034,NULL,'45354',NULL,1228,39.904603,-84.40163,0,NULL,NULL,57), - (133,81,1,1,0,'30J Green Rd N',30,'J',NULL,'Green','Rd','N',NULL,NULL,NULL,NULL,'Robert',1,1017,NULL,'70455',NULL,1228,30.520782,-90.30638,0,NULL,NULL,58), - (134,54,1,1,0,'30J Green Rd N',30,'J',NULL,'Green','Rd','N',NULL,NULL,NULL,NULL,'Robert',1,1017,NULL,'70455',NULL,1228,30.520782,-90.30638,0,NULL,NULL,58), - (135,102,1,1,0,'30J Green Rd N',30,'J',NULL,'Green','Rd','N',NULL,NULL,NULL,NULL,'Robert',1,1017,NULL,'70455',NULL,1228,30.520782,-90.30638,0,NULL,NULL,58), - (136,89,1,0,0,'933Z Cadell Blvd W',933,'Z',NULL,'Cadell','Blvd','W',NULL,NULL,NULL,NULL,'Eagle',1,1048,NULL,'53119',NULL,1228,42.881035,-88.47117,0,NULL,NULL,NULL), - (137,107,1,1,0,'22L College Rd W',22,'L',NULL,'College','Rd','W',NULL,NULL,NULL,NULL,'Erie',1,1037,NULL,'16509',NULL,1228,42.074056,-80.06927,0,NULL,NULL,59), - (138,138,1,1,0,'22L College Rd W',22,'L',NULL,'College','Rd','W',NULL,NULL,NULL,NULL,'Erie',1,1037,NULL,'16509',NULL,1228,42.074056,-80.06927,0,NULL,NULL,59), - (139,129,1,1,0,'22L College Rd W',22,'L',NULL,'College','Rd','W',NULL,NULL,NULL,NULL,'Erie',1,1037,NULL,'16509',NULL,1228,42.074056,-80.06927,0,NULL,NULL,59), - (140,4,1,1,0,'211H Van Ness Ave SE',211,'H',NULL,'Van Ness','Ave','SE',NULL,NULL,NULL,NULL,'Roanoke',1,1045,NULL,'24002',NULL,1228,37.274175,-79.95786,0,NULL,NULL,NULL), - (141,39,1,1,0,'480R Lincoln Path N',480,'R',NULL,'Lincoln','Path','N',NULL,NULL,NULL,NULL,'Kempton',1,1012,NULL,'60946',NULL,1228,40.908942,-88.21304,0,NULL,NULL,60), - (142,139,1,0,0,'480R Lincoln Path N',480,'R',NULL,'Lincoln','Path','N',NULL,NULL,NULL,NULL,'Kempton',1,1012,NULL,'60946',NULL,1228,40.908942,-88.21304,0,NULL,NULL,60), - (143,114,1,1,0,'480R Lincoln Path N',480,'R',NULL,'Lincoln','Path','N',NULL,NULL,NULL,NULL,'Kempton',1,1012,NULL,'60946',NULL,1228,40.908942,-88.21304,0,NULL,NULL,60), - (144,180,1,1,0,'534K College St NW',534,'K',NULL,'College','St','NW',NULL,NULL,NULL,NULL,'Lick Creek',1,1016,NULL,'41540',NULL,1228,37.396574,-82.33349,0,NULL,NULL,NULL), - (145,97,1,1,0,'383M El Camino Rd NE',383,'M',NULL,'El Camino','Rd','NE',NULL,NULL,NULL,NULL,'Oklahoma City',1,1035,NULL,'73114',NULL,1228,35.568806,-97.52544,0,NULL,NULL,61), - (146,103,1,0,0,'383M El Camino Rd NE',383,'M',NULL,'El Camino','Rd','NE',NULL,NULL,NULL,NULL,'Oklahoma City',1,1035,NULL,'73114',NULL,1228,35.568806,-97.52544,0,NULL,NULL,61), - (147,86,1,1,0,'383M El Camino Rd NE',383,'M',NULL,'El Camino','Rd','NE',NULL,NULL,NULL,NULL,'Oklahoma City',1,1035,NULL,'73114',NULL,1228,35.568806,-97.52544,0,NULL,NULL,61), - (148,56,1,1,0,'326A Green Dr N',326,'A',NULL,'Green','Dr','N',NULL,NULL,NULL,NULL,'Willard',1,1031,NULL,'14588',NULL,1228,42.683451,-76.872442,0,NULL,NULL,NULL), - (149,178,1,1,0,'749R Jackson Path N',749,'R',NULL,'Jackson','Path','N',NULL,NULL,NULL,NULL,'Powellton',1,1047,NULL,'25161',NULL,1228,38.084773,-81.31241,0,NULL,NULL,62), - (150,44,1,1,0,'749R Jackson Path N',749,'R',NULL,'Jackson','Path','N',NULL,NULL,NULL,NULL,'Powellton',1,1047,NULL,'25161',NULL,1228,38.084773,-81.31241,0,NULL,NULL,62), - (151,105,1,1,0,'749R Jackson Path N',749,'R',NULL,'Jackson','Path','N',NULL,NULL,NULL,NULL,'Powellton',1,1047,NULL,'25161',NULL,1228,38.084773,-81.31241,0,NULL,NULL,62), - (152,116,1,1,0,'977J Jackson Rd SE',977,'J',NULL,'Jackson','Rd','SE',NULL,NULL,NULL,NULL,'Hidalgo',1,1042,NULL,'78557',NULL,1228,26.105725,-98.24639,0,NULL,NULL,NULL), - (153,193,1,1,0,'291H Martin Luther King Blvd NW',291,'H',NULL,'Martin Luther King','Blvd','NW',NULL,NULL,NULL,NULL,'Kansas City',1,1024,NULL,'64119',NULL,1228,39.202654,-94.51816,0,NULL,NULL,63), - (154,145,1,1,0,'291H Martin Luther King Blvd NW',291,'H',NULL,'Martin Luther King','Blvd','NW',NULL,NULL,NULL,NULL,'Kansas City',1,1024,NULL,'64119',NULL,1228,39.202654,-94.51816,0,NULL,NULL,63), - (155,112,1,1,0,'291H Martin Luther King Blvd NW',291,'H',NULL,'Martin Luther King','Blvd','NW',NULL,NULL,NULL,NULL,'Kansas City',1,1024,NULL,'64119',NULL,1228,39.202654,-94.51816,0,NULL,NULL,63), - (156,151,1,1,0,'470A Main Dr W',470,'A',NULL,'Main','Dr','W',NULL,NULL,NULL,NULL,'Truro',1,1020,NULL,'02666',NULL,1228,41.992804,-70.05427,0,NULL,NULL,NULL), - (157,96,1,1,0,'587I States Rd S',587,'I',NULL,'States','Rd','S',NULL,NULL,NULL,NULL,'West Dummerston',1,1044,NULL,'05357',NULL,1228,42.957233,-72.62408,0,NULL,NULL,64), - (158,171,1,0,0,'587I States Rd S',587,'I',NULL,'States','Rd','S',NULL,NULL,NULL,NULL,'West Dummerston',1,1044,NULL,'05357',NULL,1228,42.957233,-72.62408,0,NULL,NULL,64), - (159,83,1,1,0,'587I States Rd S',587,'I',NULL,'States','Rd','S',NULL,NULL,NULL,NULL,'West Dummerston',1,1044,NULL,'05357',NULL,1228,42.957233,-72.62408,0,NULL,NULL,64), - (160,142,1,1,0,'587I States Rd S',587,'I',NULL,'States','Rd','S',NULL,NULL,NULL,NULL,'West Dummerston',1,1044,NULL,'05357',NULL,1228,42.957233,-72.62408,0,NULL,NULL,64), - (161,104,1,1,0,'171B Lincoln St SW',171,'B',NULL,'Lincoln','St','SW',NULL,NULL,NULL,NULL,'Gurnee',1,1012,NULL,'60031',NULL,1228,42.375821,-87.93517,0,NULL,NULL,65), - (162,161,1,1,0,'171B Lincoln St SW',171,'B',NULL,'Lincoln','St','SW',NULL,NULL,NULL,NULL,'Gurnee',1,1012,NULL,'60031',NULL,1228,42.375821,-87.93517,0,NULL,NULL,65), - (163,134,1,1,0,'171B Lincoln St SW',171,'B',NULL,'Lincoln','St','SW',NULL,NULL,NULL,NULL,'Gurnee',1,1012,NULL,'60031',NULL,1228,42.375821,-87.93517,0,NULL,NULL,65), - (164,67,1,1,0,'872H Beech St S',872,'H',NULL,'Beech','St','S',NULL,NULL,NULL,NULL,'Milwaukee',1,1048,NULL,'53208',NULL,1228,43.047863,-87.96618,0,NULL,NULL,NULL), - (165,40,1,1,0,'305S Martin Luther King Path NW',305,'S',NULL,'Martin Luther King','Path','NW',NULL,NULL,NULL,NULL,'Milton',1,1014,NULL,'52570',NULL,1228,40.679958,-92.162,0,NULL,NULL,66), - (166,176,1,1,0,'305S Martin Luther King Path NW',305,'S',NULL,'Martin Luther King','Path','NW',NULL,NULL,NULL,NULL,'Milton',1,1014,NULL,'52570',NULL,1228,40.679958,-92.162,0,NULL,NULL,66), - (167,32,1,0,0,'305S Martin Luther King Path NW',305,'S',NULL,'Martin Luther King','Path','NW',NULL,NULL,NULL,NULL,'Milton',1,1014,NULL,'52570',NULL,1228,40.679958,-92.162,0,NULL,NULL,66), - (168,70,1,0,0,'167D Cadell Ln N',167,'D',NULL,'Cadell','Ln','N',NULL,NULL,NULL,NULL,'Toledo',1,1034,NULL,'43609',NULL,1228,41.63105,-83.57313,0,NULL,NULL,NULL), - (169,14,1,1,0,'350E Beech Way N',350,'E',NULL,'Beech','Way','N',NULL,NULL,NULL,NULL,'Creighton',1,1026,NULL,'68729',NULL,1228,42.469145,-97.9023,0,NULL,NULL,67), - (170,8,1,1,0,'350E Beech Way N',350,'E',NULL,'Beech','Way','N',NULL,NULL,NULL,NULL,'Creighton',1,1026,NULL,'68729',NULL,1228,42.469145,-97.9023,0,NULL,NULL,67), - (171,21,1,1,0,'350E Beech Way N',350,'E',NULL,'Beech','Way','N',NULL,NULL,NULL,NULL,'Creighton',1,1026,NULL,'68729',NULL,1228,42.469145,-97.9023,0,NULL,NULL,67), - (172,25,1,1,0,'350E Beech Way N',350,'E',NULL,'Beech','Way','N',NULL,NULL,NULL,NULL,'Creighton',1,1026,NULL,'68729',NULL,1228,42.469145,-97.9023,0,NULL,NULL,67), - (173,163,1,1,0,'982N Maple Dr S',982,'N',NULL,'Maple','Dr','S',NULL,NULL,NULL,NULL,'Harkers Island',1,1032,NULL,'28531',NULL,1228,34.712315,-76.52748,0,NULL,NULL,68), - (174,5,1,1,0,'982N Maple Dr S',982,'N',NULL,'Maple','Dr','S',NULL,NULL,NULL,NULL,'Harkers Island',1,1032,NULL,'28531',NULL,1228,34.712315,-76.52748,0,NULL,NULL,68), - (175,174,1,1,0,'982N Maple Dr S',982,'N',NULL,'Maple','Dr','S',NULL,NULL,NULL,NULL,'Harkers Island',1,1032,NULL,'28531',NULL,1228,34.712315,-76.52748,0,NULL,NULL,68), - (176,68,1,1,0,'499P Maple St S',499,'P',NULL,'Maple','St','S',NULL,NULL,NULL,NULL,'Cabin John',1,1019,NULL,'20818',NULL,1228,38.97511,-77.15928,0,NULL,NULL,NULL), - (177,182,1,1,0,'232T Caulder St SE',232,'T',NULL,'Caulder','St','SE',NULL,NULL,NULL,NULL,'Columbus',1,1034,NULL,'43201',NULL,1228,39.990764,-83.00117,0,NULL,NULL,69), - (178,69,1,1,0,'232T Caulder St SE',232,'T',NULL,'Caulder','St','SE',NULL,NULL,NULL,NULL,'Columbus',1,1034,NULL,'43201',NULL,1228,39.990764,-83.00117,0,NULL,NULL,69), - (179,10,1,1,0,'232T Caulder St SE',232,'T',NULL,'Caulder','St','SE',NULL,NULL,NULL,NULL,'Columbus',1,1034,NULL,'43201',NULL,1228,39.990764,-83.00117,0,NULL,NULL,69), - (180,16,1,0,0,'232T Caulder St SE',232,'T',NULL,'Caulder','St','SE',NULL,NULL,NULL,NULL,'Columbus',1,1034,NULL,'43201',NULL,1228,39.990764,-83.00117,0,NULL,NULL,69), - (181,45,1,1,0,'800O Second Blvd N',800,'O',NULL,'Second','Blvd','N',NULL,NULL,NULL,NULL,'Dracut',1,1020,NULL,'01826',NULL,1228,42.677772,-71.316,0,NULL,NULL,70), - (182,12,1,1,0,'800O Second Blvd N',800,'O',NULL,'Second','Blvd','N',NULL,NULL,NULL,NULL,'Dracut',1,1020,NULL,'01826',NULL,1228,42.677772,-71.316,0,NULL,NULL,70), - (183,78,1,1,0,'800O Second Blvd N',800,'O',NULL,'Second','Blvd','N',NULL,NULL,NULL,NULL,'Dracut',1,1020,NULL,'01826',NULL,1228,42.677772,-71.316,0,NULL,NULL,70), - (184,159,1,1,0,'800O Second Blvd N',800,'O',NULL,'Second','Blvd','N',NULL,NULL,NULL,NULL,'Dracut',1,1020,NULL,'01826',NULL,1228,42.677772,-71.316,0,NULL,NULL,70), - (185,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), - (186,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), - (187,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); + (1,186,1,1,0,'377K Pine Ave NW',377,'K',NULL,'Pine','Ave','NW',NULL,NULL,NULL,NULL,'New Pine Creek',1,1004,NULL,'97635',NULL,1228,41.924974,-120.28989,0,NULL,NULL,NULL), + (2,47,1,1,0,'597M Lincoln Dr W',597,'M',NULL,'Lincoln','Dr','W',NULL,NULL,NULL,NULL,'Franklin',1,1013,NULL,'46696',NULL,1228,41.156891,-86.604952,0,NULL,NULL,NULL), + (3,154,1,1,0,'312E Dowlen Ln S',312,'E',NULL,'Dowlen','Ln','S',NULL,NULL,NULL,NULL,'Winamac',1,1013,NULL,'46996',NULL,1228,41.048063,-86.64799,0,NULL,NULL,NULL), + (4,145,1,1,0,'271W Lincoln Pl SW',271,'W',NULL,'Lincoln','Pl','SW',NULL,NULL,NULL,NULL,'Chula Vista',1,1004,NULL,'91915',NULL,1228,32.638072,-116.95195,0,NULL,NULL,NULL), + (5,50,1,1,0,'755Q Lincoln St SW',755,'Q',NULL,'Lincoln','St','SW',NULL,NULL,NULL,NULL,'Trion',1,1009,NULL,'30753',NULL,1228,34.558404,-85.30301,0,NULL,NULL,NULL), + (6,75,1,1,0,'294Z Lincoln Way NE',294,'Z',NULL,'Lincoln','Way','NE',NULL,NULL,NULL,NULL,'Loch Sheldrake',1,1031,NULL,'12759',NULL,1228,41.780299,-74.65618,0,NULL,NULL,NULL), + (7,4,1,1,0,'534X Maple Way S',534,'X',NULL,'Maple','Way','S',NULL,NULL,NULL,NULL,'Otto',1,1049,NULL,'82434',NULL,1228,44.396661,-108.28605,0,NULL,NULL,NULL), + (8,192,1,1,0,'777G Northpoint Ave NE',777,'G',NULL,'Northpoint','Ave','NE',NULL,NULL,NULL,NULL,'Bergland',1,1021,NULL,'49910',NULL,1228,46.576653,-89.57618,0,NULL,NULL,NULL), + (9,92,1,1,0,'5A Martin Luther King Way SW',5,'A',NULL,'Martin Luther King','Way','SW',NULL,NULL,NULL,NULL,'Fort Wayne',1,1013,NULL,'46854',NULL,1228,41.093763,-85.070713,0,NULL,NULL,NULL), + (10,125,1,1,0,'621M States Dr E',621,'M',NULL,'States','Dr','E',NULL,NULL,NULL,NULL,'Bremerton',1,1046,NULL,'98311',NULL,1228,47.629717,-122.63493,0,NULL,NULL,NULL), + (11,137,1,1,0,'113Y Beech St SW',113,'Y',NULL,'Beech','St','SW',NULL,NULL,NULL,NULL,'Pomeroy',1,1046,NULL,'99347',NULL,1228,46.44754,-117.57295,0,NULL,NULL,NULL), + (12,13,1,1,0,'700U States Dr SE',700,'U',NULL,'States','Dr','SE',NULL,NULL,NULL,NULL,'Middleport',1,1037,NULL,'17953',NULL,1228,40.727464,-76.08556,0,NULL,NULL,NULL), + (13,99,1,1,0,'37V Second Rd SE',37,'V',NULL,'Second','Rd','SE',NULL,NULL,NULL,NULL,'Warsaw',1,1045,NULL,'22572',NULL,1228,37.957869,-76.75725,0,NULL,NULL,NULL), + (14,113,1,1,0,'664N Green Rd W',664,'N',NULL,'Green','Rd','W',NULL,NULL,NULL,NULL,'Loda',1,1012,NULL,'60948',NULL,1228,40.526477,-88.0821,0,NULL,NULL,NULL), + (15,130,1,1,0,'967J Van Ness Pl NE',967,'J',NULL,'Van Ness','Pl','NE',NULL,NULL,NULL,NULL,'North Tazewell',1,1045,NULL,'24630',NULL,1228,37.155621,-81.49787,0,NULL,NULL,NULL), + (16,108,1,1,0,'285U Beech Pl W',285,'U',NULL,'Beech','Pl','W',NULL,NULL,NULL,NULL,'Dallas',1,1042,NULL,'75238',NULL,1228,32.873926,-96.70922,0,NULL,NULL,NULL), + (17,198,1,1,0,'307E States Ln NW',307,'E',NULL,'States','Ln','NW',NULL,NULL,NULL,NULL,'Berkeley',1,1004,NULL,'94707',NULL,1228,37.894625,-122.27917,0,NULL,NULL,NULL), + (18,174,1,1,0,'636I Van Ness Path E',636,'I',NULL,'Van Ness','Path','E',NULL,NULL,NULL,NULL,'Dothan',1,1000,NULL,'36301',NULL,1228,31.180076,-85.4045,0,NULL,NULL,NULL), + (19,107,1,1,0,'281T Maple St S',281,'T',NULL,'Maple','St','S',NULL,NULL,NULL,NULL,'Belle Mina',1,1000,NULL,'35615',NULL,1228,34.774907,-87.030479,0,NULL,NULL,NULL), + (20,86,1,1,0,'53W Maple St W',53,'W',NULL,'Maple','St','W',NULL,NULL,NULL,NULL,'Lowell',1,1048,NULL,'53557',NULL,1228,43.339823,-88.79719,0,NULL,NULL,NULL), + (21,54,1,1,0,'25V Caulder Dr NW',25,'V',NULL,'Caulder','Dr','NW',NULL,NULL,NULL,NULL,'Goodwell',1,1035,NULL,'73939',NULL,1228,36.691413,-101.738,0,NULL,NULL,NULL), + (22,161,1,1,0,'249H Pine Blvd NE',249,'H',NULL,'Pine','Blvd','NE',NULL,NULL,NULL,NULL,'Purcellville',1,1045,NULL,'20134',NULL,1228,39.152187,-77.702576,0,NULL,NULL,NULL), + (23,165,1,1,0,'166V Green Pl W',166,'V',NULL,'Green','Pl','W',NULL,NULL,NULL,NULL,'Syracuse',1,1031,NULL,'13225',NULL,1228,43.02143,-76.197701,0,NULL,NULL,NULL), + (24,141,1,1,0,'138I El Camino Blvd N',138,'I',NULL,'El Camino','Blvd','N',NULL,NULL,NULL,NULL,'Washington',1,1050,NULL,'20380',NULL,1228,38.893311,-77.014647,0,NULL,NULL,NULL), + (25,41,1,1,0,'451V Main St S',451,'V',NULL,'Main','St','S',NULL,NULL,NULL,NULL,'Stevensville',1,1019,NULL,'21666',NULL,1228,38.942464,-76.34124,0,NULL,NULL,NULL), + (26,21,1,1,0,'33W Northpoint Blvd W',33,'W',NULL,'Northpoint','Blvd','W',NULL,NULL,NULL,NULL,'Tallula',1,1012,NULL,'62688',NULL,1228,39.944264,-89.93366,0,NULL,NULL,NULL), + (27,181,1,1,0,'504P Bay Pl NW',504,'P',NULL,'Bay','Pl','NW',NULL,NULL,NULL,NULL,'Jeffersonville',1,1016,NULL,'40337',NULL,1228,37.9615,-83.8438,0,NULL,NULL,NULL), + (28,83,1,1,0,'19C Jackson Rd SW',19,'C',NULL,'Jackson','Rd','SW',NULL,NULL,NULL,NULL,'Delray Beach',1,1008,NULL,'33447',NULL,1228,26.645895,-80.430269,0,NULL,NULL,NULL), + (29,73,1,1,0,'542U Main Rd SE',542,'U',NULL,'Main','Rd','SE',NULL,NULL,NULL,NULL,'New York',1,1031,NULL,'10279',NULL,1228,40.713062,-74.00857,0,NULL,NULL,NULL), + (30,178,1,1,0,'160K Dowlen Ln NW',160,'K',NULL,'Dowlen','Ln','NW',NULL,NULL,NULL,NULL,'Mantua',1,1043,NULL,'84324',NULL,1228,41.492466,-111.94275,0,NULL,NULL,NULL), + (31,133,1,1,0,'466U States Ave NE',466,'U',NULL,'States','Ave','NE',NULL,NULL,NULL,NULL,'Kilbourne',1,1034,NULL,'43032',NULL,1228,40.328773,-82.95824,0,NULL,NULL,NULL), + (32,155,1,1,0,'441X Northpoint Pl E',441,'X',NULL,'Northpoint','Pl','E',NULL,NULL,NULL,NULL,'Racine',1,1048,NULL,'53402',NULL,1228,42.767286,-87.79747,0,NULL,NULL,NULL), + (33,177,1,1,0,'973N Maple Way N',973,'N',NULL,'Maple','Way','N',NULL,NULL,NULL,NULL,'Wellington',1,1027,NULL,'89444',NULL,1228,38.738712,-119.34585,0,NULL,NULL,NULL), + (34,116,1,1,0,'618W Green Ln N',618,'W',NULL,'Green','Ln','N',NULL,NULL,NULL,NULL,'Pretty Prairie',1,1015,NULL,'67570',NULL,1228,37.784834,-97.98231,0,NULL,NULL,NULL), + (35,6,1,1,0,'390Q Jackson Blvd NE',390,'Q',NULL,'Jackson','Blvd','NE',NULL,NULL,NULL,NULL,'Exchange',1,1047,NULL,'26619',NULL,1228,38.788013,-80.73291,0,NULL,NULL,NULL), + (36,171,1,1,0,'275G Martin Luther King Way SE',275,'G',NULL,'Martin Luther King','Way','SE',NULL,NULL,NULL,NULL,'Aurora',1,1014,NULL,'50607',NULL,1228,42.616399,-91.73262,0,NULL,NULL,NULL), + (37,129,1,1,0,'214G Beech Pl S',214,'G',NULL,'Beech','Pl','S',NULL,NULL,NULL,NULL,'Brimfield',1,1013,NULL,'46720',NULL,1228,41.395275,-85.423462,0,NULL,NULL,NULL), + (38,173,1,1,0,'347M Green Pl SW',347,'M',NULL,'Green','Pl','SW',NULL,NULL,NULL,NULL,'Fountain Valley',1,1004,NULL,'92708',NULL,1228,33.708618,-117.95629,0,NULL,NULL,NULL), + (39,23,1,1,0,'829H Beech Dr W',829,'H',NULL,'Beech','Dr','W',NULL,NULL,NULL,NULL,'Orem',1,1043,NULL,'84097',NULL,1228,40.301444,-111.67485,0,NULL,NULL,NULL), + (40,79,1,1,0,'202D Second Pl W',202,'D',NULL,'Second','Pl','W',NULL,NULL,NULL,NULL,'Honolulu',1,1010,NULL,'96827',NULL,1228,24.859832,-168.021815,0,NULL,NULL,NULL), + (41,71,1,1,0,'220S College Pl NW',220,'S',NULL,'College','Pl','NW',NULL,NULL,NULL,NULL,'Runnells',1,1014,NULL,'50237',NULL,1228,41.536205,-93.38182,0,NULL,NULL,NULL), + (42,201,1,1,0,'633R Lincoln Path E',633,'R',NULL,'Lincoln','Path','E',NULL,NULL,NULL,NULL,'Lampasas',1,1042,NULL,'76550',NULL,1228,31.06639,-98.19192,0,NULL,NULL,NULL), + (43,182,1,1,0,'161X Northpoint Path NE',161,'X',NULL,'Northpoint','Path','NE',NULL,NULL,NULL,NULL,'Kingwood',1,1047,NULL,'26537',NULL,1228,39.472924,-79.69873,0,NULL,NULL,NULL), + (44,8,1,1,0,'332I Cadell Rd E',332,'I',NULL,'Cadell','Rd','E',NULL,NULL,NULL,NULL,'Grenora',1,1033,NULL,'58845',NULL,1228,48.629988,-103.93903,0,NULL,NULL,NULL), + (45,52,1,1,0,'599B Caulder Path SE',599,'B',NULL,'Caulder','Path','SE',NULL,NULL,NULL,NULL,'Saint Regis',1,1025,NULL,'59866',NULL,1228,47.3245,-115.13788,0,NULL,NULL,NULL), + (46,144,1,1,0,'111X College Dr E',111,'X',NULL,'College','Dr','E',NULL,NULL,NULL,NULL,'Gans',1,1035,NULL,'74936',NULL,1228,35.392525,-94.70368,0,NULL,NULL,NULL), + (47,39,1,1,0,'628V Bay Path W',628,'V',NULL,'Bay','Path','W',NULL,NULL,NULL,NULL,'Mobile',1,1000,NULL,'36606',NULL,1228,30.674057,-88.10249,0,NULL,NULL,NULL), + (48,159,1,1,0,'341C Lincoln Rd S',341,'C',NULL,'Lincoln','Rd','S',NULL,NULL,NULL,NULL,'Washington',1,1050,NULL,'20441',NULL,1228,38.923861,-77.036349,0,NULL,NULL,NULL), + (49,45,1,1,0,'601L Main Blvd W',601,'L',NULL,'Main','Blvd','W',NULL,NULL,NULL,NULL,'Cut Bank',1,1025,NULL,'59427',NULL,1228,48.680309,-112.47009,0,NULL,NULL,NULL), + (50,40,1,1,0,'390U El Camino Ave E',390,'U',NULL,'El Camino','Ave','E',NULL,NULL,NULL,NULL,'Bell City',1,1024,NULL,'63735',NULL,1228,36.992718,-89.78369,0,NULL,NULL,NULL), + (51,90,1,1,0,'240D Main Dr W',240,'D',NULL,'Main','Dr','W',NULL,NULL,NULL,NULL,'Washington',1,1050,NULL,'20050',NULL,1228,38.893311,-77.014647,0,NULL,NULL,NULL), + (52,189,1,1,0,'320C Northpoint Ln E',320,'C',NULL,'Northpoint','Ln','E',NULL,NULL,NULL,NULL,'Palermo',1,1018,NULL,'04354',NULL,1228,44.384901,-69.4136,0,NULL,NULL,NULL), + (53,60,1,1,0,'751D Beech Way NE',751,'D',NULL,'Beech','Way','NE',NULL,NULL,NULL,NULL,'McRae',1,1003,NULL,'72102',NULL,1228,35.125583,-91.82508,0,NULL,NULL,NULL), + (54,58,1,1,0,'531J Lincoln Path E',531,'J',NULL,'Lincoln','Path','E',NULL,NULL,NULL,NULL,'Fort Atkinson',1,1048,NULL,'53538',NULL,1228,42.924942,-88.84813,0,NULL,NULL,NULL), + (55,167,1,1,0,'758I Jackson Blvd NW',758,'I',NULL,'Jackson','Blvd','NW',NULL,NULL,NULL,NULL,'Buckhorn',1,1016,NULL,'41721',NULL,1228,37.325318,-83.49048,0,NULL,NULL,NULL), + (56,164,1,1,0,'451A Green Way S',451,'A',NULL,'Green','Way','S',NULL,NULL,NULL,NULL,'Stockville',1,1026,NULL,'69042',NULL,1228,40.519197,-100.37754,0,NULL,NULL,NULL), + (57,48,1,1,0,'670E Northpoint Dr SE',670,'E',NULL,'Northpoint','Dr','SE',NULL,NULL,NULL,NULL,'Newport',1,1016,NULL,'41099',NULL,1228,38.963761,-84.368926,0,NULL,NULL,NULL), + (58,80,1,1,0,'593T Second Way SE',593,'T',NULL,'Second','Way','SE',NULL,NULL,NULL,NULL,'Charlotte',1,1032,NULL,'28208',NULL,1228,35.235791,-80.89295,0,NULL,NULL,NULL), + (59,156,1,1,0,'74Z Bay Blvd N',74,'Z',NULL,'Bay','Blvd','N',NULL,NULL,NULL,NULL,'Pioche',1,1027,NULL,'89043',NULL,1228,38.122239,-114.40318,0,NULL,NULL,NULL), + (60,56,1,1,0,'124W Lincoln Way S',124,'W',NULL,'Lincoln','Way','S',NULL,NULL,NULL,NULL,'Muncie',1,1013,NULL,'47302',NULL,1228,40.164393,-85.38114,0,NULL,NULL,NULL), + (61,179,1,1,0,'956X Jackson Dr E',956,'X',NULL,'Jackson','Dr','E',NULL,NULL,NULL,NULL,'Leonardo',1,1029,NULL,'07737',NULL,1228,40.416772,-74.06058,0,NULL,NULL,NULL), + (62,24,1,1,0,'662T Martin Luther King Dr NW',662,'T',NULL,'Martin Luther King','Dr','NW',NULL,NULL,NULL,NULL,'Adams',1,1026,NULL,'68301',NULL,1228,40.472055,-96.52637,0,NULL,NULL,NULL), + (63,66,1,1,0,'767S Martin Luther King Ave SW',767,'S',NULL,'Martin Luther King','Ave','SW',NULL,NULL,NULL,NULL,'Santa Clarita',1,1004,NULL,'91387',NULL,1228,34.421537,-118.419181,0,NULL,NULL,NULL), + (64,34,1,1,0,'5W Cadell Rd W',5,'W',NULL,'Cadell','Rd','W',NULL,NULL,NULL,NULL,'North Bonneville',1,1046,NULL,'98639',NULL,1228,45.650041,-121.97167,0,NULL,NULL,NULL), + (65,162,1,1,0,'215R Bay St N',215,'R',NULL,'Bay','St','N',NULL,NULL,NULL,NULL,'Murrells Inlet',1,1039,NULL,'29875',NULL,1228,33.55016,-79.053838,0,NULL,NULL,NULL), + (66,200,1,1,0,'39V College Dr S',39,'V',NULL,'College','Dr','S',NULL,NULL,NULL,NULL,'Whitestown',1,1013,NULL,'46075',NULL,1228,40.007024,-86.34405,0,NULL,NULL,NULL), + (67,25,1,1,0,'147N Jackson St S',147,'N',NULL,'Jackson','St','S',NULL,NULL,NULL,NULL,'Louisville',1,1015,NULL,'66450',NULL,1228,39.251831,-96.31402,0,NULL,NULL,NULL), + (68,119,1,1,0,'719A Van Ness Dr N',719,'A',NULL,'Van Ness','Dr','N',NULL,NULL,NULL,NULL,'New Palestine',1,1013,NULL,'46163',NULL,1228,39.726811,-85.89726,0,NULL,NULL,NULL), + (69,166,1,1,0,'665G Beech Dr N',665,'G',NULL,'Beech','Dr','N',NULL,NULL,NULL,NULL,'Concordia',1,1024,NULL,'64020',NULL,1228,38.97688,-93.5895,0,NULL,NULL,NULL), + (70,65,1,1,0,'446I States St NW',446,'I',NULL,'States','St','NW',NULL,NULL,NULL,NULL,'Atlanta',1,1009,NULL,'30338',NULL,1228,33.942751,-84.31769,0,NULL,NULL,NULL), + (71,93,3,1,0,'183Q Caulder St W',183,'Q',NULL,'Caulder','St','W',NULL,'Subscriptions Dept',NULL,NULL,'Hazleton',1,1037,NULL,'18021',NULL,1228,40.954484,-75.973747,0,NULL,NULL,NULL), + (72,195,3,1,0,'970J Beech St S',970,'J',NULL,'Beech','St','S',NULL,'Attn: Accounting',NULL,NULL,'New Lothrop',1,1021,NULL,'48460',NULL,1228,43.131102,-83.98443,0,NULL,NULL,NULL), + (73,182,2,0,0,'970J Beech St S',970,'J',NULL,'Beech','St','S',NULL,'Attn: Accounting',NULL,NULL,'New Lothrop',1,1021,NULL,'48460',NULL,1228,43.131102,-83.98443,0,NULL,NULL,72), + (74,140,3,1,0,'544V Bay Blvd SE',544,'V',NULL,'Bay','Blvd','SE',NULL,'Community Relations',NULL,NULL,'Pontiac',1,1024,NULL,'65729',NULL,1228,36.525433,-92.59234,0,NULL,NULL,NULL), + (75,185,2,1,0,'544V Bay Blvd SE',544,'V',NULL,'Bay','Blvd','SE',NULL,'Community Relations',NULL,NULL,'Pontiac',1,1024,NULL,'65729',NULL,1228,36.525433,-92.59234,0,NULL,NULL,74), + (76,128,3,1,0,'239B Northpoint Ave SW',239,'B',NULL,'Northpoint','Ave','SW',NULL,'Mailstop 101',NULL,NULL,'Owendale',1,1021,NULL,'48754',NULL,1228,43.736747,-83.24746,0,NULL,NULL,NULL), + (77,163,3,1,0,'527L Maple Way S',527,'L',NULL,'Maple','Way','S',NULL,'Mailstop 101',NULL,NULL,'Red Lake Falls',1,1022,NULL,'56750',NULL,1228,47.886448,-96.29033,0,NULL,NULL,NULL), + (78,132,3,1,0,'143Q Martin Luther King Blvd NW',143,'Q',NULL,'Martin Luther King','Blvd','NW',NULL,'Cuffe Parade',NULL,NULL,'Withams',1,1045,NULL,'23488',NULL,1228,37.952168,-75.59681,0,NULL,NULL,NULL), + (79,184,3,1,0,'331U Beech Blvd SW',331,'U',NULL,'Beech','Blvd','SW',NULL,'c/o OPDC',NULL,NULL,'Los Indios',1,1042,NULL,'78567',NULL,1228,26.041669,-97.693736,0,NULL,NULL,NULL), + (80,176,3,1,0,'735Y Beech Way SW',735,'Y',NULL,'Beech','Way','SW',NULL,'c/o PO Plus',NULL,NULL,'Hyattville',1,1049,NULL,'82428',NULL,1228,44.255087,-107.63702,0,NULL,NULL,NULL), + (81,87,3,1,0,'974N Maple Rd W',974,'N',NULL,'Maple','Rd','W',NULL,'Attn: Development',NULL,NULL,'Oakland',1,1004,NULL,'94613',NULL,1228,37.781098,-122.186573,0,NULL,NULL,NULL), + (82,95,2,1,0,'974N Maple Rd W',974,'N',NULL,'Maple','Rd','W',NULL,'Attn: Development',NULL,NULL,'Oakland',1,1004,NULL,'94613',NULL,1228,37.781098,-122.186573,0,NULL,NULL,81), + (83,77,3,1,0,'545O States Way W',545,'O',NULL,'States','Way','W',NULL,'Editorial Dept',NULL,NULL,'Whitfield',1,1023,NULL,'39193',NULL,1228,32.234775,-90.07263,0,NULL,NULL,NULL), + (84,142,2,1,0,'545O States Way W',545,'O',NULL,'States','Way','W',NULL,'Editorial Dept',NULL,NULL,'Whitfield',1,1023,NULL,'39193',NULL,1228,32.234775,-90.07263,0,NULL,NULL,83), + (85,196,3,1,0,'495M Jackson Pl SW',495,'M',NULL,'Jackson','Pl','SW',NULL,'Receiving',NULL,NULL,'Ardmore',1,1035,NULL,'73403',NULL,1228,34.288884,-97.248074,0,NULL,NULL,NULL), + (86,193,2,1,0,'495M Jackson Pl SW',495,'M',NULL,'Jackson','Pl','SW',NULL,'Receiving',NULL,NULL,'Ardmore',1,1035,NULL,'73403',NULL,1228,34.288884,-97.248074,0,NULL,NULL,85), + (87,160,3,1,0,'237P Martin Luther King Ln E',237,'P',NULL,'Martin Luther King','Ln','E',NULL,'c/o OPDC',NULL,NULL,'Greenville',1,1042,NULL,'75401',NULL,1228,33.15023,-96.11289,0,NULL,NULL,NULL), + (88,183,2,1,0,'237P Martin Luther King Ln E',237,'P',NULL,'Martin Luther King','Ln','E',NULL,'c/o OPDC',NULL,NULL,'Greenville',1,1042,NULL,'75401',NULL,1228,33.15023,-96.11289,0,NULL,NULL,87), + (89,123,3,1,0,'728U Martin Luther King Rd NW',728,'U',NULL,'Martin Luther King','Rd','NW',NULL,'Cuffe Parade',NULL,NULL,'Indianapolis',1,1013,NULL,'46259',NULL,1228,39.651145,-85.98073,0,NULL,NULL,NULL), + (90,83,2,0,0,'728U Martin Luther King Rd NW',728,'U',NULL,'Martin Luther King','Rd','NW',NULL,'Cuffe Parade',NULL,NULL,'Indianapolis',1,1013,NULL,'46259',NULL,1228,39.651145,-85.98073,0,NULL,NULL,89), + (91,59,3,1,0,'223E Martin Luther King Ln E',223,'E',NULL,'Martin Luther King','Ln','E',NULL,'Disbursements',NULL,NULL,'Starbuck',1,1046,NULL,'99359',NULL,1228,46.523206,-118.19393,0,NULL,NULL,NULL), + (92,17,3,1,0,'361H College Dr NE',361,'H',NULL,'College','Dr','NE',NULL,'Cuffe Parade',NULL,NULL,'Laceyville',1,1037,NULL,'18623',NULL,1228,41.653217,-76.1487,0,NULL,NULL,NULL), + (93,10,2,1,0,'361H College Dr NE',361,'H',NULL,'College','Dr','NE',NULL,'Cuffe Parade',NULL,NULL,'Laceyville',1,1037,NULL,'18623',NULL,1228,41.653217,-76.1487,0,NULL,NULL,92), + (94,126,3,1,0,'380D Jackson Rd W',380,'D',NULL,'Jackson','Rd','W',NULL,'c/o OPDC',NULL,NULL,'Luling',1,1017,NULL,'70070',NULL,1228,29.907162,-90.35142,0,NULL,NULL,NULL), + (95,15,2,1,0,'380D Jackson Rd W',380,'D',NULL,'Jackson','Rd','W',NULL,'c/o OPDC',NULL,NULL,'Luling',1,1017,NULL,'70070',NULL,1228,29.907162,-90.35142,0,NULL,NULL,94), + (96,188,3,1,0,'418E Main Way NE',418,'E',NULL,'Main','Way','NE',NULL,'c/o PO Plus',NULL,NULL,'Melissa',1,1042,NULL,'75454',NULL,1228,33.277317,-96.57345,0,NULL,NULL,NULL), + (97,159,2,0,0,'418E Main Way NE',418,'E',NULL,'Main','Way','NE',NULL,'c/o PO Plus',NULL,NULL,'Melissa',1,1042,NULL,'75454',NULL,1228,33.277317,-96.57345,0,NULL,NULL,96), + (98,78,3,1,0,'889Q College Path E',889,'Q',NULL,'College','Path','E',NULL,'c/o PO Plus',NULL,NULL,'Huntington',1,1047,NULL,'25720',NULL,1228,38.413384,-82.277401,0,NULL,NULL,NULL), + (99,146,3,1,0,'884D Caulder Blvd E',884,'D',NULL,'Caulder','Blvd','E',NULL,'Mailstop 101',NULL,NULL,'Midlothian',1,1042,NULL,'76065',NULL,1228,32.484094,-96.98672,0,NULL,NULL,NULL), + (100,45,2,0,0,'884D Caulder Blvd E',884,'D',NULL,'Caulder','Blvd','E',NULL,'Mailstop 101',NULL,NULL,'Midlothian',1,1042,NULL,'76065',NULL,1228,32.484094,-96.98672,0,NULL,NULL,99), + (101,175,3,1,0,'726J Green Ave N',726,'J',NULL,'Green','Ave','N',NULL,'Receiving',NULL,NULL,'Piney View',1,1047,NULL,'25906',NULL,1228,37.837573,-81.128631,0,NULL,NULL,NULL), + (102,101,1,1,0,'240D Main Dr W',240,'D',NULL,'Main','Dr','W',NULL,NULL,NULL,NULL,'Washington',1,1050,NULL,'20050',NULL,1228,38.893311,-77.014647,0,NULL,NULL,51), + (103,69,1,1,0,'240D Main Dr W',240,'D',NULL,'Main','Dr','W',NULL,NULL,NULL,NULL,'Washington',1,1050,NULL,'20050',NULL,1228,38.893311,-77.014647,0,NULL,NULL,51), + (104,12,1,1,0,'240D Main Dr W',240,'D',NULL,'Main','Dr','W',NULL,NULL,NULL,NULL,'Washington',1,1050,NULL,'20050',NULL,1228,38.893311,-77.014647,0,NULL,NULL,51), + (105,40,1,0,0,'874J Woodbridge Dr N',874,'J',NULL,'Woodbridge','Dr','N',NULL,NULL,NULL,NULL,'Morgan',1,1042,NULL,'76671',NULL,1228,32.011671,-97.5324,0,NULL,NULL,NULL), + (106,105,1,1,0,'320C Northpoint Ln E',320,'C',NULL,'Northpoint','Ln','E',NULL,NULL,NULL,NULL,'Palermo',1,1018,NULL,'04354',NULL,1228,44.384901,-69.4136,0,NULL,NULL,52), + (107,143,1,1,0,'320C Northpoint Ln E',320,'C',NULL,'Northpoint','Ln','E',NULL,NULL,NULL,NULL,'Palermo',1,1018,NULL,'04354',NULL,1228,44.384901,-69.4136,0,NULL,NULL,52), + (108,27,1,1,0,'320C Northpoint Ln E',320,'C',NULL,'Northpoint','Ln','E',NULL,NULL,NULL,NULL,'Palermo',1,1018,NULL,'04354',NULL,1228,44.384901,-69.4136,0,NULL,NULL,52), + (109,193,1,0,0,'605N Green Ave SW',605,'N',NULL,'Green','Ave','SW',NULL,NULL,NULL,NULL,'Daniels',1,1047,NULL,'25832',NULL,1228,37.728559,-81.10364,0,NULL,NULL,NULL), + (110,122,1,1,0,'751D Beech Way NE',751,'D',NULL,'Beech','Way','NE',NULL,NULL,NULL,NULL,'McRae',1,1003,NULL,'72102',NULL,1228,35.125583,-91.82508,0,NULL,NULL,53), + (111,35,1,1,0,'751D Beech Way NE',751,'D',NULL,'Beech','Way','NE',NULL,NULL,NULL,NULL,'McRae',1,1003,NULL,'72102',NULL,1228,35.125583,-91.82508,0,NULL,NULL,53), + (112,157,1,1,0,'751D Beech Way NE',751,'D',NULL,'Beech','Way','NE',NULL,NULL,NULL,NULL,'McRae',1,1003,NULL,'72102',NULL,1228,35.125583,-91.82508,0,NULL,NULL,53), + (113,120,1,1,0,'962V Bay Rd N',962,'V',NULL,'Bay','Rd','N',NULL,NULL,NULL,NULL,'Hollywood',1,1008,NULL,'33019',NULL,1228,26.018967,-80.12231,0,NULL,NULL,NULL), + (114,62,1,1,0,'531J Lincoln Path E',531,'J',NULL,'Lincoln','Path','E',NULL,NULL,NULL,NULL,'Fort Atkinson',1,1048,NULL,'53538',NULL,1228,42.924942,-88.84813,0,NULL,NULL,54), + (115,64,1,1,0,'531J Lincoln Path E',531,'J',NULL,'Lincoln','Path','E',NULL,NULL,NULL,NULL,'Fort Atkinson',1,1048,NULL,'53538',NULL,1228,42.924942,-88.84813,0,NULL,NULL,54), + (116,172,1,1,0,'531J Lincoln Path E',531,'J',NULL,'Lincoln','Path','E',NULL,NULL,NULL,NULL,'Fort Atkinson',1,1048,NULL,'53538',NULL,1228,42.924942,-88.84813,0,NULL,NULL,54), + (117,150,1,1,0,'887P Van Ness Blvd NE',887,'P',NULL,'Van Ness','Blvd','NE',NULL,NULL,NULL,NULL,'Akron',1,1034,NULL,'44398',NULL,1228,41.128705,-81.53999,0,NULL,NULL,NULL), + (118,11,1,1,0,'758I Jackson Blvd NW',758,'I',NULL,'Jackson','Blvd','NW',NULL,NULL,NULL,NULL,'Buckhorn',1,1016,NULL,'41721',NULL,1228,37.325318,-83.49048,0,NULL,NULL,55), + (119,3,1,1,0,'758I Jackson Blvd NW',758,'I',NULL,'Jackson','Blvd','NW',NULL,NULL,NULL,NULL,'Buckhorn',1,1016,NULL,'41721',NULL,1228,37.325318,-83.49048,0,NULL,NULL,55), + (120,22,1,1,0,'758I Jackson Blvd NW',758,'I',NULL,'Jackson','Blvd','NW',NULL,NULL,NULL,NULL,'Buckhorn',1,1016,NULL,'41721',NULL,1228,37.325318,-83.49048,0,NULL,NULL,55), + (121,106,1,1,0,'758I Jackson Blvd NW',758,'I',NULL,'Jackson','Blvd','NW',NULL,NULL,NULL,NULL,'Buckhorn',1,1016,NULL,'41721',NULL,1228,37.325318,-83.49048,0,NULL,NULL,55), + (122,38,1,1,0,'451A Green Way S',451,'A',NULL,'Green','Way','S',NULL,NULL,NULL,NULL,'Stockville',1,1026,NULL,'69042',NULL,1228,40.519197,-100.37754,0,NULL,NULL,56), + (123,124,1,1,0,'451A Green Way S',451,'A',NULL,'Green','Way','S',NULL,NULL,NULL,NULL,'Stockville',1,1026,NULL,'69042',NULL,1228,40.519197,-100.37754,0,NULL,NULL,56), + (124,9,1,1,0,'451A Green Way S',451,'A',NULL,'Green','Way','S',NULL,NULL,NULL,NULL,'Stockville',1,1026,NULL,'69042',NULL,1228,40.519197,-100.37754,0,NULL,NULL,56), + (125,131,1,1,0,'171U Bay St SE',171,'U',NULL,'Bay','St','SE',NULL,NULL,NULL,NULL,'Augusta',1,1009,NULL,'30901',NULL,1228,33.461121,-81.97265,0,NULL,NULL,NULL), + (126,187,1,1,0,'670E Northpoint Dr SE',670,'E',NULL,'Northpoint','Dr','SE',NULL,NULL,NULL,NULL,'Newport',1,1016,NULL,'41099',NULL,1228,38.963761,-84.368926,0,NULL,NULL,57), + (127,127,1,1,0,'670E Northpoint Dr SE',670,'E',NULL,'Northpoint','Dr','SE',NULL,NULL,NULL,NULL,'Newport',1,1016,NULL,'41099',NULL,1228,38.963761,-84.368926,0,NULL,NULL,57), + (128,7,1,1,0,'670E Northpoint Dr SE',670,'E',NULL,'Northpoint','Dr','SE',NULL,NULL,NULL,NULL,'Newport',1,1016,NULL,'41099',NULL,1228,38.963761,-84.368926,0,NULL,NULL,57), + (129,100,1,1,0,'934S Van Ness Pl S',934,'S',NULL,'Van Ness','Pl','S',NULL,NULL,NULL,NULL,'McKeesport',1,1037,NULL,'15135',NULL,1228,40.306819,-79.8145,0,NULL,NULL,NULL), + (130,91,1,1,0,'593T Second Way SE',593,'T',NULL,'Second','Way','SE',NULL,NULL,NULL,NULL,'Charlotte',1,1032,NULL,'28208',NULL,1228,35.235791,-80.89295,0,NULL,NULL,58), + (131,15,1,0,0,'593T Second Way SE',593,'T',NULL,'Second','Way','SE',NULL,NULL,NULL,NULL,'Charlotte',1,1032,NULL,'28208',NULL,1228,35.235791,-80.89295,0,NULL,NULL,58), + (132,19,1,1,0,'593T Second Way SE',593,'T',NULL,'Second','Way','SE',NULL,NULL,NULL,NULL,'Charlotte',1,1032,NULL,'28208',NULL,1228,35.235791,-80.89295,0,NULL,NULL,58), + (133,26,1,1,0,'12A Second Ave NE',12,'A',NULL,'Second','Ave','NE',NULL,NULL,NULL,NULL,'Bishop',1,1009,NULL,'30621',NULL,1228,33.804849,-83.48164,0,NULL,NULL,NULL), + (134,109,1,1,0,'74Z Bay Blvd N',74,'Z',NULL,'Bay','Blvd','N',NULL,NULL,NULL,NULL,'Pioche',1,1027,NULL,'89043',NULL,1228,38.122239,-114.40318,0,NULL,NULL,59), + (135,20,1,1,0,'74Z Bay Blvd N',74,'Z',NULL,'Bay','Blvd','N',NULL,NULL,NULL,NULL,'Pioche',1,1027,NULL,'89043',NULL,1228,38.122239,-114.40318,0,NULL,NULL,59), + (136,191,1,1,0,'74Z Bay Blvd N',74,'Z',NULL,'Bay','Blvd','N',NULL,NULL,NULL,NULL,'Pioche',1,1027,NULL,'89043',NULL,1228,38.122239,-114.40318,0,NULL,NULL,59), + (137,76,1,1,0,'74Z Bay Blvd N',74,'Z',NULL,'Bay','Blvd','N',NULL,NULL,NULL,NULL,'Pioche',1,1027,NULL,'89043',NULL,1228,38.122239,-114.40318,0,NULL,NULL,59), + (138,152,1,1,0,'124W Lincoln Way S',124,'W',NULL,'Lincoln','Way','S',NULL,NULL,NULL,NULL,'Muncie',1,1013,NULL,'47302',NULL,1228,40.164393,-85.38114,0,NULL,NULL,60), + (139,29,1,1,0,'124W Lincoln Way S',124,'W',NULL,'Lincoln','Way','S',NULL,NULL,NULL,NULL,'Muncie',1,1013,NULL,'47302',NULL,1228,40.164393,-85.38114,0,NULL,NULL,60), + (140,197,1,1,0,'124W Lincoln Way S',124,'W',NULL,'Lincoln','Way','S',NULL,NULL,NULL,NULL,'Muncie',1,1013,NULL,'47302',NULL,1228,40.164393,-85.38114,0,NULL,NULL,60), + (141,148,1,1,0,'185M College Path N',185,'M',NULL,'College','Path','N',NULL,NULL,NULL,NULL,'Granger',1,1013,NULL,'46530',NULL,1228,41.741872,-86.13717,0,NULL,NULL,NULL), + (142,114,1,1,0,'956X Jackson Dr E',956,'X',NULL,'Jackson','Dr','E',NULL,NULL,NULL,NULL,'Leonardo',1,1029,NULL,'07737',NULL,1228,40.416772,-74.06058,0,NULL,NULL,61), + (143,70,1,1,0,'956X Jackson Dr E',956,'X',NULL,'Jackson','Dr','E',NULL,NULL,NULL,NULL,'Leonardo',1,1029,NULL,'07737',NULL,1228,40.416772,-74.06058,0,NULL,NULL,61), + (144,55,1,1,0,'956X Jackson Dr E',956,'X',NULL,'Jackson','Dr','E',NULL,NULL,NULL,NULL,'Leonardo',1,1029,NULL,'07737',NULL,1228,40.416772,-74.06058,0,NULL,NULL,61), + (145,142,1,0,0,'956X Jackson Dr E',956,'X',NULL,'Jackson','Dr','E',NULL,NULL,NULL,NULL,'Leonardo',1,1029,NULL,'07737',NULL,1228,40.416772,-74.06058,0,NULL,NULL,61), + (146,96,1,1,0,'662T Martin Luther King Dr NW',662,'T',NULL,'Martin Luther King','Dr','NW',NULL,NULL,NULL,NULL,'Adams',1,1026,NULL,'68301',NULL,1228,40.472055,-96.52637,0,NULL,NULL,62), + (147,44,1,1,0,'662T Martin Luther King Dr NW',662,'T',NULL,'Martin Luther King','Dr','NW',NULL,NULL,NULL,NULL,'Adams',1,1026,NULL,'68301',NULL,1228,40.472055,-96.52637,0,NULL,NULL,62), + (148,33,1,1,0,'662T Martin Luther King Dr NW',662,'T',NULL,'Martin Luther King','Dr','NW',NULL,NULL,NULL,NULL,'Adams',1,1026,NULL,'68301',NULL,1228,40.472055,-96.52637,0,NULL,NULL,62), + (149,67,1,1,0,'662T Martin Luther King Dr NW',662,'T',NULL,'Martin Luther King','Dr','NW',NULL,NULL,NULL,NULL,'Adams',1,1026,NULL,'68301',NULL,1228,40.472055,-96.52637,0,NULL,NULL,62), + (150,135,1,1,0,'767S Martin Luther King Ave SW',767,'S',NULL,'Martin Luther King','Ave','SW',NULL,NULL,NULL,NULL,'Santa Clarita',1,1004,NULL,'91387',NULL,1228,34.421537,-118.419181,0,NULL,NULL,63), + (151,5,1,1,0,'767S Martin Luther King Ave SW',767,'S',NULL,'Martin Luther King','Ave','SW',NULL,NULL,NULL,NULL,'Santa Clarita',1,1004,NULL,'91387',NULL,1228,34.421537,-118.419181,0,NULL,NULL,63), + (152,97,1,1,0,'767S Martin Luther King Ave SW',767,'S',NULL,'Martin Luther King','Ave','SW',NULL,NULL,NULL,NULL,'Santa Clarita',1,1004,NULL,'91387',NULL,1228,34.421537,-118.419181,0,NULL,NULL,63), + (153,111,1,1,0,'152S Martin Luther King Path N',152,'S',NULL,'Martin Luther King','Path','N',NULL,NULL,NULL,NULL,'Rio Linda',1,1004,NULL,'95673',NULL,1228,38.688069,-121.44874,0,NULL,NULL,NULL), + (154,190,1,1,0,'5W Cadell Rd W',5,'W',NULL,'Cadell','Rd','W',NULL,NULL,NULL,NULL,'North Bonneville',1,1046,NULL,'98639',NULL,1228,45.650041,-121.97167,0,NULL,NULL,64), + (155,98,1,1,0,'5W Cadell Rd W',5,'W',NULL,'Cadell','Rd','W',NULL,NULL,NULL,NULL,'North Bonneville',1,1046,NULL,'98639',NULL,1228,45.650041,-121.97167,0,NULL,NULL,64), + (156,102,1,1,0,'5W Cadell Rd W',5,'W',NULL,'Cadell','Rd','W',NULL,NULL,NULL,NULL,'North Bonneville',1,1046,NULL,'98639',NULL,1228,45.650041,-121.97167,0,NULL,NULL,64), + (157,104,1,1,0,'456A Northpoint Ln N',456,'A',NULL,'Northpoint','Ln','N',NULL,NULL,NULL,NULL,'Turin',1,1031,NULL,'13473',NULL,1228,43.654278,-75.43828,0,NULL,NULL,NULL), + (158,84,1,1,0,'215R Bay St N',215,'R',NULL,'Bay','St','N',NULL,NULL,NULL,NULL,'Murrells Inlet',1,1039,NULL,'29875',NULL,1228,33.55016,-79.053838,0,NULL,NULL,65), + (159,61,1,1,0,'215R Bay St N',215,'R',NULL,'Bay','St','N',NULL,NULL,NULL,NULL,'Murrells Inlet',1,1039,NULL,'29875',NULL,1228,33.55016,-79.053838,0,NULL,NULL,65), + (160,180,1,1,0,'215R Bay St N',215,'R',NULL,'Bay','St','N',NULL,NULL,NULL,NULL,'Murrells Inlet',1,1039,NULL,'29875',NULL,1228,33.55016,-79.053838,0,NULL,NULL,65), + (161,32,1,1,0,'215R Bay St N',215,'R',NULL,'Bay','St','N',NULL,NULL,NULL,NULL,'Murrells Inlet',1,1039,NULL,'29875',NULL,1228,33.55016,-79.053838,0,NULL,NULL,65), + (162,147,1,1,0,'39V College Dr S',39,'V',NULL,'College','Dr','S',NULL,NULL,NULL,NULL,'Whitestown',1,1013,NULL,'46075',NULL,1228,40.007024,-86.34405,0,NULL,NULL,66), + (163,49,1,1,0,'39V College Dr S',39,'V',NULL,'College','Dr','S',NULL,NULL,NULL,NULL,'Whitestown',1,1013,NULL,'46075',NULL,1228,40.007024,-86.34405,0,NULL,NULL,66), + (164,28,1,1,0,'39V College Dr S',39,'V',NULL,'College','Dr','S',NULL,NULL,NULL,NULL,'Whitestown',1,1013,NULL,'46075',NULL,1228,40.007024,-86.34405,0,NULL,NULL,66), + (165,153,1,1,0,'39V College Dr S',39,'V',NULL,'College','Dr','S',NULL,NULL,NULL,NULL,'Whitestown',1,1013,NULL,'46075',NULL,1228,40.007024,-86.34405,0,NULL,NULL,66), + (166,18,1,1,0,'147N Jackson St S',147,'N',NULL,'Jackson','St','S',NULL,NULL,NULL,NULL,'Louisville',1,1015,NULL,'66450',NULL,1228,39.251831,-96.31402,0,NULL,NULL,67), + (167,117,1,1,0,'147N Jackson St S',147,'N',NULL,'Jackson','St','S',NULL,NULL,NULL,NULL,'Louisville',1,1015,NULL,'66450',NULL,1228,39.251831,-96.31402,0,NULL,NULL,67), + (168,16,1,1,0,'147N Jackson St S',147,'N',NULL,'Jackson','St','S',NULL,NULL,NULL,NULL,'Louisville',1,1015,NULL,'66450',NULL,1228,39.251831,-96.31402,0,NULL,NULL,67), + (169,121,1,1,0,'147N Jackson St S',147,'N',NULL,'Jackson','St','S',NULL,NULL,NULL,NULL,'Louisville',1,1015,NULL,'66450',NULL,1228,39.251831,-96.31402,0,NULL,NULL,67), + (170,183,1,0,0,'719A Van Ness Dr N',719,'A',NULL,'Van Ness','Dr','N',NULL,NULL,NULL,NULL,'New Palestine',1,1013,NULL,'46163',NULL,1228,39.726811,-85.89726,0,NULL,NULL,68), + (171,110,1,1,0,'719A Van Ness Dr N',719,'A',NULL,'Van Ness','Dr','N',NULL,NULL,NULL,NULL,'New Palestine',1,1013,NULL,'46163',NULL,1228,39.726811,-85.89726,0,NULL,NULL,68), + (172,149,1,1,0,'719A Van Ness Dr N',719,'A',NULL,'Van Ness','Dr','N',NULL,NULL,NULL,NULL,'New Palestine',1,1013,NULL,'46163',NULL,1228,39.726811,-85.89726,0,NULL,NULL,68), + (173,112,1,1,0,'719A Van Ness Dr N',719,'A',NULL,'Van Ness','Dr','N',NULL,NULL,NULL,NULL,'New Palestine',1,1013,NULL,'46163',NULL,1228,39.726811,-85.89726,0,NULL,NULL,68), + (174,42,1,1,0,'665G Beech Dr N',665,'G',NULL,'Beech','Dr','N',NULL,NULL,NULL,NULL,'Concordia',1,1024,NULL,'64020',NULL,1228,38.97688,-93.5895,0,NULL,NULL,69), + (175,169,1,1,0,'665G Beech Dr N',665,'G',NULL,'Beech','Dr','N',NULL,NULL,NULL,NULL,'Concordia',1,1024,NULL,'64020',NULL,1228,38.97688,-93.5895,0,NULL,NULL,69), + (176,88,1,1,0,'665G Beech Dr N',665,'G',NULL,'Beech','Dr','N',NULL,NULL,NULL,NULL,'Concordia',1,1024,NULL,'64020',NULL,1228,38.97688,-93.5895,0,NULL,NULL,69), + (177,68,1,1,0,'112U Martin Luther King Ave SW',112,'U',NULL,'Martin Luther King','Ave','SW',NULL,NULL,NULL,NULL,'West Ridge',1,1003,NULL,'72391',NULL,1228,35.694942,-89.966819,0,NULL,NULL,NULL), + (178,10,1,0,0,'446I States St NW',446,'I',NULL,'States','St','NW',NULL,NULL,NULL,NULL,'Atlanta',1,1009,NULL,'30338',NULL,1228,33.942751,-84.31769,0,NULL,NULL,70), + (179,151,1,1,0,'446I States St NW',446,'I',NULL,'States','St','NW',NULL,NULL,NULL,NULL,'Atlanta',1,1009,NULL,'30338',NULL,1228,33.942751,-84.31769,0,NULL,NULL,70), + (180,194,1,1,0,'446I States St NW',446,'I',NULL,'States','St','NW',NULL,NULL,NULL,NULL,'Atlanta',1,1009,NULL,'30338',NULL,1228,33.942751,-84.31769,0,NULL,NULL,70), + (181,57,1,1,0,'446I States St NW',446,'I',NULL,'States','St','NW',NULL,NULL,NULL,NULL,'Atlanta',1,1009,NULL,'30338',NULL,1228,33.942751,-84.31769,0,NULL,NULL,70), + (182,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), + (183,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), + (184,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; @@ -2070,208 +2069,208 @@ 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,'2022-12-07 16:48:54'), - (2,'Organization',NULL,1,1,0,0,0,0,NULL,NULL,'South Dakota Sports Services','South Dakota Sports Services',NULL,NULL,NULL,'2',NULL,'Both','2728578975',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'South Dakota Sports Services',NULL,NULL,NULL,0,NULL,NULL,180,'South Dakota Sports Services',NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (3,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Jameson-Barkley, Sharyn','Sharyn Jameson-Barkley',NULL,NULL,NULL,'2',NULL,'Both','3853636299',NULL,'Sample Data','Sharyn','J','Jameson-Barkley',NULL,NULL,NULL,NULL,1,NULL,'Dear Sharyn',1,NULL,'Dear Sharyn',1,NULL,'Sharyn Jameson-Barkley',NULL,1,'2004-02-18',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (4,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Jensen, BrzÄ™czysÅ‚aw','BrzÄ™czysÅ‚aw Jensen III',NULL,NULL,NULL,'5',NULL,'Both','3109527605',NULL,'Sample Data','BrzÄ™czysÅ‚aw','Q','Jensen',NULL,4,NULL,NULL,1,NULL,'Dear BrzÄ™czysÅ‚aw',1,NULL,'Dear BrzÄ™czysÅ‚aw',1,NULL,'BrzÄ™czysÅ‚aw Jensen III',NULL,2,'1986-06-23',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (5,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Wattson-Wilson, Clint','Clint Wattson-Wilson',NULL,NULL,NULL,'5',NULL,'Both','2445184039',NULL,'Sample Data','Clint','','Wattson-Wilson',NULL,NULL,NULL,NULL,1,NULL,'Dear Clint',1,NULL,'Dear Clint',1,NULL,'Clint Wattson-Wilson',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (6,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Grant, Rodrigo','Mr. Rodrigo Grant Sr.',NULL,NULL,NULL,'1',NULL,'Both','2901986286',NULL,'Sample Data','Rodrigo','','Grant',3,2,NULL,NULL,1,NULL,'Dear Rodrigo',1,NULL,'Dear Rodrigo',1,NULL,'Mr. Rodrigo Grant Sr.',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:56'), - (7,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'erikdimitrov@notmail.co.uk','erikdimitrov@notmail.co.uk',NULL,NULL,NULL,'4',NULL,'Both','1833948065',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear erikdimitrov@notmail.co.uk',1,NULL,'Dear erikdimitrov@notmail.co.uk',1,NULL,'erikdimitrov@notmail.co.uk',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:56'), - (8,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'rgonzlez32@sample.info','rgonzlez32@sample.info',NULL,NULL,NULL,NULL,NULL,'Both','2363170051',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear rgonzlez32@sample.info',1,NULL,'Dear rgonzlez32@sample.info',1,NULL,'rgonzlez32@sample.info',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (9,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'González, Kandace','Dr. Kandace González',NULL,NULL,NULL,'2',NULL,'Both','3701129800',NULL,'Sample Data','Kandace','L','González',4,NULL,NULL,NULL,1,NULL,'Dear Kandace',1,NULL,'Dear Kandace',1,NULL,'Dr. Kandace González',NULL,1,'1988-07-08',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (10,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'nicoleterrell@sample.co.uk','nicoleterrell@sample.co.uk',NULL,NULL,NULL,NULL,NULL,'Both','831169031',NULL,'Sample Data',NULL,NULL,NULL,1,NULL,NULL,NULL,1,NULL,'Dear nicoleterrell@sample.co.uk',1,NULL,'Dear nicoleterrell@sample.co.uk',1,NULL,'nicoleterrell@sample.co.uk',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (11,'Organization',NULL,0,0,0,0,1,0,NULL,NULL,'Pelzer Education Partners','Pelzer Education Partners',NULL,NULL,NULL,'1',NULL,'Both','124726297',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Pelzer Education Partners',NULL,NULL,NULL,0,NULL,NULL,NULL,'Pelzer Education Partners',NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (12,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'McReynolds, Carlos','Mr. Carlos McReynolds Jr.',NULL,NULL,NULL,'1',NULL,'Both','1986804051',NULL,'Sample Data','Carlos','','McReynolds',3,1,NULL,NULL,1,NULL,'Dear Carlos',1,NULL,'Dear Carlos',1,NULL,'Mr. Carlos McReynolds Jr.',NULL,2,'2000-01-06',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (13,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jensen, Lou','Lou Jensen II',NULL,NULL,NULL,'1',NULL,'Both','707335642',NULL,'Sample Data','Lou','F','Jensen',NULL,3,NULL,NULL,1,NULL,'Dear Lou',1,NULL,'Dear Lou',1,NULL,'Lou Jensen II',NULL,2,'1959-07-12',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (14,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'González, Betty','Mrs. Betty González',NULL,NULL,NULL,NULL,NULL,'Both','152645290',NULL,'Sample Data','Betty','','González',1,NULL,NULL,NULL,1,NULL,'Dear Betty',1,NULL,'Dear Betty',1,NULL,'Mrs. Betty González',NULL,1,'1985-01-16',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (15,'Organization',NULL,1,0,0,0,1,0,NULL,NULL,'Rural Poetry School','Rural Poetry School',NULL,NULL,NULL,NULL,NULL,'Both','1342228132',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Rural Poetry School',NULL,NULL,NULL,0,NULL,NULL,198,'Rural Poetry School',NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (16,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Terrell, Ashley','Ashley Terrell',NULL,NULL,NULL,NULL,NULL,'Both','209760227',NULL,'Sample Data','Ashley','','Terrell',NULL,NULL,NULL,NULL,1,NULL,'Dear Ashley',1,NULL,'Dear Ashley',1,NULL,'Ashley Terrell',NULL,2,'1984-08-29',0,NULL,NULL,NULL,'Nalcrest Advocacy Solutions',NULL,NULL,124,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (17,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Barkley, Norris','Dr. Norris Barkley',NULL,NULL,NULL,NULL,NULL,'Both','2989554076',NULL,'Sample Data','Norris','T','Barkley',4,NULL,NULL,NULL,1,NULL,'Dear Norris',1,NULL,'Dear Norris',1,NULL,'Dr. Norris Barkley',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (18,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Barkley, Tanya','Tanya Barkley',NULL,NULL,NULL,NULL,NULL,'Both','2953066257',NULL,'Sample Data','Tanya','','Barkley',NULL,NULL,NULL,NULL,1,NULL,'Dear Tanya',1,NULL,'Dear Tanya',1,NULL,'Tanya Barkley',NULL,1,'1947-02-07',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (19,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'González family','González family',NULL,NULL,NULL,NULL,NULL,'Both','3263723758',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear González family',5,NULL,'Dear González family',2,NULL,'González family',NULL,NULL,NULL,0,NULL,'González family',NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (20,'Household',NULL,0,1,0,0,0,0,NULL,NULL,'Jensen-Olsen family','Jensen-Olsen family',NULL,NULL,NULL,'4',NULL,'Both','3803048030',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Jensen-Olsen family',5,NULL,'Dear Jensen-Olsen family',2,NULL,'Jensen-Olsen family',NULL,NULL,NULL,0,NULL,'Jensen-Olsen family',NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (21,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'González, Sharyn','Ms. Sharyn González',NULL,NULL,NULL,'2',NULL,'Both','491929242',NULL,'Sample Data','Sharyn','','González',2,NULL,NULL,NULL,1,NULL,'Dear Sharyn',1,NULL,'Dear Sharyn',1,NULL,'Ms. Sharyn González',NULL,NULL,'1993-12-09',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (22,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Jacobs, Troy','Troy Jacobs Jr.',NULL,NULL,NULL,'3',NULL,'Both','2945858562',NULL,'Sample Data','Troy','M','Jacobs',NULL,1,NULL,NULL,1,NULL,'Dear Troy',1,NULL,'Dear Troy',1,NULL,'Troy Jacobs Jr.',NULL,2,'1971-05-01',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (23,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Wagner, Barry','Mr. Barry Wagner',NULL,NULL,NULL,'2',NULL,'Both','1267143153',NULL,'Sample Data','Barry','','Wagner',3,NULL,NULL,NULL,1,NULL,'Dear Barry',1,NULL,'Dear Barry',1,NULL,'Mr. Barry Wagner',NULL,2,'1967-06-08',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (24,'Organization',NULL,1,1,0,0,1,0,NULL,NULL,'Cadell Poetry Partnership','Cadell Poetry Partnership',NULL,NULL,NULL,NULL,NULL,'Both','364772128',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Cadell Poetry Partnership',NULL,NULL,NULL,0,NULL,NULL,70,'Cadell Poetry Partnership',NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (25,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'González, Claudio','Claudio González III',NULL,NULL,NULL,NULL,NULL,'Both','636484517',NULL,'Sample Data','Claudio','','González',NULL,4,NULL,NULL,1,NULL,'Dear Claudio',1,NULL,'Dear Claudio',1,NULL,'Claudio González III',NULL,2,'1983-05-23',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (26,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Zope-Yadav family','Zope-Yadav family',NULL,NULL,NULL,NULL,NULL,'Both','3996455240',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Zope-Yadav family',5,NULL,'Dear Zope-Yadav family',2,NULL,'Zope-Yadav family',NULL,NULL,NULL,0,NULL,'Zope-Yadav family',NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (27,'Household',NULL,1,0,0,0,0,0,NULL,NULL,'González-Cooper family','González-Cooper family',NULL,NULL,NULL,'3',NULL,'Both','760023919',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear González-Cooper family',5,NULL,'Dear González-Cooper family',2,NULL,'González-Cooper family',NULL,NULL,NULL,0,NULL,'González-Cooper family',NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (28,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Blackwell, Ashlie','Ashlie Blackwell',NULL,NULL,NULL,NULL,NULL,'Both','297953864',NULL,'Sample Data','Ashlie','','Blackwell',NULL,NULL,NULL,NULL,1,NULL,'Dear Ashlie',1,NULL,'Dear Ashlie',1,NULL,'Ashlie Blackwell',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:56'), - (29,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'McReynolds, Elbert','Elbert McReynolds',NULL,NULL,NULL,'1',NULL,'Both','1717930832',NULL,'Sample Data','Elbert','','McReynolds',NULL,NULL,NULL,NULL,1,NULL,'Dear Elbert',1,NULL,'Dear Elbert',1,NULL,'Elbert McReynolds',NULL,NULL,'1958-05-17',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (30,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Wagner, Josefa','Josefa Wagner',NULL,NULL,NULL,NULL,NULL,'Both','497687514',NULL,'Sample Data','Josefa','','Wagner',NULL,NULL,NULL,NULL,1,NULL,'Dear Josefa',1,NULL,'Dear Josefa',1,NULL,'Josefa Wagner',NULL,1,'1992-07-18',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (31,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Wattson, Junko','Mrs. Junko Wattson',NULL,NULL,NULL,NULL,NULL,'Both','708062411',NULL,'Sample Data','Junko','','Wattson',1,NULL,NULL,NULL,1,NULL,'Dear Junko',1,NULL,'Dear Junko',1,NULL,'Mrs. Junko Wattson',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:56'), - (32,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Bachman, Nicole','Nicole Bachman',NULL,NULL,NULL,'4',NULL,'Both','1447276636',NULL,'Sample Data','Nicole','','Bachman',NULL,NULL,NULL,NULL,1,NULL,'Dear Nicole',1,NULL,'Dear Nicole',1,NULL,'Nicole Bachman',NULL,1,'1989-02-15',0,NULL,NULL,NULL,'California Wellness Center',NULL,NULL,38,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (33,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Parker, Jacob','Jacob Parker Jr.',NULL,NULL,NULL,'3',NULL,'Both','1474401042',NULL,'Sample Data','Jacob','','Parker',NULL,1,NULL,NULL,1,NULL,'Dear Jacob',1,NULL,'Dear Jacob',1,NULL,'Jacob Parker Jr.',NULL,2,'1979-07-31',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (34,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'bettycruz28@sample.info','bettycruz28@sample.info',NULL,NULL,NULL,'5',NULL,'Both','173389348',NULL,'Sample Data',NULL,NULL,NULL,2,NULL,NULL,NULL,1,NULL,'Dear bettycruz28@sample.info',1,NULL,'Dear bettycruz28@sample.info',1,NULL,'bettycruz28@sample.info',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (35,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Smith, Iris','Dr. Iris Smith',NULL,NULL,NULL,'5',NULL,'Both','3014958774',NULL,'Sample Data','Iris','X','Smith',4,NULL,NULL,NULL,1,NULL,'Dear Iris',1,NULL,'Dear Iris',1,NULL,'Dr. Iris Smith',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (36,'Organization',NULL,0,0,0,0,1,0,NULL,NULL,'Falls Of Rough Music Fund','Falls Of Rough Music Fund',NULL,NULL,NULL,NULL,NULL,'Both','1397131710',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Falls Of Rough Music Fund',NULL,NULL,NULL,0,NULL,NULL,171,'Falls Of Rough Music Fund',NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (37,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'College Arts Association','College Arts Association',NULL,NULL,NULL,'3',NULL,'Both','2232252424',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'College Arts Association',NULL,NULL,NULL,0,NULL,NULL,NULL,'College Arts Association',NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (38,'Organization',NULL,0,0,0,0,1,0,NULL,NULL,'California Wellness Center','California Wellness Center',NULL,NULL,NULL,NULL,NULL,'Both','2450642082',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'California Wellness Center',NULL,NULL,NULL,0,NULL,NULL,32,'California Wellness Center',NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (39,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Yadav, Princess','Princess Yadav',NULL,NULL,NULL,'2',NULL,'Both','266930664',NULL,'Sample Data','Princess','','Yadav',NULL,NULL,NULL,NULL,1,NULL,'Dear Princess',1,NULL,'Dear Princess',1,NULL,'Princess Yadav',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (40,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Lee-Bachman, Ivey','Ivey Lee-Bachman',NULL,NULL,NULL,NULL,NULL,'Both','1893114192',NULL,'Sample Data','Ivey','L','Lee-Bachman',NULL,NULL,NULL,NULL,1,NULL,'Dear Ivey',1,NULL,'Dear Ivey',1,NULL,'Ivey Lee-Bachman',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (41,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Prentice, Kandace','Mrs. Kandace Prentice',NULL,NULL,NULL,'5',NULL,'Both','1824755272',NULL,'Sample Data','Kandace','J','Prentice',1,NULL,NULL,NULL,1,NULL,'Dear Kandace',1,NULL,'Dear Kandace',1,NULL,'Mrs. Kandace Prentice',NULL,1,'1955-11-17',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (42,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'United Food Systems','United Food Systems',NULL,NULL,NULL,'2',NULL,'Both','4253513329',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'United Food Systems',NULL,NULL,NULL,0,NULL,NULL,103,'United Food Systems',NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (43,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'El Camino Agriculture Academy','El Camino Agriculture Academy',NULL,NULL,NULL,NULL,NULL,'Both','3764033868',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'El Camino Agriculture Academy',NULL,NULL,NULL,0,NULL,NULL,179,'El Camino Agriculture Academy',NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (44,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'ÅÄ…chowski, Daren','Daren ÅÄ…chowski Jr.',NULL,NULL,NULL,NULL,NULL,'Both','2421029713',NULL,'Sample Data','Daren','A','ÅÄ…chowski',NULL,1,NULL,NULL,1,NULL,'Dear Daren',1,NULL,'Dear Daren',1,NULL,'Daren ÅÄ…chowski Jr.',NULL,2,'1991-02-08',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (45,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Nielsen-McReynolds, Betty','Ms. Betty Nielsen-McReynolds',NULL,NULL,NULL,NULL,NULL,'Both','366994298',NULL,'Sample Data','Betty','','Nielsen-McReynolds',2,NULL,NULL,NULL,1,NULL,'Dear Betty',1,NULL,'Dear Betty',1,NULL,'Ms. Betty Nielsen-McReynolds',NULL,1,'1969-07-09',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (46,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Samuels family','Samuels family',NULL,NULL,NULL,'3',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,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (47,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Olsen, Lawerence','Lawerence Olsen',NULL,NULL,NULL,NULL,NULL,'Both','657766378',NULL,'Sample Data','Lawerence','A','Olsen',NULL,NULL,NULL,NULL,1,NULL,'Dear Lawerence',1,NULL,'Dear Lawerence',1,NULL,'Lawerence Olsen',NULL,2,'2000-06-10',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (48,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Barkley, Jerome','Jerome Barkley',NULL,NULL,NULL,'5',NULL,'Both','3881296733',NULL,'Sample Data','Jerome','','Barkley',NULL,NULL,NULL,NULL,1,NULL,'Dear Jerome',1,NULL,'Dear Jerome',1,NULL,'Jerome Barkley',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:56'), - (49,'Organization',NULL,0,0,0,0,1,0,NULL,NULL,'Proctor Music Academy','Proctor Music Academy',NULL,NULL,NULL,NULL,NULL,'Both','1183094113',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Proctor Music Academy',NULL,NULL,NULL,0,NULL,NULL,195,'Proctor Music Academy',NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (50,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Cruz, Eleonor','Eleonor Cruz',NULL,NULL,NULL,NULL,NULL,'Both','1901745992',NULL,'Sample Data','Eleonor','E','Cruz',NULL,NULL,NULL,NULL,1,NULL,'Dear Eleonor',1,NULL,'Dear Eleonor',1,NULL,'Eleonor Cruz',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (51,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jameson-Barkley, Kenny','Mr. Kenny Jameson-Barkley II',NULL,NULL,NULL,NULL,NULL,'Both','618113147',NULL,'Sample Data','Kenny','G','Jameson-Barkley',3,3,NULL,NULL,1,NULL,'Dear Kenny',1,NULL,'Dear Kenny',1,NULL,'Mr. Kenny Jameson-Barkley II',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (52,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Lee, Tanya','Dr. Tanya Lee',NULL,NULL,NULL,NULL,NULL,'Both','776617860',NULL,'Sample Data','Tanya','','Lee',4,NULL,NULL,NULL,1,NULL,'Dear Tanya',1,NULL,'Dear Tanya',1,NULL,'Dr. Tanya Lee',NULL,NULL,'1958-09-17',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (53,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Jones, Rosario','Mr. Rosario Jones II',NULL,NULL,NULL,NULL,NULL,'Both','1172090017',NULL,'Sample Data','Rosario','','Jones',3,3,NULL,NULL,1,NULL,'Dear Rosario',1,NULL,'Dear Rosario',1,NULL,'Mr. Rosario Jones II',NULL,2,'1991-10-29',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (54,'Individual',NULL,1,0,0,0,1,0,NULL,NULL,'Jensen-Olsen, Jina','Jina Jensen-Olsen',NULL,NULL,NULL,'5',NULL,'Both','4215487901',NULL,'Sample Data','Jina','O','Jensen-Olsen',NULL,NULL,NULL,NULL,1,NULL,'Dear Jina',1,NULL,'Dear Jina',1,NULL,'Jina Jensen-Olsen',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (55,'Organization',NULL,0,1,0,0,0,0,NULL,NULL,'North Carolina Food Trust','North Carolina Food Trust',NULL,NULL,NULL,NULL,NULL,'Both','1201269638',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'North Carolina Food Trust',NULL,NULL,NULL,0,NULL,NULL,NULL,'North Carolina Food Trust',NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (56,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Wattson, Clint','Clint Wattson Jr.',NULL,NULL,NULL,NULL,NULL,'Both','4167597443',NULL,'Sample Data','Clint','O','Wattson',NULL,1,NULL,NULL,1,NULL,'Dear Clint',1,NULL,'Dear Clint',1,NULL,'Clint Wattson Jr.',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (57,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jameson, Kandace','Mrs. Kandace Jameson',NULL,NULL,NULL,'2',NULL,'Both','181551567',NULL,'Sample Data','Kandace','F','Jameson',1,NULL,NULL,NULL,1,NULL,'Dear Kandace',1,NULL,'Dear Kandace',1,NULL,'Mrs. Kandace Jameson',NULL,NULL,'1985-10-11',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:56'), - (58,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Olsen, Maria','Maria Olsen',NULL,NULL,NULL,NULL,NULL,'Both','1487979958',NULL,'Sample Data','Maria','F','Olsen',NULL,NULL,NULL,NULL,1,NULL,'Dear Maria',1,NULL,'Dear Maria',1,NULL,'Maria Olsen',NULL,2,'1973-03-13',0,NULL,NULL,NULL,'Local Poetry Center',NULL,NULL,168,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (59,'Individual',NULL,1,1,0,0,0,0,NULL,NULL,'Olsen, Laree','Ms. Laree Olsen',NULL,NULL,NULL,'3',NULL,'Both','3456657171',NULL,'Sample Data','Laree','','Olsen',2,NULL,NULL,NULL,1,NULL,'Dear Laree',1,NULL,'Dear Laree',1,NULL,'Ms. Laree Olsen',NULL,NULL,'1957-01-04',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (60,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Roberts, Lawerence','Lawerence Roberts II',NULL,NULL,NULL,'2',NULL,'Both','2250722466',NULL,'Sample Data','Lawerence','','Roberts',NULL,3,NULL,NULL,1,NULL,'Dear Lawerence',1,NULL,'Dear Lawerence',1,NULL,'Lawerence Roberts II',NULL,2,'1981-03-03',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (61,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'mreynolds@testing.biz','mreynolds@testing.biz',NULL,NULL,NULL,'2',NULL,'Both','1535268413',NULL,'Sample Data',NULL,NULL,NULL,4,NULL,NULL,NULL,1,NULL,'Dear mreynolds@testing.biz',1,NULL,'Dear mreynolds@testing.biz',1,NULL,'mreynolds@testing.biz',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (62,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Grant, Craig','Dr. Craig Grant',NULL,NULL,NULL,NULL,NULL,'Both','3839246434',NULL,'Sample Data','Craig','G','Grant',4,NULL,NULL,NULL,1,NULL,'Dear Craig',1,NULL,'Dear Craig',1,NULL,'Dr. Craig Grant',NULL,2,'1936-02-20',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (63,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Wattson-Wilson family','Wattson-Wilson family',NULL,NULL,NULL,NULL,NULL,'Both','3223652892',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Wattson-Wilson family',5,NULL,'Dear Wattson-Wilson family',2,NULL,'Wattson-Wilson family',NULL,NULL,NULL,0,NULL,'Wattson-Wilson family',NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (64,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Community Legal Partnership','Community Legal Partnership',NULL,NULL,NULL,NULL,NULL,'Both','1167581189',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Community Legal Partnership',NULL,NULL,NULL,0,NULL,NULL,194,'Community Legal Partnership',NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (65,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Terrell, Justina','Mrs. Justina Terrell',NULL,NULL,NULL,NULL,NULL,'Both','2346884824',NULL,'Sample Data','Justina','','Terrell',1,NULL,NULL,NULL,1,NULL,'Dear Justina',1,NULL,'Dear Justina',1,NULL,'Mrs. Justina Terrell',NULL,NULL,'1949-04-03',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (66,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'González, BrzÄ™czysÅ‚aw','BrzÄ™czysÅ‚aw González',NULL,NULL,NULL,NULL,NULL,'Both','3813995489',NULL,'Sample Data','BrzÄ™czysÅ‚aw','','González',NULL,NULL,NULL,NULL,1,NULL,'Dear BrzÄ™czysÅ‚aw',1,NULL,'Dear BrzÄ™czysÅ‚aw',1,NULL,'BrzÄ™czysÅ‚aw González',NULL,NULL,'1995-01-24',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (67,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Reynolds, Jerome','Dr. Jerome Reynolds',NULL,NULL,NULL,NULL,NULL,'Both','2193526984',NULL,'Sample Data','Jerome','','Reynolds',4,NULL,NULL,NULL,1,NULL,'Dear Jerome',1,NULL,'Dear Jerome',1,NULL,'Dr. Jerome Reynolds',NULL,2,'1980-11-01',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (68,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Wattson, Norris','Mr. Norris Wattson',NULL,NULL,NULL,'5',NULL,'Both','4180802164',NULL,'Sample Data','Norris','P','Wattson',3,NULL,NULL,NULL,1,NULL,'Dear Norris',1,NULL,'Dear Norris',1,NULL,'Mr. Norris Wattson',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (69,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Terrell, Brittney','Ms. Brittney Terrell',NULL,NULL,NULL,'3',NULL,'Both','21549293',NULL,'Sample Data','Brittney','S','Terrell',2,NULL,NULL,NULL,1,NULL,'Dear Brittney',1,NULL,'Dear Brittney',1,NULL,'Ms. Brittney Terrell',NULL,1,'1982-06-26',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (70,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Bachman, Roland','Dr. Roland Bachman Sr.',NULL,NULL,NULL,'5',NULL,'Both','3134974036',NULL,'Sample Data','Roland','I','Bachman',4,2,NULL,NULL,1,NULL,'Dear Roland',1,NULL,'Dear Roland',1,NULL,'Dr. Roland Bachman Sr.',NULL,2,'1989-04-02',0,NULL,NULL,NULL,'Cadell Poetry Partnership',NULL,NULL,24,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (71,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Nielsen, Josefa','Dr. Josefa Nielsen',NULL,NULL,NULL,NULL,NULL,'Both','3267028471',NULL,'Sample Data','Josefa','U','Nielsen',4,NULL,NULL,NULL,1,NULL,'Dear Josefa',1,NULL,'Dear Josefa',1,NULL,'Dr. Josefa Nielsen',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (72,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Ivanov, Lincoln','Lincoln Ivanov',NULL,NULL,NULL,NULL,NULL,'Both','1295096764',NULL,'Sample Data','Lincoln','','Ivanov',NULL,NULL,NULL,NULL,1,NULL,'Dear Lincoln',1,NULL,'Dear Lincoln',1,NULL,'Lincoln Ivanov',NULL,2,'2000-05-21',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (73,'Household',NULL,1,0,0,0,0,0,NULL,NULL,'Reynolds-Barkley family','Reynolds-Barkley family',NULL,NULL,NULL,NULL,NULL,'Both','452578824',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Reynolds-Barkley family',5,NULL,'Dear Reynolds-Barkley family',2,NULL,'Reynolds-Barkley family',NULL,NULL,NULL,0,NULL,'Reynolds-Barkley family',NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (74,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Roberts, Winford','Winford Roberts Jr.',NULL,NULL,NULL,NULL,NULL,'Both','675793909',NULL,'Sample Data','Winford','','Roberts',NULL,1,NULL,NULL,1,NULL,'Dear Winford',1,NULL,'Dear Winford',1,NULL,'Winford Roberts Jr.',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (75,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'McReynolds, Ray','Ray McReynolds Sr.',NULL,NULL,NULL,'2',NULL,'Both','3928590704',NULL,'Sample Data','Ray','A','McReynolds',NULL,2,NULL,NULL,1,NULL,'Dear Ray',1,NULL,'Dear Ray',1,NULL,'Ray McReynolds Sr.',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (76,'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,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (77,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Jameson-Barkley family','Jameson-Barkley family',NULL,NULL,NULL,NULL,NULL,'Both','1137328179',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Jameson-Barkley family',5,NULL,'Dear Jameson-Barkley family',2,NULL,'Jameson-Barkley family',NULL,NULL,NULL,0,NULL,'Jameson-Barkley family',NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (78,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'McReynolds, Jacob','Jacob McReynolds',NULL,NULL,NULL,NULL,NULL,'Both','4202313565',NULL,'Sample Data','Jacob','G','McReynolds',NULL,NULL,NULL,NULL,1,NULL,'Dear Jacob',1,NULL,'Dear Jacob',1,NULL,'Jacob McReynolds',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (79,'Household',NULL,1,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,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (80,'Individual',NULL,1,0,0,0,1,0,NULL,NULL,'Bachman, Mei','Mei Bachman',NULL,NULL,NULL,NULL,NULL,'Both','1338545040',NULL,'Sample Data','Mei','C','Bachman',NULL,NULL,NULL,NULL,1,NULL,'Dear Mei',1,NULL,'Dear Mei',1,NULL,'Mei Bachman',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (81,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Olsen, Scarlet','Scarlet Olsen',NULL,NULL,NULL,'1',NULL,'Both','2231613326',NULL,'Sample Data','Scarlet','','Olsen',NULL,NULL,NULL,NULL,1,NULL,'Dear Scarlet',1,NULL,'Dear Scarlet',1,NULL,'Scarlet Olsen',NULL,1,'1988-06-22',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (82,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Terrell, Bob','Dr. Bob Terrell',NULL,NULL,NULL,NULL,NULL,'Both','1949116278',NULL,'Sample Data','Bob','','Terrell',4,NULL,NULL,NULL,1,NULL,'Dear Bob',1,NULL,'Dear Bob',1,NULL,'Dr. Bob Terrell',NULL,2,'1986-10-03',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (83,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'mi.wilson@mymail.co.pl','mi.wilson@mymail.co.pl',NULL,NULL,NULL,NULL,NULL,'Both','362352854',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear mi.wilson@mymail.co.pl',1,NULL,'Dear mi.wilson@mymail.co.pl',1,NULL,'mi.wilson@mymail.co.pl',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (84,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Barkley, Betty','Betty Barkley',NULL,NULL,NULL,'2',NULL,'Both','1739915993',NULL,'Sample Data','Betty','H','Barkley',NULL,NULL,NULL,NULL,1,NULL,'Dear Betty',1,NULL,'Dear Betty',1,NULL,'Betty Barkley',NULL,1,'1960-04-04',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:56'), - (85,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Jensen family','Jensen family',NULL,NULL,NULL,NULL,NULL,'Both','797435572',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Jensen family',5,NULL,'Dear Jensen family',2,NULL,'Jensen family',NULL,NULL,NULL,0,NULL,'Jensen family',NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (86,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Wattson, Truman','Truman Wattson II',NULL,NULL,NULL,NULL,NULL,'Both','3799954079',NULL,'Sample Data','Truman','I','Wattson',NULL,3,NULL,NULL,1,NULL,'Dear Truman',1,NULL,'Dear Truman',1,NULL,'Truman Wattson II',NULL,2,'1982-10-23',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (87,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Nielsen, Herminia','Mrs. Herminia Nielsen',NULL,NULL,NULL,NULL,NULL,'Both','176728020',NULL,'Sample Data','Herminia','Z','Nielsen',1,NULL,NULL,NULL,1,NULL,'Dear Herminia',1,NULL,'Dear Herminia',1,NULL,'Mrs. Herminia Nielsen',NULL,1,'1976-05-18',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (88,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Lee, Ashley','Ashley Lee',NULL,NULL,NULL,NULL,NULL,'Both','66160538',NULL,'Sample Data','Ashley','Z','Lee',NULL,NULL,NULL,NULL,1,NULL,'Dear Ashley',1,NULL,'Dear Ashley',1,NULL,'Ashley Lee',NULL,1,'1968-02-19',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:56'), - (89,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Jensen, Jackson','Jackson Jensen III',NULL,NULL,NULL,'2',NULL,'Both','2839026195',NULL,'Sample Data','Jackson','D','Jensen',NULL,4,NULL,NULL,1,NULL,'Dear Jackson',1,NULL,'Dear Jackson',1,NULL,'Jackson Jensen III',NULL,2,NULL,0,NULL,NULL,NULL,'Local Advocacy Services',NULL,NULL,167,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (90,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Jones, Allen','Allen Jones Jr.',NULL,NULL,NULL,NULL,NULL,'Both','1899434814',NULL,'Sample Data','Allen','K','Jones',NULL,1,NULL,NULL,1,NULL,'Dear Allen',1,NULL,'Dear Allen',1,NULL,'Allen Jones Jr.',NULL,NULL,'1963-07-16',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (91,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Olsen, Lawerence','Mr. Lawerence Olsen III',NULL,NULL,NULL,'1',NULL,'Both','657766378',NULL,'Sample Data','Lawerence','','Olsen',3,4,NULL,NULL,1,NULL,'Dear Lawerence',1,NULL,'Dear Lawerence',1,NULL,'Mr. Lawerence Olsen III',NULL,2,'1933-04-17',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (92,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Barkley, Scarlet','Scarlet Barkley',NULL,NULL,NULL,NULL,NULL,'Both','817435173',NULL,'Sample Data','Scarlet','','Barkley',NULL,NULL,NULL,NULL,1,NULL,'Dear Scarlet',1,NULL,'Dear Scarlet',1,NULL,'Scarlet Barkley',NULL,NULL,'1977-07-18',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (93,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Barkley, Elbert','Elbert Barkley',NULL,NULL,NULL,'2',NULL,'Both','3782594524',NULL,'Sample Data','Elbert','C','Barkley',NULL,NULL,NULL,NULL,1,NULL,'Dear Elbert',1,NULL,'Dear Elbert',1,NULL,'Elbert Barkley',NULL,2,'1958-12-03',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (94,'Household',NULL,0,1,0,0,0,0,NULL,NULL,'Roberts family','Roberts family',NULL,NULL,NULL,NULL,NULL,'Both','2097305882',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Roberts family',5,NULL,'Dear Roberts family',2,NULL,'Roberts family',NULL,NULL,NULL,0,NULL,'Roberts family',NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (95,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Smith, Brent','Brent Smith II',NULL,NULL,NULL,'2',NULL,'Both','645749990',NULL,'Sample Data','Brent','','Smith',NULL,3,NULL,NULL,1,NULL,'Dear Brent',1,NULL,'Dear Brent',1,NULL,'Brent Smith II',NULL,2,'1959-04-14',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:56'), - (96,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Wilson, Damaris','Mrs. Damaris Wilson',NULL,NULL,NULL,NULL,NULL,'Both','226365314',NULL,'Sample Data','Damaris','','Wilson',1,NULL,NULL,NULL,1,NULL,'Dear Damaris',1,NULL,'Dear Damaris',1,NULL,'Mrs. Damaris Wilson',NULL,1,'1968-12-19',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (97,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Wattson, Justina','Mrs. Justina Wattson',NULL,NULL,NULL,'2',NULL,'Both','239281410',NULL,'Sample Data','Justina','','Wattson',1,NULL,NULL,NULL,1,NULL,'Dear Justina',1,NULL,'Dear Justina',1,NULL,'Mrs. Justina Wattson',NULL,1,'1960-10-28',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (98,'Individual',NULL,1,1,0,0,0,0,NULL,NULL,'Olsen, Elbert','Dr. Elbert Olsen',NULL,NULL,NULL,NULL,NULL,'Both','2334086497',NULL,'Sample Data','Elbert','','Olsen',4,NULL,NULL,NULL,1,NULL,'Dear Elbert',1,NULL,'Dear Elbert',1,NULL,'Dr. Elbert Olsen',NULL,NULL,NULL,1,'2022-04-07',NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:56'), - (99,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Wilson, Felisha','Ms. Felisha Wilson',NULL,NULL,NULL,NULL,NULL,'Both','314865628',NULL,'Sample Data','Felisha','','Wilson',2,NULL,NULL,NULL,1,NULL,'Dear Felisha',1,NULL,'Dear Felisha',1,NULL,'Ms. Felisha Wilson',NULL,1,'1997-04-09',0,NULL,NULL,NULL,'Global Culture School',NULL,NULL,192,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (100,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Samuels, Kiara','Kiara Samuels',NULL,NULL,NULL,NULL,NULL,'Both','3345956952',NULL,'Sample Data','Kiara','I','Samuels',NULL,NULL,NULL,NULL,1,NULL,'Dear Kiara',1,NULL,'Dear Kiara',1,NULL,'Kiara Samuels',NULL,1,'1954-03-06',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (101,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'rjameson73@sample.co.uk','rjameson73@sample.co.uk',NULL,NULL,NULL,NULL,NULL,'Both','3165350086',NULL,'Sample Data',NULL,NULL,NULL,NULL,2,NULL,NULL,1,NULL,'Dear rjameson73@sample.co.uk',1,NULL,'Dear rjameson73@sample.co.uk',1,NULL,'rjameson73@sample.co.uk',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (102,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Jensen-Olsen, Norris','Mr. Norris Jensen-Olsen',NULL,NULL,NULL,'4',NULL,'Both','2954093354',NULL,'Sample Data','Norris','','Jensen-Olsen',3,NULL,NULL,NULL,1,NULL,'Dear Norris',1,NULL,'Dear Norris',1,NULL,'Mr. Norris Jensen-Olsen',NULL,2,'1995-02-02',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (103,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Wattson, Russell','Russell Wattson',NULL,NULL,NULL,'1',NULL,'Both','2184718409',NULL,'Sample Data','Russell','','Wattson',NULL,NULL,NULL,NULL,1,NULL,'Dear Russell',1,NULL,'Dear Russell',1,NULL,'Russell Wattson',NULL,NULL,'2009-11-08',0,NULL,NULL,NULL,'United Food Systems',NULL,NULL,42,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (104,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Barkley, Shauna','Shauna Barkley',NULL,NULL,NULL,'3',NULL,'Both','1145257394',NULL,'Sample Data','Shauna','L','Barkley',NULL,NULL,NULL,NULL,1,NULL,'Dear Shauna',1,NULL,'Dear Shauna',1,NULL,'Shauna Barkley',NULL,1,'1961-05-14',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (105,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'ÅÄ…chowski, Betty','Betty ÅÄ…chowski',NULL,NULL,NULL,NULL,NULL,'Both','1156072387',NULL,'Sample Data','Betty','','ÅÄ…chowski',NULL,NULL,NULL,NULL,1,NULL,'Dear Betty',1,NULL,'Dear Betty',1,NULL,'Betty ÅÄ…chowski',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (106,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Smith, Rebekah','Rebekah Smith',NULL,NULL,NULL,NULL,NULL,'Both','536469258',NULL,'Sample Data','Rebekah','W','Smith',NULL,NULL,NULL,NULL,1,NULL,'Dear Rebekah',1,NULL,'Dear Rebekah',1,NULL,'Rebekah Smith',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:56'), - (107,'Individual',NULL,1,1,0,0,0,0,NULL,NULL,'Jensen, Santina','Santina Jensen',NULL,NULL,NULL,'3',NULL,'Both','864111104',NULL,'Sample Data','Santina','S','Jensen',NULL,NULL,NULL,NULL,1,NULL,'Dear Santina',1,NULL,'Dear Santina',1,NULL,'Santina Jensen',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (108,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Smith, Omar','Dr. Omar Smith',NULL,NULL,NULL,NULL,NULL,'Both','1048289209',NULL,'Sample Data','Omar','E','Smith',4,NULL,NULL,NULL,1,NULL,'Dear Omar',1,NULL,'Dear Omar',1,NULL,'Dr. Omar Smith',NULL,2,'1953-09-24',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (109,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Roberts, Maria','Dr. Maria Roberts',NULL,NULL,NULL,NULL,NULL,'Both','1395427104',NULL,'Sample Data','Maria','','Roberts',4,NULL,NULL,NULL,1,NULL,'Dear Maria',1,NULL,'Dear Maria',1,NULL,'Dr. Maria Roberts',NULL,2,'1964-07-16',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (110,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Georgia Arts Association','Georgia Arts Association',NULL,NULL,NULL,'1',NULL,'Both','4117525144',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Georgia Arts Association',NULL,NULL,NULL,0,NULL,NULL,NULL,'Georgia Arts Association',NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (111,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jacobs, Elina','Mrs. Elina Jacobs',NULL,NULL,NULL,NULL,NULL,'Both','3932041193',NULL,'Sample Data','Elina','V','Jacobs',1,NULL,NULL,NULL,1,NULL,'Dear Elina',1,NULL,'Dear Elina',1,NULL,'Mrs. Elina Jacobs',NULL,1,'2000-11-08',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:56'), - (112,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'samuelsj@testmail.co.pl','samuelsj@testmail.co.pl',NULL,NULL,NULL,'1',NULL,'Both','777541720',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear samuelsj@testmail.co.pl',1,NULL,'Dear samuelsj@testmail.co.pl',1,NULL,'samuelsj@testmail.co.pl',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (113,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Friends Family Network','Friends Family Network',NULL,NULL,NULL,'3',NULL,'Both','1975763618',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Friends Family Network',NULL,NULL,NULL,0,NULL,NULL,137,'Friends Family Network',NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (114,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Zope-Yadav, Irvin','Mr. Irvin Zope-Yadav',NULL,NULL,NULL,NULL,NULL,'Both','3766559886',NULL,'Sample Data','Irvin','','Zope-Yadav',3,NULL,NULL,NULL,1,NULL,'Dear Irvin',1,NULL,'Dear Irvin',1,NULL,'Mr. Irvin Zope-Yadav',NULL,2,'1993-03-25',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (115,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Samson, Russell','Mr. Russell Samson II',NULL,NULL,NULL,'5',NULL,'Both','961724057',NULL,'Sample Data','Russell','E','Samson',3,3,NULL,NULL,1,NULL,'Dear Russell',1,NULL,'Dear Russell',1,NULL,'Mr. Russell Samson II',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (116,'Individual',NULL,1,1,0,0,0,0,NULL,NULL,'ÅÄ…chowski, Jay','Mr. Jay ÅÄ…chowski Sr.',NULL,NULL,NULL,NULL,NULL,'Both','2087696859',NULL,'Sample Data','Jay','O','ÅÄ…chowski',3,2,NULL,NULL,1,NULL,'Dear Jay',1,NULL,'Dear Jay',1,NULL,'Mr. Jay ÅÄ…chowski Sr.',NULL,2,'1995-02-24',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (117,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'McReynolds, Russell','Dr. Russell McReynolds',NULL,NULL,NULL,'4',NULL,'Both','3358301263',NULL,'Sample Data','Russell','Z','McReynolds',4,NULL,NULL,NULL,1,NULL,'Dear Russell',1,NULL,'Dear Russell',1,NULL,'Dr. Russell McReynolds',NULL,2,'1974-12-08',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (118,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Wagner, Brittney','Brittney Wagner',NULL,NULL,NULL,NULL,NULL,'Both','1515527179',NULL,'Sample Data','Brittney','','Wagner',NULL,NULL,NULL,NULL,1,NULL,'Dear Brittney',1,NULL,'Dear Brittney',1,NULL,'Brittney Wagner',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (119,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Adams, Betty','Mrs. Betty Adams',NULL,NULL,NULL,NULL,NULL,'Both','2445322404',NULL,'Sample Data','Betty','','Adams',1,NULL,NULL,NULL,1,NULL,'Dear Betty',1,NULL,'Dear Betty',1,NULL,'Mrs. Betty Adams',NULL,NULL,'1996-07-22',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (120,'Individual',NULL,1,0,0,0,1,0,NULL,NULL,'Blackwell, Valene','Ms. Valene Blackwell',NULL,NULL,NULL,'4',NULL,'Both','3670255254',NULL,'Sample Data','Valene','','Blackwell',2,NULL,NULL,NULL,1,NULL,'Dear Valene',1,NULL,'Dear Valene',1,NULL,'Ms. Valene Blackwell',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (121,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'González, Teddy','Mr. Teddy González III',NULL,NULL,NULL,'5',NULL,'Both','2958949801',NULL,'Sample Data','Teddy','O','González',3,4,NULL,NULL,1,NULL,'Dear Teddy',1,NULL,'Dear Teddy',1,NULL,'Mr. Teddy González III',NULL,2,'1958-09-27',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (122,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Adams, Maxwell','Maxwell Adams',NULL,NULL,NULL,'2',NULL,'Both','1901327060',NULL,'Sample Data','Maxwell','','Adams',NULL,NULL,NULL,NULL,1,NULL,'Dear Maxwell',1,NULL,'Dear Maxwell',1,NULL,'Maxwell Adams',NULL,NULL,'1994-12-30',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (123,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Patel, Winford','Mr. Winford Patel',NULL,NULL,NULL,'2',NULL,'Both','2431196191',NULL,'Sample Data','Winford','Z','Patel',3,NULL,NULL,NULL,1,NULL,'Dear Winford',1,NULL,'Dear Winford',1,NULL,'Mr. Winford Patel',NULL,2,'1940-06-12',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (124,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Nalcrest Advocacy Solutions','Nalcrest Advocacy Solutions',NULL,NULL,NULL,'1',NULL,'Both','929458493',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Nalcrest Advocacy Solutions',NULL,NULL,NULL,0,NULL,NULL,16,'Nalcrest Advocacy Solutions',NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (125,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'jacobsr83@example.biz','jacobsr83@example.biz',NULL,NULL,NULL,NULL,NULL,'Both','2496818928',NULL,'Sample Data',NULL,NULL,NULL,4,3,NULL,NULL,1,NULL,'Dear jacobsr83@example.biz',1,NULL,'Dear jacobsr83@example.biz',1,NULL,'jacobsr83@example.biz',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (126,'Individual',NULL,1,0,0,0,1,0,NULL,NULL,'Parker-Jacobs, Margaret','Ms. Margaret Parker-Jacobs',NULL,NULL,NULL,NULL,NULL,'Both','2996520509',NULL,'Sample Data','Margaret','U','Parker-Jacobs',2,NULL,NULL,NULL,1,NULL,'Dear Margaret',1,NULL,'Dear Margaret',1,NULL,'Ms. Margaret Parker-Jacobs',NULL,1,'1975-09-11',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (127,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Barkley, Kandace','Ms. Kandace Barkley',NULL,NULL,NULL,'2',NULL,'Both','3931171378',NULL,'Sample Data','Kandace','','Barkley',2,NULL,NULL,NULL,1,NULL,'Dear Kandace',1,NULL,'Dear Kandace',1,NULL,'Ms. Kandace Barkley',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (128,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Bachman, Winford','Winford Bachman',NULL,NULL,NULL,'5',NULL,'Both','2320333898',NULL,'Sample Data','Winford','Q','Bachman',NULL,NULL,NULL,NULL,1,NULL,'Dear Winford',1,NULL,'Dear Winford',1,NULL,'Winford Bachman',NULL,2,'1935-01-25',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (129,'Individual',NULL,1,0,0,0,1,0,NULL,NULL,'Jensen, Kandace','Dr. Kandace Jensen',NULL,NULL,NULL,'2',NULL,'Both','2339972314',NULL,'Sample Data','Kandace','K','Jensen',4,NULL,NULL,NULL,1,NULL,'Dear Kandace',1,NULL,'Dear Kandace',1,NULL,'Dr. Kandace Jensen',NULL,1,'1985-01-11',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (130,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Wilson, Magan','Magan Wilson',NULL,NULL,NULL,NULL,NULL,'Both','2017556214',NULL,'Sample Data','Magan','T','Wilson',NULL,NULL,NULL,NULL,1,NULL,'Dear Magan',1,NULL,'Dear Magan',1,NULL,'Magan Wilson',NULL,1,'1958-04-08',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (131,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Cruz, Ray','Ray Cruz',NULL,NULL,NULL,NULL,NULL,'Both','1703831601',NULL,'Sample Data','Ray','','Cruz',NULL,NULL,NULL,NULL,1,NULL,'Dear Ray',1,NULL,'Dear Ray',1,NULL,'Ray Cruz',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:56'), - (132,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Wagner, Sanford','Sanford Wagner',NULL,NULL,NULL,NULL,NULL,'Both','3530679728',NULL,'Sample Data','Sanford','S','Wagner',NULL,NULL,NULL,NULL,1,NULL,'Dear Sanford',1,NULL,'Dear Sanford',1,NULL,'Sanford Wagner',NULL,2,'2003-04-20',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (133,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Adams family','Adams family',NULL,NULL,NULL,NULL,NULL,'Both','1515323104',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Adams family',5,NULL,'Dear Adams family',2,NULL,'Adams family',NULL,NULL,NULL,0,NULL,'Adams family',NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (134,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Reynolds-Barkley, Kathleen','Dr. Kathleen Reynolds-Barkley',NULL,NULL,NULL,'4',NULL,'Both','2843442303',NULL,'Sample Data','Kathleen','W','Reynolds-Barkley',4,NULL,NULL,NULL,1,NULL,'Dear Kathleen',1,NULL,'Dear Kathleen',1,NULL,'Dr. Kathleen Reynolds-Barkley',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (135,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Jacobs family','Jacobs family',NULL,NULL,NULL,'3',NULL,'Both','1498986649',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Jacobs family',5,NULL,'Dear Jacobs family',2,NULL,'Jacobs family',NULL,NULL,NULL,0,NULL,'Jacobs family',NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (136,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'gonzlez.j.ashley21@example.co.in','gonzlez.j.ashley21@example.co.in',NULL,NULL,NULL,'5',NULL,'Both','1772062554',NULL,'Sample Data',NULL,NULL,NULL,3,4,NULL,NULL,1,NULL,'Dear gonzlez.j.ashley21@example.co.in',1,NULL,'Dear gonzlez.j.ashley21@example.co.in',1,NULL,'gonzlez.j.ashley21@example.co.in',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (137,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Adams, Merrie','Merrie Adams',NULL,NULL,NULL,NULL,NULL,'Both','2760007401',NULL,'Sample Data','Merrie','C','Adams',NULL,NULL,NULL,NULL,1,NULL,'Dear Merrie',1,NULL,'Dear Merrie',1,NULL,'Merrie Adams',NULL,NULL,'1972-01-12',0,NULL,NULL,NULL,'Friends Family Network',NULL,NULL,113,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (138,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Jensen, Landon','Landon Jensen Jr.',NULL,NULL,NULL,'2',NULL,'Both','901849490',NULL,'Sample Data','Landon','Y','Jensen',NULL,1,NULL,NULL,1,NULL,'Dear Landon',1,NULL,'Dear Landon',1,NULL,'Landon Jensen Jr.',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (139,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Zope-Yadav, Bob','Dr. Bob Zope-Yadav Jr.',NULL,NULL,NULL,'4',NULL,'Both','2680649840',NULL,'Sample Data','Bob','','Zope-Yadav',4,1,NULL,NULL,1,NULL,'Dear Bob',1,NULL,'Dear Bob',1,NULL,'Dr. Bob Zope-Yadav Jr.',NULL,2,'1983-09-18',0,NULL,NULL,NULL,'College Culture Initiative',NULL,NULL,199,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (140,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Blackwell, Andrew','Dr. Andrew Blackwell',NULL,NULL,NULL,NULL,NULL,'Both','2328901373',NULL,'Sample Data','Andrew','','Blackwell',4,NULL,NULL,NULL,1,NULL,'Dear Andrew',1,NULL,'Dear Andrew',1,NULL,'Dr. Andrew Blackwell',NULL,2,'1991-09-17',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (141,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Biddeford Pool Sustainability Solutions','Biddeford Pool Sustainability Solutions',NULL,NULL,NULL,'4',NULL,'Both','1375456371',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Biddeford Pool Sustainability Solutions',NULL,NULL,NULL,0,NULL,NULL,NULL,'Biddeford Pool Sustainability Solutions',NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (142,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Wilson, Irvin','Mr. Irvin Wilson Sr.',NULL,NULL,NULL,NULL,NULL,'Both','441477896',NULL,'Sample Data','Irvin','Q','Wilson',3,2,NULL,NULL,1,NULL,'Dear Irvin',1,NULL,'Dear Irvin',1,NULL,'Mr. Irvin Wilson Sr.',NULL,2,'1974-04-14',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (143,'Household',NULL,0,0,0,0,1,0,NULL,NULL,'Wilson family','Wilson family',NULL,NULL,NULL,'2',NULL,'Both','350510798',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Wilson family',5,NULL,'Dear Wilson family',2,NULL,'Wilson family',NULL,NULL,NULL,0,NULL,'Wilson family',NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (144,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Cruz, Sharyn','Dr. Sharyn Cruz',NULL,NULL,NULL,'1',NULL,'Both','766502178',NULL,'Sample Data','Sharyn','T','Cruz',4,NULL,NULL,NULL,1,NULL,'Dear Sharyn',1,NULL,'Dear Sharyn',1,NULL,'Dr. Sharyn Cruz',NULL,1,'1962-03-24',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (145,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'ashliesamuels8@testing.co.pl','ashliesamuels8@testing.co.pl',NULL,NULL,NULL,NULL,NULL,'Both','2896221711',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear ashliesamuels8@testing.co.pl',1,NULL,'Dear ashliesamuels8@testing.co.pl',1,NULL,'ashliesamuels8@testing.co.pl',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (146,'Individual',NULL,1,1,0,0,0,0,NULL,NULL,'ÅÄ…chowski, Ray','Ray ÅÄ…chowski II',NULL,NULL,NULL,'3',NULL,'Both','1851411219',NULL,'Sample Data','Ray','','ÅÄ…chowski',NULL,3,NULL,NULL,1,NULL,'Dear Ray',1,NULL,'Dear Ray',1,NULL,'Ray ÅÄ…chowski II',NULL,2,'1939-04-21',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (147,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Parker, Jerome','Jerome Parker',NULL,NULL,NULL,NULL,NULL,'Both','2257150068',NULL,'Sample Data','Jerome','V','Parker',NULL,NULL,NULL,NULL,1,NULL,'Dear Jerome',1,NULL,'Dear Jerome',1,NULL,'Jerome Parker',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (148,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Wagner, Sherman','Mr. Sherman Wagner',NULL,NULL,NULL,'4',NULL,'Both','3748346179',NULL,'Sample Data','Sherman','','Wagner',3,NULL,NULL,NULL,1,NULL,'Dear Sherman',1,NULL,'Dear Sherman',1,NULL,'Mr. Sherman Wagner',NULL,NULL,'1956-07-24',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (149,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'González-Cooper, Junko','Junko González-Cooper',NULL,NULL,NULL,NULL,NULL,'Both','2928335900',NULL,'Sample Data','Junko','','González-Cooper',NULL,NULL,NULL,NULL,1,NULL,'Dear Junko',1,NULL,'Dear Junko',1,NULL,'Junko González-Cooper',NULL,NULL,'1997-02-01',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (150,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Cruz, Troy','Troy Cruz',NULL,NULL,NULL,NULL,NULL,'Both','2381537125',NULL,'Sample Data','Troy','','Cruz',NULL,NULL,NULL,NULL,1,NULL,'Dear Troy',1,NULL,'Dear Troy',1,NULL,'Troy Cruz',NULL,NULL,'1944-10-16',1,'2022-08-23',NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:56'), - (151,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'teddys@mymail.co.uk','teddys@mymail.co.uk',NULL,NULL,NULL,'2',NULL,'Both','453304714',NULL,'Sample Data',NULL,NULL,NULL,4,NULL,NULL,NULL,1,NULL,'Dear teddys@mymail.co.uk',1,NULL,'Dear teddys@mymail.co.uk',1,NULL,'teddys@mymail.co.uk',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (152,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Roberts, Iris','Ms. Iris Roberts',NULL,NULL,NULL,NULL,NULL,'Both','1428740139',NULL,'Sample Data','Iris','A','Roberts',2,NULL,NULL,NULL,1,NULL,'Dear Iris',1,NULL,'Dear Iris',1,NULL,'Ms. Iris Roberts',NULL,1,'1987-06-26',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (153,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'ÅÄ…chowski family','ÅÄ…chowski family',NULL,NULL,NULL,'1',NULL,'Both','2407077255',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,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (154,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'cooper.ashlie@spamalot.net','cooper.ashlie@spamalot.net',NULL,NULL,NULL,NULL,NULL,'Both','3343700732',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear cooper.ashlie@spamalot.net',1,NULL,'Dear cooper.ashlie@spamalot.net',1,NULL,'cooper.ashlie@spamalot.net',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (155,'Individual',NULL,1,1,0,0,0,0,NULL,NULL,'Barkley, Merrie','Dr. Merrie Barkley',NULL,NULL,NULL,NULL,NULL,'Both','2327848642',NULL,'Sample Data','Merrie','','Barkley',4,NULL,NULL,NULL,1,NULL,'Dear Merrie',1,NULL,'Dear Merrie',1,NULL,'Dr. Merrie Barkley',NULL,1,'1994-06-07',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (156,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Adams, Merrie','Dr. Merrie Adams',NULL,NULL,NULL,NULL,NULL,'Both','2760007401',NULL,'Sample Data','Merrie','V','Adams',4,NULL,NULL,NULL,1,NULL,'Dear Merrie',1,NULL,'Dear Merrie',1,NULL,'Dr. Merrie Adams',NULL,NULL,'1998-12-06',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (157,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jameson, Lawerence','Lawerence Jameson Jr.',NULL,NULL,NULL,'2',NULL,'Both','745354503',NULL,'Sample Data','Lawerence','S','Jameson',NULL,1,NULL,NULL,1,NULL,'Dear Lawerence',1,NULL,'Dear Lawerence',1,NULL,'Lawerence Jameson Jr.',NULL,2,'1993-02-09',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (158,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jones, Felisha','Felisha Jones',NULL,NULL,NULL,'2',NULL,'Both','2947770839',NULL,'Sample Data','Felisha','','Jones',NULL,NULL,NULL,NULL,1,NULL,'Dear Felisha',1,NULL,'Dear Felisha',1,NULL,'Felisha Jones',NULL,1,'1992-10-23',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (159,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'McReynolds, Roland','Mr. Roland McReynolds',NULL,NULL,NULL,NULL,NULL,'Both','587223413',NULL,'Sample Data','Roland','','McReynolds',3,NULL,NULL,NULL,1,NULL,'Dear Roland',1,NULL,'Dear Roland',1,NULL,'Mr. Roland McReynolds',NULL,2,'1949-05-22',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (160,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Roberts, Rebekah','Rebekah Roberts',NULL,NULL,NULL,'4',NULL,'Both','3047736227',NULL,'Sample Data','Rebekah','','Roberts',NULL,NULL,NULL,NULL,1,NULL,'Dear Rebekah',1,NULL,'Dear Rebekah',1,NULL,'Rebekah Roberts',NULL,1,'1981-01-03',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (161,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Reynolds-Barkley, Tanya','Tanya Reynolds-Barkley',NULL,NULL,NULL,'5',NULL,'Both','114929028',NULL,'Sample Data','Tanya','','Reynolds-Barkley',NULL,NULL,NULL,NULL,1,NULL,'Dear Tanya',1,NULL,'Dear Tanya',1,NULL,'Tanya Reynolds-Barkley',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (162,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Samuels, Brigette','Ms. Brigette Samuels',NULL,NULL,NULL,'1',NULL,'Both','609133167',NULL,'Sample Data','Brigette','R','Samuels',2,NULL,NULL,NULL,1,NULL,'Dear Brigette',1,NULL,'Dear Brigette',1,NULL,'Ms. Brigette Samuels',NULL,1,'1981-09-19',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (163,'Individual',NULL,1,0,0,0,1,0,NULL,NULL,'Wilson, Jina','Jina Wilson',NULL,NULL,NULL,NULL,NULL,'Both','198440520',NULL,'Sample Data','Jina','R','Wilson',NULL,NULL,NULL,NULL,1,NULL,'Dear Jina',1,NULL,'Dear Jina',1,NULL,'Jina Wilson',NULL,1,'1977-04-29',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (164,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Wagner, Brittney','Mrs. Brittney Wagner',NULL,NULL,NULL,'5',NULL,'Both','1515527179',NULL,'Sample Data','Brittney','A','Wagner',1,NULL,NULL,NULL,1,NULL,'Dear Brittney',1,NULL,'Dear Brittney',1,NULL,'Mrs. Brittney Wagner',NULL,1,'1953-08-27',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (165,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'González-Cooper, Sonny','Sonny González-Cooper Jr.',NULL,NULL,NULL,'1',NULL,'Both','1971183360',NULL,'Sample Data','Sonny','V','González-Cooper',NULL,1,NULL,NULL,1,NULL,'Dear Sonny',1,NULL,'Dear Sonny',1,NULL,'Sonny González-Cooper Jr.',NULL,2,'2012-09-05',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (166,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'cooperl@testing.net','cooperl@testing.net',NULL,NULL,NULL,NULL,NULL,'Both','1701863499',NULL,'Sample Data',NULL,NULL,NULL,1,NULL,NULL,NULL,1,NULL,'Dear cooperl@testing.net',1,NULL,'Dear cooperl@testing.net',1,NULL,'cooperl@testing.net',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:56'), - (167,'Organization',NULL,0,0,0,0,1,0,NULL,NULL,'Local Advocacy Services','Local Advocacy Services',NULL,NULL,NULL,'4',NULL,'Both','182397216',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Local Advocacy Services',NULL,NULL,NULL,0,NULL,NULL,89,'Local Advocacy Services',NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (168,'Organization',NULL,0,0,0,0,1,0,NULL,NULL,'Local Poetry Center','Local Poetry Center',NULL,NULL,NULL,'2',NULL,'Both','3263172878',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Local Poetry Center',NULL,NULL,NULL,0,NULL,NULL,58,'Local Poetry Center',NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (169,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Patel, Erik','Erik Patel',NULL,NULL,NULL,'2',NULL,'Both','1879150423',NULL,'Sample Data','Erik','O','Patel',NULL,NULL,NULL,NULL,1,NULL,'Dear Erik',1,NULL,'Dear Erik',1,NULL,'Erik Patel',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (170,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Terrell, Rosario','Dr. Rosario Terrell Sr.',NULL,NULL,NULL,NULL,NULL,'Both','2731752816',NULL,'Sample Data','Rosario','Q','Terrell',4,2,NULL,NULL,1,NULL,'Dear Rosario',1,NULL,'Dear Rosario',1,NULL,'Dr. Rosario Terrell Sr.',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (171,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Wilson, Herminia','Herminia Wilson',NULL,NULL,NULL,'2',NULL,'Both','1306948243',NULL,'Sample Data','Herminia','J','Wilson',NULL,NULL,NULL,NULL,1,NULL,'Dear Herminia',1,NULL,'Dear Herminia',1,NULL,'Herminia Wilson',NULL,1,'1984-07-03',0,NULL,NULL,NULL,'Falls Of Rough Music Fund',NULL,NULL,36,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (172,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'DÃaz, Allan','Allan DÃaz Sr.',NULL,NULL,NULL,NULL,NULL,'Both','3592868398',NULL,'Sample Data','Allan','V','DÃaz',NULL,2,NULL,NULL,1,NULL,'Dear Allan',1,NULL,'Dear Allan',1,NULL,'Allan DÃaz Sr.',NULL,NULL,'1938-02-17',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:56'), - (173,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Bachman family','Bachman family',NULL,NULL,NULL,NULL,NULL,'Both','1714131215',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Bachman family',5,NULL,'Dear Bachman family',2,NULL,'Bachman family',NULL,NULL,NULL,0,NULL,'Bachman family',NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (174,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Wattson-Wilson, Kiara','Kiara Wattson-Wilson',NULL,NULL,NULL,NULL,NULL,'Both','329899994',NULL,'Sample Data','Kiara','K','Wattson-Wilson',NULL,NULL,NULL,NULL,1,NULL,'Dear Kiara',1,NULL,'Dear Kiara',1,NULL,'Kiara Wattson-Wilson',NULL,NULL,'2010-07-15',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (175,'Individual',NULL,0,1,0,0,1,0,NULL,NULL,'jacobs.megan@example.info','jacobs.megan@example.info',NULL,NULL,NULL,'1',NULL,'Both','2696379978',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear jacobs.megan@example.info',1,NULL,'Dear jacobs.megan@example.info',1,NULL,'jacobs.megan@example.info',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (176,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Bachman, Brittney','Brittney Bachman',NULL,NULL,NULL,'1',NULL,'Both','2965404429',NULL,'Sample Data','Brittney','','Bachman',NULL,NULL,NULL,NULL,1,NULL,'Dear Brittney',1,NULL,'Dear Brittney',1,NULL,'Brittney Bachman',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (177,'Household',NULL,1,0,0,0,0,0,NULL,NULL,'McReynolds family','McReynolds family',NULL,NULL,NULL,NULL,NULL,'Both','3032680972',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear McReynolds family',5,NULL,'Dear McReynolds family',2,NULL,'McReynolds family',NULL,NULL,NULL,0,NULL,'McReynolds family',NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (178,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'ÅÄ…chowski, Bernadette','Bernadette ÅÄ…chowski',NULL,NULL,NULL,NULL,NULL,'Both','2108681272',NULL,'Sample Data','Bernadette','S','ÅÄ…chowski',NULL,NULL,NULL,NULL,1,NULL,'Dear Bernadette',1,NULL,'Dear Bernadette',1,NULL,'Bernadette ÅÄ…chowski',NULL,1,'1962-02-03',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (179,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'González, Kandace','Kandace González',NULL,NULL,NULL,'2',NULL,'Both','3701129800',NULL,'Sample Data','Kandace','U','González',NULL,NULL,NULL,NULL,1,NULL,'Dear Kandace',1,NULL,'Dear Kandace',1,NULL,'Kandace González',NULL,1,NULL,0,NULL,NULL,NULL,'El Camino Agriculture Academy',NULL,NULL,43,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (180,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Zope, Lou','Lou Zope',NULL,NULL,NULL,'2',NULL,'Both','2741422295',NULL,'Sample Data','Lou','D','Zope',NULL,NULL,NULL,NULL,1,NULL,'Dear Lou',1,NULL,'Dear Lou',1,NULL,'Lou Zope',NULL,NULL,'1996-07-26',0,NULL,NULL,NULL,'South Dakota Sports Services',NULL,NULL,2,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (181,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Wattson, Allan','Allan Wattson',NULL,NULL,NULL,NULL,NULL,'Both','4271442365',NULL,'Sample Data','Allan','','Wattson',NULL,NULL,NULL,NULL,1,NULL,'Dear Allan',1,NULL,'Dear Allan',1,NULL,'Allan Wattson',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (182,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Terrell, Nicole','Mrs. Nicole Terrell',NULL,NULL,NULL,NULL,NULL,'Both','3338816587',NULL,'Sample Data','Nicole','G','Terrell',1,NULL,NULL,NULL,1,NULL,'Dear Nicole',1,NULL,'Dear Nicole',1,NULL,'Mrs. Nicole Terrell',NULL,1,'1981-02-06',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (183,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Ivanov, Winford','Winford Ivanov Jr.',NULL,NULL,NULL,'2',NULL,'Both','732067195',NULL,'Sample Data','Winford','','Ivanov',NULL,1,NULL,NULL,1,NULL,'Dear Winford',1,NULL,'Dear Winford',1,NULL,'Winford Ivanov Jr.',NULL,2,'1933-09-17',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (184,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Cooper, Jerome','Jerome Cooper',NULL,NULL,NULL,'5',NULL,'Both','2044517102',NULL,'Sample Data','Jerome','','Cooper',NULL,NULL,NULL,NULL,1,NULL,'Dear Jerome',1,NULL,'Dear Jerome',1,NULL,'Jerome Cooper',NULL,NULL,'2000-07-26',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:56'), - (185,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'wilson.b.brent@spamalot.co.pl','wilson.b.brent@spamalot.co.pl',NULL,NULL,NULL,NULL,NULL,'Both','3810940846',NULL,'Sample Data',NULL,NULL,NULL,4,1,NULL,NULL,1,NULL,'Dear wilson.b.brent@spamalot.co.pl',1,NULL,'Dear wilson.b.brent@spamalot.co.pl',1,NULL,'wilson.b.brent@spamalot.co.pl',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:56'), - (186,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Jones, Ashlie','Dr. Ashlie Jones',NULL,NULL,NULL,NULL,NULL,'Both','59271854',NULL,'Sample Data','Ashlie','C','Jones',4,NULL,NULL,NULL,1,NULL,'Dear Ashlie',1,NULL,'Dear Ashlie',1,NULL,'Dr. Ashlie Jones',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (187,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'McReynolds, Eleonor','Eleonor McReynolds',NULL,NULL,NULL,NULL,NULL,'Both','1720935960',NULL,'Sample Data','Eleonor','F','McReynolds',NULL,NULL,NULL,NULL,1,NULL,'Dear Eleonor',1,NULL,'Dear Eleonor',1,NULL,'Eleonor McReynolds',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:56'), - (188,'Individual',NULL,1,1,0,0,0,0,NULL,NULL,'Patel, Alida','Mrs. Alida Patel',NULL,NULL,NULL,'5',NULL,'Both','3742818616',NULL,'Sample Data','Alida','','Patel',1,NULL,NULL,NULL,1,NULL,'Dear Alida',1,NULL,'Dear Alida',1,NULL,'Mrs. Alida Patel',NULL,1,'1976-09-14',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:56'), - (189,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Wattson family','Wattson family',NULL,NULL,NULL,NULL,NULL,'Both','2851339192',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Wattson family',5,NULL,'Dear Wattson family',2,NULL,'Wattson family',NULL,NULL,NULL,0,NULL,'Wattson family',NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (190,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'wagner.kathleen77@spamalot.co.nz','wagner.kathleen77@spamalot.co.nz',NULL,NULL,NULL,NULL,NULL,'Both','4171465314',NULL,'Sample Data',NULL,NULL,NULL,4,NULL,NULL,NULL,1,NULL,'Dear wagner.kathleen77@spamalot.co.nz',1,NULL,'Dear wagner.kathleen77@spamalot.co.nz',1,NULL,'wagner.kathleen77@spamalot.co.nz',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:56'), - (191,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Terrell, Carylon','Dr. Carylon Terrell',NULL,NULL,NULL,'3',NULL,'Both','3327689936',NULL,'Sample Data','Carylon','Y','Terrell',4,NULL,NULL,NULL,1,NULL,'Dear Carylon',1,NULL,'Dear Carylon',1,NULL,'Dr. Carylon Terrell',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (192,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Global Culture School','Global Culture School',NULL,NULL,NULL,'4',NULL,'Both','655016398',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Global Culture School',NULL,NULL,NULL,0,NULL,NULL,99,'Global Culture School',NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (193,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Samuels, Angelika','Angelika Samuels',NULL,NULL,NULL,NULL,NULL,'Both','3920942088',NULL,'Sample Data','Angelika','K','Samuels',NULL,NULL,NULL,NULL,1,NULL,'Dear Angelika',1,NULL,'Dear Angelika',1,NULL,'Angelika Samuels',NULL,NULL,'1993-07-04',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (194,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jacobs, Errol','Errol Jacobs',NULL,NULL,NULL,'5',NULL,'Both','759238184',NULL,'Sample Data','Errol','U','Jacobs',NULL,NULL,NULL,NULL,1,NULL,'Dear Errol',1,NULL,'Dear Errol',1,NULL,'Errol Jacobs',NULL,NULL,'1988-03-07',0,NULL,NULL,NULL,'Community Legal Partnership',NULL,NULL,64,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (195,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'tanyay@example.co.uk','tanyay@example.co.uk',NULL,NULL,NULL,'2',NULL,'Both','2146704064',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear tanyay@example.co.uk',1,NULL,'Dear tanyay@example.co.uk',1,NULL,'tanyay@example.co.uk',NULL,NULL,NULL,0,NULL,NULL,NULL,'Proctor Music Academy',NULL,NULL,49,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (196,'Individual',NULL,1,0,0,0,1,0,NULL,NULL,'Müller, Lashawnda','Dr. Lashawnda Müller',NULL,NULL,NULL,NULL,NULL,'Both','522759244',NULL,'Sample Data','Lashawnda','J','Müller',4,NULL,NULL,NULL,1,NULL,'Dear Lashawnda',1,NULL,'Dear Lashawnda',1,NULL,'Dr. Lashawnda Müller',NULL,1,'1997-12-30',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (197,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Smith, Miguel','Miguel Smith Jr.',NULL,NULL,NULL,NULL,NULL,'Both','3498855331',NULL,'Sample Data','Miguel','D','Smith',NULL,1,NULL,NULL,1,NULL,'Dear Miguel',1,NULL,'Dear Miguel',1,NULL,'Miguel Smith Jr.',NULL,NULL,'1988-12-14',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:56'), - (198,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jones, Ashlie','Dr. Ashlie Jones',NULL,NULL,NULL,NULL,NULL,'Both','59271854',NULL,'Sample Data','Ashlie','','Jones',4,NULL,NULL,NULL,1,NULL,'Dear Ashlie',1,NULL,'Dear Ashlie',1,NULL,'Dr. Ashlie Jones',NULL,1,NULL,0,NULL,NULL,NULL,'Rural Poetry School',NULL,NULL,15,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (199,'Organization',NULL,1,0,0,0,0,0,NULL,NULL,'College Culture Initiative','College Culture Initiative',NULL,NULL,NULL,'4',NULL,'Both','687307342',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'College Culture Initiative',NULL,NULL,NULL,0,NULL,NULL,139,'College Culture Initiative',NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (200,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Terrell family','Terrell family',NULL,NULL,NULL,'5',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,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (201,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Cruz, Rodrigo','Dr. Rodrigo Cruz',NULL,NULL,NULL,'1',NULL,'Both','1681182976',NULL,'Sample Data','Rodrigo','X','Cruz',4,NULL,NULL,NULL,1,NULL,'Dear Rodrigo',1,NULL,'Dear Rodrigo',1,NULL,'Dr. Rodrigo Cruz',NULL,2,'1953-09-24',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:56','2022-12-07 16:48:57'), - (202,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Lee, Jenny','Jenny Lee',NULL,NULL,NULL,NULL,'en_US','Both','866a39bd346c0d92d337d4df4235eba7',NULL,NULL,'Jenny',NULL,'Lee',NULL,NULL,NULL,1,1,NULL,'Dear Jenny',1,NULL,'Dear Jenny',1,NULL,'Jenny Lee','Volunteer coordinator',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-12-07 16:48:58','2022-12-07 16:48:58'); + (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,'2023-01-25 00:10:11'), + (2,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'mcreynolds.justina43@mymail.co.nz','mcreynolds.justina43@mymail.co.nz',NULL,NULL,NULL,NULL,NULL,'Both','1492889533',NULL,'Sample Data',NULL,NULL,NULL,2,NULL,NULL,NULL,1,NULL,'Dear mcreynolds.justina43@mymail.co.nz',1,NULL,'Dear mcreynolds.justina43@mymail.co.nz',1,NULL,'mcreynolds.justina43@mymail.co.nz',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:17'), + (3,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'DÃaz, Kenny','Kenny DÃaz',NULL,NULL,NULL,NULL,NULL,'Both','3864119395',NULL,'Sample Data','Kenny','','DÃaz',NULL,NULL,NULL,NULL,1,NULL,'Dear Kenny',1,NULL,'Dear Kenny',1,NULL,'Kenny DÃaz',NULL,2,'2014-09-09',0,NULL,NULL,NULL,'Minnesota Health Systems',NULL,NULL,163,0,'2023-01-25 00:10:16','2023-01-25 00:10:18'), + (4,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Bachman, Eleonor','Eleonor Bachman',NULL,NULL,NULL,NULL,NULL,'Both','711175679',NULL,'Sample Data','Eleonor','','Bachman',NULL,NULL,NULL,NULL,1,NULL,'Dear Eleonor',1,NULL,'Dear Eleonor',1,NULL,'Eleonor Bachman',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:17'), + (5,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Wattson, Damaris','Dr. Damaris Wattson',NULL,NULL,NULL,'4',NULL,'Both','3534175106',NULL,'Sample Data','Damaris','U','Wattson',4,NULL,NULL,NULL,1,NULL,'Dear Damaris',1,NULL,'Dear Damaris',1,NULL,'Dr. Damaris Wattson',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:18'), + (6,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Grant, Scott','Mr. Scott Grant',NULL,NULL,NULL,NULL,NULL,'Both','501213138',NULL,'Sample Data','Scott','','Grant',3,NULL,NULL,NULL,1,NULL,'Dear Scott',1,NULL,'Dear Scott',1,NULL,'Mr. Scott Grant',NULL,2,'1959-12-05',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:17'), + (7,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Jameson, Elbert','Elbert Jameson',NULL,NULL,NULL,NULL,NULL,'Both','3057069270',NULL,'Sample Data','Elbert','','Jameson',NULL,NULL,NULL,NULL,1,NULL,'Dear Elbert',1,NULL,'Dear Elbert',1,NULL,'Elbert Jameson',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:18'), + (8,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Grant, Elizabeth','Elizabeth Grant',NULL,NULL,NULL,'5',NULL,'Both','1144773398',NULL,'Sample Data','Elizabeth','J','Grant',NULL,NULL,NULL,NULL,1,NULL,'Dear Elizabeth',1,NULL,'Dear Elizabeth',1,NULL,'Elizabeth Grant',NULL,1,'1963-12-21',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:17'), + (9,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Wilson-Dimitrov, Jina','Mrs. Jina Wilson-Dimitrov',NULL,NULL,NULL,NULL,NULL,'Both','415420635',NULL,'Sample Data','Jina','N','Wilson-Dimitrov',1,NULL,NULL,NULL,1,NULL,'Dear Jina',1,NULL,'Dear Jina',1,NULL,'Mrs. Jina Wilson-Dimitrov',NULL,NULL,'1993-09-26',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:18'), + (10,'Individual',NULL,1,1,0,0,0,0,NULL,NULL,'González-Jameson-Dimitrov, Angelika','Angelika González-Jameson-Dimitrov',NULL,NULL,NULL,'4',NULL,'Both','2652013132',NULL,'Sample Data','Angelika','V','González-Jameson-Dimitrov',NULL,NULL,NULL,NULL,1,NULL,'Dear Angelika',1,NULL,'Dear Angelika',1,NULL,'Angelika González-Jameson-Dimitrov',NULL,NULL,'1979-04-18',0,NULL,NULL,NULL,'Laceyville Arts Network',NULL,NULL,17,0,'2023-01-25 00:10:16','2023-01-25 00:10:18'), + (11,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'DÃaz, Elizabeth','Elizabeth DÃaz',NULL,NULL,NULL,NULL,NULL,'Both','1884711539',NULL,'Sample Data','Elizabeth','','DÃaz',NULL,NULL,NULL,NULL,1,NULL,'Dear Elizabeth',1,NULL,'Dear Elizabeth',1,NULL,'Elizabeth DÃaz',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:18'), + (12,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Terry, Magan','Magan Terry',NULL,NULL,NULL,NULL,NULL,'Both','1306605687',NULL,'Sample Data','Magan','','Terry',NULL,NULL,NULL,NULL,1,NULL,'Dear Magan',1,NULL,'Dear Magan',1,NULL,'Magan Terry',NULL,NULL,'2019-04-21',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:18'), + (13,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Yadav, Mei','Mei Yadav',NULL,NULL,NULL,NULL,NULL,'Both','3106759273',NULL,'Sample Data','Mei','R','Yadav',NULL,NULL,NULL,NULL,1,NULL,'Dear Mei',1,NULL,'Dear Mei',1,NULL,'Mei Yadav',NULL,1,'1977-08-09',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:17'), + (14,'Individual',NULL,1,1,0,0,0,0,NULL,NULL,'Parker, Billy','Billy Parker Sr.',NULL,NULL,NULL,'2',NULL,'Both','137440558',NULL,'Sample Data','Billy','W','Parker',NULL,2,NULL,NULL,1,NULL,'Dear Billy',1,NULL,'Dear Billy',1,NULL,'Billy Parker Sr.',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:17'), + (15,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Terry, Kiara','Mrs. Kiara Terry',NULL,NULL,NULL,'3',NULL,'Both','4073244041',NULL,'Sample Data','Kiara','J','Terry',1,NULL,NULL,NULL,1,NULL,'Dear Kiara',1,NULL,'Dear Kiara',1,NULL,'Mrs. Kiara Terry',NULL,NULL,'1990-06-10',0,NULL,NULL,NULL,'Louisiana Technology Partnership',NULL,NULL,126,0,'2023-01-25 00:10:16','2023-01-25 00:10:18'), + (16,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Zope, Margaret','Margaret Zope',NULL,NULL,NULL,'3',NULL,'Both','3069258940',NULL,'Sample Data','Margaret','','Zope',NULL,NULL,NULL,NULL,1,NULL,'Dear Margaret',1,NULL,'Dear Margaret',1,NULL,'Margaret Zope',NULL,NULL,'2007-01-06',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:18'), + (17,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Laceyville Arts Network','Laceyville Arts Network',NULL,NULL,NULL,'2',NULL,'Both','2676676246',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Laceyville Arts Network',NULL,NULL,NULL,0,NULL,NULL,10,'Laceyville Arts Network',NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:18'), + (18,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Reynolds-Zope, Ashley','Mr. Ashley Reynolds-Zope III',NULL,NULL,NULL,'1',NULL,'Both','2818170299',NULL,'Sample Data','Ashley','R','Reynolds-Zope',3,4,NULL,NULL,1,NULL,'Dear Ashley',1,NULL,'Dear Ashley',1,NULL,'Mr. Ashley Reynolds-Zope III',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:18'), + (19,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Terry, Sonny','Sonny Terry III',NULL,NULL,NULL,'2',NULL,'Both','2037695520',NULL,'Sample Data','Sonny','G','Terry',NULL,4,NULL,NULL,1,NULL,'Dear Sonny',1,NULL,'Dear Sonny',1,NULL,'Sonny Terry III',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:18'), + (20,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Jensen, Daren','Daren Jensen III',NULL,NULL,NULL,NULL,NULL,'Both','817039458',NULL,'Sample Data','Daren','L','Jensen',NULL,4,NULL,NULL,1,NULL,'Dear Daren',1,NULL,'Dear Daren',1,NULL,'Daren Jensen III',NULL,2,'1984-12-25',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:18'), + (21,'Individual',NULL,0,1,0,0,1,0,NULL,NULL,'Smith, Iris','Ms. Iris Smith',NULL,NULL,NULL,'1',NULL,'Both','3014958774',NULL,'Sample Data','Iris','','Smith',2,NULL,NULL,NULL,1,NULL,'Dear Iris',1,NULL,'Dear Iris',1,NULL,'Ms. Iris Smith',NULL,1,'1967-12-11',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:17'), + (22,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'DÃaz, Russell','Russell DÃaz III',NULL,NULL,NULL,'4',NULL,'Both','3377844851',NULL,'Sample Data','Russell','Y','DÃaz',NULL,4,NULL,NULL,1,NULL,'Dear Russell',1,NULL,'Dear Russell',1,NULL,'Russell DÃaz III',NULL,2,'1998-12-02',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:18'), + (23,'Individual',NULL,1,0,0,0,1,0,NULL,NULL,'Roberts, Ivey','Ivey Roberts',NULL,NULL,NULL,'1',NULL,'Both','507631333',NULL,'Sample Data','Ivey','','Roberts',NULL,NULL,NULL,NULL,1,NULL,'Dear Ivey',1,NULL,'Dear Ivey',1,NULL,'Ivey Roberts',NULL,1,'1993-11-28',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:17'), + (24,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Blackwell family','Blackwell family',NULL,NULL,NULL,NULL,NULL,'Both','3218641510',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Blackwell family',5,NULL,'Dear Blackwell family',2,NULL,'Blackwell family',NULL,NULL,NULL,0,NULL,'Blackwell family',NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:18'), + (25,'Household',NULL,0,0,0,0,1,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,'2023-01-25 00:10:16','2023-01-25 00:10:18'), + (26,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Terry, Errol','Errol Terry III',NULL,NULL,NULL,'5',NULL,'Both','1432200958',NULL,'Sample Data','Errol','O','Terry',NULL,4,NULL,NULL,1,NULL,'Dear Errol',1,NULL,'Dear Errol',1,NULL,'Errol Terry III',NULL,2,'1994-03-07',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:18'), + (27,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Cooper-Jones, Arlyne','Dr. Arlyne Cooper-Jones',NULL,NULL,NULL,NULL,NULL,'Both','3029962320',NULL,'Sample Data','Arlyne','N','Cooper-Jones',4,NULL,NULL,NULL,1,NULL,'Dear Arlyne',1,NULL,'Dear Arlyne',1,NULL,'Dr. Arlyne Cooper-Jones',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:18'), + (28,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Cooper-Nielsen, Winford','Mr. Winford Cooper-Nielsen Sr.',NULL,NULL,NULL,NULL,NULL,'Both','3108711559',NULL,'Sample Data','Winford','','Cooper-Nielsen',3,2,NULL,NULL,1,NULL,'Dear Winford',1,NULL,'Dear Winford',1,NULL,'Mr. Winford Cooper-Nielsen Sr.',NULL,2,'1986-10-26',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:18'), + (29,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Adams, Tanya','Tanya Adams',NULL,NULL,NULL,NULL,NULL,'Both','1181850988',NULL,'Sample Data','Tanya','','Adams',NULL,NULL,NULL,NULL,1,NULL,'Dear Tanya',1,NULL,'Dear Tanya',1,NULL,'Tanya Adams',NULL,1,'1992-08-23',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:18'), + (30,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Robertson, Brittney','Brittney Robertson',NULL,NULL,NULL,NULL,NULL,'Both','1961955547',NULL,'Sample Data','Brittney','K','Robertson',NULL,NULL,NULL,NULL,1,NULL,'Dear Brittney',1,NULL,'Dear Brittney',1,NULL,'Brittney Robertson',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:17'), + (31,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Jensen, Teddy','Teddy Jensen Sr.',NULL,NULL,NULL,'3',NULL,'Both','1565680627',NULL,'Sample Data','Teddy','','Jensen',NULL,2,NULL,NULL,1,NULL,'Dear Teddy',1,NULL,'Dear Teddy',1,NULL,'Teddy Jensen Sr.',NULL,2,'1961-09-16',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:17'), + (32,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Samuels, Miguel','Miguel Samuels',NULL,NULL,NULL,NULL,NULL,'Both','1633688376',NULL,'Sample Data','Miguel','','Samuels',NULL,NULL,NULL,NULL,1,NULL,'Dear Miguel',1,NULL,'Dear Miguel',1,NULL,'Miguel Samuels',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:18'), + (33,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Blackwell, Troy','Mr. Troy Blackwell',NULL,NULL,NULL,NULL,NULL,'Both','1289798221',NULL,'Sample Data','Troy','','Blackwell',3,NULL,NULL,NULL,1,NULL,'Dear Troy',1,NULL,'Dear Troy',1,NULL,'Mr. Troy Blackwell',NULL,2,'1991-09-08',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:18'), + (34,'Household',NULL,0,0,0,0,1,0,NULL,NULL,'Prentice family','Prentice family',NULL,NULL,NULL,'4',NULL,'Both','3313623671',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Prentice family',5,NULL,'Dear Prentice family',2,NULL,'Prentice family',NULL,NULL,NULL,0,NULL,'Prentice family',NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:18'), + (35,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Müller, Jed','Jed Müller',NULL,NULL,NULL,NULL,NULL,'Both','1353975541',NULL,'Sample Data','Jed','','Müller',NULL,NULL,NULL,NULL,1,NULL,'Dear Jed',1,NULL,'Dear Jed',1,NULL,'Jed Müller',NULL,NULL,'2007-03-04',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:18'), + (36,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Deforest, Teresa','Teresa Deforest',NULL,NULL,NULL,'1',NULL,'Both','1966517913',NULL,'Sample Data','Teresa','L','Deforest',NULL,NULL,NULL,NULL,1,NULL,'Dear Teresa',1,NULL,'Dear Teresa',1,NULL,'Teresa Deforest',NULL,NULL,'1975-08-30',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:17'), + (37,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Wilson, Norris','Norris Wilson Jr.',NULL,NULL,NULL,'1',NULL,'Both','1089092056',NULL,'Sample Data','Norris','','Wilson',NULL,1,NULL,NULL,1,NULL,'Dear Norris',1,NULL,'Dear Norris',1,NULL,'Norris Wilson Jr.',NULL,NULL,'1967-04-10',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:17'), + (38,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Dimitrov, Winford','Winford Dimitrov II',NULL,NULL,NULL,NULL,NULL,'Both','1833902224',NULL,'Sample Data','Winford','S','Dimitrov',NULL,3,NULL,NULL,1,NULL,'Dear Winford',1,NULL,'Dear Winford',1,NULL,'Winford Dimitrov II',NULL,NULL,'1962-05-21',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:18'), + (39,'Individual',NULL,0,1,0,0,1,0,NULL,NULL,'Bachman, Teresa','Teresa Bachman',NULL,NULL,NULL,NULL,NULL,'Both','519766795',NULL,'Sample Data','Teresa','','Bachman',NULL,NULL,NULL,NULL,1,NULL,'Dear Teresa',1,NULL,'Dear Teresa',1,NULL,'Teresa Bachman',NULL,NULL,'1953-10-21',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:17'), + (40,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Wagner, Roland','Roland Wagner Jr.',NULL,NULL,NULL,'3',NULL,'Both','1173293758',NULL,'Sample Data','Roland','','Wagner',NULL,1,NULL,NULL,1,NULL,'Dear Roland',1,NULL,'Dear Roland',1,NULL,'Roland Wagner Jr.',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:18'), + (41,'Individual',NULL,0,1,0,0,1,0,NULL,NULL,'Cooper, Magan','Magan Cooper',NULL,NULL,NULL,'5',NULL,'Both','791506082',NULL,'Sample Data','Magan','Y','Cooper',NULL,NULL,NULL,NULL,1,NULL,'Dear Magan',1,NULL,'Dear Magan',1,NULL,'Magan Cooper',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:17'), + (42,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Jameson, Kiara','Kiara Jameson',NULL,NULL,NULL,'3',NULL,'Both','1442754095',NULL,'Sample Data','Kiara','I','Jameson',NULL,NULL,NULL,NULL,1,NULL,'Dear Kiara',1,NULL,'Dear Kiara',1,NULL,'Kiara Jameson',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:18'), + (43,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jones, Bernadette','Ms. Bernadette Jones',NULL,NULL,NULL,NULL,NULL,'Both','357713234',NULL,'Sample Data','Bernadette','O','Jones',2,NULL,NULL,NULL,1,NULL,'Dear Bernadette',1,NULL,'Dear Bernadette',1,NULL,'Ms. Bernadette Jones',NULL,NULL,'1990-01-18',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:17'), + (44,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'brigetteb@fishmail.co.uk','brigetteb@fishmail.co.uk',NULL,NULL,NULL,NULL,NULL,'Both','2574622634',NULL,'Sample Data',NULL,NULL,NULL,1,NULL,NULL,NULL,1,NULL,'Dear brigetteb@fishmail.co.uk',1,NULL,'Dear brigetteb@fishmail.co.uk',1,NULL,'brigetteb@fishmail.co.uk',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:18'), + (45,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'ÅÄ…chowski, Ashley','Mrs. Ashley ÅÄ…chowski',NULL,NULL,NULL,'4',NULL,'Both','2118847074',NULL,'Sample Data','Ashley','','ÅÄ…chowski',1,NULL,NULL,NULL,1,NULL,'Dear Ashley',1,NULL,'Dear Ashley',1,NULL,'Mrs. Ashley ÅÄ…chowski',NULL,NULL,NULL,0,NULL,NULL,NULL,'Progressive Environmental Fund',NULL,NULL,146,0,'2023-01-25 00:10:16','2023-01-25 00:10:18'), + (46,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Cooper, Elbert','Elbert Cooper III',NULL,NULL,NULL,'3',NULL,'Both','2147415663',NULL,'Sample Data','Elbert','','Cooper',NULL,4,NULL,NULL,1,NULL,'Dear Elbert',1,NULL,'Dear Elbert',1,NULL,'Elbert Cooper III',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:17'), + (47,'Individual',NULL,1,0,0,0,1,0,NULL,NULL,'Cooper, Allan','Allan Cooper',NULL,NULL,NULL,'2',NULL,'Both','350402207',NULL,'Sample Data','Allan','R','Cooper',NULL,NULL,NULL,NULL,1,NULL,'Dear Allan',1,NULL,'Dear Allan',1,NULL,'Allan Cooper',NULL,2,'1968-12-18',0,NULL,NULL,NULL,'Los Indios Poetry Trust',NULL,NULL,184,0,'2023-01-25 00:10:16','2023-01-25 00:10:18'), + (48,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Jameson family','Jameson family',NULL,NULL,NULL,NULL,NULL,'Both','2255649769',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Jameson family',5,NULL,'Dear Jameson family',2,NULL,'Jameson family',NULL,NULL,NULL,0,NULL,'Jameson family',NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:18'), + (49,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'cooper-nielsen.irvin@sample.co.uk','cooper-nielsen.irvin@sample.co.uk',NULL,NULL,NULL,'3',NULL,'Both','1192927790',NULL,'Sample Data',NULL,NULL,NULL,NULL,2,NULL,NULL,1,NULL,'Dear cooper-nielsen.irvin@sample.co.uk',1,NULL,'Dear cooper-nielsen.irvin@sample.co.uk',1,NULL,'cooper-nielsen.irvin@sample.co.uk',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:18'), + (50,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Grant, Merrie','Mrs. Merrie Grant',NULL,NULL,NULL,NULL,NULL,'Both','1746149346',NULL,'Sample Data','Merrie','O','Grant',1,NULL,NULL,NULL,1,NULL,'Dear Merrie',1,NULL,'Dear Merrie',1,NULL,'Mrs. Merrie Grant',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:17'), + (51,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Prentice, Teresa','Teresa Prentice',NULL,NULL,NULL,NULL,NULL,'Both','1082544246',NULL,'Sample Data','Teresa','M','Prentice',NULL,NULL,NULL,NULL,1,NULL,'Dear Teresa',1,NULL,'Dear Teresa',1,NULL,'Teresa Prentice',NULL,1,'1965-01-11',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:17'), + (52,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Zope, Elbert','Elbert Zope',NULL,NULL,NULL,'5',NULL,'Both','2036957323',NULL,'Sample Data','Elbert','','Zope',NULL,NULL,NULL,NULL,1,NULL,'Dear Elbert',1,NULL,'Dear Elbert',1,NULL,'Elbert Zope',NULL,2,'1985-06-30',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:17'), + (53,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jameson, Scott','Dr. Scott Jameson II',NULL,NULL,NULL,'4',NULL,'Both','1540029551',NULL,'Sample Data','Scott','','Jameson',4,3,NULL,NULL,1,NULL,'Dear Scott',1,NULL,'Dear Scott',1,NULL,'Dr. Scott Jameson II',NULL,2,'1986-08-16',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:17'), + (54,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Dimitrov, Eleonor','Ms. Eleonor Dimitrov',NULL,NULL,NULL,NULL,NULL,'Both','3445748005',NULL,'Sample Data','Eleonor','B','Dimitrov',2,NULL,NULL,NULL,1,NULL,'Dear Eleonor',1,NULL,'Dear Eleonor',1,NULL,'Ms. Eleonor Dimitrov',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:17'), + (55,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Zope-Roberts, Jackson','Dr. Jackson Zope-Roberts',NULL,NULL,NULL,'2',NULL,'Both','93828977',NULL,'Sample Data','Jackson','R','Zope-Roberts',4,NULL,NULL,NULL,1,NULL,'Dear Jackson',1,NULL,'Dear Jackson',1,NULL,'Dr. Jackson Zope-Roberts',NULL,2,'1991-02-03',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:18'), + (56,'Household',NULL,0,1,0,0,0,0,NULL,NULL,'Adams family','Adams family',NULL,NULL,NULL,NULL,NULL,'Both','1515323104',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Adams family',5,NULL,'Dear Adams family',2,NULL,'Adams family',NULL,NULL,NULL,0,NULL,'Adams family',NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:18'), + (57,'Individual',NULL,0,1,0,0,1,0,NULL,NULL,'Dimitrov, Rolando','Rolando Dimitrov III',NULL,NULL,NULL,NULL,NULL,'Both','2226225563',NULL,'Sample Data','Rolando','','Dimitrov',NULL,4,NULL,NULL,1,NULL,'Dear Rolando',1,NULL,'Dear Rolando',1,NULL,'Rolando Dimitrov III',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:18'), + (58,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'González family','González family',NULL,NULL,NULL,'3',NULL,'Both','3263723758',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear González family',5,NULL,'Dear González family',2,NULL,'González family',NULL,NULL,NULL,0,NULL,'González family',NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:18'), + (59,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Washington Wellness Systems','Washington Wellness Systems',NULL,NULL,NULL,'2',NULL,'Both','442989631',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Washington Wellness Systems',NULL,NULL,NULL,0,NULL,NULL,NULL,'Washington Wellness Systems',NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:18'), + (60,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Müller family','Müller family',NULL,NULL,NULL,NULL,NULL,'Both','1144797465',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Müller family',5,NULL,'Dear Müller family',2,NULL,'Müller family',NULL,NULL,NULL,0,NULL,'Müller family',NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:18'), + (61,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Samuels, Santina','Santina Samuels',NULL,NULL,NULL,'1',NULL,'Both','2514918858',NULL,'Sample Data','Santina','M','Samuels',NULL,NULL,NULL,NULL,1,NULL,'Dear Santina',1,NULL,'Dear Santina',1,NULL,'Santina Samuels',NULL,1,'2008-01-14',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:18'), + (62,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'kaceycruz-gonzlez85@example.co.uk','kaceycruz-gonzlez85@example.co.uk',NULL,NULL,NULL,NULL,NULL,'Both','2020295246',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear kaceycruz-gonzlez85@example.co.uk',1,NULL,'Dear kaceycruz-gonzlez85@example.co.uk',1,NULL,'kaceycruz-gonzlez85@example.co.uk',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:18'), + (63,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Terry, Allan','Allan Terry',NULL,NULL,NULL,'4',NULL,'Both','1982784074',NULL,'Sample Data','Allan','Z','Terry',NULL,NULL,NULL,NULL,1,NULL,'Dear Allan',1,NULL,'Dear Allan',1,NULL,'Allan Terry',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:17'), + (64,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'González, Maxwell','Maxwell González',NULL,NULL,NULL,'3',NULL,'Both','3943391638',NULL,'Sample Data','Maxwell','','González',NULL,NULL,NULL,NULL,1,NULL,'Dear Maxwell',1,NULL,'Dear Maxwell',1,NULL,'Maxwell González',NULL,NULL,'2019-04-04',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:18'), + (65,'Household',NULL,0,0,0,0,1,0,NULL,NULL,'Jameson-Dimitrov family','Jameson-Dimitrov family',NULL,NULL,NULL,'1',NULL,'Both','4131518976',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Jameson-Dimitrov family',5,NULL,'Dear Jameson-Dimitrov family',2,NULL,'Jameson-Dimitrov family',NULL,NULL,NULL,0,NULL,'Jameson-Dimitrov family',NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:18'), + (66,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Wattson family','Wattson family',NULL,NULL,NULL,NULL,NULL,'Both','2851339192',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Wattson family',5,NULL,'Dear Wattson family',2,NULL,'Wattson family',NULL,NULL,NULL,0,NULL,'Wattson family',NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:18'), + (67,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Blackwell, Allan','Allan Blackwell II',NULL,NULL,NULL,'1',NULL,'Both','3904004195',NULL,'Sample Data','Allan','','Blackwell',NULL,3,NULL,NULL,1,NULL,'Dear Allan',1,NULL,'Dear Allan',1,NULL,'Allan Blackwell II',NULL,2,'1971-06-07',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:18'), + (68,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Jameson, Alida','Mrs. Alida Jameson',NULL,NULL,NULL,'5',NULL,'Both','974889683',NULL,'Sample Data','Alida','P','Jameson',1,NULL,NULL,NULL,1,NULL,'Dear Alida',1,NULL,'Dear Alida',1,NULL,'Mrs. Alida Jameson',NULL,NULL,'1982-06-02',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:18'), + (69,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'terry.andrew36@testing.net','terry.andrew36@testing.net',NULL,NULL,NULL,'5',NULL,'Both','3865868',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear terry.andrew36@testing.net',1,NULL,'Dear terry.andrew36@testing.net',1,NULL,'terry.andrew36@testing.net',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:18'), + (70,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Zope-Roberts, Scarlet','Scarlet Zope-Roberts',NULL,NULL,NULL,NULL,NULL,'Both','4248793519',NULL,'Sample Data','Scarlet','','Zope-Roberts',NULL,NULL,NULL,NULL,1,NULL,'Dear Scarlet',1,NULL,'Dear Scarlet',1,NULL,'Scarlet Zope-Roberts',NULL,1,'2014-01-05',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:18'), + (71,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'wilsons50@testing.co.uk','wilsons50@testing.co.uk',NULL,NULL,NULL,'4',NULL,'Both','785848789',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear wilsons50@testing.co.uk',1,NULL,'Dear wilsons50@testing.co.uk',1,NULL,'wilsons50@testing.co.uk',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:17'), + (72,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Müller, Clint','Clint Müller',NULL,NULL,NULL,NULL,NULL,'Both','363314978',NULL,'Sample Data','Clint','K','Müller',NULL,NULL,NULL,NULL,1,NULL,'Dear Clint',1,NULL,'Dear Clint',1,NULL,'Clint Müller',NULL,2,'1986-10-18',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:17'), + (73,'Individual',NULL,1,1,0,0,1,0,NULL,NULL,'Ivanov, Scarlet','Ms. Scarlet Ivanov',NULL,NULL,NULL,'2',NULL,'Both','959385532',NULL,'Sample Data','Scarlet','I','Ivanov',2,NULL,NULL,NULL,1,NULL,'Dear Scarlet',1,NULL,'Dear Scarlet',1,NULL,'Ms. Scarlet Ivanov',NULL,1,'1942-01-15',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:17'), + (74,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Jacobs, Teddy','Teddy Jacobs Sr.',NULL,NULL,NULL,'5',NULL,'Both','730676702',NULL,'Sample Data','Teddy','','Jacobs',NULL,2,NULL,NULL,1,NULL,'Dear Teddy',1,NULL,'Dear Teddy',1,NULL,'Teddy Jacobs Sr.',NULL,2,'1987-02-02',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:17'), + (75,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Ivanov, Josefa','Josefa Ivanov',NULL,NULL,NULL,NULL,NULL,'Both','3691296401',NULL,'Sample Data','Josefa','','Ivanov',NULL,NULL,NULL,NULL,1,NULL,'Dear Josefa',1,NULL,'Dear Josefa',1,NULL,'Josefa Ivanov',NULL,1,'1986-05-31',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:17'), + (76,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jensen, BrzÄ™czysÅ‚aw','BrzÄ™czysÅ‚aw Jensen',NULL,NULL,NULL,NULL,NULL,'Both','3109527605',NULL,'Sample Data','BrzÄ™czysÅ‚aw','N','Jensen',NULL,NULL,NULL,NULL,1,NULL,'Dear BrzÄ™czysÅ‚aw',1,NULL,'Dear BrzÄ™czysÅ‚aw',1,NULL,'BrzÄ™czysÅ‚aw Jensen',NULL,NULL,'1984-04-24',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:18'), + (77,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Whitfield Agriculture Systems','Whitfield Agriculture Systems',NULL,NULL,NULL,'2',NULL,'Both','2051846250',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Whitfield Agriculture Systems',NULL,NULL,NULL,0,NULL,NULL,142,'Whitfield Agriculture Systems',NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:18'), + (78,'Organization',NULL,0,0,0,0,1,0,NULL,NULL,'College Peace Center','College Peace Center',NULL,NULL,NULL,NULL,NULL,'Both','1717841620',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'College Peace Center',NULL,NULL,NULL,0,NULL,NULL,NULL,'College Peace Center',NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:18'), + (79,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Parker, Kiara','Ms. Kiara Parker',NULL,NULL,NULL,'1',NULL,'Both','3402922885',NULL,'Sample Data','Kiara','','Parker',2,NULL,NULL,NULL,1,NULL,'Dear Kiara',1,NULL,'Dear Kiara',1,NULL,'Ms. Kiara Parker',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:17'), + (80,'Household',NULL,1,0,0,0,0,0,NULL,NULL,'Terry family','Terry family',NULL,NULL,NULL,NULL,NULL,'Both','558108751',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Terry family',5,NULL,'Dear Terry family',2,NULL,'Terry family',NULL,NULL,NULL,0,NULL,'Terry family',NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:18'), + (81,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Blackwell, Scott','Scott Blackwell',NULL,NULL,NULL,'1',NULL,'Both','1650464224',NULL,'Sample Data','Scott','Q','Blackwell',NULL,NULL,NULL,NULL,1,NULL,'Dear Scott',1,NULL,'Dear Scott',1,NULL,'Scott Blackwell',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:17'), + (82,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Terrell, Tanya','Tanya Terrell',NULL,NULL,NULL,NULL,NULL,'Both','1604022989',NULL,'Sample Data','Tanya','','Terrell',NULL,NULL,NULL,NULL,1,NULL,'Dear Tanya',1,NULL,'Dear Tanya',1,NULL,'Tanya Terrell',NULL,NULL,'1999-04-04',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:17'), + (83,'Individual',NULL,0,1,0,0,1,0,NULL,NULL,'Müller, Roland','Mr. Roland Müller III',NULL,NULL,NULL,'5',NULL,'Both','1311591085',NULL,'Sample Data','Roland','','Müller',3,4,NULL,NULL,1,NULL,'Dear Roland',1,NULL,'Dear Roland',1,NULL,'Mr. Roland Müller III',NULL,2,'1997-10-09',0,NULL,NULL,NULL,'Indiana Sports Partnership',NULL,NULL,123,0,'2023-01-25 00:10:16','2023-01-25 00:10:18'), + (84,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jones-Samuels, Angelika','Angelika Jones-Samuels',NULL,NULL,NULL,NULL,NULL,'Both','3846714773',NULL,'Sample Data','Angelika','X','Jones-Samuels',NULL,NULL,NULL,NULL,1,NULL,'Dear Angelika',1,NULL,'Dear Angelika',1,NULL,'Angelika Jones-Samuels',NULL,NULL,'1960-05-16',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:18'), + (85,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'McReynolds, Merrie','Merrie McReynolds',NULL,NULL,NULL,NULL,NULL,'Both','231760462',NULL,'Sample Data','Merrie','','McReynolds',NULL,NULL,NULL,NULL,1,NULL,'Dear Merrie',1,NULL,'Dear Merrie',1,NULL,'Merrie McReynolds',NULL,1,'1945-03-14',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:17'), + (86,'Individual',NULL,1,0,0,0,1,0,NULL,NULL,'Parker, Clint','Clint Parker',NULL,NULL,NULL,NULL,NULL,'Both','1220749432',NULL,'Sample Data','Clint','O','Parker',NULL,NULL,NULL,NULL,1,NULL,'Dear Clint',1,NULL,'Dear Clint',1,NULL,'Clint Parker',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:17'), + (87,'Organization',NULL,0,0,0,0,1,0,NULL,NULL,'California Sports Trust','California Sports Trust',NULL,NULL,NULL,'2',NULL,'Both','3138260181',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'California Sports Trust',NULL,NULL,NULL,0,NULL,NULL,95,'California Sports Trust',NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:18'), + (88,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jameson, Nicole','Nicole Jameson',NULL,NULL,NULL,'5',NULL,'Both','533376763',NULL,'Sample Data','Nicole','','Jameson',NULL,NULL,NULL,NULL,1,NULL,'Dear Nicole',1,NULL,'Dear Nicole',1,NULL,'Nicole Jameson',NULL,1,'2003-01-27',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:18'), + (89,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Yadav, Shauna','Dr. Shauna Yadav',NULL,NULL,NULL,'1',NULL,'Both','1029328573',NULL,'Sample Data','Shauna','Q','Yadav',4,NULL,NULL,NULL,1,NULL,'Dear Shauna',1,NULL,'Dear Shauna',1,NULL,'Dr. Shauna Yadav',NULL,1,'1952-01-03',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:17'), + (90,'Household',NULL,1,1,0,0,0,0,NULL,NULL,'Terry family','Terry family',NULL,NULL,NULL,'2',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,'2023-01-25 00:10:16','2023-01-25 00:10:18'), + (91,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Terry, Shauna','Shauna Terry',NULL,NULL,NULL,NULL,NULL,'Both','739503630',NULL,'Sample Data','Shauna','','Terry',NULL,NULL,NULL,NULL,1,NULL,'Dear Shauna',1,NULL,'Dear Shauna',1,NULL,'Shauna Terry',NULL,1,'1997-05-01',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:18'), + (92,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Cooper, Shauna','Shauna Cooper',NULL,NULL,NULL,'1',NULL,'Both','3670541313',NULL,'Sample Data','Shauna','Z','Cooper',NULL,NULL,NULL,NULL,1,NULL,'Dear Shauna',1,NULL,'Dear Shauna',1,NULL,'Shauna Cooper',NULL,NULL,'1987-03-01',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:17'), + (93,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Local Legal Trust','Local Legal Trust',NULL,NULL,NULL,NULL,NULL,'Both','4050907257',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Local Legal Trust',NULL,NULL,NULL,0,NULL,NULL,115,'Local Legal Trust',NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:18'), + (94,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Barkley, Bryon','Bryon Barkley Sr.',NULL,NULL,NULL,'2',NULL,'Both','2286334193',NULL,'Sample Data','Bryon','S','Barkley',NULL,2,NULL,NULL,1,NULL,'Dear Bryon',1,NULL,'Dear Bryon',1,NULL,'Bryon Barkley Sr.',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:17'), + (95,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Adams, Herminia','Ms. Herminia Adams',NULL,NULL,NULL,NULL,NULL,'Both','1782178525',NULL,'Sample Data','Herminia','','Adams',2,NULL,NULL,NULL,1,NULL,'Dear Herminia',1,NULL,'Dear Herminia',1,NULL,'Ms. Herminia Adams',NULL,NULL,'1998-05-06',0,NULL,NULL,NULL,'California Sports Trust',NULL,NULL,87,0,'2023-01-25 00:10:16','2023-01-25 00:10:18'), + (96,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Zope-Blackwell, Brigette','Ms. Brigette Zope-Blackwell',NULL,NULL,NULL,NULL,NULL,'Both','2452948470',NULL,'Sample Data','Brigette','O','Zope-Blackwell',2,NULL,NULL,NULL,1,NULL,'Dear Brigette',1,NULL,'Dear Brigette',1,NULL,'Ms. Brigette Zope-Blackwell',NULL,NULL,'1956-11-30',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:18'), + (97,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'jw.wattson75@infomail.com','jw.wattson75@infomail.com',NULL,NULL,NULL,NULL,NULL,'Both','698961563',NULL,'Sample Data',NULL,NULL,NULL,NULL,3,NULL,NULL,1,NULL,'Dear jw.wattson75@infomail.com',1,NULL,'Dear jw.wattson75@infomail.com',1,NULL,'jw.wattson75@infomail.com',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:18'), + (98,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Prentice, Alida','Alida Prentice',NULL,NULL,NULL,NULL,NULL,'Both','2045262669',NULL,'Sample Data','Alida','N','Prentice',NULL,NULL,NULL,NULL,1,NULL,'Dear Alida',1,NULL,'Dear Alida',1,NULL,'Alida Prentice',NULL,1,'2006-04-07',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:18'), + (99,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'brigettew19@fakemail.biz','brigettew19@fakemail.biz',NULL,NULL,NULL,NULL,NULL,'Both','3819123294',NULL,'Sample Data',NULL,NULL,NULL,1,NULL,NULL,NULL,1,NULL,'Dear brigettew19@fakemail.biz',1,NULL,'Dear brigettew19@fakemail.biz',1,NULL,'brigettew19@fakemail.biz',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:17'), + (100,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Jameson, Maria','Mr. Maria Jameson',NULL,NULL,NULL,NULL,NULL,'Both','2824644051',NULL,'Sample Data','Maria','','Jameson',3,NULL,NULL,NULL,1,NULL,'Dear Maria',1,NULL,'Dear Maria',1,NULL,'Mr. Maria Jameson',NULL,2,'1976-08-19',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:18'), + (101,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Terry, Scarlet','Dr. Scarlet Terry',NULL,NULL,NULL,'5',NULL,'Both','4060527953',NULL,'Sample Data','Scarlet','B','Terry',4,NULL,NULL,NULL,1,NULL,'Dear Scarlet',1,NULL,'Dear Scarlet',1,NULL,'Dr. Scarlet Terry',NULL,NULL,'1967-11-12',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:18'), + (102,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Prentice, Rolando','Rolando Prentice II',NULL,NULL,NULL,'5',NULL,'Both','1297722771',NULL,'Sample Data','Rolando','R','Prentice',NULL,3,NULL,NULL,1,NULL,'Dear Rolando',1,NULL,'Dear Rolando',1,NULL,'Rolando Prentice II',NULL,2,'2009-05-28',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:18'), + (103,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Bachman, Ashlie','Ms. Ashlie Bachman',NULL,NULL,NULL,NULL,NULL,'Both','628441271',NULL,'Sample Data','Ashlie','','Bachman',2,NULL,NULL,NULL,1,NULL,'Dear Ashlie',1,NULL,'Dear Ashlie',1,NULL,'Ms. Ashlie Bachman',NULL,1,'1990-09-30',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:17'), + (104,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Prentice, Sonny','Sonny Prentice',NULL,NULL,NULL,NULL,NULL,'Both','2645636632',NULL,'Sample Data','Sonny','','Prentice',NULL,NULL,NULL,NULL,1,NULL,'Dear Sonny',1,NULL,'Dear Sonny',1,NULL,'Sonny Prentice',NULL,2,'1962-10-12',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:18'), + (105,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Jones, Beula','Beula Jones',NULL,NULL,NULL,NULL,NULL,'Both','420812867',NULL,'Sample Data','Beula','','Jones',NULL,NULL,NULL,NULL,1,NULL,'Dear Beula',1,NULL,'Dear Beula',1,NULL,'Beula Jones',NULL,1,'1965-11-25',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:18'), + (106,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'DÃaz, Sonny','Dr. Sonny DÃaz II',NULL,NULL,NULL,'1',NULL,'Both','3648844868',NULL,'Sample Data','Sonny','','DÃaz',4,3,NULL,NULL,1,NULL,'Dear Sonny',1,NULL,'Dear Sonny',1,NULL,'Dr. Sonny DÃaz II',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:18'), + (107,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Wattson, Errol','Errol Wattson',NULL,NULL,NULL,'4',NULL,'Both','3723119881',NULL,'Sample Data','Errol','','Wattson',NULL,NULL,NULL,NULL,1,NULL,'Dear Errol',1,NULL,'Dear Errol',1,NULL,'Errol Wattson',NULL,2,NULL,1,'2022-08-19',NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:17'), + (108,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Cooper, Miguel','Miguel Cooper',NULL,NULL,NULL,NULL,NULL,'Both','1717220592',NULL,'Sample Data','Miguel','V','Cooper',NULL,NULL,NULL,NULL,1,NULL,'Dear Miguel',1,NULL,'Dear Miguel',1,NULL,'Miguel Cooper',NULL,2,'1952-04-12',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:17'), + (109,'Individual',NULL,1,1,0,0,1,0,NULL,NULL,'beulaj@notmail.org','beulaj@notmail.org',NULL,NULL,NULL,NULL,NULL,'Both','3792227747',NULL,'Sample Data',NULL,NULL,NULL,2,NULL,NULL,NULL,1,NULL,'Dear beulaj@notmail.org',1,NULL,'Dear beulaj@notmail.org',1,NULL,'beulaj@notmail.org',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:18'), + (110,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'russellblackwell@example.org','russellblackwell@example.org',NULL,NULL,NULL,NULL,NULL,'Both','4282230319',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear russellblackwell@example.org',1,NULL,'Dear russellblackwell@example.org',1,NULL,'russellblackwell@example.org',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:18'), + (111,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Wattson, Elina','Elina Wattson',NULL,NULL,NULL,NULL,NULL,'Both','452291784',NULL,'Sample Data','Elina','','Wattson',NULL,NULL,NULL,NULL,1,NULL,'Dear Elina',1,NULL,'Dear Elina',1,NULL,'Elina Wattson',NULL,1,'1980-07-08',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:18'), + (112,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Blackwell, Allan','Allan Blackwell',NULL,NULL,NULL,NULL,NULL,'Both','3904004195',NULL,'Sample Data','Allan','','Blackwell',NULL,NULL,NULL,NULL,1,NULL,'Dear Allan',1,NULL,'Dear Allan',1,NULL,'Allan Blackwell',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:18'), + (113,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Bachman, Megan','Ms. Megan Bachman',NULL,NULL,NULL,'1',NULL,'Both','2246848096',NULL,'Sample Data','Megan','G','Bachman',2,NULL,NULL,NULL,1,NULL,'Dear Megan',1,NULL,'Dear Megan',1,NULL,'Ms. Megan Bachman',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:17'), + (114,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Roberts, Kacey','Kacey Roberts',NULL,NULL,NULL,'4',NULL,'Both','2119265437',NULL,'Sample Data','Kacey','','Roberts',NULL,NULL,NULL,NULL,1,NULL,'Dear Kacey',1,NULL,'Dear Kacey',1,NULL,'Kacey Roberts',NULL,1,'1982-07-21',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:18'), + (115,'Individual',NULL,1,1,0,0,0,0,NULL,NULL,'Wilson, Alexia','Alexia Wilson',NULL,NULL,NULL,NULL,NULL,'Both','3321653861',NULL,'Sample Data','Alexia','','Wilson',NULL,NULL,NULL,NULL,1,NULL,'Dear Alexia',1,NULL,'Dear Alexia',1,NULL,'Alexia Wilson',NULL,1,'1971-02-01',0,NULL,NULL,NULL,'Local Legal Trust',NULL,NULL,93,0,'2023-01-25 00:10:16','2023-01-25 00:10:18'), + (116,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Zope, Billy','Mr. Billy Zope Jr.',NULL,NULL,NULL,NULL,NULL,'Both','1931623602',NULL,'Sample Data','Billy','','Zope',3,1,NULL,NULL,1,NULL,'Dear Billy',1,NULL,'Dear Billy',1,NULL,'Mr. Billy Zope Jr.',NULL,NULL,'1989-08-11',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:17'), + (117,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Zope, Nicole','Nicole Zope',NULL,NULL,NULL,'1',NULL,'Both','3499360934',NULL,'Sample Data','Nicole','','Zope',NULL,NULL,NULL,NULL,1,NULL,'Dear Nicole',1,NULL,'Dear Nicole',1,NULL,'Nicole Zope',NULL,1,'2011-06-07',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:18'), + (118,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Cruz, Juliann','Juliann Cruz',NULL,NULL,NULL,'5',NULL,'Both','2381734764',NULL,'Sample Data','Juliann','','Cruz',NULL,NULL,NULL,NULL,1,NULL,'Dear Juliann',1,NULL,'Dear Juliann',1,NULL,'Juliann Cruz',NULL,1,'1973-05-08',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:17'), + (119,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Blackwell family','Blackwell family',NULL,NULL,NULL,NULL,NULL,'Both','3218641510',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Blackwell family',5,NULL,'Dear Blackwell family',2,NULL,'Blackwell family',NULL,NULL,NULL,0,NULL,'Blackwell family',NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:18'), + (120,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Müller, Tanya','Tanya Müller',NULL,NULL,NULL,NULL,NULL,'Both','1478253205',NULL,'Sample Data','Tanya','','Müller',NULL,NULL,NULL,NULL,1,NULL,'Dear Tanya',1,NULL,'Dear Tanya',1,NULL,'Tanya Müller',NULL,NULL,NULL,0,NULL,NULL,NULL,'United Culture Partners',NULL,NULL,128,0,'2023-01-25 00:10:16','2023-01-25 00:10:18'), + (121,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'mariaz@fakemail.biz','mariaz@fakemail.biz',NULL,NULL,NULL,'3',NULL,'Both','3608478808',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear mariaz@fakemail.biz',1,NULL,'Dear mariaz@fakemail.biz',1,NULL,'mariaz@fakemail.biz',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:18'), + (122,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Müller, Claudio','Claudio Müller',NULL,NULL,NULL,'1',NULL,'Both','2143910765',NULL,'Sample Data','Claudio','','Müller',NULL,NULL,NULL,NULL,1,NULL,'Dear Claudio',1,NULL,'Dear Claudio',1,NULL,'Claudio Müller',NULL,2,'1982-05-21',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:18'), + (123,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Indiana Sports Partnership','Indiana Sports Partnership',NULL,NULL,NULL,'5',NULL,'Both','3043226438',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Indiana Sports Partnership',NULL,NULL,NULL,0,NULL,NULL,83,'Indiana Sports Partnership',NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:18'), + (124,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Wilson-Dimitrov, Shad','Shad Wilson-Dimitrov',NULL,NULL,NULL,NULL,NULL,'Both','3286452921',NULL,'Sample Data','Shad','','Wilson-Dimitrov',NULL,NULL,NULL,NULL,1,NULL,'Dear Shad',1,NULL,'Dear Shad',1,NULL,'Shad Wilson-Dimitrov',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:18'), + (125,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Wagner, Winford','Dr. Winford Wagner',NULL,NULL,NULL,NULL,NULL,'Both','3396158414',NULL,'Sample Data','Winford','T','Wagner',4,NULL,NULL,NULL,1,NULL,'Dear Winford',1,NULL,'Dear Winford',1,NULL,'Dr. Winford Wagner',NULL,2,'1958-05-18',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:17'), + (126,'Organization',NULL,1,0,0,0,1,0,NULL,NULL,'Louisiana Technology Partnership','Louisiana Technology Partnership',NULL,NULL,NULL,NULL,NULL,'Both','2633745931',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Louisiana Technology Partnership',NULL,NULL,NULL,0,NULL,NULL,15,'Louisiana Technology Partnership',NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:18'), + (127,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Jameson, Margaret','Dr. Margaret Jameson',NULL,NULL,NULL,NULL,NULL,'Both','1719938872',NULL,'Sample Data','Margaret','O','Jameson',4,NULL,NULL,NULL,1,NULL,'Dear Margaret',1,NULL,'Dear Margaret',1,NULL,'Dr. Margaret Jameson',NULL,NULL,'1984-08-03',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:18'), + (128,'Organization',NULL,1,0,0,0,0,0,NULL,NULL,'United Culture Partners','United Culture Partners',NULL,NULL,NULL,NULL,NULL,'Both','2576598866',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'United Culture Partners',NULL,NULL,NULL,0,NULL,NULL,120,'United Culture Partners',NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:18'), + (129,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Ivanov, Rodrigo','Rodrigo Ivanov',NULL,NULL,NULL,'4',NULL,'Both','2665620102',NULL,'Sample Data','Rodrigo','','Ivanov',NULL,NULL,NULL,NULL,1,NULL,'Dear Rodrigo',1,NULL,'Dear Rodrigo',1,NULL,'Rodrigo Ivanov',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:17'), + (130,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'ÅÄ…chowski, Ashley','Dr. Ashley ÅÄ…chowski Sr.',NULL,NULL,NULL,NULL,NULL,'Both','2118847074',NULL,'Sample Data','Ashley','L','ÅÄ…chowski',4,2,NULL,NULL,1,NULL,'Dear Ashley',1,NULL,'Dear Ashley',1,NULL,'Dr. Ashley ÅÄ…chowski Sr.',NULL,NULL,'1955-03-22',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:17'), + (131,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Wilson, Rosario','Mr. Rosario Wilson II',NULL,NULL,NULL,NULL,NULL,'Both','4172001962',NULL,'Sample Data','Rosario','I','Wilson',3,3,NULL,NULL,1,NULL,'Dear Rosario',1,NULL,'Dear Rosario',1,NULL,'Mr. Rosario Wilson II',NULL,NULL,'1972-07-16',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:18'), + (132,'Organization',NULL,0,0,0,0,1,0,NULL,NULL,'Virginia Culture Network','Virginia Culture Network',NULL,NULL,NULL,'5',NULL,'Both','1807393325',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Virginia Culture Network',NULL,NULL,NULL,0,NULL,NULL,NULL,'Virginia Culture Network',NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:18'), + (133,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Jameson, Megan','Megan Jameson',NULL,NULL,NULL,'3',NULL,'Both','1706411142',NULL,'Sample Data','Megan','','Jameson',NULL,NULL,NULL,NULL,1,NULL,'Dear Megan',1,NULL,'Dear Megan',1,NULL,'Megan Jameson',NULL,1,'1964-08-31',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:17'), + (134,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'sd.wattson@testmail.co.pl','sd.wattson@testmail.co.pl',NULL,NULL,NULL,NULL,NULL,'Both','1048765381',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear sd.wattson@testmail.co.pl',1,NULL,'Dear sd.wattson@testmail.co.pl',1,NULL,'sd.wattson@testmail.co.pl',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:17'), + (135,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Reynolds-Wattson, Eleonor','Eleonor Reynolds-Wattson',NULL,NULL,NULL,'2',NULL,'Both','812409030',NULL,'Sample Data','Eleonor','V','Reynolds-Wattson',NULL,NULL,NULL,NULL,1,NULL,'Dear Eleonor',1,NULL,'Dear Eleonor',1,NULL,'Eleonor Reynolds-Wattson',NULL,NULL,'1965-08-29',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:18'), + (136,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Blackwell, Felisha','Dr. Felisha Blackwell',NULL,NULL,NULL,'1',NULL,'Both','3871892634',NULL,'Sample Data','Felisha','Z','Blackwell',4,NULL,NULL,NULL,1,NULL,'Dear Felisha',1,NULL,'Dear Felisha',1,NULL,'Dr. Felisha Blackwell',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:17'), + (137,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Lee, Toby','Mr. Toby Lee',NULL,NULL,NULL,NULL,NULL,'Both','1467160380',NULL,'Sample Data','Toby','','Lee',3,NULL,NULL,NULL,1,NULL,'Dear Toby',1,NULL,'Dear Toby',1,NULL,'Mr. Toby Lee',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:17'), + (138,'Individual',NULL,1,1,0,0,1,0,NULL,NULL,'Reynolds, Irvin','Mr. Irvin Reynolds Jr.',NULL,NULL,NULL,'3',NULL,'Both','4214895107',NULL,'Sample Data','Irvin','R','Reynolds',3,1,NULL,NULL,1,NULL,'Dear Irvin',1,NULL,'Dear Irvin',1,NULL,'Mr. Irvin Reynolds Jr.',NULL,2,'1977-08-26',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:17'), + (139,'Individual',NULL,1,1,0,0,1,0,NULL,NULL,'Yadav, Miguel','Dr. Miguel Yadav',NULL,NULL,NULL,'4',NULL,'Both','2177433164',NULL,'Sample Data','Miguel','','Yadav',4,NULL,NULL,NULL,1,NULL,'Dear Miguel',1,NULL,'Dear Miguel',1,NULL,'Dr. Miguel Yadav',NULL,2,'1933-03-10',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:17'), + (140,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Bay Sustainability Partners','Bay Sustainability Partners',NULL,NULL,NULL,NULL,NULL,'Both','3082386049',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Bay Sustainability Partners',NULL,NULL,NULL,0,NULL,NULL,185,'Bay Sustainability Partners',NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:18'), + (141,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Reynolds, Barry','Barry Reynolds II',NULL,NULL,NULL,'4',NULL,'Both','3819576802',NULL,'Sample Data','Barry','','Reynolds',NULL,3,NULL,NULL,1,NULL,'Dear Barry',1,NULL,'Dear Barry',1,NULL,'Barry Reynolds II',NULL,2,'1947-01-09',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:17'), + (142,'Individual',NULL,1,0,0,0,1,0,NULL,NULL,'zope.landon89@example.co.uk','zope.landon89@example.co.uk',NULL,NULL,NULL,'3',NULL,'Both','2858439470',NULL,'Sample Data',NULL,NULL,NULL,3,NULL,NULL,NULL,1,NULL,'Dear zope.landon89@example.co.uk',1,NULL,'Dear zope.landon89@example.co.uk',1,NULL,'zope.landon89@example.co.uk',NULL,NULL,NULL,0,NULL,NULL,NULL,'Whitfield Agriculture Systems',NULL,NULL,77,0,'2023-01-25 00:10:16','2023-01-25 00:10:18'), + (143,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Cooper-Jones, Omar','Omar Cooper-Jones Jr.',NULL,NULL,NULL,NULL,NULL,'Both','1389581430',NULL,'Sample Data','Omar','','Cooper-Jones',NULL,1,NULL,NULL,1,NULL,'Dear Omar',1,NULL,'Dear Omar',1,NULL,'Omar Cooper-Jones Jr.',NULL,2,'1994-10-20',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:18'), + (144,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Terry, Laree','Dr. Laree Terry',NULL,NULL,NULL,'4',NULL,'Both','2580704464',NULL,'Sample Data','Laree','','Terry',4,NULL,NULL,NULL,1,NULL,'Dear Laree',1,NULL,'Dear Laree',1,NULL,'Dr. Laree Terry',NULL,NULL,'1945-10-10',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:17'), + (145,'Individual',NULL,1,1,0,0,0,0,NULL,NULL,'Cooper, Bernadette','Bernadette Cooper',NULL,NULL,NULL,'3',NULL,'Both','1160205929',NULL,'Sample Data','Bernadette','I','Cooper',NULL,NULL,NULL,NULL,1,NULL,'Dear Bernadette',1,NULL,'Dear Bernadette',1,NULL,'Bernadette Cooper',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:17'), + (146,'Organization',NULL,1,0,0,0,0,0,NULL,NULL,'Progressive Environmental Fund','Progressive Environmental Fund',NULL,NULL,NULL,NULL,NULL,'Both','3253210656',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Progressive Environmental Fund',NULL,NULL,NULL,0,NULL,NULL,45,'Progressive Environmental Fund',NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:18'), + (147,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'bo.nielsen@notmail.co.nz','bo.nielsen@notmail.co.nz',NULL,NULL,NULL,NULL,NULL,'Both','919415425',NULL,'Sample Data',NULL,NULL,NULL,1,NULL,NULL,NULL,1,NULL,'Dear bo.nielsen@notmail.co.nz',1,NULL,'Dear bo.nielsen@notmail.co.nz',1,NULL,'bo.nielsen@notmail.co.nz',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:18'), + (148,'Individual',NULL,1,1,0,0,0,0,NULL,NULL,'Adams, Russell','Russell Adams III',NULL,NULL,NULL,'5',NULL,'Both','2150692920',NULL,'Sample Data','Russell','','Adams',NULL,4,NULL,NULL,1,NULL,'Dear Russell',1,NULL,'Dear Russell',1,NULL,'Russell Adams III',NULL,2,'1996-10-21',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:18'), + (149,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Blackwell, Kathlyn','Kathlyn Blackwell',NULL,NULL,NULL,'1',NULL,'Both','549332646',NULL,'Sample Data','Kathlyn','','Blackwell',NULL,NULL,NULL,NULL,1,NULL,'Dear Kathlyn',1,NULL,'Dear Kathlyn',1,NULL,'Kathlyn Blackwell',NULL,NULL,'2005-08-02',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:18'), + (150,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'González, Billy','Billy González',NULL,NULL,NULL,NULL,NULL,'Both','3554802563',NULL,'Sample Data','Billy','U','González',NULL,NULL,NULL,NULL,1,NULL,'Dear Billy',1,NULL,'Dear Billy',1,NULL,'Billy González',NULL,2,'1960-12-16',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:18'), + (151,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jameson-Dimitrov, Jackson','Jackson Jameson-Dimitrov Sr.',NULL,NULL,NULL,NULL,NULL,'Both','1032909862',NULL,'Sample Data','Jackson','','Jameson-Dimitrov',NULL,2,NULL,NULL,1,NULL,'Dear Jackson',1,NULL,'Dear Jackson',1,NULL,'Jackson Jameson-Dimitrov Sr.',NULL,NULL,'1995-12-28',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:18'), + (152,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Adams, Magan','Dr. Magan Adams',NULL,NULL,NULL,NULL,NULL,'Both','922015448',NULL,'Sample Data','Magan','P','Adams',4,NULL,NULL,NULL,1,NULL,'Dear Magan',1,NULL,'Dear Magan',1,NULL,'Dr. Magan Adams',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:18'), + (153,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Cooper, BrzÄ™czysÅ‚aw','BrzÄ™czysÅ‚aw Cooper Sr.',NULL,NULL,NULL,NULL,NULL,'Both','671824527',NULL,'Sample Data','BrzÄ™czysÅ‚aw','','Cooper',NULL,2,NULL,NULL,1,NULL,'Dear BrzÄ™czysÅ‚aw',1,NULL,'Dear BrzÄ™czysÅ‚aw',1,NULL,'BrzÄ™czysÅ‚aw Cooper Sr.',NULL,2,'1990-07-13',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:18'), + (154,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Deforest, Brittney','Dr. Brittney Deforest',NULL,NULL,NULL,NULL,NULL,'Both','1540368141',NULL,'Sample Data','Brittney','','Deforest',4,NULL,NULL,NULL,1,NULL,'Dear Brittney',1,NULL,'Dear Brittney',1,NULL,'Dr. Brittney Deforest',NULL,1,'1947-01-04',1,'2022-06-27',NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:17'), + (155,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'ÅÄ…chowski, Tanya','Tanya ÅÄ…chowski',NULL,NULL,NULL,'5',NULL,'Both','2472113675',NULL,'Sample Data','Tanya','O','ÅÄ…chowski',NULL,NULL,NULL,NULL,1,NULL,'Dear Tanya',1,NULL,'Dear Tanya',1,NULL,'Tanya ÅÄ…chowski',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:17'), + (156,'Household',NULL,0,1,0,0,1,0,NULL,NULL,'Jensen family','Jensen family',NULL,NULL,NULL,'5',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,'2023-01-25 00:10:16','2023-01-25 00:10:18'), + (157,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Müller, Alexia','Alexia Müller',NULL,NULL,NULL,NULL,NULL,'Both','3709597045',NULL,'Sample Data','Alexia','A','Müller',NULL,NULL,NULL,NULL,1,NULL,'Dear Alexia',1,NULL,'Dear Alexia',1,NULL,'Alexia Müller',NULL,1,'2012-12-15',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:18'), + (158,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'robertson.b.teddy78@fishmail.co.uk','robertson.b.teddy78@fishmail.co.uk',NULL,NULL,NULL,'4',NULL,'Both','1398728170',NULL,'Sample Data',NULL,NULL,NULL,3,1,NULL,NULL,1,NULL,'Dear robertson.b.teddy78@fishmail.co.uk',1,NULL,'Dear robertson.b.teddy78@fishmail.co.uk',1,NULL,'robertson.b.teddy78@fishmail.co.uk',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:17'), + (159,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'russellwilson68@notmail.biz','russellwilson68@notmail.biz',NULL,NULL,NULL,'2',NULL,'Both','3118924217',NULL,'Sample Data',NULL,NULL,NULL,3,NULL,NULL,NULL,1,NULL,'Dear russellwilson68@notmail.biz',1,NULL,'Dear russellwilson68@notmail.biz',1,NULL,'russellwilson68@notmail.biz',NULL,NULL,NULL,0,NULL,NULL,NULL,'Texas Music Initiative',NULL,NULL,188,0,'2023-01-25 00:10:16','2023-01-25 00:10:18'), + (160,'Organization',NULL,1,1,0,0,0,0,NULL,NULL,'Greenville Sports Systems','Greenville Sports Systems',NULL,NULL,NULL,'3',NULL,'Both','251301866',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Greenville Sports Systems',NULL,NULL,NULL,0,NULL,NULL,183,'Greenville Sports Systems',NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:18'), + (161,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jacobs, Juliann','Juliann Jacobs',NULL,NULL,NULL,NULL,NULL,'Both','3009811288',NULL,'Sample Data','Juliann','T','Jacobs',NULL,NULL,NULL,NULL,1,NULL,'Dear Juliann',1,NULL,'Dear Juliann',1,NULL,'Juliann Jacobs',NULL,1,NULL,1,'2022-12-03',NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:17'), + (162,'Household',NULL,0,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,'2023-01-25 00:10:16','2023-01-25 00:10:18'), + (163,'Organization',NULL,0,1,0,0,0,0,NULL,NULL,'Minnesota Health Systems','Minnesota Health Systems',NULL,NULL,NULL,NULL,NULL,'Both','2260188367',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Minnesota Health Systems',NULL,NULL,NULL,0,NULL,NULL,3,'Minnesota Health Systems',NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:18'), + (164,'Household',NULL,1,0,0,0,0,0,NULL,NULL,'Wilson-Dimitrov family','Wilson-Dimitrov family',NULL,NULL,NULL,NULL,NULL,'Both','2112982294',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Wilson-Dimitrov family',5,NULL,'Dear Wilson-Dimitrov family',2,NULL,'Wilson-Dimitrov family',NULL,NULL,NULL,0,NULL,'Wilson-Dimitrov family',NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:18'), + (165,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Smith, Russell','Dr. Russell Smith',NULL,NULL,NULL,'1',NULL,'Both','2357263550',NULL,'Sample Data','Russell','','Smith',4,NULL,NULL,NULL,1,NULL,'Dear Russell',1,NULL,'Dear Russell',1,NULL,'Dr. Russell Smith',NULL,NULL,'1944-01-09',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:17'), + (166,'Household',NULL,1,0,0,0,0,0,NULL,NULL,'Jameson family','Jameson family',NULL,NULL,NULL,NULL,NULL,'Both','2255649769',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Jameson family',5,NULL,'Dear Jameson family',2,NULL,'Jameson family',NULL,NULL,NULL,0,NULL,'Jameson family',NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:18'), + (167,'Household',NULL,0,1,0,0,0,0,NULL,NULL,'DÃaz family','DÃaz family',NULL,NULL,NULL,'1',NULL,'Both','2169249835',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear DÃaz family',5,NULL,'Dear DÃaz family',2,NULL,'DÃaz family',NULL,NULL,NULL,0,NULL,'DÃaz family',NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:18'), + (168,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Olsen, Santina','Santina Olsen',NULL,NULL,NULL,NULL,NULL,'Both','3876725059',NULL,'Sample Data','Santina','','Olsen',NULL,NULL,NULL,NULL,1,NULL,'Dear Santina',1,NULL,'Dear Santina',1,NULL,'Santina Olsen',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:17'), + (169,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Jameson, Rolando','Dr. Rolando Jameson Sr.',NULL,NULL,NULL,'4',NULL,'Both','726163988',NULL,'Sample Data','Rolando','U','Jameson',4,2,NULL,NULL,1,NULL,'Dear Rolando',1,NULL,'Dear Rolando',1,NULL,'Dr. Rolando Jameson Sr.',NULL,2,'2000-06-29',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:18'), + (170,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Deforest, Daren','Dr. Daren Deforest',NULL,NULL,NULL,NULL,NULL,'Both','3756202377',NULL,'Sample Data','Daren','','Deforest',4,NULL,NULL,NULL,1,NULL,'Dear Daren',1,NULL,'Dear Daren',1,NULL,'Dr. Daren Deforest',NULL,2,'1979-05-20',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:17'), + (171,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'ÅÄ…chowski, Laree','Ms. Laree ÅÄ…chowski',NULL,NULL,NULL,'2',NULL,'Both','938436888',NULL,'Sample Data','Laree','','ÅÄ…chowski',2,NULL,NULL,NULL,1,NULL,'Dear Laree',1,NULL,'Dear Laree',1,NULL,'Ms. Laree ÅÄ…chowski',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:17'), + (172,'Individual',NULL,1,1,0,0,0,0,NULL,NULL,'González, Ashlie','Ashlie González',NULL,NULL,NULL,NULL,NULL,'Both','4074516912',NULL,'Sample Data','Ashlie','Z','González',NULL,NULL,NULL,NULL,1,NULL,'Dear Ashlie',1,NULL,'Dear Ashlie',1,NULL,'Ashlie González',NULL,NULL,'1978-03-31',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:18'), + (173,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Robertson, Kathlyn','Dr. Kathlyn Robertson',NULL,NULL,NULL,NULL,NULL,'Both','1571361016',NULL,'Sample Data','Kathlyn','N','Robertson',4,NULL,NULL,NULL,1,NULL,'Dear Kathlyn',1,NULL,'Dear Kathlyn',1,NULL,'Dr. Kathlyn Robertson',NULL,NULL,'1934-05-08',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:17'), + (174,'Individual',NULL,0,1,0,0,1,0,NULL,NULL,'Jensen, Bob','Bob Jensen III',NULL,NULL,NULL,NULL,NULL,'Both','2741288215',NULL,'Sample Data','Bob','F','Jensen',NULL,4,NULL,NULL,1,NULL,'Dear Bob',1,NULL,'Dear Bob',1,NULL,'Bob Jensen III',NULL,2,'1979-01-10',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:17'), + (175,'Organization',NULL,1,0,0,0,1,0,NULL,NULL,'Green Legal School','Green Legal School',NULL,NULL,NULL,NULL,NULL,'Both','560556539',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Green Legal School',NULL,NULL,NULL,0,NULL,NULL,NULL,'Green Legal School',NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:18'), + (176,'Organization',NULL,1,0,0,0,0,0,NULL,NULL,'Wyoming Sustainability Initiative','Wyoming Sustainability Initiative',NULL,NULL,NULL,NULL,NULL,'Both','2025702384',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Wyoming Sustainability Initiative',NULL,NULL,NULL,0,NULL,NULL,NULL,'Wyoming Sustainability Initiative',NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:18'), + (177,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Parker, Alexia','Dr. Alexia Parker',NULL,NULL,NULL,'1',NULL,'Both','1459104008',NULL,'Sample Data','Alexia','','Parker',4,NULL,NULL,NULL,1,NULL,'Dear Alexia',1,NULL,'Dear Alexia',1,NULL,'Dr. Alexia Parker',NULL,1,'1968-05-06',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:17'), + (178,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Ivanov, Lincoln','Lincoln Ivanov',NULL,NULL,NULL,NULL,NULL,'Both','1295096764',NULL,'Sample Data','Lincoln','L','Ivanov',NULL,NULL,NULL,NULL,1,NULL,'Dear Lincoln',1,NULL,'Dear Lincoln',1,NULL,'Lincoln Ivanov',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:17'), + (179,'Household',NULL,1,0,0,0,1,0,NULL,NULL,'Zope-Roberts family','Zope-Roberts family',NULL,NULL,NULL,NULL,NULL,'Both','389913516',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Zope-Roberts family',5,NULL,'Dear Zope-Roberts family',2,NULL,'Zope-Roberts family',NULL,NULL,NULL,0,NULL,'Zope-Roberts family',NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:18'), + (180,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Samuels, Brent','Mr. Brent Samuels Jr.',NULL,NULL,NULL,NULL,NULL,'Both','3250906077',NULL,'Sample Data','Brent','','Samuels',3,1,NULL,NULL,1,NULL,'Dear Brent',1,NULL,'Dear Brent',1,NULL,'Mr. Brent Samuels Jr.',NULL,NULL,'1988-05-01',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:18'), + (181,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Olsen, Maria','Dr. Maria Olsen Jr.',NULL,NULL,NULL,NULL,NULL,'Both','1487979958',NULL,'Sample Data','Maria','','Olsen',4,1,NULL,NULL,1,NULL,'Dear Maria',1,NULL,'Dear Maria',1,NULL,'Dr. Maria Olsen Jr.',NULL,2,'2000-04-29',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:17'), + (182,'Individual',NULL,1,1,0,0,0,0,NULL,NULL,'Robertson, Delana','Delana Robertson',NULL,NULL,NULL,'3',NULL,'Both','1905336460',NULL,'Sample Data','Delana','U','Robertson',NULL,NULL,NULL,NULL,1,NULL,'Dear Delana',1,NULL,'Dear Delana',1,NULL,'Delana Robertson',NULL,1,'1948-04-22',0,NULL,NULL,NULL,'United Education Services',NULL,NULL,195,0,'2023-01-25 00:10:16','2023-01-25 00:10:18'), + (183,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Blackwell, Valene','Valene Blackwell',NULL,NULL,NULL,'3',NULL,'Both','3670255254',NULL,'Sample Data','Valene','','Blackwell',NULL,NULL,NULL,NULL,1,NULL,'Dear Valene',1,NULL,'Dear Valene',1,NULL,'Valene Blackwell',NULL,1,'1969-06-14',0,NULL,NULL,NULL,'Greenville Sports Systems',NULL,NULL,160,0,'2023-01-25 00:10:16','2023-01-25 00:10:18'), + (184,'Organization',NULL,0,0,0,0,1,0,NULL,NULL,'Los Indios Poetry Trust','Los Indios Poetry Trust',NULL,NULL,NULL,'5',NULL,'Both','3796732546',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Los Indios Poetry Trust',NULL,NULL,NULL,0,NULL,NULL,47,'Los Indios Poetry Trust',NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:18'), + (185,'Individual',NULL,1,1,0,0,1,0,NULL,NULL,'Jacobs, Angelika','Dr. Angelika Jacobs',NULL,NULL,NULL,'2',NULL,'Both','2422403627',NULL,'Sample Data','Angelika','F','Jacobs',4,NULL,NULL,NULL,1,NULL,'Dear Angelika',1,NULL,'Dear Angelika',1,NULL,'Dr. Angelika Jacobs',NULL,1,'1982-06-10',0,NULL,NULL,NULL,'Bay Sustainability Partners',NULL,NULL,140,0,'2023-01-25 00:10:16','2023-01-25 00:10:18'), + (186,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Zope, Landon','Landon Zope Jr.',NULL,NULL,NULL,NULL,NULL,'Both','4025242907',NULL,'Sample Data','Landon','K','Zope',NULL,1,NULL,NULL,1,NULL,'Dear Landon',1,NULL,'Dear Landon',1,NULL,'Landon Zope Jr.',NULL,2,'1979-04-22',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:17'), + (187,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Jameson, Justina','Mrs. Justina Jameson',NULL,NULL,NULL,'1',NULL,'Both','1079764406',NULL,'Sample Data','Justina','V','Jameson',1,NULL,NULL,NULL,1,NULL,'Dear Justina',1,NULL,'Dear Justina',1,NULL,'Mrs. Justina Jameson',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:18'), + (188,'Organization',NULL,0,0,0,0,1,0,NULL,NULL,'Texas Music Initiative','Texas Music Initiative',NULL,NULL,NULL,'3',NULL,'Both','51665551',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Texas Music Initiative',NULL,NULL,NULL,0,NULL,NULL,159,'Texas Music Initiative',NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:18'), + (189,'Household',NULL,1,1,0,0,0,0,NULL,NULL,'Cooper-Jones family','Cooper-Jones family',NULL,NULL,NULL,NULL,NULL,'Both','4176305487',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Cooper-Jones family',5,NULL,'Dear Cooper-Jones family',2,NULL,'Cooper-Jones family',NULL,NULL,NULL,0,NULL,'Cooper-Jones family',NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:18'), + (190,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Prentice, Carylon','Mrs. Carylon Prentice',NULL,NULL,NULL,'4',NULL,'Both','1810903097',NULL,'Sample Data','Carylon','','Prentice',1,NULL,NULL,NULL,1,NULL,'Dear Carylon',1,NULL,'Dear Carylon',1,NULL,'Mrs. Carylon Prentice',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:18'), + (191,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jensen, Lashawnda','Lashawnda Jensen',NULL,NULL,NULL,'1',NULL,'Both','4222472250',NULL,'Sample Data','Lashawnda','X','Jensen',NULL,NULL,NULL,NULL,1,NULL,'Dear Lashawnda',1,NULL,'Dear Lashawnda',1,NULL,'Lashawnda Jensen',NULL,1,'2002-03-20',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:18'), + (192,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Wilson, Margaret','Margaret Wilson',NULL,NULL,NULL,NULL,NULL,'Both','2853804377',NULL,'Sample Data','Margaret','C','Wilson',NULL,NULL,NULL,NULL,1,NULL,'Dear Margaret',1,NULL,'Dear Margaret',1,NULL,'Margaret Wilson',NULL,1,'1955-04-07',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:17'), + (193,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Cooper, Margaret','Margaret Cooper',NULL,NULL,NULL,NULL,NULL,'Both','897960138',NULL,'Sample Data','Margaret','U','Cooper',NULL,NULL,NULL,NULL,1,NULL,'Dear Margaret',1,NULL,'Dear Margaret',1,NULL,'Margaret Cooper',NULL,NULL,'1986-12-07',0,NULL,NULL,NULL,'Community Music Network',NULL,NULL,196,0,'2023-01-25 00:10:16','2023-01-25 00:10:18'), + (194,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jameson-Dimitrov, Jed','Mr. Jed Jameson-Dimitrov II',NULL,NULL,NULL,NULL,NULL,'Both','585699978',NULL,'Sample Data','Jed','','Jameson-Dimitrov',3,3,NULL,NULL,1,NULL,'Dear Jed',1,NULL,'Dear Jed',1,NULL,'Mr. Jed Jameson-Dimitrov II',NULL,2,'1998-12-26',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:18'), + (195,'Organization',NULL,0,1,0,0,0,0,NULL,NULL,'United Education Services','United Education Services',NULL,NULL,NULL,'2',NULL,'Both','2079052352',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'United Education Services',NULL,NULL,NULL,0,NULL,NULL,182,'United Education Services',NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:18'), + (196,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Community Music Network','Community Music Network',NULL,NULL,NULL,'3',NULL,'Both','1932685524',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Community Music Network',NULL,NULL,NULL,0,NULL,NULL,193,'Community Music Network',NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:18'), + (197,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Adams, Landon','Landon Adams Jr.',NULL,NULL,NULL,'4',NULL,'Both','1504862823',NULL,'Sample Data','Landon','','Adams',NULL,1,NULL,NULL,1,NULL,'Dear Landon',1,NULL,'Dear Landon',1,NULL,'Landon Adams Jr.',NULL,2,'1984-01-13',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:18'), + (198,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Prentice, Craig','Craig Prentice Sr.',NULL,NULL,NULL,'3',NULL,'Both','3778069057',NULL,'Sample Data','Craig','','Prentice',NULL,2,NULL,NULL,1,NULL,'Dear Craig',1,NULL,'Dear Craig',1,NULL,'Craig Prentice Sr.',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:17'), + (199,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'billyjameson17@notmail.co.pl','billyjameson17@notmail.co.pl',NULL,NULL,NULL,'2',NULL,'Both','1658771000',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear billyjameson17@notmail.co.pl',1,NULL,'Dear billyjameson17@notmail.co.pl',1,NULL,'billyjameson17@notmail.co.pl',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:16','2023-01-25 00:10:17'), + (200,'Household',NULL,1,0,0,0,0,0,NULL,NULL,'Cooper-Nielsen family','Cooper-Nielsen family',NULL,NULL,NULL,NULL,NULL,'Both','726986696',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Cooper-Nielsen family',5,NULL,'Dear Cooper-Nielsen family',2,NULL,'Cooper-Nielsen family',NULL,NULL,NULL,0,NULL,'Cooper-Nielsen family',NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:17','2023-01-25 00:10:18'), + (201,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Grant, Bernadette','Bernadette Grant',NULL,NULL,NULL,'3',NULL,'Both','2386715823',NULL,'Sample Data','Bernadette','','Grant',NULL,NULL,NULL,NULL,1,NULL,'Dear Bernadette',1,NULL,'Dear Bernadette',1,NULL,'Bernadette Grant',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:17','2023-01-25 00:10:17'), + (202,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Lee, Jenny','Jenny Lee',NULL,NULL,NULL,NULL,'en_US','Both','6c3a25837447aee7ea2d84962c119d0f',NULL,NULL,'Jenny',NULL,'Lee',NULL,NULL,NULL,1,1,NULL,'Dear Jenny',1,NULL,'Dear Jenny',1,NULL,'Jenny Lee','Volunteer coordinator',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2023-01-25 00:10:19','2023-01-25 00:10:19'); /*!40000 ALTER TABLE `civicrm_contact` ENABLE KEYS */; UNLOCK TABLES; @@ -2300,117 +2299,117 @@ UNLOCK TABLES; LOCK TABLES `civicrm_contribution` WRITE; /*!40000 ALTER TABLE `civicrm_contribution` DISABLE KEYS */; INSERT INTO `civicrm_contribution` (`id`, `contact_id`, `financial_type_id`, `contribution_page_id`, `payment_instrument_id`, `receive_date`, `non_deductible_amount`, `total_amount`, `fee_amount`, `net_amount`, `trxn_id`, `invoice_id`, `invoice_number`, `currency`, `cancel_date`, `cancel_reason`, `receipt_date`, `thankyou_date`, `source`, `amount_level`, `contribution_recur_id`, `is_test`, `is_pay_later`, `contribution_status_id`, `address_id`, `check_number`, `campaign_id`, `creditnote_id`, `tax_amount`, `revenue_recognition_date`, `is_template`) VALUES - (1,2,1,NULL,4,'2012-12-07 16:48:59',0.00,125.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'April Mailer 1',NULL,NULL,0,0,1,NULL,'1041',NULL,NULL,NULL,NULL,0), - (2,4,1,NULL,1,'2020-09-07 16:48:59',0.00,50.00,NULL,NULL,'P20901X1',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Online: Save the Penguins',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (3,6,1,NULL,4,'2016-11-12 03:48:59',0.00,25.00,NULL,NULL,'GBP12',NULL,NULL,'GBP',NULL,NULL,NULL,NULL,'April Mailer 1',NULL,NULL,0,0,1,NULL,'2095',NULL,NULL,NULL,NULL,0), - (4,8,1,NULL,4,'2020-09-07 16:48:59',0.00,50.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Online: Save the Penguins',NULL,NULL,0,0,1,NULL,'10552',NULL,NULL,NULL,NULL,0), - (5,4,1,NULL,1,'2020-09-07 16:48:59',0.00,50.00,NULL,NULL,'Q90901X1',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Online: Save the Penguins',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (6,16,1,NULL,4,'2022-09-13 16:06:59',0.00,500.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'April Mailer 1',NULL,NULL,0,0,1,NULL,'509',NULL,NULL,NULL,NULL,0), - (7,19,1,NULL,1,'2022-12-05 16:48:59',0.00,1750.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Online: Save the Penguins',NULL,NULL,0,0,1,NULL,'102',NULL,NULL,NULL,NULL,0), - (8,82,1,NULL,1,'2022-04-15 00:59:59',0.00,50.00,NULL,NULL,'P20193L2',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Online: Save the Penguins',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (9,92,1,NULL,1,'2022-01-07 16:48:59',0.00,10.00,NULL,NULL,'P40232Y3',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Online: Help CiviCRM',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (10,34,1,NULL,1,'2018-07-15 18:48:59',0.00,250.00,NULL,NULL,'P20193L6',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Online: Help CiviCRM',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (11,71,1,NULL,1,'2022-12-06 12:48:59',0.00,500.00,NULL,NULL,'PL71',NULL,NULL,'JPY',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (12,43,1,NULL,1,'2021-09-07 06:15:39',0.00,50.00,NULL,NULL,'P291X1',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Online: Save the Penguins',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (13,32,1,NULL,1,'2022-09-07 00:00:00',0.00,50.00,NULL,NULL,'PL32I',NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (14,32,1,NULL,1,'2022-10-07 00:00:00',0.00,50.00,NULL,NULL,'PL32II',NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (15,59,1,NULL,1,'2021-09-07 16:48:59',0.00,25.00,NULL,NULL,'PL32I591',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Recurring contribution',NULL,1,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (16,59,1,NULL,1,'2021-10-07 16:48:59',0.00,25.00,NULL,NULL,'PL32I592',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Recurring contribution',NULL,1,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (17,59,1,NULL,1,'2021-11-07 16:48:59',0.00,25.00,NULL,NULL,'PL32I593',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Recurring contribution',NULL,1,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (18,59,1,NULL,1,'2021-12-07 16:48:59',0.00,25.00,NULL,NULL,'PL32I594',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Recurring contribution',NULL,1,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (19,59,1,NULL,1,'2022-01-07 16:48:59',0.00,25.00,NULL,NULL,'PL32I595',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Recurring contribution',NULL,1,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (20,59,1,NULL,1,'2022-02-07 16:48:59',0.00,25.00,NULL,NULL,'PL32I596',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Recurring contribution',NULL,1,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (21,59,1,NULL,1,'2022-03-07 16:48:59',0.00,25.00,NULL,NULL,'PL32I597',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Recurring contribution',NULL,1,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (22,59,1,NULL,1,'2022-04-07 16:48:59',0.00,25.00,NULL,NULL,'PL32I598',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Recurring contribution',NULL,1,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (23,59,1,NULL,1,'2022-05-07 16:48:59',0.00,25.00,NULL,NULL,'PL32I599',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Recurring contribution',NULL,1,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (24,59,1,NULL,1,'2022-06-07 16:48:59',0.00,25.00,NULL,NULL,'PL32I5910',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Recurring contribution',NULL,1,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (25,59,1,NULL,1,'2022-07-07 16:48:59',0.00,25.00,NULL,NULL,'PL32I5911',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Recurring contribution',NULL,1,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (26,99,1,NULL,1,'2022-04-07 16:48:59',0.00,10.00,NULL,NULL,'PL32I991',NULL,NULL,'CAD',NULL,NULL,NULL,NULL,'Recurring contribution',NULL,2,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (27,99,1,NULL,1,'2022-05-07 16:48:59',0.00,10.00,NULL,NULL,'PL32I992',NULL,NULL,'CAD',NULL,NULL,NULL,NULL,'Recurring contribution',NULL,2,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (28,99,1,NULL,1,'2022-06-07 16:48:59',0.00,10.00,NULL,NULL,'PL32I993',NULL,NULL,'CAD',NULL,NULL,NULL,NULL,'Recurring contribution',NULL,2,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (29,99,1,NULL,1,'2022-07-07 16:48:59',0.00,10.00,NULL,NULL,'PL32I994',NULL,NULL,'CAD',NULL,NULL,NULL,NULL,'Recurring contribution',NULL,2,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (30,99,1,NULL,1,'2022-08-07 16:48:59',0.00,10.00,NULL,NULL,'PL32I995',NULL,NULL,'CAD',NULL,NULL,NULL,NULL,'Recurring contribution',NULL,2,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (31,103,1,NULL,1,'2022-11-07 16:48:59',0.00,5.00,NULL,NULL,'PL32I1031',NULL,NULL,'EUR',NULL,NULL,NULL,NULL,'Recurring contribution',NULL,3,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (32,160,2,NULL,1,'2022-12-07 16:48:59',0.00,100.00,NULL,NULL,'59405131e66504d7',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (33,62,2,NULL,1,'2022-12-07 16:48:59',0.00,50.00,NULL,NULL,'e807e8a68cd37b9e',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (34,60,2,NULL,1,'2022-12-07 16:48:59',0.00,100.00,NULL,NULL,'1350871b9e804370',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (35,75,2,NULL,1,'2022-12-07 16:48:59',0.00,50.00,NULL,NULL,'0033b0b1a2b28b90',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (36,47,2,NULL,1,'2022-12-07 16:48:59',0.00,100.00,NULL,NULL,'50102f02428840de',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (37,169,2,NULL,1,'2022-12-07 16:48:59',0.00,50.00,NULL,NULL,'f8aa21b83b6b97ce',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (38,186,2,NULL,1,'2022-12-07 16:48:59',0.00,100.00,NULL,NULL,'1b012153a004d9ba',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (39,179,2,NULL,1,'2022-12-07 16:48:59',0.00,50.00,NULL,NULL,'7cc75eb5e7ed8dac',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (40,123,2,NULL,1,'2022-12-07 16:48:59',0.00,100.00,NULL,NULL,'b98ea4824abb97e7',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (41,57,2,NULL,1,'2022-12-07 16:48:59',0.00,100.00,NULL,NULL,'ef864878783f5e98',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (42,195,2,NULL,1,'2022-12-07 16:48:59',0.00,1200.00,NULL,NULL,'732100249807c735',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Lifetime Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (43,164,2,NULL,1,'2022-12-07 16:48:59',0.00,50.00,NULL,NULL,'69fc44a2473d036c',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (44,150,2,NULL,1,'2022-12-07 16:48:59',0.00,100.00,NULL,NULL,'4930d7ffc145bc25',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (45,95,2,NULL,1,'2022-12-07 16:48:59',0.00,50.00,NULL,NULL,'4544e0da6aa6a8b9',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (46,41,2,NULL,1,'2022-12-07 16:48:59',0.00,100.00,NULL,NULL,'aeb8116ec0e9328a',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (47,12,2,NULL,1,'2022-12-07 16:48:59',0.00,50.00,NULL,NULL,'a31bae50f8535d11',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (48,96,2,NULL,1,'2022-12-07 16:48:59',0.00,100.00,NULL,NULL,'a9d80dc905a32d43',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (49,21,2,NULL,1,'2022-12-07 16:48:59',0.00,50.00,NULL,NULL,'5a905e9746cef0b3',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (50,17,2,NULL,1,'2022-12-07 16:48:59',0.00,100.00,NULL,NULL,'20d786fe8b39154c',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (51,118,2,NULL,1,'2022-12-07 16:48:59',0.00,100.00,NULL,NULL,'4c3d16ffdd35ca90',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (52,116,2,NULL,1,'2022-12-07 16:48:59',0.00,100.00,NULL,NULL,'0e7ae7fa18543312',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (53,193,2,NULL,1,'2022-12-07 16:48:59',0.00,1200.00,NULL,NULL,'0dfa172b4e08a467',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Lifetime Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (54,106,2,NULL,1,'2022-12-07 16:48:59',0.00,100.00,NULL,NULL,'9d049fe9d7793186',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (55,148,2,NULL,1,'2022-12-07 16:48:59',0.00,50.00,NULL,NULL,'667d4a354129cf34',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (56,40,2,NULL,1,'2022-12-07 16:48:59',0.00,100.00,NULL,NULL,'e230a742c5b309cc',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (57,35,2,NULL,1,'2022-12-07 16:48:59',0.00,50.00,NULL,NULL,'3a0fd1c17c16e58e',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (58,104,2,NULL,1,'2022-12-07 16:48:59',0.00,100.00,NULL,NULL,'e0a99b41741d091d',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (59,139,2,NULL,1,'2022-12-07 16:48:59',0.00,50.00,NULL,NULL,'5557d514f4ffc43b',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (60,53,2,NULL,1,'2022-12-07 16:48:59',0.00,100.00,NULL,NULL,'30833835a519531f',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (61,25,2,NULL,1,'2022-12-07 16:48:59',0.00,100.00,NULL,NULL,'ffdc05eaef952213',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (63,3,4,NULL,1,'2022-12-07 16:48:59',0.00,50.00,NULL,NULL,'0509fc35edb6ec7d',NULL,NULL,'USD',NULL,NULL,'2022-12-07 16:48:59',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (64,5,4,NULL,1,'2022-12-07 16:48:59',0.00,800.00,NULL,NULL,'5b818fa720e46b26',NULL,NULL,'USD',NULL,NULL,'2022-12-07 16:48:59',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (65,12,4,NULL,1,'2022-12-07 16:48:59',0.00,50.00,NULL,NULL,'73c8f07043e0b8bc',NULL,NULL,'USD',NULL,NULL,'2022-12-07 16:48:59',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (66,13,4,NULL,1,'2022-12-07 16:48:59',0.00,800.00,NULL,NULL,'0fb9a00cbeea520d',NULL,NULL,'USD',NULL,NULL,'2022-12-07 16:48:59',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (67,21,4,NULL,1,'2022-12-07 16:48:59',0.00,50.00,NULL,NULL,'1a30a78cb236c2a2',NULL,NULL,'USD',NULL,NULL,'2022-12-07 16:48:59',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (68,25,4,NULL,1,'2022-12-07 16:48:59',0.00,50.00,NULL,NULL,'441846e4b150ae83',NULL,NULL,'USD',NULL,NULL,'2022-12-07 16:48:59',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (69,30,4,NULL,1,'2022-12-07 16:48:59',0.00,800.00,NULL,NULL,'d02b80acc84b1da5',NULL,NULL,'USD',NULL,NULL,'2022-12-07 16:48:59',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (70,31,4,NULL,1,'2022-12-07 16:48:59',0.00,50.00,NULL,NULL,'be412feae64f2b31',NULL,NULL,'USD',NULL,NULL,'2022-12-07 16:48:59',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (71,34,4,NULL,1,'2022-12-07 16:48:59',0.00,800.00,NULL,NULL,'e4ce33f94141aa84',NULL,NULL,'USD',NULL,NULL,'2022-12-07 16:48:59',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (72,41,4,NULL,1,'2022-12-07 16:48:59',0.00,50.00,NULL,NULL,'3592185b60159117',NULL,NULL,'USD',NULL,NULL,'2022-12-07 16:48:59',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (73,44,4,NULL,1,'2022-12-07 16:48:59',0.00,50.00,NULL,NULL,'575ebdaf9035c133',NULL,NULL,'USD',NULL,NULL,'2022-12-07 16:48:59',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (74,49,4,NULL,1,'2022-12-07 16:48:59',0.00,50.00,NULL,NULL,'ad545cf78737d3f7',NULL,NULL,'USD',NULL,NULL,'2022-12-07 16:48:59',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (75,56,4,NULL,1,'2022-12-07 16:48:59',0.00,50.00,NULL,NULL,'9dd5f1aa477e78e4',NULL,NULL,'USD',NULL,NULL,'2022-12-07 16:48:59',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (76,60,4,NULL,1,'2022-12-07 16:48:59',0.00,50.00,NULL,NULL,'dfe9f2e0d989d02a',NULL,NULL,'USD',NULL,NULL,'2022-12-07 16:48:59',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (77,66,4,NULL,1,'2022-12-07 16:48:59',0.00,50.00,NULL,NULL,'da599fe9081269c6',NULL,NULL,'USD',NULL,NULL,'2022-12-07 16:48:59',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (78,71,4,NULL,1,'2022-12-07 16:48:59',0.00,800.00,NULL,NULL,'ca271cf7bfa86b7f',NULL,NULL,'USD',NULL,NULL,'2022-12-07 16:48:59',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (79,72,4,NULL,1,'2022-12-07 16:48:59',0.00,50.00,NULL,NULL,'f4e796dabcbdcc4f',NULL,NULL,'USD',NULL,NULL,'2022-12-07 16:48:59',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (80,74,4,NULL,1,'2022-12-07 16:48:59',0.00,800.00,NULL,NULL,'d9d0188669b9c208',NULL,NULL,'USD',NULL,NULL,'2022-12-07 16:48:59',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (81,76,4,NULL,1,'2022-12-07 16:48:59',0.00,800.00,NULL,NULL,'7828477427d14fb2',NULL,NULL,'USD',NULL,NULL,'2022-12-07 16:48:59',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (82,79,4,NULL,1,'2022-12-07 16:48:59',0.00,50.00,NULL,NULL,'b50b9a1a98a35746',NULL,NULL,'USD',NULL,NULL,'2022-12-07 16:48:59',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (83,80,4,NULL,1,'2022-12-07 16:48:59',0.00,50.00,NULL,NULL,'79efe0aee9b644d0',NULL,NULL,'USD',NULL,NULL,'2022-12-07 16:48:59',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (84,98,4,NULL,1,'2022-12-07 16:48:59',0.00,50.00,NULL,NULL,'be3e9e9b0daaef14',NULL,NULL,'USD',NULL,NULL,'2022-12-07 16:48:59',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (85,101,4,NULL,1,'2022-12-07 16:48:59',0.00,800.00,NULL,NULL,'1723e45e82ec89d2',NULL,NULL,'USD',NULL,NULL,'2022-12-07 16:48:59',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (86,102,4,NULL,1,'2022-12-07 16:48:59',0.00,50.00,NULL,NULL,'4728623ad09af36e',NULL,NULL,'USD',NULL,NULL,'2022-12-07 16:48:59',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (87,103,4,NULL,1,'2022-12-07 16:48:59',0.00,50.00,NULL,NULL,'543fdf7a2b80afe2',NULL,NULL,'USD',NULL,NULL,'2022-12-07 16:48:59',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (88,109,4,NULL,1,'2022-12-07 16:48:59',0.00,50.00,NULL,NULL,'0245c5ecbe9efa38',NULL,NULL,'USD',NULL,NULL,'2022-12-07 16:48:59',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (89,111,4,NULL,1,'2022-12-07 16:48:59',0.00,50.00,NULL,NULL,'f47dc34f219618c4',NULL,NULL,'USD',NULL,NULL,'2022-12-07 16:48:59',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (90,114,4,NULL,1,'2022-12-07 16:48:59',0.00,800.00,NULL,NULL,'674b2eff0c35d392',NULL,NULL,'USD',NULL,NULL,'2022-12-07 16:48:59',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (91,115,4,NULL,1,'2022-12-07 16:48:59',0.00,800.00,NULL,NULL,'0f1173bc73749c2e',NULL,NULL,'USD',NULL,NULL,'2022-12-07 16:48:59',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (92,128,4,NULL,1,'2022-12-07 16:48:59',0.00,50.00,NULL,NULL,'fc9423052c5219f7',NULL,NULL,'USD',NULL,NULL,'2022-12-07 16:48:59',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (93,134,4,NULL,1,'2022-12-07 16:48:59',0.00,50.00,NULL,NULL,'72f9edfb3fa15177',NULL,NULL,'USD',NULL,NULL,'2022-12-07 16:48:59',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (94,139,4,NULL,1,'2022-12-07 16:48:59',0.00,50.00,NULL,NULL,'1ec65e4a0847e5a9',NULL,NULL,'USD',NULL,NULL,'2022-12-07 16:48:59',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (95,143,4,NULL,1,'2022-12-07 16:48:59',0.00,800.00,NULL,NULL,'06de54fab2b965bb',NULL,NULL,'USD',NULL,NULL,'2022-12-07 16:48:59',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (96,145,4,NULL,1,'2022-12-07 16:48:59',0.00,800.00,NULL,NULL,'defa9c450982cd20',NULL,NULL,'USD',NULL,NULL,'2022-12-07 16:48:59',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (97,147,4,NULL,1,'2022-12-07 16:48:59',0.00,50.00,NULL,NULL,'37a3b9081603c0e5',NULL,NULL,'USD',NULL,NULL,'2022-12-07 16:48:59',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (98,148,4,NULL,1,'2022-12-07 16:48:59',0.00,800.00,NULL,NULL,'184bcb7f28b626b4',NULL,NULL,'USD',NULL,NULL,'2022-12-07 16:48:59',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (99,149,4,NULL,1,'2022-12-07 16:48:59',0.00,50.00,NULL,NULL,'71b1fa47d40c6641',NULL,NULL,'USD',NULL,NULL,'2022-12-07 16:48:59',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (100,157,4,NULL,1,'2022-12-07 16:48:59',0.00,50.00,NULL,NULL,'73245f0768df7cca',NULL,NULL,'USD',NULL,NULL,'2022-12-07 16:48:59',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (101,160,4,NULL,1,'2022-12-07 16:48:59',0.00,50.00,NULL,NULL,'871bd110654641f1',NULL,NULL,'USD',NULL,NULL,'2022-12-07 16:48:59',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (102,171,4,NULL,1,'2022-12-07 16:48:59',0.00,50.00,NULL,NULL,'5228e5b8801ea6b3',NULL,NULL,'USD',NULL,NULL,'2022-12-07 16:48:59',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (103,179,4,NULL,1,'2022-12-07 16:48:59',0.00,800.00,NULL,NULL,'fda671c878eccb6a',NULL,NULL,'USD',NULL,NULL,'2022-12-07 16:48:59',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (104,180,4,NULL,1,'2022-12-07 16:48:59',0.00,800.00,NULL,NULL,'c3783113271e8564',NULL,NULL,'USD',NULL,NULL,'2022-12-07 16:48:59',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (105,187,4,NULL,1,'2022-12-07 16:48:59',0.00,50.00,NULL,NULL,'85a4f3e7330276ef',NULL,NULL,'USD',NULL,NULL,'2022-12-07 16:48:59',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (106,188,4,NULL,1,'2022-12-07 16:48:59',0.00,800.00,NULL,NULL,'e57c473ef4272d7f',NULL,NULL,'USD',NULL,NULL,'2022-12-07 16:48:59',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (107,190,4,NULL,1,'2022-12-07 16:48:59',0.00,50.00,NULL,NULL,'bd4d7d3e62629cf3',NULL,NULL,'USD',NULL,NULL,'2022-12-07 16:48:59',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (108,195,4,NULL,1,'2022-12-07 16:48:59',0.00,50.00,NULL,NULL,'5b107ef0d766ea84',NULL,NULL,'USD',NULL,NULL,'2022-12-07 16:48:59',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (109,197,4,NULL,1,'2022-12-07 16:48:59',0.00,50.00,NULL,NULL,'822d2fb5db51d551',NULL,NULL,'USD',NULL,NULL,'2022-12-07 16:48:59',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (110,198,4,NULL,1,'2022-12-07 16:48:59',0.00,800.00,NULL,NULL,'eec1d8fd11f16d78',NULL,NULL,'USD',NULL,NULL,'2022-12-07 16:48:59',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (111,200,4,NULL,1,'2022-12-07 16:48:59',0.00,800.00,NULL,NULL,'4e8db3ad1b40bfc5',NULL,NULL,'USD',NULL,NULL,'2022-12-07 16:48:59',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (112,201,4,NULL,1,'2022-12-07 16:48:59',0.00,50.00,NULL,NULL,'5031470f467d1aa6',NULL,NULL,'USD',NULL,NULL,'2022-12-07 16:48:59',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0); + (1,2,1,NULL,4,'2013-01-25 11:10:21',0.00,125.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'April Mailer 1',NULL,NULL,0,0,1,NULL,'1041',NULL,NULL,NULL,NULL,0), + (2,4,1,NULL,1,'2020-10-25 11:10:21',0.00,50.00,NULL,NULL,'P20901X1',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Online: Save the Penguins',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (3,6,1,NULL,4,'2016-12-30 22:10:21',0.00,25.00,NULL,NULL,'GBP12',NULL,NULL,'GBP',NULL,NULL,NULL,NULL,'April Mailer 1',NULL,NULL,0,0,1,NULL,'2095',NULL,NULL,NULL,NULL,0), + (4,8,1,NULL,4,'2020-10-25 11:10:21',0.00,50.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Online: Save the Penguins',NULL,NULL,0,0,1,NULL,'10552',NULL,NULL,NULL,NULL,0), + (5,4,1,NULL,1,'2020-10-25 11:10:21',0.00,50.00,NULL,NULL,'Q90901X1',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Online: Save the Penguins',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (6,16,1,NULL,4,'2022-11-01 10:28:21',0.00,500.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'April Mailer 1',NULL,NULL,0,0,1,NULL,'509',NULL,NULL,NULL,NULL,0), + (7,19,1,NULL,1,'2023-01-23 11:10:21',0.00,1750.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Online: Save the Penguins',NULL,NULL,0,0,1,NULL,'102',NULL,NULL,NULL,NULL,0), + (8,82,1,NULL,1,'2022-06-02 19:21:21',0.00,50.00,NULL,NULL,'P20193L2',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Online: Save the Penguins',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (9,92,1,NULL,1,'2022-02-25 11:10:21',0.00,10.00,NULL,NULL,'P40232Y3',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Online: Help CiviCRM',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (10,34,1,NULL,1,'2018-09-02 13:10:21',0.00,250.00,NULL,NULL,'P20193L6',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Online: Help CiviCRM',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (11,71,1,NULL,1,'2023-01-24 07:10:21',0.00,500.00,NULL,NULL,'PL71',NULL,NULL,'JPY',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (12,43,1,NULL,1,'2021-10-25 00:37:01',0.00,50.00,NULL,NULL,'P291X1',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Online: Save the Penguins',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (13,32,1,NULL,1,'2022-10-25 00:00:00',0.00,50.00,NULL,NULL,'PL32I',NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (14,32,1,NULL,1,'2022-11-25 00:00:00',0.00,50.00,NULL,NULL,'PL32II',NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (15,59,1,NULL,1,'2021-10-25 11:10:21',0.00,25.00,NULL,NULL,'PL32I591',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Recurring contribution',NULL,1,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (16,59,1,NULL,1,'2021-11-25 11:10:21',0.00,25.00,NULL,NULL,'PL32I592',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Recurring contribution',NULL,1,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (17,59,1,NULL,1,'2021-12-25 11:10:21',0.00,25.00,NULL,NULL,'PL32I593',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Recurring contribution',NULL,1,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (18,59,1,NULL,1,'2022-01-25 11:10:21',0.00,25.00,NULL,NULL,'PL32I594',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Recurring contribution',NULL,1,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (19,59,1,NULL,1,'2022-02-25 11:10:21',0.00,25.00,NULL,NULL,'PL32I595',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Recurring contribution',NULL,1,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (20,59,1,NULL,1,'2022-03-25 11:10:21',0.00,25.00,NULL,NULL,'PL32I596',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Recurring contribution',NULL,1,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (21,59,1,NULL,1,'2022-04-25 11:10:21',0.00,25.00,NULL,NULL,'PL32I597',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Recurring contribution',NULL,1,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (22,59,1,NULL,1,'2022-05-25 11:10:21',0.00,25.00,NULL,NULL,'PL32I598',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Recurring contribution',NULL,1,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (23,59,1,NULL,1,'2022-06-25 11:10:21',0.00,25.00,NULL,NULL,'PL32I599',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Recurring contribution',NULL,1,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (24,59,1,NULL,1,'2022-07-25 11:10:21',0.00,25.00,NULL,NULL,'PL32I5910',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Recurring contribution',NULL,1,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (25,59,1,NULL,1,'2022-08-25 11:10:21',0.00,25.00,NULL,NULL,'PL32I5911',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Recurring contribution',NULL,1,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (26,99,1,NULL,1,'2022-05-25 11:10:21',0.00,10.00,NULL,NULL,'PL32I991',NULL,NULL,'CAD',NULL,NULL,NULL,NULL,'Recurring contribution',NULL,2,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (27,99,1,NULL,1,'2022-06-25 11:10:21',0.00,10.00,NULL,NULL,'PL32I992',NULL,NULL,'CAD',NULL,NULL,NULL,NULL,'Recurring contribution',NULL,2,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (28,99,1,NULL,1,'2022-07-25 11:10:21',0.00,10.00,NULL,NULL,'PL32I993',NULL,NULL,'CAD',NULL,NULL,NULL,NULL,'Recurring contribution',NULL,2,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (29,99,1,NULL,1,'2022-08-25 11:10:21',0.00,10.00,NULL,NULL,'PL32I994',NULL,NULL,'CAD',NULL,NULL,NULL,NULL,'Recurring contribution',NULL,2,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (30,99,1,NULL,1,'2022-09-25 11:10:21',0.00,10.00,NULL,NULL,'PL32I995',NULL,NULL,'CAD',NULL,NULL,NULL,NULL,'Recurring contribution',NULL,2,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (31,103,1,NULL,1,'2022-12-25 11:10:21',0.00,5.00,NULL,NULL,'PL32I1031',NULL,NULL,'EUR',NULL,NULL,NULL,NULL,'Recurring contribution',NULL,3,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (32,134,2,NULL,1,'2023-01-25 11:10:21',0.00,100.00,NULL,NULL,'b6c6dc6a7ff26fdd',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (33,168,2,NULL,1,'2023-01-25 11:10:21',0.00,50.00,NULL,NULL,'524eae9386105d49',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (34,11,2,NULL,1,'2023-01-25 11:10:21',0.00,100.00,NULL,NULL,'5fb149937591d173',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (35,99,2,NULL,1,'2023-01-25 11:10:21',0.00,50.00,NULL,NULL,'684db73560bf4885',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (36,72,2,NULL,1,'2023-01-25 11:10:21',0.00,50.00,NULL,NULL,'f58b3dc1a3354e55',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (37,152,2,NULL,1,'2023-01-25 11:10:21',0.00,50.00,NULL,NULL,'93ac74a6be0a542b',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (38,194,2,NULL,1,'2023-01-25 11:10:21',0.00,100.00,NULL,NULL,'a13cefe561e26454',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (39,16,2,NULL,1,'2023-01-25 11:10:21',0.00,50.00,NULL,NULL,'ac53b76b8d60dc07',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (40,154,2,NULL,1,'2023-01-25 11:10:21',0.00,100.00,NULL,NULL,'f3dc6b4534eb5b24',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (41,13,2,NULL,1,'2023-01-25 11:10:21',0.00,50.00,NULL,NULL,'d16391f8df9b0127',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (42,153,2,NULL,1,'2023-01-25 11:10:21',0.00,1200.00,NULL,NULL,'40b57706eae6631d',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Lifetime Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (43,8,2,NULL,1,'2023-01-25 11:10:21',0.00,50.00,NULL,NULL,'3d8f58f681c83a95',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (44,165,2,NULL,1,'2023-01-25 11:10:21',0.00,100.00,NULL,NULL,'97aa0294057737a7',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (45,91,2,NULL,1,'2023-01-25 11:10:21',0.00,50.00,NULL,NULL,'f31691c305ce96cf',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (46,193,2,NULL,1,'2023-01-25 11:10:21',0.00,100.00,NULL,NULL,'dc4127b9dff93a89',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (47,115,2,NULL,1,'2023-01-25 11:10:21',0.00,50.00,NULL,NULL,'15865089a5bb5a73',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (48,169,2,NULL,1,'2023-01-25 11:10:21',0.00,100.00,NULL,NULL,'d7b0e77c2b1786d7',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (49,155,2,NULL,1,'2023-01-25 11:10:21',0.00,50.00,NULL,NULL,'2000bc00e742b5de',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (50,44,2,NULL,1,'2023-01-25 11:10:21',0.00,100.00,NULL,NULL,'92a89478f6a8b7b3',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (51,52,2,NULL,1,'2023-01-25 11:10:21',0.00,50.00,NULL,NULL,'b925d5e40395d78a',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (52,31,2,NULL,1,'2023-01-25 11:10:21',0.00,100.00,NULL,NULL,'2380d65512d9d406',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (53,138,2,NULL,1,'2023-01-25 11:10:21',0.00,1200.00,NULL,NULL,'de94057b871e3b98',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Lifetime Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (54,49,2,NULL,1,'2023-01-25 11:10:21',0.00,100.00,NULL,NULL,'84eeafedd1548bde',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (55,21,2,NULL,1,'2023-01-25 11:10:21',0.00,50.00,NULL,NULL,'8a7627b3bbbda1bf',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (56,100,2,NULL,1,'2023-01-25 11:10:21',0.00,100.00,NULL,NULL,'282d04b437d9a14d',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (57,81,2,NULL,1,'2023-01-25 11:10:21',0.00,50.00,NULL,NULL,'f865e42dad3d50cf',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (58,110,2,NULL,1,'2023-01-25 11:10:21',0.00,100.00,NULL,NULL,'844363646dc18acc',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (59,187,2,NULL,1,'2023-01-25 11:10:21',0.00,50.00,NULL,NULL,'935fbea586c2a2cb',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (60,144,2,NULL,1,'2023-01-25 11:10:21',0.00,100.00,NULL,NULL,'6d0b7db4c6f2716c',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (61,71,2,NULL,1,'2023-01-25 11:10:21',0.00,100.00,NULL,NULL,'ac0936fc804ebcc3',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (63,194,4,NULL,1,'2023-01-25 11:10:21',0.00,50.00,NULL,NULL,'90747ff7f8788f0d',NULL,NULL,'USD',NULL,NULL,'2023-01-25 11:10:21',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (64,113,4,NULL,1,'2023-01-25 11:10:21',0.00,50.00,NULL,NULL,'a4fc117f88dc8da0',NULL,NULL,'USD',NULL,NULL,'2023-01-25 11:10:21',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (65,13,4,NULL,1,'2023-01-25 11:10:21',0.00,800.00,NULL,NULL,'723c76b6818d3ac6',NULL,NULL,'USD',NULL,NULL,'2023-01-25 11:10:21',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (66,27,4,NULL,1,'2023-01-25 11:10:21',0.00,50.00,NULL,NULL,'132e61fa1e10d161',NULL,NULL,'USD',NULL,NULL,'2023-01-25 11:10:21',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (67,111,4,NULL,1,'2023-01-25 11:10:21',0.00,50.00,NULL,NULL,'249cedf705163304',NULL,NULL,'USD',NULL,NULL,'2023-01-25 11:10:21',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (68,18,4,NULL,1,'2023-01-25 11:10:21',0.00,800.00,NULL,NULL,'e2db4ec1d7a6e2a9',NULL,NULL,'USD',NULL,NULL,'2023-01-25 11:10:21',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (69,170,4,NULL,1,'2023-01-25 11:10:21',0.00,50.00,NULL,NULL,'41cc55bcc280074e',NULL,NULL,'USD',NULL,NULL,'2023-01-25 11:10:21',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (70,146,4,NULL,1,'2023-01-25 11:10:21',0.00,50.00,NULL,NULL,'3714c4877c403a0a',NULL,NULL,'USD',NULL,NULL,'2023-01-25 11:10:21',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (71,43,4,NULL,1,'2023-01-25 11:10:21',0.00,800.00,NULL,NULL,'d9fabe07d6ee2a4f',NULL,NULL,'USD',NULL,NULL,'2023-01-25 11:10:21',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (72,54,4,NULL,1,'2023-01-25 11:10:21',0.00,50.00,NULL,NULL,'14d6a74b07cd686e',NULL,NULL,'USD',NULL,NULL,'2023-01-25 11:10:21',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (73,80,4,NULL,1,'2023-01-25 11:10:21',0.00,50.00,NULL,NULL,'97222a2adc929f95',NULL,NULL,'USD',NULL,NULL,'2023-01-25 11:10:21',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (74,96,4,NULL,1,'2023-01-25 11:10:21',0.00,800.00,NULL,NULL,'92b29dbaab5b5382',NULL,NULL,'USD',NULL,NULL,'2023-01-25 11:10:21',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (75,180,4,NULL,1,'2023-01-25 11:10:21',0.00,50.00,NULL,NULL,'0f0dc0093dbb71df',NULL,NULL,'USD',NULL,NULL,'2023-01-25 11:10:21',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (76,48,4,NULL,1,'2023-01-25 11:10:21',0.00,50.00,NULL,NULL,'968bcdf019e31319',NULL,NULL,'USD',NULL,NULL,'2023-01-25 11:10:21',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (77,159,4,NULL,1,'2023-01-25 11:10:21',0.00,800.00,NULL,NULL,'5c882a4cf827f611',NULL,NULL,'USD',NULL,NULL,'2023-01-25 11:10:21',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (78,179,4,NULL,1,'2023-01-25 11:10:21',0.00,50.00,NULL,NULL,'47d2b289214cb577',NULL,NULL,'USD',NULL,NULL,'2023-01-25 11:10:21',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (79,86,4,NULL,1,'2023-01-25 11:10:21',0.00,50.00,NULL,NULL,'f40f7c487d1572c8',NULL,NULL,'USD',NULL,NULL,'2023-01-25 11:10:21',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (80,134,4,NULL,1,'2023-01-25 11:10:21',0.00,800.00,NULL,NULL,'0c09c40aebba1a70',NULL,NULL,'USD',NULL,NULL,'2023-01-25 11:10:21',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (81,166,4,NULL,1,'2023-01-25 11:10:21',0.00,50.00,NULL,NULL,'677948275bd8bbe2',NULL,NULL,'USD',NULL,NULL,'2023-01-25 11:10:21',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (82,118,4,NULL,1,'2023-01-25 11:10:21',0.00,50.00,NULL,NULL,'5f98b9b08c61524a',NULL,NULL,'USD',NULL,NULL,'2023-01-25 11:10:21',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (83,93,4,NULL,1,'2023-01-25 11:10:21',0.00,800.00,NULL,NULL,'4c7fb6e2279af937',NULL,NULL,'USD',NULL,NULL,'2023-01-25 11:10:21',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (84,88,4,NULL,1,'2023-01-25 11:10:21',0.00,50.00,NULL,NULL,'7c06ef857fa9df61',NULL,NULL,'USD',NULL,NULL,'2023-01-25 11:10:21',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (85,65,4,NULL,1,'2023-01-25 11:10:21',0.00,50.00,NULL,NULL,'1613371d0121f1de',NULL,NULL,'USD',NULL,NULL,'2023-01-25 11:10:21',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (86,157,4,NULL,1,'2023-01-25 11:10:21',0.00,800.00,NULL,NULL,'406ee71fc2a168cc',NULL,NULL,'USD',NULL,NULL,'2023-01-25 11:10:21',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (87,97,4,NULL,1,'2023-01-25 11:10:21',0.00,800.00,NULL,NULL,'60cf8ecd63fc87cb',NULL,NULL,'USD',NULL,NULL,'2023-01-25 11:10:21',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (88,19,4,NULL,1,'2023-01-25 11:10:21',0.00,50.00,NULL,NULL,'5cbf94e945409735',NULL,NULL,'USD',NULL,NULL,'2023-01-25 11:10:21',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (89,190,4,NULL,1,'2023-01-25 11:10:21',0.00,50.00,NULL,NULL,'b6136fdf513a2bfc',NULL,NULL,'USD',NULL,NULL,'2023-01-25 11:10:21',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (90,42,4,NULL,1,'2023-01-25 11:10:21',0.00,800.00,NULL,NULL,'8eca9defb26ad067',NULL,NULL,'USD',NULL,NULL,'2023-01-25 11:10:21',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (91,79,4,NULL,1,'2023-01-25 11:10:21',0.00,50.00,NULL,NULL,'209cc0030a3cc9dc',NULL,NULL,'USD',NULL,NULL,'2023-01-25 11:10:21',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (92,44,4,NULL,1,'2023-01-25 11:10:21',0.00,50.00,NULL,NULL,'8ee25cd47244738d',NULL,NULL,'USD',NULL,NULL,'2023-01-25 11:10:21',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (93,109,4,NULL,1,'2023-01-25 11:10:21',0.00,800.00,NULL,NULL,'0ec26248b7992a1c',NULL,NULL,'USD',NULL,NULL,'2023-01-25 11:10:21',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (94,82,4,NULL,1,'2023-01-25 11:10:21',0.00,50.00,NULL,NULL,'b37d6dd8e469cf14',NULL,NULL,'USD',NULL,NULL,'2023-01-25 11:10:21',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (95,127,4,NULL,1,'2023-01-25 11:10:21',0.00,50.00,NULL,NULL,'d91f8fbff72c8085',NULL,NULL,'USD',NULL,NULL,'2023-01-25 11:10:21',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (96,100,4,NULL,1,'2023-01-25 11:10:21',0.00,800.00,NULL,NULL,'89fc6aeafe4c712e',NULL,NULL,'USD',NULL,NULL,'2023-01-25 11:10:21',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (97,21,4,NULL,1,'2023-01-25 11:10:21',0.00,50.00,NULL,NULL,'31c23b91e6f05713',NULL,NULL,'USD',NULL,NULL,'2023-01-25 11:10:21',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (98,64,4,NULL,1,'2023-01-25 11:10:21',0.00,50.00,NULL,NULL,'1b280cb8b867e92d',NULL,NULL,'USD',NULL,NULL,'2023-01-25 11:10:21',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (99,183,4,NULL,1,'2023-01-25 11:10:21',0.00,800.00,NULL,NULL,'894693ee0d7ef1a6',NULL,NULL,'USD',NULL,NULL,'2023-01-25 11:10:21',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (100,137,4,NULL,1,'2023-01-25 11:10:21',0.00,50.00,NULL,NULL,'661fb5c13b80fc71',NULL,NULL,'USD',NULL,NULL,'2023-01-25 11:10:21',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (101,172,4,NULL,1,'2023-01-25 11:10:21',0.00,50.00,NULL,NULL,'7302e000b85551c0',NULL,NULL,'USD',NULL,NULL,'2023-01-25 11:10:21',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (102,160,4,NULL,1,'2023-01-25 11:10:21',0.00,800.00,NULL,NULL,'6aaef3ee5ccc4d9c',NULL,NULL,'USD',NULL,NULL,'2023-01-25 11:10:21',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (103,124,4,NULL,1,'2023-01-25 11:10:21',0.00,50.00,NULL,NULL,'5c299a9d2cefcc48',NULL,NULL,'USD',NULL,NULL,'2023-01-25 11:10:21',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (104,69,4,NULL,1,'2023-01-25 11:10:21',0.00,50.00,NULL,NULL,'0c33cf3d06281860',NULL,NULL,'USD',NULL,NULL,'2023-01-25 11:10:21',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (105,187,4,NULL,1,'2023-01-25 11:10:21',0.00,800.00,NULL,NULL,'0cb6aeab14482638',NULL,NULL,'USD',NULL,NULL,'2023-01-25 11:10:21',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (106,176,4,NULL,1,'2023-01-25 11:10:21',0.00,50.00,NULL,NULL,'8647f630f0514f82',NULL,NULL,'USD',NULL,NULL,'2023-01-25 11:10:21',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (107,188,4,NULL,1,'2023-01-25 11:10:21',0.00,50.00,NULL,NULL,'36cbda2b0ca06d1d',NULL,NULL,'USD',NULL,NULL,'2023-01-25 11:10:21',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (108,70,4,NULL,1,'2023-01-25 11:10:21',0.00,800.00,NULL,NULL,'93a9a46b13ed2ea1',NULL,NULL,'USD',NULL,NULL,'2023-01-25 11:10:21',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (109,191,4,NULL,1,'2023-01-25 11:10:21',0.00,50.00,NULL,NULL,'6e22090f617217a5',NULL,NULL,'USD',NULL,NULL,'2023-01-25 11:10:21',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (110,123,4,NULL,1,'2023-01-25 11:10:21',0.00,50.00,NULL,NULL,'1b26cc54516d83df',NULL,NULL,'USD',NULL,NULL,'2023-01-25 11:10:21',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (111,83,4,NULL,1,'2023-01-25 11:10:21',0.00,800.00,NULL,NULL,'01829806aa2d025f',NULL,NULL,'USD',NULL,NULL,'2023-01-25 11:10:21',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (112,99,4,NULL,1,'2023-01-25 11:10:21',0.00,800.00,NULL,NULL,'9cf79c424fc687d7',NULL,NULL,'USD',NULL,NULL,'2023-01-25 11:10:21',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0); /*!40000 ALTER TABLE `civicrm_contribution` ENABLE KEYS */; UNLOCK TABLES; @@ -2443,9 +2442,9 @@ UNLOCK TABLES; LOCK TABLES `civicrm_contribution_recur` WRITE; /*!40000 ALTER TABLE `civicrm_contribution_recur` DISABLE KEYS */; INSERT INTO `civicrm_contribution_recur` (`id`, `contact_id`, `amount`, `currency`, `frequency_unit`, `frequency_interval`, `installments`, `start_date`, `create_date`, `modified_date`, `cancel_date`, `cancel_reason`, `end_date`, `processor_id`, `payment_token_id`, `trxn_id`, `invoice_id`, `contribution_status_id`, `is_test`, `cycle_day`, `next_sched_contribution_date`, `failure_count`, `failure_retry_date`, `auto_renew`, `payment_processor_id`, `financial_type_id`, `payment_instrument_id`, `campaign_id`, `is_email_receipt`) VALUES - (1,59,25.00,'USD','month',1,12,'2021-09-07 16:48:59','2022-12-07 16:48:59','2022-12-07 16:48:59',NULL,'',NULL,'CLC45',NULL,'56799',NULL,1,0,1,NULL,0,NULL,0,1,NULL,NULL,NULL,1), - (2,99,10.00,'CAD','month',1,6,'2022-04-07 16:48:59','2022-12-07 16:48:59','2022-12-07 16:48:59','2022-11-07 16:48:59','No longer interested',NULL,'CLR35',NULL,'22799',NULL,3,0,1,NULL,0,NULL,0,1,NULL,NULL,NULL,1), - (3,103,5.00,'EUR','month',3,3,'2022-11-07 16:48:59','2022-12-07 16:48:59','2022-12-07 16:48:59',NULL,'',NULL,'EGR12',NULL,'44889',NULL,5,0,1,'2023-02-07 16:48:59',0,NULL,0,1,NULL,NULL,NULL,1); + (1,59,25.00,'USD','month',1,12,'2021-10-25 11:10:21','2023-01-25 11:10:21','2023-01-25 00:10:21',NULL,'',NULL,'CLC45',NULL,'56799',NULL,1,0,1,NULL,0,NULL,0,1,NULL,NULL,NULL,1), + (2,99,10.00,'CAD','month',1,6,'2022-05-25 11:10:21','2023-01-25 11:10:21','2023-01-25 00:10:21','2022-12-25 11:10:21','No longer interested',NULL,'CLR35',NULL,'22799',NULL,3,0,1,NULL,0,NULL,0,1,NULL,NULL,NULL,1), + (3,103,5.00,'EUR','month',3,3,'2022-12-25 11:10:21','2023-01-25 11:10:21','2023-01-25 00:10:21',NULL,'',NULL,'EGR12',NULL,'44889',NULL,5,0,1,'2023-03-25 11:10:21',0,NULL,0,1,NULL,NULL,NULL,1); /*!40000 ALTER TABLE `civicrm_contribution_recur` ENABLE KEYS */; UNLOCK TABLES; @@ -2456,8 +2455,8 @@ 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,9,95,10.00,'USD',1,1,'Jones Family','Helping Hands',10), - (2,10,95,250.00,'USD',1,1,'Annie and the kids','Annie Helps',10); + (1,9,47,10.00,'USD',1,1,'Jones Family','Helping Hands',10), + (2,10,47,250.00,'USD',1,1,'Annie and the kids','Annie Helps',10); /*!40000 ALTER TABLE `civicrm_contribution_soft` ENABLE KEYS */; UNLOCK TABLES; @@ -3056,7 +3055,7 @@ UNLOCK TABLES; LOCK TABLES `civicrm_domain` WRITE; /*!40000 ALTER TABLE `civicrm_domain` DISABLE KEYS */; INSERT INTO `civicrm_domain` (`id`, `name`, `description`, `version`, `contact_id`, `locales`, `locale_custom_strings`) VALUES - (1,'Default Domain Name',NULL,'5.58.1',1,NULL,'a:1:{s:5:\"en_US\";a:0:{}}'); + (1,'Default Domain Name',NULL,'5.59.0',1,NULL,'a:1:{s:5:\"en_US\";a:0:{}}'); /*!40000 ALTER TABLE `civicrm_domain` ENABLE KEYS */; UNLOCK TABLES; @@ -3068,193 +3067,201 @@ 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',1,0,0,0,NULL,NULL,NULL,NULL), - (2,88,1,'az.lee@spamalot.co.in',1,0,0,0,NULL,NULL,NULL,NULL), - (3,88,1,'ashleyl@mymail.com',0,0,0,0,NULL,NULL,NULL,NULL), - (4,6,1,'rodrigogrant69@sample.co.nz',1,0,0,0,NULL,NULL,NULL,NULL), - (5,185,1,'wilson.brent@fishmail.info',1,0,0,0,NULL,NULL,NULL,NULL), - (6,185,1,'wilson.b.brent@spamalot.co.pl',0,0,0,0,NULL,NULL,NULL,NULL), - (7,150,1,'cruz.troy86@sample.co.uk',1,0,0,0,NULL,NULL,NULL,NULL), - (8,150,1,'cruzt10@testing.co.nz',0,0,0,0,NULL,NULL,NULL,NULL), - (9,106,1,'smithr85@sample.info',1,0,0,0,NULL,NULL,NULL,NULL), - (10,106,1,'rebekahsmith@sample.org',0,0,0,0,NULL,NULL,NULL,NULL), - (11,197,1,'smith.miguel@airmail.org',1,0,0,0,NULL,NULL,NULL,NULL), - (12,197,1,'smith.d.miguel@fakemail.co.uk',0,0,0,0,NULL,NULL,NULL,NULL), - (13,190,1,'wagner.kathleen77@spamalot.co.nz',1,0,0,0,NULL,NULL,NULL,NULL), - (14,7,1,'erikdimitrov@notmail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL), - (15,111,1,'ev.jacobs@infomail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL), - (16,131,1,'rayc5@spamalot.biz',1,0,0,0,NULL,NULL,NULL,NULL), - (17,57,1,'jameson.kandace@infomail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL), - (18,57,1,'kandacej8@fishmail.info',0,0,0,0,NULL,NULL,NULL,NULL), - (19,84,1,'bh.barkley81@fishmail.co.in',1,0,0,0,NULL,NULL,NULL,NULL), - (20,184,1,'jeromec@airmail.co.in',1,0,0,0,NULL,NULL,NULL,NULL), - (21,98,1,'olsene@testing.info',1,0,0,0,NULL,NULL,NULL,NULL), - (22,166,1,'lashawndacooper@example.co.uk',1,0,0,0,NULL,NULL,NULL,NULL), - (23,166,1,'cooperl@testing.net',0,0,0,0,NULL,NULL,NULL,NULL), - (24,48,1,'jeromeb12@testmail.net',1,0,0,0,NULL,NULL,NULL,NULL), - (25,48,1,'jeromeb@testmail.co.in',0,0,0,0,NULL,NULL,NULL,NULL), - (26,9,1,'kl.gonzlez98@sample.co.uk',1,0,0,0,NULL,NULL,NULL,NULL), - (27,144,1,'cruzs@testing.info',1,0,0,0,NULL,NULL,NULL,NULL), - (28,23,1,'wagner.barry@fishmail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL), - (29,33,1,'jacobp@mymail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL), - (30,33,1,'parker.jacob@testmail.co.pl',0,0,0,0,NULL,NULL,NULL,NULL), - (31,99,1,'wilson.felisha53@example.com',1,0,0,0,NULL,NULL,NULL,NULL), - (32,58,1,'olsen.maria@testing.co.pl',1,0,0,0,NULL,NULL,NULL,NULL), - (33,58,1,'mariaolsen@spamalot.co.in',0,0,0,0,NULL,NULL,NULL,NULL), - (34,82,1,'terrell.bob96@mymail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL), - (35,72,1,'ivanov.lincoln39@sample.co.in',1,0,0,0,NULL,NULL,NULL,NULL), - (36,72,1,'ivanov.lincoln@mymail.co.in',0,0,0,0,NULL,NULL,NULL,NULL), - (37,93,1,'barkley.c.elbert@fishmail.net',1,0,0,0,NULL,NULL,NULL,NULL), - (38,18,1,'barkley.tanya67@spamalot.co.nz',1,0,0,0,NULL,NULL,NULL,NULL), - (39,61,1,'merrier@airmail.info',1,0,0,0,NULL,NULL,NULL,NULL), - (40,61,1,'mreynolds@testing.biz',0,0,0,0,NULL,NULL,NULL,NULL), - (41,195,1,'tanyay@example.co.uk',1,0,0,0,NULL,NULL,NULL,NULL), - (42,101,1,'russellj33@example.com',1,0,0,0,NULL,NULL,NULL,NULL), - (43,101,1,'rjameson73@sample.co.uk',0,0,0,0,NULL,NULL,NULL,NULL), - (44,155,1,'mbarkley@mymail.biz',1,0,0,0,NULL,NULL,NULL,NULL), - (45,155,1,'merriebarkley@spamalot.co.nz',0,0,0,0,NULL,NULL,NULL,NULL), - (46,29,1,'elbertm@sample.co.uk',1,0,0,0,NULL,NULL,NULL,NULL), - (47,136,1,'ashleygonzlez68@mymail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL), - (48,136,1,'gonzlez.j.ashley21@example.co.in',0,0,0,0,NULL,NULL,NULL,NULL), - (49,128,1,'winfordb@spamalot.co.pl',1,0,0,0,NULL,NULL,NULL,NULL), - (50,128,1,'bachman.winford73@sample.biz',0,0,0,0,NULL,NULL,NULL,NULL), - (51,120,1,'valeneb@spamalot.info',1,0,0,0,NULL,NULL,NULL,NULL), - (52,120,1,'blackwell.valene76@testmail.org',0,0,0,0,NULL,NULL,NULL,NULL), - (53,66,1,'gonzlez.brzczysaw@lol.com',1,0,0,0,NULL,NULL,NULL,NULL), - (54,65,1,'justinat@spamalot.com',1,0,0,0,NULL,NULL,NULL,NULL), - (55,65,1,'jterrell@spamalot.org',0,0,0,0,NULL,NULL,NULL,NULL), - (56,170,1,'rosariot@notmail.biz',1,0,0,0,NULL,NULL,NULL,NULL), - (57,183,1,'ivanovw@example.net',1,0,0,0,NULL,NULL,NULL,NULL), - (58,183,1,'ivanov.winford63@example.net',0,0,0,0,NULL,NULL,NULL,NULL), - (59,75,1,'mcreynoldsr@spamalot.co.uk',1,0,0,0,NULL,NULL,NULL,NULL), - (60,75,1,'raymcreynolds@fakemail.org',0,0,0,0,NULL,NULL,NULL,NULL), - (61,52,1,'leet@airmail.net',1,0,0,0,NULL,NULL,NULL,NULL), - (62,47,1,'olsen.a.lawerence@infomail.net',1,0,0,0,NULL,NULL,NULL,NULL), - (63,47,1,'olsenl@testing.co.in',0,0,0,0,NULL,NULL,NULL,NULL), - (64,100,1,'ki.samuels9@fakemail.info',1,0,0,0,NULL,NULL,NULL,NULL), - (65,100,1,'samuelsk@testing.co.pl',0,0,0,0,NULL,NULL,NULL,NULL), - (66,169,1,'erikp@fakemail.net',1,0,0,0,NULL,NULL,NULL,NULL), - (67,108,1,'smith.omar@testmail.co.in',1,0,0,0,NULL,NULL,NULL,NULL), - (68,108,1,'smith.e.omar87@fishmail.info',0,0,0,0,NULL,NULL,NULL,NULL), - (69,87,1,'nielsenh@spamalot.net',1,0,0,0,NULL,NULL,NULL,NULL), - (70,87,1,'herminian@lol.co.nz',0,0,0,0,NULL,NULL,NULL,NULL), - (71,50,1,'ee.cruz42@notmail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL), - (72,50,1,'eleonorc@sample.org',0,0,0,0,NULL,NULL,NULL,NULL), - (73,162,1,'samuelsb@lol.info',1,0,0,0,NULL,NULL,NULL,NULL), - (74,175,1,'jacobs.megan@example.info',1,0,0,0,NULL,NULL,NULL,NULL), - (75,181,1,'wattson.allan@testmail.biz',1,0,0,0,NULL,NULL,NULL,NULL), - (76,80,1,'meib@notmail.net',1,0,0,0,NULL,NULL,NULL,NULL), - (77,80,1,'meib@example.net',0,0,0,0,NULL,NULL,NULL,NULL), - (78,179,1,'gonzlez.kandace@infomail.net',1,0,0,0,NULL,NULL,NULL,NULL), - (79,179,1,'ku.gonzlez72@sample.co.in',0,0,0,0,NULL,NULL,NULL,NULL), - (80,59,1,'olsen.laree@mymail.org',1,0,0,0,NULL,NULL,NULL,NULL), - (81,160,1,'roberts.rebekah71@spamalot.biz',1,0,0,0,NULL,NULL,NULL,NULL), - (82,160,1,'rebekahroberts@testing.net',0,0,0,0,NULL,NULL,NULL,NULL), - (83,196,1,'lashawndamller@sample.co.in',1,0,0,0,NULL,NULL,NULL,NULL), - (84,34,1,'bettycruz28@sample.info',1,0,0,0,NULL,NULL,NULL,NULL), - (85,109,1,'mariaroberts75@fishmail.info',1,0,0,0,NULL,NULL,NULL,NULL), - (86,109,1,'mariar@testing.co.in',0,0,0,0,NULL,NULL,NULL,NULL), - (87,118,1,'brittneywagner99@infomail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL), - (88,132,1,'wagner.s.sanford82@spamalot.co.pl',1,0,0,0,NULL,NULL,NULL,NULL), - (89,132,1,'wagners@notmail.co.nz',0,0,0,0,NULL,NULL,NULL,NULL), - (90,186,1,'ac.jones1@airmail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL), - (91,53,1,'rosarioj88@example.co.in',1,0,0,0,NULL,NULL,NULL,NULL), - (92,121,1,'teddyg48@testing.co.uk',1,0,0,0,NULL,NULL,NULL,NULL), - (93,121,1,'to.gonzlez@testing.org',0,0,0,0,NULL,NULL,NULL,NULL), - (94,154,1,'cooper.ashlie@spamalot.net',1,0,0,0,NULL,NULL,NULL,NULL), - (95,165,1,'gonzlez-coopers67@testmail.org',1,0,0,0,NULL,NULL,NULL,NULL), - (96,149,1,'junkog@example.info',1,0,0,0,NULL,NULL,NULL,NULL), - (97,157,1,'lawerencej@notmail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL), - (98,157,1,'lawerencej95@testmail.co.nz',0,0,0,0,NULL,NULL,NULL,NULL), - (99,127,1,'barkley.kandace@example.biz',1,0,0,0,NULL,NULL,NULL,NULL), - (100,127,1,'barkley.kandace89@notmail.org',0,0,0,0,NULL,NULL,NULL,NULL), - (101,3,1,'sj.jameson-barkley19@airmail.biz',1,0,0,0,NULL,NULL,NULL,NULL), - (102,137,1,'mc.adams@airmail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL), - (103,137,1,'mc.adams@testmail.co.pl',0,0,0,0,NULL,NULL,NULL,NULL), - (104,119,1,'bettya@testmail.biz',1,0,0,0,NULL,NULL,NULL,NULL), - (105,119,1,'bettya84@lol.co.uk',0,0,0,0,NULL,NULL,NULL,NULL), - (106,122,1,'adams.maxwell72@infomail.com',1,0,0,0,NULL,NULL,NULL,NULL), - (107,122,1,'madams@lol.co.pl',0,0,0,0,NULL,NULL,NULL,NULL), - (108,126,1,'mu.parker-jacobs13@testmail.org',1,0,0,0,NULL,NULL,NULL,NULL), - (109,125,1,'jacobsr83@example.biz',1,0,0,0,NULL,NULL,NULL,NULL), - (110,194,1,'jacobs.u.errol@airmail.biz',1,0,0,0,NULL,NULL,NULL,NULL), - (111,194,1,'jacobse12@testing.co.uk',0,0,0,0,NULL,NULL,NULL,NULL), - (112,89,1,'jd.jensen@fakemail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL), - (113,102,1,'jensen-olsen.norris@fakemail.biz',1,0,0,0,NULL,NULL,NULL,NULL), - (114,4,1,'brzczysawj@spamalot.co.pl',1,0,0,0,NULL,NULL,NULL,NULL), - (115,107,1,'santinaj@mymail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL), - (116,107,1,'jensen.santina@lol.info',0,0,0,0,NULL,NULL,NULL,NULL), - (117,129,1,'jensen.k.kandace@example.net',1,0,0,0,NULL,NULL,NULL,NULL), - (118,180,1,'zope.d.lou@testmail.com',1,0,0,0,NULL,NULL,NULL,NULL), - (119,139,1,'zope-yadav.bob@infomail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL), - (120,139,1,'zope-yadav.bob85@airmail.co.in',0,0,0,0,NULL,NULL,NULL,NULL), - (121,86,1,'ti.wattson@testmail.biz',1,0,0,0,NULL,NULL,NULL,NULL), - (122,178,1,'chowski.bernadette@fishmail.com',1,0,0,0,NULL,NULL,NULL,NULL), - (123,105,1,'bettychowski@fishmail.biz',1,0,0,0,NULL,NULL,NULL,NULL), - (124,105,1,'chowski.betty@testmail.co.in',0,0,0,0,NULL,NULL,NULL,NULL), - (125,151,1,'teddys@mymail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL), - (126,193,1,'samuels.k.angelika74@sample.biz',1,0,0,0,NULL,NULL,NULL,NULL), - (127,193,1,'samuelsa32@testmail.info',0,0,0,0,NULL,NULL,NULL,NULL), - (128,145,1,'asamuels50@infomail.biz',1,0,0,0,NULL,NULL,NULL,NULL), - (129,145,1,'ashliesamuels8@testing.co.pl',0,0,0,0,NULL,NULL,NULL,NULL), - (130,112,1,'junkos21@lol.co.in',1,0,0,0,NULL,NULL,NULL,NULL), - (131,112,1,'samuelsj@testmail.co.pl',0,0,0,0,NULL,NULL,NULL,NULL), - (132,96,1,'damariswilson@fishmail.com',1,0,0,0,NULL,NULL,NULL,NULL), - (133,171,1,'wilson.j.herminia@mymail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL), - (134,83,1,'wilson.i.maxwell96@sample.info',1,0,0,0,NULL,NULL,NULL,NULL), - (135,83,1,'mi.wilson@mymail.co.pl',0,0,0,0,NULL,NULL,NULL,NULL), - (136,67,1,'reynoldsj@lol.co.uk',1,0,0,0,NULL,NULL,NULL,NULL), - (137,104,1,'sl.barkley@spamalot.co.nz',1,0,0,0,NULL,NULL,NULL,NULL), - (138,134,1,'reynolds-barkleyk85@mymail.com',1,0,0,0,NULL,NULL,NULL,NULL), - (139,70,1,'bachman.roland@fakemail.com',1,0,0,0,NULL,NULL,NULL,NULL), - (140,176,1,'bbachman32@lol.com',1,0,0,0,NULL,NULL,NULL,NULL), - (141,25,1,'claudiogonzlez@airmail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL), - (142,14,1,'bgonzlez91@notmail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL), - (143,8,1,'gonzlez.rebekah@example.biz',1,0,0,0,NULL,NULL,NULL,NULL), - (144,8,1,'rgonzlez32@sample.info',0,0,0,0,NULL,NULL,NULL,NULL), - (145,21,1,'gonzlez.sharyn68@airmail.com',1,0,0,0,NULL,NULL,NULL,NULL), - (146,21,1,'gonzlez.sharyn66@fakemail.co.pl',0,0,0,0,NULL,NULL,NULL,NULL), - (147,16,1,'aterrell@testing.co.nz',1,0,0,0,NULL,NULL,NULL,NULL), - (148,16,1,'terrell.ashley@mymail.biz',0,0,0,0,NULL,NULL,NULL,NULL), - (149,182,1,'ng.terrell@testmail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL), - (150,69,1,'brittneyt@testmail.biz',1,0,0,0,NULL,NULL,NULL,NULL), - (151,69,1,'brittneyterrell@testmail.biz',0,0,0,0,NULL,NULL,NULL,NULL), - (152,10,1,'nicoleterrell@sample.co.uk',1,0,0,0,NULL,NULL,NULL,NULL), - (153,45,1,'nielsen-mcreynolds.betty@notmail.com',1,0,0,0,NULL,NULL,NULL,NULL), - (154,45,1,'bettynielsen-mcreynolds@example.biz',0,0,0,0,NULL,NULL,NULL,NULL), - (155,49,3,'contact@proctormusic.org',1,0,0,0,NULL,NULL,NULL,NULL), - (156,195,2,'90@proctormusic.org',0,0,0,0,NULL,NULL,NULL,NULL), - (157,55,3,'service@ncfoodtrust.org',1,0,0,0,NULL,NULL,NULL,NULL), - (158,15,3,'contact@ruralschool.org',1,0,0,0,NULL,NULL,NULL,NULL), - (159,198,2,'jones.ashlie@ruralschool.org',1,0,0,0,NULL,NULL,NULL,NULL), - (160,42,3,'contact@unitedsystems.org',1,0,0,0,NULL,NULL,NULL,NULL), - (161,103,2,'wattson.russell72@unitedsystems.org',1,0,0,0,NULL,NULL,NULL,NULL), - (162,168,3,'info@localcenter.org',1,0,0,0,NULL,NULL,NULL,NULL), - (163,58,2,'mariao@localcenter.org',0,0,0,0,NULL,NULL,NULL,NULL), - (164,2,3,'info@sdsportsservices.org',1,0,0,0,NULL,NULL,NULL,NULL), - (165,180,2,'louzope49@sdsportsservices.org',0,0,0,0,NULL,NULL,NULL,NULL), - (166,38,3,'info@californiawellness.org',1,0,0,0,NULL,NULL,NULL,NULL), - (167,32,2,'nicolebachman@californiawellness.org',1,0,0,0,NULL,NULL,NULL,NULL), - (168,43,3,'contact@ecagricultureacademy.org',1,0,0,0,NULL,NULL,NULL,NULL), - (169,179,2,'gonzlezk41@ecagricultureacademy.org',0,0,0,0,NULL,NULL,NULL,NULL), - (170,167,3,'feedback@localservices.org',1,0,0,0,NULL,NULL,NULL,NULL), - (171,89,2,'jensen.jackson67@localservices.org',0,0,0,0,NULL,NULL,NULL,NULL), - (172,24,3,'contact@cadellpartnership.org',1,0,0,0,NULL,NULL,NULL,NULL), - (173,70,2,'rolandbachman13@cadellpartnership.org',0,0,0,0,NULL,NULL,NULL,NULL), - (174,64,3,'feedback@communitypartnership.org',1,0,0,0,NULL,NULL,NULL,NULL), - (175,194,2,'erroljacobs16@communitypartnership.org',0,0,0,0,NULL,NULL,NULL,NULL), - (176,36,3,'contact@foroughmusic.org',1,0,0,0,NULL,NULL,NULL,NULL), - (177,171,2,'herminiawilson@foroughmusic.org',0,0,0,0,NULL,NULL,NULL,NULL), - (178,192,3,'sales@globalschool.org',1,0,0,0,NULL,NULL,NULL,NULL), - (179,99,2,'felishaw60@globalschool.org',0,0,0,0,NULL,NULL,NULL,NULL), - (180,11,3,'sales@pelzereducation.org',1,0,0,0,NULL,NULL,NULL,NULL), - (181,113,3,'feedback@friendsfamilynetwork.org',1,0,0,0,NULL,NULL,NULL,NULL), - (182,137,2,'mc.adams@friendsfamilynetwork.org',0,0,0,0,NULL,NULL,NULL,NULL), - (183,124,3,'service@nalcrestadvocacy.org',1,0,0,0,NULL,NULL,NULL,NULL), - (184,16,2,'terrella39@nalcrestadvocacy.org',0,0,0,0,NULL,NULL,NULL,NULL), - (185,202,1,'jenny@example.com',1,0,0,0,NULL,NULL,NULL,NULL), - (186,NULL,1,'development@example.org',0,0,0,0,NULL,NULL,NULL,NULL), - (187,NULL,1,'tournaments@example.org',0,0,0,0,NULL,NULL,NULL,NULL), - (188,NULL,1,'celebration@example.org',0,0,0,0,NULL,NULL,NULL,NULL); + (2,199,1,'billyjameson17@notmail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL), + (3,47,1,'ar.cooper67@testmail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL), + (4,154,1,'deforest.brittney29@airmail.biz',1,0,0,0,NULL,NULL,NULL,NULL), + (5,154,1,'deforestb@mymail.co.uk',0,0,0,0,NULL,NULL,NULL,NULL), + (6,50,1,'merriegrant@infomail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL), + (7,75,1,'josefai65@example.info',1,0,0,0,NULL,NULL,NULL,NULL), + (8,4,1,'ebachman@fishmail.com',1,0,0,0,NULL,NULL,NULL,NULL), + (9,4,1,'eleonorbachman66@mymail.info',0,0,0,0,NULL,NULL,NULL,NULL), + (10,92,1,'sz.cooper50@example.com',1,0,0,0,NULL,NULL,NULL,NULL), + (11,92,1,'cooper.shauna@spamalot.org',0,0,0,0,NULL,NULL,NULL,NULL), + (12,31,1,'teddyjensen45@mymail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL), + (13,158,1,'teddyrobertson6@lol.org',1,0,0,0,NULL,NULL,NULL,NULL), + (14,158,1,'robertson.b.teddy78@fishmail.co.uk',0,0,0,0,NULL,NULL,NULL,NULL), + (15,137,1,'tobylee@mymail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL), + (16,137,1,'tobyl17@lol.co.uk',0,0,0,0,NULL,NULL,NULL,NULL), + (17,138,1,'reynoldsi@example.co.pl',1,0,0,0,NULL,NULL,NULL,NULL), + (18,138,1,'reynoldsi@testmail.co.uk',0,0,0,0,NULL,NULL,NULL,NULL), + (19,13,1,'meiy27@notmail.biz',1,0,0,0,NULL,NULL,NULL,NULL), + (20,99,1,'brigettew19@fakemail.biz',1,0,0,0,NULL,NULL,NULL,NULL), + (21,2,1,'mcreynolds.justina43@mymail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL), + (22,113,1,'meganb50@fakemail.info',1,0,0,0,NULL,NULL,NULL,NULL), + (23,130,1,'ashley15@notmail.org',1,0,0,0,NULL,NULL,NULL,NULL), + (24,130,1,'chowski.ashley@notmail.co.in',0,0,0,0,NULL,NULL,NULL,NULL), + (25,108,1,'miguelcooper@fishmail.biz',1,0,0,0,NULL,NULL,NULL,NULL), + (26,14,1,'parker.w.billy@testmail.biz',1,0,0,0,NULL,NULL,NULL,NULL), + (27,14,1,'billyp96@lol.org',0,0,0,0,NULL,NULL,NULL,NULL), + (28,198,1,'craigp99@infomail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL), + (29,198,1,'prentice.craig@infomail.co.pl',0,0,0,0,NULL,NULL,NULL,NULL), + (30,86,1,'co.parker26@mymail.biz',1,0,0,0,NULL,NULL,NULL,NULL), + (31,161,1,'jacobsj@notmail.net',1,0,0,0,NULL,NULL,NULL,NULL), + (32,161,1,'jacobs.juliann29@example.co.nz',0,0,0,0,NULL,NULL,NULL,NULL), + (33,165,1,'russells@testmail.info',1,0,0,0,NULL,NULL,NULL,NULL), + (34,165,1,'russellsmith@infomail.org',0,0,0,0,NULL,NULL,NULL,NULL), + (35,37,1,'wilsonn@fishmail.net',1,0,0,0,NULL,NULL,NULL,NULL), + (36,37,1,'wilson.norris33@sample.co.nz',0,0,0,0,NULL,NULL,NULL,NULL), + (37,141,1,'reynolds.barry45@fakemail.info',1,0,0,0,NULL,NULL,NULL,NULL), + (38,170,1,'darendeforest19@testing.com',1,0,0,0,NULL,NULL,NULL,NULL), + (39,41,1,'my.cooper33@fakemail.info',1,0,0,0,NULL,NULL,NULL,NULL), + (40,41,1,'cooperm12@notmail.co.nz',0,0,0,0,NULL,NULL,NULL,NULL), + (41,21,1,'smithi90@lol.com',1,0,0,0,NULL,NULL,NULL,NULL), + (42,181,1,'olsenm@lol.org',1,0,0,0,NULL,NULL,NULL,NULL), + (43,73,1,'ivanov.scarlet@mymail.org',1,0,0,0,NULL,NULL,NULL,NULL), + (44,73,1,'scarletivanov@testing.com',0,0,0,0,NULL,NULL,NULL,NULL), + (45,53,1,'jameson.scott@fakemail.org',1,0,0,0,NULL,NULL,NULL,NULL), + (46,53,1,'scottjameson@example.com',0,0,0,0,NULL,NULL,NULL,NULL), + (47,178,1,'ll.ivanov@spamalot.info',1,0,0,0,NULL,NULL,NULL,NULL), + (48,178,1,'lincolnivanov@notmail.co.nz',0,0,0,0,NULL,NULL,NULL,NULL), + (49,155,1,'chowski.tanya79@example.co.uk',1,0,0,0,NULL,NULL,NULL,NULL), + (50,155,1,'tanyachowski86@fakemail.co.in',0,0,0,0,NULL,NULL,NULL,NULL), + (51,177,1,'aparker25@lol.org',1,0,0,0,NULL,NULL,NULL,NULL), + (52,116,1,'zope.billy@example.com',1,0,0,0,NULL,NULL,NULL,NULL), + (53,171,1,'laree91@fakemail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL), + (54,129,1,'ivanov.rodrigo@example.co.in',1,0,0,0,NULL,NULL,NULL,NULL), + (55,51,1,'teresaprentice@example.net',1,0,0,0,NULL,NULL,NULL,NULL), + (56,51,1,'tm.prentice@notmail.co.in',0,0,0,0,NULL,NULL,NULL,NULL), + (57,173,1,'kathlynrobertson27@infomail.org',1,0,0,0,NULL,NULL,NULL,NULL), + (58,134,1,'sd.wattson@testmail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL), + (59,23,1,'roberts.ivey@notmail.biz',1,0,0,0,NULL,NULL,NULL,NULL), + (60,23,1,'roberts.ivey@fishmail.co.in',0,0,0,0,NULL,NULL,NULL,NULL), + (61,118,1,'cruzj98@sample.net',1,0,0,0,NULL,NULL,NULL,NULL), + (62,118,1,'cruzj74@testing.org',0,0,0,0,NULL,NULL,NULL,NULL), + (63,82,1,'tterrell63@spamalot.org',1,0,0,0,NULL,NULL,NULL,NULL), + (64,72,1,'clintm@mymail.info',1,0,0,0,NULL,NULL,NULL,NULL), + (65,72,1,'clintmller34@sample.biz',0,0,0,0,NULL,NULL,NULL,NULL), + (66,71,1,'wilsons50@testing.co.uk',1,0,0,0,NULL,NULL,NULL,NULL), + (67,43,1,'jones.bernadette@example.com',1,0,0,0,NULL,NULL,NULL,NULL), + (68,182,1,'robertson.delana@airmail.org',1,0,0,0,NULL,NULL,NULL,NULL), + (69,182,1,'robertsond@fakemail.net',0,0,0,0,NULL,NULL,NULL,NULL), + (70,52,1,'elbertz@mymail.com',1,0,0,0,NULL,NULL,NULL,NULL), + (71,36,1,'deforest.teresa19@fishmail.org',1,0,0,0,NULL,NULL,NULL,NULL), + (72,36,1,'deforest.l.teresa17@testmail.com',0,0,0,0,NULL,NULL,NULL,NULL), + (73,39,1,'bachmant26@fishmail.info',1,0,0,0,NULL,NULL,NULL,NULL), + (74,39,1,'tbachman97@fakemail.org',0,0,0,0,NULL,NULL,NULL,NULL), + (75,159,1,'russellwilson68@notmail.biz',1,0,0,0,NULL,NULL,NULL,NULL), + (76,168,1,'santinao41@fishmail.co.in',1,0,0,0,NULL,NULL,NULL,NULL), + (77,136,1,'felishab@sample.biz',1,0,0,0,NULL,NULL,NULL,NULL), + (78,94,1,'barkley.s.bryon97@mymail.net',1,0,0,0,NULL,NULL,NULL,NULL), + (79,40,1,'rwagner@notmail.net',1,0,0,0,NULL,NULL,NULL,NULL), + (80,40,1,'rolandwagner@airmail.info',0,0,0,0,NULL,NULL,NULL,NULL), + (81,69,1,'andrewterry@testmail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL), + (82,69,1,'terry.andrew36@testing.net',0,0,0,0,NULL,NULL,NULL,NULL), + (83,12,1,'maganterry@infomail.biz',1,0,0,0,NULL,NULL,NULL,NULL), + (84,143,1,'cooper-joneso@spamalot.co.nz',1,0,0,0,NULL,NULL,NULL,NULL), + (85,27,1,'an.cooper-jones@mymail.org',1,0,0,0,NULL,NULL,NULL,NULL), + (86,27,1,'an.cooper-jones@fishmail.co.in',0,0,0,0,NULL,NULL,NULL,NULL), + (87,122,1,'mller.claudio25@mymail.net',1,0,0,0,NULL,NULL,NULL,NULL), + (88,122,1,'mller.claudio65@infomail.com',0,0,0,0,NULL,NULL,NULL,NULL), + (89,157,1,'mllera@notmail.net',1,0,0,0,NULL,NULL,NULL,NULL), + (90,157,1,'mller.a.alexia@testmail.co.pl',0,0,0,0,NULL,NULL,NULL,NULL), + (91,150,1,'bu.gonzlez@infomail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL), + (92,150,1,'gonzlez.billy16@spamalot.co.pl',0,0,0,0,NULL,NULL,NULL,NULL), + (93,62,1,'kaceycruz-gonzlez85@example.co.uk',1,0,0,0,NULL,NULL,NULL,NULL), + (94,64,1,'mgonzlez@testmail.net',1,0,0,0,NULL,NULL,NULL,NULL), + (95,64,1,'maxwellg34@spamalot.co.nz',0,0,0,0,NULL,NULL,NULL,NULL), + (96,106,1,'dazs@notmail.org',1,0,0,0,NULL,NULL,NULL,NULL), + (97,106,1,'daz.sonny55@spamalot.biz',0,0,0,0,NULL,NULL,NULL,NULL), + (98,3,1,'daz.kenny92@testing.biz',1,0,0,0,NULL,NULL,NULL,NULL), + (99,3,1,'dazk@testmail.com',0,0,0,0,NULL,NULL,NULL,NULL), + (100,22,1,'russelldaz80@airmail.com',1,0,0,0,NULL,NULL,NULL,NULL), + (101,131,1,'wilson.i.rosario47@airmail.co.in',1,0,0,0,NULL,NULL,NULL,NULL), + (102,38,1,'winfordd@example.net',1,0,0,0,NULL,NULL,NULL,NULL), + (103,38,1,'dimitrov.winford46@spamalot.org',0,0,0,0,NULL,NULL,NULL,NULL), + (104,124,1,'swilson-dimitrov36@testmail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL), + (105,124,1,'wilson-dimitrovs26@spamalot.com',0,0,0,0,NULL,NULL,NULL,NULL), + (106,9,1,'jn.wilson-dimitrov@spamalot.co.pl',1,0,0,0,NULL,NULL,NULL,NULL), + (107,100,1,'mjameson@notmail.org',1,0,0,0,NULL,NULL,NULL,NULL), + (108,187,1,'jameson.v.justina@airmail.org',1,0,0,0,NULL,NULL,NULL,NULL), + (109,187,1,'jameson.justina56@fakemail.org',0,0,0,0,NULL,NULL,NULL,NULL), + (110,7,1,'jameson.elbert@airmail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL), + (111,26,1,'terrye@fakemail.biz',1,0,0,0,NULL,NULL,NULL,NULL), + (112,26,1,'terry.errol60@testmail.biz',0,0,0,0,NULL,NULL,NULL,NULL), + (113,91,1,'shaunaterry@spamalot.net',1,0,0,0,NULL,NULL,NULL,NULL), + (114,91,1,'shaunaterry@example.com',0,0,0,0,NULL,NULL,NULL,NULL), + (115,19,1,'sonnyterry@lol.co.uk',1,0,0,0,NULL,NULL,NULL,NULL), + (116,19,1,'terry.g.sonny74@notmail.com',0,0,0,0,NULL,NULL,NULL,NULL), + (117,76,1,'brzczysawjensen33@infomail.net',1,0,0,0,NULL,NULL,NULL,NULL), + (118,109,1,'beulaj@infomail.com',1,0,0,0,NULL,NULL,NULL,NULL), + (119,109,1,'beulaj@notmail.org',0,0,0,0,NULL,NULL,NULL,NULL), + (120,152,1,'adamsm26@example.co.pl',1,0,0,0,NULL,NULL,NULL,NULL), + (121,197,1,'adams.landon@mymail.info',1,0,0,0,NULL,NULL,NULL,NULL), + (122,142,1,'landonz97@example.co.uk',1,0,0,0,NULL,NULL,NULL,NULL), + (123,142,1,'zope.landon89@example.co.uk',0,0,0,0,NULL,NULL,NULL,NULL), + (124,114,1,'roberts.kacey@fishmail.biz',1,0,0,0,NULL,NULL,NULL,NULL), + (125,70,1,'zope-robertss@example.biz',1,0,0,0,NULL,NULL,NULL,NULL), + (126,70,1,'zope-roberts.scarlet@testmail.org',0,0,0,0,NULL,NULL,NULL,NULL), + (127,67,1,'ablackwell@lol.co.nz',1,0,0,0,NULL,NULL,NULL,NULL), + (128,96,1,'zope-blackwellb@notmail.info',1,0,0,0,NULL,NULL,NULL,NULL), + (129,96,1,'bo.zope-blackwell@mymail.org',0,0,0,0,NULL,NULL,NULL,NULL), + (130,44,1,'brigetteb@fishmail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL), + (131,33,1,'blackwellt@testmail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL), + (132,135,1,'eleonorr47@testmail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL), + (133,97,1,'wattson.w.jed70@testmail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL), + (134,97,1,'jw.wattson75@infomail.com',0,0,0,0,NULL,NULL,NULL,NULL), + (135,190,1,'cprentice72@testmail.co.in',1,0,0,0,NULL,NULL,NULL,NULL), + (136,98,1,'prenticea@fakemail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL), + (137,98,1,'an.prentice@airmail.info',0,0,0,0,NULL,NULL,NULL,NULL), + (138,102,1,'prenticer@testing.net',1,0,0,0,NULL,NULL,NULL,NULL), + (139,102,1,'prenticer87@lol.biz',0,0,0,0,NULL,NULL,NULL,NULL), + (140,32,1,'miguelsamuels76@fakemail.net',1,0,0,0,NULL,NULL,NULL,NULL), + (141,180,1,'brents@fishmail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL), + (142,147,1,'bo.nielsen@notmail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL), + (143,49,1,'irvincooper-nielsen@fakemail.co.in',1,0,0,0,NULL,NULL,NULL,NULL), + (144,49,1,'cooper-nielsen.irvin@sample.co.uk',0,0,0,0,NULL,NULL,NULL,NULL), + (145,28,1,'cooper-nielsen.winford@fishmail.net',1,0,0,0,NULL,NULL,NULL,NULL), + (146,121,1,'zope.a.maria@spamalot.co.in',1,0,0,0,NULL,NULL,NULL,NULL), + (147,121,1,'mariaz@fakemail.biz',0,0,0,0,NULL,NULL,NULL,NULL), + (148,112,1,'allanblackwell@airmail.biz',1,0,0,0,NULL,NULL,NULL,NULL), + (149,183,1,'valeneblackwell18@spamalot.co.nz',1,0,0,0,NULL,NULL,NULL,NULL), + (150,183,1,'blackwell.valene@notmail.co.pl',0,0,0,0,NULL,NULL,NULL,NULL), + (151,110,1,'blackwellr@testing.co.uk',1,0,0,0,NULL,NULL,NULL,NULL), + (152,110,1,'russellblackwell@example.org',0,0,0,0,NULL,NULL,NULL,NULL), + (153,149,1,'blackwell.kathlyn@spamalot.org',1,0,0,0,NULL,NULL,NULL,NULL), + (154,42,1,'kiarajameson25@infomail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL), + (155,88,1,'nicolejameson@fakemail.com',1,0,0,0,NULL,NULL,NULL,NULL), + (156,57,1,'dimitrov.rolando59@testing.net',1,0,0,0,NULL,NULL,NULL,NULL), + (157,57,1,'rdimitrov@airmail.info',0,0,0,0,NULL,NULL,NULL,NULL), + (158,10,1,'av.gonzlez-jameson-dimitrov96@notmail.biz',1,0,0,0,NULL,NULL,NULL,NULL), + (159,10,1,'angelikag@mymail.net',0,0,0,0,NULL,NULL,NULL,NULL), + (160,194,1,'jedj@infomail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL), + (161,194,1,'jameson-dimitrov.jed@lol.co.uk',0,0,0,0,NULL,NULL,NULL,NULL), + (162,93,3,'contact@locallegaltrust.org',1,0,0,0,NULL,NULL,NULL,NULL), + (163,115,2,'wilsona5@locallegaltrust.org',1,0,0,0,NULL,NULL,NULL,NULL), + (164,140,3,'feedback@baysustainabilitypartners.org',1,0,0,0,NULL,NULL,NULL,NULL), + (165,185,2,'angelikajacobs@baysustainabilitypartners.org',1,0,0,0,NULL,NULL,NULL,NULL), + (166,128,3,'feedback@unitedculture.org',1,0,0,0,NULL,NULL,NULL,NULL), + (167,120,2,'tanyamller@unitedculture.org',1,0,0,0,NULL,NULL,NULL,NULL), + (168,163,3,'contact@minnesotasystems.org',1,0,0,0,NULL,NULL,NULL,NULL), + (169,3,2,'kennydaz@minnesotasystems.org',0,0,0,0,NULL,NULL,NULL,NULL), + (170,132,3,'sales@virginianetwork.org',1,0,0,0,NULL,NULL,NULL,NULL), + (171,184,3,'contact@lipoetrytrust.org',1,0,0,0,NULL,NULL,NULL,NULL), + (172,47,2,'allancooper18@lipoetrytrust.org',0,0,0,0,NULL,NULL,NULL,NULL), + (173,176,3,'sales@wyomingsustainabilityinitiative.org',1,0,0,0,NULL,NULL,NULL,NULL), + (174,87,3,'info@californiasportstrust.org',1,0,0,0,NULL,NULL,NULL,NULL), + (175,95,2,'adams.herminia25@californiasportstrust.org',1,0,0,0,NULL,NULL,NULL,NULL), + (176,77,3,'sales@whitfieldagriculture.org',1,0,0,0,NULL,NULL,NULL,NULL), + (177,142,2,'@whitfieldagriculture.org',0,0,0,0,NULL,NULL,NULL,NULL), + (178,160,3,'sales@greenvillesports.org',1,0,0,0,NULL,NULL,NULL,NULL), + (179,183,2,'valeneb36@greenvillesports.org',0,0,0,0,NULL,NULL,NULL,NULL), + (180,123,3,'sales@indianasportspartnership.org',1,0,0,0,NULL,NULL,NULL,NULL), + (181,83,2,'mllerr@indianasportspartnership.org',1,0,0,0,NULL,NULL,NULL,NULL), + (182,59,3,'sales@washingtonwellness.org',1,0,0,0,NULL,NULL,NULL,NULL), + (183,17,3,'service@laceyvilleartsnetwork.org',1,0,0,0,NULL,NULL,NULL,NULL), + (184,10,2,'angelikagonzlez-jameson-dimitrov@laceyvilleartsnetwork.org',0,0,0,0,NULL,NULL,NULL,NULL), + (185,126,3,'contact@louisianatechnology.org',1,0,0,0,NULL,NULL,NULL,NULL), + (186,15,2,'kiaraterry@louisianatechnology.org',1,0,0,0,NULL,NULL,NULL,NULL), + (187,188,3,'service@texasinitiative.org',1,0,0,0,NULL,NULL,NULL,NULL), + (188,159,2,'.96@texasinitiative.org',0,0,0,0,NULL,NULL,NULL,NULL), + (189,78,3,'feedback@collegecenter.org',1,0,0,0,NULL,NULL,NULL,NULL), + (190,146,3,'sales@progressivefund.org',1,0,0,0,NULL,NULL,NULL,NULL), + (191,45,2,'chowskia94@progressivefund.org',1,0,0,0,NULL,NULL,NULL,NULL), + (192,175,3,'feedback@greenschool.org',1,0,0,0,NULL,NULL,NULL,NULL), + (193,202,1,'jenny@example.com',1,0,0,0,NULL,NULL,NULL,NULL), + (194,NULL,1,'development@example.org',0,0,0,0,NULL,NULL,NULL,NULL), + (195,NULL,1,'tournaments@example.org',0,0,0,0,NULL,NULL,NULL,NULL), + (196,NULL,1,'celebration@example.org',0,0,0,0,NULL,NULL,NULL,NULL); /*!40000 ALTER TABLE `civicrm_email` ENABLE KEYS */; UNLOCK TABLES; @@ -3382,51 +3389,51 @@ INSERT INTO `civicrm_entity_financial_trxn` (`id`, `entity_table`, `entity_id`, (64,'civicrm_financial_item',32,32,100.00), (65,'civicrm_contribution',34,33,100.00), (66,'civicrm_financial_item',33,33,100.00), - (67,'civicrm_contribution',36,34,100.00), + (67,'civicrm_contribution',38,34,100.00), (68,'civicrm_financial_item',34,34,100.00), - (69,'civicrm_contribution',38,35,100.00), + (69,'civicrm_contribution',40,35,100.00), (70,'civicrm_financial_item',35,35,100.00), - (71,'civicrm_contribution',40,36,100.00), + (71,'civicrm_contribution',44,36,100.00), (72,'civicrm_financial_item',36,36,100.00), - (73,'civicrm_contribution',41,37,100.00), + (73,'civicrm_contribution',46,37,100.00), (74,'civicrm_financial_item',37,37,100.00), - (75,'civicrm_contribution',44,38,100.00), + (75,'civicrm_contribution',48,38,100.00), (76,'civicrm_financial_item',38,38,100.00), - (77,'civicrm_contribution',46,39,100.00), + (77,'civicrm_contribution',50,39,100.00), (78,'civicrm_financial_item',39,39,100.00), - (79,'civicrm_contribution',48,40,100.00), + (79,'civicrm_contribution',52,40,100.00), (80,'civicrm_financial_item',40,40,100.00), - (81,'civicrm_contribution',50,41,100.00), + (81,'civicrm_contribution',54,41,100.00), (82,'civicrm_financial_item',41,41,100.00), - (83,'civicrm_contribution',51,42,100.00), + (83,'civicrm_contribution',56,42,100.00), (84,'civicrm_financial_item',42,42,100.00), - (85,'civicrm_contribution',52,43,100.00), + (85,'civicrm_contribution',58,43,100.00), (86,'civicrm_financial_item',43,43,100.00), - (87,'civicrm_contribution',54,44,100.00), + (87,'civicrm_contribution',60,44,100.00), (88,'civicrm_financial_item',44,44,100.00), - (89,'civicrm_contribution',56,45,100.00), + (89,'civicrm_contribution',61,45,100.00), (90,'civicrm_financial_item',45,45,100.00), - (91,'civicrm_contribution',58,46,100.00), - (92,'civicrm_financial_item',46,46,100.00), - (93,'civicrm_contribution',60,47,100.00), - (94,'civicrm_financial_item',47,47,100.00), - (95,'civicrm_contribution',61,48,100.00), - (96,'civicrm_financial_item',48,48,100.00), - (97,'civicrm_contribution',33,49,50.00), + (91,'civicrm_contribution',33,46,50.00), + (92,'civicrm_financial_item',46,46,50.00), + (93,'civicrm_contribution',35,47,50.00), + (94,'civicrm_financial_item',47,47,50.00), + (95,'civicrm_contribution',36,48,50.00), + (96,'civicrm_financial_item',48,48,50.00), + (97,'civicrm_contribution',37,49,50.00), (98,'civicrm_financial_item',49,49,50.00), - (99,'civicrm_contribution',35,50,50.00), + (99,'civicrm_contribution',39,50,50.00), (100,'civicrm_financial_item',50,50,50.00), - (101,'civicrm_contribution',37,51,50.00), + (101,'civicrm_contribution',41,51,50.00), (102,'civicrm_financial_item',51,51,50.00), - (103,'civicrm_contribution',39,52,50.00), + (103,'civicrm_contribution',43,52,50.00), (104,'civicrm_financial_item',52,52,50.00), - (105,'civicrm_contribution',43,53,50.00), + (105,'civicrm_contribution',45,53,50.00), (106,'civicrm_financial_item',53,53,50.00), - (107,'civicrm_contribution',45,54,50.00), + (107,'civicrm_contribution',47,54,50.00), (108,'civicrm_financial_item',54,54,50.00), - (109,'civicrm_contribution',47,55,50.00), + (109,'civicrm_contribution',49,55,50.00), (110,'civicrm_financial_item',55,55,50.00), - (111,'civicrm_contribution',49,56,50.00), + (111,'civicrm_contribution',51,56,50.00), (112,'civicrm_financial_item',56,56,50.00), (113,'civicrm_contribution',55,57,50.00), (114,'civicrm_financial_item',57,57,50.00), @@ -3438,105 +3445,105 @@ INSERT INTO `civicrm_entity_financial_trxn` (`id`, `entity_table`, `entity_id`, (120,'civicrm_financial_item',60,60,1200.00), (121,'civicrm_contribution',53,61,1200.00), (122,'civicrm_financial_item',61,61,1200.00), - (123,'civicrm_contribution',82,62,50.00), + (123,'civicrm_contribution',64,62,50.00), (124,'civicrm_financial_item',62,62,50.00), - (125,'civicrm_contribution',87,63,50.00), + (125,'civicrm_contribution',67,63,50.00), (126,'civicrm_financial_item',63,63,50.00), - (127,'civicrm_contribution',101,64,50.00), + (127,'civicrm_contribution',70,64,50.00), (128,'civicrm_financial_item',64,64,50.00), - (129,'civicrm_contribution',93,65,50.00), + (129,'civicrm_contribution',73,65,50.00), (130,'civicrm_financial_item',65,65,50.00), - (131,'civicrm_contribution',65,66,50.00), + (131,'civicrm_contribution',76,66,50.00), (132,'civicrm_financial_item',66,66,50.00), - (133,'civicrm_contribution',73,67,50.00), + (133,'civicrm_contribution',79,67,50.00), (134,'civicrm_financial_item',67,67,50.00), - (135,'civicrm_contribution',86,68,50.00), + (135,'civicrm_contribution',82,68,50.00), (136,'civicrm_financial_item',68,68,50.00), - (137,'civicrm_contribution',112,69,50.00), + (137,'civicrm_contribution',85,69,50.00), (138,'civicrm_financial_item',69,69,50.00), - (139,'civicrm_contribution',63,70,50.00), + (139,'civicrm_contribution',89,70,50.00), (140,'civicrm_financial_item',70,70,50.00), - (141,'civicrm_contribution',108,71,50.00), + (141,'civicrm_contribution',92,71,50.00), (142,'civicrm_financial_item',71,71,50.00), - (143,'civicrm_contribution',83,72,50.00), + (143,'civicrm_contribution',95,72,50.00), (144,'civicrm_financial_item',72,72,50.00), - (145,'civicrm_contribution',84,73,50.00), + (145,'civicrm_contribution',98,73,50.00), (146,'civicrm_financial_item',73,73,50.00), - (147,'civicrm_contribution',89,74,50.00), + (147,'civicrm_contribution',101,74,50.00), (148,'civicrm_financial_item',74,74,50.00), - (149,'civicrm_contribution',68,75,50.00), + (149,'civicrm_contribution',104,75,50.00), (150,'civicrm_financial_item',75,75,50.00), (151,'civicrm_contribution',107,76,50.00), (152,'civicrm_financial_item',76,76,50.00), - (153,'civicrm_contribution',92,77,50.00), + (153,'civicrm_contribution',110,77,50.00), (154,'civicrm_financial_item',77,77,50.00), - (155,'civicrm_contribution',78,78,800.00), + (155,'civicrm_contribution',65,78,800.00), (156,'civicrm_financial_item',78,78,800.00), - (157,'civicrm_contribution',66,79,800.00), + (157,'civicrm_contribution',68,79,800.00), (158,'civicrm_financial_item',79,79,800.00), - (159,'civicrm_contribution',104,80,800.00), + (159,'civicrm_contribution',71,80,800.00), (160,'civicrm_financial_item',80,80,800.00), - (161,'civicrm_contribution',69,81,800.00), + (161,'civicrm_contribution',74,81,800.00), (162,'civicrm_financial_item',81,81,800.00), - (163,'civicrm_contribution',103,82,800.00), + (163,'civicrm_contribution',77,82,800.00), (164,'civicrm_financial_item',82,82,800.00), - (165,'civicrm_contribution',91,83,800.00), + (165,'civicrm_contribution',80,83,800.00), (166,'civicrm_financial_item',83,83,800.00), - (167,'civicrm_contribution',110,84,800.00), + (167,'civicrm_contribution',83,84,800.00), (168,'civicrm_financial_item',84,84,800.00), - (169,'civicrm_contribution',106,85,800.00), + (169,'civicrm_contribution',86,85,800.00), (170,'civicrm_financial_item',85,85,800.00), - (171,'civicrm_contribution',111,86,800.00), + (171,'civicrm_contribution',87,86,800.00), (172,'civicrm_financial_item',86,86,800.00), - (173,'civicrm_contribution',98,87,800.00), + (173,'civicrm_contribution',90,87,800.00), (174,'civicrm_financial_item',87,87,800.00), - (175,'civicrm_contribution',95,88,800.00), + (175,'civicrm_contribution',93,88,800.00), (176,'civicrm_financial_item',88,88,800.00), - (177,'civicrm_contribution',64,89,800.00), + (177,'civicrm_contribution',96,89,800.00), (178,'civicrm_financial_item',89,89,800.00), - (179,'civicrm_contribution',90,90,800.00), + (179,'civicrm_contribution',99,90,800.00), (180,'civicrm_financial_item',90,90,800.00), - (181,'civicrm_contribution',96,91,800.00), + (181,'civicrm_contribution',102,91,800.00), (182,'civicrm_financial_item',91,91,800.00), - (183,'civicrm_contribution',71,92,800.00), + (183,'civicrm_contribution',105,92,800.00), (184,'civicrm_financial_item',92,92,800.00), - (185,'civicrm_contribution',85,93,800.00), + (185,'civicrm_contribution',108,93,800.00), (186,'civicrm_financial_item',93,93,800.00), - (187,'civicrm_contribution',80,94,800.00), + (187,'civicrm_contribution',111,94,800.00), (188,'civicrm_financial_item',94,94,800.00), - (189,'civicrm_contribution',81,95,800.00), + (189,'civicrm_contribution',112,95,800.00), (190,'civicrm_financial_item',95,95,800.00), - (191,'civicrm_contribution',74,96,50.00), + (191,'civicrm_contribution',63,96,50.00), (192,'civicrm_financial_item',96,96,50.00), - (193,'civicrm_contribution',77,97,50.00), + (193,'civicrm_contribution',66,97,50.00), (194,'civicrm_financial_item',97,97,50.00), - (195,'civicrm_contribution',70,98,50.00), + (195,'civicrm_contribution',69,98,50.00), (196,'civicrm_financial_item',98,98,50.00), - (197,'civicrm_contribution',79,99,50.00), + (197,'civicrm_contribution',72,99,50.00), (198,'civicrm_financial_item',99,99,50.00), - (199,'civicrm_contribution',97,100,50.00), + (199,'civicrm_contribution',75,100,50.00), (200,'civicrm_financial_item',100,100,50.00), - (201,'civicrm_contribution',109,101,50.00), + (201,'civicrm_contribution',78,101,50.00), (202,'civicrm_financial_item',101,101,50.00), - (203,'civicrm_contribution',88,102,50.00), + (203,'civicrm_contribution',81,102,50.00), (204,'civicrm_financial_item',102,102,50.00), - (205,'civicrm_contribution',72,103,50.00), + (205,'civicrm_contribution',84,103,50.00), (206,'civicrm_financial_item',103,103,50.00), - (207,'civicrm_contribution',105,104,50.00), + (207,'civicrm_contribution',88,104,50.00), (208,'civicrm_financial_item',104,104,50.00), - (209,'civicrm_contribution',102,105,50.00), + (209,'civicrm_contribution',91,105,50.00), (210,'civicrm_financial_item',105,105,50.00), - (211,'civicrm_contribution',100,106,50.00), + (211,'civicrm_contribution',94,106,50.00), (212,'civicrm_financial_item',106,106,50.00), - (213,'civicrm_contribution',76,107,50.00), + (213,'civicrm_contribution',97,107,50.00), (214,'civicrm_financial_item',107,107,50.00), - (215,'civicrm_contribution',75,108,50.00), + (215,'civicrm_contribution',100,108,50.00), (216,'civicrm_financial_item',108,108,50.00), - (217,'civicrm_contribution',94,109,50.00), + (217,'civicrm_contribution',103,109,50.00), (218,'civicrm_financial_item',109,109,50.00), - (219,'civicrm_contribution',67,110,50.00), + (219,'civicrm_contribution',106,110,50.00), (220,'civicrm_financial_item',110,110,50.00), - (221,'civicrm_contribution',99,111,50.00), + (221,'civicrm_contribution',109,111,50.00), (222,'civicrm_financial_item',111,111,50.00); /*!40000 ALTER TABLE `civicrm_entity_financial_trxn` ENABLE KEYS */; UNLOCK TABLES; @@ -3548,118 +3555,117 @@ 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 - (4,'civicrm_contact',2,1), - (73,'civicrm_contact',3,4), - (74,'civicrm_contact',3,5), - (83,'civicrm_contact',4,5), - (105,'civicrm_contact',5,4), - (103,'civicrm_contact',8,4), - (24,'civicrm_contact',9,4), - (25,'civicrm_contact',9,5), - (111,'civicrm_contact',12,4), - (112,'civicrm_contact',12,5), - (35,'civicrm_contact',13,4), - (106,'civicrm_contact',16,5), - (78,'civicrm_contact',22,5), - (26,'civicrm_contact',23,5), - (7,'civicrm_contact',24,2), - (102,'civicrm_contact',25,5), - (62,'civicrm_contact',34,4), - (3,'civicrm_contact',42,3), - (5,'civicrm_contact',43,1), - (92,'civicrm_contact',44,5), - (1,'civicrm_contact',49,3), - (56,'civicrm_contact',50,4), - (48,'civicrm_contact',52,4), - (68,'civicrm_contact',53,4), - (81,'civicrm_contact',54,4), - (82,'civicrm_contact',54,5), - (2,'civicrm_contact',55,3), - (89,'civicrm_contact',56,4), - (36,'civicrm_contact',61,4), - (23,'civicrm_contact',62,5), - (8,'civicrm_contact',64,1), - (98,'civicrm_contact',67,5), - (104,'civicrm_contact',68,4), - (107,'civicrm_contact',69,4), - (108,'civicrm_contact',69,5), - (100,'civicrm_contact',70,5), - (53,'civicrm_contact',71,5), - (31,'civicrm_contact',72,4), - (32,'civicrm_contact',72,5), - (63,'civicrm_contact',74,5), - (13,'civicrm_contact',88,5), - (80,'civicrm_contact',89,4), - (37,'civicrm_contact',90,4), - (38,'civicrm_contact',90,5), - (44,'civicrm_contact',91,5), - (39,'civicrm_contact',92,4), - (27,'civicrm_contact',99,4), - (28,'civicrm_contact',99,5), - (50,'civicrm_contact',100,4), - (90,'civicrm_contact',103,5), - (15,'civicrm_contact',106,4), - (51,'civicrm_contact',108,4), - (52,'civicrm_contact',108,5), - (6,'civicrm_contact',110,2), - (17,'civicrm_contact',111,4), - (18,'civicrm_contact',111,5), - (10,'civicrm_contact',113,3), - (49,'civicrm_contact',115,4), - (91,'civicrm_contact',116,5), - (33,'civicrm_contact',117,4), - (34,'civicrm_contact',117,5), - (65,'civicrm_contact',118,5), - (42,'civicrm_contact',120,4), - (43,'civicrm_contact',120,5), - (69,'civicrm_contact',121,5), - (54,'civicrm_contact',123,4), - (55,'civicrm_contact',123,5), - (79,'civicrm_contact',125,4), - (19,'civicrm_contact',131,5), - (41,'civicrm_contact',136,5), - (75,'civicrm_contact',137,5), - (84,'civicrm_contact',138,4), - (85,'civicrm_contact',138,5), - (88,'civicrm_contact',139,5), - (57,'civicrm_contact',140,5), - (95,'civicrm_contact',142,4), - (94,'civicrm_contact',145,4), - (29,'civicrm_contact',147,4), - (30,'civicrm_contact',147,5), - (64,'civicrm_contact',148,4), - (93,'civicrm_contact',151,4), - (40,'civicrm_contact',155,5), - (76,'civicrm_contact',156,4), - (77,'civicrm_contact',156,5), - (72,'civicrm_contact',157,5), - (109,'civicrm_contact',159,4), - (110,'civicrm_contact',159,5), - (61,'civicrm_contact',160,5), - (99,'civicrm_contact',161,4), - (70,'civicrm_contact',165,4), - (71,'civicrm_contact',165,5), - (22,'civicrm_contact',166,5), - (45,'civicrm_contact',170,4), - (96,'civicrm_contact',171,4), - (97,'civicrm_contact',171,5), - (20,'civicrm_contact',172,5), - (58,'civicrm_contact',175,5), - (101,'civicrm_contact',176,5), - (60,'civicrm_contact',179,5), - (86,'civicrm_contact',180,4), - (87,'civicrm_contact',180,5), - (59,'civicrm_contact',181,4), - (21,'civicrm_contact',184,4), - (14,'civicrm_contact',185,4), - (66,'civicrm_contact',186,4), - (67,'civicrm_contact',186,5), - (11,'civicrm_contact',187,5), - (12,'civicrm_contact',188,5), - (16,'civicrm_contact',190,5), - (9,'civicrm_contact',192,2), - (46,'civicrm_contact',201,4), - (47,'civicrm_contact',201,5); + (23,'civicrm_contact',2,5), + (75,'civicrm_contact',3,4), + (76,'civicrm_contact',3,5), + (16,'civicrm_contact',4,4), + (94,'civicrm_contact',5,4), + (40,'civicrm_contact',6,4), + (41,'civicrm_contact',6,5), + (53,'civicrm_contact',8,5), + (22,'civicrm_contact',13,5), + (25,'civicrm_contact',14,4), + (82,'civicrm_contact',15,4), + (83,'civicrm_contact',15,5), + (8,'civicrm_contact',17,2), + (85,'civicrm_contact',20,4), + (81,'civicrm_contact',26,5), + (87,'civicrm_contact',29,4), + (61,'civicrm_contact',30,4), + (62,'civicrm_contact',30,5), + (18,'civicrm_contact',31,4), + (97,'civicrm_contact',32,5), + (70,'civicrm_contact',35,5), + (56,'civicrm_contact',39,4), + (57,'civicrm_contact',39,5), + (63,'civicrm_contact',40,5), + (33,'civicrm_contact',41,4), + (91,'civicrm_contact',44,4), + (101,'civicrm_contact',49,5), + (15,'civicrm_contact',50,5), + (44,'civicrm_contact',51,4), + (45,'civicrm_contact',51,5), + (109,'civicrm_contact',57,4), + (110,'civicrm_contact',57,5), + (98,'civicrm_contact',61,5), + (73,'civicrm_contact',64,5), + (90,'civicrm_contact',67,5), + (107,'civicrm_contact',68,4), + (64,'civicrm_contact',69,4), + (65,'civicrm_contact',69,5), + (89,'civicrm_contact',70,4), + (49,'civicrm_contact',71,4), + (35,'civicrm_contact',73,4), + (54,'civicrm_contact',74,4), + (84,'civicrm_contact',76,4), + (48,'civicrm_contact',79,4), + (28,'civicrm_contact',86,4), + (5,'civicrm_contact',87,3), + (17,'civicrm_contact',92,5), + (1,'civicrm_contact',93,2), + (96,'civicrm_contact',98,5), + (79,'civicrm_contact',100,5), + (55,'civicrm_contact',103,5), + (95,'civicrm_contact',104,5), + (74,'civicrm_contact',106,5), + (106,'civicrm_contact',110,5), + (92,'civicrm_contact',111,4), + (93,'civicrm_contact',111,5), + (105,'civicrm_contact',112,4), + (50,'civicrm_contact',115,5), + (103,'civicrm_contact',117,4), + (104,'civicrm_contact',117,5), + (47,'civicrm_contact',118,5), + (68,'civicrm_contact',120,4), + (69,'civicrm_contact',120,5), + (102,'civicrm_contact',121,5), + (7,'civicrm_contact',123,3), + (78,'civicrm_contact',124,5), + (19,'civicrm_contact',125,5), + (80,'civicrm_contact',127,5), + (24,'civicrm_contact',130,4), + (77,'civicrm_contact',131,4), + (46,'civicrm_contact',134,5), + (60,'civicrm_contact',136,5), + (20,'civicrm_contact',138,4), + (21,'civicrm_contact',138,5), + (30,'civicrm_contact',139,4), + (2,'civicrm_contact',140,1), + (31,'civicrm_contact',141,4), + (32,'civicrm_contact',141,5), + (88,'civicrm_contact',142,5), + (67,'civicrm_contact',143,5), + (10,'civicrm_contact',146,2), + (86,'civicrm_contact',148,5), + (71,'civicrm_contact',150,4), + (72,'civicrm_contact',150,5), + (111,'civicrm_contact',151,4), + (99,'civicrm_contact',153,4), + (100,'civicrm_contact',153,5), + (14,'civicrm_contact',154,4), + (37,'civicrm_contact',155,5), + (29,'civicrm_contact',161,5), + (3,'civicrm_contact',163,1), + (58,'civicrm_contact',168,4), + (59,'civicrm_contact',168,5), + (108,'civicrm_contact',169,4), + (42,'civicrm_contact',171,4), + (43,'civicrm_contact',171,5), + (26,'civicrm_contact',174,4), + (27,'civicrm_contact',174,5), + (38,'civicrm_contact',177,4), + (39,'civicrm_contact',177,5), + (36,'civicrm_contact',178,5), + (34,'civicrm_contact',181,4), + (4,'civicrm_contact',184,1), + (12,'civicrm_contact',186,4), + (13,'civicrm_contact',186,5), + (9,'civicrm_contact',188,3), + (66,'civicrm_contact',193,5), + (6,'civicrm_contact',196,2), + (11,'civicrm_contact',199,5), + (51,'civicrm_contact',201,4), + (52,'civicrm_contact',201,5); /*!40000 ALTER TABLE `civicrm_entity_tag` ENABLE KEYS */; UNLOCK TABLES; @@ -3670,9 +3676,9 @@ UNLOCK TABLES; LOCK TABLES `civicrm_event` WRITE; /*!40000 ALTER TABLE `civicrm_event` DISABLE KEYS */; INSERT INTO `civicrm_event` (`id`, `title`, `summary`, `description`, `event_type_id`, `participant_listing_id`, `is_public`, `start_date`, `end_date`, `is_online_registration`, `registration_link_text`, `registration_start_date`, `registration_end_date`, `max_participants`, `event_full_text`, `is_monetary`, `financial_type_id`, `payment_processor`, `is_map`, `is_active`, `fee_label`, `is_show_location`, `loc_block_id`, `default_role_id`, `intro_text`, `footer_text`, `confirm_title`, `confirm_text`, `confirm_footer_text`, `is_email_confirm`, `confirm_email_text`, `confirm_from_name`, `confirm_from_email`, `cc_confirm`, `bcc_confirm`, `default_fee_id`, `default_discount_fee_id`, `thankyou_title`, `thankyou_text`, `thankyou_footer_text`, `is_pay_later`, `pay_later_text`, `pay_later_receipt`, `is_partial_payment`, `initial_amount_label`, `initial_amount_help_text`, `min_initial_amount`, `is_multiple_registrations`, `max_additional_participants`, `allow_same_participant_emails`, `has_waitlist`, `requires_approval`, `expiration_time`, `allow_selfcancelxfer`, `selfcancelxfer_time`, `waitlist_text`, `approval_req_text`, `is_template`, `template_title`, `created_id`, `created_date`, `currency`, `campaign_id`, `is_share`, `is_confirm_enabled`, `parent_event_id`, `slot_label_id`, `dedupe_rule_group_id`, `is_billing_required`) VALUES - (1,'Fall Fundraiser Dinner','Kick up your heels at our Fall Fundraiser Dinner/Dance at Glen Echo Park! Come by yourself or bring a partner, friend or the entire family!','This event benefits our teen programs. Admission includes a full 3 course meal and wine or soft drinks. Grab your dancing shoes, bring the kids and come join the party!',3,1,1,'2023-06-07 17:00:00','2023-06-09 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!','<p>Thank you for your support. Your contribution will help us build even better tools.</p><p>Please tell your friends and colleagues about this wonderful event.</p>','<p><a href=https://civicrm.org>Back to CiviCRM Home Page</a></p>',1,'I will send payment by check','Send a check payable to Our Organization within 3 business days to hold your reservation. Checks should be sent to: 100 Main St., Suite 3, San Francisco CA 94110',0,NULL,NULL,NULL,1,0,0,0,0,NULL,0,0,NULL,NULL,0,NULL,NULL,NULL,'USD',NULL,1,1,NULL,NULL,NULL,0), - (2,'Summer Solstice Festival Day Concert','Festival Day is coming! Join us and help support your parks.','We will gather at noon, learn a song all together, and then join in a joyous procession to the pavilion. We will be one of many groups performing at this wonderful concert which benefits our city parks.',5,1,1,'2022-12-06 12:00:00','2022-12-06 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,0,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!','<p>Thank you for your support. Your participation will help build new parks.</p><p>Please tell your friends and colleagues about the concert.</p>','<p><a href=https://civicrm.org>Back to CiviCRM Home Page</a></p>',0,NULL,NULL,0,NULL,NULL,NULL,1,0,0,0,0,NULL,0,0,NULL,NULL,0,NULL,NULL,NULL,'USD',NULL,1,1,NULL,NULL,NULL,0), - (3,'Rain-forest Cup Youth Soccer Tournament','Sign up your team to participate in this fun tournament which benefits several Rain-forest protection groups in the Amazon basin.','This is a FYSA Sanctioned Tournament, which is open to all USSF/FIFA affiliated organizations for boys and girls in age groups: U9-U10 (6v6), U11-U12 (8v8), and U13-U17 (Full Sided).',3,1,1,'2023-07-07 07:00:00','2023-07-10 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,0,1,'Tournament Fees',1,3,1,'Complete the form below to register your team for this year\'s tournament.','<em>A Soccer Youth Event</em>','Review and Confirm Your Registration Information','','<em>A Soccer Youth Event</em>',1,'Contact our Tournament Director for eligibility details.','Tournament Director','tournament@example.org','',NULL,NULL,NULL,'Thanks for Your Support!','<p>Thank you for your support. Your participation will help save thousands of acres of rainforest.</p>','<p><a href=https://civicrm.org>Back to CiviCRM Home Page</a></p>',0,NULL,NULL,0,NULL,NULL,NULL,0,0,0,0,0,NULL,0,0,NULL,NULL,0,NULL,NULL,NULL,'USD',NULL,1,1,NULL,NULL,NULL,0), + (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,'2023-07-25 17:00:00','2023-07-27 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!','<p>Thank you for your support. Your contribution will help us build even better tools.</p><p>Please tell your friends and colleagues about this wonderful event.</p>','<p><a href=https://civicrm.org>Back to CiviCRM Home Page</a></p>',1,'I will send payment by check','Send a check payable to Our Organization within 3 business days to hold your reservation. Checks should be sent to: 100 Main St., Suite 3, San Francisco CA 94110',0,NULL,NULL,NULL,1,0,0,0,0,NULL,0,0,NULL,NULL,0,NULL,NULL,NULL,'USD',NULL,1,1,NULL,NULL,NULL,0), + (2,'Summer Solstice Festival Day Concert','Festival Day is coming! Join us and help support your parks.','We will gather at noon, learn a song all together, and then join in a joyous procession to the pavilion. We will be one of many groups performing at this wonderful concert which benefits our city parks.',5,1,1,'2023-01-24 12:00:00','2023-01-24 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,0,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!','<p>Thank you for your support. Your participation will help build new parks.</p><p>Please tell your friends and colleagues about the concert.</p>','<p><a href=https://civicrm.org>Back to CiviCRM Home Page</a></p>',0,NULL,NULL,0,NULL,NULL,NULL,1,0,0,0,0,NULL,0,0,NULL,NULL,0,NULL,NULL,NULL,'USD',NULL,1,1,NULL,NULL,NULL,0), + (3,'Rain-forest Cup Youth Soccer Tournament','Sign up your team to participate in this fun tournament which benefits several Rain-forest protection groups in the Amazon basin.','This is a FYSA Sanctioned Tournament, which is open to all USSF/FIFA affiliated organizations for boys and girls in age groups: U9-U10 (6v6), U11-U12 (8v8), and U13-U17 (Full Sided).',3,1,1,'2023-08-25 07:00:00','2023-08-28 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,0,1,'Tournament Fees',1,3,1,'Complete the form below to register your team for this year\'s tournament.','<em>A Soccer Youth Event</em>','Review and Confirm Your Registration Information','','<em>A Soccer Youth Event</em>',1,'Contact our Tournament Director for eligibility details.','Tournament Director','tournament@example.org','',NULL,NULL,NULL,'Thanks for Your Support!','<p>Thank you for your support. Your participation will help save thousands of acres of rainforest.</p>','<p><a href=https://civicrm.org>Back to CiviCRM Home Page</a></p>',0,NULL,NULL,0,NULL,NULL,NULL,0,0,0,0,0,NULL,0,0,NULL,NULL,0,NULL,NULL,NULL,'USD',NULL,1,1,NULL,NULL,NULL,0), (4,NULL,NULL,NULL,4,1,1,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,0,1,NULL,1,NULL,1,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,0,NULL,NULL,NULL,1,0,0,0,0,NULL,0,0,NULL,NULL,1,'Free Meeting without Online Registration',NULL,NULL,'USD',NULL,1,1,NULL,NULL,NULL,0), (5,NULL,NULL,NULL,4,1,1,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,0,1,NULL,1,NULL,1,NULL,NULL,'Confirm Your Registration Information',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Thanks for Registering!',NULL,NULL,0,NULL,NULL,0,NULL,NULL,NULL,1,0,1,0,0,NULL,0,0,NULL,NULL,1,'Free Meeting with Online Registration',NULL,NULL,'USD',NULL,1,1,NULL,NULL,NULL,0), (6,NULL,NULL,NULL,1,1,1,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,1,4,NULL,0,1,'Conference Fee',1,NULL,1,NULL,NULL,'Confirm Your Registration Information',NULL,NULL,1,NULL,'Event Template Dept.','event_templates@example.org',NULL,NULL,NULL,NULL,'Thanks for Registering!',NULL,NULL,0,NULL,NULL,0,NULL,NULL,NULL,1,0,1,0,0,NULL,0,0,NULL,NULL,1,'Paid Conference with Online Registration',NULL,NULL,'USD',NULL,1,1,NULL,NULL,NULL,0); @@ -3755,117 +3761,117 @@ 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,'2022-12-07 16:48:59','2012-12-07 16:48:59',2,'Contribution Amount',125.00,'USD',1,1,'civicrm_line_item',1), - (2,'2022-12-07 16:48:59','2020-09-07 16:48:59',4,'Contribution Amount',50.00,'USD',1,1,'civicrm_line_item',2), - (3,'2022-12-07 16:48:59','2016-11-12 03:48:59',6,'Contribution Amount',25.00,'GBP',1,1,'civicrm_line_item',3), - (4,'2022-12-07 16:48:59','2020-09-07 16:48:59',8,'Contribution Amount',50.00,'USD',1,1,'civicrm_line_item',4), - (5,'2022-12-07 16:48:59','2020-09-07 16:48:59',4,'Contribution Amount',50.00,'USD',1,1,'civicrm_line_item',5), - (6,'2022-12-07 16:48:59','2022-09-13 16:06:59',16,'Contribution Amount',500.00,'USD',1,1,'civicrm_line_item',6), - (7,'2022-12-07 16:48:59','2022-12-05 16:48:59',19,'Contribution Amount',1750.00,'USD',1,1,'civicrm_line_item',7), - (8,'2022-12-07 16:48:59','2022-04-15 00:59:59',82,'Contribution Amount',50.00,'USD',1,1,'civicrm_line_item',8), - (9,'2022-12-07 16:48:59','2022-01-07 16:48:59',92,'Contribution Amount',10.00,'USD',1,1,'civicrm_line_item',9), - (10,'2022-12-07 16:48:59','2018-07-15 18:48:59',34,'Contribution Amount',250.00,'USD',1,1,'civicrm_line_item',10), - (11,'2022-12-07 16:48:59','2022-12-06 12:48:59',71,'Contribution Amount',500.00,'JPY',1,1,'civicrm_line_item',11), - (12,'2022-12-07 16:48:59','2021-09-07 06:15:39',43,'Contribution Amount',50.00,'USD',1,1,'civicrm_line_item',12), - (13,'2022-12-07 16:48:59','2022-09-07 00:00:00',32,'Contribution Amount',50.00,'USD',1,1,'civicrm_line_item',13), - (14,'2022-12-07 16:48:59','2022-10-07 00:00:00',32,'Contribution Amount',50.00,'USD',1,1,'civicrm_line_item',14), - (15,'2022-12-07 16:48:59','2021-09-07 16:48:59',59,'Contribution Amount',25.00,'USD',1,1,'civicrm_line_item',15), - (16,'2022-12-07 16:48:59','2021-10-07 16:48:59',59,'Contribution Amount',25.00,'USD',1,1,'civicrm_line_item',16), - (17,'2022-12-07 16:48:59','2021-11-07 16:48:59',59,'Contribution Amount',25.00,'USD',1,1,'civicrm_line_item',17), - (18,'2022-12-07 16:48:59','2021-12-07 16:48:59',59,'Contribution Amount',25.00,'USD',1,1,'civicrm_line_item',18), - (19,'2022-12-07 16:48:59','2022-01-07 16:48:59',59,'Contribution Amount',25.00,'USD',1,1,'civicrm_line_item',19), - (20,'2022-12-07 16:48:59','2022-02-07 16:48:59',59,'Contribution Amount',25.00,'USD',1,1,'civicrm_line_item',20), - (21,'2022-12-07 16:48:59','2022-03-07 16:48:59',59,'Contribution Amount',25.00,'USD',1,1,'civicrm_line_item',21), - (22,'2022-12-07 16:48:59','2022-04-07 16:48:59',59,'Contribution Amount',25.00,'USD',1,1,'civicrm_line_item',22), - (23,'2022-12-07 16:48:59','2022-05-07 16:48:59',59,'Contribution Amount',25.00,'USD',1,1,'civicrm_line_item',23), - (24,'2022-12-07 16:48:59','2022-06-07 16:48:59',59,'Contribution Amount',25.00,'USD',1,1,'civicrm_line_item',24), - (25,'2022-12-07 16:48:59','2022-07-07 16:48:59',59,'Contribution Amount',25.00,'USD',1,1,'civicrm_line_item',25), - (26,'2022-12-07 16:48:59','2022-04-07 16:48:59',99,'Contribution Amount',10.00,'CAD',1,1,'civicrm_line_item',26), - (27,'2022-12-07 16:48:59','2022-05-07 16:48:59',99,'Contribution Amount',10.00,'CAD',1,1,'civicrm_line_item',27), - (28,'2022-12-07 16:48:59','2022-06-07 16:48:59',99,'Contribution Amount',10.00,'CAD',1,1,'civicrm_line_item',28), - (29,'2022-12-07 16:48:59','2022-07-07 16:48:59',99,'Contribution Amount',10.00,'CAD',1,1,'civicrm_line_item',29), - (30,'2022-12-07 16:48:59','2022-08-07 16:48:59',99,'Contribution Amount',10.00,'CAD',1,1,'civicrm_line_item',30), - (31,'2022-12-07 16:48:59','2022-11-07 16:48:59',103,'Contribution Amount',5.00,'EUR',1,1,'civicrm_line_item',31), - (32,'2022-12-07 16:48:59','2022-12-07 16:48:59',160,'General',100.00,'USD',2,1,'civicrm_line_item',32), - (33,'2022-12-07 16:48:59','2022-12-07 16:48:59',60,'General',100.00,'USD',2,1,'civicrm_line_item',33), - (34,'2022-12-07 16:48:59','2022-12-07 16:48:59',47,'General',100.00,'USD',2,1,'civicrm_line_item',34), - (35,'2022-12-07 16:48:59','2022-12-07 16:48:59',186,'General',100.00,'USD',2,1,'civicrm_line_item',35), - (36,'2022-12-07 16:48:59','2022-12-07 16:48:59',123,'General',100.00,'USD',2,1,'civicrm_line_item',36), - (37,'2022-12-07 16:48:59','2022-12-07 16:48:59',57,'General',100.00,'USD',2,1,'civicrm_line_item',37), - (38,'2022-12-07 16:48:59','2022-12-07 16:48:59',150,'General',100.00,'USD',2,1,'civicrm_line_item',38), - (39,'2022-12-07 16:48:59','2022-12-07 16:48:59',41,'General',100.00,'USD',2,1,'civicrm_line_item',39), - (40,'2022-12-07 16:48:59','2022-12-07 16:48:59',96,'General',100.00,'USD',2,1,'civicrm_line_item',40), - (41,'2022-12-07 16:48:59','2022-12-07 16:48:59',17,'General',100.00,'USD',2,1,'civicrm_line_item',41), - (42,'2022-12-07 16:48:59','2022-12-07 16:48:59',118,'General',100.00,'USD',2,1,'civicrm_line_item',42), - (43,'2022-12-07 16:48:59','2022-12-07 16:48:59',116,'General',100.00,'USD',2,1,'civicrm_line_item',43), - (44,'2022-12-07 16:48:59','2022-12-07 16:48:59',106,'General',100.00,'USD',2,1,'civicrm_line_item',44), - (45,'2022-12-07 16:48:59','2022-12-07 16:48:59',40,'General',100.00,'USD',2,1,'civicrm_line_item',45), - (46,'2022-12-07 16:48:59','2022-12-07 16:48:59',104,'General',100.00,'USD',2,1,'civicrm_line_item',46), - (47,'2022-12-07 16:48:59','2022-12-07 16:48:59',53,'General',100.00,'USD',2,1,'civicrm_line_item',47), - (48,'2022-12-07 16:48:59','2022-12-07 16:48:59',25,'General',100.00,'USD',2,1,'civicrm_line_item',48), - (49,'2022-12-07 16:48:59','2022-12-07 16:48:59',62,'Student',50.00,'USD',2,1,'civicrm_line_item',49), - (50,'2022-12-07 16:48:59','2022-12-07 16:48:59',75,'Student',50.00,'USD',2,1,'civicrm_line_item',50), - (51,'2022-12-07 16:48:59','2022-12-07 16:48:59',169,'Student',50.00,'USD',2,1,'civicrm_line_item',51), - (52,'2022-12-07 16:48:59','2022-12-07 16:48:59',179,'Student',50.00,'USD',2,1,'civicrm_line_item',52), - (53,'2022-12-07 16:48:59','2022-12-07 16:48:59',164,'Student',50.00,'USD',2,1,'civicrm_line_item',53), - (54,'2022-12-07 16:48:59','2022-12-07 16:48:59',95,'Student',50.00,'USD',2,1,'civicrm_line_item',54), - (55,'2022-12-07 16:48:59','2022-12-07 16:48:59',12,'Student',50.00,'USD',2,1,'civicrm_line_item',55), - (56,'2022-12-07 16:48:59','2022-12-07 16:48:59',21,'Student',50.00,'USD',2,1,'civicrm_line_item',56), - (57,'2022-12-07 16:48:59','2022-12-07 16:48:59',148,'Student',50.00,'USD',2,1,'civicrm_line_item',57), - (58,'2022-12-07 16:48:59','2022-12-07 16:48:59',35,'Student',50.00,'USD',2,1,'civicrm_line_item',58), - (59,'2022-12-07 16:48:59','2022-12-07 16:48:59',139,'Student',50.00,'USD',2,1,'civicrm_line_item',59), - (60,'2022-12-07 16:48:59','2022-12-07 16:48:59',195,'Lifetime',1200.00,'USD',2,1,'civicrm_line_item',60), - (61,'2022-12-07 16:48:59','2022-12-07 16:48:59',193,'Lifetime',1200.00,'USD',2,1,'civicrm_line_item',61), - (62,'2022-12-07 16:48:59','2022-12-07 16:48:59',79,'Soprano',50.00,'USD',2,1,'civicrm_line_item',97), - (63,'2022-12-07 16:48:59','2022-12-07 16:48:59',103,'Soprano',50.00,'USD',2,1,'civicrm_line_item',98), - (64,'2022-12-07 16:48:59','2022-12-07 16:48:59',160,'Soprano',50.00,'USD',2,1,'civicrm_line_item',99), - (65,'2022-12-07 16:48:59','2022-12-07 16:48:59',134,'Soprano',50.00,'USD',2,1,'civicrm_line_item',100), - (66,'2022-12-07 16:48:59','2022-12-07 16:48:59',12,'Soprano',50.00,'USD',2,1,'civicrm_line_item',101), - (67,'2022-12-07 16:48:59','2022-12-07 16:48:59',44,'Soprano',50.00,'USD',2,1,'civicrm_line_item',102), - (68,'2022-12-07 16:48:59','2022-12-07 16:48:59',102,'Soprano',50.00,'USD',2,1,'civicrm_line_item',103), - (69,'2022-12-07 16:48:59','2022-12-07 16:48:59',201,'Soprano',50.00,'USD',2,1,'civicrm_line_item',104), - (70,'2022-12-07 16:48:59','2022-12-07 16:48:59',3,'Soprano',50.00,'USD',2,1,'civicrm_line_item',105), - (71,'2022-12-07 16:48:59','2022-12-07 16:48:59',195,'Soprano',50.00,'USD',2,1,'civicrm_line_item',106), - (72,'2022-12-07 16:48:59','2022-12-07 16:48:59',80,'Soprano',50.00,'USD',2,1,'civicrm_line_item',107), - (73,'2022-12-07 16:48:59','2022-12-07 16:48:59',98,'Soprano',50.00,'USD',2,1,'civicrm_line_item',108), - (74,'2022-12-07 16:48:59','2022-12-07 16:48:59',111,'Soprano',50.00,'USD',2,1,'civicrm_line_item',109), - (75,'2022-12-07 16:48:59','2022-12-07 16:48:59',25,'Soprano',50.00,'USD',2,1,'civicrm_line_item',110), - (76,'2022-12-07 16:48:59','2022-12-07 16:48:59',190,'Soprano',50.00,'USD',2,1,'civicrm_line_item',111), - (77,'2022-12-07 16:48:59','2022-12-07 16:48:59',128,'Soprano',50.00,'USD',2,1,'civicrm_line_item',112), - (78,'2022-12-07 16:48:59','2022-12-07 16:48:59',71,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',63), - (79,'2022-12-07 16:48:59','2022-12-07 16:48:59',13,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',64), - (80,'2022-12-07 16:48:59','2022-12-07 16:48:59',180,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',65), - (81,'2022-12-07 16:48:59','2022-12-07 16:48:59',30,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',66), - (82,'2022-12-07 16:48:59','2022-12-07 16:48:59',179,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',67), - (83,'2022-12-07 16:48:59','2022-12-07 16:48:59',115,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',68), - (84,'2022-12-07 16:48:59','2022-12-07 16:48:59',198,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',69), - (85,'2022-12-07 16:48:59','2022-12-07 16:48:59',188,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',70), - (86,'2022-12-07 16:48:59','2022-12-07 16:48:59',200,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',71), - (87,'2022-12-07 16:48:59','2022-12-07 16:48:59',148,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',72), - (88,'2022-12-07 16:48:59','2022-12-07 16:48:59',143,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',73), - (89,'2022-12-07 16:48:59','2022-12-07 16:48:59',5,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',74), - (90,'2022-12-07 16:48:59','2022-12-07 16:48:59',114,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',75), - (91,'2022-12-07 16:48:59','2022-12-07 16:48:59',145,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',76), - (92,'2022-12-07 16:48:59','2022-12-07 16:48:59',34,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',77), - (93,'2022-12-07 16:48:59','2022-12-07 16:48:59',101,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',78), - (94,'2022-12-07 16:48:59','2022-12-07 16:48:59',74,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',79), - (95,'2022-12-07 16:48:59','2022-12-07 16:48:59',76,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',80), - (96,'2022-12-07 16:48:59','2022-12-07 16:48:59',49,'Single',50.00,'USD',4,1,'civicrm_line_item',81), - (97,'2022-12-07 16:48:59','2022-12-07 16:48:59',66,'Single',50.00,'USD',4,1,'civicrm_line_item',82), - (98,'2022-12-07 16:48:59','2022-12-07 16:48:59',31,'Single',50.00,'USD',4,1,'civicrm_line_item',83), - (99,'2022-12-07 16:48:59','2022-12-07 16:48:59',72,'Single',50.00,'USD',4,1,'civicrm_line_item',84), - (100,'2022-12-07 16:48:59','2022-12-07 16:48:59',147,'Single',50.00,'USD',4,1,'civicrm_line_item',85), - (101,'2022-12-07 16:48:59','2022-12-07 16:48:59',197,'Single',50.00,'USD',4,1,'civicrm_line_item',86), - (102,'2022-12-07 16:48:59','2022-12-07 16:48:59',109,'Single',50.00,'USD',4,1,'civicrm_line_item',87), - (103,'2022-12-07 16:48:59','2022-12-07 16:48:59',41,'Single',50.00,'USD',4,1,'civicrm_line_item',88), - (104,'2022-12-07 16:48:59','2022-12-07 16:48:59',187,'Single',50.00,'USD',4,1,'civicrm_line_item',89), - (105,'2022-12-07 16:48:59','2022-12-07 16:48:59',171,'Single',50.00,'USD',4,1,'civicrm_line_item',90), - (106,'2022-12-07 16:48:59','2022-12-07 16:48:59',157,'Single',50.00,'USD',4,1,'civicrm_line_item',91), - (107,'2022-12-07 16:48:59','2022-12-07 16:48:59',60,'Single',50.00,'USD',4,1,'civicrm_line_item',92), - (108,'2022-12-07 16:48:59','2022-12-07 16:48:59',56,'Single',50.00,'USD',4,1,'civicrm_line_item',93), - (109,'2022-12-07 16:48:59','2022-12-07 16:48:59',139,'Single',50.00,'USD',4,1,'civicrm_line_item',94), - (110,'2022-12-07 16:48:59','2022-12-07 16:48:59',21,'Single',50.00,'USD',4,1,'civicrm_line_item',95), - (111,'2022-12-07 16:48:59','2022-12-07 16:48:59',149,'Single',50.00,'USD',4,1,'civicrm_line_item',96); + (1,'2023-01-25 00:10:21','2013-01-25 11:10:21',2,'Contribution Amount',125.00,'USD',1,1,'civicrm_line_item',1), + (2,'2023-01-25 00:10:21','2020-10-25 11:10:21',4,'Contribution Amount',50.00,'USD',1,1,'civicrm_line_item',2), + (3,'2023-01-25 00:10:21','2016-12-30 22:10:21',6,'Contribution Amount',25.00,'GBP',1,1,'civicrm_line_item',3), + (4,'2023-01-25 00:10:21','2020-10-25 11:10:21',8,'Contribution Amount',50.00,'USD',1,1,'civicrm_line_item',4), + (5,'2023-01-25 00:10:21','2020-10-25 11:10:21',4,'Contribution Amount',50.00,'USD',1,1,'civicrm_line_item',5), + (6,'2023-01-25 00:10:21','2022-11-01 10:28:21',16,'Contribution Amount',500.00,'USD',1,1,'civicrm_line_item',6), + (7,'2023-01-25 00:10:21','2023-01-23 11:10:21',19,'Contribution Amount',1750.00,'USD',1,1,'civicrm_line_item',7), + (8,'2023-01-25 00:10:21','2022-06-02 19:21:21',82,'Contribution Amount',50.00,'USD',1,1,'civicrm_line_item',8), + (9,'2023-01-25 00:10:21','2022-02-25 11:10:21',92,'Contribution Amount',10.00,'USD',1,1,'civicrm_line_item',9), + (10,'2023-01-25 00:10:21','2018-09-02 13:10:21',34,'Contribution Amount',250.00,'USD',1,1,'civicrm_line_item',10), + (11,'2023-01-25 00:10:21','2023-01-24 07:10:21',71,'Contribution Amount',500.00,'JPY',1,1,'civicrm_line_item',11), + (12,'2023-01-25 00:10:21','2021-10-25 00:37:01',43,'Contribution Amount',50.00,'USD',1,1,'civicrm_line_item',12), + (13,'2023-01-25 00:10:21','2022-10-25 00:00:00',32,'Contribution Amount',50.00,'USD',1,1,'civicrm_line_item',13), + (14,'2023-01-25 00:10:21','2022-11-25 00:00:00',32,'Contribution Amount',50.00,'USD',1,1,'civicrm_line_item',14), + (15,'2023-01-25 00:10:21','2021-10-25 11:10:21',59,'Contribution Amount',25.00,'USD',1,1,'civicrm_line_item',15), + (16,'2023-01-25 00:10:21','2021-11-25 11:10:21',59,'Contribution Amount',25.00,'USD',1,1,'civicrm_line_item',16), + (17,'2023-01-25 00:10:21','2021-12-25 11:10:21',59,'Contribution Amount',25.00,'USD',1,1,'civicrm_line_item',17), + (18,'2023-01-25 00:10:21','2022-01-25 11:10:21',59,'Contribution Amount',25.00,'USD',1,1,'civicrm_line_item',18), + (19,'2023-01-25 00:10:21','2022-02-25 11:10:21',59,'Contribution Amount',25.00,'USD',1,1,'civicrm_line_item',19), + (20,'2023-01-25 00:10:21','2022-03-25 11:10:21',59,'Contribution Amount',25.00,'USD',1,1,'civicrm_line_item',20), + (21,'2023-01-25 00:10:21','2022-04-25 11:10:21',59,'Contribution Amount',25.00,'USD',1,1,'civicrm_line_item',21), + (22,'2023-01-25 00:10:21','2022-05-25 11:10:21',59,'Contribution Amount',25.00,'USD',1,1,'civicrm_line_item',22), + (23,'2023-01-25 00:10:21','2022-06-25 11:10:21',59,'Contribution Amount',25.00,'USD',1,1,'civicrm_line_item',23), + (24,'2023-01-25 00:10:21','2022-07-25 11:10:21',59,'Contribution Amount',25.00,'USD',1,1,'civicrm_line_item',24), + (25,'2023-01-25 00:10:21','2022-08-25 11:10:21',59,'Contribution Amount',25.00,'USD',1,1,'civicrm_line_item',25), + (26,'2023-01-25 00:10:21','2022-05-25 11:10:21',99,'Contribution Amount',10.00,'CAD',1,1,'civicrm_line_item',26), + (27,'2023-01-25 00:10:21','2022-06-25 11:10:21',99,'Contribution Amount',10.00,'CAD',1,1,'civicrm_line_item',27), + (28,'2023-01-25 00:10:21','2022-07-25 11:10:21',99,'Contribution Amount',10.00,'CAD',1,1,'civicrm_line_item',28), + (29,'2023-01-25 00:10:21','2022-08-25 11:10:21',99,'Contribution Amount',10.00,'CAD',1,1,'civicrm_line_item',29), + (30,'2023-01-25 00:10:21','2022-09-25 11:10:21',99,'Contribution Amount',10.00,'CAD',1,1,'civicrm_line_item',30), + (31,'2023-01-25 00:10:21','2022-12-25 11:10:21',103,'Contribution Amount',5.00,'EUR',1,1,'civicrm_line_item',31), + (32,'2023-01-25 00:10:21','2023-01-25 11:10:21',134,'General',100.00,'USD',2,1,'civicrm_line_item',32), + (33,'2023-01-25 00:10:21','2023-01-25 11:10:21',11,'General',100.00,'USD',2,1,'civicrm_line_item',33), + (34,'2023-01-25 00:10:21','2023-01-25 11:10:21',194,'General',100.00,'USD',2,1,'civicrm_line_item',34), + (35,'2023-01-25 00:10:21','2023-01-25 11:10:21',154,'General',100.00,'USD',2,1,'civicrm_line_item',35), + (36,'2023-01-25 00:10:21','2023-01-25 11:10:21',165,'General',100.00,'USD',2,1,'civicrm_line_item',36), + (37,'2023-01-25 00:10:21','2023-01-25 11:10:21',193,'General',100.00,'USD',2,1,'civicrm_line_item',37), + (38,'2023-01-25 00:10:21','2023-01-25 11:10:21',169,'General',100.00,'USD',2,1,'civicrm_line_item',38), + (39,'2023-01-25 00:10:21','2023-01-25 11:10:21',44,'General',100.00,'USD',2,1,'civicrm_line_item',39), + (40,'2023-01-25 00:10:21','2023-01-25 11:10:21',31,'General',100.00,'USD',2,1,'civicrm_line_item',40), + (41,'2023-01-25 00:10:21','2023-01-25 11:10:21',49,'General',100.00,'USD',2,1,'civicrm_line_item',41), + (42,'2023-01-25 00:10:21','2023-01-25 11:10:21',100,'General',100.00,'USD',2,1,'civicrm_line_item',42), + (43,'2023-01-25 00:10:21','2023-01-25 11:10:21',110,'General',100.00,'USD',2,1,'civicrm_line_item',43), + (44,'2023-01-25 00:10:21','2023-01-25 11:10:21',144,'General',100.00,'USD',2,1,'civicrm_line_item',44), + (45,'2023-01-25 00:10:21','2023-01-25 11:10:21',71,'General',100.00,'USD',2,1,'civicrm_line_item',45), + (46,'2023-01-25 00:10:21','2023-01-25 11:10:21',168,'Student',50.00,'USD',2,1,'civicrm_line_item',46), + (47,'2023-01-25 00:10:21','2023-01-25 11:10:21',99,'Student',50.00,'USD',2,1,'civicrm_line_item',47), + (48,'2023-01-25 00:10:21','2023-01-25 11:10:21',72,'Student',50.00,'USD',2,1,'civicrm_line_item',48), + (49,'2023-01-25 00:10:22','2023-01-25 11:10:21',152,'Student',50.00,'USD',2,1,'civicrm_line_item',49), + (50,'2023-01-25 00:10:22','2023-01-25 11:10:21',16,'Student',50.00,'USD',2,1,'civicrm_line_item',50), + (51,'2023-01-25 00:10:22','2023-01-25 11:10:21',13,'Student',50.00,'USD',2,1,'civicrm_line_item',51), + (52,'2023-01-25 00:10:22','2023-01-25 11:10:21',8,'Student',50.00,'USD',2,1,'civicrm_line_item',52), + (53,'2023-01-25 00:10:22','2023-01-25 11:10:21',91,'Student',50.00,'USD',2,1,'civicrm_line_item',53), + (54,'2023-01-25 00:10:22','2023-01-25 11:10:21',115,'Student',50.00,'USD',2,1,'civicrm_line_item',54), + (55,'2023-01-25 00:10:22','2023-01-25 11:10:21',155,'Student',50.00,'USD',2,1,'civicrm_line_item',55), + (56,'2023-01-25 00:10:22','2023-01-25 11:10:21',52,'Student',50.00,'USD',2,1,'civicrm_line_item',56), + (57,'2023-01-25 00:10:22','2023-01-25 11:10:21',21,'Student',50.00,'USD',2,1,'civicrm_line_item',57), + (58,'2023-01-25 00:10:22','2023-01-25 11:10:21',81,'Student',50.00,'USD',2,1,'civicrm_line_item',58), + (59,'2023-01-25 00:10:22','2023-01-25 11:10:21',187,'Student',50.00,'USD',2,1,'civicrm_line_item',59), + (60,'2023-01-25 00:10:22','2023-01-25 11:10:21',153,'Lifetime',1200.00,'USD',2,1,'civicrm_line_item',60), + (61,'2023-01-25 00:10:22','2023-01-25 11:10:21',138,'Lifetime',1200.00,'USD',2,1,'civicrm_line_item',61), + (62,'2023-01-25 00:10:22','2023-01-25 11:10:21',113,'Soprano',50.00,'USD',2,1,'civicrm_line_item',97), + (63,'2023-01-25 00:10:22','2023-01-25 11:10:21',111,'Soprano',50.00,'USD',2,1,'civicrm_line_item',98), + (64,'2023-01-25 00:10:22','2023-01-25 11:10:21',146,'Soprano',50.00,'USD',2,1,'civicrm_line_item',99), + (65,'2023-01-25 00:10:22','2023-01-25 11:10:21',80,'Soprano',50.00,'USD',2,1,'civicrm_line_item',100), + (66,'2023-01-25 00:10:22','2023-01-25 11:10:21',48,'Soprano',50.00,'USD',2,1,'civicrm_line_item',101), + (67,'2023-01-25 00:10:22','2023-01-25 11:10:21',86,'Soprano',50.00,'USD',2,1,'civicrm_line_item',102), + (68,'2023-01-25 00:10:22','2023-01-25 11:10:21',118,'Soprano',50.00,'USD',2,1,'civicrm_line_item',103), + (69,'2023-01-25 00:10:22','2023-01-25 11:10:21',65,'Soprano',50.00,'USD',2,1,'civicrm_line_item',104), + (70,'2023-01-25 00:10:22','2023-01-25 11:10:21',190,'Soprano',50.00,'USD',2,1,'civicrm_line_item',105), + (71,'2023-01-25 00:10:22','2023-01-25 11:10:21',44,'Soprano',50.00,'USD',2,1,'civicrm_line_item',106), + (72,'2023-01-25 00:10:22','2023-01-25 11:10:21',127,'Soprano',50.00,'USD',2,1,'civicrm_line_item',107), + (73,'2023-01-25 00:10:22','2023-01-25 11:10:21',64,'Soprano',50.00,'USD',2,1,'civicrm_line_item',108), + (74,'2023-01-25 00:10:22','2023-01-25 11:10:21',172,'Soprano',50.00,'USD',2,1,'civicrm_line_item',109), + (75,'2023-01-25 00:10:22','2023-01-25 11:10:21',69,'Soprano',50.00,'USD',2,1,'civicrm_line_item',110), + (76,'2023-01-25 00:10:22','2023-01-25 11:10:21',188,'Soprano',50.00,'USD',2,1,'civicrm_line_item',111), + (77,'2023-01-25 00:10:22','2023-01-25 11:10:21',123,'Soprano',50.00,'USD',2,1,'civicrm_line_item',112), + (78,'2023-01-25 00:10:22','2023-01-25 11:10:21',13,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',63), + (79,'2023-01-25 00:10:22','2023-01-25 11:10:21',18,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',64), + (80,'2023-01-25 00:10:22','2023-01-25 11:10:21',43,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',65), + (81,'2023-01-25 00:10:22','2023-01-25 11:10:21',96,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',66), + (82,'2023-01-25 00:10:22','2023-01-25 11:10:21',159,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',67), + (83,'2023-01-25 00:10:22','2023-01-25 11:10:21',134,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',68), + (84,'2023-01-25 00:10:22','2023-01-25 11:10:21',93,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',69), + (85,'2023-01-25 00:10:22','2023-01-25 11:10:21',157,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',70), + (86,'2023-01-25 00:10:22','2023-01-25 11:10:21',97,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',71), + (87,'2023-01-25 00:10:22','2023-01-25 11:10:21',42,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',72), + (88,'2023-01-25 00:10:22','2023-01-25 11:10:21',109,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',73), + (89,'2023-01-25 00:10:22','2023-01-25 11:10:21',100,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',74), + (90,'2023-01-25 00:10:22','2023-01-25 11:10:21',183,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',75), + (91,'2023-01-25 00:10:22','2023-01-25 11:10:21',160,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',76), + (92,'2023-01-25 00:10:22','2023-01-25 11:10:21',187,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',77), + (93,'2023-01-25 00:10:22','2023-01-25 11:10:21',70,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',78), + (94,'2023-01-25 00:10:22','2023-01-25 11:10:21',83,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',79), + (95,'2023-01-25 00:10:22','2023-01-25 11:10:21',99,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',80), + (96,'2023-01-25 00:10:22','2023-01-25 11:10:21',194,'Single',50.00,'USD',4,1,'civicrm_line_item',81), + (97,'2023-01-25 00:10:22','2023-01-25 11:10:21',27,'Single',50.00,'USD',4,1,'civicrm_line_item',82), + (98,'2023-01-25 00:10:22','2023-01-25 11:10:21',170,'Single',50.00,'USD',4,1,'civicrm_line_item',83), + (99,'2023-01-25 00:10:22','2023-01-25 11:10:21',54,'Single',50.00,'USD',4,1,'civicrm_line_item',84), + (100,'2023-01-25 00:10:22','2023-01-25 11:10:21',180,'Single',50.00,'USD',4,1,'civicrm_line_item',85), + (101,'2023-01-25 00:10:22','2023-01-25 11:10:21',179,'Single',50.00,'USD',4,1,'civicrm_line_item',86), + (102,'2023-01-25 00:10:22','2023-01-25 11:10:21',166,'Single',50.00,'USD',4,1,'civicrm_line_item',87), + (103,'2023-01-25 00:10:22','2023-01-25 11:10:21',88,'Single',50.00,'USD',4,1,'civicrm_line_item',88), + (104,'2023-01-25 00:10:22','2023-01-25 11:10:21',19,'Single',50.00,'USD',4,1,'civicrm_line_item',89), + (105,'2023-01-25 00:10:22','2023-01-25 11:10:21',79,'Single',50.00,'USD',4,1,'civicrm_line_item',90), + (106,'2023-01-25 00:10:22','2023-01-25 11:10:21',82,'Single',50.00,'USD',4,1,'civicrm_line_item',91), + (107,'2023-01-25 00:10:22','2023-01-25 11:10:21',21,'Single',50.00,'USD',4,1,'civicrm_line_item',92), + (108,'2023-01-25 00:10:22','2023-01-25 11:10:21',137,'Single',50.00,'USD',4,1,'civicrm_line_item',93), + (109,'2023-01-25 00:10:22','2023-01-25 11:10:21',124,'Single',50.00,'USD',4,1,'civicrm_line_item',94), + (110,'2023-01-25 00:10:22','2023-01-25 11:10:21',176,'Single',50.00,'USD',4,1,'civicrm_line_item',95), + (111,'2023-01-25 00:10:22','2023-01-25 11:10:21',191,'Single',50.00,'USD',4,1,'civicrm_line_item',96); /*!40000 ALTER TABLE `civicrm_financial_item` ENABLE KEYS */; UNLOCK TABLES; @@ -3876,117 +3882,117 @@ UNLOCK TABLES; LOCK TABLES `civicrm_financial_trxn` WRITE; /*!40000 ALTER TABLE `civicrm_financial_trxn` DISABLE KEYS */; INSERT INTO `civicrm_financial_trxn` (`id`, `from_financial_account_id`, `to_financial_account_id`, `trxn_date`, `total_amount`, `fee_amount`, `net_amount`, `currency`, `is_payment`, `trxn_id`, `trxn_result_code`, `status_id`, `payment_processor_id`, `payment_instrument_id`, `card_type_id`, `check_number`, `pan_truncation`, `order_reference`) VALUES - (1,NULL,6,'2012-12-07 16:48:59',125.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,4,NULL,'1041',NULL,NULL), - (2,NULL,6,'2020-09-07 16:48:59',50.00,NULL,NULL,'USD',1,'P20901X1',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (3,NULL,6,'2016-11-12 03:48:59',25.00,NULL,NULL,'GBP',1,'GBP12',NULL,1,NULL,4,NULL,'2095',NULL,NULL), - (4,NULL,6,'2020-09-07 16:48:59',50.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,4,NULL,'10552',NULL,NULL), - (5,NULL,6,'2020-09-07 16:48:59',50.00,NULL,NULL,'USD',1,'Q90901X1',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (6,NULL,6,'2022-09-13 16:06:59',500.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,4,NULL,'509',NULL,NULL), - (7,NULL,6,'2022-12-05 16:48:59',1750.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,'102',NULL,NULL), - (8,NULL,6,'2022-04-15 00:59:59',50.00,NULL,NULL,'USD',1,'P20193L2',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (9,NULL,6,'2022-01-07 16:48:59',10.00,NULL,NULL,'USD',1,'P40232Y3',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (10,NULL,6,'2018-07-15 18:48:59',250.00,NULL,NULL,'USD',1,'P20193L6',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (11,NULL,6,'2022-12-06 12:48:59',500.00,NULL,NULL,'JPY',1,'PL71',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (12,NULL,6,'2021-09-07 06:15:39',50.00,NULL,NULL,'USD',1,'P291X1',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (13,NULL,6,'2022-09-07 00:00:00',50.00,NULL,NULL,'USD',1,'PL32I',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (14,NULL,6,'2022-10-07 00:00:00',50.00,NULL,NULL,'USD',1,'PL32II',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (15,NULL,6,'2021-09-07 16:48:59',25.00,NULL,NULL,'USD',1,'PL32I591',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (16,NULL,6,'2021-10-07 16:48:59',25.00,NULL,NULL,'USD',1,'PL32I592',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (17,NULL,6,'2021-11-07 16:48:59',25.00,NULL,NULL,'USD',1,'PL32I593',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (18,NULL,6,'2021-12-07 16:48:59',25.00,NULL,NULL,'USD',1,'PL32I594',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (19,NULL,6,'2022-01-07 16:48:59',25.00,NULL,NULL,'USD',1,'PL32I595',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (20,NULL,6,'2022-02-07 16:48:59',25.00,NULL,NULL,'USD',1,'PL32I596',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (21,NULL,6,'2022-03-07 16:48:59',25.00,NULL,NULL,'USD',1,'PL32I597',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (22,NULL,6,'2022-04-07 16:48:59',25.00,NULL,NULL,'USD',1,'PL32I598',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (23,NULL,6,'2022-05-07 16:48:59',25.00,NULL,NULL,'USD',1,'PL32I599',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (24,NULL,6,'2022-06-07 16:48:59',25.00,NULL,NULL,'USD',1,'PL32I5910',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (25,NULL,6,'2022-07-07 16:48:59',25.00,NULL,NULL,'USD',1,'PL32I5911',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (26,NULL,6,'2022-04-07 16:48:59',10.00,NULL,NULL,'CAD',1,'PL32I991',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (27,NULL,6,'2022-05-07 16:48:59',10.00,NULL,NULL,'CAD',1,'PL32I992',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (28,NULL,6,'2022-06-07 16:48:59',10.00,NULL,NULL,'CAD',1,'PL32I993',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (29,NULL,6,'2022-07-07 16:48:59',10.00,NULL,NULL,'CAD',1,'PL32I994',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (30,NULL,6,'2022-08-07 16:48:59',10.00,NULL,NULL,'CAD',1,'PL32I995',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (31,NULL,6,'2022-11-07 16:48:59',5.00,NULL,NULL,'EUR',1,'PL32I1031',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (32,NULL,6,'2022-12-07 16:48:59',100.00,NULL,NULL,'USD',1,'59405131e66504d7',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (33,NULL,6,'2022-12-07 16:48:59',100.00,NULL,NULL,'USD',1,'1350871b9e804370',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (34,NULL,6,'2022-12-07 16:48:59',100.00,NULL,NULL,'USD',1,'50102f02428840de',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (35,NULL,6,'2022-12-07 16:48:59',100.00,NULL,NULL,'USD',1,'1b012153a004d9ba',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (36,NULL,6,'2022-12-07 16:48:59',100.00,NULL,NULL,'USD',1,'b98ea4824abb97e7',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (37,NULL,6,'2022-12-07 16:48:59',100.00,NULL,NULL,'USD',1,'ef864878783f5e98',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (38,NULL,6,'2022-12-07 16:48:59',100.00,NULL,NULL,'USD',1,'4930d7ffc145bc25',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (39,NULL,6,'2022-12-07 16:48:59',100.00,NULL,NULL,'USD',1,'aeb8116ec0e9328a',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (40,NULL,6,'2022-12-07 16:48:59',100.00,NULL,NULL,'USD',1,'a9d80dc905a32d43',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (41,NULL,6,'2022-12-07 16:48:59',100.00,NULL,NULL,'USD',1,'20d786fe8b39154c',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (42,NULL,6,'2022-12-07 16:48:59',100.00,NULL,NULL,'USD',1,'4c3d16ffdd35ca90',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (43,NULL,6,'2022-12-07 16:48:59',100.00,NULL,NULL,'USD',1,'0e7ae7fa18543312',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (44,NULL,6,'2022-12-07 16:48:59',100.00,NULL,NULL,'USD',1,'9d049fe9d7793186',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (45,NULL,6,'2022-12-07 16:48:59',100.00,NULL,NULL,'USD',1,'e230a742c5b309cc',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (46,NULL,6,'2022-12-07 16:48:59',100.00,NULL,NULL,'USD',1,'e0a99b41741d091d',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (47,NULL,6,'2022-12-07 16:48:59',100.00,NULL,NULL,'USD',1,'30833835a519531f',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (48,NULL,6,'2022-12-07 16:48:59',100.00,NULL,NULL,'USD',1,'ffdc05eaef952213',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (49,NULL,6,'2022-12-07 16:48:59',50.00,NULL,NULL,'USD',1,'e807e8a68cd37b9e',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (50,NULL,6,'2022-12-07 16:48:59',50.00,NULL,NULL,'USD',1,'0033b0b1a2b28b90',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (51,NULL,6,'2022-12-07 16:48:59',50.00,NULL,NULL,'USD',1,'f8aa21b83b6b97ce',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (52,NULL,6,'2022-12-07 16:48:59',50.00,NULL,NULL,'USD',1,'7cc75eb5e7ed8dac',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (53,NULL,6,'2022-12-07 16:48:59',50.00,NULL,NULL,'USD',1,'69fc44a2473d036c',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (54,NULL,6,'2022-12-07 16:48:59',50.00,NULL,NULL,'USD',1,'4544e0da6aa6a8b9',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (55,NULL,6,'2022-12-07 16:48:59',50.00,NULL,NULL,'USD',1,'a31bae50f8535d11',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (56,NULL,6,'2022-12-07 16:48:59',50.00,NULL,NULL,'USD',1,'5a905e9746cef0b3',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (57,NULL,6,'2022-12-07 16:48:59',50.00,NULL,NULL,'USD',1,'667d4a354129cf34',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (58,NULL,6,'2022-12-07 16:48:59',50.00,NULL,NULL,'USD',1,'3a0fd1c17c16e58e',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (59,NULL,6,'2022-12-07 16:48:59',50.00,NULL,NULL,'USD',1,'5557d514f4ffc43b',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (60,NULL,6,'2022-12-07 16:48:59',1200.00,NULL,NULL,'USD',1,'732100249807c735',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (61,NULL,6,'2022-12-07 16:48:59',1200.00,NULL,NULL,'USD',1,'0dfa172b4e08a467',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (62,NULL,6,'2022-12-07 16:48:59',50.00,NULL,NULL,'USD',1,'b50b9a1a98a35746',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (63,NULL,6,'2022-12-07 16:48:59',50.00,NULL,NULL,'USD',1,'543fdf7a2b80afe2',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (64,NULL,6,'2022-12-07 16:48:59',50.00,NULL,NULL,'USD',1,'871bd110654641f1',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (65,NULL,6,'2022-12-07 16:48:59',50.00,NULL,NULL,'USD',1,'72f9edfb3fa15177',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (66,NULL,6,'2022-12-07 16:48:59',50.00,NULL,NULL,'USD',1,'73c8f07043e0b8bc',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (67,NULL,6,'2022-12-07 16:48:59',50.00,NULL,NULL,'USD',1,'575ebdaf9035c133',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (68,NULL,6,'2022-12-07 16:48:59',50.00,NULL,NULL,'USD',1,'4728623ad09af36e',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (69,NULL,6,'2022-12-07 16:48:59',50.00,NULL,NULL,'USD',1,'5031470f467d1aa6',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (70,NULL,6,'2022-12-07 16:48:59',50.00,NULL,NULL,'USD',1,'0509fc35edb6ec7d',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (71,NULL,6,'2022-12-07 16:48:59',50.00,NULL,NULL,'USD',1,'5b107ef0d766ea84',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (72,NULL,6,'2022-12-07 16:48:59',50.00,NULL,NULL,'USD',1,'79efe0aee9b644d0',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (73,NULL,6,'2022-12-07 16:48:59',50.00,NULL,NULL,'USD',1,'be3e9e9b0daaef14',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (74,NULL,6,'2022-12-07 16:48:59',50.00,NULL,NULL,'USD',1,'f47dc34f219618c4',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (75,NULL,6,'2022-12-07 16:48:59',50.00,NULL,NULL,'USD',1,'441846e4b150ae83',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (76,NULL,6,'2022-12-07 16:48:59',50.00,NULL,NULL,'USD',1,'bd4d7d3e62629cf3',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (77,NULL,6,'2022-12-07 16:48:59',50.00,NULL,NULL,'USD',1,'fc9423052c5219f7',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (78,NULL,6,'2022-12-07 16:48:59',800.00,NULL,NULL,'USD',1,'ca271cf7bfa86b7f',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (79,NULL,6,'2022-12-07 16:48:59',800.00,NULL,NULL,'USD',1,'0fb9a00cbeea520d',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (80,NULL,6,'2022-12-07 16:48:59',800.00,NULL,NULL,'USD',1,'c3783113271e8564',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (81,NULL,6,'2022-12-07 16:48:59',800.00,NULL,NULL,'USD',1,'d02b80acc84b1da5',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (82,NULL,6,'2022-12-07 16:48:59',800.00,NULL,NULL,'USD',1,'fda671c878eccb6a',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (83,NULL,6,'2022-12-07 16:48:59',800.00,NULL,NULL,'USD',1,'0f1173bc73749c2e',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (84,NULL,6,'2022-12-07 16:48:59',800.00,NULL,NULL,'USD',1,'eec1d8fd11f16d78',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (85,NULL,6,'2022-12-07 16:48:59',800.00,NULL,NULL,'USD',1,'e57c473ef4272d7f',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (86,NULL,6,'2022-12-07 16:48:59',800.00,NULL,NULL,'USD',1,'4e8db3ad1b40bfc5',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (87,NULL,6,'2022-12-07 16:48:59',800.00,NULL,NULL,'USD',1,'184bcb7f28b626b4',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (88,NULL,6,'2022-12-07 16:48:59',800.00,NULL,NULL,'USD',1,'06de54fab2b965bb',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (89,NULL,6,'2022-12-07 16:48:59',800.00,NULL,NULL,'USD',1,'5b818fa720e46b26',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (90,NULL,6,'2022-12-07 16:48:59',800.00,NULL,NULL,'USD',1,'674b2eff0c35d392',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (91,NULL,6,'2022-12-07 16:48:59',800.00,NULL,NULL,'USD',1,'defa9c450982cd20',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (92,NULL,6,'2022-12-07 16:48:59',800.00,NULL,NULL,'USD',1,'e4ce33f94141aa84',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (93,NULL,6,'2022-12-07 16:48:59',800.00,NULL,NULL,'USD',1,'1723e45e82ec89d2',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (94,NULL,6,'2022-12-07 16:48:59',800.00,NULL,NULL,'USD',1,'d9d0188669b9c208',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (95,NULL,6,'2022-12-07 16:48:59',800.00,NULL,NULL,'USD',1,'7828477427d14fb2',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (96,NULL,6,'2022-12-07 16:48:59',50.00,NULL,NULL,'USD',1,'ad545cf78737d3f7',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (97,NULL,6,'2022-12-07 16:48:59',50.00,NULL,NULL,'USD',1,'da599fe9081269c6',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (98,NULL,6,'2022-12-07 16:48:59',50.00,NULL,NULL,'USD',1,'be412feae64f2b31',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (99,NULL,6,'2022-12-07 16:48:59',50.00,NULL,NULL,'USD',1,'f4e796dabcbdcc4f',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (100,NULL,6,'2022-12-07 16:48:59',50.00,NULL,NULL,'USD',1,'37a3b9081603c0e5',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (101,NULL,6,'2022-12-07 16:48:59',50.00,NULL,NULL,'USD',1,'822d2fb5db51d551',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (102,NULL,6,'2022-12-07 16:48:59',50.00,NULL,NULL,'USD',1,'0245c5ecbe9efa38',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (103,NULL,6,'2022-12-07 16:48:59',50.00,NULL,NULL,'USD',1,'3592185b60159117',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (104,NULL,6,'2022-12-07 16:48:59',50.00,NULL,NULL,'USD',1,'85a4f3e7330276ef',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (105,NULL,6,'2022-12-07 16:48:59',50.00,NULL,NULL,'USD',1,'5228e5b8801ea6b3',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (106,NULL,6,'2022-12-07 16:48:59',50.00,NULL,NULL,'USD',1,'73245f0768df7cca',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (107,NULL,6,'2022-12-07 16:48:59',50.00,NULL,NULL,'USD',1,'dfe9f2e0d989d02a',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (108,NULL,6,'2022-12-07 16:48:59',50.00,NULL,NULL,'USD',1,'9dd5f1aa477e78e4',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (109,NULL,6,'2022-12-07 16:48:59',50.00,NULL,NULL,'USD',1,'1ec65e4a0847e5a9',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (110,NULL,6,'2022-12-07 16:48:59',50.00,NULL,NULL,'USD',1,'1a30a78cb236c2a2',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (111,NULL,6,'2022-12-07 16:48:59',50.00,NULL,NULL,'USD',1,'71b1fa47d40c6641',NULL,1,NULL,1,NULL,NULL,NULL,NULL); + (1,NULL,6,'2013-01-25 11:10:21',125.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,4,NULL,'1041',NULL,NULL), + (2,NULL,6,'2020-10-25 11:10:21',50.00,NULL,NULL,'USD',1,'P20901X1',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (3,NULL,6,'2016-12-30 22:10:21',25.00,NULL,NULL,'GBP',1,'GBP12',NULL,1,NULL,4,NULL,'2095',NULL,NULL), + (4,NULL,6,'2020-10-25 11:10:21',50.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,4,NULL,'10552',NULL,NULL), + (5,NULL,6,'2020-10-25 11:10:21',50.00,NULL,NULL,'USD',1,'Q90901X1',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (6,NULL,6,'2022-11-01 10:28:21',500.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,4,NULL,'509',NULL,NULL), + (7,NULL,6,'2023-01-23 11:10:21',1750.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,'102',NULL,NULL), + (8,NULL,6,'2022-06-02 19:21:21',50.00,NULL,NULL,'USD',1,'P20193L2',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (9,NULL,6,'2022-02-25 11:10:21',10.00,NULL,NULL,'USD',1,'P40232Y3',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (10,NULL,6,'2018-09-02 13:10:21',250.00,NULL,NULL,'USD',1,'P20193L6',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (11,NULL,6,'2023-01-24 07:10:21',500.00,NULL,NULL,'JPY',1,'PL71',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (12,NULL,6,'2021-10-25 00:37:01',50.00,NULL,NULL,'USD',1,'P291X1',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (13,NULL,6,'2022-10-25 00:00:00',50.00,NULL,NULL,'USD',1,'PL32I',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (14,NULL,6,'2022-11-25 00:00:00',50.00,NULL,NULL,'USD',1,'PL32II',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (15,NULL,6,'2021-10-25 11:10:21',25.00,NULL,NULL,'USD',1,'PL32I591',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (16,NULL,6,'2021-11-25 11:10:21',25.00,NULL,NULL,'USD',1,'PL32I592',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (17,NULL,6,'2021-12-25 11:10:21',25.00,NULL,NULL,'USD',1,'PL32I593',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (18,NULL,6,'2022-01-25 11:10:21',25.00,NULL,NULL,'USD',1,'PL32I594',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (19,NULL,6,'2022-02-25 11:10:21',25.00,NULL,NULL,'USD',1,'PL32I595',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (20,NULL,6,'2022-03-25 11:10:21',25.00,NULL,NULL,'USD',1,'PL32I596',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (21,NULL,6,'2022-04-25 11:10:21',25.00,NULL,NULL,'USD',1,'PL32I597',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (22,NULL,6,'2022-05-25 11:10:21',25.00,NULL,NULL,'USD',1,'PL32I598',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (23,NULL,6,'2022-06-25 11:10:21',25.00,NULL,NULL,'USD',1,'PL32I599',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (24,NULL,6,'2022-07-25 11:10:21',25.00,NULL,NULL,'USD',1,'PL32I5910',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (25,NULL,6,'2022-08-25 11:10:21',25.00,NULL,NULL,'USD',1,'PL32I5911',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (26,NULL,6,'2022-05-25 11:10:21',10.00,NULL,NULL,'CAD',1,'PL32I991',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (27,NULL,6,'2022-06-25 11:10:21',10.00,NULL,NULL,'CAD',1,'PL32I992',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (28,NULL,6,'2022-07-25 11:10:21',10.00,NULL,NULL,'CAD',1,'PL32I993',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (29,NULL,6,'2022-08-25 11:10:21',10.00,NULL,NULL,'CAD',1,'PL32I994',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (30,NULL,6,'2022-09-25 11:10:21',10.00,NULL,NULL,'CAD',1,'PL32I995',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (31,NULL,6,'2022-12-25 11:10:21',5.00,NULL,NULL,'EUR',1,'PL32I1031',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (32,NULL,6,'2023-01-25 11:10:21',100.00,NULL,NULL,'USD',1,'b6c6dc6a7ff26fdd',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (33,NULL,6,'2023-01-25 11:10:21',100.00,NULL,NULL,'USD',1,'5fb149937591d173',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (34,NULL,6,'2023-01-25 11:10:21',100.00,NULL,NULL,'USD',1,'a13cefe561e26454',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (35,NULL,6,'2023-01-25 11:10:21',100.00,NULL,NULL,'USD',1,'f3dc6b4534eb5b24',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (36,NULL,6,'2023-01-25 11:10:21',100.00,NULL,NULL,'USD',1,'97aa0294057737a7',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (37,NULL,6,'2023-01-25 11:10:21',100.00,NULL,NULL,'USD',1,'dc4127b9dff93a89',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (38,NULL,6,'2023-01-25 11:10:21',100.00,NULL,NULL,'USD',1,'d7b0e77c2b1786d7',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (39,NULL,6,'2023-01-25 11:10:21',100.00,NULL,NULL,'USD',1,'92a89478f6a8b7b3',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (40,NULL,6,'2023-01-25 11:10:21',100.00,NULL,NULL,'USD',1,'2380d65512d9d406',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (41,NULL,6,'2023-01-25 11:10:21',100.00,NULL,NULL,'USD',1,'84eeafedd1548bde',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (42,NULL,6,'2023-01-25 11:10:21',100.00,NULL,NULL,'USD',1,'282d04b437d9a14d',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (43,NULL,6,'2023-01-25 11:10:21',100.00,NULL,NULL,'USD',1,'844363646dc18acc',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (44,NULL,6,'2023-01-25 11:10:21',100.00,NULL,NULL,'USD',1,'6d0b7db4c6f2716c',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (45,NULL,6,'2023-01-25 11:10:21',100.00,NULL,NULL,'USD',1,'ac0936fc804ebcc3',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (46,NULL,6,'2023-01-25 11:10:21',50.00,NULL,NULL,'USD',1,'524eae9386105d49',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (47,NULL,6,'2023-01-25 11:10:21',50.00,NULL,NULL,'USD',1,'684db73560bf4885',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (48,NULL,6,'2023-01-25 11:10:21',50.00,NULL,NULL,'USD',1,'f58b3dc1a3354e55',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (49,NULL,6,'2023-01-25 11:10:21',50.00,NULL,NULL,'USD',1,'93ac74a6be0a542b',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (50,NULL,6,'2023-01-25 11:10:21',50.00,NULL,NULL,'USD',1,'ac53b76b8d60dc07',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (51,NULL,6,'2023-01-25 11:10:21',50.00,NULL,NULL,'USD',1,'d16391f8df9b0127',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (52,NULL,6,'2023-01-25 11:10:21',50.00,NULL,NULL,'USD',1,'3d8f58f681c83a95',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (53,NULL,6,'2023-01-25 11:10:21',50.00,NULL,NULL,'USD',1,'f31691c305ce96cf',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (54,NULL,6,'2023-01-25 11:10:21',50.00,NULL,NULL,'USD',1,'15865089a5bb5a73',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (55,NULL,6,'2023-01-25 11:10:21',50.00,NULL,NULL,'USD',1,'2000bc00e742b5de',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (56,NULL,6,'2023-01-25 11:10:21',50.00,NULL,NULL,'USD',1,'b925d5e40395d78a',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (57,NULL,6,'2023-01-25 11:10:21',50.00,NULL,NULL,'USD',1,'8a7627b3bbbda1bf',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (58,NULL,6,'2023-01-25 11:10:21',50.00,NULL,NULL,'USD',1,'f865e42dad3d50cf',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (59,NULL,6,'2023-01-25 11:10:21',50.00,NULL,NULL,'USD',1,'935fbea586c2a2cb',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (60,NULL,6,'2023-01-25 11:10:21',1200.00,NULL,NULL,'USD',1,'40b57706eae6631d',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (61,NULL,6,'2023-01-25 11:10:21',1200.00,NULL,NULL,'USD',1,'de94057b871e3b98',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (62,NULL,6,'2023-01-25 11:10:21',50.00,NULL,NULL,'USD',1,'a4fc117f88dc8da0',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (63,NULL,6,'2023-01-25 11:10:21',50.00,NULL,NULL,'USD',1,'249cedf705163304',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (64,NULL,6,'2023-01-25 11:10:21',50.00,NULL,NULL,'USD',1,'3714c4877c403a0a',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (65,NULL,6,'2023-01-25 11:10:21',50.00,NULL,NULL,'USD',1,'97222a2adc929f95',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (66,NULL,6,'2023-01-25 11:10:21',50.00,NULL,NULL,'USD',1,'968bcdf019e31319',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (67,NULL,6,'2023-01-25 11:10:21',50.00,NULL,NULL,'USD',1,'f40f7c487d1572c8',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (68,NULL,6,'2023-01-25 11:10:21',50.00,NULL,NULL,'USD',1,'5f98b9b08c61524a',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (69,NULL,6,'2023-01-25 11:10:21',50.00,NULL,NULL,'USD',1,'1613371d0121f1de',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (70,NULL,6,'2023-01-25 11:10:21',50.00,NULL,NULL,'USD',1,'b6136fdf513a2bfc',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (71,NULL,6,'2023-01-25 11:10:21',50.00,NULL,NULL,'USD',1,'8ee25cd47244738d',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (72,NULL,6,'2023-01-25 11:10:21',50.00,NULL,NULL,'USD',1,'d91f8fbff72c8085',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (73,NULL,6,'2023-01-25 11:10:21',50.00,NULL,NULL,'USD',1,'1b280cb8b867e92d',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (74,NULL,6,'2023-01-25 11:10:21',50.00,NULL,NULL,'USD',1,'7302e000b85551c0',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (75,NULL,6,'2023-01-25 11:10:21',50.00,NULL,NULL,'USD',1,'0c33cf3d06281860',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (76,NULL,6,'2023-01-25 11:10:21',50.00,NULL,NULL,'USD',1,'36cbda2b0ca06d1d',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (77,NULL,6,'2023-01-25 11:10:21',50.00,NULL,NULL,'USD',1,'1b26cc54516d83df',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (78,NULL,6,'2023-01-25 11:10:21',800.00,NULL,NULL,'USD',1,'723c76b6818d3ac6',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (79,NULL,6,'2023-01-25 11:10:21',800.00,NULL,NULL,'USD',1,'e2db4ec1d7a6e2a9',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (80,NULL,6,'2023-01-25 11:10:21',800.00,NULL,NULL,'USD',1,'d9fabe07d6ee2a4f',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (81,NULL,6,'2023-01-25 11:10:21',800.00,NULL,NULL,'USD',1,'92b29dbaab5b5382',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (82,NULL,6,'2023-01-25 11:10:21',800.00,NULL,NULL,'USD',1,'5c882a4cf827f611',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (83,NULL,6,'2023-01-25 11:10:21',800.00,NULL,NULL,'USD',1,'0c09c40aebba1a70',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (84,NULL,6,'2023-01-25 11:10:21',800.00,NULL,NULL,'USD',1,'4c7fb6e2279af937',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (85,NULL,6,'2023-01-25 11:10:21',800.00,NULL,NULL,'USD',1,'406ee71fc2a168cc',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (86,NULL,6,'2023-01-25 11:10:21',800.00,NULL,NULL,'USD',1,'60cf8ecd63fc87cb',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (87,NULL,6,'2023-01-25 11:10:21',800.00,NULL,NULL,'USD',1,'8eca9defb26ad067',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (88,NULL,6,'2023-01-25 11:10:21',800.00,NULL,NULL,'USD',1,'0ec26248b7992a1c',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (89,NULL,6,'2023-01-25 11:10:21',800.00,NULL,NULL,'USD',1,'89fc6aeafe4c712e',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (90,NULL,6,'2023-01-25 11:10:21',800.00,NULL,NULL,'USD',1,'894693ee0d7ef1a6',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (91,NULL,6,'2023-01-25 11:10:21',800.00,NULL,NULL,'USD',1,'6aaef3ee5ccc4d9c',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (92,NULL,6,'2023-01-25 11:10:21',800.00,NULL,NULL,'USD',1,'0cb6aeab14482638',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (93,NULL,6,'2023-01-25 11:10:21',800.00,NULL,NULL,'USD',1,'93a9a46b13ed2ea1',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (94,NULL,6,'2023-01-25 11:10:21',800.00,NULL,NULL,'USD',1,'01829806aa2d025f',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (95,NULL,6,'2023-01-25 11:10:21',800.00,NULL,NULL,'USD',1,'9cf79c424fc687d7',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (96,NULL,6,'2023-01-25 11:10:21',50.00,NULL,NULL,'USD',1,'90747ff7f8788f0d',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (97,NULL,6,'2023-01-25 11:10:21',50.00,NULL,NULL,'USD',1,'132e61fa1e10d161',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (98,NULL,6,'2023-01-25 11:10:21',50.00,NULL,NULL,'USD',1,'41cc55bcc280074e',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (99,NULL,6,'2023-01-25 11:10:21',50.00,NULL,NULL,'USD',1,'14d6a74b07cd686e',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (100,NULL,6,'2023-01-25 11:10:21',50.00,NULL,NULL,'USD',1,'0f0dc0093dbb71df',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (101,NULL,6,'2023-01-25 11:10:21',50.00,NULL,NULL,'USD',1,'47d2b289214cb577',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (102,NULL,6,'2023-01-25 11:10:21',50.00,NULL,NULL,'USD',1,'677948275bd8bbe2',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (103,NULL,6,'2023-01-25 11:10:21',50.00,NULL,NULL,'USD',1,'7c06ef857fa9df61',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (104,NULL,6,'2023-01-25 11:10:21',50.00,NULL,NULL,'USD',1,'5cbf94e945409735',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (105,NULL,6,'2023-01-25 11:10:21',50.00,NULL,NULL,'USD',1,'209cc0030a3cc9dc',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (106,NULL,6,'2023-01-25 11:10:21',50.00,NULL,NULL,'USD',1,'b37d6dd8e469cf14',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (107,NULL,6,'2023-01-25 11:10:21',50.00,NULL,NULL,'USD',1,'31c23b91e6f05713',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (108,NULL,6,'2023-01-25 11:10:21',50.00,NULL,NULL,'USD',1,'661fb5c13b80fc71',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (109,NULL,6,'2023-01-25 11:10:21',50.00,NULL,NULL,'USD',1,'5c299a9d2cefcc48',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (110,NULL,6,'2023-01-25 11:10:21',50.00,NULL,NULL,'USD',1,'8647f630f0514f82',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (111,NULL,6,'2023-01-25 11:10:21',50.00,NULL,NULL,'USD',1,'6e22090f617217a5',NULL,1,NULL,1,NULL,NULL,NULL,NULL); /*!40000 ALTER TABLE `civicrm_financial_trxn` ENABLE KEYS */; UNLOCK TABLES; @@ -4025,89 +4031,89 @@ 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,187,'Added',NULL,NULL), - (2,2,28,'Added',NULL,NULL), - (3,2,188,'Added',NULL,NULL), - (4,2,95,'Added',NULL,NULL), - (5,2,88,'Added',NULL,NULL), - (6,2,6,'Added',NULL,NULL), - (7,2,185,'Added',NULL,NULL), - (8,2,150,'Added',NULL,NULL), - (9,2,106,'Added',NULL,NULL), - (10,2,197,'Added',NULL,NULL), - (11,2,190,'Added',NULL,NULL), - (12,2,7,'Added',NULL,NULL), - (13,2,111,'Added',NULL,NULL), - (14,2,31,'Added',NULL,NULL), - (15,2,131,'Added',NULL,NULL), - (16,2,57,'Added',NULL,NULL), - (17,2,172,'Added',NULL,NULL), - (18,2,84,'Added',NULL,NULL), - (19,2,184,'Added',NULL,NULL), - (20,2,98,'Added',NULL,NULL), - (21,2,166,'Added',NULL,NULL), - (22,2,48,'Added',NULL,NULL), - (23,2,62,'Added',NULL,NULL), - (24,2,30,'Added',NULL,NULL), - (25,2,9,'Added',NULL,NULL), - (26,2,144,'Added',NULL,NULL), - (27,2,23,'Added',NULL,NULL), - (28,2,33,'Added',NULL,NULL), - (29,2,99,'Added',NULL,NULL), - (30,2,58,'Added',NULL,NULL), - (31,2,147,'Added',NULL,NULL), - (32,2,82,'Added',NULL,NULL), - (33,2,72,'Added',NULL,NULL), - (34,2,93,'Added',NULL,NULL), - (35,2,117,'Added',NULL,NULL), - (36,2,18,'Added',NULL,NULL), - (37,2,13,'Added',NULL,NULL), - (38,2,17,'Added',NULL,NULL), - (39,2,61,'Added',NULL,NULL), - (40,2,41,'Added',NULL,NULL), - (41,2,90,'Added',NULL,NULL), - (42,2,195,'Added',NULL,NULL), - (43,2,92,'Added',NULL,NULL), - (44,2,101,'Added',NULL,NULL), + (1,2,199,'Added',NULL,NULL), + (2,2,85,'Added',NULL,NULL), + (3,2,186,'Added',NULL,NULL), + (4,2,47,'Added',NULL,NULL), + (5,2,154,'Added',NULL,NULL), + (6,2,145,'Added',NULL,NULL), + (7,2,50,'Added',NULL,NULL), + (8,2,75,'Added',NULL,NULL), + (9,2,4,'Added',NULL,NULL), + (10,2,192,'Added',NULL,NULL), + (11,2,92,'Added',NULL,NULL), + (12,2,89,'Added',NULL,NULL), + (13,2,31,'Added',NULL,NULL), + (14,2,158,'Added',NULL,NULL), + (15,2,125,'Added',NULL,NULL), + (16,2,137,'Added',NULL,NULL), + (17,2,138,'Added',NULL,NULL), + (18,2,46,'Added',NULL,NULL), + (19,2,13,'Added',NULL,NULL), + (20,2,99,'Added',NULL,NULL), + (21,2,2,'Added',NULL,NULL), + (22,2,113,'Added',NULL,NULL), + (23,2,130,'Added',NULL,NULL), + (24,2,108,'Added',NULL,NULL), + (25,2,14,'Added',NULL,NULL), + (26,2,198,'Added',NULL,NULL), + (27,2,174,'Added',NULL,NULL), + (28,2,107,'Added',NULL,NULL), + (29,2,86,'Added',NULL,NULL), + (30,2,54,'Added',NULL,NULL), + (31,2,161,'Added',NULL,NULL), + (32,2,165,'Added',NULL,NULL), + (33,2,139,'Added',NULL,NULL), + (34,2,37,'Added',NULL,NULL), + (35,2,141,'Added',NULL,NULL), + (36,2,170,'Added',NULL,NULL), + (37,2,41,'Added',NULL,NULL), + (38,2,21,'Added',NULL,NULL), + (39,2,181,'Added',NULL,NULL), + (40,2,83,'Added',NULL,NULL), + (41,2,73,'Added',NULL,NULL), + (42,2,53,'Added',NULL,NULL), + (43,2,178,'Added',NULL,NULL), + (44,2,133,'Added',NULL,NULL), (45,2,155,'Added',NULL,NULL), - (46,2,29,'Added',NULL,NULL), - (47,2,136,'Added',NULL,NULL), - (48,2,128,'Added',NULL,NULL), - (49,2,120,'Added',NULL,NULL), - (50,2,66,'Added',NULL,NULL), - (51,2,91,'Added',NULL,NULL), - (52,2,65,'Added',NULL,NULL), - (53,2,170,'Added',NULL,NULL), - (54,2,183,'Added',NULL,NULL), - (55,2,201,'Added',NULL,NULL), - (56,2,75,'Added',NULL,NULL), - (57,2,52,'Added',NULL,NULL), - (58,2,47,'Added',NULL,NULL), - (59,2,115,'Added',NULL,NULL), - (60,2,130,'Added',NULL,NULL), - (61,3,100,'Added',NULL,NULL), - (62,3,169,'Added',NULL,NULL), - (63,3,108,'Added',NULL,NULL), - (64,3,87,'Added',NULL,NULL), - (65,3,71,'Added',NULL,NULL), - (66,3,35,'Added',NULL,NULL), - (67,3,123,'Added',NULL,NULL), - (68,3,146,'Added',NULL,NULL), - (69,3,50,'Added',NULL,NULL), - (70,3,162,'Added',NULL,NULL), - (71,3,140,'Added',NULL,NULL), - (72,3,191,'Added',NULL,NULL), - (73,3,175,'Added',NULL,NULL), - (74,3,152,'Added',NULL,NULL), - (75,3,181,'Added',NULL,NULL), - (76,4,187,'Added',NULL,NULL), - (77,4,150,'Added',NULL,NULL), - (78,4,131,'Added',NULL,NULL), - (79,4,48,'Added',NULL,NULL), - (80,4,99,'Added',NULL,NULL), - (81,4,18,'Added',NULL,NULL), - (82,4,92,'Added',NULL,NULL), - (83,4,66,'Added',NULL,NULL), + (46,2,81,'Added',NULL,NULL), + (47,2,177,'Added',NULL,NULL), + (48,2,116,'Added',NULL,NULL), + (49,2,6,'Added',NULL,NULL), + (50,2,95,'Added',NULL,NULL), + (51,2,171,'Added',NULL,NULL), + (52,2,129,'Added',NULL,NULL), + (53,2,51,'Added',NULL,NULL), + (54,2,173,'Added',NULL,NULL), + (55,2,134,'Added',NULL,NULL), + (56,2,23,'Added',NULL,NULL), + (57,2,118,'Added',NULL,NULL), + (58,2,82,'Added',NULL,NULL), + (59,2,79,'Added',NULL,NULL), + (60,2,72,'Added',NULL,NULL), + (61,3,71,'Added',NULL,NULL), + (62,3,185,'Added',NULL,NULL), + (63,3,115,'Added',NULL,NULL), + (64,3,43,'Added',NULL,NULL), + (65,3,201,'Added',NULL,NULL), + (66,3,182,'Added',NULL,NULL), + (67,3,8,'Added',NULL,NULL), + (68,3,52,'Added',NULL,NULL), + (69,3,74,'Added',NULL,NULL), + (70,3,36,'Added',NULL,NULL), + (71,3,103,'Added',NULL,NULL), + (72,3,144,'Added',NULL,NULL), + (73,3,39,'Added',NULL,NULL), + (74,3,159,'Added',NULL,NULL), + (75,3,168,'Added',NULL,NULL), + (76,4,199,'Added',NULL,NULL), + (77,4,75,'Added',NULL,NULL), + (78,4,125,'Added',NULL,NULL), + (79,4,113,'Added',NULL,NULL), + (80,4,86,'Added',NULL,NULL), + (81,4,170,'Added',NULL,NULL), + (82,4,178,'Added',NULL,NULL), + (83,4,95,'Added',NULL,NULL), (84,4,202,'Added',NULL,NULL); /*!40000 ALTER TABLE `civicrm_group_contact` ENABLE KEYS */; UNLOCK TABLES; @@ -4224,84 +4230,84 @@ INSERT INTO `civicrm_line_item` (`id`, `entity_table`, `entity_id`, `contributio (31,'civicrm_contribution',31,31,1,'Contribution Amount',1.00,5.00,5.00,0,1,1,0.00,NULL,NULL), (32,'civicrm_membership',1,32,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL,NULL), (33,'civicrm_membership',3,34,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL,NULL), - (34,'civicrm_membership',5,36,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL,NULL), - (35,'civicrm_membership',7,38,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL,NULL), - (36,'civicrm_membership',9,40,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL,NULL), - (37,'civicrm_membership',10,41,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL,NULL), - (38,'civicrm_membership',13,44,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL,NULL), - (39,'civicrm_membership',15,46,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL,NULL), - (40,'civicrm_membership',17,48,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL,NULL), - (41,'civicrm_membership',19,50,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL,NULL), - (42,'civicrm_membership',20,51,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL,NULL), - (43,'civicrm_membership',21,52,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL,NULL), - (44,'civicrm_membership',23,54,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL,NULL), - (45,'civicrm_membership',25,56,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL,NULL), - (46,'civicrm_membership',27,58,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL,NULL), - (47,'civicrm_membership',29,60,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL,NULL), - (48,'civicrm_membership',30,61,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL,NULL), - (49,'civicrm_membership',2,33,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,NULL,NULL), - (50,'civicrm_membership',4,35,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,NULL,NULL), - (51,'civicrm_membership',6,37,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,NULL,NULL), - (52,'civicrm_membership',8,39,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,NULL,NULL), - (53,'civicrm_membership',12,43,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,NULL,NULL), - (54,'civicrm_membership',14,45,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,NULL,NULL), - (55,'civicrm_membership',16,47,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,NULL,NULL), - (56,'civicrm_membership',18,49,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,NULL,NULL), + (34,'civicrm_membership',7,38,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL,NULL), + (35,'civicrm_membership',9,40,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL,NULL), + (36,'civicrm_membership',13,44,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL,NULL), + (37,'civicrm_membership',15,46,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL,NULL), + (38,'civicrm_membership',17,48,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL,NULL), + (39,'civicrm_membership',19,50,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL,NULL), + (40,'civicrm_membership',21,52,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL,NULL), + (41,'civicrm_membership',23,54,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL,NULL), + (42,'civicrm_membership',25,56,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL,NULL), + (43,'civicrm_membership',27,58,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL,NULL), + (44,'civicrm_membership',29,60,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL,NULL), + (45,'civicrm_membership',30,61,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL,NULL), + (46,'civicrm_membership',2,33,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,NULL,NULL), + (47,'civicrm_membership',4,35,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,NULL,NULL), + (48,'civicrm_membership',5,36,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,NULL,NULL), + (49,'civicrm_membership',6,37,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,NULL,NULL), + (50,'civicrm_membership',8,39,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,NULL,NULL), + (51,'civicrm_membership',10,41,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,NULL,NULL), + (52,'civicrm_membership',12,43,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,NULL,NULL), + (53,'civicrm_membership',14,45,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,NULL,NULL), + (54,'civicrm_membership',16,47,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,NULL,NULL), + (55,'civicrm_membership',18,49,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,NULL,NULL), + (56,'civicrm_membership',20,51,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,NULL,NULL), (57,'civicrm_membership',24,55,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,NULL,NULL), (58,'civicrm_membership',26,57,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,NULL,NULL), (59,'civicrm_membership',28,59,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,NULL,NULL), (60,'civicrm_membership',11,42,4,'Lifetime',1.00,1200.00,1200.00,NULL,9,2,0.00,NULL,NULL), (61,'civicrm_membership',22,53,4,'Lifetime',1.00,1200.00,1200.00,NULL,9,2,0.00,NULL,NULL), - (63,'civicrm_participant',3,78,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL,NULL), - (64,'civicrm_participant',6,66,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL,NULL), - (65,'civicrm_participant',9,104,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL,NULL), - (66,'civicrm_participant',12,69,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL,NULL), - (67,'civicrm_participant',15,103,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL,NULL), - (68,'civicrm_participant',18,91,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL,NULL), - (69,'civicrm_participant',21,110,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL,NULL), - (70,'civicrm_participant',24,106,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL,NULL), - (71,'civicrm_participant',25,111,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL,NULL), - (72,'civicrm_participant',28,98,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL,NULL), - (73,'civicrm_participant',31,95,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL,NULL), - (74,'civicrm_participant',34,64,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL,NULL), - (75,'civicrm_participant',37,90,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL,NULL), - (76,'civicrm_participant',40,96,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL,NULL), - (77,'civicrm_participant',43,71,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL,NULL), - (78,'civicrm_participant',46,85,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL,NULL), - (79,'civicrm_participant',49,80,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL,NULL), - (80,'civicrm_participant',50,81,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL,NULL), - (81,'civicrm_participant',1,74,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL,NULL), - (82,'civicrm_participant',4,77,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL,NULL), - (83,'civicrm_participant',7,70,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL,NULL), - (84,'civicrm_participant',10,79,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL,NULL), - (85,'civicrm_participant',13,97,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL,NULL), - (86,'civicrm_participant',16,109,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL,NULL), - (87,'civicrm_participant',19,88,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL,NULL), - (88,'civicrm_participant',22,72,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL,NULL), - (89,'civicrm_participant',26,105,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL,NULL), - (90,'civicrm_participant',29,102,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL,NULL), - (91,'civicrm_participant',32,100,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL,NULL), - (92,'civicrm_participant',35,76,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL,NULL), - (93,'civicrm_participant',38,75,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL,NULL), - (94,'civicrm_participant',41,94,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL,NULL), - (95,'civicrm_participant',44,67,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL,NULL), - (96,'civicrm_participant',47,99,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL,NULL), - (97,'civicrm_participant',2,82,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL,NULL), - (98,'civicrm_participant',5,87,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL,NULL), - (99,'civicrm_participant',8,101,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL,NULL), - (100,'civicrm_participant',11,93,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL,NULL), - (101,'civicrm_participant',14,65,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL,NULL), - (102,'civicrm_participant',17,73,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL,NULL), - (103,'civicrm_participant',20,86,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL,NULL), - (104,'civicrm_participant',23,112,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL,NULL), - (105,'civicrm_participant',27,63,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL,NULL), - (106,'civicrm_participant',30,108,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL,NULL), - (107,'civicrm_participant',33,83,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL,NULL), - (108,'civicrm_participant',36,84,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL,NULL), - (109,'civicrm_participant',39,89,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL,NULL), - (110,'civicrm_participant',42,68,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL,NULL), + (63,'civicrm_participant',3,65,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL,NULL), + (64,'civicrm_participant',6,68,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL,NULL), + (65,'civicrm_participant',9,71,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL,NULL), + (66,'civicrm_participant',12,74,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL,NULL), + (67,'civicrm_participant',15,77,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL,NULL), + (68,'civicrm_participant',18,80,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL,NULL), + (69,'civicrm_participant',21,83,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL,NULL), + (70,'civicrm_participant',24,86,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL,NULL), + (71,'civicrm_participant',25,87,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL,NULL), + (72,'civicrm_participant',28,90,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL,NULL), + (73,'civicrm_participant',31,93,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL,NULL), + (74,'civicrm_participant',34,96,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL,NULL), + (75,'civicrm_participant',37,99,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL,NULL), + (76,'civicrm_participant',40,102,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL,NULL), + (77,'civicrm_participant',43,105,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL,NULL), + (78,'civicrm_participant',46,108,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL,NULL), + (79,'civicrm_participant',49,111,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL,NULL), + (80,'civicrm_participant',50,112,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL,NULL), + (81,'civicrm_participant',1,63,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL,NULL), + (82,'civicrm_participant',4,66,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL,NULL), + (83,'civicrm_participant',7,69,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL,NULL), + (84,'civicrm_participant',10,72,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL,NULL), + (85,'civicrm_participant',13,75,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL,NULL), + (86,'civicrm_participant',16,78,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL,NULL), + (87,'civicrm_participant',19,81,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL,NULL), + (88,'civicrm_participant',22,84,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL,NULL), + (89,'civicrm_participant',26,88,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL,NULL), + (90,'civicrm_participant',29,91,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL,NULL), + (91,'civicrm_participant',32,94,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL,NULL), + (92,'civicrm_participant',35,97,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL,NULL), + (93,'civicrm_participant',38,100,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL,NULL), + (94,'civicrm_participant',41,103,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL,NULL), + (95,'civicrm_participant',44,106,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL,NULL), + (96,'civicrm_participant',47,109,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL,NULL), + (97,'civicrm_participant',2,64,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL,NULL), + (98,'civicrm_participant',5,67,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL,NULL), + (99,'civicrm_participant',8,70,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL,NULL), + (100,'civicrm_participant',11,73,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL,NULL), + (101,'civicrm_participant',14,76,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL,NULL), + (102,'civicrm_participant',17,79,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL,NULL), + (103,'civicrm_participant',20,82,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL,NULL), + (104,'civicrm_participant',23,85,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL,NULL), + (105,'civicrm_participant',27,89,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL,NULL), + (106,'civicrm_participant',30,92,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL,NULL), + (107,'civicrm_participant',33,95,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL,NULL), + (108,'civicrm_participant',36,98,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL,NULL), + (109,'civicrm_participant',39,101,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL,NULL), + (110,'civicrm_participant',42,104,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL,NULL), (111,'civicrm_participant',45,107,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL,NULL), - (112,'civicrm_participant',48,92,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL,NULL); + (112,'civicrm_participant',48,110,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL,NULL); /*!40000 ALTER TABLE `civicrm_line_item` ENABLE KEYS */; UNLOCK TABLES; @@ -4312,9 +4318,9 @@ 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,185,186,175,NULL,NULL,NULL,NULL,NULL), - (2,186,187,176,NULL,NULL,NULL,NULL,NULL), - (3,187,188,177,NULL,NULL,NULL,NULL,NULL); + (1,182,194,156,NULL,NULL,NULL,NULL,NULL), + (2,183,195,157,NULL,NULL,NULL,NULL,NULL), + (3,184,196,158,NULL,NULL,NULL,NULL,NULL); /*!40000 ALTER TABLE `civicrm_loc_block` ENABLE KEYS */; UNLOCK TABLES; @@ -4340,7 +4346,7 @@ UNLOCK TABLES; LOCK TABLES `civicrm_log` WRITE; /*!40000 ALTER TABLE `civicrm_log` DISABLE KEYS */; INSERT INTO `civicrm_log` (`id`, `entity_table`, `entity_id`, `data`, `modified_id`, `modified_date`) VALUES - (1,'civicrm_contact',202,'civicrm_contact,202',202,'2022-12-07 16:48:58'); + (1,'civicrm_contact',202,'civicrm_contact,202',202,'2023-01-25 11:10:19'); /*!40000 ALTER TABLE `civicrm_log` ENABLE KEYS */; UNLOCK TABLES; @@ -4759,36 +4765,36 @@ UNLOCK TABLES; LOCK TABLES `civicrm_membership` WRITE; /*!40000 ALTER TABLE `civicrm_membership` DISABLE KEYS */; INSERT INTO `civicrm_membership` (`id`, `contact_id`, `membership_type_id`, `join_date`, `start_date`, `end_date`, `source`, `status_id`, `is_override`, `status_override_end_date`, `owner_membership_id`, `max_related`, `is_test`, `is_pay_later`, `contribution_recur_id`, `campaign_id`) VALUES - (1,160,1,'2022-12-07','2022-12-07','2024-12-06','Check',1,0,NULL,NULL,NULL,0,0,NULL,NULL), - (2,62,2,'2022-12-06','2022-12-06','2023-12-05','Donation',1,0,NULL,NULL,NULL,0,0,NULL,NULL), - (3,60,1,'2022-12-05','2022-12-05','2024-12-04','Payment',1,0,NULL,NULL,NULL,0,0,NULL,NULL), - (4,75,2,'2022-12-04','2022-12-04','2023-12-03','Payment',1,0,NULL,NULL,NULL,0,0,NULL,NULL), - (5,47,1,'2020-11-05','2020-11-05','2022-11-04','Donation',3,0,NULL,NULL,NULL,0,0,NULL,NULL), - (6,169,2,'2022-12-02','2022-12-02','2023-12-01','Payment',1,0,NULL,NULL,NULL,0,0,NULL,NULL), - (7,186,1,'2022-12-01','2022-12-01','2024-11-30','Check',1,0,NULL,NULL,NULL,0,0,NULL,NULL), - (8,179,2,'2022-11-30','2022-11-30','2023-11-29','Check',1,0,NULL,NULL,NULL,0,0,NULL,NULL), - (9,123,1,'2022-11-29','2022-11-29','2024-11-28','Check',1,0,NULL,NULL,NULL,0,0,NULL,NULL), - (10,57,1,'2020-09-26','2020-09-26','2022-09-25','Check',3,0,NULL,NULL,NULL,0,0,NULL,NULL), - (11,195,3,'2022-11-27','2022-11-27',NULL,'Payment',1,0,NULL,NULL,NULL,0,0,NULL,NULL), - (12,164,2,'2022-11-26','2022-11-26','2023-11-25','Check',1,0,NULL,NULL,NULL,0,0,NULL,NULL), - (13,150,1,'2022-11-25','2022-11-25','2024-11-24','Payment',1,0,NULL,NULL,NULL,0,0,NULL,NULL), - (14,95,2,'2022-11-24','2022-11-24','2023-11-23','Check',1,0,NULL,NULL,NULL,0,0,NULL,NULL), - (15,41,1,'2020-08-17','2020-08-17','2022-08-16','Donation',3,0,NULL,NULL,NULL,0,0,NULL,NULL), - (16,12,2,'2022-11-22','2022-11-22','2023-11-21','Payment',1,0,NULL,NULL,NULL,0,0,NULL,NULL), - (17,96,1,'2022-11-21','2022-11-21','2024-11-20','Check',1,0,NULL,NULL,NULL,0,0,NULL,NULL), - (18,21,2,'2022-11-20','2022-11-20','2023-11-19','Donation',1,0,NULL,NULL,NULL,0,0,NULL,NULL), - (19,17,1,'2022-11-19','2022-11-19','2024-11-18','Donation',1,0,NULL,NULL,NULL,0,0,NULL,NULL), - (20,118,1,'2020-07-08','2020-07-08','2022-07-07','Payment',3,0,NULL,NULL,NULL,0,0,NULL,NULL), - (21,116,1,'2022-11-17','2022-11-17','2024-11-16','Check',1,0,NULL,NULL,NULL,0,0,NULL,NULL), - (22,193,3,'2022-11-16','2022-11-16',NULL,'Check',1,0,NULL,NULL,NULL,0,0,NULL,NULL), - (23,106,1,'2022-11-15','2022-11-15','2024-11-14','Check',1,0,NULL,NULL,NULL,0,0,NULL,NULL), - (24,148,2,'2022-11-14','2022-11-14','2023-11-13','Check',1,0,NULL,NULL,NULL,0,0,NULL,NULL), - (25,40,1,'2020-05-29','2020-05-29','2022-05-28','Donation',3,0,NULL,NULL,NULL,0,0,NULL,NULL), - (26,35,2,'2022-11-12','2022-11-12','2023-11-11','Check',1,0,NULL,NULL,NULL,0,0,NULL,NULL), - (27,104,1,'2022-11-11','2022-11-11','2024-11-10','Donation',1,0,NULL,NULL,NULL,0,0,NULL,NULL), - (28,139,2,'2022-11-10','2022-11-10','2023-11-09','Donation',1,0,NULL,NULL,NULL,0,0,NULL,NULL), - (29,53,1,'2022-11-09','2022-11-09','2024-11-08','Donation',1,0,NULL,NULL,NULL,0,0,NULL,NULL), - (30,25,1,'2020-04-19','2020-04-19','2022-04-18','Payment',3,0,NULL,NULL,NULL,0,0,NULL,NULL); + (1,134,1,'2023-01-25','2023-01-25','2025-01-24','Payment',1,0,NULL,NULL,NULL,0,0,NULL,NULL), + (2,168,2,'2023-01-24','2023-01-24','2024-01-23','Payment',1,0,NULL,NULL,NULL,0,0,NULL,NULL), + (3,11,1,'2023-01-23','2023-01-23','2025-01-22','Payment',1,0,NULL,NULL,NULL,0,0,NULL,NULL), + (4,99,2,'2023-01-22','2023-01-22','2024-01-21','Donation',1,0,NULL,NULL,NULL,0,0,NULL,NULL), + (5,72,2,'2022-01-21','2022-01-21','2023-01-20','Payment',4,0,NULL,NULL,NULL,0,0,NULL,NULL), + (6,152,2,'2023-01-20','2023-01-20','2024-01-19','Donation',1,0,NULL,NULL,NULL,0,0,NULL,NULL), + (7,194,1,'2023-01-19','2023-01-19','2025-01-18','Payment',1,0,NULL,NULL,NULL,0,0,NULL,NULL), + (8,16,2,'2023-01-18','2023-01-18','2024-01-17','Check',1,0,NULL,NULL,NULL,0,0,NULL,NULL), + (9,154,1,'2023-01-17','2023-01-17','2025-01-16','Donation',1,0,NULL,NULL,NULL,0,0,NULL,NULL), + (10,13,2,'2022-01-16','2022-01-16','2023-01-15','Payment',4,0,NULL,NULL,NULL,0,0,NULL,NULL), + (11,153,3,'2023-01-15','2023-01-15',NULL,'Check',1,0,NULL,NULL,NULL,0,0,NULL,NULL), + (12,8,2,'2023-01-14','2023-01-14','2024-01-13','Payment',1,0,NULL,NULL,NULL,0,0,NULL,NULL), + (13,165,1,'2023-01-13','2023-01-13','2025-01-12','Check',1,0,NULL,NULL,NULL,0,0,NULL,NULL), + (14,91,2,'2023-01-12','2023-01-12','2024-01-11','Check',1,0,NULL,NULL,NULL,0,0,NULL,NULL), + (15,193,1,'2020-10-05','2020-10-05','2022-10-04','Check',3,0,NULL,NULL,NULL,0,0,NULL,NULL), + (16,115,2,'2023-01-10','2023-01-10','2024-01-09','Check',1,0,NULL,NULL,NULL,0,0,NULL,NULL), + (17,169,1,'2023-01-09','2023-01-09','2025-01-08','Donation',1,0,NULL,NULL,NULL,0,0,NULL,NULL), + (18,155,2,'2023-01-08','2023-01-08','2024-01-07','Donation',1,0,NULL,NULL,NULL,0,0,NULL,NULL), + (19,44,1,'2023-01-07','2023-01-07','2025-01-06','Check',1,0,NULL,NULL,NULL,0,0,NULL,NULL), + (20,52,2,'2022-01-06','2022-01-06','2023-01-05','Donation',4,0,NULL,NULL,NULL,0,0,NULL,NULL), + (21,31,1,'2023-01-05','2023-01-05','2025-01-04','Payment',1,0,NULL,NULL,NULL,0,0,NULL,NULL), + (22,138,3,'2023-01-04','2023-01-04',NULL,'Payment',1,0,NULL,NULL,NULL,0,0,NULL,NULL), + (23,49,1,'2023-01-03','2023-01-03','2025-01-02','Payment',1,0,NULL,NULL,NULL,0,0,NULL,NULL), + (24,21,2,'2023-01-02','2023-01-02','2024-01-01','Donation',1,0,NULL,NULL,NULL,0,0,NULL,NULL), + (25,100,1,'2020-07-17','2020-07-17','2022-07-16','Check',3,0,NULL,NULL,NULL,0,0,NULL,NULL), + (26,81,2,'2022-12-31','2022-12-31','2023-12-30','Payment',1,0,NULL,NULL,NULL,0,0,NULL,NULL), + (27,110,1,'2022-12-30','2022-12-30','2024-12-29','Check',1,0,NULL,NULL,NULL,0,0,NULL,NULL), + (28,187,2,'2022-12-29','2022-12-29','2023-12-28','Donation',1,0,NULL,NULL,NULL,0,0,NULL,NULL), + (29,144,1,'2022-12-28','2022-12-28','2024-12-27','Donation',1,0,NULL,NULL,NULL,0,0,NULL,NULL), + (30,71,1,'2020-06-07','2020-06-07','2022-06-06','Payment',3,0,NULL,NULL,NULL,0,0,NULL,NULL); /*!40000 ALTER TABLE `civicrm_membership` ENABLE KEYS */; UNLOCK TABLES; @@ -4810,36 +4816,36 @@ 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,16,1,'2022-11-22','2023-11-21',12,'2022-12-07',2,NULL), - (2,19,1,'2022-11-19','2024-11-18',17,'2022-12-07',1,NULL), - (3,18,1,'2022-11-20','2023-11-19',21,'2022-12-07',2,NULL), - (4,30,3,'2020-04-19','2022-04-18',25,'2022-12-07',1,NULL), - (5,26,1,'2022-11-12','2023-11-11',35,'2022-12-07',2,NULL), - (6,25,3,'2020-05-29','2022-05-28',40,'2022-12-07',1,NULL), - (7,15,3,'2020-08-17','2022-08-16',41,'2022-12-07',1,NULL), - (8,5,3,'2020-11-05','2022-11-04',47,'2022-12-07',1,NULL), - (9,29,1,'2022-11-09','2024-11-08',53,'2022-12-07',1,NULL), - (10,10,3,'2020-09-26','2022-09-25',57,'2022-12-07',1,NULL), - (11,3,1,'2022-12-05','2024-12-04',60,'2022-12-07',1,NULL), - (12,2,1,'2022-12-06','2023-12-05',62,'2022-12-07',2,NULL), - (13,4,1,'2022-12-04','2023-12-03',75,'2022-12-07',2,NULL), - (14,14,1,'2022-11-24','2023-11-23',95,'2022-12-07',2,NULL), - (15,17,1,'2022-11-21','2024-11-20',96,'2022-12-07',1,NULL), - (16,27,1,'2022-11-11','2024-11-10',104,'2022-12-07',1,NULL), - (17,23,1,'2022-11-15','2024-11-14',106,'2022-12-07',1,NULL), - (18,21,1,'2022-11-17','2024-11-16',116,'2022-12-07',1,NULL), - (19,20,3,'2020-07-08','2022-07-07',118,'2022-12-07',1,NULL), - (20,9,1,'2022-11-29','2024-11-28',123,'2022-12-07',1,NULL), - (21,28,1,'2022-11-10','2023-11-09',139,'2022-12-07',2,NULL), - (22,24,1,'2022-11-14','2023-11-13',148,'2022-12-07',2,NULL), - (23,13,1,'2022-11-25','2024-11-24',150,'2022-12-07',1,NULL), - (24,1,1,'2022-12-07','2024-12-06',160,'2022-12-07',1,NULL), - (25,12,1,'2022-11-26','2023-11-25',164,'2022-12-07',2,NULL), - (26,6,1,'2022-12-02','2023-12-01',169,'2022-12-07',2,NULL), - (27,8,1,'2022-11-30','2023-11-29',179,'2022-12-07',2,NULL), - (28,7,1,'2022-12-01','2024-11-30',186,'2022-12-07',1,NULL), - (29,22,1,'2022-11-16',NULL,193,'2022-12-07',3,NULL), - (30,11,1,'2022-11-27',NULL,195,'2022-12-07',3,NULL); + (1,12,1,'2023-01-14','2024-01-13',8,'2023-01-25',2,NULL), + (2,3,1,'2023-01-23','2025-01-22',11,'2023-01-25',1,NULL), + (3,10,4,'2022-01-16','2023-01-15',13,'2023-01-25',2,NULL), + (4,8,1,'2023-01-18','2024-01-17',16,'2023-01-25',2,NULL), + (5,24,1,'2023-01-02','2024-01-01',21,'2023-01-25',2,NULL), + (6,21,1,'2023-01-05','2025-01-04',31,'2023-01-25',1,NULL), + (7,19,1,'2023-01-07','2025-01-06',44,'2023-01-25',1,NULL), + (8,23,1,'2023-01-03','2025-01-02',49,'2023-01-25',1,NULL), + (9,20,4,'2022-01-06','2023-01-05',52,'2023-01-25',2,NULL), + (10,30,3,'2020-06-07','2022-06-06',71,'2023-01-25',1,NULL), + (11,5,4,'2022-01-21','2023-01-20',72,'2023-01-25',2,NULL), + (12,26,1,'2022-12-31','2023-12-30',81,'2023-01-25',2,NULL), + (13,14,1,'2023-01-12','2024-01-11',91,'2023-01-25',2,NULL), + (14,4,1,'2023-01-22','2024-01-21',99,'2023-01-25',2,NULL), + (15,25,3,'2020-07-17','2022-07-16',100,'2023-01-25',1,NULL), + (16,27,1,'2022-12-30','2024-12-29',110,'2023-01-25',1,NULL), + (17,16,1,'2023-01-10','2024-01-09',115,'2023-01-25',2,NULL), + (18,1,1,'2023-01-25','2025-01-24',134,'2023-01-25',1,NULL), + (19,22,1,'2023-01-04',NULL,138,'2023-01-25',3,NULL), + (20,29,1,'2022-12-28','2024-12-27',144,'2023-01-25',1,NULL), + (21,6,1,'2023-01-20','2024-01-19',152,'2023-01-25',2,NULL), + (22,11,1,'2023-01-15',NULL,153,'2023-01-25',3,NULL), + (23,9,1,'2023-01-17','2025-01-16',154,'2023-01-25',1,NULL), + (24,18,1,'2023-01-08','2024-01-07',155,'2023-01-25',2,NULL), + (25,13,1,'2023-01-13','2025-01-12',165,'2023-01-25',1,NULL), + (26,2,1,'2023-01-24','2024-01-23',168,'2023-01-25',2,NULL), + (27,17,1,'2023-01-09','2025-01-08',169,'2023-01-25',1,NULL), + (28,28,1,'2022-12-29','2023-12-28',187,'2023-01-25',2,NULL), + (29,15,3,'2020-10-05','2022-10-04',193,'2023-01-25',1,NULL), + (30,7,1,'2023-01-19','2025-01-18',194,'2023-01-25',1,NULL); /*!40000 ALTER TABLE `civicrm_membership_log` ENABLE KEYS */; UNLOCK TABLES; @@ -4923,261 +4929,261 @@ INSERT INTO `civicrm_menu` (`id`, `domain_id`, `path`, `path_arguments`, `title` (1,1,'civicrm/profile',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:23:\"CRM_Profile_Page_Router\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,1,1,0,0,1,0,0,'a:0:{}'), (2,1,'civicrm/profile/create',NULL,'CiviCRM Profile Create','s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:23:\"CRM_Profile_Page_Router\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,1,1,0,0,1,0,0,'a:0:{}'), (3,1,'civicrm/profile/view',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:21:\"CRM_Profile_Page_View\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,1,1,0,1,1,0,0,'a:0:{}'), - (4,1,'civicrm/group',NULL,'Manage Groups','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:20:\"CRM_Group_Page_Group\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,30,1,1,0,'a:0:{}'), - (5,1,'civicrm/group/search',NULL,'Group Members','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:29:\"CRM_Contact_Controller_Search\";','s:8:\"mode=256\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:13:\"Manage Groups\";s:3:\"url\";s:22:\"/civicrm/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:1:{s:7:\"comment\";s:164:\"Note: group search already respect ACL, so a strict permission at url level is not required. A simple/basic permission like \'access CiviCRM\' could be used. CRM-5417\";}'), - (6,1,'civicrm/group/add',NULL,'New Group','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:11:\"edit groups\";}i:1;s:3:\"and\";}','s:20:\"CRM_Group_Controller\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:13:\"Manage Groups\";s:3:\"url\";s:22:\"/civicrm/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (7,1,'civicrm/ajax/grouplist',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:19:\"CRM_Group_Page_AJAX\";i:1;s:12:\"getGroupList\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (8,1,'civicrm/import',NULL,'Import','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:15:\"import contacts\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:29:\"CRM_Contact_Import_Controller\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,400,1,1,0,'a:0:{}'), - (9,1,'civicrm/import/contact',NULL,'Import Contacts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:15:\"import contacts\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:29:\"CRM_Contact_Import_Controller\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:6:\"Import\";s:3:\"url\";s:23:\"/civicrm/import?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,410,1,1,0,'a:0:{}'), - (10,1,'civicrm/import/contact/summary',NULL,'Import Contacts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:31:\"CRM_Contact_Import_Form_Summary\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:6:\"Import\";s:3:\"url\";s:23:\"/civicrm/import?reset=1\";}i:2;a:2:{s:5:\"title\";s:15:\"Import Contacts\";s:3:\"url\";s:31:\"/civicrm/import/contact?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,410,1,1,0,'a:0:{}'), - (11,1,'civicrm/import/outcome',NULL,'Import results','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:16:\"CRM_Import_Forms\";i:1;s:9:\"outputCSV\";}',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:6:\"Import\";s:3:\"url\";s:23:\"/civicrm/import?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (12,1,'civicrm/import/activity',NULL,'Import Activities','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:15:\"import contacts\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:30:\"CRM_Activity_Import_Controller\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:6:\"Import\";s:3:\"url\";s:23:\"/civicrm/import?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,420,1,1,0,'a:0:{}'), - (13,1,'civicrm/import/custom','id=%%id%%','Import Multi-value Custom Data','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:28:\"CRM_Custom_Import_Controller\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:6:\"Import\";s:3:\"url\";s:23:\"/civicrm/import?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,420,1,1,0,'a:0:{}'), - (14,1,'civicrm/ajax/status',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:15:\"import contacts\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:28:\"CRM_Contact_Import_Page_AJAX\";i:1;s:6:\"status\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (15,1,'civicrm/import/datasource',NULL,'Import','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:32:\"CRM_Import_Form_DataSourceConfig\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:6:\"Import\";s:3:\"url\";s:23:\"/civicrm/import?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,450,1,1,0,'a:0:{}'), - (16,1,'civicrm/ajax/api4',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Api4_Permission\";i:1;s:5:\"check\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:18:\"CRM_Api4_Page_AJAX\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (17,1,'civicrm/api4',NULL,'CiviCRM','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Api4_Page_Api4Explorer\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (18,1,'civicrm/pcp',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:16:\"CRM_PCP_Form_PCP\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,1,1,0,1,1,0,0,'a:0:{}'), - (19,1,'civicrm/pcp/campaign',NULL,'Setup a Personal Campaign Page - Account Information','s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:25:\"make online contributions\";}i:1;s:3:\"and\";}','s:22:\"CRM_PCP_Controller_PCP\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,1,1,0,0,1,0,0,'a:0:{}'), - (20,1,'civicrm/pcp/info',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:20:\"CRM_PCP_Page_PCPInfo\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,1,1,0,1,1,0,0,'a:0:{}'), - (21,1,'civicrm/admin/pcp','context=contribute','Personal Campaign Pages','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:16:\"CRM_PCP_Page_PCP\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,362,1,0,0,'a:2:{s:4:\"desc\";s:49:\"View and manage existing personal campaign pages.\";s:10:\"adminGroup\";s:14:\"CiviContribute\";}'), - (22,1,'civicrm/payment/form',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:26:\"CRM_Financial_Form_Payment\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:11:\"New Payment\";s:3:\"url\";s:39:\"/civicrm/payment?reset=1&action=add\";}}',NULL,NULL,2,1,1,1,0,0,1,0,0,'a:0:{}'), - (23,1,'civicrm/payment/edit',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:30:\"CRM_Financial_Form_PaymentEdit\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:11:\"New Payment\";s:3:\"url\";s:39:\"/civicrm/payment?reset=1&action=add\";}}',NULL,NULL,2,1,0,1,0,1,1,0,0,'a:1:{s:9:\"component\";s:14:\"CiviContribute\";}'), - (24,1,'civicrm/upgrade',NULL,'Upgrade CiviCRM','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:24:\"CRM_Upgrade_Page_Upgrade\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (25,1,'civicrm/export',NULL,'Download Errors','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Export_BAO_Export\";i:1;s:6:\"invoke\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (26,1,'civicrm/export/contact',NULL,'Export Contacts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Export_BAO_Export\";i:1;s:6:\"invoke\";}',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Download Errors\";s:3:\"url\";s:23:\"/civicrm/export?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,0,1,0,0,'a:0:{}'), - (27,1,'civicrm/export/standalone',NULL,'Export','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:32:\"CRM_Export_Controller_Standalone\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Download Errors\";s:3:\"url\";s:23:\"/civicrm/export?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (28,1,'civicrm/admin/options/acl_role',NULL,'ACL Roles','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), - (29,1,'civicrm/acl',NULL,'Manage ACLs','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:16:\"CRM_ACL_Page_ACL\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (30,1,'civicrm/acl/entityrole',NULL,'Assign Users to ACL Roles','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:23:\"CRM_ACL_Page_EntityRole\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:11:\"Manage ACLs\";s:3:\"url\";s:20:\"/civicrm/acl?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (31,1,'civicrm/acl/basic',NULL,'ACL','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:21:\"CRM_ACL_Page_ACLBasic\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:11:\"Manage ACLs\";s:3:\"url\";s:20:\"/civicrm/acl?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (32,1,'civicrm/file',NULL,'Browse Uploaded files','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access uploaded files\";}i:1;s:3:\"and\";}','s:18:\"CRM_Core_Page_File\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (33,1,'civicrm/file/delete',NULL,'Delete File','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:17:\"CRM_Core_BAO_File\";i:1;s:16:\"deleteAttachment\";}',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:21:\"Browse Uploaded files\";s:3:\"url\";s:21:\"/civicrm/file?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (34,1,'civicrm/friend',NULL,'Tell a Friend','s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:15:\"CRM_Friend_Form\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,1,1,0,1,1,0,0,'a:0:{}'), - (35,1,'civicrm/logout',NULL,'Log out','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:16:\"CRM_Utils_System\";i:1;s:6:\"logout\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,9999,1,1,0,'a:0:{}'), - (36,1,'civicrm/i18n',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:17:\"translate CiviCRM\";}i:1;s:3:\"and\";}','s:18:\"CRM_Core_I18n_Form\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (37,1,'civicrm/ajax/attachment',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"access AJAX API\";}i:1;s:2:\"or\";}','a:2:{i:0;s:29:\"CRM_Core_Page_AJAX_Attachment\";i:1;s:10:\"attachFile\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (38,1,'civicrm/api',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Core_Page_Redirect\";','s:16:\"url=civicrm/api3\";','a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (39,1,'civicrm/api3',NULL,'CiviCRM API v3','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Admin_Page_APIExplorer\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (40,1,'civicrm/ajax/apiexample',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:26:\"CRM_Admin_Page_APIExplorer\";i:1;s:14:\"getExampleFile\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (41,1,'civicrm/ajax/apidoc',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:26:\"CRM_Admin_Page_APIExplorer\";i:1;s:6:\"getDoc\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (42,1,'civicrm/ajax/rest',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"access AJAX API\";}i:1;s:2:\"or\";}','a:2:{i:0;s:14:\"CRM_Utils_REST\";i:1;s:4:\"ajax\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (43,1,'civicrm/api/json',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:14:\"CRM_Utils_REST\";i:1;s:8:\"ajaxJson\";}','s:16:\"url=civicrm/api3\";','a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (44,1,'civicrm/inline',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:14:\"CRM_Utils_REST\";i:1;s:12:\"loadTemplate\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (45,1,'civicrm/ajax/chart',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:38:\"CRM_Contribute_Form_ContributionCharts\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (46,1,'civicrm/asset/builder',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"*always allow*\";}i:1;s:3:\"and\";}','a:2:{i:0;s:23:\"\\Civi\\Core\\AssetBuilder\";i:1;s:7:\"pageRun\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (47,1,'civicrm/contribute/ajax/tableview',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:29:\"CRM_Contribute_Page_DashBoard\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,1,0,1,0,1,1,0,0,'a:0:{}'), - (48,1,'civicrm/payment/ipn',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','a:2:{i:0;s:16:\"CRM_Core_Payment\";i:1;s:9:\"handleIPN\";}',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:11:\"New Payment\";s:3:\"url\";s:39:\"/civicrm/payment?reset=1&action=add\";}}',NULL,NULL,2,1,1,1,0,1,1,0,0,'a:0:{}'), - (49,1,'civicrm/batch',NULL,'Batch Data Entry','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:20:\"CRM_Batch_Page_Batch\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (50,1,'civicrm/batch/add',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:20:\"CRM_Batch_Form_Batch\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:16:\"Batch Data Entry\";s:3:\"url\";s:22:\"/civicrm/batch?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (51,1,'civicrm/batch/entry',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:20:\"CRM_Batch_Form_Entry\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:16:\"Batch Data Entry\";s:3:\"url\";s:22:\"/civicrm/batch?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (52,1,'civicrm/ajax/batch',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','a:2:{i:0;s:19:\"CRM_Batch_Page_AJAX\";i:1;s:9:\"batchSave\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (53,1,'civicrm/ajax/batchlist',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:19:\"CRM_Batch_Page_AJAX\";i:1;s:12:\"getBatchList\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (54,1,'civicrm/ajax/inline',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:18:\"CRM_Core_Page_AJAX\";i:1;s:3:\"run\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (55,1,'civicrm/dev/qunit',NULL,'QUnit','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','s:19:\"CRM_Core_Page_QUnit\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (56,1,'civicrm/dev/fake-error',NULL,'Fake Error','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"*always allow*\";}i:1;s:3:\"and\";}','s:23:\"CRM_Core_Page_FakeError\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,1,1,0,1,1,0,0,'a:0:{}'), - (57,1,'civicrm/profile-editor/schema',NULL,'ProfileEditor','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:25:\"CRM_UF_Page_ProfileEditor\";i:1;s:13:\"getSchemaJSON\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (58,1,'civicrm/a',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:23:\"\\Civi\\Angular\\Page\\Main\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (59,1,'civicrm/ajax/angular-modules',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"*always allow*\";}i:1;s:3:\"and\";}','s:26:\"\\Civi\\Angular\\Page\\Modules\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (60,1,'civicrm/ajax/recurringentity/update-mode',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:34:\"CRM_Core_Page_AJAX_RecurringEntity\";i:1;s:10:\"updateMode\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (61,1,'civicrm/recurringentity/preview',NULL,'Confirm dates','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:36:\"CRM_Core_Page_RecurringEntityPreview\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (62,1,'civicrm/shortcode',NULL,'Insert CiviCRM Content','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:23:\"CRM_Core_Form_ShortCode\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (63,1,'civicrm/task/add-to-group',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:32:\"CRM_Contact_Form_Task_AddToGroup\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (64,1,'civicrm/task/remove-from-group',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:37:\"CRM_Contact_Form_Task_RemoveFromGroup\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (65,1,'civicrm/task/add-to-tag',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:30:\"CRM_Contact_Form_Task_AddToTag\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (66,1,'civicrm/task/remove-from-tag',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:35:\"CRM_Contact_Form_Task_RemoveFromTag\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (67,1,'civicrm/task/send-email',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:27:\"CRM_Contact_Form_Task_Email\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (68,1,'civicrm/task/make-mailing-label',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:27:\"CRM_Contact_Form_Task_Label\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (69,1,'civicrm/task/pick-profile',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:33:\"CRM_Contact_Form_Task_PickProfile\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (70,1,'civicrm/task/print-document',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:25:\"CRM_Contact_Form_Task_PDF\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (71,1,'civicrm/task/unhold-email',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:28:\"CRM_Contact_Form_Task_Unhold\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (72,1,'civicrm/task/alter-contact-preference',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:38:\"CRM_Contact_Form_Task_AlterPreferences\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (73,1,'civicrm/task/delete-contact',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:28:\"CRM_Contact_Form_Task_Delete\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (74,1,'civicrm/task/add-activity',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Activity_Form_Activity\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (75,1,'civicrm/tag',NULL,'Tags','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:11:\"manage tags\";}i:1;s:2:\"or\";}','s:16:\"CRM_Tag_Page_Tag\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,25,1,0,0,'a:2:{s:4:\"desc\";s:158:\"Tags are useful for segmenting the contacts in your database into categories (e.g. Staff Member, Donor, Volunteer, etc.). Create and edit available tags here.\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), - (76,1,'civicrm/tag/edit','action=add','New Tag','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:11:\"manage tags\";}i:1;s:2:\"or\";}','s:17:\"CRM_Tag_Form_Edit\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:4:\"Tags\";s:3:\"url\";s:20:\"/civicrm/tag?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (77,1,'civicrm/tag/merge',NULL,'Merge Tags','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:11:\"manage tags\";}i:1;s:2:\"or\";}','s:18:\"CRM_Tag_Form_Merge\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:4:\"Tags\";s:3:\"url\";s:20:\"/civicrm/tag?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (78,1,'civicrm/ajax/tagTree',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:11:\"manage tags\";}i:1;s:2:\"or\";}','a:2:{i:0;s:19:\"CRM_Admin_Page_AJAX\";i:1;s:10:\"getTagTree\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (79,1,'civicrm/custom/add',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Custom_Form_CustomData\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (80,1,'civicrm/ajax/optionlist',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:20:\"CRM_Custom_Page_AJAX\";i:1;s:13:\"getOptionList\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (81,1,'civicrm/ajax/reorder',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:20:\"CRM_Custom_Page_AJAX\";i:1;s:11:\"fixOrdering\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (82,1,'civicrm/ajax/multirecordfieldlist',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:20:\"CRM_Custom_Page_AJAX\";i:1;s:23:\"getMultiRecordFieldList\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (83,1,'civicrm/custom',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:32:\"CRM_Custom_Form_CustomDataByType\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (84,1,'civicrm',NULL,'CiviCRM','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Contact_Page_DashBoard\";',NULL,'a:0:{}',NULL,NULL,NULL,1,0,1,0,0,1,0,0,'a:0:{}'), - (85,1,'civicrm/dashboard',NULL,'CiviCRM Home','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Contact_Page_DashBoard\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,0,1,1,0,'a:0:{}'), - (86,1,'civicrm/contact/search',NULL,'Find Contacts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:29:\"CRM_Contact_Controller_Search\";','s:8:\"mode=256\";','a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,10,1,1,0,'a:0:{}'), - (87,1,'civicrm/contact/image',NULL,'Process Uploaded Images','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access uploaded files\";}i:1;s:3:\"and\";}','a:2:{i:0;s:23:\"CRM_Contact_BAO_Contact\";i:1;s:12:\"processImage\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (88,1,'civicrm/contact/imagefile',NULL,'Get Image File','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"*always allow*\";}i:1;s:3:\"and\";}','s:26:\"CRM_Contact_Page_ImageFile\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (89,1,'civicrm/contact/search/basic',NULL,'Find Contacts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:29:\"CRM_Contact_Controller_Search\";','s:8:\"mode=256\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:13:\"Find Contacts\";s:3:\"url\";s:31:\"/civicrm/contact/search?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (90,1,'civicrm/contact/search/advanced',NULL,'Advanced Search','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:29:\"CRM_Contact_Controller_Search\";','s:8:\"mode=512\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:13:\"Find Contacts\";s:3:\"url\";s:31:\"/civicrm/contact/search?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,12,1,1,0,'a:0:{}'), - (91,1,'civicrm/contact/search/builder',NULL,'Search Builder','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:29:\"CRM_Contact_Controller_Search\";','s:9:\"mode=8192\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:13:\"Find Contacts\";s:3:\"url\";s:31:\"/civicrm/contact/search?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,14,1,1,0,'a:0:{}'), - (92,1,'civicrm/contact/add',NULL,'New Contact','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:24:\"CRM_Contact_Form_Contact\";','s:13:\"addSequence=1\";','a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (93,1,'civicrm/contact/add/individual','ct=Individual','New Individual','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:12:\"add contacts\";}i:1;s:3:\"and\";}','s:24:\"CRM_Contact_Form_Contact\";','s:13:\"addSequence=1\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:11:\"New Contact\";s:3:\"url\";s:28:\"/civicrm/contact/add?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (94,1,'civicrm/contact/add/household','ct=Household','New Household','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:12:\"add contacts\";}i:1;s:3:\"and\";}','s:24:\"CRM_Contact_Form_Contact\";','s:13:\"addSequence=1\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:11:\"New Contact\";s:3:\"url\";s:28:\"/civicrm/contact/add?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (95,1,'civicrm/contact/add/organization','ct=Organization','New Organization','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:12:\"add contacts\";}i:1;s:3:\"and\";}','s:24:\"CRM_Contact_Form_Contact\";','s:13:\"addSequence=1\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:11:\"New Contact\";s:3:\"url\";s:28:\"/civicrm/contact/add?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (96,1,'civicrm/contact/relatedcontact',NULL,'Edit Related Contact','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:24:\"access Contact Dashboard\";}i:1;s:3:\"and\";}','s:31:\"CRM_Contact_Form_RelatedContact\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,1,1,0,1,1,0,0,'a:0:{}'), - (97,1,'civicrm/contact/merge',NULL,'Merge Contact','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:24:\"merge duplicate contacts\";}i:1;s:3:\"and\";}','s:22:\"CRM_Contact_Form_Merge\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (98,1,'civicrm/contact/email',NULL,'Email a Contact','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:27:\"CRM_Contact_Form_Task_Email\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (99,1,'civicrm/contact/map',NULL,'Map Location(s)','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:25:\"CRM_Contact_Form_Task_Map\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,1,1,0,1,1,0,0,'a:0:{}'), - (100,1,'civicrm/contact/map/event',NULL,'Map Event Location','s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:31:\"CRM_Contact_Form_Task_Map_Event\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Map Location(s)\";s:3:\"url\";s:28:\"/civicrm/contact/map?reset=1\";}}',NULL,NULL,NULL,1,1,1,0,1,1,0,0,'a:0:{}'), - (101,1,'civicrm/contact/view','cid=%%cid%%','Contact Summary','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:29:\"CRM_Contact_Page_View_Summary\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (102,1,'civicrm/contact/view/delete',NULL,'Delete Contact','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:28:\"CRM_Contact_Form_Task_Delete\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (103,1,'civicrm/contact/view/activity','show=1,cid=%%cid%%','Activities','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:21:\"CRM_Activity_Page_Tab\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (104,1,'civicrm/activity/add','action=add','Activities','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Activity_Form_Activity\";','s:14:\"attachUpload=1\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:12:\"New Activity\";s:3:\"url\";s:63:\"/civicrm/activity?reset=1&action=add&context=standalone\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (105,1,'civicrm/activity/email/add','action=add','Activities','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:27:\"CRM_Contact_Form_Task_Email\";','s:14:\"attachUpload=1\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:12:\"New Activity\";s:3:\"url\";s:63:\"/civicrm/activity?reset=1&action=add&context=standalone\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (106,1,'civicrm/activity/pdf/add','action=add','Activities','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:25:\"CRM_Contact_Form_Task_PDF\";','s:14:\"attachUpload=1\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:12:\"New Activity\";s:3:\"url\";s:63:\"/civicrm/activity?reset=1&action=add&context=standalone\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (107,1,'civicrm/contact/view/rel','cid=%%cid%%','Relationships','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:34:\"CRM_Contact_Page_View_Relationship\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (108,1,'civicrm/contact/view/group','cid=%%cid%%','Groups','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:34:\"CRM_Contact_Page_View_GroupContact\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (109,1,'civicrm/contact/view/smartgroup','cid=%%cid%%','Smart Groups','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:39:\"CRM_Contact_Page_View_ContactSmartGroup\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (110,1,'civicrm/contact/view/note','cid=%%cid%%','Notes','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:26:\"CRM_Contact_Page_View_Note\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (111,1,'civicrm/contact/view/tag','cid=%%cid%%','Tags','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:25:\"CRM_Contact_Page_View_Tag\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (112,1,'civicrm/contact/view/cd',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:32:\"CRM_Contact_Page_View_CustomData\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (113,1,'civicrm/contact/view/cd/edit',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:27:\"CRM_Contact_Form_CustomData\";','s:13:\"addSequence=1\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (114,1,'civicrm/contact/view/vcard',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:27:\"CRM_Contact_Page_View_Vcard\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (115,1,'civicrm/contact/view/print',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:27:\"CRM_Contact_Page_View_Print\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (116,1,'civicrm/contact/view/log',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:25:\"CRM_Contact_Page_View_Log\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (117,1,'civicrm/user',NULL,'Contact Dashboard','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:24:\"access Contact Dashboard\";}i:1;s:3:\"and\";}','s:35:\"CRM_Contact_Page_View_UserDashBoard\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,1,1,0,0,1,0,0,'a:0:{}'), - (118,1,'civicrm/dashlet/activity',NULL,'Activity Dashlet','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:25:\"CRM_Dashlet_Page_Activity\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (119,1,'civicrm/dashlet/blog',NULL,'CiviCRM Blog','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:21:\"CRM_Dashlet_Page_Blog\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (120,1,'civicrm/dashlet/getting-started',NULL,'CiviCRM Resources','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:31:\"CRM_Dashlet_Page_GettingStarted\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (121,1,'civicrm/ajax/relation',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:12:\"relationship\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,3,0,'a:0:{}'), - (122,1,'civicrm/ajax/groupTree',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:9:\"groupTree\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (123,1,'civicrm/ajax/custom',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:11:\"customField\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (124,1,'civicrm/ajax/customvalue',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:17:\"deleteCustomValue\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,3,0,'a:0:{}'), - (125,1,'civicrm/ajax/cmsuser',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:13:\"checkUserName\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (126,1,'civicrm/ajax/checkemail',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:15:\"getContactEmail\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (127,1,'civicrm/ajax/checkphone',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:15:\"getContactPhone\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (128,1,'civicrm/ajax/subtype',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:13:\"buildSubTypes\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (129,1,'civicrm/ajax/signature',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:12:\"getSignature\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (130,1,'civicrm/ajax/pdfFormat',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:9:\"pdfFormat\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (131,1,'civicrm/ajax/paperSize',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:9:\"paperSize\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (132,1,'civicrm/ajax/contactref',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:31:\"access contact reference fields\";i:1;s:15:\" access CiviCRM\";}i:1;s:2:\"or\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:16:\"contactReference\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (133,1,'civicrm/dashlet/myCases',NULL,'Case Dashlet','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:24:\"CRM_Dashlet_Page_MyCases\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (134,1,'civicrm/dashlet/allCases',NULL,'All Cases Dashlet','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:31:\"access all cases and activities\";}i:1;s:3:\"and\";}','s:25:\"CRM_Dashlet_Page_AllCases\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (135,1,'civicrm/dashlet/casedashboard',NULL,'Case Dashboard Dashlet','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:30:\"CRM_Dashlet_Page_CaseDashboard\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (136,1,'civicrm/contact/deduperules',NULL,'Find and Merge Duplicate Contacts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:23:\"administer dedupe rules\";i:1;s:24:\"merge duplicate contacts\";}i:1;s:2:\"or\";}','s:28:\"CRM_Contact_Page_DedupeRules\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,105,1,0,0,'a:2:{s:4:\"desc\";s:158:\"Manage the rules used to identify potentially duplicate contact records. Scan for duplicates using a selected rule and merge duplicate contact data as needed.\";s:10:\"adminGroup\";s:6:\"Manage\";}'), - (137,1,'civicrm/contact/dedupefind',NULL,'Find and Merge Duplicate Contacts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:24:\"merge duplicate contacts\";}i:1;s:3:\"and\";}','s:27:\"CRM_Contact_Page_DedupeFind\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (138,1,'civicrm/ajax/dedupefind',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:24:\"merge duplicate contacts\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:10:\"getDedupes\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (139,1,'civicrm/contact/dedupemerge',NULL,'Batch Merge Duplicate Contacts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:24:\"merge duplicate contacts\";}i:1;s:3:\"and\";}','s:28:\"CRM_Contact_Page_DedupeMerge\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (140,1,'civicrm/dedupe/exception',NULL,'Dedupe Exceptions','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:32:\"CRM_Contact_Page_DedupeException\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,110,1,0,0,'a:1:{s:10:\"adminGroup\";s:6:\"Manage\";}'), - (141,1,'civicrm/ajax/dedupeRules',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:16:\"buildDedupeRules\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (142,1,'civicrm/contact/view/useradd','cid=%%cid%%','Add User','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:29:\"CRM_Contact_Page_View_Useradd\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (143,1,'civicrm/ajax/markSelection',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:22:\"selectUnselectContacts\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (144,1,'civicrm/ajax/toggleDedupeSelect',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:24:\"merge duplicate contacts\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:18:\"toggleDedupeSelect\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (145,1,'civicrm/ajax/flipDupePairs',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:24:\"merge duplicate contacts\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:13:\"flipDupePairs\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (146,1,'civicrm/activity/sms/add','action=add','Activities','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:8:\"send SMS\";}i:1;s:3:\"and\";}','s:25:\"CRM_Contact_Form_Task_SMS\";','s:14:\"attachUpload=1\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:12:\"New Activity\";s:3:\"url\";s:63:\"/civicrm/activity?reset=1&action=add&context=standalone\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (147,1,'civicrm/ajax/contactrelationships',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"view my contact\";}i:1;s:2:\"or\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:23:\"getContactRelationships\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (148,1,'civicrm/activity','action=add&context=standalone','New Activity','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Activity_Form_Activity\";','s:14:\"attachUpload=1\";','a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (149,1,'civicrm/activity/view',NULL,'View Activity','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:30:\"CRM_Activity_Form_ActivityView\";','s:14:\"attachUpload=1\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:12:\"New Activity\";s:3:\"url\";s:63:\"/civicrm/activity?reset=1&action=add&context=standalone\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (150,1,'civicrm/ajax/activity',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:22:\"CRM_Activity_Page_AJAX\";i:1;s:15:\"getCaseActivity\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (151,1,'civicrm/ajax/globalrelationships',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:22:\"CRM_Activity_Page_AJAX\";i:1;s:26:\"getCaseGlobalRelationships\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (152,1,'civicrm/ajax/clientrelationships',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:22:\"CRM_Activity_Page_AJAX\";i:1;s:26:\"getCaseClientRelationships\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (153,1,'civicrm/ajax/caseroles',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:22:\"CRM_Activity_Page_AJAX\";i:1;s:12:\"getCaseRoles\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (154,1,'civicrm/ajax/contactactivity',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:22:\"CRM_Activity_Page_AJAX\";i:1;s:18:\"getContactActivity\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (155,1,'civicrm/ajax/activity/convert',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:22:\"CRM_Activity_Page_AJAX\";i:1;s:21:\"convertToCaseActivity\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,3,0,'a:0:{}'), - (156,1,'civicrm/activity/search',NULL,'Find Activities','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:30:\"CRM_Activity_Controller_Search\";','s:14:\"attachUpload=1\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:12:\"New Activity\";s:3:\"url\";s:63:\"/civicrm/activity?reset=1&action=add&context=standalone\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (157,1,'civicrm/ajax/jqState',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:27:\"CRM_Core_Page_AJAX_Location\";i:1;s:7:\"jqState\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,1,1,0,1,1,0,0,'a:0:{}'), - (158,1,'civicrm/ajax/jqCounty',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:27:\"CRM_Core_Page_AJAX_Location\";i:1;s:8:\"jqCounty\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,1,1,0,1,1,0,0,'a:0:{}'), - (159,1,'civicrm/admin/custom/group',NULL,'Custom Data','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:23:\"administer CiviCRM data\";}i:1;s:3:\"and\";}','s:21:\"CRM_Custom_Page_Group\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,10,1,0,0,'a:2:{s:4:\"desc\";s:109:\"Configure custom fields to collect and store custom data which is not included in the standard CiviCRM forms.\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), - (160,1,'civicrm/admin/custom/group/edit',NULL,'Configure Custom Set','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:23:\"administer CiviCRM data\";}i:1;s:3:\"and\";}','s:21:\"CRM_Custom_Form_Group\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:11:\"Custom Data\";s:3:\"url\";s:35:\"/civicrm/admin/custom/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), - (161,1,'civicrm/admin/custom/group/preview',NULL,'Custom Field Preview','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:23:\"administer CiviCRM data\";}i:1;s:3:\"and\";}','s:23:\"CRM_Custom_Form_Preview\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:11:\"Custom Data\";s:3:\"url\";s:35:\"/civicrm/admin/custom/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), - (162,1,'civicrm/admin/custom/group/delete',NULL,'Delete Custom Set','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:23:\"administer CiviCRM data\";}i:1;s:3:\"and\";}','s:27:\"CRM_Custom_Form_DeleteGroup\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:11:\"Custom Data\";s:3:\"url\";s:35:\"/civicrm/admin/custom/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), - (163,1,'civicrm/admin/custom/group/field',NULL,'Custom Data Fields','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:23:\"administer CiviCRM data\";}i:1;s:3:\"and\";}','s:21:\"CRM_Custom_Page_Field\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:11:\"Custom Data\";s:3:\"url\";s:35:\"/civicrm/admin/custom/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,11,1,0,0,'a:0:{}'), - (164,1,'civicrm/admin/custom/group/field/delete',NULL,'Delete Custom Field','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:23:\"administer CiviCRM data\";}i:1;s:3:\"and\";}','s:27:\"CRM_Custom_Form_DeleteField\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:11:\"Custom Data\";s:3:\"url\";s:35:\"/civicrm/admin/custom/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), - (165,1,'civicrm/admin/custom/group/field/option',NULL,'Custom Field - Options','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:23:\"administer CiviCRM data\";}i:1;s:3:\"and\";}','s:22:\"CRM_Custom_Page_Option\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:11:\"Custom Data\";s:3:\"url\";s:35:\"/civicrm/admin/custom/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), - (166,1,'civicrm/admin/custom/group/field/add',NULL,'Custom Field - Add','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:23:\"administer CiviCRM data\";}i:1;s:3:\"and\";}','s:21:\"CRM_Custom_Form_Field\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:11:\"Custom Data\";s:3:\"url\";s:35:\"/civicrm/admin/custom/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), - (167,1,'civicrm/admin/custom/group/field/update',NULL,'Custom Field - Edit','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:23:\"administer CiviCRM data\";}i:1;s:3:\"and\";}','s:21:\"CRM_Custom_Form_Field\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:11:\"Custom Data\";s:3:\"url\";s:35:\"/civicrm/admin/custom/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), - (168,1,'civicrm/admin/custom/group/field/move',NULL,'Custom Field - Move','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:23:\"administer CiviCRM data\";}i:1;s:3:\"and\";}','s:25:\"CRM_Custom_Form_MoveField\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:11:\"Custom Data\";s:3:\"url\";s:35:\"/civicrm/admin/custom/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), - (169,1,'civicrm/admin/uf/group',NULL,'Profiles','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:17:\"CRM_UF_Page_Group\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,20,1,0,0,'a:2:{s:4:\"desc\";s:151:\"Profiles allow you to aggregate groups of fields and include them in your site as input forms, contact display pages, and search and listings features.\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), - (170,1,'civicrm/admin/uf/group/preview',NULL,'Preview','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:19:\"CRM_UF_Form_Preview\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:8:\"Profiles\";s:3:\"url\";s:31:\"/civicrm/admin/uf/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), - (171,1,'civicrm/admin/uf/group/field',NULL,'CiviCRM Profile Fields','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:17:\"CRM_UF_Page_Field\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:8:\"Profiles\";s:3:\"url\";s:31:\"/civicrm/admin/uf/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,21,1,0,0,'a:0:{}'), - (172,1,'civicrm/admin/uf/group/field/add',NULL,'Add Field','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:17:\"CRM_UF_Form_Field\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:8:\"Profiles\";s:3:\"url\";s:31:\"/civicrm/admin/uf/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,22,1,0,0,'a:0:{}'), - (173,1,'civicrm/admin/uf/group/field/update',NULL,'Edit Field','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:17:\"CRM_UF_Form_Field\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:8:\"Profiles\";s:3:\"url\";s:31:\"/civicrm/admin/uf/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,23,1,0,0,'a:0:{}'), - (174,1,'civicrm/admin/uf/group/add',NULL,'New CiviCRM Profile','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:17:\"CRM_UF_Form_Group\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:8:\"Profiles\";s:3:\"url\";s:31:\"/civicrm/admin/uf/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,24,1,0,0,'a:0:{}'), - (175,1,'civicrm/admin/uf/group/update',NULL,'Profile Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:17:\"CRM_UF_Form_Group\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:8:\"Profiles\";s:3:\"url\";s:31:\"/civicrm/admin/uf/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,25,1,0,0,'a:0:{}'), - (176,1,'civicrm/admin/uf/group/setting',NULL,'AdditionalInfo Form','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_UF_Form_AdvanceSetting\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:8:\"Profiles\";s:3:\"url\";s:31:\"/civicrm/admin/uf/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,0,1,0,0,'a:0:{}'), - (177,1,'civicrm/admin/options/activity_type',NULL,'Activity Types','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,30,1,0,0,'a:2:{s:4:\"desc\";s:155:\"CiviCRM has several built-in activity types (meetings, phone calls, emails sent). Track other types of interactions by creating custom activity types here.\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), - (178,1,'civicrm/admin/reltype',NULL,'Relationship Types','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:31:\"CRM_Admin_Page_RelationshipType\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,35,1,0,0,'a:2:{s:4:\"desc\";s:148:\"Contacts can be linked to each other through Relationships (e.g. Spouse, Employer, etc.). Define the types of relationships you want to record here.\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), - (179,1,'civicrm/admin/reltype/edit',NULL,'Edit Relationship Type','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:31:\"CRM_Admin_Form_RelationshipType\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:18:\"Relationship Types\";s:3:\"url\";s:30:\"/civicrm/admin/reltype?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), - (180,1,'civicrm/admin/options/subtype',NULL,'Contact Types','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Admin_Page_ContactType\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,40,1,0,0,'a:1:{s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), - (181,1,'civicrm/admin/options/subtype/edit',NULL,'Edit Contact Type','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Admin_Form_ContactType\";',NULL,'a:4:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}i:3;a:2:{s:5:\"title\";s:13:\"Contact Types\";s:3:\"url\";s:38:\"/civicrm/admin/options/subtype?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), - (182,1,'civicrm/admin/options/gender',NULL,'Gender Options','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,45,1,0,0,'a:2:{s:4:\"desc\";s:79:\"Options for assigning gender to individual contacts (e.g. Male, Female, Other).\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), - (183,1,'civicrm/admin/options/individual_prefix',NULL,'Individual Prefixes (Ms, Mr...)','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,50,1,0,0,'a:2:{s:4:\"desc\";s:66:\"Options for individual contact prefixes (e.g. Ms., Mr., Dr. etc.).\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), - (184,1,'civicrm/admin/options/individual_suffix',NULL,'Individual Suffixes (Jr, Sr...)','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,55,1,0,0,'a:2:{s:4:\"desc\";s:61:\"Options for individual contact suffixes (e.g. Jr., Sr. etc.).\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), - (185,1,'civicrm/admin/locationType',NULL,'Location Types (Home, Work...)','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:27:\"CRM_Admin_Page_LocationType\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,60,1,0,0,'a:2:{s:4:\"desc\";s:94:\"Options for categorizing contact addresses and phone numbers (e.g. Home, Work, Billing, etc.).\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), - (186,1,'civicrm/admin/locationType/edit',NULL,'Edit Location Type','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:27:\"CRM_Admin_Form_LocationType\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:30:\"Location Types (Home, Work...)\";s:3:\"url\";s:35:\"/civicrm/admin/locationType?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), - (187,1,'civicrm/admin/options/website_type',NULL,'Website Types','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,65,1,0,0,'a:2:{s:4:\"desc\";s:48:\"Options for assigning website types to contacts.\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), - (188,1,'civicrm/admin/options/instant_messenger_service',NULL,'Instant Messenger Services','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,70,1,0,0,'a:2:{s:4:\"desc\";s:79:\"List of IM services which can be used when recording screen-names for contacts.\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), - (189,1,'civicrm/admin/options/mobile_provider',NULL,'Mobile Phone Providers','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,75,1,0,0,'a:2:{s:4:\"desc\";s:90:\"List of mobile phone providers which can be assigned when recording contact phone numbers.\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), - (190,1,'civicrm/admin/options/phone_type',NULL,'Phone Type','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,80,1,0,0,'a:2:{s:4:\"desc\";s:80:\"Options for assigning phone type to contacts (e.g Phone,\n Mobile, Fax, Pager)\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), - (191,1,'civicrm/admin/setting/preferences/display',NULL,'Display Preferences','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:34:\"CRM_Admin_Form_Preferences_Display\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,90,1,0,0,'a:1:{s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), - (192,1,'civicrm/admin/setting/search',NULL,'Search Preferences','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:29:\"CRM_Admin_Form_Setting_Search\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,95,1,0,0,'a:1:{s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), - (193,1,'civicrm/admin/setting/preferences/date',NULL,'View Date Preferences','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:30:\"CRM_Admin_Page_PreferencesDate\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), - (194,1,'civicrm/admin/menu',NULL,'Navigation Menu','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:25:\"CRM_Admin_Page_Navigation\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,100,1,0,0,'a:2:{s:4:\"desc\";s:79:\"Add or remove menu items, and modify the order of items on the navigation menu.\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), - (195,1,'civicrm/admin/options/wordreplacements',NULL,'Word Replacements','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:31:\"CRM_Admin_Form_WordReplacements\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,105,1,0,0,'a:2:{s:4:\"desc\";s:18:\"Word Replacements.\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), - (196,1,'civicrm/admin/options/custom_search',NULL,'Manage Custom Searches','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,110,1,0,0,'a:2:{s:4:\"desc\";s:225:\"Developers and accidental techies with a bit of PHP and SQL knowledge can create new search forms to handle specific search and reporting needs which aren\'t covered by the built-in Advanced Search and Search Builder features.\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), - (197,1,'civicrm/admin/domain','action=update','Organization Address and Contact Info','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:23:\"CRM_Contact_Form_Domain\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,10,1,0,0,'a:2:{s:4:\"desc\";s:150:\"Configure primary contact name, email, return-path and address information. This information is used by CiviMail to identify the sending organization.\";s:10:\"adminGroup\";s:14:\"Communications\";}'), - (198,1,'civicrm/admin/options/from_email_address',NULL,'From Email Addresses','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,20,1,0,0,'a:2:{s:4:\"desc\";s:74:\"List of Email Addresses which can be used when sending emails to contacts.\";s:10:\"adminGroup\";s:14:\"Communications\";}'), - (199,1,'civicrm/admin/messageTemplates',NULL,'Message Templates','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:22:\"edit message templates\";i:1;s:34:\"edit user-driven message templates\";i:2;s:38:\"edit system workflow message templates\";}i:1;s:2:\"or\";}','s:31:\"CRM_Admin_Page_MessageTemplates\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,30,1,0,0,'a:2:{s:4:\"desc\";s:130:\"Message templates allow you to save and re-use messages with layouts which you can use when sending email to one or more contacts.\";s:10:\"adminGroup\";s:14:\"Communications\";}'), - (200,1,'civicrm/admin/messageTemplates/add',NULL,'Message Templates','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:22:\"edit message templates\";i:1;s:34:\"edit user-driven message templates\";i:2;s:38:\"edit system workflow message templates\";}i:1;s:2:\"or\";}','s:31:\"CRM_Admin_Form_MessageTemplates\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:17:\"Message Templates\";s:3:\"url\";s:39:\"/civicrm/admin/messageTemplates?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,262,1,0,0,'a:1:{s:4:\"desc\";s:26:\"Add/Edit Message Templates\";}'), - (201,1,'civicrm/admin/scheduleReminders',NULL,'Schedule Reminders','s:1:\"1\";','a:2:{i:0;a:2:{i:0;s:23:\"administer CiviCRM data\";i:1;s:15:\"edit all events\";}i:1;s:2:\"or\";}','s:32:\"CRM_Admin_Page_ScheduleReminders\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,40,1,0,0,'a:2:{s:4:\"desc\";s:19:\"Schedule Reminders.\";s:10:\"adminGroup\";s:14:\"Communications\";}'), - (202,1,'civicrm/admin/weight',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:16:\"CRM_Utils_Weight\";i:1;s:8:\"fixOrder\";}',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), - (203,1,'civicrm/admin/options/preferred_communication_method',NULL,'Preferred Communication Methods','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,50,1,0,0,'a:2:{s:4:\"desc\";s:117:\"One or more preferred methods of communication can be assigned to each contact. Customize the available options here.\";s:10:\"adminGroup\";s:14:\"Communications\";}'), - (204,1,'civicrm/admin/labelFormats',NULL,'Label Formats','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:27:\"CRM_Admin_Page_LabelFormats\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,60,1,0,0,'a:2:{s:4:\"desc\";s:67:\"Configure Label Formats that are used when creating mailing labels.\";s:10:\"adminGroup\";s:14:\"Communications\";}'), - (205,1,'civicrm/admin/pdfFormats',NULL,'Print Page (PDF) Formats','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:25:\"CRM_Admin_Page_PdfFormats\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,70,1,0,0,'a:2:{s:4:\"desc\";s:95:\"Configure PDF Page Formats that can be assigned to Message Templates when creating PDF letters.\";s:10:\"adminGroup\";s:14:\"Communications\";}'), - (206,1,'civicrm/admin/options/communication_style',NULL,'Communication Style Options','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,75,1,0,0,'a:2:{s:4:\"desc\";s:42:\"Options for Communication Style selection.\";s:10:\"adminGroup\";s:14:\"Communications\";}'), - (207,1,'civicrm/admin/options/email_greeting',NULL,'Email Greeting Formats','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,80,1,0,0,'a:2:{s:4:\"desc\";s:75:\"Options for assigning email greetings to individual and household contacts.\";s:10:\"adminGroup\";s:14:\"Communications\";}'), - (208,1,'civicrm/admin/options/postal_greeting',NULL,'Postal Greeting Formats','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,90,1,0,0,'a:2:{s:4:\"desc\";s:76:\"Options for assigning postal greetings to individual and household contacts.\";s:10:\"adminGroup\";s:14:\"Communications\";}'), - (209,1,'civicrm/admin/options/addressee',NULL,'Addressee Formats','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,100,1,0,0,'a:2:{s:4:\"desc\";s:83:\"Options for assigning addressee to individual, household and organization contacts.\";s:10:\"adminGroup\";s:14:\"Communications\";}'), - (210,1,'civicrm/admin/setting/localization',NULL,'Languages, Currency, Locations','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:35:\"CRM_Admin_Form_Setting_Localization\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,10,1,0,0,'a:1:{s:10:\"adminGroup\";s:12:\"Localization\";}'), - (211,1,'civicrm/admin/setting/preferences/address',NULL,'Address Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:34:\"CRM_Admin_Form_Preferences_Address\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,20,1,0,0,'a:1:{s:10:\"adminGroup\";s:12:\"Localization\";}'), - (212,1,'civicrm/admin/setting/date',NULL,'Date Formats','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:27:\"CRM_Admin_Form_Setting_Date\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,30,1,0,0,'a:1:{s:10:\"adminGroup\";s:12:\"Localization\";}'), - (213,1,'civicrm/admin/options/languages',NULL,'Preferred Languages','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,40,1,0,0,'a:2:{s:4:\"desc\";s:30:\"Options for contact languages.\";s:10:\"adminGroup\";s:12:\"Localization\";}'), - (214,1,'civicrm/admin/access',NULL,'Access Control','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:21:\"CRM_Admin_Page_Access\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,10,1,0,0,'a:2:{s:4:\"desc\";s:73:\"Grant or deny access to actions (view, edit...), features and components.\";s:10:\"adminGroup\";s:21:\"Users and Permissions\";}'), - (215,1,'civicrm/admin/access/wp-permissions',NULL,'WordPress Access Control','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:34:\"CRM_ACL_Form_WordPress_Permissions\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:14:\"Access Control\";s:3:\"url\";s:29:\"/civicrm/admin/access?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,10,1,0,0,'a:1:{s:4:\"desc\";s:65:\"Grant access to CiviCRM components and other CiviCRM permissions.\";}'), - (216,1,'civicrm/admin/synchUser',NULL,'Synchronize Users to Contacts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Form_CMSUser\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,20,1,0,0,'a:2:{s:4:\"desc\";s:71:\"Automatically create a CiviCRM contact record for each CMS user record.\";s:10:\"adminGroup\";s:21:\"Users and Permissions\";}'), - (217,1,'civicrm/admin/configtask',NULL,'Configuration Checklist','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:29:\"CRM_Admin_Page_ConfigTaskList\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}','civicrm/admin/configtask',NULL,NULL,1,0,1,1,1,1,0,0,'a:2:{s:4:\"desc\";s:55:\"List of configuration tasks with links to each setting.\";s:10:\"adminGroup\";s:15:\"System Settings\";}'), - (218,1,'civicrm/admin/setting/component',NULL,'Enable CiviCRM Components','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:32:\"CRM_Admin_Form_Setting_Component\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,10,1,0,0,'a:2:{s:4:\"desc\";s:269:\"Enable or disable components (e.g. CiviEvent, CiviMember, etc.) for your site based on the features you need. We recommend disabling any components not being used in order to simplify the user interface. You can easily re-enable components at any time from this screen.\";s:10:\"adminGroup\";s:15:\"System Settings\";}'), - (219,1,'civicrm/admin/extensions',NULL,'Manage Extensions','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:25:\"administer CiviCRM system\";}i:1;s:3:\"and\";}','s:25:\"CRM_Admin_Page_Extensions\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,120,1,0,0,'a:2:{s:4:\"desc\";s:0:\"\";s:10:\"adminGroup\";s:15:\"System Settings\";}'), - (220,1,'civicrm/admin/extensions/upgrade',NULL,'Database Upgrades','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:25:\"administer CiviCRM system\";}i:1;s:3:\"and\";}','s:32:\"CRM_Admin_Page_ExtensionsUpgrade\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:17:\"Manage Extensions\";s:3:\"url\";s:33:\"/civicrm/admin/extensions?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), - (221,1,'civicrm/admin/setting/smtp',NULL,'Outbound Email Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:25:\"administer CiviCRM system\";}i:1;s:3:\"and\";}','s:27:\"CRM_Admin_Form_Setting_Smtp\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,20,1,0,0,'a:1:{s:10:\"adminGroup\";s:15:\"System Settings\";}'), - (222,1,'civicrm/admin/paymentProcessor',NULL,'Settings - Payment Processor','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:29:\"administer payment processors\";}i:1;s:3:\"and\";}','s:31:\"CRM_Admin_Page_PaymentProcessor\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,30,1,0,0,'a:2:{s:4:\"desc\";s:48:\"Payment Processor setup for CiviCRM transactions\";s:10:\"adminGroup\";s:15:\"System Settings\";}'), - (223,1,'civicrm/admin/paymentProcessor/edit',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:29:\"administer payment processors\";}i:1;s:3:\"and\";}','s:31:\"CRM_Admin_Form_PaymentProcessor\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:28:\"Settings - Payment Processor\";s:3:\"url\";s:39:\"/civicrm/admin/paymentProcessor?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), - (224,1,'civicrm/admin/setting/mapping',NULL,'Mapping and Geocoding','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:30:\"CRM_Admin_Form_Setting_Mapping\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,40,1,0,0,'a:1:{s:10:\"adminGroup\";s:15:\"System Settings\";}'), - (225,1,'civicrm/admin/setting/misc',NULL,'Misc (Undelete, PDFs, Limits, Logging, etc.)','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:36:\"CRM_Admin_Form_Setting_Miscellaneous\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,50,1,0,0,'a:2:{s:4:\"desc\";s:63:\"Enable undelete/move to trash feature, detailed change logging.\";s:10:\"adminGroup\";s:15:\"System Settings\";}'), - (226,1,'civicrm/admin/setting/path',NULL,'Directories','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:27:\"CRM_Admin_Form_Setting_Path\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,60,1,0,0,'a:1:{s:10:\"adminGroup\";s:15:\"System Settings\";}'), - (227,1,'civicrm/admin/setting/url',NULL,'Resource URLs','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Admin_Form_Setting_Url\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,70,1,0,0,'a:1:{s:10:\"adminGroup\";s:15:\"System Settings\";}'), - (228,1,'civicrm/admin/setting/updateConfigBackend',NULL,'Cleanup Caches and Update Paths','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:42:\"CRM_Admin_Form_Setting_UpdateConfigBackend\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,80,1,0,0,'a:2:{s:4:\"desc\";s:157:\"Reset the Base Directory Path and Base URL settings - generally when a CiviCRM site is moved to another location in the file system and/or to another domain.\";s:10:\"adminGroup\";s:15:\"System Settings\";}'), - (229,1,'civicrm/admin/setting/uf',NULL,'CMS Database Integration','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:25:\"CRM_Admin_Form_Setting_UF\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,90,1,0,0,'a:1:{s:10:\"adminGroup\";s:15:\"System Settings\";}'), - (230,1,'civicrm/admin/options/safe_file_extension',NULL,'Safe File Extension Options','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,100,1,0,0,'a:2:{s:4:\"desc\";s:44:\"File Extensions that can be considered safe.\";s:10:\"adminGroup\";s:15:\"System Settings\";}'), - (231,1,'civicrm/admin/options',NULL,'Option Groups','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,105,1,0,0,'a:2:{s:4:\"desc\";s:35:\"Access all meta-data option groups.\";s:10:\"adminGroup\";s:15:\"System Settings\";}'), - (232,1,'civicrm/admin/mapping',NULL,'Import/Export Mappings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Mapping\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,110,1,0,0,'a:2:{s:4:\"desc\";s:141:\"Import and Export mappings allow you to easily run the same job multiple times. This option allows you to rename or delete existing mappings.\";s:10:\"adminGroup\";s:15:\"System Settings\";}'), - (233,1,'civicrm/admin/setting/debug',NULL,'Debugging','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:32:\"CRM_Admin_Form_Setting_Debugging\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,120,1,0,0,'a:1:{s:10:\"adminGroup\";s:15:\"System Settings\";}'), - (234,1,'civicrm/admin/setting/preferences/multisite',NULL,'Multi Site Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Form_Generic\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,130,1,0,0,'a:1:{s:10:\"adminGroup\";s:15:\"System Settings\";}'), - (235,1,'civicrm/admin/setting/preferences/campaign',NULL,'CiviCampaign Component Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Form_Generic\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,10,1,0,0,'a:3:{s:4:\"desc\";s:40:\"Configure global CiviCampaign behaviors.\";s:10:\"adminGroup\";s:12:\"CiviCampaign\";s:9:\"component\";s:12:\"CiviCampaign\";}'), - (236,1,'civicrm/admin/setting/preferences/event',NULL,'CiviEvent Component Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:16:\"access CiviEvent\";i:1;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Form_Generic\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,420,1,0,0,'a:2:{s:4:\"desc\";s:37:\"Configure global CiviEvent behaviors.\";s:10:\"adminGroup\";s:9:\"CiviEvent\";}'), - (237,1,'civicrm/admin/setting/preferences/mailing',NULL,'CiviMail Component Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:15:\"access CiviMail\";i:1;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','s:34:\"CRM_Admin_Form_Preferences_Mailing\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,430,1,0,0,'a:2:{s:4:\"desc\";s:36:\"Configure global CiviMail behaviors.\";s:10:\"adminGroup\";s:8:\"CiviMail\";}'), - (238,1,'civicrm/admin/setting/preferences/member',NULL,'CiviMember Component Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:17:\"access CiviMember\";i:1;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','s:33:\"CRM_Admin_Form_Preferences_Member\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,390,1,0,0,'a:2:{s:4:\"desc\";s:38:\"Configure global CiviMember behaviors.\";s:10:\"adminGroup\";s:10:\"CiviMember\";}'), - (239,1,'civicrm/admin/runjobs',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:25:\"administer CiviCRM system\";}i:1;s:3:\"and\";}','a:2:{i:0;s:16:\"CRM_Utils_System\";i:1;s:20:\"executeScheduledJobs\";}',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:1:{s:4:\"desc\";s:36:\"URL used for running scheduled jobs.\";}'), - (240,1,'civicrm/admin/job',NULL,'Scheduled Jobs','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:25:\"administer CiviCRM system\";}i:1;s:3:\"and\";}','s:18:\"CRM_Admin_Page_Job\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1370,1,0,0,'a:2:{s:4:\"desc\";s:35:\"Managing periodially running tasks.\";s:10:\"adminGroup\";s:15:\"System Settings\";}'), - (241,1,'civicrm/admin/joblog',NULL,'Scheduled Jobs Log','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:25:\"administer CiviCRM system\";}i:1;s:3:\"and\";}','s:21:\"CRM_Admin_Page_JobLog\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1380,1,0,0,'a:2:{s:4:\"desc\";s:46:\"Browsing the log of periodially running tasks.\";s:10:\"adminGroup\";s:6:\"Manage\";}'), - (242,1,'civicrm/admin/options/grant_type',NULL,'Grant Types','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,385,1,0,0,'a:2:{s:4:\"desc\";s:148:\"List of types which can be assigned to Grants. (Enable CiviGrant from Administer > System Settings > Enable Components if you want to track grants.)\";s:10:\"adminGroup\";s:12:\"Option Lists\";}'), - (243,1,'civicrm/admin/paymentProcessorType',NULL,'Payment Processor Type','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:35:\"CRM_Admin_Page_PaymentProcessorType\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,390,1,0,0,'a:1:{s:4:\"desc\";s:34:\"Payment Processor type information\";}'), - (244,1,'civicrm/admin',NULL,'Administer CiviCRM','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:20:\"CRM_Admin_Page_Admin\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,9000,1,1,0,'a:0:{}'), - (245,1,'civicrm/ajax/navmenu',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:19:\"CRM_Admin_Page_AJAX\";i:1;s:7:\"navMenu\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (246,1,'civicrm/ajax/menutree',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:19:\"CRM_Admin_Page_AJAX\";i:1;s:8:\"menuTree\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,3,0,'a:0:{}'), - (247,1,'civicrm/ajax/statusmsg',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:19:\"CRM_Admin_Page_AJAX\";i:1;s:12:\"getStatusMsg\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (248,1,'civicrm/admin/price',NULL,'Price Sets','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:18:\"CRM_Price_Page_Set\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,380,1,0,0,'a:2:{s:4:\"desc\";s:205:\"Price sets allow you to offer multiple options with associated fees (e.g. pre-conference workshops, additional meals, etc.). Configure Price Sets for events which need more than a single set of fee levels.\";s:10:\"adminGroup\";s:9:\"Customize\";}'), - (249,1,'civicrm/admin/price/add','action=add','New Price Set','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:18:\"CRM_Price_Page_Set\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:10:\"Price Sets\";s:3:\"url\";s:28:\"/civicrm/admin/price?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:1:{s:4:\"desc\";s:205:\"Price sets allow you to offer multiple options with associated fees (e.g. pre-conference workshops, additional meals, etc.). Configure Price Sets for events which need more than a single set of fee levels.\";}'), - (250,1,'civicrm/admin/price/field',NULL,'Price Fields','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:20:\"CRM_Price_Page_Field\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:10:\"Price Sets\";s:3:\"url\";s:28:\"/civicrm/admin/price?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), - (251,1,'civicrm/admin/price/field/option',NULL,'Price Field Options','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:21:\"CRM_Price_Page_Option\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:10:\"Price Sets\";s:3:\"url\";s:28:\"/civicrm/admin/price?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), - (252,1,'civicrm/ajax/mapping',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:19:\"CRM_Admin_Page_AJAX\";i:1;s:11:\"mappingList\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (253,1,'civicrm/ajax/recipientListing',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:16:\"access CiviEvent\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:19:\"CRM_Admin_Page_AJAX\";i:1;s:16:\"recipientListing\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (254,1,'civicrm/admin/sms/provider',NULL,'Sms Providers','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','s:21:\"CRM_SMS_Page_Provider\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,500,1,0,0,'a:2:{s:4:\"desc\";s:27:\"To configure a sms provider\";s:10:\"adminGroup\";s:15:\"System Settings\";}'), - (255,1,'civicrm/sms/send',NULL,'New Mass SMS','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:8:\"send SMS\";}i:1;s:3:\"and\";}','s:23:\"CRM_SMS_Controller_Send\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,610,1,1,0,'a:0:{}'), - (256,1,'civicrm/sms/callback',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:21:\"CRM_SMS_Page_Callback\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,1,1,0,1,1,0,0,'a:0:{}'), - (257,1,'civicrm/admin/badgelayout','action=browse','Event Name Badge Layouts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:21:\"CRM_Badge_Page_Layout\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,399,1,0,0,'a:2:{s:4:\"desc\";s:107:\"Configure name badge layouts for event participants, including logos and what data to include on the badge.\";s:10:\"adminGroup\";s:9:\"CiviEvent\";}'), - (258,1,'civicrm/admin/badgelayout/add',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','s:21:\"CRM_Badge_Form_Layout\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:24:\"Event Name Badge Layouts\";s:3:\"url\";s:52:\"/civicrm/admin/badgelayout?reset=1&action=browse\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), + (4,1,'civicrm/ajax/api4',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Api4_Permission\";i:1;s:5:\"check\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:18:\"CRM_Api4_Page_AJAX\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (5,1,'civicrm/api4',NULL,'CiviCRM','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Api4_Page_Api4Explorer\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (6,1,'civicrm/activity','action=add&context=standalone','New Activity','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Activity_Form_Activity\";','s:14:\"attachUpload=1\";','a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (7,1,'civicrm/activity/view',NULL,'View Activity','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:30:\"CRM_Activity_Form_ActivityView\";','s:14:\"attachUpload=1\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:12:\"New Activity\";s:3:\"url\";s:63:\"/civicrm/activity?reset=1&action=add&context=standalone\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (8,1,'civicrm/ajax/activity',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:22:\"CRM_Activity_Page_AJAX\";i:1;s:15:\"getCaseActivity\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (9,1,'civicrm/ajax/globalrelationships',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:22:\"CRM_Activity_Page_AJAX\";i:1;s:26:\"getCaseGlobalRelationships\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (10,1,'civicrm/ajax/clientrelationships',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:22:\"CRM_Activity_Page_AJAX\";i:1;s:26:\"getCaseClientRelationships\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (11,1,'civicrm/ajax/caseroles',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:22:\"CRM_Activity_Page_AJAX\";i:1;s:12:\"getCaseRoles\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (12,1,'civicrm/ajax/contactactivity',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:22:\"CRM_Activity_Page_AJAX\";i:1;s:18:\"getContactActivity\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (13,1,'civicrm/ajax/activity/convert',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:22:\"CRM_Activity_Page_AJAX\";i:1;s:21:\"convertToCaseActivity\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,3,0,'a:0:{}'), + (14,1,'civicrm/activity/search',NULL,'Find Activities','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:30:\"CRM_Activity_Controller_Search\";','s:14:\"attachUpload=1\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:12:\"New Activity\";s:3:\"url\";s:63:\"/civicrm/activity?reset=1&action=add&context=standalone\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (15,1,'civicrm/pcp',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:16:\"CRM_PCP_Form_PCP\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,1,1,0,1,1,0,0,'a:0:{}'), + (16,1,'civicrm/pcp/campaign',NULL,'Setup a Personal Campaign Page - Account Information','s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:25:\"make online contributions\";}i:1;s:3:\"and\";}','s:22:\"CRM_PCP_Controller_PCP\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,1,1,0,0,1,0,0,'a:0:{}'), + (17,1,'civicrm/pcp/info',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:20:\"CRM_PCP_Page_PCPInfo\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,1,1,0,1,1,0,0,'a:0:{}'), + (18,1,'civicrm/admin/pcp','context=contribute','Personal Campaign Pages','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:16:\"CRM_PCP_Page_PCP\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,362,1,0,0,'a:2:{s:4:\"desc\";s:49:\"View and manage existing personal campaign pages.\";s:10:\"adminGroup\";s:14:\"CiviContribute\";}'), + (19,1,'civicrm/upgrade',NULL,'Upgrade CiviCRM','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:24:\"CRM_Upgrade_Page_Upgrade\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (20,1,'civicrm/export',NULL,'Download Errors','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Export_BAO_Export\";i:1;s:6:\"invoke\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (21,1,'civicrm/export/contact',NULL,'Export Contacts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Export_BAO_Export\";i:1;s:6:\"invoke\";}',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Download Errors\";s:3:\"url\";s:23:\"/civicrm/export?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,0,1,0,0,'a:0:{}'), + (22,1,'civicrm/export/standalone',NULL,'Export','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:32:\"CRM_Export_Controller_Standalone\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Download Errors\";s:3:\"url\";s:23:\"/civicrm/export?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (23,1,'civicrm/admin/options/acl_role',NULL,'ACL Roles','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), + (24,1,'civicrm/acl',NULL,'Manage ACLs','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:16:\"CRM_ACL_Page_ACL\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (25,1,'civicrm/acl/entityrole',NULL,'Assign Users to ACL Roles','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:23:\"CRM_ACL_Page_EntityRole\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:11:\"Manage ACLs\";s:3:\"url\";s:20:\"/civicrm/acl?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (26,1,'civicrm/acl/basic',NULL,'ACL','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:21:\"CRM_ACL_Page_ACLBasic\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:11:\"Manage ACLs\";s:3:\"url\";s:20:\"/civicrm/acl?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (27,1,'civicrm/file',NULL,'Browse Uploaded files','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access uploaded files\";}i:1;s:3:\"and\";}','s:18:\"CRM_Core_Page_File\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (28,1,'civicrm/file/delete',NULL,'Delete File','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:17:\"CRM_Core_BAO_File\";i:1;s:16:\"deleteAttachment\";}',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:21:\"Browse Uploaded files\";s:3:\"url\";s:21:\"/civicrm/file?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (29,1,'civicrm/friend',NULL,'Tell a Friend','s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:15:\"CRM_Friend_Form\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,1,1,0,1,1,0,0,'a:0:{}'), + (30,1,'civicrm/logout',NULL,'Log out','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:16:\"CRM_Utils_System\";i:1;s:6:\"logout\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,9999,1,1,0,'a:0:{}'), + (31,1,'civicrm/i18n',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:17:\"translate CiviCRM\";}i:1;s:3:\"and\";}','s:18:\"CRM_Core_I18n_Form\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (32,1,'civicrm/ajax/attachment',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"access AJAX API\";}i:1;s:2:\"or\";}','a:2:{i:0;s:29:\"CRM_Core_Page_AJAX_Attachment\";i:1;s:10:\"attachFile\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (33,1,'civicrm/api',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Core_Page_Redirect\";','s:16:\"url=civicrm/api3\";','a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (34,1,'civicrm/api3',NULL,'CiviCRM API v3','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Admin_Page_APIExplorer\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (35,1,'civicrm/ajax/apiexample',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:26:\"CRM_Admin_Page_APIExplorer\";i:1;s:14:\"getExampleFile\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (36,1,'civicrm/ajax/apidoc',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:26:\"CRM_Admin_Page_APIExplorer\";i:1;s:6:\"getDoc\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (37,1,'civicrm/ajax/rest',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"access AJAX API\";}i:1;s:2:\"or\";}','a:2:{i:0;s:14:\"CRM_Utils_REST\";i:1;s:4:\"ajax\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (38,1,'civicrm/api/json',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:14:\"CRM_Utils_REST\";i:1;s:8:\"ajaxJson\";}','s:16:\"url=civicrm/api3\";','a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (39,1,'civicrm/inline',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:14:\"CRM_Utils_REST\";i:1;s:12:\"loadTemplate\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (40,1,'civicrm/ajax/chart',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:38:\"CRM_Contribute_Form_ContributionCharts\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (41,1,'civicrm/asset/builder',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"*always allow*\";}i:1;s:3:\"and\";}','a:2:{i:0;s:23:\"\\Civi\\Core\\AssetBuilder\";i:1;s:7:\"pageRun\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (42,1,'civicrm/contribute/ajax/tableview',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:29:\"CRM_Contribute_Page_DashBoard\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,1,0,1,0,1,1,0,0,'a:0:{}'), + (43,1,'civicrm/payment/ipn',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','a:2:{i:0;s:16:\"CRM_Core_Payment\";i:1;s:9:\"handleIPN\";}',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:11:\"New Payment\";s:3:\"url\";s:39:\"/civicrm/payment?reset=1&action=add\";}}',NULL,NULL,2,1,1,1,0,1,1,0,0,'a:0:{}'), + (44,1,'civicrm/batch',NULL,'Batch Data Entry','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:20:\"CRM_Batch_Page_Batch\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (45,1,'civicrm/batch/add',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:20:\"CRM_Batch_Form_Batch\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:16:\"Batch Data Entry\";s:3:\"url\";s:22:\"/civicrm/batch?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (46,1,'civicrm/batch/entry',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:20:\"CRM_Batch_Form_Entry\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:16:\"Batch Data Entry\";s:3:\"url\";s:22:\"/civicrm/batch?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (47,1,'civicrm/ajax/batch',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','a:2:{i:0;s:19:\"CRM_Batch_Page_AJAX\";i:1;s:9:\"batchSave\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (48,1,'civicrm/ajax/batchlist',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:19:\"CRM_Batch_Page_AJAX\";i:1;s:12:\"getBatchList\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (49,1,'civicrm/ajax/inline',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:18:\"CRM_Core_Page_AJAX\";i:1;s:3:\"run\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (50,1,'civicrm/dev/qunit',NULL,'QUnit','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','s:19:\"CRM_Core_Page_QUnit\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (51,1,'civicrm/dev/fake-error',NULL,'Fake Error','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"*always allow*\";}i:1;s:3:\"and\";}','s:23:\"CRM_Core_Page_FakeError\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,1,1,0,1,1,0,0,'a:0:{}'), + (52,1,'civicrm/profile-editor/schema',NULL,'ProfileEditor','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:25:\"CRM_UF_Page_ProfileEditor\";i:1;s:13:\"getSchemaJSON\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (53,1,'civicrm/a',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:23:\"\\Civi\\Angular\\Page\\Main\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (54,1,'civicrm/ajax/angular-modules',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"*always allow*\";}i:1;s:3:\"and\";}','s:26:\"\\Civi\\Angular\\Page\\Modules\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (55,1,'civicrm/ajax/recurringentity/update-mode',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:34:\"CRM_Core_Page_AJAX_RecurringEntity\";i:1;s:10:\"updateMode\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (56,1,'civicrm/recurringentity/preview',NULL,'Confirm dates','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:36:\"CRM_Core_Page_RecurringEntityPreview\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (57,1,'civicrm/shortcode',NULL,'Insert CiviCRM Content','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:23:\"CRM_Core_Form_ShortCode\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (58,1,'civicrm/task/add-to-group',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:32:\"CRM_Contact_Form_Task_AddToGroup\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (59,1,'civicrm/task/remove-from-group',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:37:\"CRM_Contact_Form_Task_RemoveFromGroup\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (60,1,'civicrm/task/add-to-tag',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:30:\"CRM_Contact_Form_Task_AddToTag\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (61,1,'civicrm/task/remove-from-tag',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:35:\"CRM_Contact_Form_Task_RemoveFromTag\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (62,1,'civicrm/task/send-email',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:27:\"CRM_Contact_Form_Task_Email\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (63,1,'civicrm/task/make-mailing-label',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:27:\"CRM_Contact_Form_Task_Label\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (64,1,'civicrm/task/pick-profile',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:33:\"CRM_Contact_Form_Task_PickProfile\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (65,1,'civicrm/task/print-document',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:25:\"CRM_Contact_Form_Task_PDF\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (66,1,'civicrm/task/unhold-email',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:28:\"CRM_Contact_Form_Task_Unhold\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (67,1,'civicrm/task/alter-contact-preference',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:38:\"CRM_Contact_Form_Task_AlterPreferences\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (68,1,'civicrm/task/delete-contact',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:28:\"CRM_Contact_Form_Task_Delete\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (69,1,'civicrm/task/add-activity',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Activity_Form_Activity\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (70,1,'civicrm/payment/form',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:26:\"CRM_Financial_Form_Payment\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:11:\"New Payment\";s:3:\"url\";s:39:\"/civicrm/payment?reset=1&action=add\";}}',NULL,NULL,2,1,1,1,0,0,1,0,0,'a:0:{}'), + (71,1,'civicrm/payment/edit',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:30:\"CRM_Financial_Form_PaymentEdit\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:11:\"New Payment\";s:3:\"url\";s:39:\"/civicrm/payment?reset=1&action=add\";}}',NULL,NULL,2,1,0,1,0,1,1,0,0,'a:1:{s:9:\"component\";s:14:\"CiviContribute\";}'), + (72,1,'civicrm/import',NULL,'Import','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:15:\"import contacts\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:29:\"CRM_Contact_Import_Controller\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,400,1,1,0,'a:0:{}'), + (73,1,'civicrm/import/contact',NULL,'Import Contacts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:15:\"import contacts\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:29:\"CRM_Contact_Import_Controller\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:6:\"Import\";s:3:\"url\";s:23:\"/civicrm/import?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,410,1,1,0,'a:0:{}'), + (74,1,'civicrm/import/contact/summary',NULL,'Import Contacts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:31:\"CRM_Contact_Import_Form_Summary\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:6:\"Import\";s:3:\"url\";s:23:\"/civicrm/import?reset=1\";}i:2;a:2:{s:5:\"title\";s:15:\"Import Contacts\";s:3:\"url\";s:31:\"/civicrm/import/contact?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,410,1,1,0,'a:0:{}'), + (75,1,'civicrm/import/outcome',NULL,'Import results','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:16:\"CRM_Import_Forms\";i:1;s:9:\"outputCSV\";}',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:6:\"Import\";s:3:\"url\";s:23:\"/civicrm/import?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (76,1,'civicrm/import/activity',NULL,'Import Activities','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:15:\"import contacts\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:30:\"CRM_Activity_Import_Controller\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:6:\"Import\";s:3:\"url\";s:23:\"/civicrm/import?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,420,1,1,0,'a:0:{}'), + (77,1,'civicrm/import/custom','id=%%id%%','Import Multi-value Custom Data','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:28:\"CRM_Custom_Import_Controller\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:6:\"Import\";s:3:\"url\";s:23:\"/civicrm/import?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,420,1,1,0,'a:0:{}'), + (78,1,'civicrm/ajax/status',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:15:\"import contacts\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:28:\"CRM_Contact_Import_Page_AJAX\";i:1;s:6:\"status\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (79,1,'civicrm/import/datasource',NULL,'Import','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:32:\"CRM_Import_Form_DataSourceConfig\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:6:\"Import\";s:3:\"url\";s:23:\"/civicrm/import?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,450,1,1,0,'a:0:{}'), + (80,1,'civicrm/custom/add',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Custom_Form_CustomData\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (81,1,'civicrm/ajax/optionlist',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:20:\"CRM_Custom_Page_AJAX\";i:1;s:13:\"getOptionList\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (82,1,'civicrm/ajax/reorder',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:20:\"CRM_Custom_Page_AJAX\";i:1;s:11:\"fixOrdering\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (83,1,'civicrm/ajax/multirecordfieldlist',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:20:\"CRM_Custom_Page_AJAX\";i:1;s:23:\"getMultiRecordFieldList\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (84,1,'civicrm/admin/custom/group',NULL,'Custom Data','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:23:\"administer CiviCRM data\";}i:1;s:3:\"and\";}','s:21:\"CRM_Custom_Page_Group\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,10,1,0,0,'a:2:{s:4:\"desc\";s:109:\"Configure custom fields to collect and store custom data which is not included in the standard CiviCRM forms.\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), + (85,1,'civicrm/admin/custom/group/edit',NULL,'Configure Custom Set','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:23:\"administer CiviCRM data\";}i:1;s:3:\"and\";}','s:21:\"CRM_Custom_Form_Group\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:11:\"Custom Data\";s:3:\"url\";s:35:\"/civicrm/admin/custom/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), + (86,1,'civicrm/admin/custom/group/preview',NULL,'Custom Field Preview','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:23:\"administer CiviCRM data\";}i:1;s:3:\"and\";}','s:23:\"CRM_Custom_Form_Preview\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:11:\"Custom Data\";s:3:\"url\";s:35:\"/civicrm/admin/custom/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), + (87,1,'civicrm/admin/custom/group/delete',NULL,'Delete Custom Set','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:23:\"administer CiviCRM data\";}i:1;s:3:\"and\";}','s:27:\"CRM_Custom_Form_DeleteGroup\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:11:\"Custom Data\";s:3:\"url\";s:35:\"/civicrm/admin/custom/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), + (88,1,'civicrm/admin/custom/group/field',NULL,'Custom Data Fields','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:23:\"administer CiviCRM data\";}i:1;s:3:\"and\";}','s:21:\"CRM_Custom_Page_Field\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:11:\"Custom Data\";s:3:\"url\";s:35:\"/civicrm/admin/custom/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,11,1,0,0,'a:0:{}'), + (89,1,'civicrm/admin/custom/group/field/delete',NULL,'Delete Custom Field','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:23:\"administer CiviCRM data\";}i:1;s:3:\"and\";}','s:27:\"CRM_Custom_Form_DeleteField\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:11:\"Custom Data\";s:3:\"url\";s:35:\"/civicrm/admin/custom/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), + (90,1,'civicrm/admin/custom/group/field/option',NULL,'Custom Field - Options','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:23:\"administer CiviCRM data\";}i:1;s:3:\"and\";}','s:22:\"CRM_Custom_Page_Option\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:11:\"Custom Data\";s:3:\"url\";s:35:\"/civicrm/admin/custom/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), + (91,1,'civicrm/admin/custom/group/field/add',NULL,'Custom Field - Add','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:23:\"administer CiviCRM data\";}i:1;s:3:\"and\";}','s:21:\"CRM_Custom_Form_Field\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:11:\"Custom Data\";s:3:\"url\";s:35:\"/civicrm/admin/custom/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), + (92,1,'civicrm/admin/custom/group/field/update',NULL,'Custom Field - Edit','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:23:\"administer CiviCRM data\";}i:1;s:3:\"and\";}','s:21:\"CRM_Custom_Form_Field\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:11:\"Custom Data\";s:3:\"url\";s:35:\"/civicrm/admin/custom/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), + (93,1,'civicrm/admin/custom/group/field/move',NULL,'Custom Field - Move','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:23:\"administer CiviCRM data\";}i:1;s:3:\"and\";}','s:25:\"CRM_Custom_Form_MoveField\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:11:\"Custom Data\";s:3:\"url\";s:35:\"/civicrm/admin/custom/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), + (94,1,'civicrm/admin/uf/group',NULL,'Profiles','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:17:\"CRM_UF_Page_Group\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,20,1,0,0,'a:2:{s:4:\"desc\";s:151:\"Profiles allow you to aggregate groups of fields and include them in your site as input forms, contact display pages, and search and listings features.\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), + (95,1,'civicrm/admin/uf/group/preview',NULL,'Preview','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:19:\"CRM_UF_Form_Preview\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:8:\"Profiles\";s:3:\"url\";s:31:\"/civicrm/admin/uf/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), + (96,1,'civicrm/admin/uf/group/field',NULL,'CiviCRM Profile Fields','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:17:\"CRM_UF_Page_Field\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:8:\"Profiles\";s:3:\"url\";s:31:\"/civicrm/admin/uf/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,21,1,0,0,'a:0:{}'), + (97,1,'civicrm/admin/uf/group/field/add',NULL,'Add Field','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:17:\"CRM_UF_Form_Field\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:8:\"Profiles\";s:3:\"url\";s:31:\"/civicrm/admin/uf/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,22,1,0,0,'a:0:{}'), + (98,1,'civicrm/admin/uf/group/field/update',NULL,'Edit Field','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:17:\"CRM_UF_Form_Field\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:8:\"Profiles\";s:3:\"url\";s:31:\"/civicrm/admin/uf/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,23,1,0,0,'a:0:{}'), + (99,1,'civicrm/admin/uf/group/add',NULL,'New CiviCRM Profile','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:17:\"CRM_UF_Form_Group\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:8:\"Profiles\";s:3:\"url\";s:31:\"/civicrm/admin/uf/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,24,1,0,0,'a:0:{}'), + (100,1,'civicrm/admin/uf/group/update',NULL,'Profile Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:17:\"CRM_UF_Form_Group\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:8:\"Profiles\";s:3:\"url\";s:31:\"/civicrm/admin/uf/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,25,1,0,0,'a:0:{}'), + (101,1,'civicrm/admin/uf/group/setting',NULL,'AdditionalInfo Form','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_UF_Form_AdvanceSetting\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:8:\"Profiles\";s:3:\"url\";s:31:\"/civicrm/admin/uf/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,0,1,0,0,'a:0:{}'), + (102,1,'civicrm/admin/options/activity_type',NULL,'Activity Types','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,30,1,0,0,'a:2:{s:4:\"desc\";s:155:\"CiviCRM has several built-in activity types (meetings, phone calls, emails sent). Track other types of interactions by creating custom activity types here.\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), + (103,1,'civicrm/admin/reltype',NULL,'Relationship Types','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:31:\"CRM_Admin_Page_RelationshipType\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,35,1,0,0,'a:2:{s:4:\"desc\";s:148:\"Contacts can be linked to each other through Relationships (e.g. Spouse, Employer, etc.). Define the types of relationships you want to record here.\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), + (104,1,'civicrm/admin/reltype/edit',NULL,'Edit Relationship Type','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:31:\"CRM_Admin_Form_RelationshipType\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:18:\"Relationship Types\";s:3:\"url\";s:30:\"/civicrm/admin/reltype?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), + (105,1,'civicrm/admin/options/subtype',NULL,'Contact Types','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Admin_Page_ContactType\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,40,1,0,0,'a:1:{s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), + (106,1,'civicrm/admin/options/subtype/edit',NULL,'Edit Contact Type','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Admin_Form_ContactType\";',NULL,'a:4:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}i:3;a:2:{s:5:\"title\";s:13:\"Contact Types\";s:3:\"url\";s:38:\"/civicrm/admin/options/subtype?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), + (107,1,'civicrm/admin/options/gender',NULL,'Gender Options','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,45,1,0,0,'a:2:{s:4:\"desc\";s:79:\"Options for assigning gender to individual contacts (e.g. Male, Female, Other).\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), + (108,1,'civicrm/admin/options/individual_prefix',NULL,'Individual Prefixes (Ms, Mr...)','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,50,1,0,0,'a:2:{s:4:\"desc\";s:66:\"Options for individual contact prefixes (e.g. Ms., Mr., Dr. etc.).\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), + (109,1,'civicrm/admin/options/individual_suffix',NULL,'Individual Suffixes (Jr, Sr...)','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,55,1,0,0,'a:2:{s:4:\"desc\";s:61:\"Options for individual contact suffixes (e.g. Jr., Sr. etc.).\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), + (110,1,'civicrm/admin/locationType',NULL,'Location Types (Home, Work...)','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:27:\"CRM_Admin_Page_LocationType\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,60,1,0,0,'a:2:{s:4:\"desc\";s:94:\"Options for categorizing contact addresses and phone numbers (e.g. Home, Work, Billing, etc.).\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), + (111,1,'civicrm/admin/locationType/edit',NULL,'Edit Location Type','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:27:\"CRM_Admin_Form_LocationType\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:30:\"Location Types (Home, Work...)\";s:3:\"url\";s:35:\"/civicrm/admin/locationType?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), + (112,1,'civicrm/admin/options/website_type',NULL,'Website Types','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,65,1,0,0,'a:2:{s:4:\"desc\";s:48:\"Options for assigning website types to contacts.\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), + (113,1,'civicrm/admin/options/instant_messenger_service',NULL,'Instant Messenger Services','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,70,1,0,0,'a:2:{s:4:\"desc\";s:79:\"List of IM services which can be used when recording screen-names for contacts.\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), + (114,1,'civicrm/admin/options/mobile_provider',NULL,'Mobile Phone Providers','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,75,1,0,0,'a:2:{s:4:\"desc\";s:90:\"List of mobile phone providers which can be assigned when recording contact phone numbers.\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), + (115,1,'civicrm/admin/options/phone_type',NULL,'Phone Type','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,80,1,0,0,'a:2:{s:4:\"desc\";s:80:\"Options for assigning phone type to contacts (e.g Phone,\n Mobile, Fax, Pager)\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), + (116,1,'civicrm/admin/setting/preferences/display',NULL,'Display Preferences','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:34:\"CRM_Admin_Form_Preferences_Display\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,90,1,0,0,'a:1:{s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), + (117,1,'civicrm/admin/setting/search',NULL,'Search Preferences','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:29:\"CRM_Admin_Form_Setting_Search\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,95,1,0,0,'a:1:{s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), + (118,1,'civicrm/admin/setting/preferences/date',NULL,'View Date Preferences','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:30:\"CRM_Admin_Page_PreferencesDate\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), + (119,1,'civicrm/admin/menu',NULL,'Navigation Menu','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:25:\"CRM_Admin_Page_Navigation\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,100,1,0,0,'a:2:{s:4:\"desc\";s:79:\"Add or remove menu items, and modify the order of items on the navigation menu.\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), + (120,1,'civicrm/admin/options/wordreplacements',NULL,'Word Replacements','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:31:\"CRM_Admin_Form_WordReplacements\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,105,1,0,0,'a:2:{s:4:\"desc\";s:18:\"Word Replacements.\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), + (121,1,'civicrm/admin/options/custom_search',NULL,'Manage Custom Searches','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,110,1,0,0,'a:2:{s:4:\"desc\";s:225:\"Developers and accidental techies with a bit of PHP and SQL knowledge can create new search forms to handle specific search and reporting needs which aren\'t covered by the built-in Advanced Search and Search Builder features.\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), + (122,1,'civicrm/admin/domain','action=update','Organization Address and Contact Info','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:23:\"CRM_Contact_Form_Domain\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,10,1,0,0,'a:2:{s:4:\"desc\";s:150:\"Configure primary contact name, email, return-path and address information. This information is used by CiviMail to identify the sending organization.\";s:10:\"adminGroup\";s:14:\"Communications\";}'), + (123,1,'civicrm/admin/options/from_email_address',NULL,'From Email Addresses','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,20,1,0,0,'a:2:{s:4:\"desc\";s:74:\"List of Email Addresses which can be used when sending emails to contacts.\";s:10:\"adminGroup\";s:14:\"Communications\";}'), + (124,1,'civicrm/admin/messageTemplates',NULL,'Message Templates','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:22:\"edit message templates\";i:1;s:34:\"edit user-driven message templates\";i:2;s:38:\"edit system workflow message templates\";}i:1;s:2:\"or\";}','s:31:\"CRM_Admin_Page_MessageTemplates\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,30,1,0,0,'a:2:{s:4:\"desc\";s:130:\"Message templates allow you to save and re-use messages with layouts which you can use when sending email to one or more contacts.\";s:10:\"adminGroup\";s:14:\"Communications\";}'), + (125,1,'civicrm/admin/messageTemplates/add',NULL,'Message Templates','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:22:\"edit message templates\";i:1;s:34:\"edit user-driven message templates\";i:2;s:38:\"edit system workflow message templates\";}i:1;s:2:\"or\";}','s:31:\"CRM_Admin_Form_MessageTemplates\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:17:\"Message Templates\";s:3:\"url\";s:39:\"/civicrm/admin/messageTemplates?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,262,1,0,0,'a:1:{s:4:\"desc\";s:26:\"Add/Edit Message Templates\";}'), + (126,1,'civicrm/admin/scheduleReminders',NULL,'Schedule Reminders','s:1:\"1\";','a:2:{i:0;a:2:{i:0;s:23:\"administer CiviCRM data\";i:1;s:15:\"edit all events\";}i:1;s:2:\"or\";}','s:32:\"CRM_Admin_Page_ScheduleReminders\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,40,1,0,0,'a:2:{s:4:\"desc\";s:19:\"Schedule Reminders.\";s:10:\"adminGroup\";s:14:\"Communications\";}'), + (127,1,'civicrm/admin/weight',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:16:\"CRM_Utils_Weight\";i:1;s:8:\"fixOrder\";}',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), + (128,1,'civicrm/admin/options/preferred_communication_method',NULL,'Preferred Communication Methods','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,50,1,0,0,'a:2:{s:4:\"desc\";s:117:\"One or more preferred methods of communication can be assigned to each contact. Customize the available options here.\";s:10:\"adminGroup\";s:14:\"Communications\";}'), + (129,1,'civicrm/admin/labelFormats',NULL,'Label Formats','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:27:\"CRM_Admin_Page_LabelFormats\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,60,1,0,0,'a:2:{s:4:\"desc\";s:67:\"Configure Label Formats that are used when creating mailing labels.\";s:10:\"adminGroup\";s:14:\"Communications\";}'), + (130,1,'civicrm/admin/pdfFormats',NULL,'Print Page (PDF) Formats','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:25:\"CRM_Admin_Page_PdfFormats\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,70,1,0,0,'a:2:{s:4:\"desc\";s:95:\"Configure PDF Page Formats that can be assigned to Message Templates when creating PDF letters.\";s:10:\"adminGroup\";s:14:\"Communications\";}'), + (131,1,'civicrm/admin/options/communication_style',NULL,'Communication Style Options','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,75,1,0,0,'a:2:{s:4:\"desc\";s:42:\"Options for Communication Style selection.\";s:10:\"adminGroup\";s:14:\"Communications\";}'), + (132,1,'civicrm/admin/options/email_greeting',NULL,'Email Greeting Formats','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,80,1,0,0,'a:2:{s:4:\"desc\";s:75:\"Options for assigning email greetings to individual and household contacts.\";s:10:\"adminGroup\";s:14:\"Communications\";}'), + (133,1,'civicrm/admin/options/postal_greeting',NULL,'Postal Greeting Formats','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,90,1,0,0,'a:2:{s:4:\"desc\";s:76:\"Options for assigning postal greetings to individual and household contacts.\";s:10:\"adminGroup\";s:14:\"Communications\";}'), + (134,1,'civicrm/admin/options/addressee',NULL,'Addressee Formats','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,100,1,0,0,'a:2:{s:4:\"desc\";s:83:\"Options for assigning addressee to individual, household and organization contacts.\";s:10:\"adminGroup\";s:14:\"Communications\";}'), + (135,1,'civicrm/admin/setting/localization',NULL,'Languages, Currency, Locations','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:35:\"CRM_Admin_Form_Setting_Localization\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,10,1,0,0,'a:1:{s:10:\"adminGroup\";s:12:\"Localization\";}'), + (136,1,'civicrm/admin/setting/preferences/address',NULL,'Address Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:34:\"CRM_Admin_Form_Preferences_Address\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,20,1,0,0,'a:1:{s:10:\"adminGroup\";s:12:\"Localization\";}'), + (137,1,'civicrm/admin/setting/date',NULL,'Date Formats','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:27:\"CRM_Admin_Form_Setting_Date\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,30,1,0,0,'a:1:{s:10:\"adminGroup\";s:12:\"Localization\";}'), + (138,1,'civicrm/admin/options/languages',NULL,'Preferred Languages','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,40,1,0,0,'a:2:{s:4:\"desc\";s:30:\"Options for contact languages.\";s:10:\"adminGroup\";s:12:\"Localization\";}'), + (139,1,'civicrm/admin/access',NULL,'Access Control','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:21:\"CRM_Admin_Page_Access\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,10,1,0,0,'a:2:{s:4:\"desc\";s:73:\"Grant or deny access to actions (view, edit...), features and components.\";s:10:\"adminGroup\";s:21:\"Users and Permissions\";}'), + (140,1,'civicrm/admin/access/wp-permissions',NULL,'WordPress Access Control','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:34:\"CRM_ACL_Form_WordPress_Permissions\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:14:\"Access Control\";s:3:\"url\";s:29:\"/civicrm/admin/access?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,10,1,0,0,'a:1:{s:4:\"desc\";s:65:\"Grant access to CiviCRM components and other CiviCRM permissions.\";}'), + (141,1,'civicrm/admin/synchUser',NULL,'Synchronize Users to Contacts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Form_CMSUser\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,20,1,0,0,'a:2:{s:4:\"desc\";s:71:\"Automatically create a CiviCRM contact record for each CMS user record.\";s:10:\"adminGroup\";s:21:\"Users and Permissions\";}'), + (142,1,'civicrm/admin/configtask',NULL,'Configuration Checklist','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:29:\"CRM_Admin_Page_ConfigTaskList\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}','civicrm/admin/configtask',NULL,NULL,1,0,1,1,1,1,0,0,'a:2:{s:4:\"desc\";s:55:\"List of configuration tasks with links to each setting.\";s:10:\"adminGroup\";s:15:\"System Settings\";}'), + (143,1,'civicrm/admin/setting/component',NULL,'Enable CiviCRM Components','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:32:\"CRM_Admin_Form_Setting_Component\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,10,1,0,0,'a:2:{s:4:\"desc\";s:269:\"Enable or disable components (e.g. CiviEvent, CiviMember, etc.) for your site based on the features you need. We recommend disabling any components not being used in order to simplify the user interface. You can easily re-enable components at any time from this screen.\";s:10:\"adminGroup\";s:15:\"System Settings\";}'), + (144,1,'civicrm/admin/extensions',NULL,'Manage Extensions','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:25:\"administer CiviCRM system\";}i:1;s:3:\"and\";}','s:25:\"CRM_Admin_Page_Extensions\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,120,1,0,0,'a:2:{s:4:\"desc\";s:0:\"\";s:10:\"adminGroup\";s:15:\"System Settings\";}'), + (145,1,'civicrm/admin/extensions/upgrade',NULL,'Database Upgrades','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:25:\"administer CiviCRM system\";}i:1;s:3:\"and\";}','s:32:\"CRM_Admin_Page_ExtensionsUpgrade\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:17:\"Manage Extensions\";s:3:\"url\";s:33:\"/civicrm/admin/extensions?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), + (146,1,'civicrm/admin/setting/smtp',NULL,'Outbound Email Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:25:\"administer CiviCRM system\";}i:1;s:3:\"and\";}','s:27:\"CRM_Admin_Form_Setting_Smtp\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,20,1,0,0,'a:1:{s:10:\"adminGroup\";s:15:\"System Settings\";}'), + (147,1,'civicrm/admin/paymentProcessor',NULL,'Settings - Payment Processor','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:29:\"administer payment processors\";}i:1;s:3:\"and\";}','s:31:\"CRM_Admin_Page_PaymentProcessor\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,30,1,0,0,'a:2:{s:4:\"desc\";s:48:\"Payment Processor setup for CiviCRM transactions\";s:10:\"adminGroup\";s:15:\"System Settings\";}'), + (148,1,'civicrm/admin/paymentProcessor/edit',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:29:\"administer payment processors\";}i:1;s:3:\"and\";}','s:31:\"CRM_Admin_Form_PaymentProcessor\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:28:\"Settings - Payment Processor\";s:3:\"url\";s:39:\"/civicrm/admin/paymentProcessor?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), + (149,1,'civicrm/admin/setting/mapping',NULL,'Mapping and Geocoding','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:30:\"CRM_Admin_Form_Setting_Mapping\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,40,1,0,0,'a:1:{s:10:\"adminGroup\";s:15:\"System Settings\";}'), + (150,1,'civicrm/admin/setting/misc',NULL,'Misc (Undelete, PDFs, Limits, Logging, etc.)','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:36:\"CRM_Admin_Form_Setting_Miscellaneous\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,50,1,0,0,'a:2:{s:4:\"desc\";s:63:\"Enable undelete/move to trash feature, detailed change logging.\";s:10:\"adminGroup\";s:15:\"System Settings\";}'), + (151,1,'civicrm/admin/setting/path',NULL,'Directories','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:27:\"CRM_Admin_Form_Setting_Path\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,60,1,0,0,'a:1:{s:10:\"adminGroup\";s:15:\"System Settings\";}'), + (152,1,'civicrm/admin/setting/url',NULL,'Resource URLs','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Admin_Form_Setting_Url\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,70,1,0,0,'a:1:{s:10:\"adminGroup\";s:15:\"System Settings\";}'), + (153,1,'civicrm/admin/setting/updateConfigBackend',NULL,'Cleanup Caches and Update Paths','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:42:\"CRM_Admin_Form_Setting_UpdateConfigBackend\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,80,1,0,0,'a:2:{s:4:\"desc\";s:157:\"Reset the Base Directory Path and Base URL settings - generally when a CiviCRM site is moved to another location in the file system and/or to another domain.\";s:10:\"adminGroup\";s:15:\"System Settings\";}'), + (154,1,'civicrm/admin/setting/uf',NULL,'CMS Database Integration','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:25:\"CRM_Admin_Form_Setting_UF\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,90,1,0,0,'a:1:{s:10:\"adminGroup\";s:15:\"System Settings\";}'), + (155,1,'civicrm/admin/options/safe_file_extension',NULL,'Safe File Extension Options','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,100,1,0,0,'a:2:{s:4:\"desc\";s:44:\"File Extensions that can be considered safe.\";s:10:\"adminGroup\";s:15:\"System Settings\";}'), + (156,1,'civicrm/admin/options',NULL,'Option Groups','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,105,1,0,0,'a:2:{s:4:\"desc\";s:35:\"Access all meta-data option groups.\";s:10:\"adminGroup\";s:15:\"System Settings\";}'), + (157,1,'civicrm/admin/mapping',NULL,'Import/Export Mappings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Mapping\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,110,1,0,0,'a:2:{s:4:\"desc\";s:141:\"Import and Export mappings allow you to easily run the same job multiple times. This option allows you to rename or delete existing mappings.\";s:10:\"adminGroup\";s:15:\"System Settings\";}'), + (158,1,'civicrm/admin/setting/debug',NULL,'Debugging','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:32:\"CRM_Admin_Form_Setting_Debugging\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,120,1,0,0,'a:1:{s:10:\"adminGroup\";s:15:\"System Settings\";}'), + (159,1,'civicrm/admin/setting/preferences/multisite',NULL,'Multi Site Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Form_Generic\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,130,1,0,0,'a:1:{s:10:\"adminGroup\";s:15:\"System Settings\";}'), + (160,1,'civicrm/admin/setting/preferences/campaign',NULL,'CiviCampaign Component Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Form_Generic\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,10,1,0,0,'a:3:{s:4:\"desc\";s:40:\"Configure global CiviCampaign behaviors.\";s:10:\"adminGroup\";s:12:\"CiviCampaign\";s:9:\"component\";s:12:\"CiviCampaign\";}'), + (161,1,'civicrm/admin/setting/preferences/event',NULL,'CiviEvent Component Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:16:\"access CiviEvent\";i:1;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Form_Generic\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,420,1,0,0,'a:2:{s:4:\"desc\";s:37:\"Configure global CiviEvent behaviors.\";s:10:\"adminGroup\";s:9:\"CiviEvent\";}'), + (162,1,'civicrm/admin/setting/preferences/mailing',NULL,'CiviMail Component Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:15:\"access CiviMail\";i:1;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','s:34:\"CRM_Admin_Form_Preferences_Mailing\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,430,1,0,0,'a:2:{s:4:\"desc\";s:36:\"Configure global CiviMail behaviors.\";s:10:\"adminGroup\";s:8:\"CiviMail\";}'), + (163,1,'civicrm/admin/setting/preferences/member',NULL,'CiviMember Component Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:17:\"access CiviMember\";i:1;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','s:33:\"CRM_Admin_Form_Preferences_Member\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,390,1,0,0,'a:2:{s:4:\"desc\";s:38:\"Configure global CiviMember behaviors.\";s:10:\"adminGroup\";s:10:\"CiviMember\";}'), + (164,1,'civicrm/admin/runjobs',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:25:\"administer CiviCRM system\";}i:1;s:3:\"and\";}','a:2:{i:0;s:16:\"CRM_Utils_System\";i:1;s:20:\"executeScheduledJobs\";}',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:1:{s:4:\"desc\";s:36:\"URL used for running scheduled jobs.\";}'), + (165,1,'civicrm/admin/job',NULL,'Scheduled Jobs','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:25:\"administer CiviCRM system\";}i:1;s:3:\"and\";}','s:18:\"CRM_Admin_Page_Job\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1370,1,0,0,'a:2:{s:4:\"desc\";s:35:\"Managing periodially running tasks.\";s:10:\"adminGroup\";s:15:\"System Settings\";}'), + (166,1,'civicrm/admin/joblog',NULL,'Scheduled Jobs Log','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:25:\"administer CiviCRM system\";}i:1;s:3:\"and\";}','s:21:\"CRM_Admin_Page_JobLog\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1380,1,0,0,'a:2:{s:4:\"desc\";s:46:\"Browsing the log of periodially running tasks.\";s:10:\"adminGroup\";s:6:\"Manage\";}'), + (167,1,'civicrm/admin/options/grant_type',NULL,'Grant Types','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,385,1,0,0,'a:2:{s:4:\"desc\";s:148:\"List of types which can be assigned to Grants. (Enable CiviGrant from Administer > System Settings > Enable Components if you want to track grants.)\";s:10:\"adminGroup\";s:12:\"Option Lists\";}'), + (168,1,'civicrm/admin/paymentProcessorType',NULL,'Payment Processor Type','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:35:\"CRM_Admin_Page_PaymentProcessorType\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,390,1,0,0,'a:1:{s:4:\"desc\";s:34:\"Payment Processor type information\";}'), + (169,1,'civicrm/admin',NULL,'Administer CiviCRM','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:20:\"CRM_Admin_Page_Admin\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,9000,1,1,0,'a:0:{}'), + (170,1,'civicrm/ajax/navmenu',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:19:\"CRM_Admin_Page_AJAX\";i:1;s:7:\"navMenu\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (171,1,'civicrm/ajax/menutree',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:19:\"CRM_Admin_Page_AJAX\";i:1;s:8:\"menuTree\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,3,0,'a:0:{}'), + (172,1,'civicrm/ajax/statusmsg',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:19:\"CRM_Admin_Page_AJAX\";i:1;s:12:\"getStatusMsg\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (173,1,'civicrm/admin/price',NULL,'Price Sets','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:18:\"CRM_Price_Page_Set\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,380,1,0,0,'a:2:{s:4:\"desc\";s:205:\"Price sets allow you to offer multiple options with associated fees (e.g. pre-conference workshops, additional meals, etc.). Configure Price Sets for events which need more than a single set of fee levels.\";s:10:\"adminGroup\";s:9:\"Customize\";}'), + (174,1,'civicrm/admin/price/add','action=add','New Price Set','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:18:\"CRM_Price_Page_Set\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:10:\"Price Sets\";s:3:\"url\";s:28:\"/civicrm/admin/price?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:1:{s:4:\"desc\";s:205:\"Price sets allow you to offer multiple options with associated fees (e.g. pre-conference workshops, additional meals, etc.). Configure Price Sets for events which need more than a single set of fee levels.\";}'), + (175,1,'civicrm/admin/price/field',NULL,'Price Fields','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:20:\"CRM_Price_Page_Field\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:10:\"Price Sets\";s:3:\"url\";s:28:\"/civicrm/admin/price?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), + (176,1,'civicrm/admin/price/field/option',NULL,'Price Field Options','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:21:\"CRM_Price_Page_Option\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:10:\"Price Sets\";s:3:\"url\";s:28:\"/civicrm/admin/price?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), + (177,1,'civicrm/ajax/mapping',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:19:\"CRM_Admin_Page_AJAX\";i:1;s:11:\"mappingList\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (178,1,'civicrm/ajax/recipientListing',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:16:\"access CiviEvent\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:19:\"CRM_Admin_Page_AJAX\";i:1;s:16:\"recipientListing\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (179,1,'civicrm/admin/sms/provider',NULL,'Sms Providers','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','s:21:\"CRM_SMS_Page_Provider\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,500,1,0,0,'a:2:{s:4:\"desc\";s:27:\"To configure a sms provider\";s:10:\"adminGroup\";s:15:\"System Settings\";}'), + (180,1,'civicrm/sms/send',NULL,'New Mass SMS','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:8:\"send SMS\";}i:1;s:3:\"and\";}','s:23:\"CRM_SMS_Controller_Send\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,610,1,1,0,'a:0:{}'), + (181,1,'civicrm/sms/callback',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:21:\"CRM_SMS_Page_Callback\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,1,1,0,1,1,0,0,'a:0:{}'), + (182,1,'civicrm/admin/badgelayout','action=browse','Event Name Badge Layouts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:21:\"CRM_Badge_Page_Layout\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,399,1,0,0,'a:2:{s:4:\"desc\";s:107:\"Configure name badge layouts for event participants, including logos and what data to include on the badge.\";s:10:\"adminGroup\";s:9:\"CiviEvent\";}'), + (183,1,'civicrm/admin/badgelayout/add',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','s:21:\"CRM_Badge_Form_Layout\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:24:\"Event Name Badge Layouts\";s:3:\"url\";s:52:\"/civicrm/admin/badgelayout?reset=1&action=browse\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), + (184,1,'civicrm',NULL,'CiviCRM','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Contact_Page_DashBoard\";',NULL,'a:0:{}',NULL,NULL,NULL,1,0,1,0,0,1,0,0,'a:0:{}'), + (185,1,'civicrm/dashboard',NULL,'CiviCRM Home','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Contact_Page_DashBoard\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,0,1,1,0,'a:0:{}'), + (186,1,'civicrm/contact/search',NULL,'Find Contacts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:29:\"CRM_Contact_Controller_Search\";','s:8:\"mode=256\";','a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,10,1,1,0,'a:0:{}'), + (187,1,'civicrm/contact/image',NULL,'Process Uploaded Images','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access uploaded files\";}i:1;s:3:\"and\";}','a:2:{i:0;s:23:\"CRM_Contact_BAO_Contact\";i:1;s:12:\"processImage\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (188,1,'civicrm/contact/imagefile',NULL,'Get Image File','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"*always allow*\";}i:1;s:3:\"and\";}','s:26:\"CRM_Contact_Page_ImageFile\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (189,1,'civicrm/contact/search/basic',NULL,'Find Contacts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:29:\"CRM_Contact_Controller_Search\";','s:8:\"mode=256\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:13:\"Find Contacts\";s:3:\"url\";s:31:\"/civicrm/contact/search?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (190,1,'civicrm/contact/search/advanced',NULL,'Advanced Search','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:29:\"CRM_Contact_Controller_Search\";','s:8:\"mode=512\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:13:\"Find Contacts\";s:3:\"url\";s:31:\"/civicrm/contact/search?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,12,1,1,0,'a:0:{}'), + (191,1,'civicrm/contact/search/builder',NULL,'Search Builder','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:29:\"CRM_Contact_Controller_Search\";','s:9:\"mode=8192\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:13:\"Find Contacts\";s:3:\"url\";s:31:\"/civicrm/contact/search?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,14,1,1,0,'a:0:{}'), + (192,1,'civicrm/contact/add',NULL,'New Contact','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:24:\"CRM_Contact_Form_Contact\";','s:13:\"addSequence=1\";','a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (193,1,'civicrm/contact/add/individual','ct=Individual','New Individual','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:12:\"add contacts\";}i:1;s:3:\"and\";}','s:24:\"CRM_Contact_Form_Contact\";','s:13:\"addSequence=1\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:11:\"New Contact\";s:3:\"url\";s:28:\"/civicrm/contact/add?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (194,1,'civicrm/contact/add/household','ct=Household','New Household','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:12:\"add contacts\";}i:1;s:3:\"and\";}','s:24:\"CRM_Contact_Form_Contact\";','s:13:\"addSequence=1\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:11:\"New Contact\";s:3:\"url\";s:28:\"/civicrm/contact/add?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (195,1,'civicrm/contact/add/organization','ct=Organization','New Organization','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:12:\"add contacts\";}i:1;s:3:\"and\";}','s:24:\"CRM_Contact_Form_Contact\";','s:13:\"addSequence=1\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:11:\"New Contact\";s:3:\"url\";s:28:\"/civicrm/contact/add?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (196,1,'civicrm/contact/relatedcontact',NULL,'Edit Related Contact','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:24:\"access Contact Dashboard\";}i:1;s:3:\"and\";}','s:31:\"CRM_Contact_Form_RelatedContact\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,1,1,0,1,1,0,0,'a:0:{}'), + (197,1,'civicrm/contact/merge',NULL,'Merge Contact','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:24:\"merge duplicate contacts\";}i:1;s:3:\"and\";}','s:22:\"CRM_Contact_Form_Merge\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (198,1,'civicrm/contact/email',NULL,'Email a Contact','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:27:\"CRM_Contact_Form_Task_Email\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (199,1,'civicrm/contact/map',NULL,'Map Location(s)','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:25:\"CRM_Contact_Form_Task_Map\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,1,1,0,1,1,0,0,'a:0:{}'), + (200,1,'civicrm/contact/map/event',NULL,'Map Event Location','s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:31:\"CRM_Contact_Form_Task_Map_Event\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Map Location(s)\";s:3:\"url\";s:28:\"/civicrm/contact/map?reset=1\";}}',NULL,NULL,NULL,1,1,1,0,1,1,0,0,'a:0:{}'), + (201,1,'civicrm/contact/view','cid=%%cid%%','Contact Summary','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:29:\"CRM_Contact_Page_View_Summary\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (202,1,'civicrm/contact/view/delete',NULL,'Delete Contact','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:28:\"CRM_Contact_Form_Task_Delete\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (203,1,'civicrm/contact/view/activity','show=1,cid=%%cid%%','Activities','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:21:\"CRM_Activity_Page_Tab\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (204,1,'civicrm/activity/add','action=add','Activities','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Activity_Form_Activity\";','s:14:\"attachUpload=1\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:12:\"New Activity\";s:3:\"url\";s:63:\"/civicrm/activity?reset=1&action=add&context=standalone\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (205,1,'civicrm/activity/email/add','action=add','Activities','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:27:\"CRM_Contact_Form_Task_Email\";','s:14:\"attachUpload=1\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:12:\"New Activity\";s:3:\"url\";s:63:\"/civicrm/activity?reset=1&action=add&context=standalone\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (206,1,'civicrm/activity/pdf/add','action=add','Activities','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:25:\"CRM_Contact_Form_Task_PDF\";','s:14:\"attachUpload=1\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:12:\"New Activity\";s:3:\"url\";s:63:\"/civicrm/activity?reset=1&action=add&context=standalone\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (207,1,'civicrm/contact/view/rel','cid=%%cid%%','Relationships','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:34:\"CRM_Contact_Page_View_Relationship\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (208,1,'civicrm/contact/view/group','cid=%%cid%%','Groups','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:34:\"CRM_Contact_Page_View_GroupContact\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (209,1,'civicrm/contact/view/smartgroup','cid=%%cid%%','Smart Groups','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:39:\"CRM_Contact_Page_View_ContactSmartGroup\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (210,1,'civicrm/contact/view/note','cid=%%cid%%','Notes','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:26:\"CRM_Contact_Page_View_Note\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (211,1,'civicrm/contact/view/tag','cid=%%cid%%','Tags','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:25:\"CRM_Contact_Page_View_Tag\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (212,1,'civicrm/contact/view/cd',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:32:\"CRM_Contact_Page_View_CustomData\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (213,1,'civicrm/contact/view/cd/edit',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:27:\"CRM_Contact_Form_CustomData\";','s:13:\"addSequence=1\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (214,1,'civicrm/contact/view/vcard',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:27:\"CRM_Contact_Page_View_Vcard\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (215,1,'civicrm/contact/view/print',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:27:\"CRM_Contact_Page_View_Print\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (216,1,'civicrm/contact/view/log',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:25:\"CRM_Contact_Page_View_Log\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (217,1,'civicrm/user',NULL,'Contact Dashboard','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:24:\"access Contact Dashboard\";}i:1;s:3:\"and\";}','s:35:\"CRM_Contact_Page_View_UserDashBoard\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,1,1,0,0,1,0,0,'a:0:{}'), + (218,1,'civicrm/dashlet/activity',NULL,'Activity Dashlet','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:25:\"CRM_Dashlet_Page_Activity\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (219,1,'civicrm/dashlet/blog',NULL,'CiviCRM Blog','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:21:\"CRM_Dashlet_Page_Blog\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (220,1,'civicrm/dashlet/getting-started',NULL,'CiviCRM Resources','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:31:\"CRM_Dashlet_Page_GettingStarted\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (221,1,'civicrm/ajax/relation',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:12:\"relationship\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,3,0,'a:0:{}'), + (222,1,'civicrm/ajax/groupTree',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:9:\"groupTree\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (223,1,'civicrm/ajax/custom',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:11:\"customField\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (224,1,'civicrm/ajax/customvalue',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:17:\"deleteCustomValue\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,3,0,'a:0:{}'), + (225,1,'civicrm/ajax/cmsuser',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:13:\"checkUserName\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (226,1,'civicrm/ajax/checkemail',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:15:\"getContactEmail\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (227,1,'civicrm/ajax/checkphone',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:15:\"getContactPhone\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (228,1,'civicrm/ajax/subtype',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:13:\"buildSubTypes\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (229,1,'civicrm/ajax/signature',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:12:\"getSignature\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (230,1,'civicrm/ajax/pdfFormat',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:9:\"pdfFormat\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (231,1,'civicrm/ajax/paperSize',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:9:\"paperSize\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (232,1,'civicrm/ajax/contactref',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:31:\"access contact reference fields\";i:1;s:15:\" access CiviCRM\";}i:1;s:2:\"or\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:16:\"contactReference\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (233,1,'civicrm/dashlet/myCases',NULL,'Case Dashlet','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:24:\"CRM_Dashlet_Page_MyCases\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (234,1,'civicrm/dashlet/allCases',NULL,'All Cases Dashlet','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:31:\"access all cases and activities\";}i:1;s:3:\"and\";}','s:25:\"CRM_Dashlet_Page_AllCases\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (235,1,'civicrm/dashlet/casedashboard',NULL,'Case Dashboard Dashlet','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:30:\"CRM_Dashlet_Page_CaseDashboard\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (236,1,'civicrm/contact/deduperules',NULL,'Find and Merge Duplicate Contacts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:23:\"administer dedupe rules\";i:1;s:24:\"merge duplicate contacts\";}i:1;s:2:\"or\";}','s:28:\"CRM_Contact_Page_DedupeRules\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,105,1,0,0,'a:2:{s:4:\"desc\";s:158:\"Manage the rules used to identify potentially duplicate contact records. Scan for duplicates using a selected rule and merge duplicate contact data as needed.\";s:10:\"adminGroup\";s:6:\"Manage\";}'), + (237,1,'civicrm/contact/dedupefind',NULL,'Find and Merge Duplicate Contacts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:24:\"merge duplicate contacts\";}i:1;s:3:\"and\";}','s:27:\"CRM_Contact_Page_DedupeFind\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (238,1,'civicrm/ajax/dedupefind',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:24:\"merge duplicate contacts\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:10:\"getDedupes\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (239,1,'civicrm/contact/dedupemerge',NULL,'Batch Merge Duplicate Contacts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:24:\"merge duplicate contacts\";}i:1;s:3:\"and\";}','s:28:\"CRM_Contact_Page_DedupeMerge\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (240,1,'civicrm/dedupe/exception',NULL,'Dedupe Exceptions','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:32:\"CRM_Contact_Page_DedupeException\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,110,1,0,0,'a:1:{s:10:\"adminGroup\";s:6:\"Manage\";}'), + (241,1,'civicrm/ajax/dedupeRules',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:16:\"buildDedupeRules\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (242,1,'civicrm/contact/view/useradd','cid=%%cid%%','Add User','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:29:\"CRM_Contact_Page_View_Useradd\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (243,1,'civicrm/ajax/markSelection',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:22:\"selectUnselectContacts\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (244,1,'civicrm/ajax/toggleDedupeSelect',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:24:\"merge duplicate contacts\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:18:\"toggleDedupeSelect\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (245,1,'civicrm/ajax/flipDupePairs',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:24:\"merge duplicate contacts\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:13:\"flipDupePairs\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (246,1,'civicrm/activity/sms/add','action=add','Activities','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:8:\"send SMS\";}i:1;s:3:\"and\";}','s:25:\"CRM_Contact_Form_Task_SMS\";','s:14:\"attachUpload=1\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:12:\"New Activity\";s:3:\"url\";s:63:\"/civicrm/activity?reset=1&action=add&context=standalone\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (247,1,'civicrm/ajax/contactrelationships',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"view my contact\";}i:1;s:2:\"or\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:23:\"getContactRelationships\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (248,1,'civicrm/ajax/jqState',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:27:\"CRM_Core_Page_AJAX_Location\";i:1;s:7:\"jqState\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,1,1,0,1,1,0,0,'a:0:{}'), + (249,1,'civicrm/ajax/jqCounty',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:27:\"CRM_Core_Page_AJAX_Location\";i:1;s:8:\"jqCounty\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,1,1,0,1,1,0,0,'a:0:{}'), + (250,1,'civicrm/group',NULL,'Manage Groups','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:20:\"CRM_Group_Page_Group\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,30,1,1,0,'a:0:{}'), + (251,1,'civicrm/group/search',NULL,'Group Members','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:29:\"CRM_Contact_Controller_Search\";','s:8:\"mode=256\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:13:\"Manage Groups\";s:3:\"url\";s:22:\"/civicrm/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:1:{s:7:\"comment\";s:164:\"Note: group search already respect ACL, so a strict permission at url level is not required. A simple/basic permission like \'access CiviCRM\' could be used. CRM-5417\";}'), + (252,1,'civicrm/group/add',NULL,'New Group','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:11:\"edit groups\";}i:1;s:3:\"and\";}','s:20:\"CRM_Group_Controller\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:13:\"Manage Groups\";s:3:\"url\";s:22:\"/civicrm/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (253,1,'civicrm/ajax/grouplist',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:19:\"CRM_Group_Page_AJAX\";i:1;s:12:\"getGroupList\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (254,1,'civicrm/tag',NULL,'Tags','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:11:\"manage tags\";}i:1;s:2:\"or\";}','s:16:\"CRM_Tag_Page_Tag\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,25,1,0,0,'a:2:{s:4:\"desc\";s:158:\"Tags are useful for segmenting the contacts in your database into categories (e.g. Staff Member, Donor, Volunteer, etc.). Create and edit available tags here.\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), + (255,1,'civicrm/tag/edit','action=add','New Tag','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:11:\"manage tags\";}i:1;s:2:\"or\";}','s:17:\"CRM_Tag_Form_Edit\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:4:\"Tags\";s:3:\"url\";s:20:\"/civicrm/tag?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (256,1,'civicrm/tag/merge',NULL,'Merge Tags','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:11:\"manage tags\";}i:1;s:2:\"or\";}','s:18:\"CRM_Tag_Form_Merge\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:4:\"Tags\";s:3:\"url\";s:20:\"/civicrm/tag?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (257,1,'civicrm/ajax/tagTree',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:11:\"manage tags\";}i:1;s:2:\"or\";}','a:2:{i:0;s:19:\"CRM_Admin_Page_AJAX\";i:1;s:10:\"getTagTree\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (258,1,'civicrm/custom',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:32:\"CRM_Custom_Form_CustomDataByType\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), (259,1,'civicrm/event/manage/pcp',NULL,'Personal Campaign Pages','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:18:\"CRM_PCP_Form_Event\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Manage Events\";s:3:\"url\";s:29:\"/civicrm/event/manage?reset=1\";}}',NULL,NULL,1,1,0,1,1,540,1,1,0,'a:0:{}'), (260,1,'civicrm/event/pcp',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:16:\"CRM_PCP_Form_PCP\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,1,1,1,0,1,1,0,0,'a:0:{}'), (261,1,'civicrm/event/campaign',NULL,'Setup a Personal Campaign Page - Account Information','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:25:\"make online contributions\";}i:1;s:3:\"and\";}','s:22:\"CRM_PCP_Controller_PCP\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,1,1,1,0,0,1,0,0,'a:0:{}'), @@ -5375,9 +5381,8 @@ INSERT INTO `civicrm_menu` (`id`, `domain_id`, `path`, `path_arguments`, `title` (453,1,'civicrm/event/view_cart',NULL,'View Cart','s:1:\"1\";','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:28:\"CRM_Event_Cart_Page_ViewCart\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,1,1,1,0,1,1,0,0,'a:0:{}'), (454,1,'civicrm/contact/search/custom',NULL,'Find Contacts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:42:\"CRM_Legacycustomsearches_Controller_Search\";','s:10:\"mode=16384\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:13:\"Find Contacts\";s:3:\"url\";s:31:\"/civicrm/contact/search?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,10,1,1,0,'a:0:{}'), (455,1,'civicrm/contact/search/custom/list',NULL,'Custom Searches','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:29:\"CRM_Contact_Page_CustomSearch\";','s:10:\"mode=16384\";','a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:13:\"Find Contacts\";s:3:\"url\";s:31:\"/civicrm/contact/search?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Find Contacts\";s:3:\"url\";s:38:\"/civicrm/contact/search/custom?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,16,1,1,0,'a:0:{}'), - (456,1,'civicrm/admin/setting/flexmailer',NULL,'Flexmailer Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Form_Generic\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:2:{s:10:\"adminGroup\";s:8:\"CiviMail\";s:4:\"icon\";s:23:\"admin/small/Profile.png\";}'), - (457,1,'civicrm/admin/setting/recaptcha',NULL,'reCAPTCHA Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Form_Generic\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:2:{s:4:\"desc\";s:43:\"Configure anti-abuse/bot-prevention service\";s:10:\"adminGroup\";s:15:\"System Settings\";}'), - (458,1,'admin',NULL,NULL,NULL,NULL,NULL,NULL,'a:15:{s:14:\"CiviContribute\";a:2:{s:12:\"component_id\";N;s:6:\"fields\";a:9:{s:32:\"{weight}.Personal Campaign Pages\";a:6:{s:5:\"title\";s:23:\"Personal Campaign Pages\";s:4:\"desc\";s:49:\"View and manage existing personal campaign pages.\";s:2:\"id\";s:21:\"PersonalCampaignPages\";s:3:\"url\";s:49:\"/civicrm/admin/pcp?context=contribute&reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:34:\"{weight}.Manage Contribution Pages\";a:6:{s:5:\"title\";s:25:\"Manage Contribution Pages\";s:4:\"desc\";s:242:\"CiviContribute allows you to create and maintain any number of Online Contribution Pages. You can create different pages for different programs or campaigns - and customize text, amounts, types of information collected from contributors, etc.\";s:2:\"id\";s:23:\"ManageContributionPages\";s:3:\"url\";s:33:\"/civicrm/admin/contribute?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:24:\"{weight}.Manage Premiums\";a:6:{s:5:\"title\";s:15:\"Manage Premiums\";s:4:\"desc\";s:175:\"CiviContribute allows you to configure any number of Premiums which can be offered to contributors as incentives / thank-you gifts. Define the premiums you want to offer here.\";s:2:\"id\";s:14:\"ManagePremiums\";s:3:\"url\";s:48:\"/civicrm/admin/contribute/managePremiums?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:24:\"{weight}.Financial Types\";a:6:{s:5:\"title\";s:15:\"Financial Types\";s:4:\"desc\";s:64:\"Formerly civicrm_contribution_type merged into this table in 4.1\";s:2:\"id\";s:14:\"FinancialTypes\";s:3:\"url\";s:46:\"/civicrm/admin/financial/financialType?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:27:\"{weight}.Financial Accounts\";a:6:{s:5:\"title\";s:18:\"Financial Accounts\";s:4:\"desc\";s:128:\"Financial types are used to categorize contributions for reporting and accounting purposes. These are also referred to as Funds.\";s:2:\"id\";s:17:\"FinancialAccounts\";s:3:\"url\";s:49:\"/civicrm/admin/financial/financialAccount?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:24:\"{weight}.Payment Methods\";a:6:{s:5:\"title\";s:15:\"Payment Methods\";s:4:\"desc\";s:224:\"You may choose to record the payment instrument used for each contribution. Common payment methods are installed by default (e.g. Check, Cash, Credit Card...). If your site requires additional payment methods, add them here.\";s:2:\"id\";s:14:\"PaymentMethods\";s:3:\"url\";s:49:\"/civicrm/admin/options/payment_instrument?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:30:\"{weight}.Accepted Credit Cards\";a:6:{s:5:\"title\";s:21:\"Accepted Credit Cards\";s:4:\"desc\";s:94:\"Credit card options that will be offered to contributors using your Online Contribution pages.\";s:2:\"id\";s:19:\"AcceptedCreditCards\";s:3:\"url\";s:48:\"/civicrm/admin/options/accept_creditcard?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:26:\"{weight}.Soft Credit Types\";a:6:{s:5:\"title\";s:17:\"Soft Credit Types\";s:4:\"desc\";s:86:\"Soft Credit Types that will be offered to contributors during soft credit contribution\";s:2:\"id\";s:15:\"SoftCreditTypes\";s:3:\"url\";s:47:\"/civicrm/admin/options/soft_credit_type?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:42:\"{weight}.CiviContribute Component Settings\";a:6:{s:5:\"title\";s:33:\"CiviContribute Component Settings\";s:4:\"desc\";s:42:\"Configure global CiviContribute behaviors.\";s:2:\"id\";s:31:\"CiviContributeComponentSettings\";s:3:\"url\";s:53:\"/civicrm/admin/setting/preferences/contribute?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}}}s:26:\"Customize Data and Screens\";a:2:{s:12:\"component_id\";N;s:6:\"fields\";a:19:{s:13:\"{weight}.Tags\";a:6:{s:5:\"title\";s:4:\"Tags\";s:4:\"desc\";s:158:\"Tags are useful for segmenting the contacts in your database into categories (e.g. Staff Member, Donor, Volunteer, etc.). Create and edit available tags here.\";s:2:\"id\";s:4:\"Tags\";s:3:\"url\";s:20:\"/civicrm/tag?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:20:\"{weight}.Custom Data\";a:6:{s:5:\"title\";s:11:\"Custom Data\";s:4:\"desc\";s:109:\"Configure custom fields to collect and store custom data which is not included in the standard CiviCRM forms.\";s:2:\"id\";s:10:\"CustomData\";s:3:\"url\";s:35:\"/civicrm/admin/custom/group?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:17:\"{weight}.Profiles\";a:6:{s:5:\"title\";s:8:\"Profiles\";s:4:\"desc\";s:151:\"Profiles allow you to aggregate groups of fields and include them in your site as input forms, contact display pages, and search and listings features.\";s:2:\"id\";s:8:\"Profiles\";s:3:\"url\";s:31:\"/civicrm/admin/uf/group?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:23:\"{weight}.Activity Types\";a:6:{s:5:\"title\";s:14:\"Activity Types\";s:4:\"desc\";s:155:\"CiviCRM has several built-in activity types (meetings, phone calls, emails sent). Track other types of interactions by creating custom activity types here.\";s:2:\"id\";s:13:\"ActivityTypes\";s:3:\"url\";s:44:\"/civicrm/admin/options/activity_type?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:27:\"{weight}.Relationship Types\";a:6:{s:5:\"title\";s:18:\"Relationship Types\";s:4:\"desc\";s:148:\"Contacts can be linked to each other through Relationships (e.g. Spouse, Employer, etc.). Define the types of relationships you want to record here.\";s:2:\"id\";s:17:\"RelationshipTypes\";s:3:\"url\";s:30:\"/civicrm/admin/reltype?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:22:\"{weight}.Contact Types\";a:6:{s:5:\"title\";s:13:\"Contact Types\";s:4:\"desc\";N;s:2:\"id\";s:12:\"ContactTypes\";s:3:\"url\";s:38:\"/civicrm/admin/options/subtype?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:23:\"{weight}.Gender Options\";a:6:{s:5:\"title\";s:14:\"Gender Options\";s:4:\"desc\";s:79:\"Options for assigning gender to individual contacts (e.g. Male, Female, Other).\";s:2:\"id\";s:13:\"GenderOptions\";s:3:\"url\";s:37:\"/civicrm/admin/options/gender?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:40:\"{weight}.Individual Prefixes (Ms, Mr...)\";a:6:{s:5:\"title\";s:31:\"Individual Prefixes (Ms, Mr...)\";s:4:\"desc\";s:66:\"Options for individual contact prefixes (e.g. Ms., Mr., Dr. etc.).\";s:2:\"id\";s:27:\"IndividualPrefixes_Ms_Mr...\";s:3:\"url\";s:48:\"/civicrm/admin/options/individual_prefix?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:40:\"{weight}.Individual Suffixes (Jr, Sr...)\";a:6:{s:5:\"title\";s:31:\"Individual Suffixes (Jr, Sr...)\";s:4:\"desc\";s:61:\"Options for individual contact suffixes (e.g. Jr., Sr. etc.).\";s:2:\"id\";s:27:\"IndividualSuffixes_Jr_Sr...\";s:3:\"url\";s:48:\"/civicrm/admin/options/individual_suffix?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:39:\"{weight}.Location Types (Home, Work...)\";a:6:{s:5:\"title\";s:30:\"Location Types (Home, Work...)\";s:4:\"desc\";s:94:\"Options for categorizing contact addresses and phone numbers (e.g. Home, Work, Billing, etc.).\";s:2:\"id\";s:26:\"LocationTypes_Home_Work...\";s:3:\"url\";s:35:\"/civicrm/admin/locationType?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:22:\"{weight}.Website Types\";a:6:{s:5:\"title\";s:13:\"Website Types\";s:4:\"desc\";s:48:\"Options for assigning website types to contacts.\";s:2:\"id\";s:12:\"WebsiteTypes\";s:3:\"url\";s:43:\"/civicrm/admin/options/website_type?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:35:\"{weight}.Instant Messenger Services\";a:6:{s:5:\"title\";s:26:\"Instant Messenger Services\";s:4:\"desc\";s:79:\"List of IM services which can be used when recording screen-names for contacts.\";s:2:\"id\";s:24:\"InstantMessengerServices\";s:3:\"url\";s:56:\"/civicrm/admin/options/instant_messenger_service?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:31:\"{weight}.Mobile Phone Providers\";a:6:{s:5:\"title\";s:22:\"Mobile Phone Providers\";s:4:\"desc\";s:90:\"List of mobile phone providers which can be assigned when recording contact phone numbers.\";s:2:\"id\";s:20:\"MobilePhoneProviders\";s:3:\"url\";s:46:\"/civicrm/admin/options/mobile_provider?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:19:\"{weight}.Phone Type\";a:6:{s:5:\"title\";s:10:\"Phone Type\";s:4:\"desc\";s:80:\"Options for assigning phone type to contacts (e.g Phone,\n Mobile, Fax, Pager)\";s:2:\"id\";s:9:\"PhoneType\";s:3:\"url\";s:41:\"/civicrm/admin/options/phone_type?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:28:\"{weight}.Display Preferences\";a:6:{s:5:\"title\";s:19:\"Display Preferences\";s:4:\"desc\";N;s:2:\"id\";s:18:\"DisplayPreferences\";s:3:\"url\";s:50:\"/civicrm/admin/setting/preferences/display?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:27:\"{weight}.Search Preferences\";a:6:{s:5:\"title\";s:18:\"Search Preferences\";s:4:\"desc\";N;s:2:\"id\";s:17:\"SearchPreferences\";s:3:\"url\";s:37:\"/civicrm/admin/setting/search?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:24:\"{weight}.Navigation Menu\";a:6:{s:5:\"title\";s:15:\"Navigation Menu\";s:4:\"desc\";s:79:\"Add or remove menu items, and modify the order of items on the navigation menu.\";s:2:\"id\";s:14:\"NavigationMenu\";s:3:\"url\";s:27:\"/civicrm/admin/menu?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:26:\"{weight}.Word Replacements\";a:6:{s:5:\"title\";s:17:\"Word Replacements\";s:4:\"desc\";s:18:\"Word Replacements.\";s:2:\"id\";s:16:\"WordReplacements\";s:3:\"url\";s:47:\"/civicrm/admin/options/wordreplacements?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:31:\"{weight}.Manage Custom Searches\";a:6:{s:5:\"title\";s:22:\"Manage Custom Searches\";s:4:\"desc\";s:225:\"Developers and accidental techies with a bit of PHP and SQL knowledge can create new search forms to handle specific search and reporting needs which aren\'t covered by the built-in Advanced Search and Search Builder features.\";s:2:\"id\";s:20:\"ManageCustomSearches\";s:3:\"url\";s:44:\"/civicrm/admin/options/custom_search?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}}}s:6:\"Manage\";a:2:{s:12:\"component_id\";N;s:6:\"fields\";a:3:{s:42:\"{weight}.Find and Merge Duplicate Contacts\";a:6:{s:5:\"title\";s:33:\"Find and Merge Duplicate Contacts\";s:4:\"desc\";s:158:\"Manage the rules used to identify potentially duplicate contact records. Scan for duplicates using a selected rule and merge duplicate contact data as needed.\";s:2:\"id\";s:29:\"FindandMergeDuplicateContacts\";s:3:\"url\";s:36:\"/civicrm/contact/deduperules?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:26:\"{weight}.Dedupe Exceptions\";a:6:{s:5:\"title\";s:17:\"Dedupe Exceptions\";s:4:\"desc\";N;s:2:\"id\";s:16:\"DedupeExceptions\";s:3:\"url\";s:33:\"/civicrm/dedupe/exception?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:27:\"{weight}.Scheduled Jobs Log\";a:6:{s:5:\"title\";s:18:\"Scheduled Jobs Log\";s:4:\"desc\";s:46:\"Browsing the log of periodially running tasks.\";s:2:\"id\";s:16:\"ScheduledJobsLog\";s:3:\"url\";s:29:\"/civicrm/admin/joblog?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}}}s:14:\"Communications\";a:2:{s:12:\"component_id\";N;s:6:\"fields\";a:11:{s:46:\"{weight}.Organization Address and Contact Info\";a:6:{s:5:\"title\";s:37:\"Organization Address and Contact Info\";s:4:\"desc\";s:150:\"Configure primary contact name, email, return-path and address information. This information is used by CiviMail to identify the sending organization.\";s:2:\"id\";s:33:\"OrganizationAddressandContactInfo\";s:3:\"url\";s:47:\"/civicrm/admin/domain?action=update&reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:29:\"{weight}.From Email Addresses\";a:6:{s:5:\"title\";s:20:\"From Email Addresses\";s:4:\"desc\";s:74:\"List of Email Addresses which can be used when sending emails to contacts.\";s:2:\"id\";s:18:\"FromEmailAddresses\";s:3:\"url\";s:49:\"/civicrm/admin/options/from_email_address?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:26:\"{weight}.Message Templates\";a:6:{s:5:\"title\";s:17:\"Message Templates\";s:4:\"desc\";s:130:\"Message templates allow you to save and re-use messages with layouts which you can use when sending email to one or more contacts.\";s:2:\"id\";s:16:\"MessageTemplates\";s:3:\"url\";s:39:\"/civicrm/admin/messageTemplates?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:27:\"{weight}.Schedule Reminders\";a:6:{s:5:\"title\";s:18:\"Schedule Reminders\";s:4:\"desc\";s:19:\"Schedule Reminders.\";s:2:\"id\";s:17:\"ScheduleReminders\";s:3:\"url\";s:40:\"/civicrm/admin/scheduleReminders?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:40:\"{weight}.Preferred Communication Methods\";a:6:{s:5:\"title\";s:31:\"Preferred Communication Methods\";s:4:\"desc\";s:117:\"One or more preferred methods of communication can be assigned to each contact. Customize the available options here.\";s:2:\"id\";s:29:\"PreferredCommunicationMethods\";s:3:\"url\";s:61:\"/civicrm/admin/options/preferred_communication_method?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:22:\"{weight}.Label Formats\";a:6:{s:5:\"title\";s:13:\"Label Formats\";s:4:\"desc\";s:67:\"Configure Label Formats that are used when creating mailing labels.\";s:2:\"id\";s:12:\"LabelFormats\";s:3:\"url\";s:35:\"/civicrm/admin/labelFormats?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:33:\"{weight}.Print Page (PDF) Formats\";a:6:{s:5:\"title\";s:24:\"Print Page (PDF) Formats\";s:4:\"desc\";s:95:\"Configure PDF Page Formats that can be assigned to Message Templates when creating PDF letters.\";s:2:\"id\";s:20:\"PrintPage_PDFFormats\";s:3:\"url\";s:33:\"/civicrm/admin/pdfFormats?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:36:\"{weight}.Communication Style Options\";a:6:{s:5:\"title\";s:27:\"Communication Style Options\";s:4:\"desc\";s:42:\"Options for Communication Style selection.\";s:2:\"id\";s:25:\"CommunicationStyleOptions\";s:3:\"url\";s:50:\"/civicrm/admin/options/communication_style?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:31:\"{weight}.Email Greeting Formats\";a:6:{s:5:\"title\";s:22:\"Email Greeting Formats\";s:4:\"desc\";s:75:\"Options for assigning email greetings to individual and household contacts.\";s:2:\"id\";s:20:\"EmailGreetingFormats\";s:3:\"url\";s:45:\"/civicrm/admin/options/email_greeting?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:32:\"{weight}.Postal Greeting Formats\";a:6:{s:5:\"title\";s:23:\"Postal Greeting Formats\";s:4:\"desc\";s:76:\"Options for assigning postal greetings to individual and household contacts.\";s:2:\"id\";s:21:\"PostalGreetingFormats\";s:3:\"url\";s:46:\"/civicrm/admin/options/postal_greeting?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:26:\"{weight}.Addressee Formats\";a:6:{s:5:\"title\";s:17:\"Addressee Formats\";s:4:\"desc\";s:83:\"Options for assigning addressee to individual, household and organization contacts.\";s:2:\"id\";s:16:\"AddresseeFormats\";s:3:\"url\";s:40:\"/civicrm/admin/options/addressee?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}}}s:12:\"Localization\";a:2:{s:12:\"component_id\";N;s:6:\"fields\";a:4:{s:39:\"{weight}.Languages, Currency, Locations\";a:6:{s:5:\"title\";s:30:\"Languages, Currency, Locations\";s:4:\"desc\";N;s:2:\"id\";s:28:\"Languages_Currency_Locations\";s:3:\"url\";s:43:\"/civicrm/admin/setting/localization?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:25:\"{weight}.Address Settings\";a:6:{s:5:\"title\";s:16:\"Address Settings\";s:4:\"desc\";N;s:2:\"id\";s:15:\"AddressSettings\";s:3:\"url\";s:50:\"/civicrm/admin/setting/preferences/address?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:21:\"{weight}.Date Formats\";a:6:{s:5:\"title\";s:12:\"Date Formats\";s:4:\"desc\";N;s:2:\"id\";s:11:\"DateFormats\";s:3:\"url\";s:35:\"/civicrm/admin/setting/date?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:28:\"{weight}.Preferred Languages\";a:6:{s:5:\"title\";s:19:\"Preferred Languages\";s:4:\"desc\";s:30:\"Options for contact languages.\";s:2:\"id\";s:18:\"PreferredLanguages\";s:3:\"url\";s:40:\"/civicrm/admin/options/languages?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}}}s:21:\"Users and Permissions\";a:2:{s:12:\"component_id\";N;s:6:\"fields\";a:2:{s:23:\"{weight}.Access Control\";a:6:{s:5:\"title\";s:14:\"Access Control\";s:4:\"desc\";s:73:\"Grant or deny access to actions (view, edit...), features and components.\";s:2:\"id\";s:13:\"AccessControl\";s:3:\"url\";s:29:\"/civicrm/admin/access?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:38:\"{weight}.Synchronize Users to Contacts\";a:6:{s:5:\"title\";s:29:\"Synchronize Users to Contacts\";s:4:\"desc\";s:71:\"Automatically create a CiviCRM contact record for each CMS user record.\";s:2:\"id\";s:26:\"SynchronizeUserstoContacts\";s:3:\"url\";s:32:\"/civicrm/admin/synchUser?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}}}s:15:\"System Settings\";a:2:{s:12:\"component_id\";N;s:6:\"fields\";a:19:{s:32:\"{weight}.Configuration Checklist\";a:6:{s:5:\"title\";s:23:\"Configuration Checklist\";s:4:\"desc\";s:55:\"List of configuration tasks with links to each setting.\";s:2:\"id\";s:22:\"ConfigurationChecklist\";s:3:\"url\";s:33:\"/civicrm/admin/configtask?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:34:\"{weight}.Enable CiviCRM Components\";a:6:{s:5:\"title\";s:25:\"Enable CiviCRM Components\";s:4:\"desc\";s:269:\"Enable or disable components (e.g. CiviEvent, CiviMember, etc.) for your site based on the features you need. We recommend disabling any components not being used in order to simplify the user interface. You can easily re-enable components at any time from this screen.\";s:2:\"id\";s:23:\"EnableCiviCRMComponents\";s:3:\"url\";s:40:\"/civicrm/admin/setting/component?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:26:\"{weight}.Manage Extensions\";a:6:{s:5:\"title\";s:17:\"Manage Extensions\";s:4:\"desc\";s:0:\"\";s:2:\"id\";s:16:\"ManageExtensions\";s:3:\"url\";s:33:\"/civicrm/admin/extensions?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:32:\"{weight}.Outbound Email Settings\";a:6:{s:5:\"title\";s:23:\"Outbound Email Settings\";s:4:\"desc\";N;s:2:\"id\";s:21:\"OutboundEmailSettings\";s:3:\"url\";s:35:\"/civicrm/admin/setting/smtp?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:37:\"{weight}.Settings - Payment Processor\";a:6:{s:5:\"title\";s:28:\"Settings - Payment Processor\";s:4:\"desc\";s:48:\"Payment Processor setup for CiviCRM transactions\";s:2:\"id\";s:25:\"Settings-PaymentProcessor\";s:3:\"url\";s:39:\"/civicrm/admin/paymentProcessor?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:30:\"{weight}.Mapping and Geocoding\";a:6:{s:5:\"title\";s:21:\"Mapping and Geocoding\";s:4:\"desc\";N;s:2:\"id\";s:19:\"MappingandGeocoding\";s:3:\"url\";s:38:\"/civicrm/admin/setting/mapping?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:53:\"{weight}.Misc (Undelete, PDFs, Limits, Logging, etc.)\";a:6:{s:5:\"title\";s:44:\"Misc (Undelete, PDFs, Limits, Logging, etc.)\";s:4:\"desc\";s:63:\"Enable undelete/move to trash feature, detailed change logging.\";s:2:\"id\";s:38:\"Misc_Undelete_PDFs_Limits_Logging_etc.\";s:3:\"url\";s:35:\"/civicrm/admin/setting/misc?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:20:\"{weight}.Directories\";a:6:{s:5:\"title\";s:11:\"Directories\";s:4:\"desc\";N;s:2:\"id\";s:11:\"Directories\";s:3:\"url\";s:35:\"/civicrm/admin/setting/path?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:22:\"{weight}.Resource URLs\";a:6:{s:5:\"title\";s:13:\"Resource URLs\";s:4:\"desc\";N;s:2:\"id\";s:12:\"ResourceURLs\";s:3:\"url\";s:34:\"/civicrm/admin/setting/url?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:40:\"{weight}.Cleanup Caches and Update Paths\";a:6:{s:5:\"title\";s:31:\"Cleanup Caches and Update Paths\";s:4:\"desc\";s:157:\"Reset the Base Directory Path and Base URL settings - generally when a CiviCRM site is moved to another location in the file system and/or to another domain.\";s:2:\"id\";s:27:\"CleanupCachesandUpdatePaths\";s:3:\"url\";s:50:\"/civicrm/admin/setting/updateConfigBackend?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:33:\"{weight}.CMS Database Integration\";a:6:{s:5:\"title\";s:24:\"CMS Database Integration\";s:4:\"desc\";N;s:2:\"id\";s:22:\"CMSDatabaseIntegration\";s:3:\"url\";s:33:\"/civicrm/admin/setting/uf?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:36:\"{weight}.Safe File Extension Options\";a:6:{s:5:\"title\";s:27:\"Safe File Extension Options\";s:4:\"desc\";s:44:\"File Extensions that can be considered safe.\";s:2:\"id\";s:24:\"SafeFileExtensionOptions\";s:3:\"url\";s:50:\"/civicrm/admin/options/safe_file_extension?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:22:\"{weight}.Option Groups\";a:6:{s:5:\"title\";s:13:\"Option Groups\";s:4:\"desc\";s:35:\"Access all meta-data option groups.\";s:2:\"id\";s:12:\"OptionGroups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:31:\"{weight}.Import/Export Mappings\";a:6:{s:5:\"title\";s:22:\"Import/Export Mappings\";s:4:\"desc\";s:141:\"Import and Export mappings allow you to easily run the same job multiple times. This option allows you to rename or delete existing mappings.\";s:2:\"id\";s:21:\"Import_ExportMappings\";s:3:\"url\";s:30:\"/civicrm/admin/mapping?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:18:\"{weight}.Debugging\";a:6:{s:5:\"title\";s:9:\"Debugging\";s:4:\"desc\";N;s:2:\"id\";s:9:\"Debugging\";s:3:\"url\";s:36:\"/civicrm/admin/setting/debug?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:28:\"{weight}.Multi Site Settings\";a:6:{s:5:\"title\";s:19:\"Multi Site Settings\";s:4:\"desc\";N;s:2:\"id\";s:17:\"MultiSiteSettings\";s:3:\"url\";s:52:\"/civicrm/admin/setting/preferences/multisite?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:23:\"{weight}.Scheduled Jobs\";a:6:{s:5:\"title\";s:14:\"Scheduled Jobs\";s:4:\"desc\";s:35:\"Managing periodially running tasks.\";s:2:\"id\";s:13:\"ScheduledJobs\";s:3:\"url\";s:26:\"/civicrm/admin/job?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:22:\"{weight}.Sms Providers\";a:6:{s:5:\"title\";s:13:\"Sms Providers\";s:4:\"desc\";s:27:\"To configure a sms provider\";s:2:\"id\";s:12:\"SmsProviders\";s:3:\"url\";s:35:\"/civicrm/admin/sms/provider?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:27:\"{weight}.reCAPTCHA Settings\";a:6:{s:5:\"title\";s:18:\"reCAPTCHA Settings\";s:4:\"desc\";s:43:\"Configure anti-abuse/bot-prevention service\";s:2:\"id\";s:17:\"reCAPTCHASettings\";s:3:\"url\";s:40:\"/civicrm/admin/setting/recaptcha?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}}}s:12:\"CiviCampaign\";a:2:{s:12:\"component_id\";N;s:6:\"fields\";a:5:{s:40:\"{weight}.CiviCampaign Component Settings\";a:6:{s:5:\"title\";s:31:\"CiviCampaign Component Settings\";s:4:\"desc\";s:40:\"Configure global CiviCampaign behaviors.\";s:2:\"id\";s:29:\"CiviCampaignComponentSettings\";s:3:\"url\";s:51:\"/civicrm/admin/setting/preferences/campaign?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:21:\"{weight}.Survey Types\";a:6:{s:5:\"title\";s:12:\"Survey Types\";s:4:\"desc\";N;s:2:\"id\";s:11:\"SurveyTypes\";s:3:\"url\";s:42:\"/civicrm/admin/campaign/surveyType?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:23:\"{weight}.Campaign Types\";a:6:{s:5:\"title\";s:14:\"Campaign Types\";s:4:\"desc\";s:47:\"categorize your campaigns using campaign types.\";s:2:\"id\";s:13:\"CampaignTypes\";s:3:\"url\";s:44:\"/civicrm/admin/options/campaign_type?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:24:\"{weight}.Campaign Status\";a:6:{s:5:\"title\";s:15:\"Campaign Status\";s:4:\"desc\";s:34:\"Define statuses for campaign here.\";s:2:\"id\";s:14:\"CampaignStatus\";s:3:\"url\";s:46:\"/civicrm/admin/options/campaign_status?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:25:\"{weight}.Engagement Index\";a:6:{s:5:\"title\";s:16:\"Engagement Index\";s:4:\"desc\";s:18:\"Engagement levels.\";s:2:\"id\";s:15:\"EngagementIndex\";s:3:\"url\";s:47:\"/civicrm/admin/options/engagement_index?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}}}s:9:\"CiviEvent\";a:2:{s:12:\"component_id\";N;s:6:\"fields\";a:9:{s:37:\"{weight}.CiviEvent Component Settings\";a:6:{s:5:\"title\";s:28:\"CiviEvent Component Settings\";s:4:\"desc\";s:37:\"Configure global CiviEvent behaviors.\";s:2:\"id\";s:26:\"CiviEventComponentSettings\";s:3:\"url\";s:48:\"/civicrm/admin/setting/preferences/event?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:33:\"{weight}.Event Name Badge Layouts\";a:6:{s:5:\"title\";s:24:\"Event Name Badge Layouts\";s:4:\"desc\";s:107:\"Configure name badge layouts for event participants, including logos and what data to include on the badge.\";s:2:\"id\";s:21:\"EventNameBadgeLayouts\";s:3:\"url\";s:52:\"/civicrm/admin/badgelayout?action=browse&reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:22:\"{weight}.Manage Events\";a:6:{s:5:\"title\";s:13:\"Manage Events\";s:4:\"desc\";s:136:\"Create and edit event configuration including times, locations, online registration forms, and fees. Links for iCal and RSS syndication.\";s:2:\"id\";s:12:\"ManageEvents\";s:3:\"url\";s:28:\"/civicrm/admin/event?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:24:\"{weight}.Event Templates\";a:6:{s:5:\"title\";s:15:\"Event Templates\";s:4:\"desc\";s:115:\"Administrators can create Event Templates - which are basically master event records pre-filled with default values\";s:2:\"id\";s:14:\"EventTemplates\";s:3:\"url\";s:36:\"/civicrm/admin/eventTemplate?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:20:\"{weight}.Event Types\";a:6:{s:5:\"title\";s:11:\"Event Types\";s:4:\"desc\";s:143:\"Use Event Types to categorize your events. Event feeds can be filtered by Event Type and participant searches can use Event Type as a criteria.\";s:2:\"id\";s:10:\"EventTypes\";s:3:\"url\";s:41:\"/civicrm/admin/options/event_type?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:27:\"{weight}.Participant Status\";a:6:{s:5:\"title\";s:18:\"Participant Status\";s:4:\"desc\";s:154:\"Define statuses for event participants here (e.g. Registered, Attended, Cancelled...). You can then assign statuses and search for participants by status.\";s:2:\"id\";s:17:\"ParticipantStatus\";s:3:\"url\";s:41:\"/civicrm/admin/participant_status?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:25:\"{weight}.Participant Role\";a:6:{s:5:\"title\";s:16:\"Participant Role\";s:4:\"desc\";s:138:\"Define participant roles for events here (e.g. Attendee, Host, Speaker...). You can then assign roles and search for participants by role.\";s:2:\"id\";s:15:\"ParticipantRole\";s:3:\"url\";s:47:\"/civicrm/admin/options/participant_role?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:38:\"{weight}.Participant Listing Templates\";a:6:{s:5:\"title\";s:29:\"Participant Listing Templates\";s:4:\"desc\";s:48:\"Template to control participant listing display.\";s:2:\"id\";s:27:\"ParticipantListingTemplates\";s:3:\"url\";s:50:\"/civicrm/admin/options/participant_listing?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:31:\"{weight}.Conference Slot Labels\";a:6:{s:5:\"title\";s:22:\"Conference Slot Labels\";s:4:\"desc\";s:35:\"Define conference slots and labels.\";s:2:\"id\";s:20:\"ConferenceSlotLabels\";s:3:\"url\";s:46:\"/civicrm/admin/options/conference_slot?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}}}s:8:\"CiviMail\";a:2:{s:12:\"component_id\";N;s:6:\"fields\";a:6:{s:36:\"{weight}.CiviMail Component Settings\";a:6:{s:5:\"title\";s:27:\"CiviMail Component Settings\";s:4:\"desc\";s:36:\"Configure global CiviMail behaviors.\";s:2:\"id\";s:25:\"CiviMailComponentSettings\";s:3:\"url\";s:50:\"/civicrm/admin/setting/preferences/mailing?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:24:\"{weight}.Mailer Settings\";a:6:{s:5:\"title\";s:15:\"Mailer Settings\";s:4:\"desc\";s:61:\"Configure spool period, throttling and other mailer settings.\";s:2:\"id\";s:14:\"MailerSettings\";s:3:\"url\";s:27:\"/civicrm/admin/mail?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:49:\"{weight}.Headers, Footers, and Automated Messages\";a:6:{s:5:\"title\";s:40:\"Headers, Footers, and Automated Messages\";s:4:\"desc\";s:143:\"Configure the header and footer used for mailings. Customize the content of automated Subscribe, Unsubscribe, Resubscribe and Opt-out messages.\";s:2:\"id\";s:36:\"Headers_Footers_andAutomatedMessages\";s:3:\"url\";s:32:\"/civicrm/admin/component?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:29:\"{weight}.From Email Addresses\";a:6:{s:5:\"title\";s:20:\"From Email Addresses\";s:4:\"desc\";s:74:\"List of Email Addresses which can be used when sending emails to contacts.\";s:2:\"id\";s:18:\"FromEmailAddresses\";s:3:\"url\";s:58:\"/civicrm/admin/options/from_email_address/civimail?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:22:\"{weight}.Mail Accounts\";a:6:{s:5:\"title\";s:13:\"Mail Accounts\";s:4:\"desc\";s:32:\"Configure email account setting.\";s:2:\"id\";s:12:\"MailAccounts\";s:3:\"url\";s:35:\"/civicrm/admin/mailSettings?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:28:\"{weight}.Flexmailer Settings\";a:6:{s:5:\"title\";s:19:\"Flexmailer Settings\";s:4:\"desc\";N;s:2:\"id\";s:18:\"FlexmailerSettings\";s:3:\"url\";s:41:\"/civicrm/admin/setting/flexmailer?reset=1\";s:4:\"icon\";s:23:\"admin/small/Profile.png\";s:5:\"extra\";N;}}}s:10:\"CiviMember\";a:2:{s:12:\"component_id\";N;s:6:\"fields\";a:3:{s:38:\"{weight}.CiviMember Component Settings\";a:6:{s:5:\"title\";s:29:\"CiviMember Component Settings\";s:4:\"desc\";s:38:\"Configure global CiviMember behaviors.\";s:2:\"id\";s:27:\"CiviMemberComponentSettings\";s:3:\"url\";s:49:\"/civicrm/admin/setting/preferences/member?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:25:\"{weight}.Membership Types\";a:6:{s:5:\"title\";s:16:\"Membership Types\";s:4:\"desc\";s:174:\"Define the types of memberships you want to offer. For each type, you can specify a \'name\' (Gold Member, Honor Society Member...), a description, duration, and a minimum fee.\";s:2:\"id\";s:15:\"MembershipTypes\";s:3:\"url\";s:44:\"/civicrm/admin/member/membershipType?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:32:\"{weight}.Membership Status Rules\";a:6:{s:5:\"title\";s:23:\"Membership Status Rules\";s:4:\"desc\";s:187:\"Status \'rules\' define the current status for a membership based on that membership\'s start and end dates. You can adjust the default status options and rules as needed to meet your needs.\";s:2:\"id\";s:21:\"MembershipStatusRules\";s:3:\"url\";s:46:\"/civicrm/admin/member/membershipStatus?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}}}s:12:\"Option Lists\";a:2:{s:12:\"component_id\";N;s:6:\"fields\";a:1:{s:20:\"{weight}.Grant Types\";a:6:{s:5:\"title\";s:11:\"Grant Types\";s:4:\"desc\";s:148:\"List of types which can be assigned to Grants. (Enable CiviGrant from Administer > System Settings > Enable Components if you want to track grants.)\";s:2:\"id\";s:10:\"GrantTypes\";s:3:\"url\";s:41:\"/civicrm/admin/options/grant_type?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}}}s:9:\"Customize\";a:2:{s:12:\"component_id\";N;s:6:\"fields\";a:1:{s:19:\"{weight}.Price Sets\";a:6:{s:5:\"title\";s:10:\"Price Sets\";s:4:\"desc\";s:205:\"Price sets allow you to offer multiple options with associated fees (e.g. pre-conference workshops, additional meals, etc.). Configure Price Sets for events which need more than a single set of fee levels.\";s:2:\"id\";s:9:\"PriceSets\";s:3:\"url\";s:28:\"/civicrm/admin/price?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}}}s:8:\"CiviCase\";a:2:{s:12:\"component_id\";N;s:6:\"fields\";a:5:{s:26:\"{weight}.CiviCase Settings\";a:6:{s:5:\"title\";s:17:\"CiviCase Settings\";s:4:\"desc\";N;s:2:\"id\";s:16:\"CiviCaseSettings\";s:3:\"url\";s:35:\"/civicrm/admin/setting/case?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:19:\"{weight}.Case Types\";a:6:{s:5:\"title\";s:10:\"Case Types\";s:4:\"desc\";s:137:\"List of types which can be assigned to Cases. (Enable the Cases tab from System Settings - Enable Components if you want to track cases.)\";s:2:\"id\";s:9:\"CaseTypes\";s:3:\"url\";s:40:\"/civicrm/admin/options/case_type?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:24:\"{weight}.Redaction Rules\";a:6:{s:5:\"title\";s:15:\"Redaction Rules\";s:4:\"desc\";s:223:\"List of rules which can be applied to user input strings so that the redacted output can be recognized as repeated instances of the same string or can be identified as a \"semantic type of the data element\" within case data.\";s:2:\"id\";s:14:\"RedactionRules\";s:3:\"url\";s:45:\"/civicrm/admin/options/redaction_rule?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:22:\"{weight}.Case Statuses\";a:6:{s:5:\"title\";s:13:\"Case Statuses\";s:4:\"desc\";s:48:\"List of statuses that can be assigned to a case.\";s:2:\"id\";s:12:\"CaseStatuses\";s:3:\"url\";s:42:\"/civicrm/admin/options/case_status?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:26:\"{weight}.Encounter Mediums\";a:6:{s:5:\"title\";s:17:\"Encounter Mediums\";s:4:\"desc\";s:26:\"List of encounter mediums.\";s:2:\"id\";s:16:\"EncounterMediums\";s:3:\"url\";s:47:\"/civicrm/admin/options/encounter_medium?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}}}s:10:\"CiviReport\";a:2:{s:12:\"component_id\";N;s:6:\"fields\";a:3:{s:40:\"{weight}.Create New Report from Template\";a:6:{s:5:\"title\";s:31:\"Create New Report from Template\";s:4:\"desc\";s:49:\"Component wise listing of all available templates\";s:2:\"id\";s:27:\"CreateNewReportfromTemplate\";s:3:\"url\";s:43:\"/civicrm/admin/report/template/list?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:25:\"{weight}.Manage Templates\";a:6:{s:5:\"title\";s:16:\"Manage Templates\";s:4:\"desc\";s:45:\"Browse, Edit and Delete the Report templates.\";s:2:\"id\";s:15:\"ManageTemplates\";s:3:\"url\";s:53:\"/civicrm/admin/report/options/report_template?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:24:\"{weight}.Reports Listing\";a:6:{s:5:\"title\";s:15:\"Reports Listing\";s:4:\"desc\";s:60:\"Browse existing report, change report criteria and settings.\";s:2:\"id\";s:14:\"ReportsListing\";s:3:\"url\";s:34:\"/civicrm/admin/report/list?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}}}}',NULL,NULL,NULL,1,0,1,1,1,1,1,0,'a:0:{}'); + (456,1,'civicrm/admin/setting/recaptcha',NULL,'reCAPTCHA Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Form_Generic\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:2:{s:4:\"desc\";s:43:\"Configure anti-abuse/bot-prevention service\";s:10:\"adminGroup\";s:15:\"System Settings\";}'), + (457,1,'admin',NULL,NULL,NULL,NULL,NULL,NULL,'a:15:{s:14:\"CiviContribute\";a:2:{s:12:\"component_id\";N;s:6:\"fields\";a:9:{s:32:\"{weight}.Personal Campaign Pages\";a:6:{s:5:\"title\";s:23:\"Personal Campaign Pages\";s:4:\"desc\";s:49:\"View and manage existing personal campaign pages.\";s:2:\"id\";s:21:\"PersonalCampaignPages\";s:3:\"url\";s:49:\"/civicrm/admin/pcp?context=contribute&reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:34:\"{weight}.Manage Contribution Pages\";a:6:{s:5:\"title\";s:25:\"Manage Contribution Pages\";s:4:\"desc\";s:242:\"CiviContribute allows you to create and maintain any number of Online Contribution Pages. You can create different pages for different programs or campaigns - and customize text, amounts, types of information collected from contributors, etc.\";s:2:\"id\";s:23:\"ManageContributionPages\";s:3:\"url\";s:33:\"/civicrm/admin/contribute?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:24:\"{weight}.Manage Premiums\";a:6:{s:5:\"title\";s:15:\"Manage Premiums\";s:4:\"desc\";s:175:\"CiviContribute allows you to configure any number of Premiums which can be offered to contributors as incentives / thank-you gifts. Define the premiums you want to offer here.\";s:2:\"id\";s:14:\"ManagePremiums\";s:3:\"url\";s:48:\"/civicrm/admin/contribute/managePremiums?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:24:\"{weight}.Financial Types\";a:6:{s:5:\"title\";s:15:\"Financial Types\";s:4:\"desc\";s:64:\"Formerly civicrm_contribution_type merged into this table in 4.1\";s:2:\"id\";s:14:\"FinancialTypes\";s:3:\"url\";s:46:\"/civicrm/admin/financial/financialType?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:27:\"{weight}.Financial Accounts\";a:6:{s:5:\"title\";s:18:\"Financial Accounts\";s:4:\"desc\";s:128:\"Financial types are used to categorize contributions for reporting and accounting purposes. These are also referred to as Funds.\";s:2:\"id\";s:17:\"FinancialAccounts\";s:3:\"url\";s:49:\"/civicrm/admin/financial/financialAccount?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:24:\"{weight}.Payment Methods\";a:6:{s:5:\"title\";s:15:\"Payment Methods\";s:4:\"desc\";s:224:\"You may choose to record the payment instrument used for each contribution. Common payment methods are installed by default (e.g. Check, Cash, Credit Card...). If your site requires additional payment methods, add them here.\";s:2:\"id\";s:14:\"PaymentMethods\";s:3:\"url\";s:49:\"/civicrm/admin/options/payment_instrument?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:30:\"{weight}.Accepted Credit Cards\";a:6:{s:5:\"title\";s:21:\"Accepted Credit Cards\";s:4:\"desc\";s:94:\"Credit card options that will be offered to contributors using your Online Contribution pages.\";s:2:\"id\";s:19:\"AcceptedCreditCards\";s:3:\"url\";s:48:\"/civicrm/admin/options/accept_creditcard?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:26:\"{weight}.Soft Credit Types\";a:6:{s:5:\"title\";s:17:\"Soft Credit Types\";s:4:\"desc\";s:86:\"Soft Credit Types that will be offered to contributors during soft credit contribution\";s:2:\"id\";s:15:\"SoftCreditTypes\";s:3:\"url\";s:47:\"/civicrm/admin/options/soft_credit_type?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:42:\"{weight}.CiviContribute Component Settings\";a:6:{s:5:\"title\";s:33:\"CiviContribute Component Settings\";s:4:\"desc\";s:42:\"Configure global CiviContribute behaviors.\";s:2:\"id\";s:31:\"CiviContributeComponentSettings\";s:3:\"url\";s:53:\"/civicrm/admin/setting/preferences/contribute?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}}}s:26:\"Customize Data and Screens\";a:2:{s:12:\"component_id\";N;s:6:\"fields\";a:19:{s:20:\"{weight}.Custom Data\";a:6:{s:5:\"title\";s:11:\"Custom Data\";s:4:\"desc\";s:109:\"Configure custom fields to collect and store custom data which is not included in the standard CiviCRM forms.\";s:2:\"id\";s:10:\"CustomData\";s:3:\"url\";s:35:\"/civicrm/admin/custom/group?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:17:\"{weight}.Profiles\";a:6:{s:5:\"title\";s:8:\"Profiles\";s:4:\"desc\";s:151:\"Profiles allow you to aggregate groups of fields and include them in your site as input forms, contact display pages, and search and listings features.\";s:2:\"id\";s:8:\"Profiles\";s:3:\"url\";s:31:\"/civicrm/admin/uf/group?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:23:\"{weight}.Activity Types\";a:6:{s:5:\"title\";s:14:\"Activity Types\";s:4:\"desc\";s:155:\"CiviCRM has several built-in activity types (meetings, phone calls, emails sent). Track other types of interactions by creating custom activity types here.\";s:2:\"id\";s:13:\"ActivityTypes\";s:3:\"url\";s:44:\"/civicrm/admin/options/activity_type?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:27:\"{weight}.Relationship Types\";a:6:{s:5:\"title\";s:18:\"Relationship Types\";s:4:\"desc\";s:148:\"Contacts can be linked to each other through Relationships (e.g. Spouse, Employer, etc.). Define the types of relationships you want to record here.\";s:2:\"id\";s:17:\"RelationshipTypes\";s:3:\"url\";s:30:\"/civicrm/admin/reltype?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:22:\"{weight}.Contact Types\";a:6:{s:5:\"title\";s:13:\"Contact Types\";s:4:\"desc\";N;s:2:\"id\";s:12:\"ContactTypes\";s:3:\"url\";s:38:\"/civicrm/admin/options/subtype?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:23:\"{weight}.Gender Options\";a:6:{s:5:\"title\";s:14:\"Gender Options\";s:4:\"desc\";s:79:\"Options for assigning gender to individual contacts (e.g. Male, Female, Other).\";s:2:\"id\";s:13:\"GenderOptions\";s:3:\"url\";s:37:\"/civicrm/admin/options/gender?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:40:\"{weight}.Individual Prefixes (Ms, Mr...)\";a:6:{s:5:\"title\";s:31:\"Individual Prefixes (Ms, Mr...)\";s:4:\"desc\";s:66:\"Options for individual contact prefixes (e.g. Ms., Mr., Dr. etc.).\";s:2:\"id\";s:27:\"IndividualPrefixes_Ms_Mr...\";s:3:\"url\";s:48:\"/civicrm/admin/options/individual_prefix?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:40:\"{weight}.Individual Suffixes (Jr, Sr...)\";a:6:{s:5:\"title\";s:31:\"Individual Suffixes (Jr, Sr...)\";s:4:\"desc\";s:61:\"Options for individual contact suffixes (e.g. Jr., Sr. etc.).\";s:2:\"id\";s:27:\"IndividualSuffixes_Jr_Sr...\";s:3:\"url\";s:48:\"/civicrm/admin/options/individual_suffix?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:39:\"{weight}.Location Types (Home, Work...)\";a:6:{s:5:\"title\";s:30:\"Location Types (Home, Work...)\";s:4:\"desc\";s:94:\"Options for categorizing contact addresses and phone numbers (e.g. Home, Work, Billing, etc.).\";s:2:\"id\";s:26:\"LocationTypes_Home_Work...\";s:3:\"url\";s:35:\"/civicrm/admin/locationType?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:22:\"{weight}.Website Types\";a:6:{s:5:\"title\";s:13:\"Website Types\";s:4:\"desc\";s:48:\"Options for assigning website types to contacts.\";s:2:\"id\";s:12:\"WebsiteTypes\";s:3:\"url\";s:43:\"/civicrm/admin/options/website_type?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:35:\"{weight}.Instant Messenger Services\";a:6:{s:5:\"title\";s:26:\"Instant Messenger Services\";s:4:\"desc\";s:79:\"List of IM services which can be used when recording screen-names for contacts.\";s:2:\"id\";s:24:\"InstantMessengerServices\";s:3:\"url\";s:56:\"/civicrm/admin/options/instant_messenger_service?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:31:\"{weight}.Mobile Phone Providers\";a:6:{s:5:\"title\";s:22:\"Mobile Phone Providers\";s:4:\"desc\";s:90:\"List of mobile phone providers which can be assigned when recording contact phone numbers.\";s:2:\"id\";s:20:\"MobilePhoneProviders\";s:3:\"url\";s:46:\"/civicrm/admin/options/mobile_provider?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:19:\"{weight}.Phone Type\";a:6:{s:5:\"title\";s:10:\"Phone Type\";s:4:\"desc\";s:80:\"Options for assigning phone type to contacts (e.g Phone,\n Mobile, Fax, Pager)\";s:2:\"id\";s:9:\"PhoneType\";s:3:\"url\";s:41:\"/civicrm/admin/options/phone_type?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:28:\"{weight}.Display Preferences\";a:6:{s:5:\"title\";s:19:\"Display Preferences\";s:4:\"desc\";N;s:2:\"id\";s:18:\"DisplayPreferences\";s:3:\"url\";s:50:\"/civicrm/admin/setting/preferences/display?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:27:\"{weight}.Search Preferences\";a:6:{s:5:\"title\";s:18:\"Search Preferences\";s:4:\"desc\";N;s:2:\"id\";s:17:\"SearchPreferences\";s:3:\"url\";s:37:\"/civicrm/admin/setting/search?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:24:\"{weight}.Navigation Menu\";a:6:{s:5:\"title\";s:15:\"Navigation Menu\";s:4:\"desc\";s:79:\"Add or remove menu items, and modify the order of items on the navigation menu.\";s:2:\"id\";s:14:\"NavigationMenu\";s:3:\"url\";s:27:\"/civicrm/admin/menu?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:26:\"{weight}.Word Replacements\";a:6:{s:5:\"title\";s:17:\"Word Replacements\";s:4:\"desc\";s:18:\"Word Replacements.\";s:2:\"id\";s:16:\"WordReplacements\";s:3:\"url\";s:47:\"/civicrm/admin/options/wordreplacements?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:31:\"{weight}.Manage Custom Searches\";a:6:{s:5:\"title\";s:22:\"Manage Custom Searches\";s:4:\"desc\";s:225:\"Developers and accidental techies with a bit of PHP and SQL knowledge can create new search forms to handle specific search and reporting needs which aren\'t covered by the built-in Advanced Search and Search Builder features.\";s:2:\"id\";s:20:\"ManageCustomSearches\";s:3:\"url\";s:44:\"/civicrm/admin/options/custom_search?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:13:\"{weight}.Tags\";a:6:{s:5:\"title\";s:4:\"Tags\";s:4:\"desc\";s:158:\"Tags are useful for segmenting the contacts in your database into categories (e.g. Staff Member, Donor, Volunteer, etc.). Create and edit available tags here.\";s:2:\"id\";s:4:\"Tags\";s:3:\"url\";s:20:\"/civicrm/tag?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}}}s:14:\"Communications\";a:2:{s:12:\"component_id\";N;s:6:\"fields\";a:11:{s:46:\"{weight}.Organization Address and Contact Info\";a:6:{s:5:\"title\";s:37:\"Organization Address and Contact Info\";s:4:\"desc\";s:150:\"Configure primary contact name, email, return-path and address information. This information is used by CiviMail to identify the sending organization.\";s:2:\"id\";s:33:\"OrganizationAddressandContactInfo\";s:3:\"url\";s:47:\"/civicrm/admin/domain?action=update&reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:29:\"{weight}.From Email Addresses\";a:6:{s:5:\"title\";s:20:\"From Email Addresses\";s:4:\"desc\";s:74:\"List of Email Addresses which can be used when sending emails to contacts.\";s:2:\"id\";s:18:\"FromEmailAddresses\";s:3:\"url\";s:49:\"/civicrm/admin/options/from_email_address?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:26:\"{weight}.Message Templates\";a:6:{s:5:\"title\";s:17:\"Message Templates\";s:4:\"desc\";s:130:\"Message templates allow you to save and re-use messages with layouts which you can use when sending email to one or more contacts.\";s:2:\"id\";s:16:\"MessageTemplates\";s:3:\"url\";s:39:\"/civicrm/admin/messageTemplates?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:27:\"{weight}.Schedule Reminders\";a:6:{s:5:\"title\";s:18:\"Schedule Reminders\";s:4:\"desc\";s:19:\"Schedule Reminders.\";s:2:\"id\";s:17:\"ScheduleReminders\";s:3:\"url\";s:40:\"/civicrm/admin/scheduleReminders?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:40:\"{weight}.Preferred Communication Methods\";a:6:{s:5:\"title\";s:31:\"Preferred Communication Methods\";s:4:\"desc\";s:117:\"One or more preferred methods of communication can be assigned to each contact. Customize the available options here.\";s:2:\"id\";s:29:\"PreferredCommunicationMethods\";s:3:\"url\";s:61:\"/civicrm/admin/options/preferred_communication_method?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:22:\"{weight}.Label Formats\";a:6:{s:5:\"title\";s:13:\"Label Formats\";s:4:\"desc\";s:67:\"Configure Label Formats that are used when creating mailing labels.\";s:2:\"id\";s:12:\"LabelFormats\";s:3:\"url\";s:35:\"/civicrm/admin/labelFormats?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:33:\"{weight}.Print Page (PDF) Formats\";a:6:{s:5:\"title\";s:24:\"Print Page (PDF) Formats\";s:4:\"desc\";s:95:\"Configure PDF Page Formats that can be assigned to Message Templates when creating PDF letters.\";s:2:\"id\";s:20:\"PrintPage_PDFFormats\";s:3:\"url\";s:33:\"/civicrm/admin/pdfFormats?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:36:\"{weight}.Communication Style Options\";a:6:{s:5:\"title\";s:27:\"Communication Style Options\";s:4:\"desc\";s:42:\"Options for Communication Style selection.\";s:2:\"id\";s:25:\"CommunicationStyleOptions\";s:3:\"url\";s:50:\"/civicrm/admin/options/communication_style?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:31:\"{weight}.Email Greeting Formats\";a:6:{s:5:\"title\";s:22:\"Email Greeting Formats\";s:4:\"desc\";s:75:\"Options for assigning email greetings to individual and household contacts.\";s:2:\"id\";s:20:\"EmailGreetingFormats\";s:3:\"url\";s:45:\"/civicrm/admin/options/email_greeting?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:32:\"{weight}.Postal Greeting Formats\";a:6:{s:5:\"title\";s:23:\"Postal Greeting Formats\";s:4:\"desc\";s:76:\"Options for assigning postal greetings to individual and household contacts.\";s:2:\"id\";s:21:\"PostalGreetingFormats\";s:3:\"url\";s:46:\"/civicrm/admin/options/postal_greeting?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:26:\"{weight}.Addressee Formats\";a:6:{s:5:\"title\";s:17:\"Addressee Formats\";s:4:\"desc\";s:83:\"Options for assigning addressee to individual, household and organization contacts.\";s:2:\"id\";s:16:\"AddresseeFormats\";s:3:\"url\";s:40:\"/civicrm/admin/options/addressee?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}}}s:12:\"Localization\";a:2:{s:12:\"component_id\";N;s:6:\"fields\";a:4:{s:39:\"{weight}.Languages, Currency, Locations\";a:6:{s:5:\"title\";s:30:\"Languages, Currency, Locations\";s:4:\"desc\";N;s:2:\"id\";s:28:\"Languages_Currency_Locations\";s:3:\"url\";s:43:\"/civicrm/admin/setting/localization?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:25:\"{weight}.Address Settings\";a:6:{s:5:\"title\";s:16:\"Address Settings\";s:4:\"desc\";N;s:2:\"id\";s:15:\"AddressSettings\";s:3:\"url\";s:50:\"/civicrm/admin/setting/preferences/address?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:21:\"{weight}.Date Formats\";a:6:{s:5:\"title\";s:12:\"Date Formats\";s:4:\"desc\";N;s:2:\"id\";s:11:\"DateFormats\";s:3:\"url\";s:35:\"/civicrm/admin/setting/date?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:28:\"{weight}.Preferred Languages\";a:6:{s:5:\"title\";s:19:\"Preferred Languages\";s:4:\"desc\";s:30:\"Options for contact languages.\";s:2:\"id\";s:18:\"PreferredLanguages\";s:3:\"url\";s:40:\"/civicrm/admin/options/languages?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}}}s:21:\"Users and Permissions\";a:2:{s:12:\"component_id\";N;s:6:\"fields\";a:2:{s:23:\"{weight}.Access Control\";a:6:{s:5:\"title\";s:14:\"Access Control\";s:4:\"desc\";s:73:\"Grant or deny access to actions (view, edit...), features and components.\";s:2:\"id\";s:13:\"AccessControl\";s:3:\"url\";s:29:\"/civicrm/admin/access?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:38:\"{weight}.Synchronize Users to Contacts\";a:6:{s:5:\"title\";s:29:\"Synchronize Users to Contacts\";s:4:\"desc\";s:71:\"Automatically create a CiviCRM contact record for each CMS user record.\";s:2:\"id\";s:26:\"SynchronizeUserstoContacts\";s:3:\"url\";s:32:\"/civicrm/admin/synchUser?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}}}s:15:\"System Settings\";a:2:{s:12:\"component_id\";N;s:6:\"fields\";a:19:{s:32:\"{weight}.Configuration Checklist\";a:6:{s:5:\"title\";s:23:\"Configuration Checklist\";s:4:\"desc\";s:55:\"List of configuration tasks with links to each setting.\";s:2:\"id\";s:22:\"ConfigurationChecklist\";s:3:\"url\";s:33:\"/civicrm/admin/configtask?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:34:\"{weight}.Enable CiviCRM Components\";a:6:{s:5:\"title\";s:25:\"Enable CiviCRM Components\";s:4:\"desc\";s:269:\"Enable or disable components (e.g. CiviEvent, CiviMember, etc.) for your site based on the features you need. We recommend disabling any components not being used in order to simplify the user interface. You can easily re-enable components at any time from this screen.\";s:2:\"id\";s:23:\"EnableCiviCRMComponents\";s:3:\"url\";s:40:\"/civicrm/admin/setting/component?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:26:\"{weight}.Manage Extensions\";a:6:{s:5:\"title\";s:17:\"Manage Extensions\";s:4:\"desc\";s:0:\"\";s:2:\"id\";s:16:\"ManageExtensions\";s:3:\"url\";s:33:\"/civicrm/admin/extensions?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:32:\"{weight}.Outbound Email Settings\";a:6:{s:5:\"title\";s:23:\"Outbound Email Settings\";s:4:\"desc\";N;s:2:\"id\";s:21:\"OutboundEmailSettings\";s:3:\"url\";s:35:\"/civicrm/admin/setting/smtp?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:37:\"{weight}.Settings - Payment Processor\";a:6:{s:5:\"title\";s:28:\"Settings - Payment Processor\";s:4:\"desc\";s:48:\"Payment Processor setup for CiviCRM transactions\";s:2:\"id\";s:25:\"Settings-PaymentProcessor\";s:3:\"url\";s:39:\"/civicrm/admin/paymentProcessor?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:30:\"{weight}.Mapping and Geocoding\";a:6:{s:5:\"title\";s:21:\"Mapping and Geocoding\";s:4:\"desc\";N;s:2:\"id\";s:19:\"MappingandGeocoding\";s:3:\"url\";s:38:\"/civicrm/admin/setting/mapping?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:53:\"{weight}.Misc (Undelete, PDFs, Limits, Logging, etc.)\";a:6:{s:5:\"title\";s:44:\"Misc (Undelete, PDFs, Limits, Logging, etc.)\";s:4:\"desc\";s:63:\"Enable undelete/move to trash feature, detailed change logging.\";s:2:\"id\";s:38:\"Misc_Undelete_PDFs_Limits_Logging_etc.\";s:3:\"url\";s:35:\"/civicrm/admin/setting/misc?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:20:\"{weight}.Directories\";a:6:{s:5:\"title\";s:11:\"Directories\";s:4:\"desc\";N;s:2:\"id\";s:11:\"Directories\";s:3:\"url\";s:35:\"/civicrm/admin/setting/path?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:22:\"{weight}.Resource URLs\";a:6:{s:5:\"title\";s:13:\"Resource URLs\";s:4:\"desc\";N;s:2:\"id\";s:12:\"ResourceURLs\";s:3:\"url\";s:34:\"/civicrm/admin/setting/url?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:40:\"{weight}.Cleanup Caches and Update Paths\";a:6:{s:5:\"title\";s:31:\"Cleanup Caches and Update Paths\";s:4:\"desc\";s:157:\"Reset the Base Directory Path and Base URL settings - generally when a CiviCRM site is moved to another location in the file system and/or to another domain.\";s:2:\"id\";s:27:\"CleanupCachesandUpdatePaths\";s:3:\"url\";s:50:\"/civicrm/admin/setting/updateConfigBackend?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:33:\"{weight}.CMS Database Integration\";a:6:{s:5:\"title\";s:24:\"CMS Database Integration\";s:4:\"desc\";N;s:2:\"id\";s:22:\"CMSDatabaseIntegration\";s:3:\"url\";s:33:\"/civicrm/admin/setting/uf?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:36:\"{weight}.Safe File Extension Options\";a:6:{s:5:\"title\";s:27:\"Safe File Extension Options\";s:4:\"desc\";s:44:\"File Extensions that can be considered safe.\";s:2:\"id\";s:24:\"SafeFileExtensionOptions\";s:3:\"url\";s:50:\"/civicrm/admin/options/safe_file_extension?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:22:\"{weight}.Option Groups\";a:6:{s:5:\"title\";s:13:\"Option Groups\";s:4:\"desc\";s:35:\"Access all meta-data option groups.\";s:2:\"id\";s:12:\"OptionGroups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:31:\"{weight}.Import/Export Mappings\";a:6:{s:5:\"title\";s:22:\"Import/Export Mappings\";s:4:\"desc\";s:141:\"Import and Export mappings allow you to easily run the same job multiple times. This option allows you to rename or delete existing mappings.\";s:2:\"id\";s:21:\"Import_ExportMappings\";s:3:\"url\";s:30:\"/civicrm/admin/mapping?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:18:\"{weight}.Debugging\";a:6:{s:5:\"title\";s:9:\"Debugging\";s:4:\"desc\";N;s:2:\"id\";s:9:\"Debugging\";s:3:\"url\";s:36:\"/civicrm/admin/setting/debug?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:28:\"{weight}.Multi Site Settings\";a:6:{s:5:\"title\";s:19:\"Multi Site Settings\";s:4:\"desc\";N;s:2:\"id\";s:17:\"MultiSiteSettings\";s:3:\"url\";s:52:\"/civicrm/admin/setting/preferences/multisite?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:23:\"{weight}.Scheduled Jobs\";a:6:{s:5:\"title\";s:14:\"Scheduled Jobs\";s:4:\"desc\";s:35:\"Managing periodially running tasks.\";s:2:\"id\";s:13:\"ScheduledJobs\";s:3:\"url\";s:26:\"/civicrm/admin/job?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:22:\"{weight}.Sms Providers\";a:6:{s:5:\"title\";s:13:\"Sms Providers\";s:4:\"desc\";s:27:\"To configure a sms provider\";s:2:\"id\";s:12:\"SmsProviders\";s:3:\"url\";s:35:\"/civicrm/admin/sms/provider?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:27:\"{weight}.reCAPTCHA Settings\";a:6:{s:5:\"title\";s:18:\"reCAPTCHA Settings\";s:4:\"desc\";s:43:\"Configure anti-abuse/bot-prevention service\";s:2:\"id\";s:17:\"reCAPTCHASettings\";s:3:\"url\";s:40:\"/civicrm/admin/setting/recaptcha?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}}}s:12:\"CiviCampaign\";a:2:{s:12:\"component_id\";N;s:6:\"fields\";a:5:{s:40:\"{weight}.CiviCampaign Component Settings\";a:6:{s:5:\"title\";s:31:\"CiviCampaign Component Settings\";s:4:\"desc\";s:40:\"Configure global CiviCampaign behaviors.\";s:2:\"id\";s:29:\"CiviCampaignComponentSettings\";s:3:\"url\";s:51:\"/civicrm/admin/setting/preferences/campaign?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:21:\"{weight}.Survey Types\";a:6:{s:5:\"title\";s:12:\"Survey Types\";s:4:\"desc\";N;s:2:\"id\";s:11:\"SurveyTypes\";s:3:\"url\";s:42:\"/civicrm/admin/campaign/surveyType?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:23:\"{weight}.Campaign Types\";a:6:{s:5:\"title\";s:14:\"Campaign Types\";s:4:\"desc\";s:47:\"categorize your campaigns using campaign types.\";s:2:\"id\";s:13:\"CampaignTypes\";s:3:\"url\";s:44:\"/civicrm/admin/options/campaign_type?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:24:\"{weight}.Campaign Status\";a:6:{s:5:\"title\";s:15:\"Campaign Status\";s:4:\"desc\";s:34:\"Define statuses for campaign here.\";s:2:\"id\";s:14:\"CampaignStatus\";s:3:\"url\";s:46:\"/civicrm/admin/options/campaign_status?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:25:\"{weight}.Engagement Index\";a:6:{s:5:\"title\";s:16:\"Engagement Index\";s:4:\"desc\";s:18:\"Engagement levels.\";s:2:\"id\";s:15:\"EngagementIndex\";s:3:\"url\";s:47:\"/civicrm/admin/options/engagement_index?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}}}s:9:\"CiviEvent\";a:2:{s:12:\"component_id\";N;s:6:\"fields\";a:9:{s:37:\"{weight}.CiviEvent Component Settings\";a:6:{s:5:\"title\";s:28:\"CiviEvent Component Settings\";s:4:\"desc\";s:37:\"Configure global CiviEvent behaviors.\";s:2:\"id\";s:26:\"CiviEventComponentSettings\";s:3:\"url\";s:48:\"/civicrm/admin/setting/preferences/event?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:33:\"{weight}.Event Name Badge Layouts\";a:6:{s:5:\"title\";s:24:\"Event Name Badge Layouts\";s:4:\"desc\";s:107:\"Configure name badge layouts for event participants, including logos and what data to include on the badge.\";s:2:\"id\";s:21:\"EventNameBadgeLayouts\";s:3:\"url\";s:52:\"/civicrm/admin/badgelayout?action=browse&reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:22:\"{weight}.Manage Events\";a:6:{s:5:\"title\";s:13:\"Manage Events\";s:4:\"desc\";s:136:\"Create and edit event configuration including times, locations, online registration forms, and fees. Links for iCal and RSS syndication.\";s:2:\"id\";s:12:\"ManageEvents\";s:3:\"url\";s:28:\"/civicrm/admin/event?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:24:\"{weight}.Event Templates\";a:6:{s:5:\"title\";s:15:\"Event Templates\";s:4:\"desc\";s:115:\"Administrators can create Event Templates - which are basically master event records pre-filled with default values\";s:2:\"id\";s:14:\"EventTemplates\";s:3:\"url\";s:36:\"/civicrm/admin/eventTemplate?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:20:\"{weight}.Event Types\";a:6:{s:5:\"title\";s:11:\"Event Types\";s:4:\"desc\";s:143:\"Use Event Types to categorize your events. Event feeds can be filtered by Event Type and participant searches can use Event Type as a criteria.\";s:2:\"id\";s:10:\"EventTypes\";s:3:\"url\";s:41:\"/civicrm/admin/options/event_type?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:27:\"{weight}.Participant Status\";a:6:{s:5:\"title\";s:18:\"Participant Status\";s:4:\"desc\";s:154:\"Define statuses for event participants here (e.g. Registered, Attended, Cancelled...). You can then assign statuses and search for participants by status.\";s:2:\"id\";s:17:\"ParticipantStatus\";s:3:\"url\";s:41:\"/civicrm/admin/participant_status?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:25:\"{weight}.Participant Role\";a:6:{s:5:\"title\";s:16:\"Participant Role\";s:4:\"desc\";s:138:\"Define participant roles for events here (e.g. Attendee, Host, Speaker...). You can then assign roles and search for participants by role.\";s:2:\"id\";s:15:\"ParticipantRole\";s:3:\"url\";s:47:\"/civicrm/admin/options/participant_role?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:38:\"{weight}.Participant Listing Templates\";a:6:{s:5:\"title\";s:29:\"Participant Listing Templates\";s:4:\"desc\";s:48:\"Template to control participant listing display.\";s:2:\"id\";s:27:\"ParticipantListingTemplates\";s:3:\"url\";s:50:\"/civicrm/admin/options/participant_listing?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:31:\"{weight}.Conference Slot Labels\";a:6:{s:5:\"title\";s:22:\"Conference Slot Labels\";s:4:\"desc\";s:35:\"Define conference slots and labels.\";s:2:\"id\";s:20:\"ConferenceSlotLabels\";s:3:\"url\";s:46:\"/civicrm/admin/options/conference_slot?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}}}s:8:\"CiviMail\";a:2:{s:12:\"component_id\";N;s:6:\"fields\";a:5:{s:36:\"{weight}.CiviMail Component Settings\";a:6:{s:5:\"title\";s:27:\"CiviMail Component Settings\";s:4:\"desc\";s:36:\"Configure global CiviMail behaviors.\";s:2:\"id\";s:25:\"CiviMailComponentSettings\";s:3:\"url\";s:50:\"/civicrm/admin/setting/preferences/mailing?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:24:\"{weight}.Mailer Settings\";a:6:{s:5:\"title\";s:15:\"Mailer Settings\";s:4:\"desc\";s:61:\"Configure spool period, throttling and other mailer settings.\";s:2:\"id\";s:14:\"MailerSettings\";s:3:\"url\";s:27:\"/civicrm/admin/mail?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:49:\"{weight}.Headers, Footers, and Automated Messages\";a:6:{s:5:\"title\";s:40:\"Headers, Footers, and Automated Messages\";s:4:\"desc\";s:143:\"Configure the header and footer used for mailings. Customize the content of automated Subscribe, Unsubscribe, Resubscribe and Opt-out messages.\";s:2:\"id\";s:36:\"Headers_Footers_andAutomatedMessages\";s:3:\"url\";s:32:\"/civicrm/admin/component?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:29:\"{weight}.From Email Addresses\";a:6:{s:5:\"title\";s:20:\"From Email Addresses\";s:4:\"desc\";s:74:\"List of Email Addresses which can be used when sending emails to contacts.\";s:2:\"id\";s:18:\"FromEmailAddresses\";s:3:\"url\";s:58:\"/civicrm/admin/options/from_email_address/civimail?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:22:\"{weight}.Mail Accounts\";a:6:{s:5:\"title\";s:13:\"Mail Accounts\";s:4:\"desc\";s:32:\"Configure email account setting.\";s:2:\"id\";s:12:\"MailAccounts\";s:3:\"url\";s:35:\"/civicrm/admin/mailSettings?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}}}s:10:\"CiviMember\";a:2:{s:12:\"component_id\";N;s:6:\"fields\";a:3:{s:38:\"{weight}.CiviMember Component Settings\";a:6:{s:5:\"title\";s:29:\"CiviMember Component Settings\";s:4:\"desc\";s:38:\"Configure global CiviMember behaviors.\";s:2:\"id\";s:27:\"CiviMemberComponentSettings\";s:3:\"url\";s:49:\"/civicrm/admin/setting/preferences/member?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:25:\"{weight}.Membership Types\";a:6:{s:5:\"title\";s:16:\"Membership Types\";s:4:\"desc\";s:174:\"Define the types of memberships you want to offer. For each type, you can specify a \'name\' (Gold Member, Honor Society Member...), a description, duration, and a minimum fee.\";s:2:\"id\";s:15:\"MembershipTypes\";s:3:\"url\";s:44:\"/civicrm/admin/member/membershipType?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:32:\"{weight}.Membership Status Rules\";a:6:{s:5:\"title\";s:23:\"Membership Status Rules\";s:4:\"desc\";s:187:\"Status \'rules\' define the current status for a membership based on that membership\'s start and end dates. You can adjust the default status options and rules as needed to meet your needs.\";s:2:\"id\";s:21:\"MembershipStatusRules\";s:3:\"url\";s:46:\"/civicrm/admin/member/membershipStatus?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}}}s:6:\"Manage\";a:2:{s:12:\"component_id\";N;s:6:\"fields\";a:3:{s:27:\"{weight}.Scheduled Jobs Log\";a:6:{s:5:\"title\";s:18:\"Scheduled Jobs Log\";s:4:\"desc\";s:46:\"Browsing the log of periodially running tasks.\";s:2:\"id\";s:16:\"ScheduledJobsLog\";s:3:\"url\";s:29:\"/civicrm/admin/joblog?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:42:\"{weight}.Find and Merge Duplicate Contacts\";a:6:{s:5:\"title\";s:33:\"Find and Merge Duplicate Contacts\";s:4:\"desc\";s:158:\"Manage the rules used to identify potentially duplicate contact records. Scan for duplicates using a selected rule and merge duplicate contact data as needed.\";s:2:\"id\";s:29:\"FindandMergeDuplicateContacts\";s:3:\"url\";s:36:\"/civicrm/contact/deduperules?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:26:\"{weight}.Dedupe Exceptions\";a:6:{s:5:\"title\";s:17:\"Dedupe Exceptions\";s:4:\"desc\";N;s:2:\"id\";s:16:\"DedupeExceptions\";s:3:\"url\";s:33:\"/civicrm/dedupe/exception?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}}}s:12:\"Option Lists\";a:2:{s:12:\"component_id\";N;s:6:\"fields\";a:1:{s:20:\"{weight}.Grant Types\";a:6:{s:5:\"title\";s:11:\"Grant Types\";s:4:\"desc\";s:148:\"List of types which can be assigned to Grants. (Enable CiviGrant from Administer > System Settings > Enable Components if you want to track grants.)\";s:2:\"id\";s:10:\"GrantTypes\";s:3:\"url\";s:41:\"/civicrm/admin/options/grant_type?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}}}s:9:\"Customize\";a:2:{s:12:\"component_id\";N;s:6:\"fields\";a:1:{s:19:\"{weight}.Price Sets\";a:6:{s:5:\"title\";s:10:\"Price Sets\";s:4:\"desc\";s:205:\"Price sets allow you to offer multiple options with associated fees (e.g. pre-conference workshops, additional meals, etc.). Configure Price Sets for events which need more than a single set of fee levels.\";s:2:\"id\";s:9:\"PriceSets\";s:3:\"url\";s:28:\"/civicrm/admin/price?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}}}s:8:\"CiviCase\";a:2:{s:12:\"component_id\";N;s:6:\"fields\";a:5:{s:26:\"{weight}.CiviCase Settings\";a:6:{s:5:\"title\";s:17:\"CiviCase Settings\";s:4:\"desc\";N;s:2:\"id\";s:16:\"CiviCaseSettings\";s:3:\"url\";s:35:\"/civicrm/admin/setting/case?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:19:\"{weight}.Case Types\";a:6:{s:5:\"title\";s:10:\"Case Types\";s:4:\"desc\";s:137:\"List of types which can be assigned to Cases. (Enable the Cases tab from System Settings - Enable Components if you want to track cases.)\";s:2:\"id\";s:9:\"CaseTypes\";s:3:\"url\";s:40:\"/civicrm/admin/options/case_type?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:24:\"{weight}.Redaction Rules\";a:6:{s:5:\"title\";s:15:\"Redaction Rules\";s:4:\"desc\";s:223:\"List of rules which can be applied to user input strings so that the redacted output can be recognized as repeated instances of the same string or can be identified as a \"semantic type of the data element\" within case data.\";s:2:\"id\";s:14:\"RedactionRules\";s:3:\"url\";s:45:\"/civicrm/admin/options/redaction_rule?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:22:\"{weight}.Case Statuses\";a:6:{s:5:\"title\";s:13:\"Case Statuses\";s:4:\"desc\";s:48:\"List of statuses that can be assigned to a case.\";s:2:\"id\";s:12:\"CaseStatuses\";s:3:\"url\";s:42:\"/civicrm/admin/options/case_status?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:26:\"{weight}.Encounter Mediums\";a:6:{s:5:\"title\";s:17:\"Encounter Mediums\";s:4:\"desc\";s:26:\"List of encounter mediums.\";s:2:\"id\";s:16:\"EncounterMediums\";s:3:\"url\";s:47:\"/civicrm/admin/options/encounter_medium?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}}}s:10:\"CiviReport\";a:2:{s:12:\"component_id\";N;s:6:\"fields\";a:3:{s:40:\"{weight}.Create New Report from Template\";a:6:{s:5:\"title\";s:31:\"Create New Report from Template\";s:4:\"desc\";s:49:\"Component wise listing of all available templates\";s:2:\"id\";s:27:\"CreateNewReportfromTemplate\";s:3:\"url\";s:43:\"/civicrm/admin/report/template/list?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:25:\"{weight}.Manage Templates\";a:6:{s:5:\"title\";s:16:\"Manage Templates\";s:4:\"desc\";s:45:\"Browse, Edit and Delete the Report templates.\";s:2:\"id\";s:15:\"ManageTemplates\";s:3:\"url\";s:53:\"/civicrm/admin/report/options/report_template?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:24:\"{weight}.Reports Listing\";a:6:{s:5:\"title\";s:15:\"Reports Listing\";s:4:\"desc\";s:60:\"Browse existing report, change report criteria and settings.\";s:2:\"id\";s:14:\"ReportsListing\";s:3:\"url\";s:34:\"/civicrm/admin/report/list?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}}}}',NULL,NULL,NULL,1,0,1,1,1,1,1,0,'a:0:{}'); /*!40000 ALTER TABLE `civicrm_menu` ENABLE KEYS */; UNLOCK TABLES; @@ -5394,8 +5399,8 @@ INSERT INTO `civicrm_msg_template` (`id`, `msg_title`, `msg_subject`, `msg_text` (4,'Contributions - Duplicate Organization Alert','{ts}CiviContribute Alert: Possible Duplicate Contact Record{/ts} - {contact.display_name}\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 Duplicate 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 - Go to \"Contacts >> Find and Merge Duplicate Contacts\". Use the strict rule 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','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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 <table id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left; width:100%; max-width:700px; padding:0; margin:0; border:0px;\">\n\n <!-- BEGIN HEADER -->\n <!-- You can add table row(s) here with logo or other header elements -->\n <!-- END HEADER -->\n\n <!-- BEGIN CONTENT -->\n\n <tr>\n <td>\n <p>{ts}A contribution / membership signup was made on behalf of the organization listed below.{/ts}</p>\n <p>{ts}The information provided matched multiple existing database records based on the configured Duplicate Matching Rules for your site.{/ts}</p>\n </td>\n </tr>\n <tr>\n <td>\n <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n <tr>\n <td {$labelStyle}>\n {ts}Organization Name{/ts}\n </td>\n <td {$valueStyle}>\n {$onBehalfName}\n </td>\n </tr>\n <tr>\n <td {$labelStyle}>\n {ts}Organization Email{/ts}\n </td>\n <td {$valueStyle}>\n {$onBehalfEmail}\n </td>\n </tr>\n <tr>\n <td {$labelStyle}>\n {ts}Organization Contact ID{/ts}\n </td>\n <td {$valueStyle}>\n {$onBehalfID}\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr>\n <td>\n <p>{ts}If you think this may be a duplicate contact which should be merged with an existing record - Go to \"Contacts >> Find and Merge Duplicate Contacts\". Use the strict rule for Organizations to find the potential duplicates and merge them if appropriate.{/ts}</p>\n </td>\n </tr>\n {if $receiptMessage}\n <tr>\n <td>\n <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n <tr>\n <th {$headerStyle}>\n {ts}Copy of Contribution Receipt{/ts}\n </th>\n </tr>\n <tr>\n <td colspan=\"2\" {$valueStyle}>\n {* FIXME: the below is most probably not HTML-ised *}\n {$receiptMessage}\n </td>\n </tr>\n </table>\n </td>\n </tr>\n {/if}\n </table>\n</body>\n</html>\n',1,814,'contribution_dupalert',0,1,0,NULL), (5,'Contributions - Receipt (off-line)','{ts}Contribution Receipt{/ts} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\n\n{if !empty($formValues.receipt_text)}\n{$formValues.receipt_text}\n{else}{ts}Below you will find a receipt for this contribution.{/ts}{/if}\n\n===========================================================\n{ts}Contribution Information{/ts}\n\n===========================================================\n{ts}Contributor{/ts}: {contact.display_name}\n{if \'{contribution.financial_type_id}\'}\n{ts}Financial Type{/ts}: {contribution.financial_type_id:label}\n{/if}\n{if $isShowLineItems}\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{if $isShowTax && \'{contribution.tax_amount|raw}\' !== \'0.00\'}\n{capture assign=ts_subtotal}{ts}Subtotal{/ts}{/capture}\n{capture assign=ts_taxRate}{ts}Tax Rate{/ts}{/capture}\n{capture assign=ts_taxAmount}{ts}Tax Amount{/ts}{/capture}\n{/if}\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\"} {if $isShowTax && \'{contribution.tax_amount|raw}\' !== \'0.00\'} {$ts_subtotal|string_format:\"%10s\"} {$ts_taxRate} {$ts_taxAmount|string_format:\"%10s\"} {/if} {$ts_total|string_format:\"%10s\"}\n----------------------------------------------------------\n{foreach from=$lineItems item=line}\n{capture assign=ts_item}{$line.title}{/capture}{$ts_item|truncate:30:\"...\"|string_format:\"%-30s\"} {$line.qty|string_format:\"%5s\"} {$line.unit_price|crmMoney:\'{contribution.currency}\'|string_format:\"%10s\"} {if $isShowTax && \'{contribution.tax_amount|raw}\' !== \'0.00\'}{$line.unit_price*$line.qty|crmMoney:\'{contribution.currency}\'|string_format:\"%10s\"} {if $line.tax_rate || $line.tax_amount != \"\"} {$line.tax_rate|string_format:\"%.2f\"} % {$line.tax_amount|crmMoney:\'{contribution.currency}\'|string_format:\"%10s\"} {else} {/if} {/if} {$line.line_total+$line.tax_amount|crmMoney:\'{contribution.currency}\'|string_format:\"%10s\"}\n{/foreach}\n{/if}\n\n\n{if $isShowTax && \'{contribution.tax_amount|raw}\' !== \'0.00\'}\n{ts}Amount before Tax{/ts} : {$formValues.total_amount-$totalTaxAmount|crmMoney:$currency}\n{/if}\n{foreach from=$taxRateBreakdown item=taxDetail key=taxRate}\n{if $taxRate == 0}{ts}No{/ts} {$taxTerm}{else}{$taxTerm} {$taxDetail.percentage}%{/if} : {$taxDetail.amount|crmMoney:\'{contribution.currency}\'}\n{/foreach}\n\n{if $isShowTax}\n{ts}Total Tax Amount{/ts} : {contribution.tax_amount}\n{/if}\n{ts}Total Amount{/ts} : {contribution.total_amount}\n{if \'{contribution.receive_date}\'}\n{ts}Date Received{/ts}: {contribution.receive_date|crmDate:\"shortdate\"}\n{/if}\n{if \'{contribution.receipt_date}\'}\n{ts}Receipt Date{/ts}: {contribution.receipt_date|crmDate:\"shortdate\"}\n{/if}\n{if \'{contribution.payment_instrument_id}\' and empty($formValues.hidden_CreditCard)}\n{ts}Paid By{/ts}: {contribution.payment_instrument_id:label}\n{if \'{contribution.check_number}\'}\n{ts}Check Number{/ts}: {contribution.check_number}\n{/if}\n{/if}\n{if \'{contribution.trxn_id}\'}\n{ts}Transaction ID{/ts}: {contribution.trxn_id}\n{/if}\n\n{if !empty($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 !empty($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 !empty($softCreditTypes) and !empty($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 !empty($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 !empty($fulfilled_date)}\n{ts}Sent{/ts}: {$fulfilled_date|crmDate}\n{/if}\n{/if}\n','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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 <table id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left; width:100%; max-width:700px; padding:0; margin:0; border:0px;\">\n\n <!-- BEGIN HEADER -->\n <!-- You can add table row(s) here with logo or other header elements -->\n <!-- END HEADER -->\n\n <!-- BEGIN CONTENT -->\n\n <tr>\n <td>\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}<p>{$greeting},</p>{/if}\n {if !empty($formValues.receipt_text)}\n <p>{$formValues.receipt_text|htmlize}</p>\n {else}\n <p>{ts}Below you will find a receipt for this contribution.{/ts}</p>\n {/if}\n </td>\n </tr>\n <tr>\n <td>\n <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n <tr>\n <th {$headerStyle}>\n {ts}Contribution Information{/ts}\n </th>\n </tr>\n <tr>\n <td {$labelStyle}>\n {ts}Contributor Name{/ts}\n </td>\n <td {$valueStyle}>\n {contact.display_name}\n </td>\n </tr>\n <tr>\n {if \'{contribution.financial_type_id}\'}\n <td {$labelStyle}>\n {ts}Financial Type{/ts}\n </td>\n <td {$valueStyle}>\n {contribution.financial_type_id:label}\n </td>\n {/if}\n </tr>\n\n {if $isShowLineItems}\n <tr>\n <td colspan=\"2\" {$valueStyle}>\n <table>\n <tr>\n <th>{ts}Item{/ts}</th>\n <th>{ts}Qty{/ts}</th>\n <th>{ts}Each{/ts}</th>\n {if $isShowTax && \'{contribution.tax_amount|raw}\' !== \'0.00\'}\n <th>{ts}Subtotal{/ts}</th>\n <th>{ts}Tax Rate{/ts}</th>\n <th>{ts}Tax Amount{/ts}</th>\n {/if}\n <th>{ts}Total{/ts}</th>\n </tr>\n {foreach from=$lineItems item=line}\n <tr>\n <td>\n {$line.title}\n </td>\n <td>\n {$line.qty}\n </td>\n <td>\n {$line.unit_price|crmMoney:\'{contribution.currency}\'}\n </td>\n {if $isShowTax && \'{contribution.tax_amount|raw}\' !== \'0.00\'}\n <td>\n {$line.unit_price*$line.qty|crmMoney:\'{contribution.currency}\'}\n </td>\n {if $line.tax_rate || $line.tax_amount != \"\"}\n <td>\n {$line.tax_rate|string_format:\"%.2f\"}%\n </td>\n <td>\n {$line.tax_amount|crmMoney:\'{contribution.currency}\'}\n </td>\n {else}\n <td></td>\n <td></td>\n {/if}\n {/if}\n <td>\n {$line.line_total+$line.tax_amount|crmMoney:\'{contribution.currency}\'}\n </td>\n </tr>\n {/foreach}\n </table>\n </td>\n </tr>\n\n {/if}\n {if $isShowTax && \'{contribution.tax_amount|raw}\' !== \'0.00\'}\n <tr>\n <td {$labelStyle}>\n {ts} Amount before Tax : {/ts}\n </td>\n <td {$valueStyle}>\n {$formValues.total_amount-$totalTaxAmount|crmMoney:\'{contribution.currency}\'}\n </td>\n </tr>\n\n {foreach from=$taxRateBreakdown item=taxDetail key=taxRate}\n <tr>\n <td>{if $taxRate == 0}{ts}No{/ts} {$taxTerm}{else}{$taxTerm} {$taxDetail.percentage}%{/if}</td>\n <td>{$taxDetail.amount|crmMoney:\'{contribution.currency}\'}</td>\n </tr>\n {/foreach}\n {/if}\n\n {if $isShowTax}\n <tr>\n <td {$labelStyle}>\n {ts}Total Tax Amount{/ts}\n </td>\n <td {$valueStyle}>\n {contribution.tax_amount}\n </td>\n </tr>\n {/if}\n\n <tr>\n <td {$labelStyle}>\n {ts}Total Amount{/ts}\n </td>\n <td {$valueStyle}>\n {contribution.total_amount}\n </td>\n </tr>\n\n {if \'{contribution.receive_date}\'}\n <tr>\n <td {$labelStyle}>\n {ts}Date Received{/ts}\n </td>\n <td {$valueStyle}>\n {contribution.receive_date|crmDate:\"shortdate\"}\n </td>\n </tr>\n {/if}\n\n {if \'{contribution.receipt_date}\'}\n <tr>\n <td {$labelStyle}>\n {ts}Receipt Date{/ts}\n </td>\n <td {$valueStyle}>\n {contribution.receipt_date|crmDate:\"shortdate\"}\n </td>\n </tr>\n {/if}\n\n {if \'{contribution.payment_instrument_id}\' and empty($formValues.hidden_CreditCard)}\n <tr>\n <td {$labelStyle}>\n {ts}Paid By{/ts}\n </td>\n <td {$valueStyle}>\n {contribution.payment_instrument_id:label}\n </td>\n </tr>\n {if \'{contribution.check_number}\'}\n <tr>\n <td {$labelStyle}>\n {ts}Check Number{/ts}\n </td>\n <td {$valueStyle}>\n {contribution.check_number}\n </td>\n </tr>\n {/if}\n {/if}\n\n {if \'{contribution.trxn_id}\'}\n <tr>\n <td {$labelStyle}>\n {ts}Transaction ID{/ts}\n </td>\n <td {$valueStyle}>\n {contribution.trxn_id}\n </td>\n </tr>\n {/if}\n\n {if !empty($ccContribution)}\n <tr>\n <th {$headerStyle}>\n {ts}Billing Name and Address{/ts}\n </th>\n </tr>\n <tr>\n <td colspan=\"2\" {$valueStyle}>\n {$billingName}<br />\n {$address|nl2br}\n </td>\n </tr>\n <tr>\n <th {$headerStyle}>\n {ts}Credit Card Information{/ts}\n </th>\n </tr>\n <tr>\n <td colspan=\"2\" {$valueStyle}>\n {$credit_card_type}<br />\n {$credit_card_number}<br />\n {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n </td>\n </tr>\n {/if}\n\n {if !empty($softCreditTypes) and !empty($softCredits)}\n {foreach from=$softCreditTypes item=softCreditType key=n}\n <tr>\n <th {$headerStyle}>\n {$softCreditType}\n </th>\n </tr>\n {foreach from=$softCredits.$n item=value key=label}\n <tr>\n <td {$labelStyle}>\n {$label}\n </td>\n <td {$valueStyle}>\n {$value}\n </td>\n </tr>\n {/foreach}\n {/foreach}\n {/if}\n\n {if !empty($customGroup)}\n {foreach from=$customGroup item=value key=customName}\n <tr>\n <th {$headerStyle}>\n {$customName}\n </th>\n </tr>\n {foreach from=$value item=v key=n}\n <tr>\n <td {$labelStyle}>\n {$n}\n </td>\n <td {$valueStyle}>\n {$v}\n </td>\n </tr>\n {/foreach}\n {/foreach}\n {/if}\n\n {if !empty($formValues.product_name)}\n <tr>\n <th {$headerStyle}>\n {ts}Premium Information{/ts}\n </th>\n </tr>\n <tr>\n <td colspan=\"2\" {$labelStyle}>\n {$formValues.product_name}\n </td>\n </tr>\n {if $formValues.product_option}\n <tr>\n <td {$labelStyle}>\n {ts}Option{/ts}\n </td>\n <td {$valueStyle}>\n {$formValues.product_option}\n </td>\n </tr>\n {/if}\n {if $formValues.product_sku}\n <tr>\n <td {$labelStyle}>\n {ts}SKU{/ts}\n </td>\n <td {$valueStyle}>\n {$formValues.product_sku}\n </td>\n </tr>\n {/if}\n {if !empty($fulfilled_date)}\n <tr>\n <td {$labelStyle}>\n {ts}Sent{/ts}\n </td>\n <td {$valueStyle}>\n {$fulfilled_date|truncate:10:\'\'|crmDate}\n </td>\n </tr>\n {/if}\n {/if}\n\n </table>\n </td>\n </tr>\n\n </table>\n\n</body>\n</html>\n',1,815,'contribution_offline_receipt',1,0,0,NULL), (6,'Contributions - Receipt (off-line)','{ts}Contribution Receipt{/ts} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\n\n{if !empty($formValues.receipt_text)}\n{$formValues.receipt_text}\n{else}{ts}Below you will find a receipt for this contribution.{/ts}{/if}\n\n===========================================================\n{ts}Contribution Information{/ts}\n\n===========================================================\n{ts}Contributor{/ts}: {contact.display_name}\n{if \'{contribution.financial_type_id}\'}\n{ts}Financial Type{/ts}: {contribution.financial_type_id:label}\n{/if}\n{if $isShowLineItems}\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{if $isShowTax && \'{contribution.tax_amount|raw}\' !== \'0.00\'}\n{capture assign=ts_subtotal}{ts}Subtotal{/ts}{/capture}\n{capture assign=ts_taxRate}{ts}Tax Rate{/ts}{/capture}\n{capture assign=ts_taxAmount}{ts}Tax Amount{/ts}{/capture}\n{/if}\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\"} {if $isShowTax && \'{contribution.tax_amount|raw}\' !== \'0.00\'} {$ts_subtotal|string_format:\"%10s\"} {$ts_taxRate} {$ts_taxAmount|string_format:\"%10s\"} {/if} {$ts_total|string_format:\"%10s\"}\n----------------------------------------------------------\n{foreach from=$lineItems item=line}\n{capture assign=ts_item}{$line.title}{/capture}{$ts_item|truncate:30:\"...\"|string_format:\"%-30s\"} {$line.qty|string_format:\"%5s\"} {$line.unit_price|crmMoney:\'{contribution.currency}\'|string_format:\"%10s\"} {if $isShowTax && \'{contribution.tax_amount|raw}\' !== \'0.00\'}{$line.unit_price*$line.qty|crmMoney:\'{contribution.currency}\'|string_format:\"%10s\"} {if $line.tax_rate || $line.tax_amount != \"\"} {$line.tax_rate|string_format:\"%.2f\"} % {$line.tax_amount|crmMoney:\'{contribution.currency}\'|string_format:\"%10s\"} {else} {/if} {/if} {$line.line_total+$line.tax_amount|crmMoney:\'{contribution.currency}\'|string_format:\"%10s\"}\n{/foreach}\n{/if}\n\n\n{if $isShowTax && \'{contribution.tax_amount|raw}\' !== \'0.00\'}\n{ts}Amount before Tax{/ts} : {$formValues.total_amount-$totalTaxAmount|crmMoney:$currency}\n{/if}\n{foreach from=$taxRateBreakdown item=taxDetail key=taxRate}\n{if $taxRate == 0}{ts}No{/ts} {$taxTerm}{else}{$taxTerm} {$taxDetail.percentage}%{/if} : {$taxDetail.amount|crmMoney:\'{contribution.currency}\'}\n{/foreach}\n\n{if $isShowTax}\n{ts}Total Tax Amount{/ts} : {contribution.tax_amount}\n{/if}\n{ts}Total Amount{/ts} : {contribution.total_amount}\n{if \'{contribution.receive_date}\'}\n{ts}Date Received{/ts}: {contribution.receive_date|crmDate:\"shortdate\"}\n{/if}\n{if \'{contribution.receipt_date}\'}\n{ts}Receipt Date{/ts}: {contribution.receipt_date|crmDate:\"shortdate\"}\n{/if}\n{if \'{contribution.payment_instrument_id}\' and empty($formValues.hidden_CreditCard)}\n{ts}Paid By{/ts}: {contribution.payment_instrument_id:label}\n{if \'{contribution.check_number}\'}\n{ts}Check Number{/ts}: {contribution.check_number}\n{/if}\n{/if}\n{if \'{contribution.trxn_id}\'}\n{ts}Transaction ID{/ts}: {contribution.trxn_id}\n{/if}\n\n{if !empty($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 !empty($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 !empty($softCreditTypes) and !empty($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 !empty($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 !empty($fulfilled_date)}\n{ts}Sent{/ts}: {$fulfilled_date|crmDate}\n{/if}\n{/if}\n','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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 <table id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left; width:100%; max-width:700px; padding:0; margin:0; border:0px;\">\n\n <!-- BEGIN HEADER -->\n <!-- You can add table row(s) here with logo or other header elements -->\n <!-- END HEADER -->\n\n <!-- BEGIN CONTENT -->\n\n <tr>\n <td>\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}<p>{$greeting},</p>{/if}\n {if !empty($formValues.receipt_text)}\n <p>{$formValues.receipt_text|htmlize}</p>\n {else}\n <p>{ts}Below you will find a receipt for this contribution.{/ts}</p>\n {/if}\n </td>\n </tr>\n <tr>\n <td>\n <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n <tr>\n <th {$headerStyle}>\n {ts}Contribution Information{/ts}\n </th>\n </tr>\n <tr>\n <td {$labelStyle}>\n {ts}Contributor Name{/ts}\n </td>\n <td {$valueStyle}>\n {contact.display_name}\n </td>\n </tr>\n <tr>\n {if \'{contribution.financial_type_id}\'}\n <td {$labelStyle}>\n {ts}Financial Type{/ts}\n </td>\n <td {$valueStyle}>\n {contribution.financial_type_id:label}\n </td>\n {/if}\n </tr>\n\n {if $isShowLineItems}\n <tr>\n <td colspan=\"2\" {$valueStyle}>\n <table>\n <tr>\n <th>{ts}Item{/ts}</th>\n <th>{ts}Qty{/ts}</th>\n <th>{ts}Each{/ts}</th>\n {if $isShowTax && \'{contribution.tax_amount|raw}\' !== \'0.00\'}\n <th>{ts}Subtotal{/ts}</th>\n <th>{ts}Tax Rate{/ts}</th>\n <th>{ts}Tax Amount{/ts}</th>\n {/if}\n <th>{ts}Total{/ts}</th>\n </tr>\n {foreach from=$lineItems item=line}\n <tr>\n <td>\n {$line.title}\n </td>\n <td>\n {$line.qty}\n </td>\n <td>\n {$line.unit_price|crmMoney:\'{contribution.currency}\'}\n </td>\n {if $isShowTax && \'{contribution.tax_amount|raw}\' !== \'0.00\'}\n <td>\n {$line.unit_price*$line.qty|crmMoney:\'{contribution.currency}\'}\n </td>\n {if $line.tax_rate || $line.tax_amount != \"\"}\n <td>\n {$line.tax_rate|string_format:\"%.2f\"}%\n </td>\n <td>\n {$line.tax_amount|crmMoney:\'{contribution.currency}\'}\n </td>\n {else}\n <td></td>\n <td></td>\n {/if}\n {/if}\n <td>\n {$line.line_total+$line.tax_amount|crmMoney:\'{contribution.currency}\'}\n </td>\n </tr>\n {/foreach}\n </table>\n </td>\n </tr>\n\n {/if}\n {if $isShowTax && \'{contribution.tax_amount|raw}\' !== \'0.00\'}\n <tr>\n <td {$labelStyle}>\n {ts} Amount before Tax : {/ts}\n </td>\n <td {$valueStyle}>\n {$formValues.total_amount-$totalTaxAmount|crmMoney:\'{contribution.currency}\'}\n </td>\n </tr>\n\n {foreach from=$taxRateBreakdown item=taxDetail key=taxRate}\n <tr>\n <td>{if $taxRate == 0}{ts}No{/ts} {$taxTerm}{else}{$taxTerm} {$taxDetail.percentage}%{/if}</td>\n <td>{$taxDetail.amount|crmMoney:\'{contribution.currency}\'}</td>\n </tr>\n {/foreach}\n {/if}\n\n {if $isShowTax}\n <tr>\n <td {$labelStyle}>\n {ts}Total Tax Amount{/ts}\n </td>\n <td {$valueStyle}>\n {contribution.tax_amount}\n </td>\n </tr>\n {/if}\n\n <tr>\n <td {$labelStyle}>\n {ts}Total Amount{/ts}\n </td>\n <td {$valueStyle}>\n {contribution.total_amount}\n </td>\n </tr>\n\n {if \'{contribution.receive_date}\'}\n <tr>\n <td {$labelStyle}>\n {ts}Date Received{/ts}\n </td>\n <td {$valueStyle}>\n {contribution.receive_date|crmDate:\"shortdate\"}\n </td>\n </tr>\n {/if}\n\n {if \'{contribution.receipt_date}\'}\n <tr>\n <td {$labelStyle}>\n {ts}Receipt Date{/ts}\n </td>\n <td {$valueStyle}>\n {contribution.receipt_date|crmDate:\"shortdate\"}\n </td>\n </tr>\n {/if}\n\n {if \'{contribution.payment_instrument_id}\' and empty($formValues.hidden_CreditCard)}\n <tr>\n <td {$labelStyle}>\n {ts}Paid By{/ts}\n </td>\n <td {$valueStyle}>\n {contribution.payment_instrument_id:label}\n </td>\n </tr>\n {if \'{contribution.check_number}\'}\n <tr>\n <td {$labelStyle}>\n {ts}Check Number{/ts}\n </td>\n <td {$valueStyle}>\n {contribution.check_number}\n </td>\n </tr>\n {/if}\n {/if}\n\n {if \'{contribution.trxn_id}\'}\n <tr>\n <td {$labelStyle}>\n {ts}Transaction ID{/ts}\n </td>\n <td {$valueStyle}>\n {contribution.trxn_id}\n </td>\n </tr>\n {/if}\n\n {if !empty($ccContribution)}\n <tr>\n <th {$headerStyle}>\n {ts}Billing Name and Address{/ts}\n </th>\n </tr>\n <tr>\n <td colspan=\"2\" {$valueStyle}>\n {$billingName}<br />\n {$address|nl2br}\n </td>\n </tr>\n <tr>\n <th {$headerStyle}>\n {ts}Credit Card Information{/ts}\n </th>\n </tr>\n <tr>\n <td colspan=\"2\" {$valueStyle}>\n {$credit_card_type}<br />\n {$credit_card_number}<br />\n {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n </td>\n </tr>\n {/if}\n\n {if !empty($softCreditTypes) and !empty($softCredits)}\n {foreach from=$softCreditTypes item=softCreditType key=n}\n <tr>\n <th {$headerStyle}>\n {$softCreditType}\n </th>\n </tr>\n {foreach from=$softCredits.$n item=value key=label}\n <tr>\n <td {$labelStyle}>\n {$label}\n </td>\n <td {$valueStyle}>\n {$value}\n </td>\n </tr>\n {/foreach}\n {/foreach}\n {/if}\n\n {if !empty($customGroup)}\n {foreach from=$customGroup item=value key=customName}\n <tr>\n <th {$headerStyle}>\n {$customName}\n </th>\n </tr>\n {foreach from=$value item=v key=n}\n <tr>\n <td {$labelStyle}>\n {$n}\n </td>\n <td {$valueStyle}>\n {$v}\n </td>\n </tr>\n {/foreach}\n {/foreach}\n {/if}\n\n {if !empty($formValues.product_name)}\n <tr>\n <th {$headerStyle}>\n {ts}Premium Information{/ts}\n </th>\n </tr>\n <tr>\n <td colspan=\"2\" {$labelStyle}>\n {$formValues.product_name}\n </td>\n </tr>\n {if $formValues.product_option}\n <tr>\n <td {$labelStyle}>\n {ts}Option{/ts}\n </td>\n <td {$valueStyle}>\n {$formValues.product_option}\n </td>\n </tr>\n {/if}\n {if $formValues.product_sku}\n <tr>\n <td {$labelStyle}>\n {ts}SKU{/ts}\n </td>\n <td {$valueStyle}>\n {$formValues.product_sku}\n </td>\n </tr>\n {/if}\n {if !empty($fulfilled_date)}\n <tr>\n <td {$labelStyle}>\n {ts}Sent{/ts}\n </td>\n <td {$valueStyle}>\n {$fulfilled_date|truncate:10:\'\'|crmDate}\n </td>\n </tr>\n {/if}\n {/if}\n\n </table>\n </td>\n </tr>\n\n </table>\n\n</body>\n</html>\n',1,815,'contribution_offline_receipt',0,1,0,NULL), - (7,'Contributions - Receipt (on-line)','{if $is_pay_later}{ts}Invoice{/ts}{else}{ts}Receipt{/ts}{/if} - {$title} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\n{if !empty($receipt_text)}\n{$receipt_text}\n{/if}\n{if $is_pay_later}\n\n===========================================================\n{$pay_later_receipt}\n===========================================================\n{/if}\n\n{if \'{contribution.total_amount|raw}\' !== \'0.00\'}\n===========================================================\n{ts}Contribution Information{/ts}\n\n===========================================================\n{if $isShowLineItems}\n\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{if $isShowTax && \'{contribution.tax_amount|raw}\' !== \'0.00\'}\n{capture assign=ts_subtotal}{ts}Subtotal{/ts}{/capture}\n{capture assign=ts_taxRate}{ts}Tax Rate{/ts}{/capture}\n{capture assign=ts_taxAmount}{ts}Tax Amount{/ts}{/capture}\n{/if}\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\"} {if $isShowTax && \'{contribution.tax_amount|raw}\' !== \'0.00\'} {$ts_subtotal|string_format:\"%10s\"} {$ts_taxRate} {$ts_taxAmount|string_format:\"%10s\"} {/if} {$ts_total|string_format:\"%10s\"}\n----------------------------------------------------------\n{foreach from=$lineItems item=line}\n{capture assign=ts_item}{$line.title}{/capture}{$ts_item|truncate:30:\"...\"|string_format:\"%-30s\"} {$line.qty|string_format:\"%5s\"} {$line.unit_price|crmMoney:$currency|string_format:\"%10s\"} {if !empty($dataArray)}{$line.unit_price*$line.qty|crmMoney:$currency|string_format:\"%10s\"} {if $line.tax_rate || $line.tax_amount != \"\"} {$line.tax_rate|string_format:\"%.2f\"} % {$line.tax_amount|crmMoney:$currency|string_format:\"%10s\"} {else} {/if} {/if} {$line.line_total+$line.tax_amount|crmMoney:$currency|string_format:\"%10s\"}\n{/foreach}\n\n{if $isShowTax && \'{contribution.tax_amount|raw}\' !== \'0.00\'}\n{ts}Amount before Tax{/ts}: {$amount-$totalTaxAmount|crmMoney:$currency}\n {foreach from=$taxRateBreakdown item=taxDetail key=taxRate}\n {if $taxRate == 0}{ts}No{/ts} {$taxTerm}{else}{$taxTerm} {$taxDetail.percentage}%{/if} : {$taxDetail.amount|crmMoney:\'{contribution.currency}\'}\n {/foreach}\n{/if}\n\n{if $isShowTax}\n{ts}Total Tax Amount{/ts}: {contribution.tax_amount|crmMoney}\n{/if}\n\n{ts}Total Amount{/ts}: {contribution.total_amount}\n{else}\n{ts}Amount{/ts}: {contribution.total_amount} {if \'{contribution.amount_level}\'} - {contribution.amount_level}{/if}\n{/if}\n{/if}\n{if !empty($receive_date)}\n\n{ts}Date{/ts}: {$receive_date|crmDate}\n{/if}\n{if !empty($is_monetary) and !empty($trxn_id)}\n{ts}Transaction #{/ts}: {$trxn_id}\n{/if}\n\n{if !empty($is_recur)}\n{ts}This is a recurring contribution.{/ts}\n\n{if $cancelSubscriptionUrl}\n{ts}You can cancel future contributions at:{/ts}\n\n{$cancelSubscriptionUrl}\n\n{/if}\n\n{if $updateSubscriptionBillingUrl}\n{ts}You can update billing details for this recurring contribution at:{/ts}\n\n{$updateSubscriptionBillingUrl}\n\n{/if}\n\n{if $updateSubscriptionUrl}\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{/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{elseif !empty($softCreditTypes) and !empty($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{if !empty($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 !empty($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 !empty($billingName)}\n===========================================================\n{ts}Billing Name and Address{/ts}\n\n===========================================================\n{$billingName}\n{$address}\n\n{$email}\n{elseif !empty($email)}\n===========================================================\n{ts}Registered Email{/ts}\n\n===========================================================\n{$email}\n{/if} {* End billingName or Email*}\n{if !empty($credit_card_type)}\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 !empty($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 !empty($contact_email) OR !empty($contact_phone)}\n\n{ts}For information about this premium, contact:{/ts}\n\n{if !empty($contact_email)}\n {$contact_email}\n{/if}\n{if !empty($contact_phone)}\n {$contact_phone}\n{/if}\n{/if}\n{if !empty($is_deductible) AND !empty($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 !empty($customPre)}\n===========================================================\n{$customPre_grouptitle}\n\n===========================================================\n{foreach from=$customPre item=customValue key=customName}\n{if ( !empty($trackingFields) and ! in_array( $customName, $trackingFields ) ) or empty($trackingFields)}\n {$customName}: {$customValue}\n{/if}\n{/foreach}\n{/if}\n\n\n{if !empty($customPost)}\n===========================================================\n{$customPost_grouptitle}\n\n===========================================================\n{foreach from=$customPost item=customValue key=customName}\n{if ( !empty($trackingFields) and ! in_array( $customName, $trackingFields ) ) or empty($trackingFields)}\n {$customName}: {$customValue}\n{/if}\n{/foreach}\n{/if}\n','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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<table id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left; width:100%; max-width:700px; padding:0; margin:0; border:0px;\">\n\n <!-- BEGIN HEADER -->\n <!-- You can add table row(s) here with logo or other header elements -->\n <!-- END HEADER -->\n\n <!-- BEGIN CONTENT -->\n\n <tr>\n <td>\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}<p>{$greeting},</p>{/if}\n {if !empty($receipt_text)}\n <p>{$receipt_text|htmlize}</p>\n {/if}\n\n {if $is_pay_later}\n <p>{$pay_later_receipt}</p> {* FIXME: this might be text rather than HTML *}\n {/if}\n\n </td>\n </tr>\n</table>\n<table style=\"width:100%; max-width:500px; border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse;\">\n {if \'{contribution.total_amount|raw}\' !== \'0.00\'}\n <tr>\n <th {$headerStyle}>\n {ts}Contribution Information{/ts}\n </th>\n </tr>\n\n {if $isShowLineItems}\n <tr>\n <td colspan=\"2\" {$valueStyle}>\n <table>\n <tr>\n <th>{ts}Item{/ts}</th>\n <th>{ts}Qty{/ts}</th>\n <th>{ts}Each{/ts}</th>\n {if $isShowTax && \'{contribution.tax_amount|raw}\' !== \'0.00\'}\n <th>{ts}Subtotal{/ts}</th>\n <th>{ts}Tax Rate{/ts}</th>\n <th>{ts}Tax Amount{/ts}</th>\n {/if}\n <th>{ts}Total{/ts}</th>\n </tr>\n {foreach from=$lineItems item=line}\n <tr>\n <td>{$line.title}</td>\n <td>{$line.qty}</td>\n <td>{$line.unit_price|crmMoney:$currency}</td>\n {if $isShowTax && \'{contribution.tax_amount|raw}\' !== \'0.00\'}\n <td>{$line.unit_price*$line.qty|crmMoney:$currency}</td>\n {if $line.tax_rate || $line.tax_amount != \"\"}\n <td>{$line.tax_rate|string_format:\"%.2f\"}%</td>\n <td>{$line.tax_amount|crmMoney:$currency}</td>\n {else}\n <td></td>\n <td></td>\n {/if}\n {/if}\n <td>\n {$line.line_total+$line.tax_amount|crmMoney:$currency}\n </td>\n </tr>\n {/foreach}\n </table>\n </td>\n </tr>\n\n {if $isShowTax && \'{contribution.tax_amount|raw}\' !== \'0.00\'}\n <tr>\n <td {$labelStyle}>\n {ts} Amount before Tax : {/ts}\n </td>\n <td {$valueStyle}>\n {$amount-$totalTaxAmount|crmMoney:$currency}\n </td>\n </tr>\n\n {foreach from=$taxRateBreakdown item=taxDetail key=taxRate}\n <tr>\n <td>{if $taxRate == 0}{ts}No{/ts} {$taxTerm}{else}{$taxTerm} {$taxDetail.percentage}%{/if}</td>\n <td>{$taxDetail.amount|crmMoney:\'{contribution.currency}\'}</td>\n </tr>\n {/foreach}\n\n {/if}\n {if $isShowTax}\n <tr>\n <td {$labelStyle}>\n {ts}Total Tax{/ts}\n </td>\n <td {$valueStyle}>\n {contribution.tax_amount}\n </td>\n </tr>\n {/if}\n <tr>\n <td {$labelStyle}>\n {ts}Total Amount{/ts}\n </td>\n <td {$valueStyle}>\n {contribution.total_amount}\n </td>\n </tr>\n {else}\n {if \'{contribution.tax_amount|raw}\' !== \'0.00\'}\n <tr>\n <td {$labelStyle}>\n {ts}Total Tax Amount{/ts}\n </td>\n <td {$valueStyle}>\n {contribution.tax_amount}\n </td>\n </tr>\n {/if}\n <tr>\n <td {$labelStyle}>\n {ts}Amount{/ts}\n </td>\n <td {$valueStyle}>\n {contribution.total_amount} {if \'{contribution.amount_level}\'} - {contribution.amount_level}{/if}\n </td>\n </tr>\n\n {/if}\n\n {/if}\n\n\n {if !empty($receive_date)}\n <tr>\n <td {$labelStyle}>\n {ts}Date{/ts}\n </td>\n <td {$valueStyle}>\n {$receive_date|crmDate}\n </td>\n </tr>\n {/if}\n\n {if !empty($is_monetary) and !empty($trxn_id)}\n <tr>\n <td {$labelStyle}>\n {ts}Transaction #{/ts}\n </td>\n <td {$valueStyle}>\n {$trxn_id}\n </td>\n </tr>\n {/if}\n\n {if !empty($is_recur)}\n <tr>\n <td colspan=\"2\" {$labelStyle}>\n {ts}This is a recurring contribution.{/ts}\n {if $cancelSubscriptionUrl}\n {ts 1=$cancelSubscriptionUrl}You can cancel future contributions by <a href=\"%1\">visiting this web page</a>.{/ts}\n {/if}\n </td>\n </tr>\n {if $updateSubscriptionBillingUrl}\n <tr>\n <td colspan=\"2\" {$labelStyle}>\n {ts 1=$updateSubscriptionBillingUrl}You can update billing details for this recurring contribution by <a href=\"%1\">visiting this web page</a>.{/ts}\n </td>\n </tr>\n {/if}\n {if $updateSubscriptionUrl}\n <tr>\n <td colspan=\"2\" {$labelStyle}>\n {ts 1=$updateSubscriptionUrl}You can update recurring contribution amount or change the number of installments for this recurring contribution by <a href=\"%1\">visiting this web page</a>.{/ts}\n </td>\n </tr>\n {/if}\n {/if}\n\n {if $honor_block_is_active}\n <tr>\n <th {$headerStyle}>\n {$soft_credit_type}\n </th>\n </tr>\n {foreach from=$honoreeProfile item=value key=label}\n <tr>\n <td {$labelStyle}>\n {$label}\n </td>\n <td {$valueStyle}>\n {$value}\n </td>\n </tr>\n {/foreach}\n {elseif !empty($softCreditTypes) and !empty($softCredits)}\n {foreach from=$softCreditTypes item=softCreditType key=n}\n <tr>\n <th {$headerStyle}>\n {$softCreditType}\n </th>\n </tr>\n {foreach from=$softCredits.$n item=value key=label}\n <tr>\n <td {$labelStyle}>\n {$label}\n </td>\n <td {$valueStyle}>\n {$value}\n </td>\n </tr>\n {/foreach}\n {/foreach}\n {/if}\n\n {if !empty($pcpBlock)}\n <tr>\n <th {$headerStyle}>\n {ts}Personal Campaign Page{/ts}\n </th>\n </tr>\n <tr>\n <td {$labelStyle}>\n {ts}Display In Honor Roll{/ts}\n </td>\n <td {$valueStyle}>\n {if $pcp_display_in_roll}{ts}Yes{/ts}{else}{ts}No{/ts}{/if}\n </td>\n </tr>\n {if $pcp_roll_nickname}\n <tr>\n <td {$labelStyle}>\n {ts}Nickname{/ts}\n </td>\n <td {$valueStyle}>\n {$pcp_roll_nickname}\n </td>\n </tr>\n {/if}\n {if $pcp_personal_note}\n <tr>\n <td {$labelStyle}>\n {ts}Personal Note{/ts}\n </td>\n <td {$valueStyle}>\n {$pcp_personal_note}\n </td>\n </tr>\n {/if}\n {/if}\n\n {if !empty($onBehalfProfile)}\n <tr>\n <th {$headerStyle}>\n {$onBehalfProfile_grouptitle}\n </th>\n </tr>\n {foreach from=$onBehalfProfile item=onBehalfValue key=onBehalfName}\n <tr>\n <td {$labelStyle}>\n {$onBehalfName}\n </td>\n <td {$valueStyle}>\n {$onBehalfValue}\n </td>\n </tr>\n {/foreach}\n {/if}\n\n {if !empty($isShare)}\n <tr>\n <td colspan=\"2\" {$valueStyle}>\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 </td>\n </tr>\n {/if}\n\n {if !empty($billingName)}\n <tr>\n <th {$headerStyle}>\n {ts}Billing Name and Address{/ts}\n </th>\n </tr>\n <tr>\n <td colspan=\"2\" {$valueStyle}>\n {$billingName}<br />\n {$address|nl2br}<br />\n {$email}\n </td>\n </tr>\n {elseif !empty($email)}\n <tr>\n <th {$headerStyle}>\n {ts}Registered Email{/ts}\n </th>\n </tr>\n <tr>\n <td colspan=\"2\" {$valueStyle}>\n {$email}\n </td>\n </tr>\n {/if}\n\n {if !empty($credit_card_type)}\n <tr>\n <th {$headerStyle}>\n {ts}Credit Card Information{/ts}\n </th>\n </tr>\n <tr>\n <td colspan=\"2\" {$valueStyle}>\n {$credit_card_type}<br />\n {$credit_card_number}<br />\n {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}<br />\n </td>\n </tr>\n {/if}\n\n {if !empty($selectPremium)}\n <tr>\n <th {$headerStyle}>\n {ts}Premium Information{/ts}\n </th>\n </tr>\n <tr>\n <td colspan=\"2\" {$labelStyle}>\n {$product_name}\n </td>\n </tr>\n {if $option}\n <tr>\n <td {$labelStyle}>\n {ts}Option{/ts}\n </td>\n <td {$valueStyle}>\n {$option}\n </td>\n </tr>\n {/if}\n {if $sku}\n <tr>\n <td {$labelStyle}>\n {ts}SKU{/ts}\n </td>\n <td {$valueStyle}>\n {$sku}\n </td>\n </tr>\n {/if}\n {if $start_date}\n <tr>\n <td {$labelStyle}>\n {ts}Start Date{/ts}\n </td>\n <td {$valueStyle}>\n {$start_date|crmDate}\n </td>\n </tr>\n {/if}\n {if $end_date}\n <tr>\n <td {$labelStyle}>\n {ts}End Date{/ts}\n </td>\n <td {$valueStyle}>\n {$end_date|crmDate}\n </td>\n </tr>\n {/if}\n {if !empty($contact_email) OR !empty($contact_phone)}\n <tr>\n <td colspan=\"2\" {$valueStyle}>\n <p>{ts}For information about this premium, contact:{/ts}</p>\n {if !empty($contact_email)}\n <p>{$contact_email}</p>\n {/if}\n {if !empty($contact_phone)}\n <p>{$contact_phone}</p>\n {/if}\n </td>\n </tr>\n {/if}\n {if !empty($is_deductible) AND !empty($price)}\n <tr>\n <td colspan=\"2\" {$valueStyle}>\n <p>{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}</p>\n </td>\n </tr>\n {/if}\n {/if}\n\n {if !empty($customPre)}\n <tr>\n <th {$headerStyle}>\n {$customPre_grouptitle}\n </th>\n </tr>\n {foreach from=$customPre item=customValue key=customName}\n {if (!empty($trackingFields) and ! in_array($customName, $trackingFields)) or empty($trackingFields)}\n <tr>\n <td {$labelStyle}>\n {$customName}\n </td>\n <td {$valueStyle}>\n {$customValue}\n </td>\n </tr>\n {/if}\n {/foreach}\n {/if}\n\n {if !empty($customPost)}\n <tr>\n <th {$headerStyle}>\n {$customPost_grouptitle}\n </th>\n </tr>\n {foreach from=$customPost item=customValue key=customName}\n {if (!empty($trackingFields) and ! in_array($customName, $trackingFields)) or empty($trackingFields)}\n <tr>\n <td {$labelStyle}>\n {$customName}\n </td>\n <td {$valueStyle}>\n {$customValue}\n </td>\n </tr>\n {/if}\n {/foreach}\n {/if}\n\n </table>\n\n</body>\n</html>\n',1,816,'contribution_online_receipt',1,0,0,NULL), - (8,'Contributions - Receipt (on-line)','{if $is_pay_later}{ts}Invoice{/ts}{else}{ts}Receipt{/ts}{/if} - {$title} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\n{if !empty($receipt_text)}\n{$receipt_text}\n{/if}\n{if $is_pay_later}\n\n===========================================================\n{$pay_later_receipt}\n===========================================================\n{/if}\n\n{if \'{contribution.total_amount|raw}\' !== \'0.00\'}\n===========================================================\n{ts}Contribution Information{/ts}\n\n===========================================================\n{if $isShowLineItems}\n\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{if $isShowTax && \'{contribution.tax_amount|raw}\' !== \'0.00\'}\n{capture assign=ts_subtotal}{ts}Subtotal{/ts}{/capture}\n{capture assign=ts_taxRate}{ts}Tax Rate{/ts}{/capture}\n{capture assign=ts_taxAmount}{ts}Tax Amount{/ts}{/capture}\n{/if}\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\"} {if $isShowTax && \'{contribution.tax_amount|raw}\' !== \'0.00\'} {$ts_subtotal|string_format:\"%10s\"} {$ts_taxRate} {$ts_taxAmount|string_format:\"%10s\"} {/if} {$ts_total|string_format:\"%10s\"}\n----------------------------------------------------------\n{foreach from=$lineItems item=line}\n{capture assign=ts_item}{$line.title}{/capture}{$ts_item|truncate:30:\"...\"|string_format:\"%-30s\"} {$line.qty|string_format:\"%5s\"} {$line.unit_price|crmMoney:$currency|string_format:\"%10s\"} {if !empty($dataArray)}{$line.unit_price*$line.qty|crmMoney:$currency|string_format:\"%10s\"} {if $line.tax_rate || $line.tax_amount != \"\"} {$line.tax_rate|string_format:\"%.2f\"} % {$line.tax_amount|crmMoney:$currency|string_format:\"%10s\"} {else} {/if} {/if} {$line.line_total+$line.tax_amount|crmMoney:$currency|string_format:\"%10s\"}\n{/foreach}\n\n{if $isShowTax && \'{contribution.tax_amount|raw}\' !== \'0.00\'}\n{ts}Amount before Tax{/ts}: {$amount-$totalTaxAmount|crmMoney:$currency}\n {foreach from=$taxRateBreakdown item=taxDetail key=taxRate}\n {if $taxRate == 0}{ts}No{/ts} {$taxTerm}{else}{$taxTerm} {$taxDetail.percentage}%{/if} : {$taxDetail.amount|crmMoney:\'{contribution.currency}\'}\n {/foreach}\n{/if}\n\n{if $isShowTax}\n{ts}Total Tax Amount{/ts}: {contribution.tax_amount|crmMoney}\n{/if}\n\n{ts}Total Amount{/ts}: {contribution.total_amount}\n{else}\n{ts}Amount{/ts}: {contribution.total_amount} {if \'{contribution.amount_level}\'} - {contribution.amount_level}{/if}\n{/if}\n{/if}\n{if !empty($receive_date)}\n\n{ts}Date{/ts}: {$receive_date|crmDate}\n{/if}\n{if !empty($is_monetary) and !empty($trxn_id)}\n{ts}Transaction #{/ts}: {$trxn_id}\n{/if}\n\n{if !empty($is_recur)}\n{ts}This is a recurring contribution.{/ts}\n\n{if $cancelSubscriptionUrl}\n{ts}You can cancel future contributions at:{/ts}\n\n{$cancelSubscriptionUrl}\n\n{/if}\n\n{if $updateSubscriptionBillingUrl}\n{ts}You can update billing details for this recurring contribution at:{/ts}\n\n{$updateSubscriptionBillingUrl}\n\n{/if}\n\n{if $updateSubscriptionUrl}\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{/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{elseif !empty($softCreditTypes) and !empty($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{if !empty($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 !empty($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 !empty($billingName)}\n===========================================================\n{ts}Billing Name and Address{/ts}\n\n===========================================================\n{$billingName}\n{$address}\n\n{$email}\n{elseif !empty($email)}\n===========================================================\n{ts}Registered Email{/ts}\n\n===========================================================\n{$email}\n{/if} {* End billingName or Email*}\n{if !empty($credit_card_type)}\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 !empty($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 !empty($contact_email) OR !empty($contact_phone)}\n\n{ts}For information about this premium, contact:{/ts}\n\n{if !empty($contact_email)}\n {$contact_email}\n{/if}\n{if !empty($contact_phone)}\n {$contact_phone}\n{/if}\n{/if}\n{if !empty($is_deductible) AND !empty($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 !empty($customPre)}\n===========================================================\n{$customPre_grouptitle}\n\n===========================================================\n{foreach from=$customPre item=customValue key=customName}\n{if ( !empty($trackingFields) and ! in_array( $customName, $trackingFields ) ) or empty($trackingFields)}\n {$customName}: {$customValue}\n{/if}\n{/foreach}\n{/if}\n\n\n{if !empty($customPost)}\n===========================================================\n{$customPost_grouptitle}\n\n===========================================================\n{foreach from=$customPost item=customValue key=customName}\n{if ( !empty($trackingFields) and ! in_array( $customName, $trackingFields ) ) or empty($trackingFields)}\n {$customName}: {$customValue}\n{/if}\n{/foreach}\n{/if}\n','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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<table id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left; width:100%; max-width:700px; padding:0; margin:0; border:0px;\">\n\n <!-- BEGIN HEADER -->\n <!-- You can add table row(s) here with logo or other header elements -->\n <!-- END HEADER -->\n\n <!-- BEGIN CONTENT -->\n\n <tr>\n <td>\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}<p>{$greeting},</p>{/if}\n {if !empty($receipt_text)}\n <p>{$receipt_text|htmlize}</p>\n {/if}\n\n {if $is_pay_later}\n <p>{$pay_later_receipt}</p> {* FIXME: this might be text rather than HTML *}\n {/if}\n\n </td>\n </tr>\n</table>\n<table style=\"width:100%; max-width:500px; border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse;\">\n {if \'{contribution.total_amount|raw}\' !== \'0.00\'}\n <tr>\n <th {$headerStyle}>\n {ts}Contribution Information{/ts}\n </th>\n </tr>\n\n {if $isShowLineItems}\n <tr>\n <td colspan=\"2\" {$valueStyle}>\n <table>\n <tr>\n <th>{ts}Item{/ts}</th>\n <th>{ts}Qty{/ts}</th>\n <th>{ts}Each{/ts}</th>\n {if $isShowTax && \'{contribution.tax_amount|raw}\' !== \'0.00\'}\n <th>{ts}Subtotal{/ts}</th>\n <th>{ts}Tax Rate{/ts}</th>\n <th>{ts}Tax Amount{/ts}</th>\n {/if}\n <th>{ts}Total{/ts}</th>\n </tr>\n {foreach from=$lineItems item=line}\n <tr>\n <td>{$line.title}</td>\n <td>{$line.qty}</td>\n <td>{$line.unit_price|crmMoney:$currency}</td>\n {if $isShowTax && \'{contribution.tax_amount|raw}\' !== \'0.00\'}\n <td>{$line.unit_price*$line.qty|crmMoney:$currency}</td>\n {if $line.tax_rate || $line.tax_amount != \"\"}\n <td>{$line.tax_rate|string_format:\"%.2f\"}%</td>\n <td>{$line.tax_amount|crmMoney:$currency}</td>\n {else}\n <td></td>\n <td></td>\n {/if}\n {/if}\n <td>\n {$line.line_total+$line.tax_amount|crmMoney:$currency}\n </td>\n </tr>\n {/foreach}\n </table>\n </td>\n </tr>\n\n {if $isShowTax && \'{contribution.tax_amount|raw}\' !== \'0.00\'}\n <tr>\n <td {$labelStyle}>\n {ts} Amount before Tax : {/ts}\n </td>\n <td {$valueStyle}>\n {$amount-$totalTaxAmount|crmMoney:$currency}\n </td>\n </tr>\n\n {foreach from=$taxRateBreakdown item=taxDetail key=taxRate}\n <tr>\n <td>{if $taxRate == 0}{ts}No{/ts} {$taxTerm}{else}{$taxTerm} {$taxDetail.percentage}%{/if}</td>\n <td>{$taxDetail.amount|crmMoney:\'{contribution.currency}\'}</td>\n </tr>\n {/foreach}\n\n {/if}\n {if $isShowTax}\n <tr>\n <td {$labelStyle}>\n {ts}Total Tax{/ts}\n </td>\n <td {$valueStyle}>\n {contribution.tax_amount}\n </td>\n </tr>\n {/if}\n <tr>\n <td {$labelStyle}>\n {ts}Total Amount{/ts}\n </td>\n <td {$valueStyle}>\n {contribution.total_amount}\n </td>\n </tr>\n {else}\n {if \'{contribution.tax_amount|raw}\' !== \'0.00\'}\n <tr>\n <td {$labelStyle}>\n {ts}Total Tax Amount{/ts}\n </td>\n <td {$valueStyle}>\n {contribution.tax_amount}\n </td>\n </tr>\n {/if}\n <tr>\n <td {$labelStyle}>\n {ts}Amount{/ts}\n </td>\n <td {$valueStyle}>\n {contribution.total_amount} {if \'{contribution.amount_level}\'} - {contribution.amount_level}{/if}\n </td>\n </tr>\n\n {/if}\n\n {/if}\n\n\n {if !empty($receive_date)}\n <tr>\n <td {$labelStyle}>\n {ts}Date{/ts}\n </td>\n <td {$valueStyle}>\n {$receive_date|crmDate}\n </td>\n </tr>\n {/if}\n\n {if !empty($is_monetary) and !empty($trxn_id)}\n <tr>\n <td {$labelStyle}>\n {ts}Transaction #{/ts}\n </td>\n <td {$valueStyle}>\n {$trxn_id}\n </td>\n </tr>\n {/if}\n\n {if !empty($is_recur)}\n <tr>\n <td colspan=\"2\" {$labelStyle}>\n {ts}This is a recurring contribution.{/ts}\n {if $cancelSubscriptionUrl}\n {ts 1=$cancelSubscriptionUrl}You can cancel future contributions by <a href=\"%1\">visiting this web page</a>.{/ts}\n {/if}\n </td>\n </tr>\n {if $updateSubscriptionBillingUrl}\n <tr>\n <td colspan=\"2\" {$labelStyle}>\n {ts 1=$updateSubscriptionBillingUrl}You can update billing details for this recurring contribution by <a href=\"%1\">visiting this web page</a>.{/ts}\n </td>\n </tr>\n {/if}\n {if $updateSubscriptionUrl}\n <tr>\n <td colspan=\"2\" {$labelStyle}>\n {ts 1=$updateSubscriptionUrl}You can update recurring contribution amount or change the number of installments for this recurring contribution by <a href=\"%1\">visiting this web page</a>.{/ts}\n </td>\n </tr>\n {/if}\n {/if}\n\n {if $honor_block_is_active}\n <tr>\n <th {$headerStyle}>\n {$soft_credit_type}\n </th>\n </tr>\n {foreach from=$honoreeProfile item=value key=label}\n <tr>\n <td {$labelStyle}>\n {$label}\n </td>\n <td {$valueStyle}>\n {$value}\n </td>\n </tr>\n {/foreach}\n {elseif !empty($softCreditTypes) and !empty($softCredits)}\n {foreach from=$softCreditTypes item=softCreditType key=n}\n <tr>\n <th {$headerStyle}>\n {$softCreditType}\n </th>\n </tr>\n {foreach from=$softCredits.$n item=value key=label}\n <tr>\n <td {$labelStyle}>\n {$label}\n </td>\n <td {$valueStyle}>\n {$value}\n </td>\n </tr>\n {/foreach}\n {/foreach}\n {/if}\n\n {if !empty($pcpBlock)}\n <tr>\n <th {$headerStyle}>\n {ts}Personal Campaign Page{/ts}\n </th>\n </tr>\n <tr>\n <td {$labelStyle}>\n {ts}Display In Honor Roll{/ts}\n </td>\n <td {$valueStyle}>\n {if $pcp_display_in_roll}{ts}Yes{/ts}{else}{ts}No{/ts}{/if}\n </td>\n </tr>\n {if $pcp_roll_nickname}\n <tr>\n <td {$labelStyle}>\n {ts}Nickname{/ts}\n </td>\n <td {$valueStyle}>\n {$pcp_roll_nickname}\n </td>\n </tr>\n {/if}\n {if $pcp_personal_note}\n <tr>\n <td {$labelStyle}>\n {ts}Personal Note{/ts}\n </td>\n <td {$valueStyle}>\n {$pcp_personal_note}\n </td>\n </tr>\n {/if}\n {/if}\n\n {if !empty($onBehalfProfile)}\n <tr>\n <th {$headerStyle}>\n {$onBehalfProfile_grouptitle}\n </th>\n </tr>\n {foreach from=$onBehalfProfile item=onBehalfValue key=onBehalfName}\n <tr>\n <td {$labelStyle}>\n {$onBehalfName}\n </td>\n <td {$valueStyle}>\n {$onBehalfValue}\n </td>\n </tr>\n {/foreach}\n {/if}\n\n {if !empty($isShare)}\n <tr>\n <td colspan=\"2\" {$valueStyle}>\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 </td>\n </tr>\n {/if}\n\n {if !empty($billingName)}\n <tr>\n <th {$headerStyle}>\n {ts}Billing Name and Address{/ts}\n </th>\n </tr>\n <tr>\n <td colspan=\"2\" {$valueStyle}>\n {$billingName}<br />\n {$address|nl2br}<br />\n {$email}\n </td>\n </tr>\n {elseif !empty($email)}\n <tr>\n <th {$headerStyle}>\n {ts}Registered Email{/ts}\n </th>\n </tr>\n <tr>\n <td colspan=\"2\" {$valueStyle}>\n {$email}\n </td>\n </tr>\n {/if}\n\n {if !empty($credit_card_type)}\n <tr>\n <th {$headerStyle}>\n {ts}Credit Card Information{/ts}\n </th>\n </tr>\n <tr>\n <td colspan=\"2\" {$valueStyle}>\n {$credit_card_type}<br />\n {$credit_card_number}<br />\n {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}<br />\n </td>\n </tr>\n {/if}\n\n {if !empty($selectPremium)}\n <tr>\n <th {$headerStyle}>\n {ts}Premium Information{/ts}\n </th>\n </tr>\n <tr>\n <td colspan=\"2\" {$labelStyle}>\n {$product_name}\n </td>\n </tr>\n {if $option}\n <tr>\n <td {$labelStyle}>\n {ts}Option{/ts}\n </td>\n <td {$valueStyle}>\n {$option}\n </td>\n </tr>\n {/if}\n {if $sku}\n <tr>\n <td {$labelStyle}>\n {ts}SKU{/ts}\n </td>\n <td {$valueStyle}>\n {$sku}\n </td>\n </tr>\n {/if}\n {if $start_date}\n <tr>\n <td {$labelStyle}>\n {ts}Start Date{/ts}\n </td>\n <td {$valueStyle}>\n {$start_date|crmDate}\n </td>\n </tr>\n {/if}\n {if $end_date}\n <tr>\n <td {$labelStyle}>\n {ts}End Date{/ts}\n </td>\n <td {$valueStyle}>\n {$end_date|crmDate}\n </td>\n </tr>\n {/if}\n {if !empty($contact_email) OR !empty($contact_phone)}\n <tr>\n <td colspan=\"2\" {$valueStyle}>\n <p>{ts}For information about this premium, contact:{/ts}</p>\n {if !empty($contact_email)}\n <p>{$contact_email}</p>\n {/if}\n {if !empty($contact_phone)}\n <p>{$contact_phone}</p>\n {/if}\n </td>\n </tr>\n {/if}\n {if !empty($is_deductible) AND !empty($price)}\n <tr>\n <td colspan=\"2\" {$valueStyle}>\n <p>{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}</p>\n </td>\n </tr>\n {/if}\n {/if}\n\n {if !empty($customPre)}\n <tr>\n <th {$headerStyle}>\n {$customPre_grouptitle}\n </th>\n </tr>\n {foreach from=$customPre item=customValue key=customName}\n {if (!empty($trackingFields) and ! in_array($customName, $trackingFields)) or empty($trackingFields)}\n <tr>\n <td {$labelStyle}>\n {$customName}\n </td>\n <td {$valueStyle}>\n {$customValue}\n </td>\n </tr>\n {/if}\n {/foreach}\n {/if}\n\n {if !empty($customPost)}\n <tr>\n <th {$headerStyle}>\n {$customPost_grouptitle}\n </th>\n </tr>\n {foreach from=$customPost item=customValue key=customName}\n {if (!empty($trackingFields) and ! in_array($customName, $trackingFields)) or empty($trackingFields)}\n <tr>\n <td {$labelStyle}>\n {$customName}\n </td>\n <td {$valueStyle}>\n {$customValue}\n </td>\n </tr>\n {/if}\n {/foreach}\n {/if}\n\n </table>\n\n</body>\n</html>\n',1,816,'contribution_online_receipt',0,1,0,NULL), + (7,'Contributions - Receipt (on-line)','{if $is_pay_later}{ts}Invoice{/ts}{else}{ts}Receipt{/ts}{/if} - {$title} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\n{if !empty($receipt_text)}\n{$receipt_text}\n{/if}\n{if $is_pay_later}\n\n===========================================================\n{$pay_later_receipt}\n===========================================================\n{/if}\n\n{if \'{contribution.total_amount|raw}\' !== \'0.00\'}\n===========================================================\n{ts}Contribution Information{/ts}\n\n===========================================================\n{if $isShowLineItems}\n\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{if $isShowTax && \'{contribution.tax_amount|raw}\' !== \'0.00\'}\n{capture assign=ts_subtotal}{ts}Subtotal{/ts}{/capture}\n{capture assign=ts_taxRate}{ts}Tax Rate{/ts}{/capture}\n{capture assign=ts_taxAmount}{ts}Tax Amount{/ts}{/capture}\n{/if}\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\"} {if $isShowTax && \'{contribution.tax_amount|raw}\' !== \'0.00\'} {$ts_subtotal|string_format:\"%10s\"} {$ts_taxRate} {$ts_taxAmount|string_format:\"%10s\"} {/if} {$ts_total|string_format:\"%10s\"}\n----------------------------------------------------------\n{foreach from=$lineItems item=line}\n{capture assign=ts_item}{$line.title}{/capture}{$ts_item|truncate:30:\"...\"|string_format:\"%-30s\"} {$line.qty|string_format:\"%5s\"} {$line.unit_price|crmMoney:$currency|string_format:\"%10s\"} {if $isShowTax && \'{contribution.tax_amount|raw}\' !== \'0.00\'}{$line.unit_price*$line.qty|crmMoney:$currency|string_format:\"%10s\"} {if $line.tax_rate || $line.tax_amount != \"\"} {$line.tax_rate|string_format:\"%.2f\"} % {$line.tax_amount|crmMoney:$currency|string_format:\"%10s\"} {else} {/if} {/if} {$line.line_total+$line.tax_amount|crmMoney:$currency|string_format:\"%10s\"}\n{/foreach}\n\n{if $isShowTax && \'{contribution.tax_amount|raw}\' !== \'0.00\'}\n{ts}Amount before Tax{/ts}: {$amount-$totalTaxAmount|crmMoney:$currency}\n {foreach from=$taxRateBreakdown item=taxDetail key=taxRate}\n {if $taxRate == 0}{ts}No{/ts} {$taxTerm}{else}{$taxTerm} {$taxDetail.percentage}%{/if} : {$taxDetail.amount|crmMoney:\'{contribution.currency}\'}\n {/foreach}\n{/if}\n\n{if $isShowTax}\n{ts}Total Tax Amount{/ts}: {contribution.tax_amount|crmMoney}\n{/if}\n\n{ts}Total Amount{/ts}: {contribution.total_amount}\n{else}\n{ts}Amount{/ts}: {contribution.total_amount} {if \'{contribution.amount_level}\'} - {contribution.amount_level}{/if}\n{/if}\n{/if}\n{if !empty($receive_date)}\n\n{ts}Date{/ts}: {$receive_date|crmDate}\n{/if}\n{if !empty($is_monetary) and !empty($trxn_id)}\n{ts}Transaction #{/ts}: {$trxn_id}\n{/if}\n\n{if !empty($is_recur)}\n{ts}This is a recurring contribution.{/ts}\n\n{if $cancelSubscriptionUrl}\n{ts}You can cancel future contributions at:{/ts}\n\n{$cancelSubscriptionUrl}\n\n{/if}\n\n{if $updateSubscriptionBillingUrl}\n{ts}You can update billing details for this recurring contribution at:{/ts}\n\n{$updateSubscriptionBillingUrl}\n\n{/if}\n\n{if $updateSubscriptionUrl}\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{/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{elseif !empty($softCreditTypes) and !empty($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{if !empty($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 !empty($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 !empty($billingName)}\n===========================================================\n{ts}Billing Name and Address{/ts}\n\n===========================================================\n{$billingName}\n{$address}\n\n{$email}\n{elseif !empty($email)}\n===========================================================\n{ts}Registered Email{/ts}\n\n===========================================================\n{$email}\n{/if} {* End billingName or Email*}\n{if !empty($credit_card_type)}\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 !empty($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 !empty($contact_email) OR !empty($contact_phone)}\n\n{ts}For information about this premium, contact:{/ts}\n\n{if !empty($contact_email)}\n {$contact_email}\n{/if}\n{if !empty($contact_phone)}\n {$contact_phone}\n{/if}\n{/if}\n{if !empty($is_deductible) AND !empty($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 !empty($customPre)}\n===========================================================\n{$customPre_grouptitle}\n\n===========================================================\n{foreach from=$customPre item=customValue key=customName}\n{if ( !empty($trackingFields) and ! in_array( $customName, $trackingFields ) ) or empty($trackingFields)}\n {$customName}: {$customValue}\n{/if}\n{/foreach}\n{/if}\n\n\n{if !empty($customPost)}\n===========================================================\n{$customPost_grouptitle}\n\n===========================================================\n{foreach from=$customPost item=customValue key=customName}\n{if ( !empty($trackingFields) and ! in_array( $customName, $trackingFields ) ) or empty($trackingFields)}\n {$customName}: {$customValue}\n{/if}\n{/foreach}\n{/if}\n','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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<table id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left; width:100%; max-width:700px; padding:0; margin:0; border:0px;\">\n\n <!-- BEGIN HEADER -->\n <!-- You can add table row(s) here with logo or other header elements -->\n <!-- END HEADER -->\n\n <!-- BEGIN CONTENT -->\n\n <tr>\n <td>\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}<p>{$greeting},</p>{/if}\n {if !empty($receipt_text)}\n <p>{$receipt_text|htmlize}</p>\n {/if}\n\n {if $is_pay_later}\n <p>{$pay_later_receipt}</p> {* FIXME: this might be text rather than HTML *}\n {/if}\n\n </td>\n </tr>\n</table>\n<table style=\"width:100%; max-width:500px; border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse;\">\n {if \'{contribution.total_amount|raw}\' !== \'0.00\'}\n <tr>\n <th {$headerStyle}>\n {ts}Contribution Information{/ts}\n </th>\n </tr>\n\n {if $isShowLineItems}\n <tr>\n <td colspan=\"2\" {$valueStyle}>\n <table>\n <tr>\n <th>{ts}Item{/ts}</th>\n <th>{ts}Qty{/ts}</th>\n <th>{ts}Each{/ts}</th>\n {if $isShowTax && \'{contribution.tax_amount|raw}\' !== \'0.00\'}\n <th>{ts}Subtotal{/ts}</th>\n <th>{ts}Tax Rate{/ts}</th>\n <th>{ts}Tax Amount{/ts}</th>\n {/if}\n <th>{ts}Total{/ts}</th>\n </tr>\n {foreach from=$lineItems item=line}\n <tr>\n <td>{$line.title}</td>\n <td>{$line.qty}</td>\n <td>{$line.unit_price|crmMoney:$currency}</td>\n {if $isShowTax && \'{contribution.tax_amount|raw}\' !== \'0.00\'}\n <td>{$line.unit_price*$line.qty|crmMoney:$currency}</td>\n {if $line.tax_rate || $line.tax_amount != \"\"}\n <td>{$line.tax_rate|string_format:\"%.2f\"}%</td>\n <td>{$line.tax_amount|crmMoney:$currency}</td>\n {else}\n <td></td>\n <td></td>\n {/if}\n {/if}\n <td>\n {$line.line_total+$line.tax_amount|crmMoney:$currency}\n </td>\n </tr>\n {/foreach}\n </table>\n </td>\n </tr>\n\n {if $isShowTax && \'{contribution.tax_amount|raw}\' !== \'0.00\'}\n <tr>\n <td {$labelStyle}>\n {ts} Amount before Tax : {/ts}\n </td>\n <td {$valueStyle}>\n {$amount-$totalTaxAmount|crmMoney:$currency}\n </td>\n </tr>\n\n {foreach from=$taxRateBreakdown item=taxDetail key=taxRate}\n <tr>\n <td>{if $taxRate == 0}{ts}No{/ts} {$taxTerm}{else}{$taxTerm} {$taxDetail.percentage}%{/if}</td>\n <td>{$taxDetail.amount|crmMoney:\'{contribution.currency}\'}</td>\n </tr>\n {/foreach}\n\n {/if}\n {if $isShowTax}\n <tr>\n <td {$labelStyle}>\n {ts}Total Tax{/ts}\n </td>\n <td {$valueStyle}>\n {contribution.tax_amount}\n </td>\n </tr>\n {/if}\n <tr>\n <td {$labelStyle}>\n {ts}Total Amount{/ts}\n </td>\n <td {$valueStyle}>\n {contribution.total_amount}\n </td>\n </tr>\n {else}\n {if \'{contribution.tax_amount|raw}\' !== \'0.00\'}\n <tr>\n <td {$labelStyle}>\n {ts}Total Tax Amount{/ts}\n </td>\n <td {$valueStyle}>\n {contribution.tax_amount}\n </td>\n </tr>\n {/if}\n <tr>\n <td {$labelStyle}>\n {ts}Amount{/ts}\n </td>\n <td {$valueStyle}>\n {contribution.total_amount} {if \'{contribution.amount_level}\'} - {contribution.amount_level}{/if}\n </td>\n </tr>\n\n {/if}\n\n {/if}\n\n\n {if !empty($receive_date)}\n <tr>\n <td {$labelStyle}>\n {ts}Date{/ts}\n </td>\n <td {$valueStyle}>\n {$receive_date|crmDate}\n </td>\n </tr>\n {/if}\n\n {if !empty($is_monetary) and !empty($trxn_id)}\n <tr>\n <td {$labelStyle}>\n {ts}Transaction #{/ts}\n </td>\n <td {$valueStyle}>\n {$trxn_id}\n </td>\n </tr>\n {/if}\n\n {if !empty($is_recur)}\n <tr>\n <td colspan=\"2\" {$labelStyle}>\n {ts}This is a recurring contribution.{/ts}\n {if $cancelSubscriptionUrl}\n {ts 1=$cancelSubscriptionUrl}You can cancel future contributions by <a href=\"%1\">visiting this web page</a>.{/ts}\n {/if}\n </td>\n </tr>\n {if $updateSubscriptionBillingUrl}\n <tr>\n <td colspan=\"2\" {$labelStyle}>\n {ts 1=$updateSubscriptionBillingUrl}You can update billing details for this recurring contribution by <a href=\"%1\">visiting this web page</a>.{/ts}\n </td>\n </tr>\n {/if}\n {if $updateSubscriptionUrl}\n <tr>\n <td colspan=\"2\" {$labelStyle}>\n {ts 1=$updateSubscriptionUrl}You can update recurring contribution amount or change the number of installments for this recurring contribution by <a href=\"%1\">visiting this web page</a>.{/ts}\n </td>\n </tr>\n {/if}\n {/if}\n\n {if $honor_block_is_active}\n <tr>\n <th {$headerStyle}>\n {$soft_credit_type}\n </th>\n </tr>\n {foreach from=$honoreeProfile item=value key=label}\n <tr>\n <td {$labelStyle}>\n {$label}\n </td>\n <td {$valueStyle}>\n {$value}\n </td>\n </tr>\n {/foreach}\n {elseif !empty($softCreditTypes) and !empty($softCredits)}\n {foreach from=$softCreditTypes item=softCreditType key=n}\n <tr>\n <th {$headerStyle}>\n {$softCreditType}\n </th>\n </tr>\n {foreach from=$softCredits.$n item=value key=label}\n <tr>\n <td {$labelStyle}>\n {$label}\n </td>\n <td {$valueStyle}>\n {$value}\n </td>\n </tr>\n {/foreach}\n {/foreach}\n {/if}\n\n {if !empty($pcpBlock)}\n <tr>\n <th {$headerStyle}>\n {ts}Personal Campaign Page{/ts}\n </th>\n </tr>\n <tr>\n <td {$labelStyle}>\n {ts}Display In Honor Roll{/ts}\n </td>\n <td {$valueStyle}>\n {if $pcp_display_in_roll}{ts}Yes{/ts}{else}{ts}No{/ts}{/if}\n </td>\n </tr>\n {if $pcp_roll_nickname}\n <tr>\n <td {$labelStyle}>\n {ts}Nickname{/ts}\n </td>\n <td {$valueStyle}>\n {$pcp_roll_nickname}\n </td>\n </tr>\n {/if}\n {if $pcp_personal_note}\n <tr>\n <td {$labelStyle}>\n {ts}Personal Note{/ts}\n </td>\n <td {$valueStyle}>\n {$pcp_personal_note}\n </td>\n </tr>\n {/if}\n {/if}\n\n {if !empty($onBehalfProfile)}\n <tr>\n <th {$headerStyle}>\n {$onBehalfProfile_grouptitle}\n </th>\n </tr>\n {foreach from=$onBehalfProfile item=onBehalfValue key=onBehalfName}\n <tr>\n <td {$labelStyle}>\n {$onBehalfName}\n </td>\n <td {$valueStyle}>\n {$onBehalfValue}\n </td>\n </tr>\n {/foreach}\n {/if}\n\n {if !empty($isShare)}\n <tr>\n <td colspan=\"2\" {$valueStyle}>\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 </td>\n </tr>\n {/if}\n\n {if !empty($billingName)}\n <tr>\n <th {$headerStyle}>\n {ts}Billing Name and Address{/ts}\n </th>\n </tr>\n <tr>\n <td colspan=\"2\" {$valueStyle}>\n {$billingName}<br />\n {$address|nl2br}<br />\n {$email}\n </td>\n </tr>\n {elseif !empty($email)}\n <tr>\n <th {$headerStyle}>\n {ts}Registered Email{/ts}\n </th>\n </tr>\n <tr>\n <td colspan=\"2\" {$valueStyle}>\n {$email}\n </td>\n </tr>\n {/if}\n\n {if !empty($credit_card_type)}\n <tr>\n <th {$headerStyle}>\n {ts}Credit Card Information{/ts}\n </th>\n </tr>\n <tr>\n <td colspan=\"2\" {$valueStyle}>\n {$credit_card_type}<br />\n {$credit_card_number}<br />\n {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}<br />\n </td>\n </tr>\n {/if}\n\n {if !empty($selectPremium)}\n <tr>\n <th {$headerStyle}>\n {ts}Premium Information{/ts}\n </th>\n </tr>\n <tr>\n <td colspan=\"2\" {$labelStyle}>\n {$product_name}\n </td>\n </tr>\n {if $option}\n <tr>\n <td {$labelStyle}>\n {ts}Option{/ts}\n </td>\n <td {$valueStyle}>\n {$option}\n </td>\n </tr>\n {/if}\n {if $sku}\n <tr>\n <td {$labelStyle}>\n {ts}SKU{/ts}\n </td>\n <td {$valueStyle}>\n {$sku}\n </td>\n </tr>\n {/if}\n {if $start_date}\n <tr>\n <td {$labelStyle}>\n {ts}Start Date{/ts}\n </td>\n <td {$valueStyle}>\n {$start_date|crmDate}\n </td>\n </tr>\n {/if}\n {if $end_date}\n <tr>\n <td {$labelStyle}>\n {ts}End Date{/ts}\n </td>\n <td {$valueStyle}>\n {$end_date|crmDate}\n </td>\n </tr>\n {/if}\n {if !empty($contact_email) OR !empty($contact_phone)}\n <tr>\n <td colspan=\"2\" {$valueStyle}>\n <p>{ts}For information about this premium, contact:{/ts}</p>\n {if !empty($contact_email)}\n <p>{$contact_email}</p>\n {/if}\n {if !empty($contact_phone)}\n <p>{$contact_phone}</p>\n {/if}\n </td>\n </tr>\n {/if}\n {if !empty($is_deductible) AND !empty($price)}\n <tr>\n <td colspan=\"2\" {$valueStyle}>\n <p>{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}</p>\n </td>\n </tr>\n {/if}\n {/if}\n\n {if !empty($customPre)}\n <tr>\n <th {$headerStyle}>\n {$customPre_grouptitle}\n </th>\n </tr>\n {foreach from=$customPre item=customValue key=customName}\n {if (!empty($trackingFields) and ! in_array($customName, $trackingFields)) or empty($trackingFields)}\n <tr>\n <td {$labelStyle}>\n {$customName}\n </td>\n <td {$valueStyle}>\n {$customValue}\n </td>\n </tr>\n {/if}\n {/foreach}\n {/if}\n\n {if !empty($customPost)}\n <tr>\n <th {$headerStyle}>\n {$customPost_grouptitle}\n </th>\n </tr>\n {foreach from=$customPost item=customValue key=customName}\n {if (!empty($trackingFields) and ! in_array($customName, $trackingFields)) or empty($trackingFields)}\n <tr>\n <td {$labelStyle}>\n {$customName}\n </td>\n <td {$valueStyle}>\n {$customValue}\n </td>\n </tr>\n {/if}\n {/foreach}\n {/if}\n\n </table>\n\n</body>\n</html>\n',1,816,'contribution_online_receipt',1,0,0,NULL), + (8,'Contributions - Receipt (on-line)','{if $is_pay_later}{ts}Invoice{/ts}{else}{ts}Receipt{/ts}{/if} - {$title} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\n{if !empty($receipt_text)}\n{$receipt_text}\n{/if}\n{if $is_pay_later}\n\n===========================================================\n{$pay_later_receipt}\n===========================================================\n{/if}\n\n{if \'{contribution.total_amount|raw}\' !== \'0.00\'}\n===========================================================\n{ts}Contribution Information{/ts}\n\n===========================================================\n{if $isShowLineItems}\n\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{if $isShowTax && \'{contribution.tax_amount|raw}\' !== \'0.00\'}\n{capture assign=ts_subtotal}{ts}Subtotal{/ts}{/capture}\n{capture assign=ts_taxRate}{ts}Tax Rate{/ts}{/capture}\n{capture assign=ts_taxAmount}{ts}Tax Amount{/ts}{/capture}\n{/if}\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\"} {if $isShowTax && \'{contribution.tax_amount|raw}\' !== \'0.00\'} {$ts_subtotal|string_format:\"%10s\"} {$ts_taxRate} {$ts_taxAmount|string_format:\"%10s\"} {/if} {$ts_total|string_format:\"%10s\"}\n----------------------------------------------------------\n{foreach from=$lineItems item=line}\n{capture assign=ts_item}{$line.title}{/capture}{$ts_item|truncate:30:\"...\"|string_format:\"%-30s\"} {$line.qty|string_format:\"%5s\"} {$line.unit_price|crmMoney:$currency|string_format:\"%10s\"} {if $isShowTax && \'{contribution.tax_amount|raw}\' !== \'0.00\'}{$line.unit_price*$line.qty|crmMoney:$currency|string_format:\"%10s\"} {if $line.tax_rate || $line.tax_amount != \"\"} {$line.tax_rate|string_format:\"%.2f\"} % {$line.tax_amount|crmMoney:$currency|string_format:\"%10s\"} {else} {/if} {/if} {$line.line_total+$line.tax_amount|crmMoney:$currency|string_format:\"%10s\"}\n{/foreach}\n\n{if $isShowTax && \'{contribution.tax_amount|raw}\' !== \'0.00\'}\n{ts}Amount before Tax{/ts}: {$amount-$totalTaxAmount|crmMoney:$currency}\n {foreach from=$taxRateBreakdown item=taxDetail key=taxRate}\n {if $taxRate == 0}{ts}No{/ts} {$taxTerm}{else}{$taxTerm} {$taxDetail.percentage}%{/if} : {$taxDetail.amount|crmMoney:\'{contribution.currency}\'}\n {/foreach}\n{/if}\n\n{if $isShowTax}\n{ts}Total Tax Amount{/ts}: {contribution.tax_amount|crmMoney}\n{/if}\n\n{ts}Total Amount{/ts}: {contribution.total_amount}\n{else}\n{ts}Amount{/ts}: {contribution.total_amount} {if \'{contribution.amount_level}\'} - {contribution.amount_level}{/if}\n{/if}\n{/if}\n{if !empty($receive_date)}\n\n{ts}Date{/ts}: {$receive_date|crmDate}\n{/if}\n{if !empty($is_monetary) and !empty($trxn_id)}\n{ts}Transaction #{/ts}: {$trxn_id}\n{/if}\n\n{if !empty($is_recur)}\n{ts}This is a recurring contribution.{/ts}\n\n{if $cancelSubscriptionUrl}\n{ts}You can cancel future contributions at:{/ts}\n\n{$cancelSubscriptionUrl}\n\n{/if}\n\n{if $updateSubscriptionBillingUrl}\n{ts}You can update billing details for this recurring contribution at:{/ts}\n\n{$updateSubscriptionBillingUrl}\n\n{/if}\n\n{if $updateSubscriptionUrl}\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{/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{elseif !empty($softCreditTypes) and !empty($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{if !empty($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 !empty($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 !empty($billingName)}\n===========================================================\n{ts}Billing Name and Address{/ts}\n\n===========================================================\n{$billingName}\n{$address}\n\n{$email}\n{elseif !empty($email)}\n===========================================================\n{ts}Registered Email{/ts}\n\n===========================================================\n{$email}\n{/if} {* End billingName or Email*}\n{if !empty($credit_card_type)}\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 !empty($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 !empty($contact_email) OR !empty($contact_phone)}\n\n{ts}For information about this premium, contact:{/ts}\n\n{if !empty($contact_email)}\n {$contact_email}\n{/if}\n{if !empty($contact_phone)}\n {$contact_phone}\n{/if}\n{/if}\n{if !empty($is_deductible) AND !empty($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 !empty($customPre)}\n===========================================================\n{$customPre_grouptitle}\n\n===========================================================\n{foreach from=$customPre item=customValue key=customName}\n{if ( !empty($trackingFields) and ! in_array( $customName, $trackingFields ) ) or empty($trackingFields)}\n {$customName}: {$customValue}\n{/if}\n{/foreach}\n{/if}\n\n\n{if !empty($customPost)}\n===========================================================\n{$customPost_grouptitle}\n\n===========================================================\n{foreach from=$customPost item=customValue key=customName}\n{if ( !empty($trackingFields) and ! in_array( $customName, $trackingFields ) ) or empty($trackingFields)}\n {$customName}: {$customValue}\n{/if}\n{/foreach}\n{/if}\n','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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<table id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left; width:100%; max-width:700px; padding:0; margin:0; border:0px;\">\n\n <!-- BEGIN HEADER -->\n <!-- You can add table row(s) here with logo or other header elements -->\n <!-- END HEADER -->\n\n <!-- BEGIN CONTENT -->\n\n <tr>\n <td>\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}<p>{$greeting},</p>{/if}\n {if !empty($receipt_text)}\n <p>{$receipt_text|htmlize}</p>\n {/if}\n\n {if $is_pay_later}\n <p>{$pay_later_receipt}</p> {* FIXME: this might be text rather than HTML *}\n {/if}\n\n </td>\n </tr>\n</table>\n<table style=\"width:100%; max-width:500px; border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse;\">\n {if \'{contribution.total_amount|raw}\' !== \'0.00\'}\n <tr>\n <th {$headerStyle}>\n {ts}Contribution Information{/ts}\n </th>\n </tr>\n\n {if $isShowLineItems}\n <tr>\n <td colspan=\"2\" {$valueStyle}>\n <table>\n <tr>\n <th>{ts}Item{/ts}</th>\n <th>{ts}Qty{/ts}</th>\n <th>{ts}Each{/ts}</th>\n {if $isShowTax && \'{contribution.tax_amount|raw}\' !== \'0.00\'}\n <th>{ts}Subtotal{/ts}</th>\n <th>{ts}Tax Rate{/ts}</th>\n <th>{ts}Tax Amount{/ts}</th>\n {/if}\n <th>{ts}Total{/ts}</th>\n </tr>\n {foreach from=$lineItems item=line}\n <tr>\n <td>{$line.title}</td>\n <td>{$line.qty}</td>\n <td>{$line.unit_price|crmMoney:$currency}</td>\n {if $isShowTax && \'{contribution.tax_amount|raw}\' !== \'0.00\'}\n <td>{$line.unit_price*$line.qty|crmMoney:$currency}</td>\n {if $line.tax_rate || $line.tax_amount != \"\"}\n <td>{$line.tax_rate|string_format:\"%.2f\"}%</td>\n <td>{$line.tax_amount|crmMoney:$currency}</td>\n {else}\n <td></td>\n <td></td>\n {/if}\n {/if}\n <td>\n {$line.line_total+$line.tax_amount|crmMoney:$currency}\n </td>\n </tr>\n {/foreach}\n </table>\n </td>\n </tr>\n\n {if $isShowTax && \'{contribution.tax_amount|raw}\' !== \'0.00\'}\n <tr>\n <td {$labelStyle}>\n {ts} Amount before Tax : {/ts}\n </td>\n <td {$valueStyle}>\n {$amount-$totalTaxAmount|crmMoney:$currency}\n </td>\n </tr>\n\n {foreach from=$taxRateBreakdown item=taxDetail key=taxRate}\n <tr>\n <td>{if $taxRate == 0}{ts}No{/ts} {$taxTerm}{else}{$taxTerm} {$taxDetail.percentage}%{/if}</td>\n <td>{$taxDetail.amount|crmMoney:\'{contribution.currency}\'}</td>\n </tr>\n {/foreach}\n\n {/if}\n {if $isShowTax}\n <tr>\n <td {$labelStyle}>\n {ts}Total Tax{/ts}\n </td>\n <td {$valueStyle}>\n {contribution.tax_amount}\n </td>\n </tr>\n {/if}\n <tr>\n <td {$labelStyle}>\n {ts}Total Amount{/ts}\n </td>\n <td {$valueStyle}>\n {contribution.total_amount}\n </td>\n </tr>\n {else}\n {if \'{contribution.tax_amount|raw}\' !== \'0.00\'}\n <tr>\n <td {$labelStyle}>\n {ts}Total Tax Amount{/ts}\n </td>\n <td {$valueStyle}>\n {contribution.tax_amount}\n </td>\n </tr>\n {/if}\n <tr>\n <td {$labelStyle}>\n {ts}Amount{/ts}\n </td>\n <td {$valueStyle}>\n {contribution.total_amount} {if \'{contribution.amount_level}\'} - {contribution.amount_level}{/if}\n </td>\n </tr>\n\n {/if}\n\n {/if}\n\n\n {if !empty($receive_date)}\n <tr>\n <td {$labelStyle}>\n {ts}Date{/ts}\n </td>\n <td {$valueStyle}>\n {$receive_date|crmDate}\n </td>\n </tr>\n {/if}\n\n {if !empty($is_monetary) and !empty($trxn_id)}\n <tr>\n <td {$labelStyle}>\n {ts}Transaction #{/ts}\n </td>\n <td {$valueStyle}>\n {$trxn_id}\n </td>\n </tr>\n {/if}\n\n {if !empty($is_recur)}\n <tr>\n <td colspan=\"2\" {$labelStyle}>\n {ts}This is a recurring contribution.{/ts}\n {if $cancelSubscriptionUrl}\n {ts 1=$cancelSubscriptionUrl}You can cancel future contributions by <a href=\"%1\">visiting this web page</a>.{/ts}\n {/if}\n </td>\n </tr>\n {if $updateSubscriptionBillingUrl}\n <tr>\n <td colspan=\"2\" {$labelStyle}>\n {ts 1=$updateSubscriptionBillingUrl}You can update billing details for this recurring contribution by <a href=\"%1\">visiting this web page</a>.{/ts}\n </td>\n </tr>\n {/if}\n {if $updateSubscriptionUrl}\n <tr>\n <td colspan=\"2\" {$labelStyle}>\n {ts 1=$updateSubscriptionUrl}You can update recurring contribution amount or change the number of installments for this recurring contribution by <a href=\"%1\">visiting this web page</a>.{/ts}\n </td>\n </tr>\n {/if}\n {/if}\n\n {if $honor_block_is_active}\n <tr>\n <th {$headerStyle}>\n {$soft_credit_type}\n </th>\n </tr>\n {foreach from=$honoreeProfile item=value key=label}\n <tr>\n <td {$labelStyle}>\n {$label}\n </td>\n <td {$valueStyle}>\n {$value}\n </td>\n </tr>\n {/foreach}\n {elseif !empty($softCreditTypes) and !empty($softCredits)}\n {foreach from=$softCreditTypes item=softCreditType key=n}\n <tr>\n <th {$headerStyle}>\n {$softCreditType}\n </th>\n </tr>\n {foreach from=$softCredits.$n item=value key=label}\n <tr>\n <td {$labelStyle}>\n {$label}\n </td>\n <td {$valueStyle}>\n {$value}\n </td>\n </tr>\n {/foreach}\n {/foreach}\n {/if}\n\n {if !empty($pcpBlock)}\n <tr>\n <th {$headerStyle}>\n {ts}Personal Campaign Page{/ts}\n </th>\n </tr>\n <tr>\n <td {$labelStyle}>\n {ts}Display In Honor Roll{/ts}\n </td>\n <td {$valueStyle}>\n {if $pcp_display_in_roll}{ts}Yes{/ts}{else}{ts}No{/ts}{/if}\n </td>\n </tr>\n {if $pcp_roll_nickname}\n <tr>\n <td {$labelStyle}>\n {ts}Nickname{/ts}\n </td>\n <td {$valueStyle}>\n {$pcp_roll_nickname}\n </td>\n </tr>\n {/if}\n {if $pcp_personal_note}\n <tr>\n <td {$labelStyle}>\n {ts}Personal Note{/ts}\n </td>\n <td {$valueStyle}>\n {$pcp_personal_note}\n </td>\n </tr>\n {/if}\n {/if}\n\n {if !empty($onBehalfProfile)}\n <tr>\n <th {$headerStyle}>\n {$onBehalfProfile_grouptitle}\n </th>\n </tr>\n {foreach from=$onBehalfProfile item=onBehalfValue key=onBehalfName}\n <tr>\n <td {$labelStyle}>\n {$onBehalfName}\n </td>\n <td {$valueStyle}>\n {$onBehalfValue}\n </td>\n </tr>\n {/foreach}\n {/if}\n\n {if !empty($isShare)}\n <tr>\n <td colspan=\"2\" {$valueStyle}>\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 </td>\n </tr>\n {/if}\n\n {if !empty($billingName)}\n <tr>\n <th {$headerStyle}>\n {ts}Billing Name and Address{/ts}\n </th>\n </tr>\n <tr>\n <td colspan=\"2\" {$valueStyle}>\n {$billingName}<br />\n {$address|nl2br}<br />\n {$email}\n </td>\n </tr>\n {elseif !empty($email)}\n <tr>\n <th {$headerStyle}>\n {ts}Registered Email{/ts}\n </th>\n </tr>\n <tr>\n <td colspan=\"2\" {$valueStyle}>\n {$email}\n </td>\n </tr>\n {/if}\n\n {if !empty($credit_card_type)}\n <tr>\n <th {$headerStyle}>\n {ts}Credit Card Information{/ts}\n </th>\n </tr>\n <tr>\n <td colspan=\"2\" {$valueStyle}>\n {$credit_card_type}<br />\n {$credit_card_number}<br />\n {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}<br />\n </td>\n </tr>\n {/if}\n\n {if !empty($selectPremium)}\n <tr>\n <th {$headerStyle}>\n {ts}Premium Information{/ts}\n </th>\n </tr>\n <tr>\n <td colspan=\"2\" {$labelStyle}>\n {$product_name}\n </td>\n </tr>\n {if $option}\n <tr>\n <td {$labelStyle}>\n {ts}Option{/ts}\n </td>\n <td {$valueStyle}>\n {$option}\n </td>\n </tr>\n {/if}\n {if $sku}\n <tr>\n <td {$labelStyle}>\n {ts}SKU{/ts}\n </td>\n <td {$valueStyle}>\n {$sku}\n </td>\n </tr>\n {/if}\n {if $start_date}\n <tr>\n <td {$labelStyle}>\n {ts}Start Date{/ts}\n </td>\n <td {$valueStyle}>\n {$start_date|crmDate}\n </td>\n </tr>\n {/if}\n {if $end_date}\n <tr>\n <td {$labelStyle}>\n {ts}End Date{/ts}\n </td>\n <td {$valueStyle}>\n {$end_date|crmDate}\n </td>\n </tr>\n {/if}\n {if !empty($contact_email) OR !empty($contact_phone)}\n <tr>\n <td colspan=\"2\" {$valueStyle}>\n <p>{ts}For information about this premium, contact:{/ts}</p>\n {if !empty($contact_email)}\n <p>{$contact_email}</p>\n {/if}\n {if !empty($contact_phone)}\n <p>{$contact_phone}</p>\n {/if}\n </td>\n </tr>\n {/if}\n {if !empty($is_deductible) AND !empty($price)}\n <tr>\n <td colspan=\"2\" {$valueStyle}>\n <p>{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}</p>\n </td>\n </tr>\n {/if}\n {/if}\n\n {if !empty($customPre)}\n <tr>\n <th {$headerStyle}>\n {$customPre_grouptitle}\n </th>\n </tr>\n {foreach from=$customPre item=customValue key=customName}\n {if (!empty($trackingFields) and ! in_array($customName, $trackingFields)) or empty($trackingFields)}\n <tr>\n <td {$labelStyle}>\n {$customName}\n </td>\n <td {$valueStyle}>\n {$customValue}\n </td>\n </tr>\n {/if}\n {/foreach}\n {/if}\n\n {if !empty($customPost)}\n <tr>\n <th {$headerStyle}>\n {$customPost_grouptitle}\n </th>\n </tr>\n {foreach from=$customPost item=customValue key=customName}\n {if (!empty($trackingFields) and ! in_array($customName, $trackingFields)) or empty($trackingFields)}\n <tr>\n <td {$labelStyle}>\n {$customName}\n </td>\n <td {$valueStyle}>\n {$customValue}\n </td>\n </tr>\n {/if}\n {/foreach}\n {/if}\n\n </table>\n\n</body>\n</html>\n',1,816,'contribution_online_receipt',0,1,0,NULL), (9,'Contributions - Invoice','{if $title}\n {if $component}\n {if $component == \'event\'}\n {ts 1=$title}Event Registration Invoice: %1{/ts}\n {else}\n {ts 1=$title}Contribution Invoice: %1{/ts}\n {/if}\n {/if}\n{else}\n {ts}Invoice{/ts}\n{/if}\n - {contact.display_name}\n','{ts}Contribution Invoice{/ts}\n','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n <head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n </head>\n <body>\n <div style=\"padding-top:100px;margin-right:50px;border-style: none;\">\n {if $config->empoweredBy}\n <table style=\"margin-top:5px;padding-bottom:50px;\" cellpadding=\"5\" cellspacing=\"0\">\n <tr>\n <td><img src=\"{domain.empowered_by_civicrm_image_url}\" height=\"34px\" width=\"99px\"></td>\n </tr>\n </table>\n {/if}\n <table style=\"font-family: Arial, Verdana, sans-serif;\" width=\"100%\" height=\"100\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\">\n <tr>\n <td width=\"30%\"><b><font size=\"4\" align=\"center\">{ts}INVOICE{/ts}</font></b></td>\n <td width=\"50%\" valign=\"bottom\"><b><font size=\"1\" align=\"center\">{ts}Invoice Date:{/ts}</font></b></td>\n <td valign=\"bottom\" style=\"white-space: nowrap\"><b><font size=\"1\" align=\"right\">{domain.name}</font></b></td>\n </tr>\n <tr>\n <td><font size=\"1\" align=\"center\">{contact.display_name}{if \'{contact.current_employer}\'} ({contact.current_employer}){/if}</font></td>\n <td><font size=\"1\" align=\"right\">{$invoice_date}</font></td>\n <td style=\"white-space: nowrap\"><font size=\"1\" align=\"right\">\n {domain.street_address}\n {domain.supplemental_address_1}\n </font></td>\n </tr>\n <tr>\n <td><font size=\"1\" align=\"center\">{$street_address} {$supplemental_address_1}</font></td>\n <td><b><font size=\"1\" align=\"right\">{ts}Invoice Number:{/ts}</font></b></td>\n <td><font size=\"1\" align=\"right\">\n {domain.supplemental_address_2}\n {domain.state_province_id:label}\n </font></td>\n </tr>\n <tr>\n <td><font size=\"1\" align=\"center\">{$supplemental_address_2} {$stateProvinceAbbreviation}</font></td>\n <td><font size=\"1\" align=\"right\">{contribution.invoice_number}</font></td>\n <td style=\"white-space: nowrap\"><font size=\"1\" align=\"right\">\n {domain.city}\n {domain.postal_code}\n </font></td>\n </tr>\n <tr>\n <td><font size=\"1\" align=\"right\">{$city} {$postal_code}</font></td>\n <td height=\"10\"><b><font size=\"1\" align=\"right\">{ts}Reference:{/ts}</font></b></td>\n <td><font size=\"1\" align=\"right\">{domain.country_id:label}</font></td>\n </tr>\n <tr>\n <td><font size=\"1\" align=\"right\"> {$country}</font></td>\n <td><font size=\"1\" align=\"right\">{contribution.source}</font></td>\n <td valign=\"top\" style=\"white-space: nowrap\"><font size=\"1\" align=\"right\">{domain.email}</font> </td>\n </tr>\n <tr>\n <td></td>\n <td></td>\n <td valign=\"top\"><font size=\"1\" align=\"right\">{domain.phone}</font> </td>\n </tr>\n </table>\n\n <table style=\"padding-top:75px;font-family: Arial, Verdana, sans-serif;\" width=\"100%\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\">\n <tr>\n <th style=\"text-align:left;font-weight:bold;width:100%\"><font size=\"1\">{ts}Description{/ts}</font></th>\n <th style=\"text-align:right;font-weight:bold;white-space: nowrap\"><font size=\"1\">{ts}Quantity{/ts}</font></th>\n <th style=\"text-align:right;font-weight:bold;white-space: nowrap\"><font size=\"1\">{ts}Unit Price{/ts}</font></th>\n <th style=\"text-align:right;font-weight:bold;white-space: nowrap\"><font size=\"1\">{domain.tax_term}</font></th>\n <th style=\"text-align:right;font-weight:bold;white-space: nowrap\"><font size=\"1\">{ts 1=$currency}Amount %1{/ts}</font></th>\n </tr>\n {foreach from=$lineItems item=line}\n <tr>\n <td style=\"text-align:left;nowrap\"><font size=\"1\">\n {$line.title}\n </font></td>\n <td style=\"text-align:right;\"><font size=\"1\">{$line.qty}</font></td>\n <td style=\"text-align:right;\"><font size=\"1\">{$line.unit_price|crmMoney:$currency}</font></td>\n {if $line.tax_amount != \'\'}\n <td style=\"text-align:right;\"><font size=\"1\">{if $line.tax_rate}{$line.tax_rate|crmNumberFormat}%{/if}</font></td>\n {else}\n <td style=\"text-align:right;\"><font size=\"1\">{if \'{domain.tax_term}\'}{ts 1=\'{domain.tax_term}\'}-{/ts}{/if}</font></td>\n {/if}\n <td style=\"text-align:right;\"><font size=\"1\">{$line.line_total|crmMoney:\'{contribution.currency}\'}</font></td>\n </tr>\n {/foreach}\n <tr>\n <td colspan=\"3\"></td>\n <td style=\"text-align:right;\"><font size=\"1\">{ts}Sub Total{/ts}</font></td>\n <td style=\"text-align:right;\"><font size=\"1\">{$subTotal|crmMoney:$currency}</font></td>\n </tr>\n {foreach from=$taxRateBreakdown item=taxDetail key=taxRate}\n {if $taxRate != 0}\n <tr>\n <td colspan=\"3\"></td>\n <td style=\"text-align:right;white-space: nowrap\"><font size=\"1\">{if \'{domain.tax_term}\'}{ts 1=\'{domain.tax_term}\' 2=$taxRate|crmNumberFormat}TOTAL %1 %2%{/ts}{/if}</font></td>\n <td style=\"text-align:right\"><font size=\"1\" align=\"right\">{$taxDetail.amount|crmMoney:\'{contribution.currency}\'}</font> </td>\n </tr>\n {/if}\n {/foreach}\n <tr>\n <td colspan=\"3\"></td>\n <td style=\"text-align:right;white-space: nowrap\"><b><font size=\"1\">{ts 1=$currency}TOTAL %1{/ts}</font></b></td>\n <td style=\"text-align:right;\"><font size=\"1\">{$amount|crmMoney:$currency}</font></td>\n </tr>\n <tr>\n <td colspan=\"3\"></td>\n <td style=\"text-align:right;white-space: nowrap\"><font size=\"1\">\n {if \'{contribution.contribution_status_id:name}\' == \'Refunded\'}\n {ts}Amount Credited{/ts}\n {else}\n {ts}Amount Paid{/ts}\n {/if}\n </font></td>\n <td style=\"text-align:right;\"><font size=\"1\">{$amountPaid|crmMoney:$currency}</font></td>\n </tr>\n <tr>\n <td colspan=\"3\"></td>\n <td colspan=\"2\"><hr></hr></td>\n </tr>\n <tr>\n <td colspan=\"3\"></td>\n <td style=\"text-align:right;white-space: nowrap\" ><b><font size=\"1\">{ts}AMOUNT DUE:{/ts}</font></b></td>\n <td style=\"text-align:right;\"><b><font size=\"1\">{$amountDue|crmMoney:$currency}</font></b></td>\n </tr>\n <tr>\n <td colspan=\"5\"></td>\n </tr>\n {if \'{contribution.contribution_status_id:name}\' == \'Pending\' && \'{contribution.is_pay_later}\' == 1}\n <tr>\n <td colspan=\"3\"><b><font size=\"1\" align=\"center\">{ts 1=$dueDate}DUE DATE: %1{/ts}</font></b></td>\n <td colspan=\"2\"></td>\n </tr>\n {/if}\n </table>\n\n {if \'{contribution.contribution_status_id:name}\' == \'Pending\' && \'{contribution.is_pay_later}\' == 1}\n <table style=\"margin-top:5px;\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\n <tr>\n <td><img src=\"{$resourceBase}/i/contribute/cut_line.png\" height=\"15\"></td>\n </tr>\n </table>\n\n <table style=\"margin-top:5px;font-family: Arial, Verdana, sans-serif\" width=\"100%\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\" id=\"desc\">\n <tr>\n <td width=\"60%\"><b><font size=\"4\" align=\"right\">{ts}PAYMENT ADVICE{/ts}</font></b><br/><br/>\n <font size=\"1\" align=\"left\"><b>{ts}To:{/ts}</b><div style=\"width:24em;word-wrap:break-word;\">\n {domain.name}<br />\n {domain.street_address} {domain.supplemental_address_1}<br />\n {domain.supplemental_address_2} {domain.state_province_id:label}<br />\n {domain.city} {domain.postal_code}<br />\n {domain.country_id:label}<br />\n {domain.email}</div>\n {domain.phone}<br />\n </font>\n <br/><br/><font size=\"1\" align=\"left\">{$notes}</font>\n </td>\n <td width=\"40%\">\n <table cellpadding=\"5\" cellspacing=\"0\" width=\"100%\" border=\"0\">\n <tr>\n <td width=\"100%\"><font size=\"1\" align=\"right\" style=\"font-weight:bold;\">{ts}Customer:{/ts}</font></td>\n <td style=\"white-space: nowrap\"><font size=\"1\" align=\"right\">{contact.display_name}</font></td>\n </tr>\n <tr>\n <td><font size=\"1\" align=\"right\" style=\"font-weight:bold;\">{ts}Invoice Number:{/ts}</font></td>\n <td><font size=\"1\" align=\"right\">{contribution.invoice_number}</font></td>\n </tr>\n <tr><td colspan=\"5\" style=\"color:#F5F5F5;\"><hr></td></tr>\n {if $is_pay_later == 1}\n <tr>\n <td><font size=\"1\" align=\"right\" style=\"font-weight:bold;\">{ts}Amount Due:{/ts}</font></td>\n <td><font size=\"1\" align=\"right\" style=\"font-weight:bold;\">{$amount|crmMoney:$currency}</font></td>\n </tr>\n {else}\n <tr>\n <td><font size=\"1\" align=\"right\" style=\"font-weight:bold;\">{ts}Amount Due:{/ts}</font></td>\n <td><font size=\"1\" align=\"right\" style=\"font-weight:bold;\">{$amountDue|crmMoney:$currency}</font></td>\n </tr>\n {/if}\n <tr>\n <td><font size=\"1\" align=\"right\" style=\"font-weight:bold;\">{ts}Due Date:{/ts}</font></td>\n <td><font size=\"1\" align=\"right\">{$dueDate}</font></td>\n </tr>\n <tr>\n <td colspan=\"5\" style=\"color:#F5F5F5;\"><hr></td>\n </tr>\n </table>\n </td>\n </tr>\n </table>\n {/if}\n\n {if \'{contribution.contribution_status_id:name}\' === \'Refunded\' || \'{contribution.contribution_status_id:name}\' === \'Cancelled\'}\n {if $config->empoweredBy}\n <table style=\"margin-top:2px;padding-left:7px;page-break-before: always;\">\n <tr>\n <td><img src=\"{$resourceBase}/i/civi99.png\" height=\"34px\" width=\"99px\"></td>\n </tr>\n </table>\n {/if}\n\n <table style=\"font-family: Arial, Verdana, sans-serif\" width=\"100%\" height=\"100\" border=\"0\" cellpadding=\"5\" cellspacing=\"5\">\n <tr>\n <td style=\"padding-left:15px;\"><b><font size=\"4\" align=\"center\">{ts}CREDIT NOTE{/ts}</font></b></td>\n <td style=\"padding-left:30px;\"><b><font size=\"1\" align=\"right\">{ts}Date:{/ts}</font></b></td>\n <td><font size=\"1\" align=\"right\">{domain.name}</font></td>\n </tr>\n <tr>\n <td style=\"padding-left:17px;\"><font size=\"1\" align=\"center\">{contact.display_name}{if \'{contact.current_employer}\'} ({contact.current_employer}){/if}</font></td>\n <td style=\"padding-left:30px;\"><font size=\"1\" align=\"right\">{$invoice_date}</font></td>\n <td><font size=\"1\" align=\"right\">\n {domain.street_address}\n {domain.supplemental_address_1}\n </font></td>\n </tr>\n <tr>\n <td style=\"padding-left:17px;\"><font size=\"1\" align=\"center\">{$street_address} {$supplemental_address_1}</font></td>\n <td style=\"padding-left:30px;\"><b><font size=\"1\" align=\"right\">{ts}Credit Note Number:{/ts}</font></b></td>\n <td><font size=\"1\" align=\"right\">\n {domain.supplemental_address_2}\n {domain.state_province_id:label}\n </font></td>\n </tr>\n <tr>\n <td style=\"padding-left:17px;\"><font size=\"1\" align=\"center\">{$supplemental_address_2} {$stateProvinceAbbreviation}</font></td>\n <td style=\"padding-left:30px;\"><font size=\"1\" align=\"right\">{contribution.creditnote_id}</font></td>\n <td><font size=\"1\" align=\"right\">\n {domain.city}\n {domain.postal_code}\n </font></td>\n </tr>\n <tr>\n <td style=\"padding-left:17px;\"><font size=\"1\" align=\"right\">{$city} {$postal_code}</font></td>\n <td height=\"10\" style=\"padding-left:30px;\"><b><font size=\"1\" align=\"right\">{ts}Reference:{/ts}</font></b></td>\n <td><font size=\"1\" align=\"right\">\n {domain.country_id:label}\n </font></td>\n </tr>\n <tr>\n <td></td>\n <td style=\"padding-left:30px;\"><font size=\"1\" align=\"right\">{contribution.source}</font></td>\n <td><font size=\"1\" align=\"right\">\n {domain.email}\n </font></td>\n </tr>\n <tr>\n <td></td>\n <td></td>\n <td><font size=\"1\" align=\"right\">\n {domain.phone}\n </font></td>\n </tr>\n </table>\n\n <table style=\"margin-top:75px;font-family: Arial, Verdana, sans-serif\" width=\"100%\" border=\"0\" cellpadding=\"5\" cellspacing=\"5\" id=\"desc\">\n <tr>\n <td colspan=\"2\">\n <table>\n <tr>\n <th style=\"padding-right:28px;text-align:left;font-weight:bold;width:200px;\"><font size=\"1\">{ts}Description{/ts}</font></th>\n <th style=\"padding-left:28px;text-align:right;font-weight:bold;\"><font size=\"1\">{ts}Quantity{/ts}</font></th>\n <th style=\"padding-left:28px;text-align:right;font-weight:bold;\"><font size=\"1\">{ts}Unit Price{/ts}</font></th>\n <th style=\"padding-left:28px;text-align:right;font-weight:bold;\"><font size=\"1\">{domain.tax_term}</font></th>\n <th style=\"padding-left:28px;text-align:right;font-weight:bold;\"><font size=\"1\">{ts 1=$currency}Amount %1{/ts}</font></th>\n </tr>\n {foreach from=$lineItems item=line key=index}\n <tr><td colspan=\"5\"><hr {if $index == 0}size=\"3\" style=\"color:#000;\"{else}style=\"color:#F5F5F5;\"{/if}></hr></td></tr>\n <tr>\n <td style =\"text-align:left;\" ><font size=\"1\">\n {$line.title}\n </font></td>\n <td style=\"padding-left:28px;text-align:right;\"><font size=\"1\">{$line.qty}</font></td>\n <td style=\"padding-left:28px;text-align:right;\"><font size=\"1\">{$line.unit_price|crmMoney:$currency}</font></td>\n {if $line.tax_amount != \'\'}\n <td style=\"padding-left:28px;text-align:right;\"><font size=\"1\">{if $line.tax_rate}{$line.tax_rate|crmNumberFormat}%{/if}</font></td>\n {else}\n <td style=\"padding-left:28px;text-align:right\"><font size=\"1\">{if \'{domain.tax_term}\'}{ts 1=\'{domain.tax_term}\'}No %1{/ts}{/if}</font></td>\n {/if}\n <td style=\"padding-left:28px;text-align:right;\"><font size=\"1\">{$line.line_total|crmMoney:\'{contribution.currency}\'}</font></td>\n </tr>\n {/foreach}\n <tr><td colspan=\"5\" style=\"color:#F5F5F5;\"><hr></hr></td></tr>\n <tr>\n <td colspan=\"3\"></td>\n <td style=\"padding-left:28px;text-align:right;\"><font size=\"1\">{ts}Sub Total{/ts}</font></td>\n <td style=\"padding-left:28px;text-align:right;\"><font size=\"1\">{$subTotal|crmMoney:$currency}</font></td>\n </tr>\n {foreach from=$taxRateBreakdown item=taxDetail key=taxRate}\n {if $taxRate != 0}\n <tr>\n <td colspan=\"3\"></td>\n <td style=\"padding-left:28px;text-align:right;\"><font size=\"1\">{if \'{domain.tax_term}\'}{ts 1=\'{domain.tax_term}\' 2=$taxRate|crmNumberFormat}TOTAL %1 %2%{/ts}{/if}</font></td>\n <td style=\"padding-left:28px;text-align:right;\"><font size=\"1\" align=\"right\">{$taxDetail.amount|crmMoney:\'{contribution.currency}\'}</font> </td>\n </tr>\n {/if}\n {/foreach}\n <tr>\n <td colspan=\"3\"></td>\n <td colspan=\"2\"><hr></hr></td>\n </tr>\n <tr>\n <td colspan=\"3\"></td>\n <td style=\"padding-left:28px;text-align:right;\"><b><font size=\"1\">{ts 1=$currency}TOTAL %1{/ts}</font></b></td>\n <td style=\"padding-left:28px;text-align:right;\"><font size=\"1\">{$amount|crmMoney:$currency}</font></td>\n </tr>\n {if \'{contribution.is_pay_later}\' == 0}\n <tr>\n <td colspan=\"3\"></td>\n <td style=\"padding-left:28px;text-align:right;\"><font size=\"1\">{ts}LESS Credit to invoice(s){/ts}</font></td>\n <td style=\"padding-left:28px;text-align:right;\"><font size=\"1\">{$amount|crmMoney:$currency}</font></td>\n </tr>\n <tr>\n <td colspan=\"3\"></td>\n <td colspan=\"2\"><hr></hr></td>\n </tr>\n <tr>\n <td colspan=\"3\"></td>\n <td style=\"padding-left:28px;text-align:right;\"><b><font size=\"1\">{ts}REMAINING CREDIT{/ts}</font></b></td>\n <td style=\"padding-left:28px;text-align:right;\"><b><font size=\"1\">{$amountDue|crmMoney:$currency}</font></b></td>\n <td style=\"padding-left:28px;\"><font size=\"1\" align=\"right\"></font></td>\n </tr>\n {/if}\n <br/><br/><br/>\n <tr>\n <td colspan=\"3\"></td>\n </tr>\n <tr>\n <td></td>\n <td colspan=\"3\"></td>\n </tr>\n </table>\n </td>\n </tr>\n </table>\n\n <table width=\"100%\" style=\"margin-top:5px;padding-right:45px;\">\n <tr>\n <td><img src=\"{$resourceBase}/i/contribute/cut_line.png\" height=\"15\" width=\"100%\"></td>\n </tr>\n </table>\n\n <table style=\"margin-top:6px;font-family: Arial, Verdana, sans-serif\" width=\"100%\" border=\"0\" cellpadding=\"5\" cellspacing=\"5\" id=\"desc\">\n <tr>\n <td width=\"60%\"><font size=\"4\" align=\"right\"><b>{ts}CREDIT ADVICE{/ts}</b><br/><br /><div style=\"font-size:10px;max-width:300px;\">{ts}Please do not pay on this advice. Deduct the amount of this Credit Note from your next payment to us{/ts}</div><br/></font></td>\n <td width=\"40%\">\n <table align=\"right\">\n <tr>\n <td colspan=\"2\"></td>\n <td><font size=\"1\" align=\"right\" style=\"font-weight:bold;\">{ts}Customer:{/ts}</font></td>\n <td><font size=\"1\" align=\"right\">{contact.display_name}</font></td>\n </tr>\n <tr>\n <td colspan=\"2\"></td>\n <td><font size=\"1\" align=\"right\" style=\"font-weight:bold;\">{ts}Credit Note#:{/ts}</font></td>\n <td><font size=\"1\" align=\"right\">{contribution.creditnote_id}</font></td>\n </tr>\n <tr><td colspan=\"5\"style=\"color:#F5F5F5;\"><hr></hr></td></tr>\n <tr>\n <td colspan=\"2\"></td>\n <td><font size=\"1\" align=\"right\" style=\"font-weight:bold;\">{ts}Credit Amount:{/ts}</font></td>\n <td width=\'50px\'><font size=\"1\" align=\"right\" style=\"font-weight:bold;\">{$amount|crmMoney:$currency}</font></td>\n </tr>\n </table>\n </td>\n </tr>\n </table>\n {/if}\n\n </div>\n </body>\n</html>\n',1,817,'contribution_invoice_receipt',1,0,0,NULL), (10,'Contributions - Invoice','{if $title}\n {if $component}\n {if $component == \'event\'}\n {ts 1=$title}Event Registration Invoice: %1{/ts}\n {else}\n {ts 1=$title}Contribution Invoice: %1{/ts}\n {/if}\n {/if}\n{else}\n {ts}Invoice{/ts}\n{/if}\n - {contact.display_name}\n','{ts}Contribution Invoice{/ts}\n','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n <head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n </head>\n <body>\n <div style=\"padding-top:100px;margin-right:50px;border-style: none;\">\n {if $config->empoweredBy}\n <table style=\"margin-top:5px;padding-bottom:50px;\" cellpadding=\"5\" cellspacing=\"0\">\n <tr>\n <td><img src=\"{domain.empowered_by_civicrm_image_url}\" height=\"34px\" width=\"99px\"></td>\n </tr>\n </table>\n {/if}\n <table style=\"font-family: Arial, Verdana, sans-serif;\" width=\"100%\" height=\"100\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\">\n <tr>\n <td width=\"30%\"><b><font size=\"4\" align=\"center\">{ts}INVOICE{/ts}</font></b></td>\n <td width=\"50%\" valign=\"bottom\"><b><font size=\"1\" align=\"center\">{ts}Invoice Date:{/ts}</font></b></td>\n <td valign=\"bottom\" style=\"white-space: nowrap\"><b><font size=\"1\" align=\"right\">{domain.name}</font></b></td>\n </tr>\n <tr>\n <td><font size=\"1\" align=\"center\">{contact.display_name}{if \'{contact.current_employer}\'} ({contact.current_employer}){/if}</font></td>\n <td><font size=\"1\" align=\"right\">{$invoice_date}</font></td>\n <td style=\"white-space: nowrap\"><font size=\"1\" align=\"right\">\n {domain.street_address}\n {domain.supplemental_address_1}\n </font></td>\n </tr>\n <tr>\n <td><font size=\"1\" align=\"center\">{$street_address} {$supplemental_address_1}</font></td>\n <td><b><font size=\"1\" align=\"right\">{ts}Invoice Number:{/ts}</font></b></td>\n <td><font size=\"1\" align=\"right\">\n {domain.supplemental_address_2}\n {domain.state_province_id:label}\n </font></td>\n </tr>\n <tr>\n <td><font size=\"1\" align=\"center\">{$supplemental_address_2} {$stateProvinceAbbreviation}</font></td>\n <td><font size=\"1\" align=\"right\">{contribution.invoice_number}</font></td>\n <td style=\"white-space: nowrap\"><font size=\"1\" align=\"right\">\n {domain.city}\n {domain.postal_code}\n </font></td>\n </tr>\n <tr>\n <td><font size=\"1\" align=\"right\">{$city} {$postal_code}</font></td>\n <td height=\"10\"><b><font size=\"1\" align=\"right\">{ts}Reference:{/ts}</font></b></td>\n <td><font size=\"1\" align=\"right\">{domain.country_id:label}</font></td>\n </tr>\n <tr>\n <td><font size=\"1\" align=\"right\"> {$country}</font></td>\n <td><font size=\"1\" align=\"right\">{contribution.source}</font></td>\n <td valign=\"top\" style=\"white-space: nowrap\"><font size=\"1\" align=\"right\">{domain.email}</font> </td>\n </tr>\n <tr>\n <td></td>\n <td></td>\n <td valign=\"top\"><font size=\"1\" align=\"right\">{domain.phone}</font> </td>\n </tr>\n </table>\n\n <table style=\"padding-top:75px;font-family: Arial, Verdana, sans-serif;\" width=\"100%\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\">\n <tr>\n <th style=\"text-align:left;font-weight:bold;width:100%\"><font size=\"1\">{ts}Description{/ts}</font></th>\n <th style=\"text-align:right;font-weight:bold;white-space: nowrap\"><font size=\"1\">{ts}Quantity{/ts}</font></th>\n <th style=\"text-align:right;font-weight:bold;white-space: nowrap\"><font size=\"1\">{ts}Unit Price{/ts}</font></th>\n <th style=\"text-align:right;font-weight:bold;white-space: nowrap\"><font size=\"1\">{domain.tax_term}</font></th>\n <th style=\"text-align:right;font-weight:bold;white-space: nowrap\"><font size=\"1\">{ts 1=$currency}Amount %1{/ts}</font></th>\n </tr>\n {foreach from=$lineItems item=line}\n <tr>\n <td style=\"text-align:left;nowrap\"><font size=\"1\">\n {$line.title}\n </font></td>\n <td style=\"text-align:right;\"><font size=\"1\">{$line.qty}</font></td>\n <td style=\"text-align:right;\"><font size=\"1\">{$line.unit_price|crmMoney:$currency}</font></td>\n {if $line.tax_amount != \'\'}\n <td style=\"text-align:right;\"><font size=\"1\">{if $line.tax_rate}{$line.tax_rate|crmNumberFormat}%{/if}</font></td>\n {else}\n <td style=\"text-align:right;\"><font size=\"1\">{if \'{domain.tax_term}\'}{ts 1=\'{domain.tax_term}\'}-{/ts}{/if}</font></td>\n {/if}\n <td style=\"text-align:right;\"><font size=\"1\">{$line.line_total|crmMoney:\'{contribution.currency}\'}</font></td>\n </tr>\n {/foreach}\n <tr>\n <td colspan=\"3\"></td>\n <td style=\"text-align:right;\"><font size=\"1\">{ts}Sub Total{/ts}</font></td>\n <td style=\"text-align:right;\"><font size=\"1\">{$subTotal|crmMoney:$currency}</font></td>\n </tr>\n {foreach from=$taxRateBreakdown item=taxDetail key=taxRate}\n {if $taxRate != 0}\n <tr>\n <td colspan=\"3\"></td>\n <td style=\"text-align:right;white-space: nowrap\"><font size=\"1\">{if \'{domain.tax_term}\'}{ts 1=\'{domain.tax_term}\' 2=$taxRate|crmNumberFormat}TOTAL %1 %2%{/ts}{/if}</font></td>\n <td style=\"text-align:right\"><font size=\"1\" align=\"right\">{$taxDetail.amount|crmMoney:\'{contribution.currency}\'}</font> </td>\n </tr>\n {/if}\n {/foreach}\n <tr>\n <td colspan=\"3\"></td>\n <td style=\"text-align:right;white-space: nowrap\"><b><font size=\"1\">{ts 1=$currency}TOTAL %1{/ts}</font></b></td>\n <td style=\"text-align:right;\"><font size=\"1\">{$amount|crmMoney:$currency}</font></td>\n </tr>\n <tr>\n <td colspan=\"3\"></td>\n <td style=\"text-align:right;white-space: nowrap\"><font size=\"1\">\n {if \'{contribution.contribution_status_id:name}\' == \'Refunded\'}\n {ts}Amount Credited{/ts}\n {else}\n {ts}Amount Paid{/ts}\n {/if}\n </font></td>\n <td style=\"text-align:right;\"><font size=\"1\">{$amountPaid|crmMoney:$currency}</font></td>\n </tr>\n <tr>\n <td colspan=\"3\"></td>\n <td colspan=\"2\"><hr></hr></td>\n </tr>\n <tr>\n <td colspan=\"3\"></td>\n <td style=\"text-align:right;white-space: nowrap\" ><b><font size=\"1\">{ts}AMOUNT DUE:{/ts}</font></b></td>\n <td style=\"text-align:right;\"><b><font size=\"1\">{$amountDue|crmMoney:$currency}</font></b></td>\n </tr>\n <tr>\n <td colspan=\"5\"></td>\n </tr>\n {if \'{contribution.contribution_status_id:name}\' == \'Pending\' && \'{contribution.is_pay_later}\' == 1}\n <tr>\n <td colspan=\"3\"><b><font size=\"1\" align=\"center\">{ts 1=$dueDate}DUE DATE: %1{/ts}</font></b></td>\n <td colspan=\"2\"></td>\n </tr>\n {/if}\n </table>\n\n {if \'{contribution.contribution_status_id:name}\' == \'Pending\' && \'{contribution.is_pay_later}\' == 1}\n <table style=\"margin-top:5px;\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\n <tr>\n <td><img src=\"{$resourceBase}/i/contribute/cut_line.png\" height=\"15\"></td>\n </tr>\n </table>\n\n <table style=\"margin-top:5px;font-family: Arial, Verdana, sans-serif\" width=\"100%\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\" id=\"desc\">\n <tr>\n <td width=\"60%\"><b><font size=\"4\" align=\"right\">{ts}PAYMENT ADVICE{/ts}</font></b><br/><br/>\n <font size=\"1\" align=\"left\"><b>{ts}To:{/ts}</b><div style=\"width:24em;word-wrap:break-word;\">\n {domain.name}<br />\n {domain.street_address} {domain.supplemental_address_1}<br />\n {domain.supplemental_address_2} {domain.state_province_id:label}<br />\n {domain.city} {domain.postal_code}<br />\n {domain.country_id:label}<br />\n {domain.email}</div>\n {domain.phone}<br />\n </font>\n <br/><br/><font size=\"1\" align=\"left\">{$notes}</font>\n </td>\n <td width=\"40%\">\n <table cellpadding=\"5\" cellspacing=\"0\" width=\"100%\" border=\"0\">\n <tr>\n <td width=\"100%\"><font size=\"1\" align=\"right\" style=\"font-weight:bold;\">{ts}Customer:{/ts}</font></td>\n <td style=\"white-space: nowrap\"><font size=\"1\" align=\"right\">{contact.display_name}</font></td>\n </tr>\n <tr>\n <td><font size=\"1\" align=\"right\" style=\"font-weight:bold;\">{ts}Invoice Number:{/ts}</font></td>\n <td><font size=\"1\" align=\"right\">{contribution.invoice_number}</font></td>\n </tr>\n <tr><td colspan=\"5\" style=\"color:#F5F5F5;\"><hr></td></tr>\n {if $is_pay_later == 1}\n <tr>\n <td><font size=\"1\" align=\"right\" style=\"font-weight:bold;\">{ts}Amount Due:{/ts}</font></td>\n <td><font size=\"1\" align=\"right\" style=\"font-weight:bold;\">{$amount|crmMoney:$currency}</font></td>\n </tr>\n {else}\n <tr>\n <td><font size=\"1\" align=\"right\" style=\"font-weight:bold;\">{ts}Amount Due:{/ts}</font></td>\n <td><font size=\"1\" align=\"right\" style=\"font-weight:bold;\">{$amountDue|crmMoney:$currency}</font></td>\n </tr>\n {/if}\n <tr>\n <td><font size=\"1\" align=\"right\" style=\"font-weight:bold;\">{ts}Due Date:{/ts}</font></td>\n <td><font size=\"1\" align=\"right\">{$dueDate}</font></td>\n </tr>\n <tr>\n <td colspan=\"5\" style=\"color:#F5F5F5;\"><hr></td>\n </tr>\n </table>\n </td>\n </tr>\n </table>\n {/if}\n\n {if \'{contribution.contribution_status_id:name}\' === \'Refunded\' || \'{contribution.contribution_status_id:name}\' === \'Cancelled\'}\n {if $config->empoweredBy}\n <table style=\"margin-top:2px;padding-left:7px;page-break-before: always;\">\n <tr>\n <td><img src=\"{$resourceBase}/i/civi99.png\" height=\"34px\" width=\"99px\"></td>\n </tr>\n </table>\n {/if}\n\n <table style=\"font-family: Arial, Verdana, sans-serif\" width=\"100%\" height=\"100\" border=\"0\" cellpadding=\"5\" cellspacing=\"5\">\n <tr>\n <td style=\"padding-left:15px;\"><b><font size=\"4\" align=\"center\">{ts}CREDIT NOTE{/ts}</font></b></td>\n <td style=\"padding-left:30px;\"><b><font size=\"1\" align=\"right\">{ts}Date:{/ts}</font></b></td>\n <td><font size=\"1\" align=\"right\">{domain.name}</font></td>\n </tr>\n <tr>\n <td style=\"padding-left:17px;\"><font size=\"1\" align=\"center\">{contact.display_name}{if \'{contact.current_employer}\'} ({contact.current_employer}){/if}</font></td>\n <td style=\"padding-left:30px;\"><font size=\"1\" align=\"right\">{$invoice_date}</font></td>\n <td><font size=\"1\" align=\"right\">\n {domain.street_address}\n {domain.supplemental_address_1}\n </font></td>\n </tr>\n <tr>\n <td style=\"padding-left:17px;\"><font size=\"1\" align=\"center\">{$street_address} {$supplemental_address_1}</font></td>\n <td style=\"padding-left:30px;\"><b><font size=\"1\" align=\"right\">{ts}Credit Note Number:{/ts}</font></b></td>\n <td><font size=\"1\" align=\"right\">\n {domain.supplemental_address_2}\n {domain.state_province_id:label}\n </font></td>\n </tr>\n <tr>\n <td style=\"padding-left:17px;\"><font size=\"1\" align=\"center\">{$supplemental_address_2} {$stateProvinceAbbreviation}</font></td>\n <td style=\"padding-left:30px;\"><font size=\"1\" align=\"right\">{contribution.creditnote_id}</font></td>\n <td><font size=\"1\" align=\"right\">\n {domain.city}\n {domain.postal_code}\n </font></td>\n </tr>\n <tr>\n <td style=\"padding-left:17px;\"><font size=\"1\" align=\"right\">{$city} {$postal_code}</font></td>\n <td height=\"10\" style=\"padding-left:30px;\"><b><font size=\"1\" align=\"right\">{ts}Reference:{/ts}</font></b></td>\n <td><font size=\"1\" align=\"right\">\n {domain.country_id:label}\n </font></td>\n </tr>\n <tr>\n <td></td>\n <td style=\"padding-left:30px;\"><font size=\"1\" align=\"right\">{contribution.source}</font></td>\n <td><font size=\"1\" align=\"right\">\n {domain.email}\n </font></td>\n </tr>\n <tr>\n <td></td>\n <td></td>\n <td><font size=\"1\" align=\"right\">\n {domain.phone}\n </font></td>\n </tr>\n </table>\n\n <table style=\"margin-top:75px;font-family: Arial, Verdana, sans-serif\" width=\"100%\" border=\"0\" cellpadding=\"5\" cellspacing=\"5\" id=\"desc\">\n <tr>\n <td colspan=\"2\">\n <table>\n <tr>\n <th style=\"padding-right:28px;text-align:left;font-weight:bold;width:200px;\"><font size=\"1\">{ts}Description{/ts}</font></th>\n <th style=\"padding-left:28px;text-align:right;font-weight:bold;\"><font size=\"1\">{ts}Quantity{/ts}</font></th>\n <th style=\"padding-left:28px;text-align:right;font-weight:bold;\"><font size=\"1\">{ts}Unit Price{/ts}</font></th>\n <th style=\"padding-left:28px;text-align:right;font-weight:bold;\"><font size=\"1\">{domain.tax_term}</font></th>\n <th style=\"padding-left:28px;text-align:right;font-weight:bold;\"><font size=\"1\">{ts 1=$currency}Amount %1{/ts}</font></th>\n </tr>\n {foreach from=$lineItems item=line key=index}\n <tr><td colspan=\"5\"><hr {if $index == 0}size=\"3\" style=\"color:#000;\"{else}style=\"color:#F5F5F5;\"{/if}></hr></td></tr>\n <tr>\n <td style =\"text-align:left;\" ><font size=\"1\">\n {$line.title}\n </font></td>\n <td style=\"padding-left:28px;text-align:right;\"><font size=\"1\">{$line.qty}</font></td>\n <td style=\"padding-left:28px;text-align:right;\"><font size=\"1\">{$line.unit_price|crmMoney:$currency}</font></td>\n {if $line.tax_amount != \'\'}\n <td style=\"padding-left:28px;text-align:right;\"><font size=\"1\">{if $line.tax_rate}{$line.tax_rate|crmNumberFormat}%{/if}</font></td>\n {else}\n <td style=\"padding-left:28px;text-align:right\"><font size=\"1\">{if \'{domain.tax_term}\'}{ts 1=\'{domain.tax_term}\'}No %1{/ts}{/if}</font></td>\n {/if}\n <td style=\"padding-left:28px;text-align:right;\"><font size=\"1\">{$line.line_total|crmMoney:\'{contribution.currency}\'}</font></td>\n </tr>\n {/foreach}\n <tr><td colspan=\"5\" style=\"color:#F5F5F5;\"><hr></hr></td></tr>\n <tr>\n <td colspan=\"3\"></td>\n <td style=\"padding-left:28px;text-align:right;\"><font size=\"1\">{ts}Sub Total{/ts}</font></td>\n <td style=\"padding-left:28px;text-align:right;\"><font size=\"1\">{$subTotal|crmMoney:$currency}</font></td>\n </tr>\n {foreach from=$taxRateBreakdown item=taxDetail key=taxRate}\n {if $taxRate != 0}\n <tr>\n <td colspan=\"3\"></td>\n <td style=\"padding-left:28px;text-align:right;\"><font size=\"1\">{if \'{domain.tax_term}\'}{ts 1=\'{domain.tax_term}\' 2=$taxRate|crmNumberFormat}TOTAL %1 %2%{/ts}{/if}</font></td>\n <td style=\"padding-left:28px;text-align:right;\"><font size=\"1\" align=\"right\">{$taxDetail.amount|crmMoney:\'{contribution.currency}\'}</font> </td>\n </tr>\n {/if}\n {/foreach}\n <tr>\n <td colspan=\"3\"></td>\n <td colspan=\"2\"><hr></hr></td>\n </tr>\n <tr>\n <td colspan=\"3\"></td>\n <td style=\"padding-left:28px;text-align:right;\"><b><font size=\"1\">{ts 1=$currency}TOTAL %1{/ts}</font></b></td>\n <td style=\"padding-left:28px;text-align:right;\"><font size=\"1\">{$amount|crmMoney:$currency}</font></td>\n </tr>\n {if \'{contribution.is_pay_later}\' == 0}\n <tr>\n <td colspan=\"3\"></td>\n <td style=\"padding-left:28px;text-align:right;\"><font size=\"1\">{ts}LESS Credit to invoice(s){/ts}</font></td>\n <td style=\"padding-left:28px;text-align:right;\"><font size=\"1\">{$amount|crmMoney:$currency}</font></td>\n </tr>\n <tr>\n <td colspan=\"3\"></td>\n <td colspan=\"2\"><hr></hr></td>\n </tr>\n <tr>\n <td colspan=\"3\"></td>\n <td style=\"padding-left:28px;text-align:right;\"><b><font size=\"1\">{ts}REMAINING CREDIT{/ts}</font></b></td>\n <td style=\"padding-left:28px;text-align:right;\"><b><font size=\"1\">{$amountDue|crmMoney:$currency}</font></b></td>\n <td style=\"padding-left:28px;\"><font size=\"1\" align=\"right\"></font></td>\n </tr>\n {/if}\n <br/><br/><br/>\n <tr>\n <td colspan=\"3\"></td>\n </tr>\n <tr>\n <td></td>\n <td colspan=\"3\"></td>\n </tr>\n </table>\n </td>\n </tr>\n </table>\n\n <table width=\"100%\" style=\"margin-top:5px;padding-right:45px;\">\n <tr>\n <td><img src=\"{$resourceBase}/i/contribute/cut_line.png\" height=\"15\" width=\"100%\"></td>\n </tr>\n </table>\n\n <table style=\"margin-top:6px;font-family: Arial, Verdana, sans-serif\" width=\"100%\" border=\"0\" cellpadding=\"5\" cellspacing=\"5\" id=\"desc\">\n <tr>\n <td width=\"60%\"><font size=\"4\" align=\"right\"><b>{ts}CREDIT ADVICE{/ts}</b><br/><br /><div style=\"font-size:10px;max-width:300px;\">{ts}Please do not pay on this advice. Deduct the amount of this Credit Note from your next payment to us{/ts}</div><br/></font></td>\n <td width=\"40%\">\n <table align=\"right\">\n <tr>\n <td colspan=\"2\"></td>\n <td><font size=\"1\" align=\"right\" style=\"font-weight:bold;\">{ts}Customer:{/ts}</font></td>\n <td><font size=\"1\" align=\"right\">{contact.display_name}</font></td>\n </tr>\n <tr>\n <td colspan=\"2\"></td>\n <td><font size=\"1\" align=\"right\" style=\"font-weight:bold;\">{ts}Credit Note#:{/ts}</font></td>\n <td><font size=\"1\" align=\"right\">{contribution.creditnote_id}</font></td>\n </tr>\n <tr><td colspan=\"5\"style=\"color:#F5F5F5;\"><hr></hr></td></tr>\n <tr>\n <td colspan=\"2\"></td>\n <td><font size=\"1\" align=\"right\" style=\"font-weight:bold;\">{ts}Credit Amount:{/ts}</font></td>\n <td width=\'50px\'><font size=\"1\" align=\"right\" style=\"font-weight:bold;\">{$amount|crmMoney:$currency}</font></td>\n </tr>\n </table>\n </td>\n </tr>\n </table>\n {/if}\n\n </div>\n </body>\n</html>\n',1,817,'contribution_invoice_receipt',0,1,0,NULL), (11,'Contributions - Recurring Start and End Notification','{ts}Recurring Contribution Notification{/ts} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\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{if $cancelSubscriptionUrl}\n{ts 1=$cancelSubscriptionUrl}You can cancel the auto-renewal option by <a href=\"%1\">visiting this web page</a>.{/ts}\n\n{/if}\n\n{if $updateSubscriptionBillingUrl}\n{ts 1=$updateSubscriptionBillingUrl}You can update billing details for this automatically renewed membership by <a href=\"%1\">visiting this web page</a>.{/ts}\n\n{/if}\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){/ts}{if $recur_installments } {ts 1=$recur_installments} for a total of %1 installment(s){/ts}{/if}.\n\n{ts}Start Date{/ts}: {$recur_start_date|crmDate}\n\n{if $cancelSubscriptionUrl}\n{ts 1=$cancelSubscriptionUrl}You can cancel the recurring contribution option by <a href=\"%1\">visiting this web page</a>.{/ts}\n\n{/if}\n\n{if $updateSubscriptionBillingUrl}\n{ts 1=$updateSubscriptionBillingUrl}You can update billing details for this recurring contribution by <a href=\"%1\">visiting this web page</a>.{/ts}\n\n{/if}\n\n{if $updateSubscriptionUrl}\n{ts 1=$updateSubscriptionUrl}You can update recurring contribution amount or change the number of installments for this recurring contribution by <a href=\"%1\">visiting this web page</a>.{/ts}\n\n{/if}\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.{/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','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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 <table id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left; width:100%; max-width:700px; padding:0; margin:0; border:0px;\">\n\n <!-- BEGIN HEADER -->\n <!-- You can add table row(s) here with logo or other header elements -->\n <!-- END HEADER -->\n\n <!-- BEGIN CONTENT -->\n\n <tr>\n <td>\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}<p>{$greeting},</p>{/if}\n </td>\n </tr>\n\n <tr>\n <td> </td>\n </tr>\n\n {if $recur_txnType eq \'START\'}\n {if $auto_renew_membership}\n <tr>\n <td>\n <p>{ts}Thanks for your auto renew membership sign-up.{/ts}</p>\n <p>{ts 1=$recur_frequency_interval 2=$recur_frequency_unit}This membership will be automatically renewed every %1 %2(s). {/ts}</p>\n </td>\n </tr>\n {if $cancelSubscriptionUrl}\n <tr>\n <td {$labelStyle}>\n {ts 1=$cancelSubscriptionUrl}You can cancel the auto-renewal option by <a href=\"%1\">visiting this web page</a>.{/ts}\n </td>\n </tr>\n {/if}\n {if $updateSubscriptionBillingUrl}\n <tr>\n <td {$labelStyle}>\n {ts 1=$updateSubscriptionBillingUrl}You can update billing details for this automatically renewed membership by <a href=\"%1\">visiting this web page</a>.{/ts}\n </td>\n </tr>\n {/if}\n {else}\n <tr>\n <td>\n <p>{ts}Thanks for your recurring contribution sign-up.{/ts}</p>\n <p>{ts 1=$recur_frequency_interval 2=$recur_frequency_unit}This recurring contribution will be automatically processed every %1 %2(s){/ts}{if $recur_installments }{ts 1=$recur_installments} for a total of %1 installment(s){/ts}{/if}.</p>\n <p>{ts}Start Date{/ts}: {$recur_start_date|crmDate}</p>\n </td>\n </tr>\n {if $cancelSubscriptionUrl}\n <tr>\n <td {$labelStyle}>\n {ts 1=$cancelSubscriptionUrl} You can cancel the recurring contribution option by <a href=\"%1\">visiting this web page</a>.{/ts}\n </td>\n </tr>\n {/if}\n {if $updateSubscriptionBillingUrl}\n <tr>\n <td {$labelStyle}>\n {ts 1=$updateSubscriptionBillingUrl}You can update billing details for this recurring contribution by <a href=\"%1\">visiting this web page</a>.{/ts}\n </td>\n </tr>\n {/if}\n {if $updateSubscriptionUrl}\n <tr>\n <td {$labelStyle}>\n {ts 1=$updateSubscriptionUrl}You can update recurring contribution amount or change the number of installments details for this recurring contribution by <a href=\"%1\">visiting this web page</a>.{/ts}\n </td>\n </tr>\n {/if}\n {/if}\n\n {elseif $recur_txnType eq \'END\'}\n\n {if $auto_renew_membership}\n <tr>\n <td>\n <p>{ts}Your auto renew membership sign-up has ended and your membership will not be automatically renewed.{/ts}</p>\n </td>\n </tr>\n {else}\n <tr>\n <td>\n <p>{ts}Your recurring contribution term has ended.{/ts}</p>\n <p>{ts 1=$recur_installments}You have successfully completed %1 recurring contributions. Thank you.{/ts}</p>\n </td>\n </tr>\n <tr>\n <td>\n <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n <tr>\n <th {$headerStyle}>\n {ts 1=$recur_installments}Interval of Subscription for %1 installment(s){/ts}\n </th>\n </tr>\n <tr>\n <td {$labelStyle}>\n {ts}Start Date{/ts}\n </td>\n <td {$valueStyle}>\n {$recur_start_date|crmDate}\n </td>\n </tr>\n <tr>\n <td {$labelStyle}>\n {ts}End Date{/ts}\n </td>\n <td {$valueStyle}>\n {$recur_end_date|crmDate}\n </td>\n </tr>\n </table>\n </td>\n </tr>\n\n {/if}\n {/if}\n\n </table>\n\n</body>\n</html>\n',1,818,'contribution_recurring_notify',1,0,0,NULL), @@ -5728,26 +5733,26 @@ 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`, `note_date`, `created_date`, `modified_date`, `subject`, `privacy`) VALUES - (1,'civicrm_contact',12,'Chart out route map for next 10k run',1,'2022-12-07 16:48:58','2022-12-07 16:48:58','2021-12-18 07:06:01',NULL,'0'), - (2,'civicrm_contact',171,'Arrange collection of funds from members',1,'2022-12-07 16:48:58','2022-12-07 16:48:58','2022-01-04 01:41:43',NULL,'0'), - (3,'civicrm_contact',67,'Invite members for the Steve Prefontaine 10k dream run',1,'2022-12-07 16:48:58','2022-12-07 16:48:58','2022-07-31 21:38:17',NULL,'0'), - (4,'civicrm_contact',186,'Connect for presentation',1,'2022-12-07 16:48:58','2022-12-07 16:48:58','2022-01-29 10:24:06',NULL,'0'), - (5,'civicrm_contact',95,'Get the registration done for NGO status',1,'2022-12-07 16:48:58','2022-12-07 16:48:58','2022-06-17 11:10:51',NULL,'0'), - (6,'civicrm_contact',113,'Invite members for the Steve Prefontaine 10k dream run',1,'2022-12-07 16:48:58','2022-12-07 16:48:58','2022-09-14 22:37:48',NULL,'0'), - (7,'civicrm_contact',27,'Reminder screening of \"Black\" on next Friday',1,'2022-12-07 16:48:58','2022-12-07 16:48:58','2022-06-10 13:35:45',NULL,'0'), - (8,'civicrm_contact',170,'Get the registration done for NGO status',1,'2022-12-07 16:48:58','2022-12-07 16:48:58','2022-11-30 04:51:28',NULL,'0'), - (9,'civicrm_contact',45,'Arrange for cricket match with Sunil Gavaskar',1,'2022-12-07 16:48:58','2022-12-07 16:48:58','2022-03-11 16:31:57',NULL,'0'), - (10,'civicrm_contact',189,'Send reminder for annual dinner',1,'2022-12-07 16:48:58','2022-12-07 16:48:58','2022-09-24 09:10:37',NULL,'0'), - (11,'civicrm_contact',111,'Contact the Commissioner of Charities',1,'2022-12-07 16:48:58','2022-12-07 16:48:58','2022-09-17 18:26:00',NULL,'0'), - (12,'civicrm_contact',100,'Send newsletter for April 2005',1,'2022-12-07 16:48:58','2022-12-07 16:48:58','2022-02-06 13:40:11',NULL,'0'), - (13,'civicrm_contact',105,'Invite members for the Steve Prefontaine 10k dream run',1,'2022-12-07 16:48:58','2022-12-07 16:48:58','2021-12-30 21:53:47',NULL,'0'), - (14,'civicrm_contact',134,'Send newsletter for April 2005',1,'2022-12-07 16:48:58','2022-12-07 16:48:58','2022-02-27 19:05:36',NULL,'0'), - (15,'civicrm_contact',98,'Get the registration done for NGO status',1,'2022-12-07 16:48:58','2022-12-07 16:48:58','2022-09-10 04:28:56',NULL,'0'), - (16,'civicrm_contact',86,'Get the registration done for NGO status',1,'2022-12-07 16:48:58','2022-12-07 16:48:58','2022-03-08 02:23:05',NULL,'0'), - (17,'civicrm_contact',10,'Contact the Commissioner of Charities',1,'2022-12-07 16:48:58','2022-12-07 16:48:58','2022-04-26 11:40:10',NULL,'0'), - (18,'civicrm_contact',135,'Reminder screening of \"Black\" on next Friday',1,'2022-12-07 16:48:58','2022-12-07 16:48:58','2022-08-16 07:07:04',NULL,'0'), - (19,'civicrm_contact',197,'Reminder screening of \"Black\" on next Friday',1,'2022-12-07 16:48:58','2022-12-07 16:48:58','2022-11-29 02:41:44',NULL,'0'), - (20,'civicrm_contact',113,'Send newsletter for April 2005',1,'2022-12-07 16:48:58','2022-12-07 16:48:58','2022-04-10 07:32:51',NULL,'0'); + (1,'civicrm_contact',172,'Chart out route map for next 10k run',1,'2023-01-25 00:10:19','2023-01-25 00:10:19','2022-10-22 09:40:20',NULL,'0'), + (2,'civicrm_contact',106,'Send newsletter for April 2005',1,'2023-01-25 00:10:19','2023-01-25 00:10:19','2023-01-07 22:37:10',NULL,'0'), + (3,'civicrm_contact',5,'Invite members for the Steve Prefontaine 10k dream run',1,'2023-01-25 00:10:19','2023-01-25 00:10:19','2023-01-21 06:05:45',NULL,'0'), + (4,'civicrm_contact',52,'Invite members for the Steve Prefontaine 10k dream run',1,'2023-01-25 00:10:19','2023-01-25 00:10:19','2022-10-11 07:49:52',NULL,'0'), + (5,'civicrm_contact',65,'Invite members for the Steve Prefontaine 10k dream run',1,'2023-01-25 00:10:19','2023-01-25 00:10:19','2022-10-30 19:44:20',NULL,'0'), + (6,'civicrm_contact',9,'Send newsletter for April 2005',1,'2023-01-25 00:10:19','2023-01-25 00:10:19','2022-10-27 13:58:14',NULL,'0'), + (7,'civicrm_contact',94,'Organize the Terry Fox run',1,'2023-01-25 00:10:19','2023-01-25 00:10:19','2022-09-18 01:15:04',NULL,'0'), + (8,'civicrm_contact',124,'Contact the Commissioner of Charities',1,'2023-01-25 00:10:19','2023-01-25 00:10:19','2022-04-10 16:15:11',NULL,'0'), + (9,'civicrm_contact',17,'Contact the Commissioner of Charities',1,'2023-01-25 00:10:19','2023-01-25 00:10:19','2022-01-28 20:49:34',NULL,'0'), + (10,'civicrm_contact',165,'Get the registration done for NGO status',1,'2023-01-25 00:10:19','2023-01-25 00:10:19','2022-09-27 09:19:46',NULL,'0'), + (11,'civicrm_contact',82,'Contact the Commissioner of Charities',1,'2023-01-25 00:10:19','2023-01-25 00:10:19','2022-06-17 10:40:40',NULL,'0'), + (12,'civicrm_contact',147,'Contact the Commissioner of Charities',1,'2023-01-25 00:10:19','2023-01-25 00:10:19','2022-11-25 11:29:40',NULL,'0'), + (13,'civicrm_contact',90,'Organize the Terry Fox run',1,'2023-01-25 00:10:19','2023-01-25 00:10:19','2022-04-11 14:31:44',NULL,'0'), + (14,'civicrm_contact',147,'Contact the Commissioner of Charities',1,'2023-01-25 00:10:19','2023-01-25 00:10:19','2022-10-13 22:03:38',NULL,'0'), + (15,'civicrm_contact',34,'Send newsletter for April 2005',1,'2023-01-25 00:10:19','2023-01-25 00:10:19','2022-09-24 16:51:40',NULL,'0'), + (16,'civicrm_contact',119,'Arrange collection of funds from members',1,'2023-01-25 00:10:19','2023-01-25 00:10:19','2023-01-08 20:29:11',NULL,'0'), + (17,'civicrm_contact',183,'Invite members for the Steve Prefontaine 10k dream run',1,'2023-01-25 00:10:19','2023-01-25 00:10:19','2022-06-04 03:54:28',NULL,'0'), + (18,'civicrm_contact',164,'Arrange for cricket match with Sunil Gavaskar',1,'2023-01-25 00:10:19','2023-01-25 00:10:19','2022-06-28 14:21:11',NULL,'0'), + (19,'civicrm_contact',191,'Send newsletter for April 2005',1,'2023-01-25 00:10:19','2023-01-25 00:10:19','2022-11-19 16:55:51',NULL,'0'), + (20,'civicrm_contact',8,'Contact the Commissioner of Charities',1,'2023-01-25 00:10:19','2023-01-25 00:10:19','2022-11-02 19:00:42',NULL,'0'); /*!40000 ALTER TABLE `civicrm_note` ENABLE KEYS */; UNLOCK TABLES; @@ -5768,20 +5773,20 @@ LOCK TABLES `civicrm_option_group` WRITE; /*!40000 ALTER TABLE `civicrm_option_group` DISABLE KEYS */; INSERT INTO `civicrm_option_group` (`id`, `name`, `title`, `description`, `data_type`, `is_reserved`, `is_active`, `is_locked`, `option_value_fields`) VALUES (1,'preferred_communication_method','Preferred Communication Method',NULL,NULL,1,1,0,'name,label,description'), - (2,'activity_type','Activity Type',NULL,'Integer',1,1,0,'name,label,description,icon'), - (3,'gender','Gender',NULL,'Integer',1,1,0,'name,label,description'), - (4,'instant_messenger_service','Instant Messenger (IM) screen-names',NULL,NULL,1,1,0,'name,label,description'), - (5,'mobile_provider','Mobile Phone Providers',NULL,NULL,1,1,0,'name,label,description'), - (6,'individual_prefix','Individual contact prefixes',NULL,NULL,1,1,0,'name,label,description'), - (7,'individual_suffix','Individual contact suffixes',NULL,NULL,1,1,0,'name,label,description'), + (2,'activity_type','Activity Type','Activities track interactions with contacts. Some activity types are reserved for use by automated processes, others can be freely configured.','Integer',1,1,0,'name,label,description,icon'), + (3,'gender','Gender','CiviCRM is pre-configured with standard options for individual gender (Male, Female, Other). Modify these options as needed for your installation.','Integer',1,1,0,'name,label,description'), + (4,'instant_messenger_service','Instant Messenger (IM) screen-names','Commonly-used messaging apps are listed here. Administrators may define as many additional providers as needed.',NULL,1,1,0,'name,label,description'), + (5,'mobile_provider','Mobile Phone Providers','When recording mobile phone numbers for contacts, it may be useful to include the Mobile Phone Service Provider (e.g. Cingular, Sprint, etc.). CiviCRM is installed with the most commonly encountered service providers. Administrators may define as many additional providers as needed.',NULL,1,1,0,'name,label,description'), + (6,'individual_prefix','Individual contact prefixes','CiviCRM is pre-configured with standard options for individual contact prefixes (Ms., Mr., Dr. etc.). Customize these options and add new ones as needed for your installation.',NULL,1,1,0,'name,label,description'), + (7,'individual_suffix','Individual contact suffixes','CiviCRM is pre-configured with standard options for individual contact name suffixes (Jr., Sr., II etc.). Customize these options and add new ones as needed for your installation.',NULL,1,1,0,'name,label,description'), (8,'acl_role','ACL Role',NULL,NULL,1,1,0,'name,label,description'), - (9,'accept_creditcard','Accepted Credit Cards',NULL,NULL,1,1,0,'name,label,description'), - (10,'payment_instrument','Payment Methods',NULL,'Integer',1,1,0,'name,label,description'), + (9,'accept_creditcard','Accepted Credit Cards','The following credit card options will be offered to contributors using Online Contribution pages. You will need to verify which cards are accepted by your chosen Payment Processor and update these entries accordingly.IMPORTANT: These options do not control credit card/payment method choices for sites and/or contributors using the PayPal Express service (e.g. where billing information is collected on the Payment Processor\\\'s website).',NULL,1,1,0,'name,label,description'), + (10,'payment_instrument','Payment Methods','You may choose to record the payment method used for each contribution and fee. Reserved payment methods are required - you may modify their labels but they can not be deleted (e.g. Check, Credit Card, Debit Card). If your site requires additional payment methods, you can add them here. You can associate each payment method with a Financial Account which specifies where the payment is going (e.g. a bank account for checks and cash).','Integer',1,1,0,'name,label,description'), (11,'contribution_status','Contribution Status',NULL,NULL,1,1,1,'name,label,description'), (12,'pcp_status','PCP Status',NULL,NULL,1,1,1,'name,label,description'), (13,'pcp_owner_notify','PCP owner notifications',NULL,NULL,1,1,1,'name,label,description'), - (14,'participant_role','Participant Role',NULL,'Integer',1,1,0,'name,label,description'), - (15,'event_type','Event Type',NULL,'Integer',1,1,0,'name,label,description'), + (14,'participant_role','Participant Role','Define participant roles for events here (e.g. Attendee, Host, Speaker...). You can then assign roles and search for participants by role.','Integer',1,1,0,'name,label,description'), + (15,'event_type','Event Type','Use Event Types to categorize your events. Event feeds can be filtered by Event Type and participant searches can use Event Type as a criteria.','Integer',1,1,0,'name,label,description'), (16,'contact_view_options','Contact View Options',NULL,NULL,1,1,1,'name,label,description'), (17,'contact_smart_group_display','Contact Smart Group View Options',NULL,NULL,1,1,1,'name,label,description'), (18,'contact_edit_options','Contact Edit Options',NULL,NULL,1,1,1,'name,label,description'), @@ -5795,7 +5800,7 @@ INSERT INTO `civicrm_option_group` (`id`, `name`, `title`, `description`, `data_ (26,'case_status','Case Status',NULL,NULL,1,1,0,'name,label,description,color'), (27,'participant_listing','Participant Listing',NULL,NULL,1,1,0,'name,label,description'), (28,'safe_file_extension','Safe File Extension',NULL,NULL,1,1,0,'name,label,description'), - (29,'from_email_address','From Email Address',NULL,NULL,1,1,0,'name,label,description'), + (29,'from_email_address','From Email Address','By default, CiviCRM uses the primary email address of the logged in user as the FROM address when sending emails to contacts. However, you can use this page to define one or more general Email Addresses that can be selected as an alternative. EXAMPLE: \"Client Services\" <clientservices@example.org>.',NULL,1,1,0,'name,label,description'), (30,'mapping_type','Mapping Type',NULL,NULL,1,1,1,'name,label,description'), (31,'wysiwyg_editor','WYSIWYG Editor',NULL,NULL,1,1,0,'name,label,description'), (32,'recur_frequency_units','Recurring Frequency Units',NULL,NULL,1,1,0,'name,label,description'), @@ -6521,7 +6526,7 @@ INSERT INTO `civicrm_option_value` (`id`, `option_group_id`, `label`, `value`, ` (646,84,'Cornish','kw','kw_GB',NULL,0,0,33,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), (647,84,'Corsican','co','co_FR',NULL,0,0,34,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), (648,84,'Cree','cr','cr_CA',NULL,0,0,35,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (649,84,'Croatian','hr','hr_HR',NULL,0,0,36,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (649,84,'Croatian','hr','hr_HR',NULL,0,0,36,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), (650,84,'Czech','cs','cs_CZ',NULL,0,0,37,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), (651,84,'Danish','da','da_DK',NULL,0,0,38,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), (652,84,'Divehi; Dhivehi; Maldivian;','dv','dv_MV',NULL,0,0,39,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), @@ -6752,56 +6757,56 @@ UNLOCK TABLES; LOCK TABLES `civicrm_participant` WRITE; /*!40000 ALTER TABLE `civicrm_participant` DISABLE KEYS */; INSERT INTO `civicrm_participant` (`id`, `contact_id`, `event_id`, `status_id`, `role_id`, `register_date`, `source`, `fee_level`, `is_test`, `is_pay_later`, `fee_amount`, `registered_by_id`, `discount_id`, `fee_currency`, `campaign_id`, `discount_amount`, `cart_id`, `must_wait`, `transferred_to_contact_id`, `created_id`) VALUES - (1,49,1,1,'1','2009-01-21 00:00:00','Check','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), - (2,79,2,2,'2','2008-05-07 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), - (3,71,3,3,'3','2008-05-05 00:00:00','Credit Card','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), - (4,66,1,4,'4','2008-10-21 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), - (5,103,2,1,'1','2008-01-10 00:00:00','Check','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), - (6,13,3,2,'2','2008-03-05 00:00:00','Direct Transfer','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), - (7,31,1,3,'3','2009-07-21 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), - (8,160,2,4,'4','2009-03-07 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), - (9,180,3,1,'1','2008-02-05 00:00:00','Direct Transfer','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), - (10,72,1,2,'2','2008-02-01 00:00:00','Check','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), - (11,134,2,3,'3','2009-01-10 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), - (12,30,3,4,'4','2009-03-06 00:00:00','Credit Card','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), - (13,147,1,1,'2','2008-06-04 00:00:00','Credit Card','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), - (14,12,2,2,'3','2008-01-10 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), - (15,179,3,4,'1','2008-07-04 00:00:00','Check','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), - (16,197,1,4,'2','2009-01-21 00:00:00','Credit Card','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), - (17,44,2,2,'3','2008-01-10 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), - (18,115,3,3,'1','2009-03-05 00:00:00','Credit Card','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), - (19,109,1,2,'1','2008-10-21 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), - (20,102,2,4,'1','2009-01-10 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), - (21,198,3,1,'4','2008-03-25 00:00:00','Check','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), - (22,41,1,2,'3','2009-10-21 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), - (23,201,2,4,'1','2008-01-10 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), - (24,188,3,3,'1','2008-03-11 00:00:00','Credit Card','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), - (25,200,3,2,'2','2008-04-05 00:00:00','Direct Transfer','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), - (26,187,1,1,'1','2009-01-21 00:00:00','Check','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), - (27,3,2,2,'2','2008-05-07 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), - (28,148,3,3,'3','2009-12-12 00:00:00','Direct Transfer','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), - (29,171,1,4,'4','2009-12-13 00:00:00','Credit Card','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), - (30,195,2,1,'1','2009-12-14 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), - (31,143,3,2,'2','2009-12-15 00:00:00','Credit Card','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), - (32,157,1,3,'3','2009-07-21 00:00:00','Check','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), - (33,80,2,4,'4','2009-03-07 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), - (34,5,3,1,'1','2009-12-15 00:00:00','Credit Card','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), - (35,60,1,2,'2','2009-12-13 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), - (36,98,2,3,'3','2009-01-10 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), - (37,114,3,4,'4','2009-03-06 00:00:00','Check','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), - (38,56,1,1,'2','2009-12-13 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), - (39,111,2,2,'3','2008-01-10 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), - (40,145,3,4,'1','2009-12-14 00:00:00','Credit Card','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), - (41,139,1,4,'2','2009-01-21 00:00:00','Credit Card','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), - (42,25,2,2,'3','2009-12-15 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), - (43,34,3,3,'1','2009-03-05 00:00:00','Credit Card','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), - (44,21,1,2,'1','2009-12-13 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), - (45,190,2,4,'1','2009-01-10 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), - (46,101,3,1,'4','2009-12-13 00:00:00','Check','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), - (47,149,1,2,'3','2009-10-21 00:00:00','Credit Card','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), - (48,128,2,4,'1','2009-12-10 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), - (49,74,3,3,'1','2009-03-11 00:00:00','Credit Card','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), - (50,76,3,2,'2','2009-04-05 00:00:00','Check','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL); + (1,194,1,1,'1','2009-01-21 00:00:00','Check','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), + (2,113,2,2,'2','2008-05-07 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), + (3,13,3,3,'3','2008-05-05 00:00:00','Credit Card','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), + (4,27,1,4,'4','2008-10-21 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), + (5,111,2,1,'1','2008-01-10 00:00:00','Check','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), + (6,18,3,2,'2','2008-03-05 00:00:00','Direct Transfer','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), + (7,170,1,3,'3','2009-07-21 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), + (8,146,2,4,'4','2009-03-07 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), + (9,43,3,1,'1','2008-02-05 00:00:00','Direct Transfer','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), + (10,54,1,2,'2','2008-02-01 00:00:00','Check','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), + (11,80,2,3,'3','2009-01-10 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), + (12,96,3,4,'4','2009-03-06 00:00:00','Credit Card','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), + (13,180,1,1,'2','2008-06-04 00:00:00','Credit Card','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), + (14,48,2,2,'3','2008-01-10 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), + (15,159,3,4,'1','2008-07-04 00:00:00','Check','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), + (16,179,1,4,'2','2009-01-21 00:00:00','Credit Card','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), + (17,86,2,2,'3','2008-01-10 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), + (18,134,3,3,'1','2009-03-05 00:00:00','Credit Card','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), + (19,166,1,2,'1','2008-10-21 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), + (20,118,2,4,'1','2009-01-10 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), + (21,93,3,1,'4','2008-03-25 00:00:00','Check','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), + (22,88,1,2,'3','2009-10-21 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), + (23,65,2,4,'1','2008-01-10 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), + (24,157,3,3,'1','2008-03-11 00:00:00','Credit Card','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), + (25,97,3,2,'2','2008-04-05 00:00:00','Direct Transfer','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), + (26,19,1,1,'1','2009-01-21 00:00:00','Check','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), + (27,190,2,2,'2','2008-05-07 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), + (28,42,3,3,'3','2009-12-12 00:00:00','Direct Transfer','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), + (29,79,1,4,'4','2009-12-13 00:00:00','Credit Card','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), + (30,44,2,1,'1','2009-12-14 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), + (31,109,3,2,'2','2009-12-15 00:00:00','Credit Card','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), + (32,82,1,3,'3','2009-07-21 00:00:00','Check','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), + (33,127,2,4,'4','2009-03-07 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), + (34,100,3,1,'1','2009-12-15 00:00:00','Credit Card','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), + (35,21,1,2,'2','2009-12-13 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), + (36,64,2,3,'3','2009-01-10 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), + (37,183,3,4,'4','2009-03-06 00:00:00','Check','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), + (38,137,1,1,'2','2009-12-13 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), + (39,172,2,2,'3','2008-01-10 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), + (40,160,3,4,'1','2009-12-14 00:00:00','Credit Card','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), + (41,124,1,4,'2','2009-01-21 00:00:00','Credit Card','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), + (42,69,2,2,'3','2009-12-15 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), + (43,187,3,3,'1','2009-03-05 00:00:00','Credit Card','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), + (44,176,1,2,'1','2009-12-13 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), + (45,188,2,4,'1','2009-01-10 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), + (46,70,3,1,'4','2009-12-13 00:00:00','Check','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), + (47,191,1,2,'3','2009-10-21 00:00:00','Credit Card','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), + (48,123,2,4,'1','2009-12-10 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), + (49,83,3,3,'1','2009-03-11 00:00:00','Credit Card','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), + (50,99,3,2,'2','2009-04-05 00:00:00','Check','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL); /*!40000 ALTER TABLE `civicrm_participant` ENABLE KEYS */; UNLOCK TABLES; @@ -6812,56 +6817,56 @@ 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,27,63), - (2,34,64), - (3,14,65), - (4,6,66), - (5,44,67), - (6,42,68), - (7,12,69), - (8,7,70), - (9,43,71), - (10,22,72), - (11,17,73), - (12,1,74), - (13,38,75), - (14,35,76), - (15,4,77), - (16,3,78), - (17,10,79), - (18,49,80), - (19,50,81), - (20,2,82), - (21,33,83), - (22,36,84), - (23,46,85), - (24,20,86), - (25,5,87), - (26,19,88), - (27,39,89), - (28,37,90), - (29,18,91), - (30,48,92), - (31,11,93), - (32,41,94), - (33,31,95), - (34,40,96), - (35,13,97), - (36,28,98), - (37,47,99), - (38,32,100), - (39,8,101), - (40,29,102), - (41,15,103), - (42,9,104), - (43,26,105), - (44,24,106), + (1,1,63), + (2,2,64), + (3,3,65), + (4,4,66), + (5,5,67), + (6,6,68), + (7,7,69), + (8,8,70), + (9,9,71), + (10,10,72), + (11,11,73), + (12,12,74), + (13,13,75), + (14,14,76), + (15,15,77), + (16,16,78), + (17,17,79), + (18,18,80), + (19,19,81), + (20,20,82), + (21,21,83), + (22,22,84), + (23,23,85), + (24,24,86), + (25,25,87), + (26,26,88), + (27,27,89), + (28,28,90), + (29,29,91), + (30,30,92), + (31,31,93), + (32,32,94), + (33,33,95), + (34,34,96), + (35,35,97), + (36,36,98), + (37,37,99), + (38,38,100), + (39,39,101), + (40,40,102), + (41,41,103), + (42,42,104), + (43,43,105), + (44,44,106), (45,45,107), - (46,30,108), - (47,16,109), - (48,21,110), - (49,25,111), - (50,23,112); + (46,46,108), + (47,47,109), + (48,48,110), + (49,49,111), + (50,50,112); /*!40000 ALTER TABLE `civicrm_participant_payment` ENABLE KEYS */; UNLOCK TABLES; @@ -6934,7 +6939,7 @@ UNLOCK TABLES; LOCK TABLES `civicrm_pcp` WRITE; /*!40000 ALTER TABLE `civicrm_pcp` DISABLE KEYS */; INSERT INTO `civicrm_pcp` (`id`, `contact_id`, `status_id`, `title`, `intro_text`, `page_text`, `donate_link_text`, `page_id`, `page_type`, `pcp_block_id`, `is_thermometer`, `is_honor_roll`, `goal_amount`, `currency`, `is_active`, `is_notify`) VALUES - (1,95,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.','<p>Friends and family - please help build much needed infrastructure for the civic sector by supporting my personal campaign!</p>\r\n<p><a href=\"https://civicrm.org\">You can learn more about CiviCRM here</a>.</p>\r\n<p>Then click the <strong>Contribute Now</strong> button to go to our easy-to-use online contribution form.</p>','Contribute Now',1,'contribute',1,1,1,5000.00,'USD',1,1); + (1,47,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.','<p>Friends and family - please help build much needed infrastructure for the civic sector by supporting my personal campaign!</p>\r\n<p><a href=\"https://civicrm.org\">You can learn more about CiviCRM here</a>.</p>\r\n<p>Then click the <strong>Contribute Now</strong> button to go to our easy-to-use online contribution form.</p>','Contribute Now',1,'contribute',1,1,1,5000.00,'USD',1,1); /*!40000 ALTER TABLE `civicrm_pcp` ENABLE KEYS */; UNLOCK TABLES; @@ -6956,183 +6961,164 @@ 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,187,1,1,0,NULL,'413-6495',NULL,'4136495',2), - (2,188,1,1,0,NULL,'(788) 529-1522',NULL,'7885291522',2), - (3,188,1,0,0,NULL,'571-7734',NULL,'5717734',2), - (4,95,1,1,0,NULL,'(757) 229-2253',NULL,'7572292253',1), - (5,6,1,1,0,NULL,'(622) 364-9575',NULL,'6223649575',1), - (6,6,1,0,0,NULL,'375-6981',NULL,'3756981',2), - (7,185,1,1,0,NULL,'463-7348',NULL,'4637348',2), - (8,185,1,0,0,NULL,'432-3567',NULL,'4323567',2), - (9,150,1,1,0,NULL,'(616) 864-1257',NULL,'6168641257',1), - (10,106,1,1,0,NULL,'(878) 777-4796',NULL,'8787774796',1), - (11,197,1,1,0,NULL,'(588) 763-1987',NULL,'5887631987',2), - (12,197,1,0,0,NULL,'(821) 314-6464',NULL,'8213146464',2), - (13,190,1,1,0,NULL,'722-4191',NULL,'7224191',2), - (14,190,1,0,0,NULL,'(673) 757-2371',NULL,'6737572371',2), - (15,7,1,1,0,NULL,'820-3657',NULL,'8203657',1), - (16,7,1,0,0,NULL,'831-5768',NULL,'8315768',1), - (17,111,1,1,0,NULL,'367-6067',NULL,'3676067',1), - (18,131,1,1,0,NULL,'257-4787',NULL,'2574787',1), - (19,131,1,0,0,NULL,'(654) 291-7832',NULL,'6542917832',1), - (20,172,1,1,0,NULL,'(845) 549-6467',NULL,'8455496467',1), - (21,84,1,1,0,NULL,'(593) 569-5781',NULL,'5935695781',1), - (22,84,1,0,0,NULL,'(602) 471-8412',NULL,'6024718412',1), - (23,184,1,1,0,NULL,'850-3844',NULL,'8503844',2), - (24,166,1,1,0,NULL,'(748) 315-5346',NULL,'7483155346',1), - (25,48,1,1,0,NULL,'(608) 328-3022',NULL,'6083283022',1), - (26,62,1,1,0,NULL,'829-8522',NULL,'8298522',2), - (27,30,1,1,0,NULL,'(292) 334-1777',NULL,'2923341777',1), - (28,30,1,0,0,NULL,'(650) 343-1606',NULL,'6503431606',2), - (29,9,1,1,0,NULL,'419-1006',NULL,'4191006',2), - (30,9,1,0,0,NULL,'(629) 383-7290',NULL,'6293837290',1), - (31,23,1,1,0,NULL,'538-3819',NULL,'5383819',1), - (32,58,1,1,0,NULL,'(363) 238-1580',NULL,'3632381580',1), - (33,82,1,1,0,NULL,'438-6038',NULL,'4386038',2), - (34,82,1,0,0,NULL,'444-2308',NULL,'4442308',1), - (35,93,1,1,0,NULL,'(740) 659-6037',NULL,'7406596037',2), - (36,117,1,1,0,NULL,'759-2300',NULL,'7592300',2), - (37,117,1,0,0,NULL,'(611) 690-3034',NULL,'6116903034',2), - (38,18,1,1,0,NULL,'(700) 642-3519',NULL,'7006423519',1), - (39,18,1,0,0,NULL,'(638) 466-8542',NULL,'6384668542',1), - (40,17,1,1,0,NULL,'(573) 236-5240',NULL,'5732365240',2), - (41,61,1,1,0,NULL,'555-5056',NULL,'5555056',2), - (42,41,1,1,0,NULL,'(323) 846-9543',NULL,'3238469543',2), - (43,41,1,0,0,NULL,'382-3202',NULL,'3823202',2), - (44,195,1,1,0,NULL,'(811) 400-9331',NULL,'8114009331',1), - (45,195,1,0,0,NULL,'578-1539',NULL,'5781539',1), - (46,92,1,1,0,NULL,'(474) 791-2610',NULL,'4747912610',2), - (47,101,1,1,0,NULL,'706-2712',NULL,'7062712',1), - (48,136,1,1,0,NULL,'(286) 761-8285',NULL,'2867618285',1), - (49,136,1,0,0,NULL,'(282) 854-6803',NULL,'2828546803',1), - (50,128,1,1,0,NULL,'(349) 880-7465',NULL,'3498807465',1), - (51,66,1,1,0,NULL,'(478) 788-6799',NULL,'4787886799',2), - (52,66,1,0,0,NULL,'(898) 552-8988',NULL,'8985528988',1), - (53,65,1,1,0,NULL,'207-2895',NULL,'2072895',1), - (54,170,1,1,0,NULL,'498-8941',NULL,'4988941',1), - (55,170,1,0,0,NULL,'738-9592',NULL,'7389592',1), - (56,183,1,1,0,NULL,'(588) 659-4103',NULL,'5886594103',1), - (57,183,1,0,0,NULL,'(844) 547-6929',NULL,'8445476929',1), - (58,201,1,1,0,NULL,'454-3443',NULL,'4543443',1), - (59,201,1,0,0,NULL,'277-2685',NULL,'2772685',1), - (60,75,1,1,0,NULL,'612-3123',NULL,'6123123',1), - (61,47,1,1,0,NULL,'351-1310',NULL,'3511310',1), - (62,47,1,0,0,NULL,'(415) 510-5502',NULL,'4155105502',1), - (63,115,1,1,0,NULL,'705-8369',NULL,'7058369',2), - (64,130,1,1,0,NULL,'(313) 261-3351',NULL,'3132613351',2), - (65,130,1,0,0,NULL,'(645) 724-7344',NULL,'6457247344',2), - (66,100,1,1,0,NULL,'234-1065',NULL,'2341065',2), - (67,100,1,0,0,NULL,'310-4388',NULL,'3104388',1), - (68,87,1,1,0,NULL,'(426) 722-8888',NULL,'4267228888',2), - (69,35,1,1,0,NULL,'(293) 772-9375',NULL,'2937729375',1), - (70,123,1,1,0,NULL,'722-4509',NULL,'7224509',1), - (71,123,1,0,0,NULL,'(532) 676-9918',NULL,'5326769918',2), - (72,146,1,1,0,NULL,'(280) 427-1389',NULL,'2804271389',2), - (73,146,1,0,0,NULL,'806-2458',NULL,'8062458',2), - (74,50,1,1,0,NULL,'(442) 856-5026',NULL,'4428565026',2), - (75,162,1,1,0,NULL,'740-8341',NULL,'7408341',1), - (76,140,1,1,0,NULL,'361-5772',NULL,'3615772',2), - (77,140,1,0,0,NULL,'411-2719',NULL,'4112719',1), - (78,152,1,1,0,NULL,'(509) 629-9504',NULL,'5096299504',2), - (79,181,1,1,0,NULL,'(575) 361-9555',NULL,'5753619555',2), - (80,179,1,1,0,NULL,'(814) 414-7375',NULL,'8144147375',1), - (81,179,1,0,0,NULL,'310-3747',NULL,'3103747',2), - (82,59,1,1,0,NULL,'(642) 688-1563',NULL,'6426881563',1), - (83,59,1,0,0,NULL,'659-3523',NULL,'6593523',1), - (84,196,1,1,0,NULL,'314-3239',NULL,'3143239',2), - (85,196,1,0,0,NULL,'405-2916',NULL,'4052916',1), - (86,34,1,1,0,NULL,'604-5209',NULL,'6045209',1), - (87,34,1,0,0,NULL,'(425) 489-3785',NULL,'4254893785',1), - (88,74,1,1,0,NULL,'(585) 415-6879',NULL,'5854156879',2), - (89,74,1,0,0,NULL,'(431) 543-2427',NULL,'4315432427',2), - (90,148,1,1,0,NULL,'(688) 333-1347',NULL,'6883331347',1), - (91,164,1,1,0,NULL,'(398) 419-1232',NULL,'3984191232',1), - (92,132,1,1,0,NULL,'259-1903',NULL,'2591903',1), - (93,198,1,1,0,NULL,'361-8245',NULL,'3618245',2), - (94,53,1,1,0,NULL,'405-1355',NULL,'4051355',1), - (95,158,1,1,0,NULL,'(555) 855-5442',NULL,'5558555442',2), - (96,121,1,1,0,NULL,'(458) 326-2801',NULL,'4583262801',1), - (97,154,1,1,0,NULL,'(592) 478-9540',NULL,'5924789540',1), - (98,149,1,1,0,NULL,'(661) 830-1129',NULL,'6618301129',1), - (99,149,1,0,0,NULL,'625-8665',NULL,'6258665',1), - (100,157,1,1,0,NULL,'(726) 206-8465',NULL,'7262068465',2), - (101,157,1,0,0,NULL,'(332) 527-9535',NULL,'3325279535',1), - (102,127,1,1,0,NULL,'582-4385',NULL,'5824385',2), - (103,127,1,0,0,NULL,'360-4735',NULL,'3604735',1), - (104,3,1,1,0,NULL,'818-8870',NULL,'8188870',2), - (105,51,1,1,0,NULL,'239-7718',NULL,'2397718',1), - (106,51,1,0,0,NULL,'774-1580',NULL,'7741580',1), - (107,119,1,1,0,NULL,'(421) 218-3492',NULL,'4212183492',2), - (108,156,1,1,0,NULL,'697-3213',NULL,'6973213',2), - (109,122,1,1,0,NULL,'338-6506',NULL,'3386506',1), - (110,22,1,1,0,NULL,'470-7326',NULL,'4707326',1), - (111,125,1,1,0,NULL,'309-5930',NULL,'3095930',2), - (112,125,1,0,0,NULL,'(686) 630-8386',NULL,'6866308386',2), - (113,194,1,1,0,NULL,'773-2017',NULL,'7732017',2), - (114,194,1,0,0,NULL,'374-2926',NULL,'3742926',1), - (115,89,1,1,0,NULL,'241-9245',NULL,'2419245',1), - (116,89,1,0,0,NULL,'(273) 387-8353',NULL,'2733878353',1), - (117,81,1,1,0,NULL,'(745) 771-9604',NULL,'7457719604',2), - (118,81,1,0,0,NULL,'715-8185',NULL,'7158185',2), - (119,102,1,1,0,NULL,'562-6812',NULL,'5626812',1), - (120,102,1,0,0,NULL,'210-8081',NULL,'2108081',1), - (121,4,1,1,0,NULL,'777-2556',NULL,'7772556',1), - (122,107,1,1,0,NULL,'(713) 404-9669',NULL,'7134049669',2), - (123,138,1,1,0,NULL,'(684) 543-8598',NULL,'6845438598',1), - (124,138,1,0,0,NULL,'423-2692',NULL,'4232692',2), - (125,180,1,1,0,NULL,'530-2180',NULL,'5302180',1), - (126,180,1,0,0,NULL,'(721) 623-9280',NULL,'7216239280',1), - (127,39,1,1,0,NULL,'(329) 651-4790',NULL,'3296514790',1), - (128,39,1,0,0,NULL,'(303) 536-8016',NULL,'3035368016',1), - (129,139,1,1,0,NULL,'259-8921',NULL,'2598921',1), - (130,139,1,0,0,NULL,'(340) 324-5805',NULL,'3403245805',1), - (131,114,1,1,0,NULL,'361-9402',NULL,'3619402',1), - (132,114,1,0,0,NULL,'761-6522',NULL,'7616522',2), - (133,56,1,1,0,NULL,'(306) 430-5617',NULL,'3064305617',1), - (134,103,1,1,0,NULL,'622-8358',NULL,'6228358',2), - (135,103,1,0,0,NULL,'211-1823',NULL,'2111823',1), - (136,116,1,1,0,NULL,'539-4245',NULL,'5394245',2), - (137,116,1,0,0,NULL,'560-6811',NULL,'5606811',2), - (138,178,1,1,0,NULL,'(374) 572-5548',NULL,'3745725548',2), - (139,44,1,1,0,NULL,'(560) 464-9739',NULL,'5604649739',2), - (140,193,1,1,0,NULL,'253-3711',NULL,'2533711',1), - (141,193,1,0,0,NULL,'(632) 782-2077',NULL,'6327822077',1), - (142,145,1,1,0,NULL,'(468) 364-1125',NULL,'4683641125',2), - (143,112,1,1,0,NULL,'(305) 550-6225',NULL,'3055506225',1), - (144,112,1,0,0,NULL,'898-7008',NULL,'8987008',1), - (145,142,1,1,0,NULL,'(447) 329-6197',NULL,'4473296197',2), - (146,142,1,0,0,NULL,'597-3331',NULL,'5973331',2), - (147,96,1,1,0,NULL,'(609) 707-2017',NULL,'6097072017',1), - (148,96,1,0,0,NULL,'664-3935',NULL,'6643935',1), - (149,171,1,1,0,NULL,'(688) 794-5568',NULL,'6887945568',2), - (150,171,1,0,0,NULL,'(882) 541-1686',NULL,'8825411686',2), - (151,83,1,1,0,NULL,'(231) 369-2633',NULL,'2313692633',2), - (152,83,1,0,0,NULL,'330-4435',NULL,'3304435',2), - (153,104,1,1,0,NULL,'285-2313',NULL,'2852313',2), - (154,104,1,0,0,NULL,'633-3143',NULL,'6333143',2), - (155,70,1,1,0,NULL,'612-6783',NULL,'6126783',2), - (156,40,1,1,0,NULL,'429-1122',NULL,'4291122',2), - (157,40,1,0,0,NULL,'830-2346',NULL,'8302346',2), - (158,32,1,1,0,NULL,'742-5027',NULL,'7425027',2), - (159,32,1,0,0,NULL,'449-8145',NULL,'4498145',1), - (160,25,1,1,0,NULL,'740-2108',NULL,'7402108',1), - (161,14,1,1,0,NULL,'701-3734',NULL,'7013734',1), - (162,14,1,0,0,NULL,'428-2472',NULL,'4282472',1), - (163,8,1,1,0,NULL,'282-3453',NULL,'2823453',1), - (164,21,1,1,0,NULL,'459-9866',NULL,'4599866',1), - (165,163,1,1,0,NULL,'(393) 255-8522',NULL,'3932558522',1), - (166,163,1,0,0,NULL,'(615) 214-2275',NULL,'6152142275',1), - (167,5,1,1,0,NULL,'564-3130',NULL,'5643130',2), - (168,5,1,0,0,NULL,'(517) 448-3349',NULL,'5174483349',1), - (169,69,1,1,0,NULL,'(272) 693-8146',NULL,'2726938146',1), - (170,69,1,0,0,NULL,'(856) 529-5581',NULL,'8565295581',1), - (171,45,1,1,0,NULL,'(511) 496-1990',NULL,'5114961990',1), - (172,45,1,0,0,NULL,'888-9275',NULL,'8889275',2), - (173,12,1,1,0,NULL,'(658) 400-8064',NULL,'6584008064',2), - (174,78,1,1,0,NULL,'(755) 643-4601',NULL,'7556434601',1), - (175,NULL,1,0,0,NULL,'204 222-1000',NULL,'2042221000',1), - (176,NULL,1,0,0,NULL,'204 223-1000',NULL,'2042231000',1), - (177,NULL,1,0,0,NULL,'303 323-1000',NULL,'3033231000',1); + (1,85,1,1,0,NULL,'(279) 303-3787',NULL,'2793033787',2), + (2,85,1,0,0,NULL,'(719) 642-1488',NULL,'7196421488',1), + (3,186,1,1,0,NULL,'448-2266',NULL,'4482266',2), + (4,186,1,0,0,NULL,'287-4340',NULL,'2874340',1), + (5,47,1,1,0,NULL,'(303) 560-2162',NULL,'3035602162',2), + (6,47,1,0,0,NULL,'(502) 694-5820',NULL,'5026945820',1), + (7,154,1,1,0,NULL,'(833) 562-8351',NULL,'8335628351',1), + (8,154,1,0,0,NULL,'(436) 767-5465',NULL,'4367675465',1), + (9,145,1,1,0,NULL,'(566) 795-3768',NULL,'5667953768',1), + (10,50,1,1,0,NULL,'(459) 217-7905',NULL,'4592177905',2), + (11,75,1,1,0,NULL,'(309) 333-5248',NULL,'3093335248',2), + (12,4,1,1,0,NULL,'(433) 539-4752',NULL,'4335394752',2), + (13,192,1,1,0,NULL,'896-7251',NULL,'8967251',2), + (14,92,1,1,0,NULL,'610-4923',NULL,'6104923',1), + (15,89,1,1,0,NULL,'669-8579',NULL,'6698579',2), + (16,31,1,1,0,NULL,'884-3837',NULL,'8843837',1), + (17,125,1,1,0,NULL,'(789) 407-7424',NULL,'7894077424',1), + (18,125,1,0,0,NULL,'(527) 517-1969',NULL,'5275171969',2), + (19,137,1,1,0,NULL,'(259) 739-4457',NULL,'2597394457',1), + (20,46,1,1,0,NULL,'(801) 730-1414',NULL,'8017301414',1), + (21,13,1,1,0,NULL,'(303) 482-8575',NULL,'3034828575',2), + (22,13,1,0,0,NULL,'457-2350',NULL,'4572350',2), + (23,113,1,1,0,NULL,'(500) 296-2713',NULL,'5002962713',1), + (24,113,1,0,0,NULL,'242-8962',NULL,'2428962',2), + (25,130,1,1,0,NULL,'855-5973',NULL,'8555973',2), + (26,14,1,1,0,NULL,'(674) 534-2119',NULL,'6745342119',2), + (27,14,1,0,0,NULL,'(327) 337-7430',NULL,'3273377430',2), + (28,198,1,1,0,NULL,'695-1864',NULL,'6951864',2), + (29,107,1,1,0,NULL,'388-2779',NULL,'3882779',2), + (30,54,1,1,0,NULL,'290-1848',NULL,'2901848',2), + (31,54,1,0,0,NULL,'809-4429',NULL,'8094429',1), + (32,165,1,1,0,NULL,'(719) 359-6741',NULL,'7193596741',2), + (33,37,1,1,0,NULL,'(393) 814-2612',NULL,'3938142612',2), + (34,41,1,1,0,NULL,'(268) 597-1785',NULL,'2685971785',2), + (35,41,1,0,0,NULL,'(847) 250-2679',NULL,'8472502679',1), + (36,21,1,1,0,NULL,'791-7605',NULL,'7917605',1), + (37,83,1,1,0,NULL,'623-5315',NULL,'6235315',2), + (38,73,1,1,0,NULL,'(458) 565-6884',NULL,'4585656884',2), + (39,73,1,0,0,NULL,'(223) 844-3637',NULL,'2238443637',2), + (40,53,1,1,0,NULL,'(645) 506-9178',NULL,'6455069178',2), + (41,53,1,0,0,NULL,'797-1516',NULL,'7971516',1), + (42,178,1,1,0,NULL,'564-9745',NULL,'5649745',1), + (43,133,1,1,0,NULL,'(599) 638-4025',NULL,'5996384025',2), + (44,133,1,0,0,NULL,'620-3167',NULL,'6203167',2), + (45,81,1,1,0,NULL,'668-2516',NULL,'6682516',1), + (46,81,1,0,0,NULL,'(376) 671-9914',NULL,'3766719914',2), + (47,6,1,1,0,NULL,'(534) 754-9451',NULL,'5347549451',1), + (48,6,1,0,0,NULL,'206-4803',NULL,'2064803',2), + (49,95,1,1,0,NULL,'(268) 418-1822',NULL,'2684181822',2), + (50,95,1,0,0,NULL,'278-8674',NULL,'2788674',1), + (51,171,1,1,0,NULL,'(752) 261-9115',NULL,'7522619115',1), + (52,171,1,0,0,NULL,'451-1837',NULL,'4511837',1), + (53,129,1,1,0,NULL,'878-7355',NULL,'8787355',1), + (54,134,1,1,0,NULL,'785-4496',NULL,'7854496',2), + (55,79,1,1,0,NULL,'(518) 279-2840',NULL,'5182792840',2), + (56,72,1,1,0,NULL,'894-3259',NULL,'8943259',2), + (57,72,1,0,0,NULL,'705-7519',NULL,'7057519',1), + (58,185,1,1,0,NULL,'(673) 499-9415',NULL,'6734999415',1), + (59,185,1,0,0,NULL,'(722) 679-5938',NULL,'7226795938',1), + (60,115,1,1,0,NULL,'(721) 501-5221',NULL,'7215015221',2), + (61,115,1,0,0,NULL,'(465) 827-6395',NULL,'4658276395',1), + (62,43,1,1,0,NULL,'704-4891',NULL,'7044891',1), + (63,182,1,1,0,NULL,'(518) 618-3350',NULL,'5186183350',2), + (64,182,1,0,0,NULL,'794-2005',NULL,'7942005',1), + (65,8,1,1,0,NULL,'(303) 510-9738',NULL,'3035109738',1), + (66,144,1,1,0,NULL,'370-8476',NULL,'3708476',2), + (67,144,1,0,0,NULL,'(321) 291-3981',NULL,'3212913981',1), + (68,39,1,1,0,NULL,'877-2341',NULL,'8772341',1), + (69,39,1,0,0,NULL,'(780) 779-2979',NULL,'7807792979',1), + (70,168,1,1,0,NULL,'868-5577',NULL,'8685577',1), + (71,94,1,1,0,NULL,'(896) 288-1535',NULL,'8962881535',2), + (72,94,1,0,0,NULL,'845-1956',NULL,'8451956',2), + (73,45,1,1,0,NULL,'364-4299',NULL,'3644299',2), + (74,101,1,1,0,NULL,'(782) 317-7851',NULL,'7823177851',2), + (75,101,1,0,0,NULL,'(703) 557-6101',NULL,'7035576101',1), + (76,69,1,1,0,NULL,'(733) 441-2267',NULL,'7334412267',1), + (77,12,1,1,0,NULL,'(643) 481-7384',NULL,'6434817384',2), + (78,12,1,0,0,NULL,'(468) 275-7478',NULL,'4682757478',2), + (79,193,1,1,0,NULL,'(566) 757-4790',NULL,'5667574790',1), + (80,193,1,0,0,NULL,'869-2722',NULL,'8692722',1), + (81,105,1,1,0,NULL,'(326) 818-7938',NULL,'3268187938',2), + (82,143,1,1,0,NULL,'(660) 678-6460',NULL,'6606786460',1), + (83,27,1,1,0,NULL,'(449) 548-6502',NULL,'4495486502',2), + (84,27,1,0,0,NULL,'(663) 244-6322',NULL,'6632446322',2), + (85,120,1,1,0,NULL,'(339) 870-1428',NULL,'3398701428',1), + (86,122,1,1,0,NULL,'622-7649',NULL,'6227649',2), + (87,35,1,1,0,NULL,'566-4929',NULL,'5664929',1), + (88,150,1,1,0,NULL,'511-4999',NULL,'5114999',2), + (89,150,1,0,0,NULL,'(522) 560-8392',NULL,'5225608392',2), + (90,62,1,1,0,NULL,'(381) 283-7030',NULL,'3812837030',2), + (91,62,1,0,0,NULL,'839-4313',NULL,'8394313',2), + (92,172,1,1,0,NULL,'(372) 541-6015',NULL,'3725416015',1), + (93,11,1,1,0,NULL,'(732) 306-1806',NULL,'7323061806',1), + (94,11,1,0,0,NULL,'(819) 300-4836',NULL,'8193004836',2), + (95,3,1,1,0,NULL,'(848) 678-6525',NULL,'8486786525',1), + (96,22,1,1,0,NULL,'(833) 473-7882',NULL,'8334737882',1), + (97,124,1,1,0,NULL,'(246) 707-9282',NULL,'2467079282',1), + (98,9,1,1,0,NULL,'(656) 721-1695',NULL,'6567211695',2), + (99,100,1,1,0,NULL,'576-1534',NULL,'5761534',1), + (100,100,1,0,0,NULL,'464-6287',NULL,'4646287',2), + (101,187,1,1,0,NULL,'877-3713',NULL,'8773713',1), + (102,187,1,0,0,NULL,'(369) 578-3257',NULL,'3695783257',2), + (103,127,1,1,0,NULL,'772-9433',NULL,'7729433',1), + (104,7,1,1,0,NULL,'(693) 507-2755',NULL,'6935072755',1), + (105,7,1,0,0,NULL,'(616) 555-5022',NULL,'6165555022',2), + (106,26,1,1,0,NULL,'(295) 228-5081',NULL,'2952285081',2), + (107,91,1,1,0,NULL,'737-5353',NULL,'7375353',1), + (108,15,1,1,0,NULL,'421-8961',NULL,'4218961',2), + (109,19,1,1,0,NULL,'(599) 642-3289',NULL,'5996423289',2), + (110,76,1,1,0,NULL,'255-1610',NULL,'2551610',2), + (111,76,1,0,0,NULL,'(654) 357-4106',NULL,'6543574106',1), + (112,109,1,1,0,NULL,'(304) 310-5394',NULL,'3043105394',2), + (113,109,1,0,0,NULL,'(422) 435-4558',NULL,'4224354558',1), + (114,20,1,1,0,NULL,'417-1474',NULL,'4171474',2), + (115,191,1,1,0,NULL,'(871) 741-9885',NULL,'8717419885',1), + (116,191,1,0,0,NULL,'452-2882',NULL,'4522882',2), + (117,148,1,1,0,NULL,'(267) 572-7648',NULL,'2675727648',1), + (118,29,1,1,0,NULL,'534-1290',NULL,'5341290',1), + (119,29,1,0,0,NULL,'(204) 842-9756',NULL,'2048429756',2), + (120,142,1,1,0,NULL,'(489) 880-6175',NULL,'4898806175',2), + (121,142,1,0,0,NULL,'(460) 505-9303',NULL,'4605059303',1), + (122,114,1,1,0,NULL,'277-2713',NULL,'2772713',2), + (123,70,1,1,0,NULL,'(324) 340-8838',NULL,'3243408838',2), + (124,67,1,1,0,NULL,'(558) 637-2586',NULL,'5586372586',1), + (125,33,1,1,0,NULL,'(463) 431-8882',NULL,'4634318882',2), + (126,33,1,0,0,NULL,'(288) 745-9645',NULL,'2887459645',1), + (127,135,1,1,0,NULL,'(615) 422-3764',NULL,'6154223764',2), + (128,104,1,1,0,NULL,'324-5988',NULL,'3245988',1), + (129,98,1,1,0,NULL,'(520) 740-4999',NULL,'5207404999',1), + (130,102,1,1,0,NULL,'(484) 738-7467',NULL,'4847387467',1), + (131,32,1,1,0,NULL,'392-7829',NULL,'3927829',2), + (132,61,1,1,0,NULL,'(725) 382-1235',NULL,'7253821235',2), + (133,180,1,1,0,NULL,'(740) 821-4963',NULL,'7408214963',1), + (134,153,1,1,0,NULL,'890-4569',NULL,'8904569',1), + (135,153,1,0,0,NULL,'554-5177',NULL,'5545177',2), + (136,147,1,1,0,NULL,'(739) 823-8825',NULL,'7398238825',2), + (137,28,1,1,0,NULL,'(418) 379-5462',NULL,'4183795462',2), + (138,121,1,1,0,NULL,'(703) 290-3068',NULL,'7032903068',1), + (139,121,1,0,0,NULL,'(773) 426-5438',NULL,'7734265438',2), + (140,18,1,1,0,NULL,'858-1522',NULL,'8581522',1), + (141,16,1,1,0,NULL,'504-5988',NULL,'5045988',1), + (142,183,1,1,0,NULL,'(775) 353-2230',NULL,'7753532230',1), + (143,110,1,1,0,NULL,'474-2450',NULL,'4742450',1), + (144,149,1,1,0,NULL,'747-7506',NULL,'7477506',2), + (145,68,1,1,0,NULL,'(405) 381-7245',NULL,'4053817245',2), + (146,42,1,1,0,NULL,'(859) 510-3060',NULL,'8595103060',2), + (147,42,1,0,0,NULL,'606-6996',NULL,'6066996',2), + (148,169,1,1,0,NULL,'503-1128',NULL,'5031128',1), + (149,169,1,0,0,NULL,'(882) 721-1401',NULL,'8827211401',2), + (150,88,1,1,0,NULL,'(713) 882-8098',NULL,'7138828098',2), + (151,88,1,0,0,NULL,'(220) 649-9959',NULL,'2206499959',1), + (152,57,1,1,0,NULL,'495-6865',NULL,'4956865',1), + (153,151,1,1,0,NULL,'(410) 828-3499',NULL,'4108283499',2), + (154,151,1,0,0,NULL,'(339) 756-8492',NULL,'3397568492',2), + (155,194,1,1,0,NULL,'437-1211',NULL,'4371211',2), + (156,NULL,1,0,0,NULL,'204 222-1000',NULL,'2042221000',1), + (157,NULL,1,0,0,NULL,'204 223-1000',NULL,'2042231000',1), + (158,NULL,1,0,0,NULL,'303 323-1000',NULL,'3033231000',1); /*!40000 ALTER TABLE `civicrm_phone` ENABLE KEYS */; UNLOCK TABLES; @@ -7367,221 +7353,221 @@ 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`, `created_date`, `modified_date`) VALUES - (1,74,34,1,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (2,60,34,1,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (3,74,109,1,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (4,60,109,1,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (5,60,74,4,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (6,109,94,8,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (7,74,94,8,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (8,60,94,8,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (9,34,94,7,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (10,109,34,2,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (11,118,148,1,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (12,132,148,1,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (13,118,164,1,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (14,132,164,1,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (15,132,118,4,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (16,164,76,8,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (17,118,76,8,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (18,132,76,8,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (19,148,76,7,NULL,NULL,0,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (20,164,148,2,NULL,NULL,0,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (21,53,186,1,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (22,158,186,1,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (23,53,198,1,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (24,158,198,1,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (25,158,53,4,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (26,198,79,8,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (27,53,79,8,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (28,158,79,8,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (29,186,79,7,NULL,NULL,0,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (30,198,186,2,NULL,NULL,0,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (31,165,121,1,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (32,149,121,1,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (33,165,154,1,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (34,149,154,1,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (35,149,165,4,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (36,154,27,8,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (37,165,27,8,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (38,149,27,8,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (39,121,27,7,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (40,154,121,2,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (41,3,157,1,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (42,51,157,1,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (43,3,127,1,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (44,51,127,1,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (45,51,3,4,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (46,127,77,8,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (47,3,77,8,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (48,51,77,8,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (49,157,77,7,NULL,NULL,0,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (50,127,157,2,NULL,NULL,0,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (51,156,137,1,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (52,122,137,1,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (53,156,119,1,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (54,122,119,1,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (55,122,156,4,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (56,119,133,8,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (57,156,133,8,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (58,122,133,8,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (59,137,133,7,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (60,119,137,2,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (61,125,22,1,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (62,194,22,1,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (63,125,126,1,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (64,194,126,1,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (65,194,125,4,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (66,126,135,8,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (67,125,135,8,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (68,194,135,8,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (69,22,135,7,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (70,126,22,2,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (71,54,89,1,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (72,102,89,1,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (73,54,81,1,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (74,102,81,1,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (75,102,54,4,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (76,81,20,8,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (77,54,20,8,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (78,102,20,8,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (79,89,20,7,NULL,NULL,0,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (80,81,89,2,NULL,NULL,0,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (81,138,4,1,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (82,129,4,1,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (83,138,107,1,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (84,129,107,1,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (85,129,138,4,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (86,107,85,8,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (87,138,85,8,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (88,129,85,8,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (89,4,85,7,NULL,NULL,0,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (90,107,4,2,NULL,NULL,0,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (91,139,180,1,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (92,114,180,1,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (93,139,39,1,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (94,114,39,1,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (95,114,139,4,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (96,39,26,8,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (97,139,26,8,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (98,114,26,8,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (99,180,26,7,NULL,NULL,0,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (100,39,180,2,NULL,NULL,0,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (101,103,56,1,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (102,86,56,1,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (103,103,97,1,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (104,86,97,1,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (105,86,103,4,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (106,97,189,8,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (107,103,189,8,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (108,86,189,8,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (109,56,189,7,NULL,NULL,0,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (110,97,56,2,NULL,NULL,0,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (111,44,116,1,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (112,105,116,1,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (113,44,178,1,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (114,105,178,1,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (115,105,44,4,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (116,178,153,8,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (117,44,153,8,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (118,105,153,8,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (119,116,153,7,NULL,NULL,0,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (120,178,116,2,NULL,NULL,0,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (121,145,151,1,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (122,112,151,1,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (123,145,193,1,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (124,112,193,1,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (125,112,145,4,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (126,193,46,8,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (127,145,46,8,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (128,112,46,8,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (129,151,46,7,NULL,NULL,0,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (130,193,151,2,NULL,NULL,0,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (131,171,142,1,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (132,83,142,1,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (133,171,96,1,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (134,83,96,1,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (135,83,171,4,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (136,96,143,8,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (137,171,143,8,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (138,83,143,8,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (139,142,143,7,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (140,96,142,2,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (141,161,67,1,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (142,134,67,1,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (143,161,104,1,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (144,134,104,1,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (145,134,161,4,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (146,104,73,8,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (147,161,73,8,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (148,134,73,8,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (149,67,73,7,NULL,NULL,0,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (150,104,67,2,NULL,NULL,0,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (151,176,70,1,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (152,32,70,1,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (153,176,40,1,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (154,32,40,1,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (155,32,176,4,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (156,40,173,8,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (157,176,173,8,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (158,32,173,8,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (159,70,173,7,NULL,NULL,0,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (160,40,70,2,NULL,NULL,0,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (161,8,25,1,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (162,21,25,1,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (163,8,14,1,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (164,21,14,1,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (165,21,8,4,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (166,14,19,8,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (167,8,19,8,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (168,21,19,8,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (169,25,19,7,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (170,14,25,2,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (171,5,68,1,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (172,174,68,1,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (173,5,163,1,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (174,174,163,1,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (175,174,5,4,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (176,163,63,8,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (177,5,63,8,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (178,174,63,8,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (179,68,63,7,NULL,NULL,0,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (180,163,68,2,NULL,NULL,0,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (181,69,16,1,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (182,10,16,1,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (183,69,182,1,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (184,10,182,1,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (185,10,69,4,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (186,182,200,8,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (187,69,200,8,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (188,10,200,8,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (189,16,200,7,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (190,182,16,2,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (191,12,159,1,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (192,78,159,1,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (193,12,45,1,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (194,78,45,1,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (195,78,12,4,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (196,45,177,8,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (197,12,177,8,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (198,78,177,8,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (199,159,177,7,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (200,45,159,2,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (201,180,2,5,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (202,198,15,5,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (203,70,24,5,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (204,171,36,5,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (205,32,38,5,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (206,103,42,5,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (207,179,43,5,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (208,195,49,5,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (209,194,64,5,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (210,137,113,5,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (211,16,124,5,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (212,89,167,5,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (213,58,168,5,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (214,99,192,5,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'), - (215,139,199,5,NULL,NULL,1,NULL,0,0,NULL,'2022-12-07 16:48:57','2022-12-07 16:48:57'); + (1,69,40,1,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (2,12,40,1,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (3,69,101,1,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (4,12,101,1,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (5,12,69,4,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (6,101,90,8,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (7,69,90,8,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (8,12,90,8,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (9,40,90,7,NULL,NULL,0,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (10,101,40,2,NULL,NULL,0,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (11,143,193,1,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (12,27,193,1,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (13,143,105,1,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (14,27,105,1,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (15,27,143,4,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (16,105,189,8,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (17,143,189,8,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (18,27,189,8,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (19,193,189,7,NULL,NULL,0,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (20,105,193,2,NULL,NULL,0,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (21,35,120,1,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (22,157,120,1,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (23,35,122,1,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (24,157,122,1,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (25,157,35,4,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (26,122,60,8,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (27,35,60,8,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (28,157,60,8,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (29,120,60,7,NULL,NULL,0,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (30,122,120,2,NULL,NULL,0,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (31,64,150,1,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (32,172,150,1,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (33,64,62,1,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (34,172,62,1,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (35,172,64,4,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (36,62,58,8,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (37,64,58,8,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (38,172,58,8,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (39,150,58,7,NULL,NULL,0,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (40,62,150,2,NULL,NULL,0,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (41,3,106,1,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (42,22,106,1,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (43,3,11,1,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (44,22,11,1,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (45,22,3,4,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (46,11,167,8,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (47,3,167,8,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (48,22,167,8,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (49,106,167,7,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (50,11,106,2,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (51,124,131,1,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (52,9,131,1,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (53,124,38,1,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (54,9,38,1,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (55,9,124,4,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (56,38,164,8,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (57,124,164,8,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (58,9,164,8,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (59,131,164,7,NULL,NULL,0,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (60,38,131,2,NULL,NULL,0,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (61,127,100,1,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (62,7,100,1,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (63,127,187,1,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (64,7,187,1,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (65,7,127,4,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (66,187,48,8,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (67,127,48,8,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (68,7,48,8,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (69,100,48,7,NULL,NULL,0,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (70,187,100,2,NULL,NULL,0,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (71,15,26,1,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (72,19,26,1,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (73,15,91,1,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (74,19,91,1,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (75,19,15,4,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (76,91,80,8,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (77,15,80,8,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (78,19,80,8,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (79,26,80,7,NULL,NULL,0,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (80,91,26,2,NULL,NULL,0,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (81,20,76,1,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (82,191,76,1,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (83,20,109,1,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (84,191,109,1,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (85,191,20,4,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (86,109,156,8,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (87,20,156,8,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (88,191,156,8,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (89,76,156,7,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (90,109,76,2,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (91,29,148,1,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (92,197,148,1,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (93,29,152,1,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (94,197,152,1,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (95,197,29,4,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (96,152,56,8,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (97,29,56,8,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (98,197,56,8,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (99,148,56,7,NULL,NULL,0,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (100,152,148,2,NULL,NULL,0,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (101,70,142,1,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (102,55,142,1,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (103,70,114,1,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (104,55,114,1,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (105,55,70,4,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (106,114,179,8,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (107,70,179,8,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (108,55,179,8,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (109,142,179,7,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (110,114,142,2,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (111,44,67,1,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (112,33,67,1,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (113,44,96,1,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (114,33,96,1,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (115,33,44,4,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (116,96,24,8,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (117,44,24,8,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (118,33,24,8,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (119,67,24,7,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (120,96,67,2,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (121,5,111,1,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (122,97,111,1,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (123,5,135,1,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (124,97,135,1,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (125,97,5,4,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (126,135,66,8,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (127,5,66,8,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (128,97,66,8,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (129,111,66,7,NULL,NULL,0,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (130,135,111,2,NULL,NULL,0,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (131,98,104,1,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (132,102,104,1,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (133,98,190,1,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (134,102,190,1,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (135,102,98,4,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (136,190,34,8,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (137,98,34,8,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (138,102,34,8,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (139,104,34,7,NULL,NULL,0,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (140,190,104,2,NULL,NULL,0,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (141,61,32,1,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (142,180,32,1,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (143,61,84,1,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (144,180,84,1,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (145,180,61,4,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (146,84,162,8,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (147,61,162,8,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (148,180,162,8,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (149,32,162,7,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (150,84,32,2,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (151,49,153,1,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (152,28,153,1,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (153,49,147,1,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (154,28,147,1,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (155,28,49,4,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (156,147,200,8,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (157,49,200,8,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (158,28,200,8,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (159,153,200,7,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (160,147,153,2,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (161,117,121,1,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (162,16,121,1,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (163,117,18,1,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (164,16,18,1,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (165,16,117,4,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (166,18,25,8,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (167,117,25,8,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (168,16,25,8,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (169,121,25,7,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (170,18,121,2,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (171,110,112,1,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (172,149,112,1,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (173,110,183,1,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (174,149,183,1,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (175,149,110,4,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (176,183,119,8,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (177,110,119,8,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (178,149,119,8,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (179,112,119,7,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (180,183,112,2,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (181,169,68,1,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (182,88,68,1,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (183,169,42,1,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (184,88,42,1,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (185,88,169,4,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (186,42,166,8,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (187,169,166,8,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (188,88,166,8,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (189,68,166,7,NULL,NULL,0,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (190,42,68,2,NULL,NULL,0,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (191,151,57,1,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (192,194,57,1,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (193,151,10,1,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (194,194,10,1,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (195,194,151,4,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (196,10,65,8,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (197,151,65,8,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (198,194,65,8,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (199,57,65,7,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (200,10,57,2,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (201,10,17,5,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (202,142,77,5,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (203,95,87,5,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (204,115,93,5,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (205,83,123,5,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (206,15,126,5,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (207,120,128,5,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (208,185,140,5,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (209,45,146,5,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (210,183,160,5,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (211,3,163,5,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (212,47,184,5,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (213,159,188,5,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (214,182,195,5,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'), + (215,193,196,5,NULL,NULL,1,NULL,0,0,NULL,'2023-01-25 00:10:18','2023-01-25 00:10:18'); /*!40000 ALTER TABLE `civicrm_relationship` ENABLE KEYS */; UNLOCK TABLES; @@ -7592,436 +7578,436 @@ UNLOCK TABLES; LOCK TABLES `civicrm_relationship_cache` WRITE; /*!40000 ALTER TABLE `civicrm_relationship_cache` DISABLE KEYS */; INSERT INTO `civicrm_relationship_cache` (`id`, `relationship_id`, `relationship_type_id`, `orientation`, `near_contact_id`, `near_relation`, `far_contact_id`, `far_relation`, `is_active`, `start_date`, `end_date`, `case_id`) VALUES - (1,1,1,'a_b',74,'Child of',34,'Parent of',1,NULL,NULL,NULL), - (2,1,1,'b_a',34,'Parent of',74,'Child of',1,NULL,NULL,NULL), - (3,2,1,'a_b',60,'Child of',34,'Parent of',1,NULL,NULL,NULL), - (4,2,1,'b_a',34,'Parent of',60,'Child of',1,NULL,NULL,NULL), - (5,3,1,'a_b',74,'Child of',109,'Parent of',1,NULL,NULL,NULL), - (6,3,1,'b_a',109,'Parent of',74,'Child of',1,NULL,NULL,NULL), - (7,4,1,'a_b',60,'Child of',109,'Parent of',1,NULL,NULL,NULL), - (8,4,1,'b_a',109,'Parent of',60,'Child of',1,NULL,NULL,NULL), - (9,5,4,'a_b',60,'Sibling of',74,'Sibling of',1,NULL,NULL,NULL), - (10,5,4,'b_a',74,'Sibling of',60,'Sibling of',1,NULL,NULL,NULL), - (11,6,8,'a_b',109,'Household Member of',94,'Household Member is',1,NULL,NULL,NULL), - (12,6,8,'b_a',94,'Household Member is',109,'Household Member of',1,NULL,NULL,NULL), - (13,7,8,'a_b',74,'Household Member of',94,'Household Member is',1,NULL,NULL,NULL), - (14,7,8,'b_a',94,'Household Member is',74,'Household Member of',1,NULL,NULL,NULL), - (15,8,8,'a_b',60,'Household Member of',94,'Household Member is',1,NULL,NULL,NULL), - (16,8,8,'b_a',94,'Household Member is',60,'Household Member of',1,NULL,NULL,NULL), - (17,9,7,'a_b',34,'Head of Household for',94,'Head of Household is',1,NULL,NULL,NULL), - (18,9,7,'b_a',94,'Head of Household is',34,'Head of Household for',1,NULL,NULL,NULL), - (19,10,2,'a_b',109,'Spouse of',34,'Spouse of',1,NULL,NULL,NULL), - (20,10,2,'b_a',34,'Spouse of',109,'Spouse of',1,NULL,NULL,NULL), - (21,11,1,'a_b',118,'Child of',148,'Parent of',1,NULL,NULL,NULL), - (22,11,1,'b_a',148,'Parent of',118,'Child of',1,NULL,NULL,NULL), - (23,12,1,'a_b',132,'Child of',148,'Parent of',1,NULL,NULL,NULL), - (24,12,1,'b_a',148,'Parent of',132,'Child of',1,NULL,NULL,NULL), - (25,13,1,'a_b',118,'Child of',164,'Parent of',1,NULL,NULL,NULL), - (26,13,1,'b_a',164,'Parent of',118,'Child of',1,NULL,NULL,NULL), - (27,14,1,'a_b',132,'Child of',164,'Parent of',1,NULL,NULL,NULL), - (28,14,1,'b_a',164,'Parent of',132,'Child of',1,NULL,NULL,NULL), - (29,15,4,'a_b',132,'Sibling of',118,'Sibling of',1,NULL,NULL,NULL), - (30,15,4,'b_a',118,'Sibling of',132,'Sibling of',1,NULL,NULL,NULL), - (31,16,8,'a_b',164,'Household Member of',76,'Household Member is',1,NULL,NULL,NULL), - (32,16,8,'b_a',76,'Household Member is',164,'Household Member of',1,NULL,NULL,NULL), - (33,17,8,'a_b',118,'Household Member of',76,'Household Member is',1,NULL,NULL,NULL), - (34,17,8,'b_a',76,'Household Member is',118,'Household Member of',1,NULL,NULL,NULL), - (35,18,8,'a_b',132,'Household Member of',76,'Household Member is',1,NULL,NULL,NULL), - (36,18,8,'b_a',76,'Household Member is',132,'Household Member of',1,NULL,NULL,NULL), - (37,19,7,'a_b',148,'Head of Household for',76,'Head of Household is',0,NULL,NULL,NULL), - (38,19,7,'b_a',76,'Head of Household is',148,'Head of Household for',0,NULL,NULL,NULL), - (39,20,2,'a_b',164,'Spouse of',148,'Spouse of',0,NULL,NULL,NULL), - (40,20,2,'b_a',148,'Spouse of',164,'Spouse of',0,NULL,NULL,NULL), - (41,21,1,'a_b',53,'Child of',186,'Parent of',1,NULL,NULL,NULL), - (42,21,1,'b_a',186,'Parent of',53,'Child of',1,NULL,NULL,NULL), - (43,22,1,'a_b',158,'Child of',186,'Parent of',1,NULL,NULL,NULL), - (44,22,1,'b_a',186,'Parent of',158,'Child of',1,NULL,NULL,NULL), - (45,23,1,'a_b',53,'Child of',198,'Parent of',1,NULL,NULL,NULL), - (46,23,1,'b_a',198,'Parent of',53,'Child of',1,NULL,NULL,NULL), - (47,24,1,'a_b',158,'Child of',198,'Parent of',1,NULL,NULL,NULL), - (48,24,1,'b_a',198,'Parent of',158,'Child of',1,NULL,NULL,NULL), - (49,25,4,'a_b',158,'Sibling of',53,'Sibling of',1,NULL,NULL,NULL), - (50,25,4,'b_a',53,'Sibling of',158,'Sibling of',1,NULL,NULL,NULL), - (51,26,8,'a_b',198,'Household Member of',79,'Household Member is',1,NULL,NULL,NULL), - (52,26,8,'b_a',79,'Household Member is',198,'Household Member of',1,NULL,NULL,NULL), - (53,27,8,'a_b',53,'Household Member of',79,'Household Member is',1,NULL,NULL,NULL), - (54,27,8,'b_a',79,'Household Member is',53,'Household Member of',1,NULL,NULL,NULL), - (55,28,8,'a_b',158,'Household Member of',79,'Household Member is',1,NULL,NULL,NULL), - (56,28,8,'b_a',79,'Household Member is',158,'Household Member of',1,NULL,NULL,NULL), - (57,29,7,'a_b',186,'Head of Household for',79,'Head of Household is',0,NULL,NULL,NULL), - (58,29,7,'b_a',79,'Head of Household is',186,'Head of Household for',0,NULL,NULL,NULL), - (59,30,2,'a_b',198,'Spouse of',186,'Spouse of',0,NULL,NULL,NULL), - (60,30,2,'b_a',186,'Spouse of',198,'Spouse of',0,NULL,NULL,NULL), - (61,31,1,'a_b',165,'Child of',121,'Parent of',1,NULL,NULL,NULL), - (62,31,1,'b_a',121,'Parent of',165,'Child of',1,NULL,NULL,NULL), - (63,32,1,'a_b',149,'Child of',121,'Parent of',1,NULL,NULL,NULL), - (64,32,1,'b_a',121,'Parent of',149,'Child of',1,NULL,NULL,NULL), - (65,33,1,'a_b',165,'Child of',154,'Parent of',1,NULL,NULL,NULL), - (66,33,1,'b_a',154,'Parent of',165,'Child of',1,NULL,NULL,NULL), - (67,34,1,'a_b',149,'Child of',154,'Parent of',1,NULL,NULL,NULL), - (68,34,1,'b_a',154,'Parent of',149,'Child of',1,NULL,NULL,NULL), - (69,35,4,'a_b',149,'Sibling of',165,'Sibling of',1,NULL,NULL,NULL), - (70,35,4,'b_a',165,'Sibling of',149,'Sibling of',1,NULL,NULL,NULL), - (71,36,8,'a_b',154,'Household Member of',27,'Household Member is',1,NULL,NULL,NULL), - (72,36,8,'b_a',27,'Household Member is',154,'Household Member of',1,NULL,NULL,NULL), - (73,37,8,'a_b',165,'Household Member of',27,'Household Member is',1,NULL,NULL,NULL), - (74,37,8,'b_a',27,'Household Member is',165,'Household Member of',1,NULL,NULL,NULL), - (75,38,8,'a_b',149,'Household Member of',27,'Household Member is',1,NULL,NULL,NULL), - (76,38,8,'b_a',27,'Household Member is',149,'Household Member of',1,NULL,NULL,NULL), - (77,39,7,'a_b',121,'Head of Household for',27,'Head of Household is',1,NULL,NULL,NULL), - (78,39,7,'b_a',27,'Head of Household is',121,'Head of Household for',1,NULL,NULL,NULL), - (79,40,2,'a_b',154,'Spouse of',121,'Spouse of',1,NULL,NULL,NULL), - (80,40,2,'b_a',121,'Spouse of',154,'Spouse of',1,NULL,NULL,NULL), - (81,41,1,'a_b',3,'Child of',157,'Parent of',1,NULL,NULL,NULL), - (82,41,1,'b_a',157,'Parent of',3,'Child of',1,NULL,NULL,NULL), - (83,42,1,'a_b',51,'Child of',157,'Parent of',1,NULL,NULL,NULL), - (84,42,1,'b_a',157,'Parent of',51,'Child of',1,NULL,NULL,NULL), - (85,43,1,'a_b',3,'Child of',127,'Parent of',1,NULL,NULL,NULL), - (86,43,1,'b_a',127,'Parent of',3,'Child of',1,NULL,NULL,NULL), - (87,44,1,'a_b',51,'Child of',127,'Parent of',1,NULL,NULL,NULL), - (88,44,1,'b_a',127,'Parent of',51,'Child of',1,NULL,NULL,NULL), - (89,45,4,'a_b',51,'Sibling of',3,'Sibling of',1,NULL,NULL,NULL), - (90,45,4,'b_a',3,'Sibling of',51,'Sibling of',1,NULL,NULL,NULL), - (91,46,8,'a_b',127,'Household Member of',77,'Household Member is',1,NULL,NULL,NULL), - (92,46,8,'b_a',77,'Household Member is',127,'Household Member of',1,NULL,NULL,NULL), - (93,47,8,'a_b',3,'Household Member of',77,'Household Member is',1,NULL,NULL,NULL), - (94,47,8,'b_a',77,'Household Member is',3,'Household Member of',1,NULL,NULL,NULL), - (95,48,8,'a_b',51,'Household Member of',77,'Household Member is',1,NULL,NULL,NULL), - (96,48,8,'b_a',77,'Household Member is',51,'Household Member of',1,NULL,NULL,NULL), - (97,49,7,'a_b',157,'Head of Household for',77,'Head of Household is',0,NULL,NULL,NULL), - (98,49,7,'b_a',77,'Head of Household is',157,'Head of Household for',0,NULL,NULL,NULL), - (99,50,2,'a_b',127,'Spouse of',157,'Spouse of',0,NULL,NULL,NULL), - (100,50,2,'b_a',157,'Spouse of',127,'Spouse of',0,NULL,NULL,NULL), - (101,51,1,'a_b',156,'Child of',137,'Parent of',1,NULL,NULL,NULL), - (102,51,1,'b_a',137,'Parent of',156,'Child of',1,NULL,NULL,NULL), - (103,52,1,'a_b',122,'Child of',137,'Parent of',1,NULL,NULL,NULL), - (104,52,1,'b_a',137,'Parent of',122,'Child of',1,NULL,NULL,NULL), - (105,53,1,'a_b',156,'Child of',119,'Parent of',1,NULL,NULL,NULL), - (106,53,1,'b_a',119,'Parent of',156,'Child of',1,NULL,NULL,NULL), - (107,54,1,'a_b',122,'Child of',119,'Parent of',1,NULL,NULL,NULL), - (108,54,1,'b_a',119,'Parent of',122,'Child of',1,NULL,NULL,NULL), - (109,55,4,'a_b',122,'Sibling of',156,'Sibling of',1,NULL,NULL,NULL), - (110,55,4,'b_a',156,'Sibling of',122,'Sibling of',1,NULL,NULL,NULL), - (111,56,8,'a_b',119,'Household Member of',133,'Household Member is',1,NULL,NULL,NULL), - (112,56,8,'b_a',133,'Household Member is',119,'Household Member of',1,NULL,NULL,NULL), - (113,57,8,'a_b',156,'Household Member of',133,'Household Member is',1,NULL,NULL,NULL), - (114,57,8,'b_a',133,'Household Member is',156,'Household Member of',1,NULL,NULL,NULL), - (115,58,8,'a_b',122,'Household Member of',133,'Household Member is',1,NULL,NULL,NULL), - (116,58,8,'b_a',133,'Household Member is',122,'Household Member of',1,NULL,NULL,NULL), - (117,59,7,'a_b',137,'Head of Household for',133,'Head of Household is',1,NULL,NULL,NULL), - (118,59,7,'b_a',133,'Head of Household is',137,'Head of Household for',1,NULL,NULL,NULL), - (119,60,2,'a_b',119,'Spouse of',137,'Spouse of',1,NULL,NULL,NULL), - (120,60,2,'b_a',137,'Spouse of',119,'Spouse of',1,NULL,NULL,NULL), - (121,61,1,'a_b',125,'Child of',22,'Parent of',1,NULL,NULL,NULL), - (122,61,1,'b_a',22,'Parent of',125,'Child of',1,NULL,NULL,NULL), - (123,62,1,'a_b',194,'Child of',22,'Parent of',1,NULL,NULL,NULL), - (124,62,1,'b_a',22,'Parent of',194,'Child of',1,NULL,NULL,NULL), - (125,63,1,'a_b',125,'Child of',126,'Parent of',1,NULL,NULL,NULL), - (126,63,1,'b_a',126,'Parent of',125,'Child of',1,NULL,NULL,NULL), - (127,64,1,'a_b',194,'Child of',126,'Parent of',1,NULL,NULL,NULL), - (128,64,1,'b_a',126,'Parent of',194,'Child of',1,NULL,NULL,NULL), - (129,65,4,'a_b',194,'Sibling of',125,'Sibling of',1,NULL,NULL,NULL), - (130,65,4,'b_a',125,'Sibling of',194,'Sibling of',1,NULL,NULL,NULL), - (131,66,8,'a_b',126,'Household Member of',135,'Household Member is',1,NULL,NULL,NULL), - (132,66,8,'b_a',135,'Household Member is',126,'Household Member of',1,NULL,NULL,NULL), - (133,67,8,'a_b',125,'Household Member of',135,'Household Member is',1,NULL,NULL,NULL), - (134,67,8,'b_a',135,'Household Member is',125,'Household Member of',1,NULL,NULL,NULL), - (135,68,8,'a_b',194,'Household Member of',135,'Household Member is',1,NULL,NULL,NULL), - (136,68,8,'b_a',135,'Household Member is',194,'Household Member of',1,NULL,NULL,NULL), - (137,69,7,'a_b',22,'Head of Household for',135,'Head of Household is',1,NULL,NULL,NULL), - (138,69,7,'b_a',135,'Head of Household is',22,'Head of Household for',1,NULL,NULL,NULL), - (139,70,2,'a_b',126,'Spouse of',22,'Spouse of',1,NULL,NULL,NULL), - (140,70,2,'b_a',22,'Spouse of',126,'Spouse of',1,NULL,NULL,NULL), - (141,71,1,'a_b',54,'Child of',89,'Parent of',1,NULL,NULL,NULL), - (142,71,1,'b_a',89,'Parent of',54,'Child of',1,NULL,NULL,NULL), - (143,72,1,'a_b',102,'Child of',89,'Parent of',1,NULL,NULL,NULL), - (144,72,1,'b_a',89,'Parent of',102,'Child of',1,NULL,NULL,NULL), - (145,73,1,'a_b',54,'Child of',81,'Parent of',1,NULL,NULL,NULL), - (146,73,1,'b_a',81,'Parent of',54,'Child of',1,NULL,NULL,NULL), - (147,74,1,'a_b',102,'Child of',81,'Parent of',1,NULL,NULL,NULL), - (148,74,1,'b_a',81,'Parent of',102,'Child of',1,NULL,NULL,NULL), - (149,75,4,'a_b',102,'Sibling of',54,'Sibling of',1,NULL,NULL,NULL), - (150,75,4,'b_a',54,'Sibling of',102,'Sibling of',1,NULL,NULL,NULL), - (151,76,8,'a_b',81,'Household Member of',20,'Household Member is',1,NULL,NULL,NULL), - (152,76,8,'b_a',20,'Household Member is',81,'Household Member of',1,NULL,NULL,NULL), - (153,77,8,'a_b',54,'Household Member of',20,'Household Member is',1,NULL,NULL,NULL), - (154,77,8,'b_a',20,'Household Member is',54,'Household Member of',1,NULL,NULL,NULL), - (155,78,8,'a_b',102,'Household Member of',20,'Household Member is',1,NULL,NULL,NULL), - (156,78,8,'b_a',20,'Household Member is',102,'Household Member of',1,NULL,NULL,NULL), - (157,79,7,'a_b',89,'Head of Household for',20,'Head of Household is',0,NULL,NULL,NULL), - (158,79,7,'b_a',20,'Head of Household is',89,'Head of Household for',0,NULL,NULL,NULL), - (159,80,2,'a_b',81,'Spouse of',89,'Spouse of',0,NULL,NULL,NULL), - (160,80,2,'b_a',89,'Spouse of',81,'Spouse of',0,NULL,NULL,NULL), - (161,81,1,'a_b',138,'Child of',4,'Parent of',1,NULL,NULL,NULL), - (162,81,1,'b_a',4,'Parent of',138,'Child of',1,NULL,NULL,NULL), - (163,82,1,'a_b',129,'Child of',4,'Parent of',1,NULL,NULL,NULL), - (164,82,1,'b_a',4,'Parent of',129,'Child of',1,NULL,NULL,NULL), - (165,83,1,'a_b',138,'Child of',107,'Parent of',1,NULL,NULL,NULL), - (166,83,1,'b_a',107,'Parent of',138,'Child of',1,NULL,NULL,NULL), - (167,84,1,'a_b',129,'Child of',107,'Parent of',1,NULL,NULL,NULL), - (168,84,1,'b_a',107,'Parent of',129,'Child of',1,NULL,NULL,NULL), - (169,85,4,'a_b',129,'Sibling of',138,'Sibling of',1,NULL,NULL,NULL), - (170,85,4,'b_a',138,'Sibling of',129,'Sibling of',1,NULL,NULL,NULL), - (171,86,8,'a_b',107,'Household Member of',85,'Household Member is',1,NULL,NULL,NULL), - (172,86,8,'b_a',85,'Household Member is',107,'Household Member of',1,NULL,NULL,NULL), - (173,87,8,'a_b',138,'Household Member of',85,'Household Member is',1,NULL,NULL,NULL), - (174,87,8,'b_a',85,'Household Member is',138,'Household Member of',1,NULL,NULL,NULL), - (175,88,8,'a_b',129,'Household Member of',85,'Household Member is',1,NULL,NULL,NULL), - (176,88,8,'b_a',85,'Household Member is',129,'Household Member of',1,NULL,NULL,NULL), - (177,89,7,'a_b',4,'Head of Household for',85,'Head of Household is',0,NULL,NULL,NULL), - (178,89,7,'b_a',85,'Head of Household is',4,'Head of Household for',0,NULL,NULL,NULL), - (179,90,2,'a_b',107,'Spouse of',4,'Spouse of',0,NULL,NULL,NULL), - (180,90,2,'b_a',4,'Spouse of',107,'Spouse of',0,NULL,NULL,NULL), - (181,91,1,'a_b',139,'Child of',180,'Parent of',1,NULL,NULL,NULL), - (182,91,1,'b_a',180,'Parent of',139,'Child of',1,NULL,NULL,NULL), - (183,92,1,'a_b',114,'Child of',180,'Parent of',1,NULL,NULL,NULL), - (184,92,1,'b_a',180,'Parent of',114,'Child of',1,NULL,NULL,NULL), - (185,93,1,'a_b',139,'Child of',39,'Parent of',1,NULL,NULL,NULL), - (186,93,1,'b_a',39,'Parent of',139,'Child of',1,NULL,NULL,NULL), - (187,94,1,'a_b',114,'Child of',39,'Parent of',1,NULL,NULL,NULL), - (188,94,1,'b_a',39,'Parent of',114,'Child of',1,NULL,NULL,NULL), - (189,95,4,'a_b',114,'Sibling of',139,'Sibling of',1,NULL,NULL,NULL), - (190,95,4,'b_a',139,'Sibling of',114,'Sibling of',1,NULL,NULL,NULL), - (191,96,8,'a_b',39,'Household Member of',26,'Household Member is',1,NULL,NULL,NULL), - (192,96,8,'b_a',26,'Household Member is',39,'Household Member of',1,NULL,NULL,NULL), - (193,97,8,'a_b',139,'Household Member of',26,'Household Member is',1,NULL,NULL,NULL), - (194,97,8,'b_a',26,'Household Member is',139,'Household Member of',1,NULL,NULL,NULL), - (195,98,8,'a_b',114,'Household Member of',26,'Household Member is',1,NULL,NULL,NULL), - (196,98,8,'b_a',26,'Household Member is',114,'Household Member of',1,NULL,NULL,NULL), - (197,99,7,'a_b',180,'Head of Household for',26,'Head of Household is',0,NULL,NULL,NULL), - (198,99,7,'b_a',26,'Head of Household is',180,'Head of Household for',0,NULL,NULL,NULL), - (199,100,2,'a_b',39,'Spouse of',180,'Spouse of',0,NULL,NULL,NULL), - (200,100,2,'b_a',180,'Spouse of',39,'Spouse of',0,NULL,NULL,NULL), - (201,101,1,'a_b',103,'Child of',56,'Parent of',1,NULL,NULL,NULL), - (202,101,1,'b_a',56,'Parent of',103,'Child of',1,NULL,NULL,NULL), - (203,102,1,'a_b',86,'Child of',56,'Parent of',1,NULL,NULL,NULL), - (204,102,1,'b_a',56,'Parent of',86,'Child of',1,NULL,NULL,NULL), - (205,103,1,'a_b',103,'Child of',97,'Parent of',1,NULL,NULL,NULL), - (206,103,1,'b_a',97,'Parent of',103,'Child of',1,NULL,NULL,NULL), - (207,104,1,'a_b',86,'Child of',97,'Parent of',1,NULL,NULL,NULL), - (208,104,1,'b_a',97,'Parent of',86,'Child of',1,NULL,NULL,NULL), - (209,105,4,'a_b',86,'Sibling of',103,'Sibling of',1,NULL,NULL,NULL), - (210,105,4,'b_a',103,'Sibling of',86,'Sibling of',1,NULL,NULL,NULL), - (211,106,8,'a_b',97,'Household Member of',189,'Household Member is',1,NULL,NULL,NULL), - (212,106,8,'b_a',189,'Household Member is',97,'Household Member of',1,NULL,NULL,NULL), - (213,107,8,'a_b',103,'Household Member of',189,'Household Member is',1,NULL,NULL,NULL), - (214,107,8,'b_a',189,'Household Member is',103,'Household Member of',1,NULL,NULL,NULL), - (215,108,8,'a_b',86,'Household Member of',189,'Household Member is',1,NULL,NULL,NULL), - (216,108,8,'b_a',189,'Household Member is',86,'Household Member of',1,NULL,NULL,NULL), - (217,109,7,'a_b',56,'Head of Household for',189,'Head of Household is',0,NULL,NULL,NULL), - (218,109,7,'b_a',189,'Head of Household is',56,'Head of Household for',0,NULL,NULL,NULL), - (219,110,2,'a_b',97,'Spouse of',56,'Spouse of',0,NULL,NULL,NULL), - (220,110,2,'b_a',56,'Spouse of',97,'Spouse of',0,NULL,NULL,NULL), - (221,111,1,'a_b',44,'Child of',116,'Parent of',1,NULL,NULL,NULL), - (222,111,1,'b_a',116,'Parent of',44,'Child of',1,NULL,NULL,NULL), - (223,112,1,'a_b',105,'Child of',116,'Parent of',1,NULL,NULL,NULL), - (224,112,1,'b_a',116,'Parent of',105,'Child of',1,NULL,NULL,NULL), - (225,113,1,'a_b',44,'Child of',178,'Parent of',1,NULL,NULL,NULL), - (226,113,1,'b_a',178,'Parent of',44,'Child of',1,NULL,NULL,NULL), - (227,114,1,'a_b',105,'Child of',178,'Parent of',1,NULL,NULL,NULL), - (228,114,1,'b_a',178,'Parent of',105,'Child of',1,NULL,NULL,NULL), - (229,115,4,'a_b',105,'Sibling of',44,'Sibling of',1,NULL,NULL,NULL), - (230,115,4,'b_a',44,'Sibling of',105,'Sibling of',1,NULL,NULL,NULL), - (231,116,8,'a_b',178,'Household Member of',153,'Household Member is',1,NULL,NULL,NULL), - (232,116,8,'b_a',153,'Household Member is',178,'Household Member of',1,NULL,NULL,NULL), - (233,117,8,'a_b',44,'Household Member of',153,'Household Member is',1,NULL,NULL,NULL), - (234,117,8,'b_a',153,'Household Member is',44,'Household Member of',1,NULL,NULL,NULL), - (235,118,8,'a_b',105,'Household Member of',153,'Household Member is',1,NULL,NULL,NULL), - (236,118,8,'b_a',153,'Household Member is',105,'Household Member of',1,NULL,NULL,NULL), - (237,119,7,'a_b',116,'Head of Household for',153,'Head of Household is',0,NULL,NULL,NULL), - (238,119,7,'b_a',153,'Head of Household is',116,'Head of Household for',0,NULL,NULL,NULL), - (239,120,2,'a_b',178,'Spouse of',116,'Spouse of',0,NULL,NULL,NULL), - (240,120,2,'b_a',116,'Spouse of',178,'Spouse of',0,NULL,NULL,NULL), - (241,121,1,'a_b',145,'Child of',151,'Parent of',1,NULL,NULL,NULL), - (242,121,1,'b_a',151,'Parent of',145,'Child of',1,NULL,NULL,NULL), - (243,122,1,'a_b',112,'Child of',151,'Parent of',1,NULL,NULL,NULL), - (244,122,1,'b_a',151,'Parent of',112,'Child of',1,NULL,NULL,NULL), - (245,123,1,'a_b',145,'Child of',193,'Parent of',1,NULL,NULL,NULL), - (246,123,1,'b_a',193,'Parent of',145,'Child of',1,NULL,NULL,NULL), - (247,124,1,'a_b',112,'Child of',193,'Parent of',1,NULL,NULL,NULL), - (248,124,1,'b_a',193,'Parent of',112,'Child of',1,NULL,NULL,NULL), - (249,125,4,'a_b',112,'Sibling of',145,'Sibling of',1,NULL,NULL,NULL), - (250,125,4,'b_a',145,'Sibling of',112,'Sibling of',1,NULL,NULL,NULL), - (251,126,8,'a_b',193,'Household Member of',46,'Household Member is',1,NULL,NULL,NULL), - (252,126,8,'b_a',46,'Household Member is',193,'Household Member of',1,NULL,NULL,NULL), - (253,127,8,'a_b',145,'Household Member of',46,'Household Member is',1,NULL,NULL,NULL), - (254,127,8,'b_a',46,'Household Member is',145,'Household Member of',1,NULL,NULL,NULL), - (255,128,8,'a_b',112,'Household Member of',46,'Household Member is',1,NULL,NULL,NULL), - (256,128,8,'b_a',46,'Household Member is',112,'Household Member of',1,NULL,NULL,NULL), - (257,129,7,'a_b',151,'Head of Household for',46,'Head of Household is',0,NULL,NULL,NULL), - (258,129,7,'b_a',46,'Head of Household is',151,'Head of Household for',0,NULL,NULL,NULL), - (259,130,2,'a_b',193,'Spouse of',151,'Spouse of',0,NULL,NULL,NULL), - (260,130,2,'b_a',151,'Spouse of',193,'Spouse of',0,NULL,NULL,NULL), - (261,131,1,'a_b',171,'Child of',142,'Parent of',1,NULL,NULL,NULL), - (262,131,1,'b_a',142,'Parent of',171,'Child of',1,NULL,NULL,NULL), - (263,132,1,'a_b',83,'Child of',142,'Parent of',1,NULL,NULL,NULL), - (264,132,1,'b_a',142,'Parent of',83,'Child of',1,NULL,NULL,NULL), - (265,133,1,'a_b',171,'Child of',96,'Parent of',1,NULL,NULL,NULL), - (266,133,1,'b_a',96,'Parent of',171,'Child of',1,NULL,NULL,NULL), - (267,134,1,'a_b',83,'Child of',96,'Parent of',1,NULL,NULL,NULL), - (268,134,1,'b_a',96,'Parent of',83,'Child of',1,NULL,NULL,NULL), - (269,135,4,'a_b',83,'Sibling of',171,'Sibling of',1,NULL,NULL,NULL), - (270,135,4,'b_a',171,'Sibling of',83,'Sibling of',1,NULL,NULL,NULL), - (271,136,8,'a_b',96,'Household Member of',143,'Household Member is',1,NULL,NULL,NULL), - (272,136,8,'b_a',143,'Household Member is',96,'Household Member of',1,NULL,NULL,NULL), - (273,137,8,'a_b',171,'Household Member of',143,'Household Member is',1,NULL,NULL,NULL), - (274,137,8,'b_a',143,'Household Member is',171,'Household Member of',1,NULL,NULL,NULL), - (275,138,8,'a_b',83,'Household Member of',143,'Household Member is',1,NULL,NULL,NULL), - (276,138,8,'b_a',143,'Household Member is',83,'Household Member of',1,NULL,NULL,NULL), - (277,139,7,'a_b',142,'Head of Household for',143,'Head of Household is',1,NULL,NULL,NULL), - (278,139,7,'b_a',143,'Head of Household is',142,'Head of Household for',1,NULL,NULL,NULL), - (279,140,2,'a_b',96,'Spouse of',142,'Spouse of',1,NULL,NULL,NULL), - (280,140,2,'b_a',142,'Spouse of',96,'Spouse of',1,NULL,NULL,NULL), - (281,141,1,'a_b',161,'Child of',67,'Parent of',1,NULL,NULL,NULL), - (282,141,1,'b_a',67,'Parent of',161,'Child of',1,NULL,NULL,NULL), - (283,142,1,'a_b',134,'Child of',67,'Parent of',1,NULL,NULL,NULL), - (284,142,1,'b_a',67,'Parent of',134,'Child of',1,NULL,NULL,NULL), - (285,143,1,'a_b',161,'Child of',104,'Parent of',1,NULL,NULL,NULL), - (286,143,1,'b_a',104,'Parent of',161,'Child of',1,NULL,NULL,NULL), - (287,144,1,'a_b',134,'Child of',104,'Parent of',1,NULL,NULL,NULL), - (288,144,1,'b_a',104,'Parent of',134,'Child of',1,NULL,NULL,NULL), - (289,145,4,'a_b',134,'Sibling of',161,'Sibling of',1,NULL,NULL,NULL), - (290,145,4,'b_a',161,'Sibling of',134,'Sibling of',1,NULL,NULL,NULL), - (291,146,8,'a_b',104,'Household Member of',73,'Household Member is',1,NULL,NULL,NULL), - (292,146,8,'b_a',73,'Household Member is',104,'Household Member of',1,NULL,NULL,NULL), - (293,147,8,'a_b',161,'Household Member of',73,'Household Member is',1,NULL,NULL,NULL), - (294,147,8,'b_a',73,'Household Member is',161,'Household Member of',1,NULL,NULL,NULL), - (295,148,8,'a_b',134,'Household Member of',73,'Household Member is',1,NULL,NULL,NULL), - (296,148,8,'b_a',73,'Household Member is',134,'Household Member of',1,NULL,NULL,NULL), - (297,149,7,'a_b',67,'Head of Household for',73,'Head of Household is',0,NULL,NULL,NULL), - (298,149,7,'b_a',73,'Head of Household is',67,'Head of Household for',0,NULL,NULL,NULL), - (299,150,2,'a_b',104,'Spouse of',67,'Spouse of',0,NULL,NULL,NULL), - (300,150,2,'b_a',67,'Spouse of',104,'Spouse of',0,NULL,NULL,NULL), - (301,151,1,'a_b',176,'Child of',70,'Parent of',1,NULL,NULL,NULL), - (302,151,1,'b_a',70,'Parent of',176,'Child of',1,NULL,NULL,NULL), - (303,152,1,'a_b',32,'Child of',70,'Parent of',1,NULL,NULL,NULL), - (304,152,1,'b_a',70,'Parent of',32,'Child of',1,NULL,NULL,NULL), - (305,153,1,'a_b',176,'Child of',40,'Parent of',1,NULL,NULL,NULL), - (306,153,1,'b_a',40,'Parent of',176,'Child of',1,NULL,NULL,NULL), - (307,154,1,'a_b',32,'Child of',40,'Parent of',1,NULL,NULL,NULL), - (308,154,1,'b_a',40,'Parent of',32,'Child of',1,NULL,NULL,NULL), - (309,155,4,'a_b',32,'Sibling of',176,'Sibling of',1,NULL,NULL,NULL), - (310,155,4,'b_a',176,'Sibling of',32,'Sibling of',1,NULL,NULL,NULL), - (311,156,8,'a_b',40,'Household Member of',173,'Household Member is',1,NULL,NULL,NULL), - (312,156,8,'b_a',173,'Household Member is',40,'Household Member of',1,NULL,NULL,NULL), - (313,157,8,'a_b',176,'Household Member of',173,'Household Member is',1,NULL,NULL,NULL), - (314,157,8,'b_a',173,'Household Member is',176,'Household Member of',1,NULL,NULL,NULL), - (315,158,8,'a_b',32,'Household Member of',173,'Household Member is',1,NULL,NULL,NULL), - (316,158,8,'b_a',173,'Household Member is',32,'Household Member of',1,NULL,NULL,NULL), - (317,159,7,'a_b',70,'Head of Household for',173,'Head of Household is',0,NULL,NULL,NULL), - (318,159,7,'b_a',173,'Head of Household is',70,'Head of Household for',0,NULL,NULL,NULL), - (319,160,2,'a_b',40,'Spouse of',70,'Spouse of',0,NULL,NULL,NULL), - (320,160,2,'b_a',70,'Spouse of',40,'Spouse of',0,NULL,NULL,NULL), - (321,161,1,'a_b',8,'Child of',25,'Parent of',1,NULL,NULL,NULL), - (322,161,1,'b_a',25,'Parent of',8,'Child of',1,NULL,NULL,NULL), - (323,162,1,'a_b',21,'Child of',25,'Parent of',1,NULL,NULL,NULL), - (324,162,1,'b_a',25,'Parent of',21,'Child of',1,NULL,NULL,NULL), - (325,163,1,'a_b',8,'Child of',14,'Parent of',1,NULL,NULL,NULL), - (326,163,1,'b_a',14,'Parent of',8,'Child of',1,NULL,NULL,NULL), - (327,164,1,'a_b',21,'Child of',14,'Parent of',1,NULL,NULL,NULL), - (328,164,1,'b_a',14,'Parent of',21,'Child of',1,NULL,NULL,NULL), - (329,165,4,'a_b',21,'Sibling of',8,'Sibling of',1,NULL,NULL,NULL), - (330,165,4,'b_a',8,'Sibling of',21,'Sibling of',1,NULL,NULL,NULL), - (331,166,8,'a_b',14,'Household Member of',19,'Household Member is',1,NULL,NULL,NULL), - (332,166,8,'b_a',19,'Household Member is',14,'Household Member of',1,NULL,NULL,NULL), - (333,167,8,'a_b',8,'Household Member of',19,'Household Member is',1,NULL,NULL,NULL), - (334,167,8,'b_a',19,'Household Member is',8,'Household Member of',1,NULL,NULL,NULL), - (335,168,8,'a_b',21,'Household Member of',19,'Household Member is',1,NULL,NULL,NULL), - (336,168,8,'b_a',19,'Household Member is',21,'Household Member of',1,NULL,NULL,NULL), - (337,169,7,'a_b',25,'Head of Household for',19,'Head of Household is',1,NULL,NULL,NULL), - (338,169,7,'b_a',19,'Head of Household is',25,'Head of Household for',1,NULL,NULL,NULL), - (339,170,2,'a_b',14,'Spouse of',25,'Spouse of',1,NULL,NULL,NULL), - (340,170,2,'b_a',25,'Spouse of',14,'Spouse of',1,NULL,NULL,NULL), - (341,171,1,'a_b',5,'Child of',68,'Parent of',1,NULL,NULL,NULL), - (342,171,1,'b_a',68,'Parent of',5,'Child of',1,NULL,NULL,NULL), - (343,172,1,'a_b',174,'Child of',68,'Parent of',1,NULL,NULL,NULL), - (344,172,1,'b_a',68,'Parent of',174,'Child of',1,NULL,NULL,NULL), - (345,173,1,'a_b',5,'Child of',163,'Parent of',1,NULL,NULL,NULL), - (346,173,1,'b_a',163,'Parent of',5,'Child of',1,NULL,NULL,NULL), - (347,174,1,'a_b',174,'Child of',163,'Parent of',1,NULL,NULL,NULL), - (348,174,1,'b_a',163,'Parent of',174,'Child of',1,NULL,NULL,NULL), - (349,175,4,'a_b',174,'Sibling of',5,'Sibling of',1,NULL,NULL,NULL), - (350,175,4,'b_a',5,'Sibling of',174,'Sibling of',1,NULL,NULL,NULL), - (351,176,8,'a_b',163,'Household Member of',63,'Household Member is',1,NULL,NULL,NULL), - (352,176,8,'b_a',63,'Household Member is',163,'Household Member of',1,NULL,NULL,NULL), - (353,177,8,'a_b',5,'Household Member of',63,'Household Member is',1,NULL,NULL,NULL), - (354,177,8,'b_a',63,'Household Member is',5,'Household Member of',1,NULL,NULL,NULL), - (355,178,8,'a_b',174,'Household Member of',63,'Household Member is',1,NULL,NULL,NULL), - (356,178,8,'b_a',63,'Household Member is',174,'Household Member of',1,NULL,NULL,NULL), - (357,179,7,'a_b',68,'Head of Household for',63,'Head of Household is',0,NULL,NULL,NULL), - (358,179,7,'b_a',63,'Head of Household is',68,'Head of Household for',0,NULL,NULL,NULL), - (359,180,2,'a_b',163,'Spouse of',68,'Spouse of',0,NULL,NULL,NULL), - (360,180,2,'b_a',68,'Spouse of',163,'Spouse of',0,NULL,NULL,NULL), - (361,181,1,'a_b',69,'Child of',16,'Parent of',1,NULL,NULL,NULL), - (362,181,1,'b_a',16,'Parent of',69,'Child of',1,NULL,NULL,NULL), - (363,182,1,'a_b',10,'Child of',16,'Parent of',1,NULL,NULL,NULL), - (364,182,1,'b_a',16,'Parent of',10,'Child of',1,NULL,NULL,NULL), - (365,183,1,'a_b',69,'Child of',182,'Parent of',1,NULL,NULL,NULL), - (366,183,1,'b_a',182,'Parent of',69,'Child of',1,NULL,NULL,NULL), - (367,184,1,'a_b',10,'Child of',182,'Parent of',1,NULL,NULL,NULL), - (368,184,1,'b_a',182,'Parent of',10,'Child of',1,NULL,NULL,NULL), - (369,185,4,'a_b',10,'Sibling of',69,'Sibling of',1,NULL,NULL,NULL), - (370,185,4,'b_a',69,'Sibling of',10,'Sibling of',1,NULL,NULL,NULL), - (371,186,8,'a_b',182,'Household Member of',200,'Household Member is',1,NULL,NULL,NULL), - (372,186,8,'b_a',200,'Household Member is',182,'Household Member of',1,NULL,NULL,NULL), - (373,187,8,'a_b',69,'Household Member of',200,'Household Member is',1,NULL,NULL,NULL), - (374,187,8,'b_a',200,'Household Member is',69,'Household Member of',1,NULL,NULL,NULL), - (375,188,8,'a_b',10,'Household Member of',200,'Household Member is',1,NULL,NULL,NULL), - (376,188,8,'b_a',200,'Household Member is',10,'Household Member of',1,NULL,NULL,NULL), - (377,189,7,'a_b',16,'Head of Household for',200,'Head of Household is',1,NULL,NULL,NULL), - (378,189,7,'b_a',200,'Head of Household is',16,'Head of Household for',1,NULL,NULL,NULL), - (379,190,2,'a_b',182,'Spouse of',16,'Spouse of',1,NULL,NULL,NULL), - (380,190,2,'b_a',16,'Spouse of',182,'Spouse of',1,NULL,NULL,NULL), - (381,191,1,'a_b',12,'Child of',159,'Parent of',1,NULL,NULL,NULL), - (382,191,1,'b_a',159,'Parent of',12,'Child of',1,NULL,NULL,NULL), - (383,192,1,'a_b',78,'Child of',159,'Parent of',1,NULL,NULL,NULL), - (384,192,1,'b_a',159,'Parent of',78,'Child of',1,NULL,NULL,NULL), - (385,193,1,'a_b',12,'Child of',45,'Parent of',1,NULL,NULL,NULL), - (386,193,1,'b_a',45,'Parent of',12,'Child of',1,NULL,NULL,NULL), - (387,194,1,'a_b',78,'Child of',45,'Parent of',1,NULL,NULL,NULL), - (388,194,1,'b_a',45,'Parent of',78,'Child of',1,NULL,NULL,NULL), - (389,195,4,'a_b',78,'Sibling of',12,'Sibling of',1,NULL,NULL,NULL), - (390,195,4,'b_a',12,'Sibling of',78,'Sibling of',1,NULL,NULL,NULL), - (391,196,8,'a_b',45,'Household Member of',177,'Household Member is',1,NULL,NULL,NULL), - (392,196,8,'b_a',177,'Household Member is',45,'Household Member of',1,NULL,NULL,NULL), - (393,197,8,'a_b',12,'Household Member of',177,'Household Member is',1,NULL,NULL,NULL), - (394,197,8,'b_a',177,'Household Member is',12,'Household Member of',1,NULL,NULL,NULL), - (395,198,8,'a_b',78,'Household Member of',177,'Household Member is',1,NULL,NULL,NULL), - (396,198,8,'b_a',177,'Household Member is',78,'Household Member of',1,NULL,NULL,NULL), - (397,199,7,'a_b',159,'Head of Household for',177,'Head of Household is',1,NULL,NULL,NULL), - (398,199,7,'b_a',177,'Head of Household is',159,'Head of Household for',1,NULL,NULL,NULL), - (399,200,2,'a_b',45,'Spouse of',159,'Spouse of',1,NULL,NULL,NULL), - (400,200,2,'b_a',159,'Spouse of',45,'Spouse of',1,NULL,NULL,NULL), - (401,201,5,'a_b',180,'Employee of',2,'Employer of',1,NULL,NULL,NULL), - (402,201,5,'b_a',2,'Employer of',180,'Employee of',1,NULL,NULL,NULL), - (403,202,5,'a_b',198,'Employee of',15,'Employer of',1,NULL,NULL,NULL), - (404,202,5,'b_a',15,'Employer of',198,'Employee of',1,NULL,NULL,NULL), - (405,203,5,'a_b',70,'Employee of',24,'Employer of',1,NULL,NULL,NULL), - (406,203,5,'b_a',24,'Employer of',70,'Employee of',1,NULL,NULL,NULL), - (407,204,5,'a_b',171,'Employee of',36,'Employer of',1,NULL,NULL,NULL), - (408,204,5,'b_a',36,'Employer of',171,'Employee of',1,NULL,NULL,NULL), - (409,205,5,'a_b',32,'Employee of',38,'Employer of',1,NULL,NULL,NULL), - (410,205,5,'b_a',38,'Employer of',32,'Employee of',1,NULL,NULL,NULL), - (411,206,5,'a_b',103,'Employee of',42,'Employer of',1,NULL,NULL,NULL), - (412,206,5,'b_a',42,'Employer of',103,'Employee of',1,NULL,NULL,NULL), - (413,207,5,'a_b',179,'Employee of',43,'Employer of',1,NULL,NULL,NULL), - (414,207,5,'b_a',43,'Employer of',179,'Employee of',1,NULL,NULL,NULL), - (415,208,5,'a_b',195,'Employee of',49,'Employer of',1,NULL,NULL,NULL), - (416,208,5,'b_a',49,'Employer of',195,'Employee of',1,NULL,NULL,NULL), - (417,209,5,'a_b',194,'Employee of',64,'Employer of',1,NULL,NULL,NULL), - (418,209,5,'b_a',64,'Employer of',194,'Employee of',1,NULL,NULL,NULL), - (419,210,5,'a_b',137,'Employee of',113,'Employer of',1,NULL,NULL,NULL), - (420,210,5,'b_a',113,'Employer of',137,'Employee of',1,NULL,NULL,NULL), - (421,211,5,'a_b',16,'Employee of',124,'Employer of',1,NULL,NULL,NULL), - (422,211,5,'b_a',124,'Employer of',16,'Employee of',1,NULL,NULL,NULL), - (423,212,5,'a_b',89,'Employee of',167,'Employer of',1,NULL,NULL,NULL), - (424,212,5,'b_a',167,'Employer of',89,'Employee of',1,NULL,NULL,NULL), - (425,213,5,'a_b',58,'Employee of',168,'Employer of',1,NULL,NULL,NULL), - (426,213,5,'b_a',168,'Employer of',58,'Employee of',1,NULL,NULL,NULL), - (427,214,5,'a_b',99,'Employee of',192,'Employer of',1,NULL,NULL,NULL), - (428,214,5,'b_a',192,'Employer of',99,'Employee of',1,NULL,NULL,NULL), - (429,215,5,'a_b',139,'Employee of',199,'Employer of',1,NULL,NULL,NULL), - (430,215,5,'b_a',199,'Employer of',139,'Employee of',1,NULL,NULL,NULL); + (1,1,1,'a_b',69,'Child of',40,'Parent of',1,NULL,NULL,NULL), + (2,1,1,'b_a',40,'Parent of',69,'Child of',1,NULL,NULL,NULL), + (3,2,1,'a_b',12,'Child of',40,'Parent of',1,NULL,NULL,NULL), + (4,2,1,'b_a',40,'Parent of',12,'Child of',1,NULL,NULL,NULL), + (5,3,1,'a_b',69,'Child of',101,'Parent of',1,NULL,NULL,NULL), + (6,3,1,'b_a',101,'Parent of',69,'Child of',1,NULL,NULL,NULL), + (7,4,1,'a_b',12,'Child of',101,'Parent of',1,NULL,NULL,NULL), + (8,4,1,'b_a',101,'Parent of',12,'Child of',1,NULL,NULL,NULL), + (9,5,4,'a_b',12,'Sibling of',69,'Sibling of',1,NULL,NULL,NULL), + (10,5,4,'b_a',69,'Sibling of',12,'Sibling of',1,NULL,NULL,NULL), + (11,6,8,'a_b',101,'Household Member of',90,'Household Member is',1,NULL,NULL,NULL), + (12,6,8,'b_a',90,'Household Member is',101,'Household Member of',1,NULL,NULL,NULL), + (13,7,8,'a_b',69,'Household Member of',90,'Household Member is',1,NULL,NULL,NULL), + (14,7,8,'b_a',90,'Household Member is',69,'Household Member of',1,NULL,NULL,NULL), + (15,8,8,'a_b',12,'Household Member of',90,'Household Member is',1,NULL,NULL,NULL), + (16,8,8,'b_a',90,'Household Member is',12,'Household Member of',1,NULL,NULL,NULL), + (17,9,7,'a_b',40,'Head of Household for',90,'Head of Household is',0,NULL,NULL,NULL), + (18,9,7,'b_a',90,'Head of Household is',40,'Head of Household for',0,NULL,NULL,NULL), + (19,10,2,'a_b',101,'Spouse of',40,'Spouse of',0,NULL,NULL,NULL), + (20,10,2,'b_a',40,'Spouse of',101,'Spouse of',0,NULL,NULL,NULL), + (21,11,1,'a_b',143,'Child of',193,'Parent of',1,NULL,NULL,NULL), + (22,11,1,'b_a',193,'Parent of',143,'Child of',1,NULL,NULL,NULL), + (23,12,1,'a_b',27,'Child of',193,'Parent of',1,NULL,NULL,NULL), + (24,12,1,'b_a',193,'Parent of',27,'Child of',1,NULL,NULL,NULL), + (25,13,1,'a_b',143,'Child of',105,'Parent of',1,NULL,NULL,NULL), + (26,13,1,'b_a',105,'Parent of',143,'Child of',1,NULL,NULL,NULL), + (27,14,1,'a_b',27,'Child of',105,'Parent of',1,NULL,NULL,NULL), + (28,14,1,'b_a',105,'Parent of',27,'Child of',1,NULL,NULL,NULL), + (29,15,4,'a_b',27,'Sibling of',143,'Sibling of',1,NULL,NULL,NULL), + (30,15,4,'b_a',143,'Sibling of',27,'Sibling of',1,NULL,NULL,NULL), + (31,16,8,'a_b',105,'Household Member of',189,'Household Member is',1,NULL,NULL,NULL), + (32,16,8,'b_a',189,'Household Member is',105,'Household Member of',1,NULL,NULL,NULL), + (33,17,8,'a_b',143,'Household Member of',189,'Household Member is',1,NULL,NULL,NULL), + (34,17,8,'b_a',189,'Household Member is',143,'Household Member of',1,NULL,NULL,NULL), + (35,18,8,'a_b',27,'Household Member of',189,'Household Member is',1,NULL,NULL,NULL), + (36,18,8,'b_a',189,'Household Member is',27,'Household Member of',1,NULL,NULL,NULL), + (37,19,7,'a_b',193,'Head of Household for',189,'Head of Household is',0,NULL,NULL,NULL), + (38,19,7,'b_a',189,'Head of Household is',193,'Head of Household for',0,NULL,NULL,NULL), + (39,20,2,'a_b',105,'Spouse of',193,'Spouse of',0,NULL,NULL,NULL), + (40,20,2,'b_a',193,'Spouse of',105,'Spouse of',0,NULL,NULL,NULL), + (41,21,1,'a_b',35,'Child of',120,'Parent of',1,NULL,NULL,NULL), + (42,21,1,'b_a',120,'Parent of',35,'Child of',1,NULL,NULL,NULL), + (43,22,1,'a_b',157,'Child of',120,'Parent of',1,NULL,NULL,NULL), + (44,22,1,'b_a',120,'Parent of',157,'Child of',1,NULL,NULL,NULL), + (45,23,1,'a_b',35,'Child of',122,'Parent of',1,NULL,NULL,NULL), + (46,23,1,'b_a',122,'Parent of',35,'Child of',1,NULL,NULL,NULL), + (47,24,1,'a_b',157,'Child of',122,'Parent of',1,NULL,NULL,NULL), + (48,24,1,'b_a',122,'Parent of',157,'Child of',1,NULL,NULL,NULL), + (49,25,4,'a_b',157,'Sibling of',35,'Sibling of',1,NULL,NULL,NULL), + (50,25,4,'b_a',35,'Sibling of',157,'Sibling of',1,NULL,NULL,NULL), + (51,26,8,'a_b',122,'Household Member of',60,'Household Member is',1,NULL,NULL,NULL), + (52,26,8,'b_a',60,'Household Member is',122,'Household Member of',1,NULL,NULL,NULL), + (53,27,8,'a_b',35,'Household Member of',60,'Household Member is',1,NULL,NULL,NULL), + (54,27,8,'b_a',60,'Household Member is',35,'Household Member of',1,NULL,NULL,NULL), + (55,28,8,'a_b',157,'Household Member of',60,'Household Member is',1,NULL,NULL,NULL), + (56,28,8,'b_a',60,'Household Member is',157,'Household Member of',1,NULL,NULL,NULL), + (57,29,7,'a_b',120,'Head of Household for',60,'Head of Household is',0,NULL,NULL,NULL), + (58,29,7,'b_a',60,'Head of Household is',120,'Head of Household for',0,NULL,NULL,NULL), + (59,30,2,'a_b',122,'Spouse of',120,'Spouse of',0,NULL,NULL,NULL), + (60,30,2,'b_a',120,'Spouse of',122,'Spouse of',0,NULL,NULL,NULL), + (61,31,1,'a_b',64,'Child of',150,'Parent of',1,NULL,NULL,NULL), + (62,31,1,'b_a',150,'Parent of',64,'Child of',1,NULL,NULL,NULL), + (63,32,1,'a_b',172,'Child of',150,'Parent of',1,NULL,NULL,NULL), + (64,32,1,'b_a',150,'Parent of',172,'Child of',1,NULL,NULL,NULL), + (65,33,1,'a_b',64,'Child of',62,'Parent of',1,NULL,NULL,NULL), + (66,33,1,'b_a',62,'Parent of',64,'Child of',1,NULL,NULL,NULL), + (67,34,1,'a_b',172,'Child of',62,'Parent of',1,NULL,NULL,NULL), + (68,34,1,'b_a',62,'Parent of',172,'Child of',1,NULL,NULL,NULL), + (69,35,4,'a_b',172,'Sibling of',64,'Sibling of',1,NULL,NULL,NULL), + (70,35,4,'b_a',64,'Sibling of',172,'Sibling of',1,NULL,NULL,NULL), + (71,36,8,'a_b',62,'Household Member of',58,'Household Member is',1,NULL,NULL,NULL), + (72,36,8,'b_a',58,'Household Member is',62,'Household Member of',1,NULL,NULL,NULL), + (73,37,8,'a_b',64,'Household Member of',58,'Household Member is',1,NULL,NULL,NULL), + (74,37,8,'b_a',58,'Household Member is',64,'Household Member of',1,NULL,NULL,NULL), + (75,38,8,'a_b',172,'Household Member of',58,'Household Member is',1,NULL,NULL,NULL), + (76,38,8,'b_a',58,'Household Member is',172,'Household Member of',1,NULL,NULL,NULL), + (77,39,7,'a_b',150,'Head of Household for',58,'Head of Household is',0,NULL,NULL,NULL), + (78,39,7,'b_a',58,'Head of Household is',150,'Head of Household for',0,NULL,NULL,NULL), + (79,40,2,'a_b',62,'Spouse of',150,'Spouse of',0,NULL,NULL,NULL), + (80,40,2,'b_a',150,'Spouse of',62,'Spouse of',0,NULL,NULL,NULL), + (81,41,1,'a_b',3,'Child of',106,'Parent of',1,NULL,NULL,NULL), + (82,41,1,'b_a',106,'Parent of',3,'Child of',1,NULL,NULL,NULL), + (83,42,1,'a_b',22,'Child of',106,'Parent of',1,NULL,NULL,NULL), + (84,42,1,'b_a',106,'Parent of',22,'Child of',1,NULL,NULL,NULL), + (85,43,1,'a_b',3,'Child of',11,'Parent of',1,NULL,NULL,NULL), + (86,43,1,'b_a',11,'Parent of',3,'Child of',1,NULL,NULL,NULL), + (87,44,1,'a_b',22,'Child of',11,'Parent of',1,NULL,NULL,NULL), + (88,44,1,'b_a',11,'Parent of',22,'Child of',1,NULL,NULL,NULL), + (89,45,4,'a_b',22,'Sibling of',3,'Sibling of',1,NULL,NULL,NULL), + (90,45,4,'b_a',3,'Sibling of',22,'Sibling of',1,NULL,NULL,NULL), + (91,46,8,'a_b',11,'Household Member of',167,'Household Member is',1,NULL,NULL,NULL), + (92,46,8,'b_a',167,'Household Member is',11,'Household Member of',1,NULL,NULL,NULL), + (93,47,8,'a_b',3,'Household Member of',167,'Household Member is',1,NULL,NULL,NULL), + (94,47,8,'b_a',167,'Household Member is',3,'Household Member of',1,NULL,NULL,NULL), + (95,48,8,'a_b',22,'Household Member of',167,'Household Member is',1,NULL,NULL,NULL), + (96,48,8,'b_a',167,'Household Member is',22,'Household Member of',1,NULL,NULL,NULL), + (97,49,7,'a_b',106,'Head of Household for',167,'Head of Household is',1,NULL,NULL,NULL), + (98,49,7,'b_a',167,'Head of Household is',106,'Head of Household for',1,NULL,NULL,NULL), + (99,50,2,'a_b',11,'Spouse of',106,'Spouse of',1,NULL,NULL,NULL), + (100,50,2,'b_a',106,'Spouse of',11,'Spouse of',1,NULL,NULL,NULL), + (101,51,1,'a_b',124,'Child of',131,'Parent of',1,NULL,NULL,NULL), + (102,51,1,'b_a',131,'Parent of',124,'Child of',1,NULL,NULL,NULL), + (103,52,1,'a_b',9,'Child of',131,'Parent of',1,NULL,NULL,NULL), + (104,52,1,'b_a',131,'Parent of',9,'Child of',1,NULL,NULL,NULL), + (105,53,1,'a_b',124,'Child of',38,'Parent of',1,NULL,NULL,NULL), + (106,53,1,'b_a',38,'Parent of',124,'Child of',1,NULL,NULL,NULL), + (107,54,1,'a_b',9,'Child of',38,'Parent of',1,NULL,NULL,NULL), + (108,54,1,'b_a',38,'Parent of',9,'Child of',1,NULL,NULL,NULL), + (109,55,4,'a_b',9,'Sibling of',124,'Sibling of',1,NULL,NULL,NULL), + (110,55,4,'b_a',124,'Sibling of',9,'Sibling of',1,NULL,NULL,NULL), + (111,56,8,'a_b',38,'Household Member of',164,'Household Member is',1,NULL,NULL,NULL), + (112,56,8,'b_a',164,'Household Member is',38,'Household Member of',1,NULL,NULL,NULL), + (113,57,8,'a_b',124,'Household Member of',164,'Household Member is',1,NULL,NULL,NULL), + (114,57,8,'b_a',164,'Household Member is',124,'Household Member of',1,NULL,NULL,NULL), + (115,58,8,'a_b',9,'Household Member of',164,'Household Member is',1,NULL,NULL,NULL), + (116,58,8,'b_a',164,'Household Member is',9,'Household Member of',1,NULL,NULL,NULL), + (117,59,7,'a_b',131,'Head of Household for',164,'Head of Household is',0,NULL,NULL,NULL), + (118,59,7,'b_a',164,'Head of Household is',131,'Head of Household for',0,NULL,NULL,NULL), + (119,60,2,'a_b',38,'Spouse of',131,'Spouse of',0,NULL,NULL,NULL), + (120,60,2,'b_a',131,'Spouse of',38,'Spouse of',0,NULL,NULL,NULL), + (121,61,1,'a_b',127,'Child of',100,'Parent of',1,NULL,NULL,NULL), + (122,61,1,'b_a',100,'Parent of',127,'Child of',1,NULL,NULL,NULL), + (123,62,1,'a_b',7,'Child of',100,'Parent of',1,NULL,NULL,NULL), + (124,62,1,'b_a',100,'Parent of',7,'Child of',1,NULL,NULL,NULL), + (125,63,1,'a_b',127,'Child of',187,'Parent of',1,NULL,NULL,NULL), + (126,63,1,'b_a',187,'Parent of',127,'Child of',1,NULL,NULL,NULL), + (127,64,1,'a_b',7,'Child of',187,'Parent of',1,NULL,NULL,NULL), + (128,64,1,'b_a',187,'Parent of',7,'Child of',1,NULL,NULL,NULL), + (129,65,4,'a_b',7,'Sibling of',127,'Sibling of',1,NULL,NULL,NULL), + (130,65,4,'b_a',127,'Sibling of',7,'Sibling of',1,NULL,NULL,NULL), + (131,66,8,'a_b',187,'Household Member of',48,'Household Member is',1,NULL,NULL,NULL), + (132,66,8,'b_a',48,'Household Member is',187,'Household Member of',1,NULL,NULL,NULL), + (133,67,8,'a_b',127,'Household Member of',48,'Household Member is',1,NULL,NULL,NULL), + (134,67,8,'b_a',48,'Household Member is',127,'Household Member of',1,NULL,NULL,NULL), + (135,68,8,'a_b',7,'Household Member of',48,'Household Member is',1,NULL,NULL,NULL), + (136,68,8,'b_a',48,'Household Member is',7,'Household Member of',1,NULL,NULL,NULL), + (137,69,7,'a_b',100,'Head of Household for',48,'Head of Household is',0,NULL,NULL,NULL), + (138,69,7,'b_a',48,'Head of Household is',100,'Head of Household for',0,NULL,NULL,NULL), + (139,70,2,'a_b',187,'Spouse of',100,'Spouse of',0,NULL,NULL,NULL), + (140,70,2,'b_a',100,'Spouse of',187,'Spouse of',0,NULL,NULL,NULL), + (141,71,1,'a_b',15,'Child of',26,'Parent of',1,NULL,NULL,NULL), + (142,71,1,'b_a',26,'Parent of',15,'Child of',1,NULL,NULL,NULL), + (143,72,1,'a_b',19,'Child of',26,'Parent of',1,NULL,NULL,NULL), + (144,72,1,'b_a',26,'Parent of',19,'Child of',1,NULL,NULL,NULL), + (145,73,1,'a_b',15,'Child of',91,'Parent of',1,NULL,NULL,NULL), + (146,73,1,'b_a',91,'Parent of',15,'Child of',1,NULL,NULL,NULL), + (147,74,1,'a_b',19,'Child of',91,'Parent of',1,NULL,NULL,NULL), + (148,74,1,'b_a',91,'Parent of',19,'Child of',1,NULL,NULL,NULL), + (149,75,4,'a_b',19,'Sibling of',15,'Sibling of',1,NULL,NULL,NULL), + (150,75,4,'b_a',15,'Sibling of',19,'Sibling of',1,NULL,NULL,NULL), + (151,76,8,'a_b',91,'Household Member of',80,'Household Member is',1,NULL,NULL,NULL), + (152,76,8,'b_a',80,'Household Member is',91,'Household Member of',1,NULL,NULL,NULL), + (153,77,8,'a_b',15,'Household Member of',80,'Household Member is',1,NULL,NULL,NULL), + (154,77,8,'b_a',80,'Household Member is',15,'Household Member of',1,NULL,NULL,NULL), + (155,78,8,'a_b',19,'Household Member of',80,'Household Member is',1,NULL,NULL,NULL), + (156,78,8,'b_a',80,'Household Member is',19,'Household Member of',1,NULL,NULL,NULL), + (157,79,7,'a_b',26,'Head of Household for',80,'Head of Household is',0,NULL,NULL,NULL), + (158,79,7,'b_a',80,'Head of Household is',26,'Head of Household for',0,NULL,NULL,NULL), + (159,80,2,'a_b',91,'Spouse of',26,'Spouse of',0,NULL,NULL,NULL), + (160,80,2,'b_a',26,'Spouse of',91,'Spouse of',0,NULL,NULL,NULL), + (161,81,1,'a_b',20,'Child of',76,'Parent of',1,NULL,NULL,NULL), + (162,81,1,'b_a',76,'Parent of',20,'Child of',1,NULL,NULL,NULL), + (163,82,1,'a_b',191,'Child of',76,'Parent of',1,NULL,NULL,NULL), + (164,82,1,'b_a',76,'Parent of',191,'Child of',1,NULL,NULL,NULL), + (165,83,1,'a_b',20,'Child of',109,'Parent of',1,NULL,NULL,NULL), + (166,83,1,'b_a',109,'Parent of',20,'Child of',1,NULL,NULL,NULL), + (167,84,1,'a_b',191,'Child of',109,'Parent of',1,NULL,NULL,NULL), + (168,84,1,'b_a',109,'Parent of',191,'Child of',1,NULL,NULL,NULL), + (169,85,4,'a_b',191,'Sibling of',20,'Sibling of',1,NULL,NULL,NULL), + (170,85,4,'b_a',20,'Sibling of',191,'Sibling of',1,NULL,NULL,NULL), + (171,86,8,'a_b',109,'Household Member of',156,'Household Member is',1,NULL,NULL,NULL), + (172,86,8,'b_a',156,'Household Member is',109,'Household Member of',1,NULL,NULL,NULL), + (173,87,8,'a_b',20,'Household Member of',156,'Household Member is',1,NULL,NULL,NULL), + (174,87,8,'b_a',156,'Household Member is',20,'Household Member of',1,NULL,NULL,NULL), + (175,88,8,'a_b',191,'Household Member of',156,'Household Member is',1,NULL,NULL,NULL), + (176,88,8,'b_a',156,'Household Member is',191,'Household Member of',1,NULL,NULL,NULL), + (177,89,7,'a_b',76,'Head of Household for',156,'Head of Household is',1,NULL,NULL,NULL), + (178,89,7,'b_a',156,'Head of Household is',76,'Head of Household for',1,NULL,NULL,NULL), + (179,90,2,'a_b',109,'Spouse of',76,'Spouse of',1,NULL,NULL,NULL), + (180,90,2,'b_a',76,'Spouse of',109,'Spouse of',1,NULL,NULL,NULL), + (181,91,1,'a_b',29,'Child of',148,'Parent of',1,NULL,NULL,NULL), + (182,91,1,'b_a',148,'Parent of',29,'Child of',1,NULL,NULL,NULL), + (183,92,1,'a_b',197,'Child of',148,'Parent of',1,NULL,NULL,NULL), + (184,92,1,'b_a',148,'Parent of',197,'Child of',1,NULL,NULL,NULL), + (185,93,1,'a_b',29,'Child of',152,'Parent of',1,NULL,NULL,NULL), + (186,93,1,'b_a',152,'Parent of',29,'Child of',1,NULL,NULL,NULL), + (187,94,1,'a_b',197,'Child of',152,'Parent of',1,NULL,NULL,NULL), + (188,94,1,'b_a',152,'Parent of',197,'Child of',1,NULL,NULL,NULL), + (189,95,4,'a_b',197,'Sibling of',29,'Sibling of',1,NULL,NULL,NULL), + (190,95,4,'b_a',29,'Sibling of',197,'Sibling of',1,NULL,NULL,NULL), + (191,96,8,'a_b',152,'Household Member of',56,'Household Member is',1,NULL,NULL,NULL), + (192,96,8,'b_a',56,'Household Member is',152,'Household Member of',1,NULL,NULL,NULL), + (193,97,8,'a_b',29,'Household Member of',56,'Household Member is',1,NULL,NULL,NULL), + (194,97,8,'b_a',56,'Household Member is',29,'Household Member of',1,NULL,NULL,NULL), + (195,98,8,'a_b',197,'Household Member of',56,'Household Member is',1,NULL,NULL,NULL), + (196,98,8,'b_a',56,'Household Member is',197,'Household Member of',1,NULL,NULL,NULL), + (197,99,7,'a_b',148,'Head of Household for',56,'Head of Household is',0,NULL,NULL,NULL), + (198,99,7,'b_a',56,'Head of Household is',148,'Head of Household for',0,NULL,NULL,NULL), + (199,100,2,'a_b',152,'Spouse of',148,'Spouse of',0,NULL,NULL,NULL), + (200,100,2,'b_a',148,'Spouse of',152,'Spouse of',0,NULL,NULL,NULL), + (201,101,1,'a_b',70,'Child of',142,'Parent of',1,NULL,NULL,NULL), + (202,101,1,'b_a',142,'Parent of',70,'Child of',1,NULL,NULL,NULL), + (203,102,1,'a_b',55,'Child of',142,'Parent of',1,NULL,NULL,NULL), + (204,102,1,'b_a',142,'Parent of',55,'Child of',1,NULL,NULL,NULL), + (205,103,1,'a_b',70,'Child of',114,'Parent of',1,NULL,NULL,NULL), + (206,103,1,'b_a',114,'Parent of',70,'Child of',1,NULL,NULL,NULL), + (207,104,1,'a_b',55,'Child of',114,'Parent of',1,NULL,NULL,NULL), + (208,104,1,'b_a',114,'Parent of',55,'Child of',1,NULL,NULL,NULL), + (209,105,4,'a_b',55,'Sibling of',70,'Sibling of',1,NULL,NULL,NULL), + (210,105,4,'b_a',70,'Sibling of',55,'Sibling of',1,NULL,NULL,NULL), + (211,106,8,'a_b',114,'Household Member of',179,'Household Member is',1,NULL,NULL,NULL), + (212,106,8,'b_a',179,'Household Member is',114,'Household Member of',1,NULL,NULL,NULL), + (213,107,8,'a_b',70,'Household Member of',179,'Household Member is',1,NULL,NULL,NULL), + (214,107,8,'b_a',179,'Household Member is',70,'Household Member of',1,NULL,NULL,NULL), + (215,108,8,'a_b',55,'Household Member of',179,'Household Member is',1,NULL,NULL,NULL), + (216,108,8,'b_a',179,'Household Member is',55,'Household Member of',1,NULL,NULL,NULL), + (217,109,7,'a_b',142,'Head of Household for',179,'Head of Household is',1,NULL,NULL,NULL), + (218,109,7,'b_a',179,'Head of Household is',142,'Head of Household for',1,NULL,NULL,NULL), + (219,110,2,'a_b',114,'Spouse of',142,'Spouse of',1,NULL,NULL,NULL), + (220,110,2,'b_a',142,'Spouse of',114,'Spouse of',1,NULL,NULL,NULL), + (221,111,1,'a_b',44,'Child of',67,'Parent of',1,NULL,NULL,NULL), + (222,111,1,'b_a',67,'Parent of',44,'Child of',1,NULL,NULL,NULL), + (223,112,1,'a_b',33,'Child of',67,'Parent of',1,NULL,NULL,NULL), + (224,112,1,'b_a',67,'Parent of',33,'Child of',1,NULL,NULL,NULL), + (225,113,1,'a_b',44,'Child of',96,'Parent of',1,NULL,NULL,NULL), + (226,113,1,'b_a',96,'Parent of',44,'Child of',1,NULL,NULL,NULL), + (227,114,1,'a_b',33,'Child of',96,'Parent of',1,NULL,NULL,NULL), + (228,114,1,'b_a',96,'Parent of',33,'Child of',1,NULL,NULL,NULL), + (229,115,4,'a_b',33,'Sibling of',44,'Sibling of',1,NULL,NULL,NULL), + (230,115,4,'b_a',44,'Sibling of',33,'Sibling of',1,NULL,NULL,NULL), + (231,116,8,'a_b',96,'Household Member of',24,'Household Member is',1,NULL,NULL,NULL), + (232,116,8,'b_a',24,'Household Member is',96,'Household Member of',1,NULL,NULL,NULL), + (233,117,8,'a_b',44,'Household Member of',24,'Household Member is',1,NULL,NULL,NULL), + (234,117,8,'b_a',24,'Household Member is',44,'Household Member of',1,NULL,NULL,NULL), + (235,118,8,'a_b',33,'Household Member of',24,'Household Member is',1,NULL,NULL,NULL), + (236,118,8,'b_a',24,'Household Member is',33,'Household Member of',1,NULL,NULL,NULL), + (237,119,7,'a_b',67,'Head of Household for',24,'Head of Household is',1,NULL,NULL,NULL), + (238,119,7,'b_a',24,'Head of Household is',67,'Head of Household for',1,NULL,NULL,NULL), + (239,120,2,'a_b',96,'Spouse of',67,'Spouse of',1,NULL,NULL,NULL), + (240,120,2,'b_a',67,'Spouse of',96,'Spouse of',1,NULL,NULL,NULL), + (241,121,1,'a_b',5,'Child of',111,'Parent of',1,NULL,NULL,NULL), + (242,121,1,'b_a',111,'Parent of',5,'Child of',1,NULL,NULL,NULL), + (243,122,1,'a_b',97,'Child of',111,'Parent of',1,NULL,NULL,NULL), + (244,122,1,'b_a',111,'Parent of',97,'Child of',1,NULL,NULL,NULL), + (245,123,1,'a_b',5,'Child of',135,'Parent of',1,NULL,NULL,NULL), + (246,123,1,'b_a',135,'Parent of',5,'Child of',1,NULL,NULL,NULL), + (247,124,1,'a_b',97,'Child of',135,'Parent of',1,NULL,NULL,NULL), + (248,124,1,'b_a',135,'Parent of',97,'Child of',1,NULL,NULL,NULL), + (249,125,4,'a_b',97,'Sibling of',5,'Sibling of',1,NULL,NULL,NULL), + (250,125,4,'b_a',5,'Sibling of',97,'Sibling of',1,NULL,NULL,NULL), + (251,126,8,'a_b',135,'Household Member of',66,'Household Member is',1,NULL,NULL,NULL), + (252,126,8,'b_a',66,'Household Member is',135,'Household Member of',1,NULL,NULL,NULL), + (253,127,8,'a_b',5,'Household Member of',66,'Household Member is',1,NULL,NULL,NULL), + (254,127,8,'b_a',66,'Household Member is',5,'Household Member of',1,NULL,NULL,NULL), + (255,128,8,'a_b',97,'Household Member of',66,'Household Member is',1,NULL,NULL,NULL), + (256,128,8,'b_a',66,'Household Member is',97,'Household Member of',1,NULL,NULL,NULL), + (257,129,7,'a_b',111,'Head of Household for',66,'Head of Household is',0,NULL,NULL,NULL), + (258,129,7,'b_a',66,'Head of Household is',111,'Head of Household for',0,NULL,NULL,NULL), + (259,130,2,'a_b',135,'Spouse of',111,'Spouse of',0,NULL,NULL,NULL), + (260,130,2,'b_a',111,'Spouse of',135,'Spouse of',0,NULL,NULL,NULL), + (261,131,1,'a_b',98,'Child of',104,'Parent of',1,NULL,NULL,NULL), + (262,131,1,'b_a',104,'Parent of',98,'Child of',1,NULL,NULL,NULL), + (263,132,1,'a_b',102,'Child of',104,'Parent of',1,NULL,NULL,NULL), + (264,132,1,'b_a',104,'Parent of',102,'Child of',1,NULL,NULL,NULL), + (265,133,1,'a_b',98,'Child of',190,'Parent of',1,NULL,NULL,NULL), + (266,133,1,'b_a',190,'Parent of',98,'Child of',1,NULL,NULL,NULL), + (267,134,1,'a_b',102,'Child of',190,'Parent of',1,NULL,NULL,NULL), + (268,134,1,'b_a',190,'Parent of',102,'Child of',1,NULL,NULL,NULL), + (269,135,4,'a_b',102,'Sibling of',98,'Sibling of',1,NULL,NULL,NULL), + (270,135,4,'b_a',98,'Sibling of',102,'Sibling of',1,NULL,NULL,NULL), + (271,136,8,'a_b',190,'Household Member of',34,'Household Member is',1,NULL,NULL,NULL), + (272,136,8,'b_a',34,'Household Member is',190,'Household Member of',1,NULL,NULL,NULL), + (273,137,8,'a_b',98,'Household Member of',34,'Household Member is',1,NULL,NULL,NULL), + (274,137,8,'b_a',34,'Household Member is',98,'Household Member of',1,NULL,NULL,NULL), + (275,138,8,'a_b',102,'Household Member of',34,'Household Member is',1,NULL,NULL,NULL), + (276,138,8,'b_a',34,'Household Member is',102,'Household Member of',1,NULL,NULL,NULL), + (277,139,7,'a_b',104,'Head of Household for',34,'Head of Household is',0,NULL,NULL,NULL), + (278,139,7,'b_a',34,'Head of Household is',104,'Head of Household for',0,NULL,NULL,NULL), + (279,140,2,'a_b',190,'Spouse of',104,'Spouse of',0,NULL,NULL,NULL), + (280,140,2,'b_a',104,'Spouse of',190,'Spouse of',0,NULL,NULL,NULL), + (281,141,1,'a_b',61,'Child of',32,'Parent of',1,NULL,NULL,NULL), + (282,141,1,'b_a',32,'Parent of',61,'Child of',1,NULL,NULL,NULL), + (283,142,1,'a_b',180,'Child of',32,'Parent of',1,NULL,NULL,NULL), + (284,142,1,'b_a',32,'Parent of',180,'Child of',1,NULL,NULL,NULL), + (285,143,1,'a_b',61,'Child of',84,'Parent of',1,NULL,NULL,NULL), + (286,143,1,'b_a',84,'Parent of',61,'Child of',1,NULL,NULL,NULL), + (287,144,1,'a_b',180,'Child of',84,'Parent of',1,NULL,NULL,NULL), + (288,144,1,'b_a',84,'Parent of',180,'Child of',1,NULL,NULL,NULL), + (289,145,4,'a_b',180,'Sibling of',61,'Sibling of',1,NULL,NULL,NULL), + (290,145,4,'b_a',61,'Sibling of',180,'Sibling of',1,NULL,NULL,NULL), + (291,146,8,'a_b',84,'Household Member of',162,'Household Member is',1,NULL,NULL,NULL), + (292,146,8,'b_a',162,'Household Member is',84,'Household Member of',1,NULL,NULL,NULL), + (293,147,8,'a_b',61,'Household Member of',162,'Household Member is',1,NULL,NULL,NULL), + (294,147,8,'b_a',162,'Household Member is',61,'Household Member of',1,NULL,NULL,NULL), + (295,148,8,'a_b',180,'Household Member of',162,'Household Member is',1,NULL,NULL,NULL), + (296,148,8,'b_a',162,'Household Member is',180,'Household Member of',1,NULL,NULL,NULL), + (297,149,7,'a_b',32,'Head of Household for',162,'Head of Household is',1,NULL,NULL,NULL), + (298,149,7,'b_a',162,'Head of Household is',32,'Head of Household for',1,NULL,NULL,NULL), + (299,150,2,'a_b',84,'Spouse of',32,'Spouse of',1,NULL,NULL,NULL), + (300,150,2,'b_a',32,'Spouse of',84,'Spouse of',1,NULL,NULL,NULL), + (301,151,1,'a_b',49,'Child of',153,'Parent of',1,NULL,NULL,NULL), + (302,151,1,'b_a',153,'Parent of',49,'Child of',1,NULL,NULL,NULL), + (303,152,1,'a_b',28,'Child of',153,'Parent of',1,NULL,NULL,NULL), + (304,152,1,'b_a',153,'Parent of',28,'Child of',1,NULL,NULL,NULL), + (305,153,1,'a_b',49,'Child of',147,'Parent of',1,NULL,NULL,NULL), + (306,153,1,'b_a',147,'Parent of',49,'Child of',1,NULL,NULL,NULL), + (307,154,1,'a_b',28,'Child of',147,'Parent of',1,NULL,NULL,NULL), + (308,154,1,'b_a',147,'Parent of',28,'Child of',1,NULL,NULL,NULL), + (309,155,4,'a_b',28,'Sibling of',49,'Sibling of',1,NULL,NULL,NULL), + (310,155,4,'b_a',49,'Sibling of',28,'Sibling of',1,NULL,NULL,NULL), + (311,156,8,'a_b',147,'Household Member of',200,'Household Member is',1,NULL,NULL,NULL), + (312,156,8,'b_a',200,'Household Member is',147,'Household Member of',1,NULL,NULL,NULL), + (313,157,8,'a_b',49,'Household Member of',200,'Household Member is',1,NULL,NULL,NULL), + (314,157,8,'b_a',200,'Household Member is',49,'Household Member of',1,NULL,NULL,NULL), + (315,158,8,'a_b',28,'Household Member of',200,'Household Member is',1,NULL,NULL,NULL), + (316,158,8,'b_a',200,'Household Member is',28,'Household Member of',1,NULL,NULL,NULL), + (317,159,7,'a_b',153,'Head of Household for',200,'Head of Household is',1,NULL,NULL,NULL), + (318,159,7,'b_a',200,'Head of Household is',153,'Head of Household for',1,NULL,NULL,NULL), + (319,160,2,'a_b',147,'Spouse of',153,'Spouse of',1,NULL,NULL,NULL), + (320,160,2,'b_a',153,'Spouse of',147,'Spouse of',1,NULL,NULL,NULL), + (321,161,1,'a_b',117,'Child of',121,'Parent of',1,NULL,NULL,NULL), + (322,161,1,'b_a',121,'Parent of',117,'Child of',1,NULL,NULL,NULL), + (323,162,1,'a_b',16,'Child of',121,'Parent of',1,NULL,NULL,NULL), + (324,162,1,'b_a',121,'Parent of',16,'Child of',1,NULL,NULL,NULL), + (325,163,1,'a_b',117,'Child of',18,'Parent of',1,NULL,NULL,NULL), + (326,163,1,'b_a',18,'Parent of',117,'Child of',1,NULL,NULL,NULL), + (327,164,1,'a_b',16,'Child of',18,'Parent of',1,NULL,NULL,NULL), + (328,164,1,'b_a',18,'Parent of',16,'Child of',1,NULL,NULL,NULL), + (329,165,4,'a_b',16,'Sibling of',117,'Sibling of',1,NULL,NULL,NULL), + (330,165,4,'b_a',117,'Sibling of',16,'Sibling of',1,NULL,NULL,NULL), + (331,166,8,'a_b',18,'Household Member of',25,'Household Member is',1,NULL,NULL,NULL), + (332,166,8,'b_a',25,'Household Member is',18,'Household Member of',1,NULL,NULL,NULL), + (333,167,8,'a_b',117,'Household Member of',25,'Household Member is',1,NULL,NULL,NULL), + (334,167,8,'b_a',25,'Household Member is',117,'Household Member of',1,NULL,NULL,NULL), + (335,168,8,'a_b',16,'Household Member of',25,'Household Member is',1,NULL,NULL,NULL), + (336,168,8,'b_a',25,'Household Member is',16,'Household Member of',1,NULL,NULL,NULL), + (337,169,7,'a_b',121,'Head of Household for',25,'Head of Household is',1,NULL,NULL,NULL), + (338,169,7,'b_a',25,'Head of Household is',121,'Head of Household for',1,NULL,NULL,NULL), + (339,170,2,'a_b',18,'Spouse of',121,'Spouse of',1,NULL,NULL,NULL), + (340,170,2,'b_a',121,'Spouse of',18,'Spouse of',1,NULL,NULL,NULL), + (341,171,1,'a_b',110,'Child of',112,'Parent of',1,NULL,NULL,NULL), + (342,171,1,'b_a',112,'Parent of',110,'Child of',1,NULL,NULL,NULL), + (343,172,1,'a_b',149,'Child of',112,'Parent of',1,NULL,NULL,NULL), + (344,172,1,'b_a',112,'Parent of',149,'Child of',1,NULL,NULL,NULL), + (345,173,1,'a_b',110,'Child of',183,'Parent of',1,NULL,NULL,NULL), + (346,173,1,'b_a',183,'Parent of',110,'Child of',1,NULL,NULL,NULL), + (347,174,1,'a_b',149,'Child of',183,'Parent of',1,NULL,NULL,NULL), + (348,174,1,'b_a',183,'Parent of',149,'Child of',1,NULL,NULL,NULL), + (349,175,4,'a_b',149,'Sibling of',110,'Sibling of',1,NULL,NULL,NULL), + (350,175,4,'b_a',110,'Sibling of',149,'Sibling of',1,NULL,NULL,NULL), + (351,176,8,'a_b',183,'Household Member of',119,'Household Member is',1,NULL,NULL,NULL), + (352,176,8,'b_a',119,'Household Member is',183,'Household Member of',1,NULL,NULL,NULL), + (353,177,8,'a_b',110,'Household Member of',119,'Household Member is',1,NULL,NULL,NULL), + (354,177,8,'b_a',119,'Household Member is',110,'Household Member of',1,NULL,NULL,NULL), + (355,178,8,'a_b',149,'Household Member of',119,'Household Member is',1,NULL,NULL,NULL), + (356,178,8,'b_a',119,'Household Member is',149,'Household Member of',1,NULL,NULL,NULL), + (357,179,7,'a_b',112,'Head of Household for',119,'Head of Household is',1,NULL,NULL,NULL), + (358,179,7,'b_a',119,'Head of Household is',112,'Head of Household for',1,NULL,NULL,NULL), + (359,180,2,'a_b',183,'Spouse of',112,'Spouse of',1,NULL,NULL,NULL), + (360,180,2,'b_a',112,'Spouse of',183,'Spouse of',1,NULL,NULL,NULL), + (361,181,1,'a_b',169,'Child of',68,'Parent of',1,NULL,NULL,NULL), + (362,181,1,'b_a',68,'Parent of',169,'Child of',1,NULL,NULL,NULL), + (363,182,1,'a_b',88,'Child of',68,'Parent of',1,NULL,NULL,NULL), + (364,182,1,'b_a',68,'Parent of',88,'Child of',1,NULL,NULL,NULL), + (365,183,1,'a_b',169,'Child of',42,'Parent of',1,NULL,NULL,NULL), + (366,183,1,'b_a',42,'Parent of',169,'Child of',1,NULL,NULL,NULL), + (367,184,1,'a_b',88,'Child of',42,'Parent of',1,NULL,NULL,NULL), + (368,184,1,'b_a',42,'Parent of',88,'Child of',1,NULL,NULL,NULL), + (369,185,4,'a_b',88,'Sibling of',169,'Sibling of',1,NULL,NULL,NULL), + (370,185,4,'b_a',169,'Sibling of',88,'Sibling of',1,NULL,NULL,NULL), + (371,186,8,'a_b',42,'Household Member of',166,'Household Member is',1,NULL,NULL,NULL), + (372,186,8,'b_a',166,'Household Member is',42,'Household Member of',1,NULL,NULL,NULL), + (373,187,8,'a_b',169,'Household Member of',166,'Household Member is',1,NULL,NULL,NULL), + (374,187,8,'b_a',166,'Household Member is',169,'Household Member of',1,NULL,NULL,NULL), + (375,188,8,'a_b',88,'Household Member of',166,'Household Member is',1,NULL,NULL,NULL), + (376,188,8,'b_a',166,'Household Member is',88,'Household Member of',1,NULL,NULL,NULL), + (377,189,7,'a_b',68,'Head of Household for',166,'Head of Household is',0,NULL,NULL,NULL), + (378,189,7,'b_a',166,'Head of Household is',68,'Head of Household for',0,NULL,NULL,NULL), + (379,190,2,'a_b',42,'Spouse of',68,'Spouse of',0,NULL,NULL,NULL), + (380,190,2,'b_a',68,'Spouse of',42,'Spouse of',0,NULL,NULL,NULL), + (381,191,1,'a_b',151,'Child of',57,'Parent of',1,NULL,NULL,NULL), + (382,191,1,'b_a',57,'Parent of',151,'Child of',1,NULL,NULL,NULL), + (383,192,1,'a_b',194,'Child of',57,'Parent of',1,NULL,NULL,NULL), + (384,192,1,'b_a',57,'Parent of',194,'Child of',1,NULL,NULL,NULL), + (385,193,1,'a_b',151,'Child of',10,'Parent of',1,NULL,NULL,NULL), + (386,193,1,'b_a',10,'Parent of',151,'Child of',1,NULL,NULL,NULL), + (387,194,1,'a_b',194,'Child of',10,'Parent of',1,NULL,NULL,NULL), + (388,194,1,'b_a',10,'Parent of',194,'Child of',1,NULL,NULL,NULL), + (389,195,4,'a_b',194,'Sibling of',151,'Sibling of',1,NULL,NULL,NULL), + (390,195,4,'b_a',151,'Sibling of',194,'Sibling of',1,NULL,NULL,NULL), + (391,196,8,'a_b',10,'Household Member of',65,'Household Member is',1,NULL,NULL,NULL), + (392,196,8,'b_a',65,'Household Member is',10,'Household Member of',1,NULL,NULL,NULL), + (393,197,8,'a_b',151,'Household Member of',65,'Household Member is',1,NULL,NULL,NULL), + (394,197,8,'b_a',65,'Household Member is',151,'Household Member of',1,NULL,NULL,NULL), + (395,198,8,'a_b',194,'Household Member of',65,'Household Member is',1,NULL,NULL,NULL), + (396,198,8,'b_a',65,'Household Member is',194,'Household Member of',1,NULL,NULL,NULL), + (397,199,7,'a_b',57,'Head of Household for',65,'Head of Household is',1,NULL,NULL,NULL), + (398,199,7,'b_a',65,'Head of Household is',57,'Head of Household for',1,NULL,NULL,NULL), + (399,200,2,'a_b',10,'Spouse of',57,'Spouse of',1,NULL,NULL,NULL), + (400,200,2,'b_a',57,'Spouse of',10,'Spouse of',1,NULL,NULL,NULL), + (401,201,5,'a_b',10,'Employee of',17,'Employer of',1,NULL,NULL,NULL), + (402,201,5,'b_a',17,'Employer of',10,'Employee of',1,NULL,NULL,NULL), + (403,202,5,'a_b',142,'Employee of',77,'Employer of',1,NULL,NULL,NULL), + (404,202,5,'b_a',77,'Employer of',142,'Employee of',1,NULL,NULL,NULL), + (405,203,5,'a_b',95,'Employee of',87,'Employer of',1,NULL,NULL,NULL), + (406,203,5,'b_a',87,'Employer of',95,'Employee of',1,NULL,NULL,NULL), + (407,204,5,'a_b',115,'Employee of',93,'Employer of',1,NULL,NULL,NULL), + (408,204,5,'b_a',93,'Employer of',115,'Employee of',1,NULL,NULL,NULL), + (409,205,5,'a_b',83,'Employee of',123,'Employer of',1,NULL,NULL,NULL), + (410,205,5,'b_a',123,'Employer of',83,'Employee of',1,NULL,NULL,NULL), + (411,206,5,'a_b',15,'Employee of',126,'Employer of',1,NULL,NULL,NULL), + (412,206,5,'b_a',126,'Employer of',15,'Employee of',1,NULL,NULL,NULL), + (413,207,5,'a_b',120,'Employee of',128,'Employer of',1,NULL,NULL,NULL), + (414,207,5,'b_a',128,'Employer of',120,'Employee of',1,NULL,NULL,NULL), + (415,208,5,'a_b',185,'Employee of',140,'Employer of',1,NULL,NULL,NULL), + (416,208,5,'b_a',140,'Employer of',185,'Employee of',1,NULL,NULL,NULL), + (417,209,5,'a_b',45,'Employee of',146,'Employer of',1,NULL,NULL,NULL), + (418,209,5,'b_a',146,'Employer of',45,'Employee of',1,NULL,NULL,NULL), + (419,210,5,'a_b',183,'Employee of',160,'Employer of',1,NULL,NULL,NULL), + (420,210,5,'b_a',160,'Employer of',183,'Employee of',1,NULL,NULL,NULL), + (421,211,5,'a_b',3,'Employee of',163,'Employer of',1,NULL,NULL,NULL), + (422,211,5,'b_a',163,'Employer of',3,'Employee of',1,NULL,NULL,NULL), + (423,212,5,'a_b',47,'Employee of',184,'Employer of',1,NULL,NULL,NULL), + (424,212,5,'b_a',184,'Employer of',47,'Employee of',1,NULL,NULL,NULL), + (425,213,5,'a_b',159,'Employee of',188,'Employer of',1,NULL,NULL,NULL), + (426,213,5,'b_a',188,'Employer of',159,'Employee of',1,NULL,NULL,NULL), + (427,214,5,'a_b',182,'Employee of',195,'Employer of',1,NULL,NULL,NULL), + (428,214,5,'b_a',195,'Employer of',182,'Employee of',1,NULL,NULL,NULL), + (429,215,5,'a_b',193,'Employee of',196,'Employer of',1,NULL,NULL,NULL), + (430,215,5,'b_a',196,'Employer of',193,'Employee of',1,NULL,NULL,NULL); /*!40000 ALTER TABLE `civicrm_relationship_cache` ENABLE KEYS */; UNLOCK TABLES; @@ -10086,8 +10072,8 @@ INSERT INTO `civicrm_state_province` (`id`, `name`, `abbreviation`, `country_id` (3519,'TelÅ¡ių Apskritis','TE',1125,1), (3520,'Utenos Apskritis','UT',1125,1), (3521,'Vilniaus Apskritis','VL',1125,1), - (3522,'Diekirch','D',1126,1), - (3523,'GreveNmacher','G',1126,1), + (3522,'Diekirch','DI',1126,1), + (3523,'Grevenmacher','GR',1126,1), (3550,'Daugavpils','DGV',1119,1), (3551,'Jelgava','JEL',1119,1), (3552,'JÅ«rmala','JUR',1119,1), @@ -11825,7 +11811,7 @@ INSERT INTO `civicrm_state_province` (`id`, `name`, `abbreviation`, `country_id` (10061,'Wuzhong','WZ',1045,1), (10062,'Guyuan','GY',1045,1), (10063,'Zhongwei','ZW',1045,1), - (10064,'Luxembourg','L',1126,1), + (10064,'Luxembourg','LU',1126,1), (10065,'Aizkraukles novads','002',1119,1), (10066,'Jaunjelgavas novads','038',1119,1), (10067,'Pļaviņu novads','072',1119,1), @@ -12169,7 +12155,16 @@ INSERT INTO `civicrm_state_province` (`id`, `name`, `abbreviation`, `country_id` (10405,'Southampton','SOU',1023,1), (10406,'Warwick','WAR',1023,1), (10407,'DÄdra and Nagar Haveli and DamÄn and Diu','DH',1101,1), - (10408,'LadÄkh','LA',1101,1); + (10408,'LadÄkh','LA',1101,1), + (10409,'Capellen','CA',1126,1), + (10410,'Clervaux','CL',1126,1), + (10411,'Echternach','EC',1126,1), + (10412,'Esch-sur-Alzette','ES',1126,1), + (10413,'Mersch','ME',1126,1), + (10414,'Redange-sur-Attert','RD',1126,1), + (10415,'Remich','RM',1126,1), + (10416,'Vianden','VD',1126,1), + (10417,'Wiltz','WI',1126,1); /*!40000 ALTER TABLE `civicrm_state_province` ENABLE KEYS */; UNLOCK TABLES; @@ -12189,90 +12184,90 @@ 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,187,2,'2022-11-09 10:46:42','Email','Added',NULL), - (2,28,2,'2022-08-13 03:22:12','Admin','Added',NULL), - (3,188,2,'2022-02-05 02:21:01','Email','Added',NULL), - (4,95,2,'2022-01-11 17:13:10','Admin','Added',NULL), - (5,88,2,'2022-11-23 12:58:27','Admin','Added',NULL), - (6,6,2,'2022-02-15 19:50:56','Email','Added',NULL), - (7,185,2,'2022-06-18 12:07:08','Admin','Added',NULL), - (8,150,2,'2022-10-02 22:31:56','Admin','Added',NULL), - (9,106,2,'2022-05-11 14:53:04','Admin','Added',NULL), - (10,197,2,'2022-09-20 13:11:30','Email','Added',NULL), - (11,190,2,'2022-05-21 11:02:50','Admin','Added',NULL), - (12,7,2,'2022-09-25 03:15:17','Email','Added',NULL), - (13,111,2,'2022-02-03 03:27:27','Admin','Added',NULL), - (14,31,2,'2022-09-10 02:15:26','Admin','Added',NULL), - (15,131,2,'2022-11-19 14:24:55','Email','Added',NULL), - (16,57,2,'2022-01-22 17:11:39','Email','Added',NULL), - (17,172,2,'2022-11-30 02:09:26','Email','Added',NULL), - (18,84,2,'2022-01-01 08:57:03','Email','Added',NULL), - (19,184,2,'2022-05-11 22:43:32','Email','Added',NULL), - (20,98,2,'2022-02-21 14:37:01','Admin','Added',NULL), - (21,166,2,'2022-06-10 09:55:16','Admin','Added',NULL), - (22,48,2,'2022-11-05 05:50:21','Admin','Added',NULL), - (23,62,2,'2021-12-15 00:59:19','Admin','Added',NULL), - (24,30,2,'2022-05-13 21:49:17','Admin','Added',NULL), - (25,9,2,'2022-07-10 17:21:17','Admin','Added',NULL), - (26,144,2,'2022-08-21 08:42:33','Email','Added',NULL), - (27,23,2,'2022-01-08 09:04:14','Email','Added',NULL), - (28,33,2,'2022-10-28 15:35:32','Email','Added',NULL), - (29,99,2,'2022-04-15 20:22:57','Admin','Added',NULL), - (30,58,2,'2022-08-06 22:26:12','Email','Added',NULL), - (31,147,2,'2022-11-21 03:47:04','Admin','Added',NULL), - (32,82,2,'2022-06-19 03:16:48','Email','Added',NULL), - (33,72,2,'2022-12-01 21:02:10','Admin','Added',NULL), - (34,93,2,'2022-04-02 13:05:34','Admin','Added',NULL), - (35,117,2,'2022-02-03 13:24:33','Admin','Added',NULL), - (36,18,2,'2022-10-23 15:21:31','Email','Added',NULL), - (37,13,2,'2022-04-27 10:56:55','Admin','Added',NULL), - (38,17,2,'2022-12-07 07:56:09','Admin','Added',NULL), - (39,61,2,'2022-01-14 22:30:14','Admin','Added',NULL), - (40,41,2,'2022-09-03 08:04:31','Email','Added',NULL), - (41,90,2,'2022-10-28 00:34:42','Admin','Added',NULL), - (42,195,2,'2021-12-15 13:39:20','Email','Added',NULL), - (43,92,2,'2022-04-10 01:14:17','Email','Added',NULL), - (44,101,2,'2022-07-12 13:58:17','Email','Added',NULL), - (45,155,2,'2021-12-24 19:58:58','Email','Added',NULL), - (46,29,2,'2022-11-15 23:34:26','Email','Added',NULL), - (47,136,2,'2022-07-10 02:28:21','Email','Added',NULL), - (48,128,2,'2022-01-18 20:47:41','Email','Added',NULL), - (49,120,2,'2021-12-26 10:41:41','Email','Added',NULL), - (50,66,2,'2022-08-09 08:04:10','Email','Added',NULL), - (51,91,2,'2022-02-26 08:33:33','Email','Added',NULL), - (52,65,2,'2022-11-28 16:45:18','Admin','Added',NULL), - (53,170,2,'2022-12-02 06:39:34','Email','Added',NULL), - (54,183,2,'2022-06-06 08:51:25','Admin','Added',NULL), - (55,201,2,'2022-10-24 03:49:58','Email','Added',NULL), - (56,75,2,'2022-07-13 22:39:18','Admin','Added',NULL), - (57,52,2,'2022-07-02 18:39:32','Admin','Added',NULL), - (58,47,2,'2022-06-29 01:49:36','Admin','Added',NULL), - (59,115,2,'2021-12-28 04:07:20','Admin','Added',NULL), - (60,130,2,'2022-03-11 14:35:50','Email','Added',NULL), - (61,100,3,'2022-06-12 16:27:12','Email','Added',NULL), - (62,169,3,'2022-05-16 13:59:05','Admin','Added',NULL), - (63,108,3,'2022-11-13 13:43:10','Email','Added',NULL), - (64,87,3,'2022-07-14 13:10:10','Email','Added',NULL), - (65,71,3,'2022-07-12 15:13:08','Email','Added',NULL), - (66,35,3,'2022-09-18 21:45:37','Email','Added',NULL), - (67,123,3,'2022-06-06 13:58:20','Admin','Added',NULL), - (68,146,3,'2022-03-13 18:32:36','Email','Added',NULL), - (69,50,3,'2022-03-11 17:59:56','Admin','Added',NULL), - (70,162,3,'2022-11-30 04:52:18','Admin','Added',NULL), - (71,140,3,'2022-03-18 22:20:33','Admin','Added',NULL), - (72,191,3,'2022-01-18 22:38:45','Email','Added',NULL), - (73,175,3,'2022-06-05 09:27:08','Admin','Added',NULL), - (74,152,3,'2022-05-25 23:21:32','Email','Added',NULL), - (75,181,3,'2022-01-12 07:44:08','Email','Added',NULL), - (76,187,4,'2022-11-24 15:55:03','Admin','Added',NULL), - (77,150,4,'2022-04-10 00:06:41','Email','Added',NULL), - (78,131,4,'2022-05-28 01:39:39','Admin','Added',NULL), - (79,48,4,'2022-04-25 01:10:34','Email','Added',NULL), - (80,99,4,'2022-05-11 23:18:44','Email','Added',NULL), - (81,18,4,'2022-11-11 14:57:17','Email','Added',NULL), - (82,92,4,'2021-12-28 22:26:33','Admin','Added',NULL), - (83,66,4,'2022-11-28 11:34:05','Admin','Added',NULL), - (84,202,4,'2022-11-10 07:20:53','Admin','Added',NULL); + (1,199,2,'2022-04-03 01:25:54','Admin','Added',NULL), + (2,85,2,'2022-12-08 15:57:32','Email','Added',NULL), + (3,186,2,'2022-03-05 10:53:07','Admin','Added',NULL), + (4,47,2,'2022-06-23 05:11:49','Email','Added',NULL), + (5,154,2,'2023-01-24 09:09:35','Admin','Added',NULL), + (6,145,2,'2022-03-15 10:45:31','Admin','Added',NULL), + (7,50,2,'2022-11-23 06:23:47','Admin','Added',NULL), + (8,75,2,'2022-02-06 11:34:53','Email','Added',NULL), + (9,4,2,'2022-12-20 08:49:32','Email','Added',NULL), + (10,192,2,'2022-10-07 15:37:23','Email','Added',NULL), + (11,92,2,'2022-10-06 08:58:14','Email','Added',NULL), + (12,89,2,'2022-06-02 18:23:25','Admin','Added',NULL), + (13,31,2,'2022-05-02 19:59:56','Email','Added',NULL), + (14,158,2,'2022-05-05 02:32:37','Email','Added',NULL), + (15,125,2,'2022-08-27 16:17:15','Admin','Added',NULL), + (16,137,2,'2022-11-10 09:10:31','Admin','Added',NULL), + (17,138,2,'2022-09-29 06:48:25','Email','Added',NULL), + (18,46,2,'2022-09-26 10:28:06','Admin','Added',NULL), + (19,13,2,'2022-07-03 09:56:44','Email','Added',NULL), + (20,99,2,'2022-12-26 21:55:45','Admin','Added',NULL), + (21,2,2,'2022-03-12 22:24:33','Email','Added',NULL), + (22,113,2,'2022-08-04 11:14:34','Email','Added',NULL), + (23,130,2,'2022-07-18 17:55:07','Email','Added',NULL), + (24,108,2,'2022-06-02 22:34:57','Email','Added',NULL), + (25,14,2,'2022-03-04 22:09:28','Admin','Added',NULL), + (26,198,2,'2022-09-03 23:00:00','Email','Added',NULL), + (27,174,2,'2022-12-31 17:20:19','Email','Added',NULL), + (28,107,2,'2022-11-25 02:09:42','Email','Added',NULL), + (29,86,2,'2022-04-10 02:22:13','Admin','Added',NULL), + (30,54,2,'2022-06-14 13:12:08','Email','Added',NULL), + (31,161,2,'2022-12-26 19:57:13','Email','Added',NULL), + (32,165,2,'2022-04-15 11:51:11','Email','Added',NULL), + (33,139,2,'2022-04-27 00:32:59','Email','Added',NULL), + (34,37,2,'2022-02-03 16:55:27','Admin','Added',NULL), + (35,141,2,'2022-03-02 01:19:15','Email','Added',NULL), + (36,170,2,'2022-12-06 10:19:14','Email','Added',NULL), + (37,41,2,'2022-09-11 10:25:31','Admin','Added',NULL), + (38,21,2,'2022-09-12 10:47:31','Admin','Added',NULL), + (39,181,2,'2022-08-12 21:15:52','Admin','Added',NULL), + (40,83,2,'2022-04-04 18:33:39','Admin','Added',NULL), + (41,73,2,'2022-08-26 11:02:18','Admin','Added',NULL), + (42,53,2,'2022-09-10 16:02:09','Admin','Added',NULL), + (43,178,2,'2023-01-01 20:33:37','Admin','Added',NULL), + (44,133,2,'2022-05-02 18:05:48','Email','Added',NULL), + (45,155,2,'2023-01-13 16:18:59','Email','Added',NULL), + (46,81,2,'2022-10-03 15:33:25','Admin','Added',NULL), + (47,177,2,'2022-09-19 14:40:27','Admin','Added',NULL), + (48,116,2,'2022-01-30 16:57:53','Email','Added',NULL), + (49,6,2,'2022-03-26 00:09:23','Admin','Added',NULL), + (50,95,2,'2022-11-19 15:39:02','Email','Added',NULL), + (51,171,2,'2022-05-26 01:51:14','Email','Added',NULL), + (52,129,2,'2022-07-26 21:05:41','Admin','Added',NULL), + (53,51,2,'2023-01-04 15:32:05','Admin','Added',NULL), + (54,173,2,'2022-05-19 18:00:45','Admin','Added',NULL), + (55,134,2,'2022-08-09 01:54:37','Admin','Added',NULL), + (56,23,2,'2022-12-10 07:38:36','Email','Added',NULL), + (57,118,2,'2022-04-07 16:01:25','Admin','Added',NULL), + (58,82,2,'2022-08-14 08:16:45','Email','Added',NULL), + (59,79,2,'2022-09-23 18:38:37','Admin','Added',NULL), + (60,72,2,'2023-01-02 15:19:46','Email','Added',NULL), + (61,71,3,'2022-03-05 04:13:23','Email','Added',NULL), + (62,185,3,'2022-04-10 01:25:56','Email','Added',NULL), + (63,115,3,'2022-08-06 08:30:44','Email','Added',NULL), + (64,43,3,'2022-12-24 07:09:44','Email','Added',NULL), + (65,201,3,'2022-09-19 07:16:50','Admin','Added',NULL), + (66,182,3,'2022-09-20 04:46:56','Email','Added',NULL), + (67,8,3,'2022-02-11 14:28:04','Admin','Added',NULL), + (68,52,3,'2022-11-02 09:58:44','Admin','Added',NULL), + (69,74,3,'2022-03-17 18:12:37','Email','Added',NULL), + (70,36,3,'2022-10-21 21:51:08','Email','Added',NULL), + (71,103,3,'2022-07-19 16:08:13','Email','Added',NULL), + (72,144,3,'2022-02-01 11:07:38','Admin','Added',NULL), + (73,39,3,'2022-05-23 16:59:02','Admin','Added',NULL), + (74,159,3,'2022-08-13 03:42:02','Admin','Added',NULL), + (75,168,3,'2022-11-09 10:56:30','Admin','Added',NULL), + (76,199,4,'2022-02-20 18:59:22','Email','Added',NULL), + (77,75,4,'2022-08-24 22:26:31','Email','Added',NULL), + (78,125,4,'2022-04-05 20:40:57','Email','Added',NULL), + (79,113,4,'2022-08-30 10:11:16','Email','Added',NULL), + (80,86,4,'2022-06-27 23:02:36','Admin','Added',NULL), + (81,170,4,'2022-11-02 01:05:12','Admin','Added',NULL), + (82,178,4,'2022-10-15 03:00:42','Email','Added',NULL), + (83,95,4,'2022-09-13 12:36:47','Email','Added',NULL), + (84,202,4,'2022-10-27 15:27:50','Admin','Added',NULL); /*!40000 ALTER TABLE `civicrm_subscription_history` ENABLE KEYS */; UNLOCK TABLES; @@ -12498,22 +12493,24 @@ 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,49,'http://proctormusic.org',1), - (2,55,'http://ncfoodtrust.org',1), - (3,15,'http://ruralschool.org',1), - (4,42,'http://unitedsystems.org',1), - (5,168,'http://localcenter.org',1), - (6,2,'http://sdsportsservices.org',1), - (7,38,'http://californiawellness.org',1), - (8,43,'http://ecagricultureacademy.org',1), - (9,167,'http://localservices.org',1), - (10,24,'http://cadellpartnership.org',1), - (11,64,'http://communitypartnership.org',1), - (12,36,'http://foroughmusic.org',1), - (13,192,'http://globalschool.org',1), - (14,11,'http://pelzereducation.org',1), - (15,113,'http://friendsfamilynetwork.org',1), - (16,124,'http://nalcrestadvocacy.org',1); + (1,93,'http://locallegaltrust.org',1), + (2,140,'http://baysustainabilitypartners.org',1), + (3,128,'http://unitedculture.org',1), + (4,163,'http://minnesotasystems.org',1), + (5,132,'http://virginianetwork.org',1), + (6,184,'http://lipoetrytrust.org',1), + (7,176,'http://wyomingsustainabilityinitiative.org',1), + (8,87,'http://californiasportstrust.org',1), + (9,77,'http://whitfieldagriculture.org',1), + (10,160,'http://greenvillesports.org',1), + (11,123,'http://indianasportspartnership.org',1), + (12,59,'http://washingtonwellness.org',1), + (13,17,'http://laceyvilleartsnetwork.org',1), + (14,126,'http://louisianatechnology.org',1), + (15,188,'http://texasinitiative.org',1), + (16,78,'http://collegecenter.org',1), + (17,146,'http://progressivefund.org',1), + (18,175,'http://greenschool.org',1); /*!40000 ALTER TABLE `civicrm_website` ENABLE KEYS */; UNLOCK TABLES; @@ -12545,12 +12542,13 @@ UNLOCK TABLES; /*!40101 SET SQL_MODE=@OLD_SQL_MODE */; /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; +/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; --- Dump completed on 2022-12-07 16:48:59 +-- Dump completed on 2023-01-25 11:10:23 -- +--------------------------------------------------------------------+ -- | Copyright CiviCRM LLC. All rights reserved. | -- | | diff --git a/civicrm/templates/CRM/Admin/Form/Job.tpl b/civicrm/templates/CRM/Admin/Form/Job.tpl index a4b78dda1d5fb5995d09160cceadfe745f0abc67..8cd1dd1d5dfcb5139c8917547ddc35f6afe7167f 100644 --- a/civicrm/templates/CRM/Admin/Form/Job.tpl +++ b/civicrm/templates/CRM/Admin/Form/Job.tpl @@ -92,7 +92,7 @@ CRM.$(function($) { <tr class="crm-job-form-block-scheduled-run-date"> <td class="label">{$form.scheduled_run_date.label}</td> <td>{$form.scheduled_run_date.html}<br /> - <div dlass="description">{ts}Do not run this job before this date / time. The run frequency selected above will apply thereafter.{/ts}<br /> + <div class="description">{ts}Do not run this job before this date / time. The run frequency selected above will apply thereafter.{/ts}<br /> {if $action eq 1}{ts}Leave blank to run as soon as possible.{/ts}{else}{ts}Leave blank to run at next run frequency.{/ts}{/if} </div> </td> diff --git a/civicrm/templates/CRM/Case/Page/CustomDataView.tpl b/civicrm/templates/CRM/Case/Page/CustomDataView.tpl index 9112396e4d7972bc5d7f5c464e28218816c5faf9..05f6a622ec3a70af0e1255964ce1084703de9396 100644 --- a/civicrm/templates/CRM/Case/Page/CustomDataView.tpl +++ b/civicrm/templates/CRM/Case/Page/CustomDataView.tpl @@ -16,36 +16,31 @@ {$cd_edit.title} </div> <div class="crm-accordion-body"> - {foreach from=$cd_edit.fields item=element key=field_id} + {if !empty($cd_edit.fields)} <table class="crm-info-panel"> - <tr> - {if $element.options_per_line != 0} + {foreach from=$cd_edit.fields item=element key=field_id} + <tr> <td class="label">{$element.field_title}</td> <td class="html-adjust"> - {* sort by fails for option per line. Added a variable to iterate through the element array*} - {if $element.field_data_type EQ 'ContactReference' && $element.contact_ref_links} - {', '|implode:$element.contact_ref_links} - {else} + {if $element.options_per_line != 0} + {* sort by fails for option per line. Added a variable to iterate through the element array*} {foreach from=$element.field_value item=val} {$val}<br/> {/foreach} + {elseif $element.field_data_type == 'Memo'} + {$element.field_value|nl2br} + {elseif $element.field_data_type == 'Money' && $element.field_type == 'Text'} + {$element.data|crmMoney} + {elseif $element.field_data_type == 'ContactReference' && $element.contact_ref_links} + {', '|implode:$element.contact_ref_links} + {else} + {$element.field_value} {/if} </td> - {else} - <td class="label">{$element.field_title}</td> - <td class="html-adjust"> - {if $element.field_data_type EQ 'ContactReference' && $element.contact_ref_links} - {', '|implode:$element.contact_ref_links} - {elseif $element.field_data_type == 'Money'} - {$element.field_value|crmMoney} - {else} - {$element.field_value} - {/if} - </td> - {/if} - </tr> + </tr> + {/foreach} </table> - {/foreach} + {/if} <div> {crmButton p="civicrm/case/cd/edit" q="cgcount=1&action=update&reset=1&type=Case&entityID=$caseID&groupID=$customGroupId&cid=$contactID&subType=$caseTypeID" icon="pencil"}{ts}Edit{/ts}{/crmButton} </div> @@ -57,3 +52,4 @@ {/foreach} {/foreach} <div id="case_custom_edit"></div> + diff --git a/civicrm/templates/CRM/Contribute/Form/Contribution.tpl b/civicrm/templates/CRM/Contribute/Form/Contribution.tpl index 87157abdfb42dd992f8ffa56d6bf0db39daf2212..1549c4f3153f5d0bf5396ed705f1752969b9dae4 100644 --- a/civicrm/templates/CRM/Contribute/Form/Contribution.tpl +++ b/civicrm/templates/CRM/Contribute/Form/Contribution.tpl @@ -66,7 +66,7 @@ </tr> <tr class="crm-contribution-form-block-contribution_type_id crm-contribution-form-block-financial_type_id"> <td class="label">{$form.financial_type_id.label}</td><td{$valueStyle}>{$form.financial_type_id.html} - {if !empty($is_test)} + {if $is_test} {ts}(test){/ts} {/if} {help id="id-financial_type"} </td> diff --git a/civicrm/templates/CRM/Contribute/Form/Contribution/Confirm.tpl b/civicrm/templates/CRM/Contribute/Form/Contribution/Confirm.tpl index ba9f97286ccd8602c2e630d1ebd4c6fe2f2964ed..9ef4ad93d078e29edf9e708da1eaa0f804693aff 100644 --- a/civicrm/templates/CRM/Contribute/Form/Contribution/Confirm.tpl +++ b/civicrm/templates/CRM/Contribute/Form/Contribution/Confirm.tpl @@ -207,9 +207,7 @@ </div> {/if} - {if ( $contributeMode ne 'notify' and (!$is_pay_later or $isBillingAddressRequiredForPayLater) and $is_monetary and ( $amount GT 0 OR $minimum_fee GT 0 ) ) or $email } - {if $contributeMode ne 'notify' and (!$is_pay_later or $isBillingAddressRequiredForPayLater) and $is_monetary and ( $amount GT 0 OR $minimum_fee GT 0 ) } - {if $billingName or $address} + {if $billingName or $address} <div class="crm-group billing_name_address-group"> <div class="header-dark"> {ts}Billing Name and Address{/ts} @@ -224,8 +222,7 @@ </div> </div> {/if} - {/if} - {if !$emailExists} + {if $email && !$emailExists} <div class="crm-group contributor_email-group"> <div class="header-dark"> {ts}Your Email{/ts} @@ -236,19 +233,17 @@ </div> </div> {/if} - {/if} {* Show credit or debit card section for 'direct' mode, except for PayPal Express (detected because credit card number is empty) *} - {if $contributeMode eq 'direct' and ! $is_pay_later and $is_monetary and ( $amount GT 0 OR $minimum_fee GT 0 )} {crmRegion name="contribution-confirm-billing-block"} - {if ($credit_card_number or $bank_account_number)} + {if in_array('credit_card_number', $form) || in_array('bank_account_number', $form)} <div class="crm-group credit_card-group"> {if $paymentFieldsetLabel} <div class="header-dark"> {$paymentFieldsetLabel} </div> {/if} - {if $paymentProcessor.payment_type == 2} + {if in_array('bank_account_number', $form)} <div class="display-block"> {ts}Account Holder{/ts}: {$account_holder}<br/> {ts}Bank Account Number{/ts}: {$bank_account_number}<br/> @@ -265,7 +260,8 @@ </div> </div> {/if} - {else} + {/if} + {if in_array('credit_card_number', $form)} <div class="crm-section no-label credit_card_details-section"> <div class="content">{$credit_card_type}</div> <div class="content">{$credit_card_number}</div> @@ -276,7 +272,6 @@ </div> {/if} {/crmRegion} - {/if} {include file="CRM/Contribute/Form/Contribution/PremiumBlock.tpl" context="confirmContribution"} diff --git a/civicrm/templates/CRM/Contribute/Form/Contribution/Main.tpl b/civicrm/templates/CRM/Contribute/Form/Contribution/Main.tpl index cbdf2cbc2a34442294cba6fd7583d6b7f2877aab..0c46bda3780c62d9d784f40bb7f1e8ff3795e722 100644 --- a/civicrm/templates/CRM/Contribute/Form/Contribution/Main.tpl +++ b/civicrm/templates/CRM/Contribute/Form/Contribution/Main.tpl @@ -46,7 +46,7 @@ </script> {/literal} - {if $action & 1024} + {if ($action & 1024) or $dummyTitle} {include file="CRM/Contribute/Form/Contribution/PreviewHeader.tpl"} {/if} diff --git a/civicrm/templates/CRM/Contribute/Form/Contribution/PreviewHeader.tpl b/civicrm/templates/CRM/Contribute/Form/Contribution/PreviewHeader.tpl index fe160753f41829d311d77a9eef53d7edea0d9f15..5570e26d88b1102241d831326aaec8df0c3475d6 100644 --- a/civicrm/templates/CRM/Contribute/Form/Contribution/PreviewHeader.tpl +++ b/civicrm/templates/CRM/Contribute/Form/Contribution/PreviewHeader.tpl @@ -8,8 +8,16 @@ +--------------------------------------------------------------------+ *} {* Displays Test-drive mode header for Contribution pages. *} -<div class="messages status no-popup"> +{if $action & 1024} + <div class="messages status no-popup"> <i class="crm-i fa-cogs" aria-hidden="true"></i> <strong>{ts}Test-drive Your Contribution Page{/ts}</strong> <p>{ts}This page is currently running in <strong>test-drive mode</strong>. Transactions will be sent to your payment processor's test server. <strong>No live financial transactions will be submitted. However, a contact record will be created or updated and a test contribution record will be saved to the database. Use obvious test contact names so you can review and delete these records as needed. Test contributions are not visible on the Contributions tab, but can be viewed by searching for 'Test Contributions' in the CiviContribute search form.</strong> Refer to your payment processor's documentation for information on values to use for test credit card number, security code, postal code, etc.{/ts}</p> -</div> + </div> +{else} + <div class="messages status no-popup"> + <i class="crm-i fa-cogs"></i> + <strong>{ts}Test payment processor on Your Contribution Page{/ts}</strong> + <p>{ts 1=$dummyTitle|escape}This page is currently configured to use the <strong>%1 payment processor</strong>. <strong>No live financial transactions will be submitted if %1 payment processor is selected. However, a contact record will be created or updated and a live contribution record will be saved to the database with no actual financial transaction. Remove %1 payment processor before going live.</strong>{/ts}</p> + </div> +{/if} \ No newline at end of file diff --git a/civicrm/templates/CRM/Custom/Form/Field.tpl b/civicrm/templates/CRM/Custom/Form/Field.tpl index 2045c371ba249456b8739c2071313745526cac75..c2e13ab33cc58917d593bf878a614cc0d07f0262 100644 --- a/civicrm/templates/CRM/Custom/Form/Field.tpl +++ b/civicrm/templates/CRM/Custom/Form/Field.tpl @@ -36,7 +36,7 @@ <td class='html-adjust'>{$form.in_selector.html} {help id="id-in_selector"}</td> </tr> {/if} - <tr class="crm-custom-field-form-block-text_length" id="textLength" {if !( $action eq 1 || $action eq 2 ) && ($form.data_type.value.0.0 != 0)}class="hiddenElement"{/if}> + <tr class="crm-custom-field-form-block-text_length" id="textLength"> <td class="label">{$form.text_length.label}</td> <td class="html-adjust">{$form.text_length.html}</td> </tr> @@ -67,31 +67,31 @@ <span class="description">{ts}Filter contact search results for this field using Contact get API parameters. EXAMPLE: To list Students in group 3:{/ts} "action=get&group=3&contact_sub_type=Student" {docURL page="dev/api"}</span> </td> </tr> - <tr class="crm-custom-field-form-block-options_per_line" id="optionsPerLine" {if $action neq 2 && ($form.data_type.value.0.0 >= 4 && $form.data_type.value.1.0 neq 'CheckBox' || $form.data_type.value.1.0 neq 'Radio' )}class="hiddenElement"{/if}> + <tr class="crm-custom-field-form-block-options_per_line" id="optionsPerLine"> <td class="label">{$form.options_per_line.label}</td> <td class="html-adjust">{$form.options_per_line.html|crmAddClass:two}</td> </tr> - <tr class="crm-custom-field-form-block-start_date_years" id="startDateRange" {if $action neq 2 && ($form.data_type.value.0.0 != 5)}class="hiddenElement"{/if}> + <tr class="crm-custom-field-form-block-start_date_years" id="startDateRange"> <td class="label">{$form.start_date_years.label}</td> <td class="html-adjust">{$form.start_date_years.html} {ts}years prior to current date.{/ts}</td> </tr> - <tr class="crm-custom-field-form-block-end_date_years" id="endDateRange" {if $action neq 2 && ($form.data_type.value.0.0 != 5)}class="hiddenElement"{/if}> + <tr class="crm-custom-field-form-block-end_date_years" id="endDateRange"> <td class="label">{$form.end_date_years.label}</td> <td class="html-adjust">{$form.end_date_years.html} {ts}years after the current date.{/ts}</td> </tr> - <tr class="crm-custom-field-form-block-date_format" id="includedDatePart" {if $action neq 2 && ($form.data_type.value.0.0 != 5)}class="hiddenElement"{/if}> + <tr class="crm-custom-field-form-block-date_format" id="includedDatePart"> <td class="label">{$form.date_format.label}</td> <td class="html-adjust">{$form.date_format.html} {$form.time_format.label} {$form.time_format.html}</td> </tr> - <tr class="crm-custom-field-form-block-note_rows" id="noteRows" {if $action neq 2 && ($form.data_type.value.0.0 != 4)}class="hiddenElement"{/if}> + <tr class="crm-custom-field-form-block-note_rows" id="noteRows" > <td class="label">{$form.note_rows.label}</td> <td class="html-adjust">{$form.note_rows.html}</td> </tr> - <tr class="crm-custom-field-form-block-note_columns" id="noteColumns" {if $action neq 2 && ($form.data_type.value.0.0 != 4)}class="hiddenElement"{/if}> + <tr class="crm-custom-field-form-block-note_columns" id="noteColumns" > <td class="label">{$form.note_columns.label}</td> <td class="html-adjust">{$form.note_columns.html}</td> </tr> - <tr class="crm-custom-field-form-block-note_length" id="noteLength" {if $action neq 2 && ($form.data_type.value.0.0 != 4)}class="hiddenElement"{/if}> + <tr class="crm-custom-field-form-block-note_length" id="noteLength" > <td class="label">{$form.note_length.label}</td> <td class="html-adjust">{$form.note_length.html} <span class="description">{ts}Leave blank for unlimited. This limit is not implemented by all browsers and rich text editors.{/ts}</span></td> </tr> @@ -104,11 +104,11 @@ {/if} </td> </tr> - <tr class="crm-custom-field-form-block-default_value" id="hideDefault" {if $action eq 2 && ($form.data_type.value.0.0 < 4 && $form.data_type.value.1.0 NEQ 'Text')}class="hiddenElement"{/if}> + <tr class="crm-custom-field-form-block-default_value" id="hideDefault" > <td class="label">{$form.default_value.label}</td> <td class="html-adjust">{$form.default_value.html}</td> </tr> - <tr class="crm-custom-field-form-block-description" id="hideDesc" {if $action neq 4 && $action eq 2 && ($form.data_type.value.0.0 < 4 && $form.data_type.value.1.0 NEQ 'Text')}class="hiddenElement"{/if}> + <tr class="crm-custom-field-form-block-description" id="hideDesc" > <td class="label"> </td> <td class="html-adjust"><span class="description">{ts}If you want to provide a default value for this field, enter it here. For date fields, format is YYYY-MM-DD.{/ts}</span></td> </tr> diff --git a/civicrm/templates/CRM/Report/Form/Tabs/Filters.tpl b/civicrm/templates/CRM/Report/Form/Tabs/Filters.tpl index aab5a09470eb47017539bc128b857ba1fee7f0e0..e2f25de8b1252d16b029a1172690570648c01111 100644 --- a/civicrm/templates/CRM/Report/Form/Tabs/Filters.tpl +++ b/civicrm/templates/CRM/Report/Form/Tabs/Filters.tpl @@ -33,14 +33,14 @@ {include file="CRM/Core/DatePickerRangeWrapper.tpl" fieldName=$fieldName hideRelativeLabel=1 from='_from' to='_to' class='' colspan=''} </tr> {elseif $form.$fieldOp.html} - <tr class="report-contents crm-report crm-report-criteria-filter crm-report-criteria-filter-{$tableName}" {if !empty($field.no_display)} style="display: none;"{/if}> + <tr class="report-contents crm-report crm-report-criteria-filter crm-report-criteria-filter-{$tableName}" {if array_key_exists('no_display', $field) && $field.no_display} style="display: none;"{/if}> <td class="label report-contents">{if !empty($field.title)}{$field.title}{/if}</td> <td class="report-contents">{$form.$fieldOp.html}</td> <td> <span id="{$filterVal}_cell">{$form.$filterVal.label} {$form.$filterVal.html}</span> <span id="{$filterMin}_max_cell"> - {if !empty($form.$filterMin)}{$form.$filterMin.label} {$form.$filterMin.html} {/if} - {if !empty($form.$filterMax)}{$form.$filterMax.label} {$form.$filterMax.html}{/if} + {if array_key_exists($filterMin, $form) && $form.$filterMin}{$form.$filterMin.label} {$form.$filterMin.html} {/if} + {if array_key_exists($filterMax, $form) && $form.$filterMax}{$form.$filterMax.label} {$form.$filterMax.html}{/if} </span> </td> </tr> diff --git a/civicrm/templates/CRM/Report/Form/Tabs/ReportOptions.tpl b/civicrm/templates/CRM/Report/Form/Tabs/ReportOptions.tpl index 5788f33362e0412d5f39aff638cd363eba1564d8..4306302292b6d173a21473e93dbf12b95f57a9c5 100644 --- a/civicrm/templates/CRM/Report/Form/Tabs/ReportOptions.tpl +++ b/civicrm/templates/CRM/Report/Form/Tabs/ReportOptions.tpl @@ -13,10 +13,12 @@ {assign var="optionCount" value=0} <tr class="crm-report crm-report-criteria-field"> {foreach from=$otherOptions item=optionField key=optionName} - {assign var="optionCount" value=`$optionCount+1`} - <td>{if $form.$optionName.label}{$form.$optionName.label} {/if}{$form.$optionName.html}</td> - {if $optionCount is div by 2} - </tr><tr class="crm-report crm-report-criteria-field"> + {if array_key_exists($optionName, $form)} + {assign var="optionCount" value=`$optionCount+1`} + <td>{if $form.$optionName.label}{$form.$optionName.label} {/if}{$form.$optionName.html}</td> + {if $optionCount is div by 2} + </tr><tr class="crm-report crm-report-criteria-field"> + {/if} {/if} {/foreach} {if $optionCount is not div by 2} diff --git a/civicrm/vendor/autoload.php b/civicrm/vendor/autoload.php index 88d7f9c244dd82864ab0572789549e058141fbe3..7144bbec26c93e403bf0f5b0402d9e8ac90aaa20 100644 --- a/civicrm/vendor/autoload.php +++ b/civicrm/vendor/autoload.php @@ -4,4 +4,4 @@ require_once __DIR__ . '/composer/autoload_real.php'; -return ComposerAutoloaderInit9f9955bf8d90b6eb142de17e7c9fca9f::getLoader(); +return ComposerAutoloaderInita11f3c801d10986919ada9cfdd14997b::getLoader(); diff --git a/civicrm/vendor/civicrm/composer-compile-lib/CCL.php b/civicrm/vendor/civicrm/composer-compile-lib/CCL.php index 6c46409e886cb315184c7f8f551f00dc93fac2c9..d5537f10210ba915678919f5484dcc04a4d68595 100644 --- a/civicrm/vendor/civicrm/composer-compile-lib/CCL.php +++ b/civicrm/vendor/civicrm/composer-compile-lib/CCL.php @@ -1,5 +1,5 @@ <?php -// AUTO-GENERATED VIA /home/publisher/bknix-min/build/cividist/src/vendor/civicrm/composer-compile-lib/src/StubsTpl.php +// AUTO-GENERATED VIA /home/jenkins/bknix-min/build/cividist/src/vendor/civicrm/composer-compile-lib/src/StubsTpl.php // If this file somehow becomes invalid (eg when patching CCL), you may safely delete and re-run install. use Symfony\Component\Filesystem\Exception\IOException; use Symfony\Component\Filesystem\Exception\FileNotFoundException; diff --git a/civicrm/vendor/composer/autoload_classmap.php b/civicrm/vendor/composer/autoload_classmap.php index c429c24141485891aa5d577f5dc9c7594704f615..ecd7099c4d8cc5a3a6068f47930a2836f09a7aed 100644 --- a/civicrm/vendor/composer/autoload_classmap.php +++ b/civicrm/vendor/composer/autoload_classmap.php @@ -26,6 +26,12 @@ return array( 'PEAR_Exception' => $vendorDir . '/pear/pear_exception/PEAR/Exception.php', 'PhpToken' => $vendorDir . '/symfony/polyfill-php80/Resources/stubs/PhpToken.php', 'QRcode' => $vendorDir . '/tecnickcom/tcpdf/include/barcodes/qrcode.php', + 'Random\\BrokenRandomEngineError' => $vendorDir . '/symfony/polyfill-php82/Resources/stubs/Random/BrokenRandomEngineError.php', + 'Random\\CryptoSafeEngine' => $vendorDir . '/symfony/polyfill-php82/Resources/stubs/Random/CryptoSafeEngine.php', + 'Random\\Engine' => $vendorDir . '/symfony/polyfill-php82/Resources/stubs/Random/Engine.php', + 'Random\\Engine\\Secure' => $vendorDir . '/symfony/polyfill-php82/Resources/stubs/Random/Engine/Secure.php', + 'Random\\RandomError' => $vendorDir . '/symfony/polyfill-php82/Resources/stubs/Random/RandomError.php', + 'Random\\RandomException' => $vendorDir . '/symfony/polyfill-php82/Resources/stubs/Random/RandomException.php', 'ReturnTypeWillChange' => $vendorDir . '/symfony/polyfill-php81/Resources/stubs/ReturnTypeWillChange.php', 'SensitiveParameter' => $vendorDir . '/symfony/polyfill-php82/Resources/stubs/SensitiveParameter.php', 'SensitiveParameterValue' => $vendorDir . '/symfony/polyfill-php82/Resources/stubs/SensitiveParameterValue.php', diff --git a/civicrm/vendor/composer/autoload_real.php b/civicrm/vendor/composer/autoload_real.php index af7d58b02074b4467875a8d658b86f18d7a33843..60113964ddcf1ea5e9079f5e8f982a4cabb3286c 100644 --- a/civicrm/vendor/composer/autoload_real.php +++ b/civicrm/vendor/composer/autoload_real.php @@ -2,7 +2,7 @@ // autoload_real.php @generated by Composer -class ComposerAutoloaderInit9f9955bf8d90b6eb142de17e7c9fca9f +class ComposerAutoloaderInita11f3c801d10986919ada9cfdd14997b { private static $loader; @@ -24,9 +24,9 @@ class ComposerAutoloaderInit9f9955bf8d90b6eb142de17e7c9fca9f require __DIR__ . '/platform_check.php'; - spl_autoload_register(array('ComposerAutoloaderInit9f9955bf8d90b6eb142de17e7c9fca9f', 'loadClassLoader'), true, true); + spl_autoload_register(array('ComposerAutoloaderInita11f3c801d10986919ada9cfdd14997b', 'loadClassLoader'), true, true); self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(\dirname(__FILE__))); - spl_autoload_unregister(array('ComposerAutoloaderInit9f9955bf8d90b6eb142de17e7c9fca9f', 'loadClassLoader')); + spl_autoload_unregister(array('ComposerAutoloaderInita11f3c801d10986919ada9cfdd14997b', 'loadClassLoader')); $includePaths = require __DIR__ . '/include_paths.php'; $includePaths[] = get_include_path(); @@ -36,7 +36,7 @@ class ComposerAutoloaderInit9f9955bf8d90b6eb142de17e7c9fca9f if ($useStaticLoader) { require __DIR__ . '/autoload_static.php'; - call_user_func(\Composer\Autoload\ComposerStaticInit9f9955bf8d90b6eb142de17e7c9fca9f::getInitializer($loader)); + call_user_func(\Composer\Autoload\ComposerStaticInita11f3c801d10986919ada9cfdd14997b::getInitializer($loader)); } else { $map = require __DIR__ . '/autoload_namespaces.php'; foreach ($map as $namespace => $path) { @@ -57,12 +57,12 @@ class ComposerAutoloaderInit9f9955bf8d90b6eb142de17e7c9fca9f $loader->register(true); if ($useStaticLoader) { - $includeFiles = Composer\Autoload\ComposerStaticInit9f9955bf8d90b6eb142de17e7c9fca9f::$files; + $includeFiles = Composer\Autoload\ComposerStaticInita11f3c801d10986919ada9cfdd14997b::$files; } else { $includeFiles = require __DIR__ . '/autoload_files.php'; } foreach ($includeFiles as $fileIdentifier => $file) { - composerRequire9f9955bf8d90b6eb142de17e7c9fca9f($fileIdentifier, $file); + composerRequirea11f3c801d10986919ada9cfdd14997b($fileIdentifier, $file); } return $loader; @@ -74,7 +74,7 @@ class ComposerAutoloaderInit9f9955bf8d90b6eb142de17e7c9fca9f * @param string $file * @return void */ -function composerRequire9f9955bf8d90b6eb142de17e7c9fca9f($fileIdentifier, $file) +function composerRequirea11f3c801d10986919ada9cfdd14997b($fileIdentifier, $file) { if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) { $GLOBALS['__composer_autoload_files'][$fileIdentifier] = true; diff --git a/civicrm/vendor/composer/autoload_static.php b/civicrm/vendor/composer/autoload_static.php index fa4028dd78210fc0b19f49377767e4f198e3e2c5..cefd59297ed731b6f44b93bfd57cda9d4c096650 100644 --- a/civicrm/vendor/composer/autoload_static.php +++ b/civicrm/vendor/composer/autoload_static.php @@ -4,7 +4,7 @@ namespace Composer\Autoload; -class ComposerStaticInit9f9955bf8d90b6eb142de17e7c9fca9f +class ComposerStaticInita11f3c801d10986919ada9cfdd14997b { public static $files = array ( 'a4a119a56e50fbb293281d9a48007e0e' => __DIR__ . '/..' . '/symfony/polyfill-php80/bootstrap.php', @@ -605,6 +605,12 @@ class ComposerStaticInit9f9955bf8d90b6eb142de17e7c9fca9f 'PEAR_Exception' => __DIR__ . '/..' . '/pear/pear_exception/PEAR/Exception.php', 'PhpToken' => __DIR__ . '/..' . '/symfony/polyfill-php80/Resources/stubs/PhpToken.php', 'QRcode' => __DIR__ . '/..' . '/tecnickcom/tcpdf/include/barcodes/qrcode.php', + 'Random\\BrokenRandomEngineError' => __DIR__ . '/..' . '/symfony/polyfill-php82/Resources/stubs/Random/BrokenRandomEngineError.php', + 'Random\\CryptoSafeEngine' => __DIR__ . '/..' . '/symfony/polyfill-php82/Resources/stubs/Random/CryptoSafeEngine.php', + 'Random\\Engine' => __DIR__ . '/..' . '/symfony/polyfill-php82/Resources/stubs/Random/Engine.php', + 'Random\\Engine\\Secure' => __DIR__ . '/..' . '/symfony/polyfill-php82/Resources/stubs/Random/Engine/Secure.php', + 'Random\\RandomError' => __DIR__ . '/..' . '/symfony/polyfill-php82/Resources/stubs/Random/RandomError.php', + 'Random\\RandomException' => __DIR__ . '/..' . '/symfony/polyfill-php82/Resources/stubs/Random/RandomException.php', 'ReturnTypeWillChange' => __DIR__ . '/..' . '/symfony/polyfill-php81/Resources/stubs/ReturnTypeWillChange.php', 'SensitiveParameter' => __DIR__ . '/..' . '/symfony/polyfill-php82/Resources/stubs/SensitiveParameter.php', 'SensitiveParameterValue' => __DIR__ . '/..' . '/symfony/polyfill-php82/Resources/stubs/SensitiveParameterValue.php', @@ -738,11 +744,11 @@ class ComposerStaticInit9f9955bf8d90b6eb142de17e7c9fca9f public static function getInitializer(ClassLoader $loader) { return \Closure::bind(function () use ($loader) { - $loader->prefixLengthsPsr4 = ComposerStaticInit9f9955bf8d90b6eb142de17e7c9fca9f::$prefixLengthsPsr4; - $loader->prefixDirsPsr4 = ComposerStaticInit9f9955bf8d90b6eb142de17e7c9fca9f::$prefixDirsPsr4; - $loader->prefixesPsr0 = ComposerStaticInit9f9955bf8d90b6eb142de17e7c9fca9f::$prefixesPsr0; - $loader->fallbackDirsPsr0 = ComposerStaticInit9f9955bf8d90b6eb142de17e7c9fca9f::$fallbackDirsPsr0; - $loader->classMap = ComposerStaticInit9f9955bf8d90b6eb142de17e7c9fca9f::$classMap; + $loader->prefixLengthsPsr4 = ComposerStaticInita11f3c801d10986919ada9cfdd14997b::$prefixLengthsPsr4; + $loader->prefixDirsPsr4 = ComposerStaticInita11f3c801d10986919ada9cfdd14997b::$prefixDirsPsr4; + $loader->prefixesPsr0 = ComposerStaticInita11f3c801d10986919ada9cfdd14997b::$prefixesPsr0; + $loader->fallbackDirsPsr0 = ComposerStaticInita11f3c801d10986919ada9cfdd14997b::$fallbackDirsPsr0; + $loader->classMap = ComposerStaticInita11f3c801d10986919ada9cfdd14997b::$classMap; }, null, ClassLoader::class); } diff --git a/civicrm/vendor/composer/include_paths.php b/civicrm/vendor/composer/include_paths.php index 06cf2843ee439212db0953b251eb0a3d769e64ee..189ce0e9b6cf55031ce76c58174cb9f3eb050687 100644 --- a/civicrm/vendor/composer/include_paths.php +++ b/civicrm/vendor/composer/include_paths.php @@ -12,9 +12,9 @@ return array( $vendorDir . '/pear/console_getopt', $vendorDir . '/pear/pear-core-minimal/src', $vendorDir . '/pear/db', + $vendorDir . '/pear/log', $vendorDir . '/pear/mail', $vendorDir . '/pear/mail_mime', - $vendorDir . '/pear/log', $vendorDir . '/pear/net_socket', $vendorDir . '/pear/net_smtp', $vendorDir . '/pear/validate_finance_creditcard', diff --git a/civicrm/vendor/composer/installed.json b/civicrm/vendor/composer/installed.json index a193a2405db643935c04cedd74577cd4c2388583..317e579c0dd0df68cd7bf3c6eb4cf05a509f75b0 100644 --- a/civicrm/vendor/composer/installed.json +++ b/civicrm/vendor/composer/installed.json @@ -4281,17 +4281,17 @@ }, { "name": "symfony/polyfill-ctype", - "version": "v1.26.0", - "version_normalized": "1.26.0.0", + "version": "v1.27.0", + "version_normalized": "1.27.0.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-ctype.git", - "reference": "6fd1b9a79f6e3cf65f9e679b23af304cd9e010d4" + "reference": "5bbc823adecdae860bb64756d639ecfec17b050a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/6fd1b9a79f6e3cf65f9e679b23af304cd9e010d4", - "reference": "6fd1b9a79f6e3cf65f9e679b23af304cd9e010d4", + "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/5bbc823adecdae860bb64756d639ecfec17b050a", + "reference": "5bbc823adecdae860bb64756d639ecfec17b050a", "shasum": "" }, "require": { @@ -4303,11 +4303,11 @@ "suggest": { "ext-ctype": "For best performance" }, - "time": "2022-05-24T11:49:31+00:00", + "time": "2022-11-03T14:55:06+00:00", "type": "library", "extra": { "branch-alias": { - "dev-main": "1.26-dev" + "dev-main": "1.27-dev" }, "thanks": { "name": "symfony/polyfill", @@ -4346,7 +4346,7 @@ "portable" ], "support": { - "source": "https://github.com/symfony/polyfill-ctype/tree/v1.26.0" + "source": "https://github.com/symfony/polyfill-ctype/tree/v1.27.0" }, "funding": [ { @@ -4366,30 +4366,37 @@ }, { "name": "symfony/polyfill-iconv", - "version": "v1.17.0", - "version_normalized": "1.17.0.0", + "version": "v1.27.0", + "version_normalized": "1.27.0.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-iconv.git", - "reference": "c4de7601eefbf25f9d47190abe07f79fe0a27424" + "reference": "927013f3aac555983a5059aada98e1907d842695" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/c4de7601eefbf25f9d47190abe07f79fe0a27424", - "reference": "c4de7601eefbf25f9d47190abe07f79fe0a27424", + "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/927013f3aac555983a5059aada98e1907d842695", + "reference": "927013f3aac555983a5059aada98e1907d842695", "shasum": "" }, "require": { - "php": ">=5.3.3" + "php": ">=7.1" + }, + "provide": { + "ext-iconv": "*" }, "suggest": { "ext-iconv": "For best performance" }, - "time": "2020-05-12T16:47:27+00:00", + "time": "2022-11-03T14:55:06+00:00", "type": "library", "extra": { "branch-alias": { - "dev-master": "1.17-dev" + "dev-main": "1.27-dev" + }, + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" } }, "installation-source": "dist", @@ -4425,7 +4432,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-iconv/tree/v1.17.0" + "source": "https://github.com/symfony/polyfill-iconv/tree/v1.27.0" }, "funding": [ { @@ -4445,17 +4452,17 @@ }, { "name": "symfony/polyfill-intl-idn", - "version": "v1.26.0", - "version_normalized": "1.26.0.0", + "version": "v1.27.0", + "version_normalized": "1.27.0.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-intl-idn.git", - "reference": "59a8d271f00dd0e4c2e518104cc7963f655a1aa8" + "reference": "639084e360537a19f9ee352433b84ce831f3d2da" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/59a8d271f00dd0e4c2e518104cc7963f655a1aa8", - "reference": "59a8d271f00dd0e4c2e518104cc7963f655a1aa8", + "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/639084e360537a19f9ee352433b84ce831f3d2da", + "reference": "639084e360537a19f9ee352433b84ce831f3d2da", "shasum": "" }, "require": { @@ -4466,11 +4473,11 @@ "suggest": { "ext-intl": "For best performance" }, - "time": "2022-05-24T11:49:31+00:00", + "time": "2022-11-03T14:55:06+00:00", "type": "library", "extra": { "branch-alias": { - "dev-main": "1.26-dev" + "dev-main": "1.27-dev" }, "thanks": { "name": "symfony/polyfill", @@ -4515,7 +4522,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.26.0" + "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.27.0" }, "funding": [ { @@ -4535,17 +4542,17 @@ }, { "name": "symfony/polyfill-intl-normalizer", - "version": "v1.26.0", - "version_normalized": "1.26.0.0", + "version": "v1.27.0", + "version_normalized": "1.27.0.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-intl-normalizer.git", - "reference": "219aa369ceff116e673852dce47c3a41794c14bd" + "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/219aa369ceff116e673852dce47c3a41794c14bd", - "reference": "219aa369ceff116e673852dce47c3a41794c14bd", + "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/19bd1e4fcd5b91116f14d8533c57831ed00571b6", + "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6", "shasum": "" }, "require": { @@ -4554,11 +4561,11 @@ "suggest": { "ext-intl": "For best performance" }, - "time": "2022-05-24T11:49:31+00:00", + "time": "2022-11-03T14:55:06+00:00", "type": "library", "extra": { "branch-alias": { - "dev-main": "1.26-dev" + "dev-main": "1.27-dev" }, "thanks": { "name": "symfony/polyfill", @@ -4602,7 +4609,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.26.0" + "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.27.0" }, "funding": [ { @@ -4622,17 +4629,17 @@ }, { "name": "symfony/polyfill-mbstring", - "version": "v1.26.0", - "version_normalized": "1.26.0.0", + "version": "v1.27.0", + "version_normalized": "1.27.0.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-mbstring.git", - "reference": "9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e" + "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e", - "reference": "9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e", + "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/8ad114f6b39e2c98a8b0e3bd907732c207c2b534", + "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534", "shasum": "" }, "require": { @@ -4644,11 +4651,11 @@ "suggest": { "ext-mbstring": "For best performance" }, - "time": "2022-05-24T11:49:31+00:00", + "time": "2022-11-03T14:55:06+00:00", "type": "library", "extra": { "branch-alias": { - "dev-main": "1.26-dev" + "dev-main": "1.27-dev" }, "thanks": { "name": "symfony/polyfill", @@ -4688,7 +4695,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.26.0" + "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.27.0" }, "funding": [ { @@ -4708,27 +4715,27 @@ }, { "name": "symfony/polyfill-php72", - "version": "v1.26.0", - "version_normalized": "1.26.0.0", + "version": "v1.27.0", + "version_normalized": "1.27.0.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-php72.git", - "reference": "bf44a9fd41feaac72b074de600314a93e2ae78e2" + "reference": "869329b1e9894268a8a61dabb69153029b7a8c97" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/bf44a9fd41feaac72b074de600314a93e2ae78e2", - "reference": "bf44a9fd41feaac72b074de600314a93e2ae78e2", + "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/869329b1e9894268a8a61dabb69153029b7a8c97", + "reference": "869329b1e9894268a8a61dabb69153029b7a8c97", "shasum": "" }, "require": { "php": ">=7.1" }, - "time": "2022-05-24T11:49:31+00:00", + "time": "2022-11-03T14:55:06+00:00", "type": "library", "extra": { "branch-alias": { - "dev-main": "1.26-dev" + "dev-main": "1.27-dev" }, "thanks": { "name": "symfony/polyfill", @@ -4767,7 +4774,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-php72/tree/v1.26.0" + "source": "https://github.com/symfony/polyfill-php72/tree/v1.27.0" }, "funding": [ { @@ -4787,27 +4794,27 @@ }, { "name": "symfony/polyfill-php73", - "version": "v1.25.0", - "version_normalized": "1.25.0.0", + "version": "v1.27.0", + "version_normalized": "1.27.0.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-php73.git", - "reference": "cc5db0e22b3cb4111010e48785a97f670b350ca5" + "reference": "9e8ecb5f92152187c4799efd3c96b78ccab18ff9" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/cc5db0e22b3cb4111010e48785a97f670b350ca5", - "reference": "cc5db0e22b3cb4111010e48785a97f670b350ca5", + "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/9e8ecb5f92152187c4799efd3c96b78ccab18ff9", + "reference": "9e8ecb5f92152187c4799efd3c96b78ccab18ff9", "shasum": "" }, "require": { "php": ">=7.1" }, - "time": "2021-06-05T21:20:04+00:00", + "time": "2022-11-03T14:55:06+00:00", "type": "library", "extra": { "branch-alias": { - "dev-main": "1.23-dev" + "dev-main": "1.27-dev" }, "thanks": { "name": "symfony/polyfill", @@ -4849,7 +4856,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-php73/tree/v1.25.0" + "source": "https://github.com/symfony/polyfill-php73/tree/v1.27.0" }, "funding": [ { @@ -4869,27 +4876,27 @@ }, { "name": "symfony/polyfill-php74", - "version": "v1.26.0", - "version_normalized": "1.26.0.0", + "version": "v1.27.0", + "version_normalized": "1.27.0.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-php74.git", - "reference": "ad4f7d62a17b1187d9f381f0a662aab19ff3c033" + "reference": "aa7f1231a1aa56d695e626043252b7be6a90c4ce" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php74/zipball/ad4f7d62a17b1187d9f381f0a662aab19ff3c033", - "reference": "ad4f7d62a17b1187d9f381f0a662aab19ff3c033", + "url": "https://api.github.com/repos/symfony/polyfill-php74/zipball/aa7f1231a1aa56d695e626043252b7be6a90c4ce", + "reference": "aa7f1231a1aa56d695e626043252b7be6a90c4ce", "shasum": "" }, "require": { "php": ">=7.1" }, - "time": "2022-05-24T11:49:31+00:00", + "time": "2022-11-03T14:55:06+00:00", "type": "library", "extra": { "branch-alias": { - "dev-main": "1.26-dev" + "dev-main": "1.27-dev" }, "thanks": { "name": "symfony/polyfill", @@ -4932,7 +4939,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-php74/tree/v1.26.0" + "source": "https://github.com/symfony/polyfill-php74/tree/v1.27.0" }, "funding": [ { @@ -4952,27 +4959,27 @@ }, { "name": "symfony/polyfill-php80", - "version": "v1.26.0", - "version_normalized": "1.26.0.0", + "version": "v1.27.0", + "version_normalized": "1.27.0.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-php80.git", - "reference": "cfa0ae98841b9e461207c13ab093d76b0fa7bace" + "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/cfa0ae98841b9e461207c13ab093d76b0fa7bace", - "reference": "cfa0ae98841b9e461207c13ab093d76b0fa7bace", + "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936", + "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936", "shasum": "" }, "require": { "php": ">=7.1" }, - "time": "2022-05-10T07:21:04+00:00", + "time": "2022-11-03T14:55:06+00:00", "type": "library", "extra": { "branch-alias": { - "dev-main": "1.26-dev" + "dev-main": "1.27-dev" }, "thanks": { "name": "symfony/polyfill", @@ -5018,7 +5025,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-php80/tree/v1.26.0" + "source": "https://github.com/symfony/polyfill-php80/tree/v1.27.0" }, "funding": [ { @@ -5038,27 +5045,27 @@ }, { "name": "symfony/polyfill-php81", - "version": "v1.26.0", - "version_normalized": "1.26.0.0", + "version": "v1.27.0", + "version_normalized": "1.27.0.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-php81.git", - "reference": "13f6d1271c663dc5ae9fb843a8f16521db7687a1" + "reference": "707403074c8ea6e2edaf8794b0157a0bfa52157a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/13f6d1271c663dc5ae9fb843a8f16521db7687a1", - "reference": "13f6d1271c663dc5ae9fb843a8f16521db7687a1", + "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/707403074c8ea6e2edaf8794b0157a0bfa52157a", + "reference": "707403074c8ea6e2edaf8794b0157a0bfa52157a", "shasum": "" }, "require": { "php": ">=7.1" }, - "time": "2022-05-24T11:49:31+00:00", + "time": "2022-11-03T14:55:06+00:00", "type": "library", "extra": { "branch-alias": { - "dev-main": "1.26-dev" + "dev-main": "1.27-dev" }, "thanks": { "name": "symfony/polyfill", @@ -5100,7 +5107,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-php81/tree/v1.26.0" + "source": "https://github.com/symfony/polyfill-php81/tree/v1.27.0" }, "funding": [ { @@ -5120,27 +5127,27 @@ }, { "name": "symfony/polyfill-php82", - "version": "v1.26.0", - "version_normalized": "1.26.0.0", + "version": "v1.27.0", + "version_normalized": "1.27.0.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-php82.git", - "reference": "a88014fcea4120c9f77b4fefd48942ce38e412e7" + "reference": "80ddf7bfa17ef7b06db4e6d007a95bf584e07b44" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php82/zipball/a88014fcea4120c9f77b4fefd48942ce38e412e7", - "reference": "a88014fcea4120c9f77b4fefd48942ce38e412e7", + "url": "https://api.github.com/repos/symfony/polyfill-php82/zipball/80ddf7bfa17ef7b06db4e6d007a95bf584e07b44", + "reference": "80ddf7bfa17ef7b06db4e6d007a95bf584e07b44", "shasum": "" }, "require": { "php": ">=7.1" }, - "time": "2022-05-24T09:13:51+00:00", + "time": "2022-11-10T10:10:54+00:00", "type": "library", "extra": { "branch-alias": { - "dev-main": "1.26-dev" + "dev-main": "1.27-dev" }, "thanks": { "name": "symfony/polyfill", @@ -5182,7 +5189,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-php82/tree/v1.26.0" + "source": "https://github.com/symfony/polyfill-php82/tree/v1.27.0" }, "funding": [ { diff --git a/civicrm/vendor/composer/installed.php b/civicrm/vendor/composer/installed.php index 906722d6a15a0905786114f2643c813fa09d3c32..b989a299ce99f6dd8aefa12c2df9f7e970e8dfa1 100644 --- a/civicrm/vendor/composer/installed.php +++ b/civicrm/vendor/composer/installed.php @@ -1,11 +1,11 @@ <?php return array( 'root' => array( - 'pretty_version' => '5.58.x-dev', - 'version' => '5.58.9999999.9999999-dev', + 'pretty_version' => '5.59.x-dev', + 'version' => '5.59.9999999.9999999-dev', 'type' => 'library', 'install_path' => __DIR__ . '/../../', 'aliases' => array(), - 'reference' => '755314ae9e46286a587e1138a15b92aaaa0278a1', + 'reference' => '26d58531c1abf047ac91b5b6d9e67a799f385642', 'name' => 'civicrm/civicrm-core', 'dev' => true, ), @@ -56,12 +56,12 @@ 'dev_requirement' => false, ), 'civicrm/civicrm-core' => array( - 'pretty_version' => '5.58.x-dev', - 'version' => '5.58.9999999.9999999-dev', + 'pretty_version' => '5.59.x-dev', + 'version' => '5.59.9999999.9999999-dev', 'type' => 'library', 'install_path' => __DIR__ . '/../../', 'aliases' => array(), - 'reference' => '755314ae9e46286a587e1138a15b92aaaa0278a1', + 'reference' => '26d58531c1abf047ac91b5b6d9e67a799f385642', 'dev_requirement' => false, ), 'civicrm/civicrm-cxn-rpc' => array( @@ -632,102 +632,102 @@ 'dev_requirement' => false, ), 'symfony/polyfill-ctype' => array( - 'pretty_version' => 'v1.26.0', - 'version' => '1.26.0.0', + 'pretty_version' => 'v1.27.0', + 'version' => '1.27.0.0', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/polyfill-ctype', 'aliases' => array(), - 'reference' => '6fd1b9a79f6e3cf65f9e679b23af304cd9e010d4', + 'reference' => '5bbc823adecdae860bb64756d639ecfec17b050a', 'dev_requirement' => false, ), 'symfony/polyfill-iconv' => array( - 'pretty_version' => 'v1.17.0', - 'version' => '1.17.0.0', + 'pretty_version' => 'v1.27.0', + 'version' => '1.27.0.0', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/polyfill-iconv', 'aliases' => array(), - 'reference' => 'c4de7601eefbf25f9d47190abe07f79fe0a27424', + 'reference' => '927013f3aac555983a5059aada98e1907d842695', 'dev_requirement' => false, ), 'symfony/polyfill-intl-idn' => array( - 'pretty_version' => 'v1.26.0', - 'version' => '1.26.0.0', + 'pretty_version' => 'v1.27.0', + 'version' => '1.27.0.0', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/polyfill-intl-idn', 'aliases' => array(), - 'reference' => '59a8d271f00dd0e4c2e518104cc7963f655a1aa8', + 'reference' => '639084e360537a19f9ee352433b84ce831f3d2da', 'dev_requirement' => false, ), 'symfony/polyfill-intl-normalizer' => array( - 'pretty_version' => 'v1.26.0', - 'version' => '1.26.0.0', + 'pretty_version' => 'v1.27.0', + 'version' => '1.27.0.0', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/polyfill-intl-normalizer', 'aliases' => array(), - 'reference' => '219aa369ceff116e673852dce47c3a41794c14bd', + 'reference' => '19bd1e4fcd5b91116f14d8533c57831ed00571b6', 'dev_requirement' => false, ), 'symfony/polyfill-mbstring' => array( - 'pretty_version' => 'v1.26.0', - 'version' => '1.26.0.0', + 'pretty_version' => 'v1.27.0', + 'version' => '1.27.0.0', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/polyfill-mbstring', 'aliases' => array(), - 'reference' => '9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e', + 'reference' => '8ad114f6b39e2c98a8b0e3bd907732c207c2b534', 'dev_requirement' => false, ), 'symfony/polyfill-php72' => array( - 'pretty_version' => 'v1.26.0', - 'version' => '1.26.0.0', + 'pretty_version' => 'v1.27.0', + 'version' => '1.27.0.0', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/polyfill-php72', 'aliases' => array(), - 'reference' => 'bf44a9fd41feaac72b074de600314a93e2ae78e2', + 'reference' => '869329b1e9894268a8a61dabb69153029b7a8c97', 'dev_requirement' => false, ), 'symfony/polyfill-php73' => array( - 'pretty_version' => 'v1.25.0', - 'version' => '1.25.0.0', + 'pretty_version' => 'v1.27.0', + 'version' => '1.27.0.0', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/polyfill-php73', 'aliases' => array(), - 'reference' => 'cc5db0e22b3cb4111010e48785a97f670b350ca5', + 'reference' => '9e8ecb5f92152187c4799efd3c96b78ccab18ff9', 'dev_requirement' => false, ), 'symfony/polyfill-php74' => array( - 'pretty_version' => 'v1.26.0', - 'version' => '1.26.0.0', + 'pretty_version' => 'v1.27.0', + 'version' => '1.27.0.0', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/polyfill-php74', 'aliases' => array(), - 'reference' => 'ad4f7d62a17b1187d9f381f0a662aab19ff3c033', + 'reference' => 'aa7f1231a1aa56d695e626043252b7be6a90c4ce', 'dev_requirement' => false, ), 'symfony/polyfill-php80' => array( - 'pretty_version' => 'v1.26.0', - 'version' => '1.26.0.0', + 'pretty_version' => 'v1.27.0', + 'version' => '1.27.0.0', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/polyfill-php80', 'aliases' => array(), - 'reference' => 'cfa0ae98841b9e461207c13ab093d76b0fa7bace', + 'reference' => '7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936', 'dev_requirement' => false, ), 'symfony/polyfill-php81' => array( - 'pretty_version' => 'v1.26.0', - 'version' => '1.26.0.0', + 'pretty_version' => 'v1.27.0', + 'version' => '1.27.0.0', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/polyfill-php81', 'aliases' => array(), - 'reference' => '13f6d1271c663dc5ae9fb843a8f16521db7687a1', + 'reference' => '707403074c8ea6e2edaf8794b0157a0bfa52157a', 'dev_requirement' => false, ), 'symfony/polyfill-php82' => array( - 'pretty_version' => 'v1.26.0', - 'version' => '1.26.0.0', + 'pretty_version' => 'v1.27.0', + 'version' => '1.27.0.0', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/polyfill-php82', 'aliases' => array(), - 'reference' => 'a88014fcea4120c9f77b4fefd48942ce38e412e7', + 'reference' => '80ddf7bfa17ef7b06db4e6d007a95bf584e07b44', 'dev_requirement' => false, ), 'symfony/process' => array( diff --git a/civicrm/vendor/symfony/polyfill-ctype/composer.json b/civicrm/vendor/symfony/polyfill-ctype/composer.json index ee5c931cd1c575886f343ebafe4f23d6cb1eff85..1b3efff572505e5779956d48dc980400a9653a49 100644 --- a/civicrm/vendor/symfony/polyfill-ctype/composer.json +++ b/civicrm/vendor/symfony/polyfill-ctype/composer.json @@ -31,7 +31,7 @@ "minimum-stability": "dev", "extra": { "branch-alias": { - "dev-main": "1.26-dev" + "dev-main": "1.27-dev" }, "thanks": { "name": "symfony/polyfill", diff --git a/civicrm/vendor/symfony/polyfill-iconv/Iconv.php b/civicrm/vendor/symfony/polyfill-iconv/Iconv.php index 77e7ca056bfafef8f42ef6ba1d56785d9ca3e955..c17a70dc24a8e3201087d0f16adb46af52346797 100644 --- a/civicrm/vendor/symfony/polyfill-iconv/Iconv.php +++ b/civicrm/vendor/symfony/polyfill-iconv/Iconv.php @@ -36,14 +36,14 @@ namespace Symfony\Polyfill\Iconv; */ final class Iconv { - const ERROR_ILLEGAL_CHARACTER = 'iconv(): Detected an illegal character in input string'; - const ERROR_WRONG_CHARSET = 'iconv(): Wrong charset, conversion from `%s\' to `%s\' is not allowed'; + public const ERROR_ILLEGAL_CHARACTER = 'iconv(): Detected an illegal character in input string'; + public const ERROR_WRONG_CHARSET = 'iconv(): Wrong charset, conversion from `%s\' to `%s\' is not allowed'; public static $inputEncoding = 'utf-8'; public static $outputEncoding = 'utf-8'; public static $internalEncoding = 'utf-8'; - private static $alias = array( + private static $alias = [ 'utf8' => 'utf-8', 'ascii' => 'us-ascii', 'tis-620' => 'iso-8859-11', @@ -116,13 +116,13 @@ final class Iconv 'iso885914' => 'iso-8859-14', 'iso885915' => 'iso-8859-15', 'iso885916' => 'iso-8859-16', - ); - private static $translitMap = array(); - private static $convertMap = array(); + ]; + private static $translitMap = []; + private static $convertMap = []; private static $errorHandler; private static $lastError; - private static $ulenMask = array("\xC0" => 2, "\xD0" => 2, "\xE0" => 3, "\xF0" => 4); + private static $ulenMask = ["\xC0" => 2, "\xD0" => 2, "\xE0" => 3, "\xF0" => 4]; private static $isValidUtf8; public static function iconv($inCharset, $outCharset, $str) @@ -238,7 +238,7 @@ final class Iconv } $str = explode("\n\n", $str, 2); - $headers = array(); + $headers = []; $str = preg_split('/\n(?![ \t])/', $str[0]); foreach ($str as $str) { @@ -251,7 +251,7 @@ final class Iconv if (2 === \count($str)) { if (isset($headers[$str[0]])) { if (!\is_array($headers[$str[0]])) { - $headers[$str[0]] = array($headers[$str[0]]); + $headers[$str[0]] = [$headers[$str[0]]]; } $headers[$str[0]][] = ltrim($str[1]); } else { @@ -268,7 +268,7 @@ final class Iconv if (null === $charset) { $charset = self::$internalEncoding; } - if (ICONV_MIME_DECODE_CONTINUE_ON_ERROR & $mode) { + if (\ICONV_MIME_DECODE_CONTINUE_ON_ERROR & $mode) { $charset .= '//IGNORE'; } @@ -277,7 +277,7 @@ final class Iconv } $str = preg_split('/\n(?![ \t])/', rtrim($str), 2); $str = preg_replace('/[ \t]*\n[ \t]+/', ' ', rtrim($str[0])); - $str = preg_split('/=\?([^?]+)\?([bqBQ])\?(.*?)\?=/', $str, -1, PREG_SPLIT_DELIM_CAPTURE); + $str = preg_split('/=\?([^?]+)\?([bqBQ])\?(.*?)\?=/', $str, -1, \PREG_SPLIT_DELIM_CAPTURE); $result = self::iconv('utf-8', $charset, $str[0]); if (false === $result) { @@ -289,7 +289,7 @@ final class Iconv while ($i < $len) { $c = strtolower($str[$i]); - if ((ICONV_MIME_DECODE_CONTINUE_ON_ERROR & $mode) + if ((\ICONV_MIME_DECODE_CONTINUE_ON_ERROR & $mode) && 'utf-8' !== $c && !isset(self::$alias[$c]) && !self::loadMap('from.', $c, $d)) { @@ -312,7 +312,7 @@ final class Iconv if ('' !== trim($d)) { $result .= $d; } - } elseif (ICONV_MIME_DECODE_CONTINUE_ON_ERROR & $mode) { + } elseif (\ICONV_MIME_DECODE_CONTINUE_ON_ERROR & $mode) { $result .= "=?{$str[$i]}?{$str[$i + 1]}?{$str[$i + 2]}?={$str[$i + 3]}"; } else { $result = false; @@ -333,11 +333,11 @@ final class Iconv case 'internal_encoding': return self::$internalEncoding; } - return array( + return [ 'input_encoding' => self::$inputEncoding, 'output_encoding' => self::$outputEncoding, 'internal_encoding' => self::$internalEncoding, - ); + ]; } public static function iconv_set_encoding($type, $charset) @@ -346,7 +346,6 @@ final class Iconv case 'input_encoding': self::$inputEncoding = $charset; break; case 'output_encoding': self::$outputEncoding = $charset; break; case 'internal_encoding': self::$internalEncoding = $charset; break; - default: return false; } @@ -356,16 +355,16 @@ final class Iconv public static function iconv_mime_encode($fieldName, $fieldValue, $pref = null) { if (!\is_array($pref)) { - $pref = array(); + $pref = []; } - $pref += array( + $pref += [ 'scheme' => 'B', 'input-charset' => self::$internalEncoding, 'output-charset' => self::$internalEncoding, 'line-length' => 76, 'line-break-chars' => "\r\n", - ); + ]; if (preg_match('/[\x80-\xFF]/', $fieldName)) { $fieldName = ''; @@ -381,7 +380,7 @@ final class Iconv preg_match_all('/./us', $fieldValue, $chars); - $chars = isset($chars[0]) ? $chars[0] : array(); + $chars = $chars[0] ?? []; $lineBreak = (int) $pref['line-length']; $lineStart = "=?{$pref['output-charset']}?{$scheme}?"; @@ -389,7 +388,7 @@ final class Iconv $lineOffset = \strlen($lineStart) + 3; $lineData = ''; - $fieldValue = array(); + $fieldValue = []; $Q = 'Q' === $scheme; @@ -401,7 +400,7 @@ final class Iconv $o = $Q ? $c = preg_replace_callback( '/[=_\?\x00-\x1F\x80-\xFF]/', - array(__CLASS__, 'qpByteCallback'), + [__CLASS__, 'qpByteCallback'], $c ) : base64_encode($lineData.$c); @@ -472,7 +471,7 @@ final class Iconv while ($i < $len) { $u = $s[$i] & "\xF0"; - $i += isset($ulenMask[$u]) ? $ulenMask[$u] : 1; + $i += $ulenMask[$u] ?? 1; ++$j; } @@ -541,10 +540,14 @@ final class Iconv $start += $slen; } if (0 > $start) { - return false; + if (\PHP_VERSION_ID < 80000) { + return false; + } + + $start = 0; } if ($start >= $slen) { - return false; + return \PHP_VERSION_ID >= 80000 ? '' : false; } $rx = $slen - $start; @@ -556,7 +559,7 @@ final class Iconv return ''; } if (0 > $length) { - return false; + return \PHP_VERSION_ID >= 80000 ? '' : false; } if ($length > $rx) { @@ -607,7 +610,7 @@ final class Iconv $u[$j++] = $str[$i++]; } else { $ulen = $str[$i] & "\xF0"; - $ulen = isset($ulenMask[$ulen]) ? $ulenMask[$ulen] : 1; + $ulen = $ulenMask[$ulen] ?? 1; $uchr = substr($str, $i, $ulen); if (1 === $ulen || !($valid || preg_match('/^.$/us', $uchr))) { @@ -619,10 +622,10 @@ final class Iconv trigger_error(self::ERROR_ILLEGAL_CHARACTER); return false; - } else { - $i += $ulen; } + $i += $ulen; + $u[$j++] = $uchr[0]; isset($uchr[1]) && 0 !== ($u[$j++] = $uchr[1]) @@ -669,15 +672,15 @@ final class Iconv $uchr = $str[$i++]; } else { $ulen = $str[$i] & "\xF0"; - $ulen = isset($ulenMask[$ulen]) ? $ulenMask[$ulen] : 1; + $ulen = $ulenMask[$ulen] ?? 1; $uchr = substr($str, $i, $ulen); if ($ignore && (1 === $ulen || !($valid || preg_match('/^.$/us', $uchr)))) { ++$i; continue; - } else { - $i += $ulen; } + + $i += $ulen; } if (isset($map[$uchr])) { @@ -719,7 +722,7 @@ final class Iconv private static function pregOffset($offset) { - $rx = array(); + $rx = []; $offset = (int) $offset; while ($offset > 65535) { diff --git a/civicrm/vendor/symfony/polyfill-iconv/README.md b/civicrm/vendor/symfony/polyfill-iconv/README.md index b0c8984cd6d85441d6a7da75156b33abad48f2f1..b089088b97e4c055b1254238e110b48c6ddb3fd6 100644 --- a/civicrm/vendor/symfony/polyfill-iconv/README.md +++ b/civicrm/vendor/symfony/polyfill-iconv/README.md @@ -6,7 +6,7 @@ This component provides a native PHP implementation of the (short of [`ob_iconv_handler`](https://php.net/ob-iconv-handler)). More information can be found in the -[main Polyfill README](https://github.com/symfony/polyfill/blob/master/README.md). +[main Polyfill README](https://github.com/symfony/polyfill/blob/main/README.md). License ======= diff --git a/civicrm/vendor/symfony/polyfill-iconv/Resources/charset/translit.php b/civicrm/vendor/symfony/polyfill-iconv/Resources/charset/translit.php index ed59858dc4ee1bb7b94ef4c5f1ab633722e795ce..f322ff0d2eb87325bcab7cb2c6f7ceffb6e35b75 100644 --- a/civicrm/vendor/symfony/polyfill-iconv/Resources/charset/translit.php +++ b/civicrm/vendor/symfony/polyfill-iconv/Resources/charset/translit.php @@ -1,6 +1,6 @@ <?php -static $data = array ( +return array ( 'µ' => 'μ', '¼' => ' 1â„4 ', '½' => ' 1â„2 ', @@ -1393,13 +1393,13 @@ static $data = array ( '廓' => '廓', '兀' => 'å…€', 'ï¨' => 'å—€', - '﨎' => '�', - 'ï¨' => '�', + '﨎' => '' . "\0" . '', + 'ï¨' => '' . "\0" . '', 'ï¨' => 'å¡š', - '﨑' => '�', + '﨑' => '' . "\0" . '', '晴' => 'æ™´', - '﨓' => '�', - '﨔' => '�', + '﨓' => '' . "\0" . '', + '﨔' => '' . "\0" . '', '凞' => '凞', '猪' => '猪', '益' => '益', @@ -1410,17 +1410,17 @@ static $data = array ( '靖' => 'é–', 'ï¨' => 'ç²¾', '羽' => 'ç¾½', - '﨟' => '�', + '﨟' => '' . "\0" . '', 'ï¨ ' => '蘒', - '﨡' => '�', + '﨡' => '' . "\0" . '', '諸' => '諸', - '﨣' => '�', - '﨤' => '�', + '﨣' => '' . "\0" . '', + '﨤' => '' . "\0" . '', '逸' => '逸', '都' => '都', - '﨧' => '�', - '﨨' => '�', - '﨩' => '�', + '﨧' => '' . "\0" . '', + '﨨' => '' . "\0" . '', + '﨩' => '' . "\0" . '', '飯' => '飯', '飼' => '飼', '館' => '館', @@ -3146,6 +3146,16 @@ static $data = array ( '🉈' => '〔敗〕', 'ðŸ‰' => '(å¾—)', '🉑' => '(å¯)', + '🯰' => '0', + '🯱' => '1', + '🯲' => '2', + '🯳' => '3', + '🯴' => '4', + '🯵' => '5', + '🯶' => '6', + '🯷' => '7', + '🯸' => '8', + '🯹' => '9', '丽' => '丽', 'ð¯ ' => '丸', '乁' => 'ä¹', @@ -3985,8 +3995,8 @@ static $data = array ( 'â‚£' => 'Fr.', '₤' => 'L.', '₧' => 'Pts', - '₺' => 'TL', '₹' => 'Rs', + '₺' => 'TL', 'â„—' => '(P)', '℘' => 'P', 'â„ž' => 'Rx', @@ -4033,6 +4043,8 @@ static $data = array ( '―' => '-', '︱' => '-', '︲' => '-', + '¡' => '!', + '¿' => '?', 'Ë‚' => '<', '˃' => '>', 'Ë„' => '^', @@ -4077,6 +4089,7 @@ static $data = array ( 'ï¹€' => '>', '﹇' => '[', '﹈' => ']', + '±' => '+/-', '×' => '*', '÷' => '/', 'Ë–' => '+', @@ -4091,8 +4104,3 @@ static $data = array ( '⦅' => '((', '⦆' => '))', ); - -$result =& $data; -unset($data); - -return $result; diff --git a/civicrm/vendor/symfony/polyfill-iconv/bootstrap.php b/civicrm/vendor/symfony/polyfill-iconv/bootstrap.php index 14b5003a8bdc97b8487595e8a33badc72f6c6e9b..c11df3b322584cc5bb830327cc1ad62d76d47241 100644 --- a/civicrm/vendor/symfony/polyfill-iconv/bootstrap.php +++ b/civicrm/vendor/symfony/polyfill-iconv/bootstrap.php @@ -15,6 +15,10 @@ if (extension_loaded('iconv')) { return; } +if (\PHP_VERSION_ID >= 80000) { + return require __DIR__.'/bootstrap80.php'; +} + if (!defined('ICONV_IMPL')) { define('ICONV_IMPL', 'Symfony'); } @@ -29,56 +33,56 @@ if (!defined('ICONV_MIME_DECODE_CONTINUE_ON_ERROR')) { } if (!function_exists('iconv')) { - function iconv($from, $to, $s) { return p\Iconv::iconv($from, $to, $s); } + function iconv($from_encoding, $to_encoding, $string) { return p\Iconv::iconv($from_encoding, $to_encoding, $string); } } if (!function_exists('iconv_get_encoding')) { function iconv_get_encoding($type = 'all') { return p\Iconv::iconv_get_encoding($type); } } if (!function_exists('iconv_set_encoding')) { - function iconv_set_encoding($type, $charset) { return p\Iconv::iconv_set_encoding($type, $charset); } + function iconv_set_encoding($type, $encoding) { return p\Iconv::iconv_set_encoding($type, $encoding); } } if (!function_exists('iconv_mime_encode')) { - function iconv_mime_encode($name, $value, $pref = null) { return p\Iconv::iconv_mime_encode($name, $value, $pref); } + function iconv_mime_encode($field_name, $field_value, $options = []) { return p\Iconv::iconv_mime_encode($field_name, $field_value, $options); } } if (!function_exists('iconv_mime_decode_headers')) { - function iconv_mime_decode_headers($encodedHeaders, $mode = 0, $enc = null) { return p\Iconv::iconv_mime_decode_headers($encodedHeaders, $mode, $enc); } + function iconv_mime_decode_headers($headers, $mode = 0, $encoding = null) { return p\Iconv::iconv_mime_decode_headers($headers, $mode, $encoding); } } if (extension_loaded('mbstring')) { if (!function_exists('iconv_strlen')) { - function iconv_strlen($s, $enc = null) { null === $enc and $enc = p\Iconv::$internalEncoding; return mb_strlen($s, $enc); } + function iconv_strlen($string, $encoding = null) { null === $encoding && $encoding = p\Iconv::$internalEncoding; return mb_strlen($string, $encoding); } } if (!function_exists('iconv_strpos')) { - function iconv_strpos($s, $needle, $offset = 0, $enc = null) { null === $enc and $enc = p\Iconv::$internalEncoding; return mb_strpos($s, $needle, $offset, $enc); } + function iconv_strpos($haystack, $needle, $offset = 0, $encoding = null) { null === $encoding && $encoding = p\Iconv::$internalEncoding; return mb_strpos($haystack, $needle, $offset, $encoding); } } if (!function_exists('iconv_strrpos')) { - function iconv_strrpos($s, $needle, $enc = null) { null === $enc and $enc = p\Iconv::$internalEncoding; return mb_strrpos($s, $needle, 0, $enc); } + function iconv_strrpos($haystack, $needle, $encoding = null) { null === $encoding && $encoding = p\Iconv::$internalEncoding; return mb_strrpos($haystack, $needle, 0, $encoding); } } if (!function_exists('iconv_substr')) { - function iconv_substr($s, $start, $length = 2147483647, $enc = null) { null === $enc and $enc = p\Iconv::$internalEncoding; return mb_substr($s, $start, $length, $enc); } + function iconv_substr($string, $offset, $length = 2147483647, $encoding = null) { null === $encoding && $encoding = p\Iconv::$internalEncoding; return mb_substr($string, $offset, $length, $encoding); } } if (!function_exists('iconv_mime_decode')) { - function iconv_mime_decode($encodedHeaders, $mode = 0, $enc = null) { null === $enc and $enc = p\Iconv::$internalEncoding; return mb_decode_mimeheader($encodedHeaders, $mode, $enc); } + function iconv_mime_decode($string, $mode = 0, $encoding = null) { $currentMbEncoding = mb_internal_encoding(); null === $encoding && $encoding = p\Iconv::$internalEncoding; mb_internal_encoding($encoding); $decoded = mb_decode_mimeheader($string); mb_internal_encoding($currentMbEncoding); return $decoded; } } } else { if (!function_exists('iconv_strlen')) { if (extension_loaded('xml')) { - function iconv_strlen($s, $enc = null) { return p\Iconv::strlen1($s, $enc); } + function iconv_strlen($string, $encoding = null) { return p\Iconv::strlen1($string, $encoding); } } else { - function iconv_strlen($s, $enc = null) { return p\Iconv::strlen2($s, $enc); } + function iconv_strlen($string, $encoding = null) { return p\Iconv::strlen2($string, $encoding); } } } if (!function_exists('iconv_strpos')) { - function iconv_strpos($s, $needle, $offset = 0, $enc = null) { return p\Iconv::iconv_strpos($s, $needle, $offset, $enc); } + function iconv_strpos($haystack, $needle, $offset = 0, $encoding = null) { return p\Iconv::iconv_strpos($haystack, $needle, $offset, $encoding); } } if (!function_exists('iconv_strrpos')) { - function iconv_strrpos($s, $needle, $enc = null) { return p\Iconv::iconv_strrpos($s, $needle, $enc); } + function iconv_strrpos($haystack, $needle, $encoding = null) { return p\Iconv::iconv_strrpos($haystack, $needle, $encoding); } } if (!function_exists('iconv_substr')) { - function iconv_substr($s, $start, $length = 2147483647, $enc = null) { return p\Iconv::iconv_substr($s, $start, $length, $enc); } + function iconv_substr($string, $offset, $length = 2147483647, $encoding = null) { return p\Iconv::iconv_substr($string, $offset, $length, $encoding); } } if (!function_exists('iconv_mime_decode')) { - function iconv_mime_decode($encodedHeaders, $mode = 0, $enc = null) { return p\Iconv::iconv_mime_decode($encodedHeaders, $mode, $enc); } + function iconv_mime_decode($string, $mode = 0, $encoding = null) { return p\Iconv::iconv_mime_decode($string, $mode, $encoding); } } } diff --git a/civicrm/vendor/symfony/polyfill-iconv/bootstrap80.php b/civicrm/vendor/symfony/polyfill-iconv/bootstrap80.php new file mode 100644 index 0000000000000000000000000000000000000000..04b1473b75547ff1e795b53402335f2cb98b28c7 --- /dev/null +++ b/civicrm/vendor/symfony/polyfill-iconv/bootstrap80.php @@ -0,0 +1,80 @@ +<?php + +/* + * This file is part of the Symfony package. + * + * (c) Fabien Potencier <fabien@symfony.com> + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + +use Symfony\Polyfill\Iconv as p; + +if (!defined('ICONV_IMPL')) { + define('ICONV_IMPL', 'Symfony'); +} +if (!defined('ICONV_VERSION')) { + define('ICONV_VERSION', '1.0'); +} +if (!defined('ICONV_MIME_DECODE_STRICT')) { + define('ICONV_MIME_DECODE_STRICT', 1); +} +if (!defined('ICONV_MIME_DECODE_CONTINUE_ON_ERROR')) { + define('ICONV_MIME_DECODE_CONTINUE_ON_ERROR', 2); +} + +if (!function_exists('iconv')) { + function iconv(?string $from_encoding, ?string $to_encoding, ?string $string): string|false { return p\Iconv::iconv((string) $from_encoding, (string) $to_encoding, (string) $string); } +} +if (!function_exists('iconv_get_encoding')) { + function iconv_get_encoding(?string $type = 'all'): array|string|false { return p\Iconv::iconv_get_encoding((string) $type); } +} +if (!function_exists('iconv_set_encoding')) { + function iconv_set_encoding(?string $type, ?string $encoding): bool { return p\Iconv::iconv_set_encoding((string) $type, (string) $encoding); } +} +if (!function_exists('iconv_mime_encode')) { + function iconv_mime_encode(?string $field_name, ?string $field_value, ?array $options = []): string|false { return p\Iconv::iconv_mime_encode((string) $field_name, (string) $field_value, (array) $options); } +} +if (!function_exists('iconv_mime_decode_headers')) { + function iconv_mime_decode_headers(?string $headers, ?int $mode = 0, ?string $encoding = null): array|false { return p\Iconv::iconv_mime_decode_headers((string) $headers, (int) $mode, $encoding); } +} + +if (extension_loaded('mbstring')) { + if (!function_exists('iconv_strlen')) { + function iconv_strlen(?string $string, ?string $encoding = null): int|false { null === $encoding && $encoding = p\Iconv::$internalEncoding; return mb_strlen((string) $string, $encoding); } + } + if (!function_exists('iconv_strpos')) { + function iconv_strpos(?string $haystack, ?string $needle, ?int $offset = 0, ?string $encoding = null): int|false { null === $encoding && $encoding = p\Iconv::$internalEncoding; return mb_strpos((string) $haystack, (string) $needle, (int) $offset, $encoding); } + } + if (!function_exists('iconv_strrpos')) { + function iconv_strrpos(?string $haystack, ?string $needle, ?string $encoding = null): int|false { null === $encoding && $encoding = p\Iconv::$internalEncoding; return mb_strrpos((string) $haystack, (string) $needle, 0, $encoding); } + } + if (!function_exists('iconv_substr')) { + function iconv_substr(?string $string, ?int $offset, ?int $length = null, ?string $encoding = null): string|false { null === $encoding && $encoding = p\Iconv::$internalEncoding; return mb_substr((string) $string, (int) $offset, $length, $encoding); } + } + if (!function_exists('iconv_mime_decode')) { + function iconv_mime_decode($string, $mode = 0, $encoding = null) { $currentMbEncoding = mb_internal_encoding(); null === $encoding && $encoding = p\Iconv::$internalEncoding; mb_internal_encoding($encoding); $decoded = mb_decode_mimeheader($string); mb_internal_encoding($currentMbEncoding); return $decoded; } + } +} else { + if (!function_exists('iconv_strlen')) { + if (extension_loaded('xml')) { + function iconv_strlen(?string $string, ?string $encoding = null): int|false { return p\Iconv::strlen1((string) $string, $encoding); } + } else { + function iconv_strlen(?string $string, ?string $encoding = null): int|false { return p\Iconv::strlen2((string) $string, $encoding); } + } + } + + if (!function_exists('iconv_strpos')) { + function iconv_strpos(?string $haystack, ?string $needle, ?int $offset = 0, ?string $encoding = null): int|false { return p\Iconv::iconv_strpos((string) $haystack, (string) $needle, (int) $offset, $encoding); } + } + if (!function_exists('iconv_strrpos')) { + function iconv_strrpos(?string $haystack, ?string $needle, ?string $encoding = null): int|false { return p\Iconv::iconv_strrpos((string) $haystack, (string) $needle, $encoding); } + } + if (!function_exists('iconv_substr')) { + function iconv_substr(?string $string, ?int $offset, ?int $length = null, ?string $encoding = null): string|false { return p\Iconv::iconv_substr((string) $string, (string) $offset, $length, $encoding); } + } + if (!function_exists('iconv_mime_decode')) { + function iconv_mime_decode(?string $string, ?int $mode = 0, ?string $encoding = null): string|false { return p\Iconv::iconv_mime_decode((string) $string, (int) $mode, $encoding); } + } +} diff --git a/civicrm/vendor/symfony/polyfill-iconv/composer.json b/civicrm/vendor/symfony/polyfill-iconv/composer.json index 3df179e35178ede96d2020fb39da59bcbfd9b6c0..361f55549cfb4de6bc1e7b6b28962d15f9694137 100644 --- a/civicrm/vendor/symfony/polyfill-iconv/composer.json +++ b/civicrm/vendor/symfony/polyfill-iconv/composer.json @@ -16,7 +16,10 @@ } ], "require": { - "php": ">=5.3.3" + "php": ">=7.1" + }, + "provide": { + "ext-iconv": "*" }, "autoload": { "psr-4": { "Symfony\\Polyfill\\Iconv\\": "" }, @@ -28,7 +31,11 @@ "minimum-stability": "dev", "extra": { "branch-alias": { - "dev-master": "1.17-dev" + "dev-main": "1.27-dev" + }, + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" } } } diff --git a/civicrm/vendor/symfony/polyfill-intl-idn/Idn.php b/civicrm/vendor/symfony/polyfill-intl-idn/Idn.php index fee3026df26abb728296c6458dd72bcb8b31b818..86710b94e5f657994a99ab70d23efaa28562f1da 100644 --- a/civicrm/vendor/symfony/polyfill-intl-idn/Idn.php +++ b/civicrm/vendor/symfony/polyfill-intl-idn/Idn.php @@ -723,7 +723,7 @@ final class Idn $qMinusT = $q - $t; $baseMinusT = self::BASE - $t; - $output .= self::encodeDigit($t + ($qMinusT) % ($baseMinusT), false); + $output .= self::encodeDigit($t + $qMinusT % $baseMinusT, false); ++$out; $q = intdiv($qMinusT, $baseMinusT); } diff --git a/civicrm/vendor/symfony/polyfill-intl-idn/composer.json b/civicrm/vendor/symfony/polyfill-intl-idn/composer.json index 71030a2ed72c7a123bafa5a169420046e65d0349..105e3d06cc1df0db844585c5ecc39c9780095850 100644 --- a/civicrm/vendor/symfony/polyfill-intl-idn/composer.json +++ b/civicrm/vendor/symfony/polyfill-intl-idn/composer.json @@ -34,7 +34,7 @@ "minimum-stability": "dev", "extra": { "branch-alias": { - "dev-main": "1.26-dev" + "dev-main": "1.27-dev" }, "thanks": { "name": "symfony/polyfill", diff --git a/civicrm/vendor/symfony/polyfill-intl-normalizer/Normalizer.php b/civicrm/vendor/symfony/polyfill-intl-normalizer/Normalizer.php index 4443c2322af9b70ad4a6d4b1fd0a359d08bdb2cd..81704ab3762ad121aa2c669145d98416c7b32c48 100644 --- a/civicrm/vendor/symfony/polyfill-intl-normalizer/Normalizer.php +++ b/civicrm/vendor/symfony/polyfill-intl-normalizer/Normalizer.php @@ -90,7 +90,7 @@ class Normalizer self::$cC = self::getData('combiningClass'); } - if (null !== $mbEncoding = (2 /* MB_OVERLOAD_STRING */ & (int) ini_get('mbstring.func_overload')) ? mb_internal_encoding() : null) { + if (null !== $mbEncoding = (2 /* MB_OVERLOAD_STRING */ & (int) \ini_get('mbstring.func_overload')) ? mb_internal_encoding() : null) { mb_internal_encoding('8bit'); } diff --git a/civicrm/vendor/symfony/polyfill-intl-normalizer/composer.json b/civicrm/vendor/symfony/polyfill-intl-normalizer/composer.json index eb452bfd419e9f69f8941d2b6948acb4db44c0a8..65f72d645d8449156bb932a42bd05495072de81d 100644 --- a/civicrm/vendor/symfony/polyfill-intl-normalizer/composer.json +++ b/civicrm/vendor/symfony/polyfill-intl-normalizer/composer.json @@ -29,7 +29,7 @@ "minimum-stability": "dev", "extra": { "branch-alias": { - "dev-main": "1.26-dev" + "dev-main": "1.27-dev" }, "thanks": { "name": "symfony/polyfill", diff --git a/civicrm/vendor/symfony/polyfill-mbstring/Mbstring.php b/civicrm/vendor/symfony/polyfill-mbstring/Mbstring.php index 693749f22b85eb605470b470aba0d58783ca32ac..bce5c4a84ab8b585a0b86b16d44fecb1a5f36c27 100644 --- a/civicrm/vendor/symfony/polyfill-mbstring/Mbstring.php +++ b/civicrm/vendor/symfony/polyfill-mbstring/Mbstring.php @@ -80,7 +80,7 @@ final class Mbstring public static function mb_convert_encoding($s, $toEncoding, $fromEncoding = null) { - if (\is_array($fromEncoding) || ($fromEncoding !== null && false !== strpos($fromEncoding, ','))) { + if (\is_array($fromEncoding) || (null !== $fromEncoding && false !== strpos($fromEncoding, ','))) { $fromEncoding = self::mb_detect_encoding($s, $fromEncoding); } else { $fromEncoding = self::getEncoding($fromEncoding); @@ -102,7 +102,7 @@ final class Mbstring $fromEncoding = 'Windows-1252'; } if ('UTF-8' !== $fromEncoding) { - $s = \iconv($fromEncoding, 'UTF-8//IGNORE', $s); + $s = iconv($fromEncoding, 'UTF-8//IGNORE', $s); } return preg_replace_callback('/[\x80-\xFF]+/', [__CLASS__, 'html_encoding_callback'], $s); @@ -113,7 +113,7 @@ final class Mbstring $fromEncoding = 'UTF-8'; } - return \iconv($fromEncoding, $toEncoding.'//IGNORE', $s); + return iconv($fromEncoding, $toEncoding.'//IGNORE', $s); } public static function mb_convert_variables($toEncoding, $fromEncoding, &...$vars) @@ -130,7 +130,7 @@ final class Mbstring public static function mb_decode_mimeheader($s) { - return \iconv_mime_decode($s, 2, self::$internalEncoding); + return iconv_mime_decode($s, 2, self::$internalEncoding); } public static function mb_encode_mimeheader($s, $charset = null, $transferEncoding = null, $linefeed = null, $indent = null) @@ -140,7 +140,7 @@ final class Mbstring public static function mb_decode_numericentity($s, $convmap, $encoding = null) { - if (null !== $s && !is_scalar($s) && !(\is_object($s) && method_exists($s, '__toString'))) { + if (null !== $s && !\is_scalar($s) && !(\is_object($s) && method_exists($s, '__toString'))) { trigger_error('mb_decode_numericentity() expects parameter 1 to be string, '.\gettype($s).' given', \E_USER_WARNING); return null; @@ -150,7 +150,7 @@ final class Mbstring return false; } - if (null !== $encoding && !is_scalar($encoding)) { + if (null !== $encoding && !\is_scalar($encoding)) { trigger_error('mb_decode_numericentity() expects parameter 3 to be string, '.\gettype($s).' given', \E_USER_WARNING); return ''; // Instead of null (cf. mb_encode_numericentity). @@ -166,10 +166,10 @@ final class Mbstring if ('UTF-8' === $encoding) { $encoding = null; if (!preg_match('//u', $s)) { - $s = @\iconv('UTF-8', 'UTF-8//IGNORE', $s); + $s = @iconv('UTF-8', 'UTF-8//IGNORE', $s); } } else { - $s = \iconv($encoding, 'UTF-8//IGNORE', $s); + $s = iconv($encoding, 'UTF-8//IGNORE', $s); } $cnt = floor(\count($convmap) / 4) * 4; @@ -195,12 +195,12 @@ final class Mbstring return $s; } - return \iconv('UTF-8', $encoding.'//IGNORE', $s); + return iconv('UTF-8', $encoding.'//IGNORE', $s); } public static function mb_encode_numericentity($s, $convmap, $encoding = null, $is_hex = false) { - if (null !== $s && !is_scalar($s) && !(\is_object($s) && method_exists($s, '__toString'))) { + if (null !== $s && !\is_scalar($s) && !(\is_object($s) && method_exists($s, '__toString'))) { trigger_error('mb_encode_numericentity() expects parameter 1 to be string, '.\gettype($s).' given', \E_USER_WARNING); return null; @@ -210,13 +210,13 @@ final class Mbstring return false; } - if (null !== $encoding && !is_scalar($encoding)) { + if (null !== $encoding && !\is_scalar($encoding)) { trigger_error('mb_encode_numericentity() expects parameter 3 to be string, '.\gettype($s).' given', \E_USER_WARNING); return null; // Instead of '' (cf. mb_decode_numericentity). } - if (null !== $is_hex && !is_scalar($is_hex)) { + if (null !== $is_hex && !\is_scalar($is_hex)) { trigger_error('mb_encode_numericentity() expects parameter 4 to be boolean, '.\gettype($s).' given', \E_USER_WARNING); return null; @@ -232,10 +232,10 @@ final class Mbstring if ('UTF-8' === $encoding) { $encoding = null; if (!preg_match('//u', $s)) { - $s = @\iconv('UTF-8', 'UTF-8//IGNORE', $s); + $s = @iconv('UTF-8', 'UTF-8//IGNORE', $s); } } else { - $s = \iconv($encoding, 'UTF-8//IGNORE', $s); + $s = iconv($encoding, 'UTF-8//IGNORE', $s); } static $ulenMask = ["\xC0" => 2, "\xD0" => 2, "\xE0" => 3, "\xF0" => 4]; @@ -265,7 +265,7 @@ final class Mbstring return $result; } - return \iconv('UTF-8', $encoding.'//IGNORE', $result); + return iconv('UTF-8', $encoding.'//IGNORE', $result); } public static function mb_convert_case($s, $mode, $encoding = null) @@ -280,10 +280,10 @@ final class Mbstring if ('UTF-8' === $encoding) { $encoding = null; if (!preg_match('//u', $s)) { - $s = @\iconv('UTF-8', 'UTF-8//IGNORE', $s); + $s = @iconv('UTF-8', 'UTF-8//IGNORE', $s); } } else { - $s = \iconv($encoding, 'UTF-8//IGNORE', $s); + $s = iconv($encoding, 'UTF-8//IGNORE', $s); } if (\MB_CASE_TITLE == $mode) { @@ -343,7 +343,7 @@ final class Mbstring return $s; } - return \iconv('UTF-8', $encoding.'//IGNORE', $s); + return iconv('UTF-8', $encoding.'//IGNORE', $s); } public static function mb_internal_encoding($encoding = null) @@ -354,7 +354,7 @@ final class Mbstring $normalizedEncoding = self::getEncoding($encoding); - if ('UTF-8' === $normalizedEncoding || false !== @\iconv($normalizedEncoding, $normalizedEncoding, ' ')) { + if ('UTF-8' === $normalizedEncoding || false !== @iconv($normalizedEncoding, $normalizedEncoding, ' ')) { self::$internalEncoding = $normalizedEncoding; return true; @@ -413,7 +413,7 @@ final class Mbstring $encoding = self::$internalEncoding; } - return self::mb_detect_encoding($var, [$encoding]) || false !== @\iconv($encoding, $encoding, $var); + return self::mb_detect_encoding($var, [$encoding]) || false !== @iconv($encoding, $encoding, $var); } public static function mb_detect_encoding($str, $encodingList = null, $strict = false) @@ -488,7 +488,7 @@ final class Mbstring return \strlen($s); } - return @\iconv_strlen($s, $encoding); + return @iconv_strlen($s, $encoding); } public static function mb_strpos($haystack, $needle, $offset = 0, $encoding = null) @@ -509,7 +509,7 @@ final class Mbstring return 0; } - return \iconv_strpos($haystack, $needle, $offset, $encoding); + return iconv_strpos($haystack, $needle, $offset, $encoding); } public static function mb_strrpos($haystack, $needle, $offset = 0, $encoding = null) @@ -533,7 +533,7 @@ final class Mbstring } $pos = '' !== $needle || 80000 > \PHP_VERSION_ID - ? \iconv_strrpos($haystack, $needle, $encoding) + ? iconv_strrpos($haystack, $needle, $encoding) : self::mb_strlen($haystack, $encoding); return false !== $pos ? $offset + $pos : false; @@ -541,7 +541,7 @@ final class Mbstring public static function mb_str_split($string, $split_length = 1, $encoding = null) { - if (null !== $string && !is_scalar($string) && !(\is_object($string) && method_exists($string, '__toString'))) { + if (null !== $string && !\is_scalar($string) && !(\is_object($string) && method_exists($string, '__toString'))) { trigger_error('mb_str_split() expects parameter 1 to be string, '.\gettype($string).' given', \E_USER_WARNING); return null; @@ -550,6 +550,7 @@ final class Mbstring if (1 > $split_length = (int) $split_length) { if (80000 > \PHP_VERSION_ID) { trigger_error('The length of each segment must be greater than zero', \E_USER_WARNING); + return false; } @@ -617,7 +618,7 @@ final class Mbstring } if ($start < 0) { - $start = \iconv_strlen($s, $encoding) + $start; + $start = iconv_strlen($s, $encoding) + $start; if ($start < 0) { $start = 0; } @@ -626,13 +627,13 @@ final class Mbstring if (null === $length) { $length = 2147483647; } elseif ($length < 0) { - $length = \iconv_strlen($s, $encoding) + $length - $start; + $length = iconv_strlen($s, $encoding) + $length - $start; if ($length < 0) { return ''; } } - return (string) \iconv_substr($s, $start, $length, $encoding); + return (string) iconv_substr($s, $start, $length, $encoding); } public static function mb_stripos($haystack, $needle, $offset = 0, $encoding = null) @@ -657,7 +658,7 @@ final class Mbstring $pos = strrpos($haystack, $needle); } else { $needle = self::mb_substr($needle, 0, 1, $encoding); - $pos = \iconv_strrpos($haystack, $needle, $encoding); + $pos = iconv_strrpos($haystack, $needle, $encoding); } return self::getSubpart($pos, $part, $haystack, $encoding); @@ -736,12 +737,12 @@ final class Mbstring $encoding = self::getEncoding($encoding); if ('UTF-8' !== $encoding) { - $s = \iconv($encoding, 'UTF-8//IGNORE', $s); + $s = iconv($encoding, 'UTF-8//IGNORE', $s); } $s = preg_replace('/[\x{1100}-\x{115F}\x{2329}\x{232A}\x{2E80}-\x{303E}\x{3040}-\x{A4CF}\x{AC00}-\x{D7A3}\x{F900}-\x{FAFF}\x{FE10}-\x{FE19}\x{FE30}-\x{FE6F}\x{FF00}-\x{FF60}\x{FFE0}-\x{FFE6}\x{20000}-\x{2FFFD}\x{30000}-\x{3FFFD}]/u', '', $s, -1, $wide); - return ($wide << 1) + \iconv_strlen($s, 'UTF-8'); + return ($wide << 1) + iconv_strlen($s, 'UTF-8'); } public static function mb_substr_count($haystack, $needle, $encoding = null) diff --git a/civicrm/vendor/symfony/polyfill-mbstring/composer.json b/civicrm/vendor/symfony/polyfill-mbstring/composer.json index 9cd2e924e9f698db14413791068d8bdafa03933b..44895536badcd7c11c0c1ed8e41cb8ce626ced89 100644 --- a/civicrm/vendor/symfony/polyfill-mbstring/composer.json +++ b/civicrm/vendor/symfony/polyfill-mbstring/composer.json @@ -31,7 +31,7 @@ "minimum-stability": "dev", "extra": { "branch-alias": { - "dev-main": "1.26-dev" + "dev-main": "1.27-dev" }, "thanks": { "name": "symfony/polyfill", diff --git a/civicrm/vendor/symfony/polyfill-php72/Php72.php b/civicrm/vendor/symfony/polyfill-php72/Php72.php index 5e20d5bf8f1f5aa20f8aa3471a5e2cda134c47d6..7bf96c9969c1489d67550a190f604a44f5bcec32 100644 --- a/civicrm/vendor/symfony/polyfill-php72/Php72.php +++ b/civicrm/vendor/symfony/polyfill-php72/Php72.php @@ -83,7 +83,7 @@ final class Php72 'SunOS' => 'Solaris', ]; - return isset($map[\PHP_OS]) ? $map[\PHP_OS] : 'Unknown'; + return $map[\PHP_OS] ?? 'Unknown'; } public static function spl_object_id($object) @@ -96,7 +96,7 @@ final class Php72 } // On 32-bit systems, PHP_INT_SIZE is 4, - return self::$hashMask ^ hexdec(substr($hash, 16 - (\PHP_INT_SIZE * 2 - 1), (\PHP_INT_SIZE * 2 - 1))); + return self::$hashMask ^ hexdec(substr($hash, 16 - (\PHP_INT_SIZE * 2 - 1), \PHP_INT_SIZE * 2 - 1)); } public static function sapi_windows_vt100_support($stream, $enable = null) @@ -167,7 +167,7 @@ final class Php72 self::$hashMask = (int) substr(ob_get_clean(), 17); } - self::$hashMask ^= hexdec(substr(spl_object_hash($obj), 16 - (\PHP_INT_SIZE * 2 - 1), (\PHP_INT_SIZE * 2 - 1))); + self::$hashMask ^= hexdec(substr(spl_object_hash($obj), 16 - (\PHP_INT_SIZE * 2 - 1), \PHP_INT_SIZE * 2 - 1)); } public static function mb_chr($code, $encoding = null) diff --git a/civicrm/vendor/symfony/polyfill-php72/composer.json b/civicrm/vendor/symfony/polyfill-php72/composer.json index 4eac690e0812ff697828c7e457ee1f3b8d51e5ce..5f17af3438a0803adb81d8755e6507bdf09916da 100644 --- a/civicrm/vendor/symfony/polyfill-php72/composer.json +++ b/civicrm/vendor/symfony/polyfill-php72/composer.json @@ -25,7 +25,7 @@ "minimum-stability": "dev", "extra": { "branch-alias": { - "dev-main": "1.26-dev" + "dev-main": "1.27-dev" }, "thanks": { "name": "symfony/polyfill", diff --git a/civicrm/vendor/symfony/polyfill-php73/README.md b/civicrm/vendor/symfony/polyfill-php73/README.md index b3ebbce511bcd3840e6565753a9854b6f459cefe..032fafbda0ade11be2dcb1b2f9b373e8e0d199a2 100644 --- a/civicrm/vendor/symfony/polyfill-php73/README.md +++ b/civicrm/vendor/symfony/polyfill-php73/README.md @@ -10,7 +10,7 @@ This component provides functions added to PHP 7.3 core: - [`JsonException`](https://php.net/JsonException) More information can be found in the -[main Polyfill README](https://github.com/symfony/polyfill/blob/master/README.md). +[main Polyfill README](https://github.com/symfony/polyfill/blob/main/README.md). License ======= diff --git a/civicrm/vendor/symfony/polyfill-php73/composer.json b/civicrm/vendor/symfony/polyfill-php73/composer.json index a7fe47875283e530d6963b2778d12ec8a12bc5df..b5c58ec1930418f2b68412a3a284685d01c5bb71 100644 --- a/civicrm/vendor/symfony/polyfill-php73/composer.json +++ b/civicrm/vendor/symfony/polyfill-php73/composer.json @@ -26,7 +26,7 @@ "minimum-stability": "dev", "extra": { "branch-alias": { - "dev-main": "1.23-dev" + "dev-main": "1.27-dev" }, "thanks": { "name": "symfony/polyfill", diff --git a/civicrm/vendor/symfony/polyfill-php74/Php74.php b/civicrm/vendor/symfony/polyfill-php74/Php74.php index 4480b45d07c7c16e09e2f9a99aad8ec152cab85f..f372c450cd93715de9f78db08a6c59c3233855d4 100644 --- a/civicrm/vendor/symfony/polyfill-php74/Php74.php +++ b/civicrm/vendor/symfony/polyfill-php74/Php74.php @@ -43,7 +43,7 @@ final class Php74 public static function mb_str_split($string, $split_length = 1, $encoding = null) { - if (null !== $string && !is_scalar($string) && !(\is_object($string) && method_exists($string, '__toString'))) { + if (null !== $string && !\is_scalar($string) && !(\is_object($string) && method_exists($string, '__toString'))) { trigger_error('mb_str_split() expects parameter 1 to be string, '.\gettype($string).' given', \E_USER_WARNING); return null; diff --git a/civicrm/vendor/symfony/polyfill-php74/composer.json b/civicrm/vendor/symfony/polyfill-php74/composer.json index bb33fd9d8a6834ce5669765a4bebd263adbc0e15..2914058223bde547a30813b2d8abab9115a772bb 100644 --- a/civicrm/vendor/symfony/polyfill-php74/composer.json +++ b/civicrm/vendor/symfony/polyfill-php74/composer.json @@ -29,7 +29,7 @@ "minimum-stability": "dev", "extra": { "branch-alias": { - "dev-main": "1.26-dev" + "dev-main": "1.27-dev" }, "thanks": { "name": "symfony/polyfill", diff --git a/civicrm/vendor/symfony/polyfill-php80/Resources/stubs/Attribute.php b/civicrm/vendor/symfony/polyfill-php80/Resources/stubs/Attribute.php index 7ea6d2772dcaa175ec17ec39b852553fd189b5cc..2b955423fcd8b3ef6100c16e47adb73bffd11672 100644 --- a/civicrm/vendor/symfony/polyfill-php80/Resources/stubs/Attribute.php +++ b/civicrm/vendor/symfony/polyfill-php80/Resources/stubs/Attribute.php @@ -1,5 +1,14 @@ <?php +/* + * This file is part of the Symfony package. + * + * (c) Fabien Potencier <fabien@symfony.com> + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + #[Attribute(Attribute::TARGET_CLASS)] final class Attribute { diff --git a/civicrm/vendor/symfony/polyfill-php80/Resources/stubs/PhpToken.php b/civicrm/vendor/symfony/polyfill-php80/Resources/stubs/PhpToken.php index 72f10812b36de72bfd50b4c60919ce646fef57f8..bd1212f6e44f4f029905582bb4544ee5ec1d5bbf 100644 --- a/civicrm/vendor/symfony/polyfill-php80/Resources/stubs/PhpToken.php +++ b/civicrm/vendor/symfony/polyfill-php80/Resources/stubs/PhpToken.php @@ -1,6 +1,15 @@ <?php -if (\PHP_VERSION_ID < 80000 && \extension_loaded('tokenizer')) { +/* + * This file is part of the Symfony package. + * + * (c) Fabien Potencier <fabien@symfony.com> + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + +if (\PHP_VERSION_ID < 80000 && extension_loaded('tokenizer')) { class PhpToken extends Symfony\Polyfill\Php80\PhpToken { } diff --git a/civicrm/vendor/symfony/polyfill-php80/Resources/stubs/Stringable.php b/civicrm/vendor/symfony/polyfill-php80/Resources/stubs/Stringable.php index 77e037cb58d5acc48e5eb675c337fc2acff1d3f3..7c62d7508b6604d4871c58100063ed93206fca8f 100644 --- a/civicrm/vendor/symfony/polyfill-php80/Resources/stubs/Stringable.php +++ b/civicrm/vendor/symfony/polyfill-php80/Resources/stubs/Stringable.php @@ -1,5 +1,14 @@ <?php +/* + * This file is part of the Symfony package. + * + * (c) Fabien Potencier <fabien@symfony.com> + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + if (\PHP_VERSION_ID < 80000) { interface Stringable { diff --git a/civicrm/vendor/symfony/polyfill-php80/Resources/stubs/UnhandledMatchError.php b/civicrm/vendor/symfony/polyfill-php80/Resources/stubs/UnhandledMatchError.php index 37937cbfae105a4f357acf202a923cf23589ef17..01c6c6c8abf47fedeae96b7bbcace9a973542e9f 100644 --- a/civicrm/vendor/symfony/polyfill-php80/Resources/stubs/UnhandledMatchError.php +++ b/civicrm/vendor/symfony/polyfill-php80/Resources/stubs/UnhandledMatchError.php @@ -1,5 +1,14 @@ <?php +/* + * This file is part of the Symfony package. + * + * (c) Fabien Potencier <fabien@symfony.com> + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + if (\PHP_VERSION_ID < 80000) { class UnhandledMatchError extends Error { diff --git a/civicrm/vendor/symfony/polyfill-php80/Resources/stubs/ValueError.php b/civicrm/vendor/symfony/polyfill-php80/Resources/stubs/ValueError.php index a3a9b88b09657f6d263f956ca918144d8716cb43..783dbc28c78d3e4835905887c33568ffdf95e72e 100644 --- a/civicrm/vendor/symfony/polyfill-php80/Resources/stubs/ValueError.php +++ b/civicrm/vendor/symfony/polyfill-php80/Resources/stubs/ValueError.php @@ -1,5 +1,14 @@ <?php +/* + * This file is part of the Symfony package. + * + * (c) Fabien Potencier <fabien@symfony.com> + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + if (\PHP_VERSION_ID < 80000) { class ValueError extends Error { diff --git a/civicrm/vendor/symfony/polyfill-php80/composer.json b/civicrm/vendor/symfony/polyfill-php80/composer.json index cd3e9b65f464a6b4952a5454100894c8cff7692e..bd9a3262a971ac44973c249998cd8fd307de17ec 100644 --- a/civicrm/vendor/symfony/polyfill-php80/composer.json +++ b/civicrm/vendor/symfony/polyfill-php80/composer.json @@ -30,7 +30,7 @@ "minimum-stability": "dev", "extra": { "branch-alias": { - "dev-main": "1.26-dev" + "dev-main": "1.27-dev" }, "thanks": { "name": "symfony/polyfill", diff --git a/civicrm/vendor/symfony/polyfill-php81/Resources/stubs/ReturnTypeWillChange.php b/civicrm/vendor/symfony/polyfill-php81/Resources/stubs/ReturnTypeWillChange.php index f4cad34f646cac25f0712b3ddfc4c6ebdc75fe4c..cb7720a8da1cb9e005c86bb78ad8c18c93bef5ae 100644 --- a/civicrm/vendor/symfony/polyfill-php81/Resources/stubs/ReturnTypeWillChange.php +++ b/civicrm/vendor/symfony/polyfill-php81/Resources/stubs/ReturnTypeWillChange.php @@ -1,5 +1,14 @@ <?php +/* + * This file is part of the Symfony package. + * + * (c) Fabien Potencier <fabien@symfony.com> + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + if (\PHP_VERSION_ID < 80100) { #[Attribute(Attribute::TARGET_METHOD)] final class ReturnTypeWillChange diff --git a/civicrm/vendor/symfony/polyfill-php81/composer.json b/civicrm/vendor/symfony/polyfill-php81/composer.json index 014da788e38fd2e42e07e8865e3e2daea0fda41f..149b598215ce06ab392f094a4f4eb7bad41f7273 100644 --- a/civicrm/vendor/symfony/polyfill-php81/composer.json +++ b/civicrm/vendor/symfony/polyfill-php81/composer.json @@ -26,7 +26,7 @@ "minimum-stability": "dev", "extra": { "branch-alias": { - "dev-main": "1.26-dev" + "dev-main": "1.27-dev" }, "thanks": { "name": "symfony/polyfill", diff --git a/civicrm/vendor/symfony/polyfill-php82/NoDynamicProperties.php b/civicrm/vendor/symfony/polyfill-php82/NoDynamicProperties.php new file mode 100644 index 0000000000000000000000000000000000000000..450deff4575487d88069bf77c598694007d3fcfc --- /dev/null +++ b/civicrm/vendor/symfony/polyfill-php82/NoDynamicProperties.php @@ -0,0 +1,23 @@ +<?php + +/* + * This file is part of the Symfony package. + * + * (c) Fabien Potencier <fabien@symfony.com> + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + +namespace Symfony\Polyfill\Php82; + +/** + * @internal + */ +trait NoDynamicProperties +{ + public function __set(string $name, $value): void + { + throw new \Error('Cannot create dynamic property '.self::class.'::$'.$name); + } +} diff --git a/civicrm/vendor/symfony/polyfill-php82/README.md b/civicrm/vendor/symfony/polyfill-php82/README.md index ae25c3e5091c2c2eaeaf044fa785c0c0ddbf3f94..4a4d88175603d7c4fad4e56fc96a813705e2ceb0 100644 --- a/civicrm/vendor/symfony/polyfill-php82/README.md +++ b/civicrm/vendor/symfony/polyfill-php82/README.md @@ -6,6 +6,9 @@ This component provides features added to PHP 8.2 core: - [`AllowDynamicProperties`](https://wiki.php.net/rfc/deprecate_dynamic_properties) - [`SensitiveParameter`](https://wiki.php.net/rfc/redact_parameters_in_back_traces) - [`SensitiveParameterValue`](https://wiki.php.net/rfc/redact_parameters_in_back_traces) +- [`Random\Engine`](https://wiki.php.net/rfc/rng_extension) +- [`Random\Engine\CryptoSafeEngine`](https://wiki.php.net/rfc/rng_extension) +- [`Random\Engine\Secure`](https://wiki.php.net/rfc/rng_extension) (check [arokettu/random-polyfill](https://packagist.org/packages/arokettu/random-polyfill) for more engines) More information can be found in the [main Polyfill README](https://github.com/symfony/polyfill/blob/main/README.md). diff --git a/civicrm/vendor/symfony/polyfill-php82/Random/Engine/Secure.php b/civicrm/vendor/symfony/polyfill-php82/Random/Engine/Secure.php new file mode 100644 index 0000000000000000000000000000000000000000..5565386c25a24b3a6f3c05d90c63daa8650e6084 --- /dev/null +++ b/civicrm/vendor/symfony/polyfill-php82/Random/Engine/Secure.php @@ -0,0 +1,50 @@ +<?php + +/* + * This file is part of the Symfony package. + * + * (c) Fabien Potencier <fabien@symfony.com> + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + +namespace Symfony\Polyfill\Php82\Random\Engine; + +use Random\RandomException; +use Symfony\Polyfill\Php82\NoDynamicProperties; + +/** + * @author Tim Düsterhus <tim@bastelstu.be> + * @author Anton Smirnov <sandfox@sandfox.me> + * + * @internal + */ +class Secure +{ + use NoDynamicProperties; + + public function generate(): string + { + try { + return random_bytes(\PHP_INT_SIZE); + } catch (\Exception $e) { + throw new RandomException($e->getMessage(), $e->getCode(), $e->getPrevious()); + } + } + + public function __sleep(): array + { + throw new \Exception("Serialization of 'Random\Engine\Secure' is not allowed"); + } + + public function __wakeup(): void + { + throw new \Exception("Unserialization of 'Random\Engine\Secure' is not allowed"); + } + + public function __clone() + { + throw new \Error('Trying to clone an uncloneable object of class Random\Engine\Secure'); + } +} diff --git a/civicrm/vendor/symfony/polyfill-php82/Resources/stubs/AllowDynamicProperties.php b/civicrm/vendor/symfony/polyfill-php82/Resources/stubs/AllowDynamicProperties.php index 559616d5404ddf51f0786426b7219ee40ccb9fec..d216e0adee96dc6d91c092d8f38f85e47e60c015 100644 --- a/civicrm/vendor/symfony/polyfill-php82/Resources/stubs/AllowDynamicProperties.php +++ b/civicrm/vendor/symfony/polyfill-php82/Resources/stubs/AllowDynamicProperties.php @@ -1,5 +1,14 @@ <?php +/* + * This file is part of the Symfony package. + * + * (c) Fabien Potencier <fabien@symfony.com> + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + if (\PHP_VERSION_ID < 80200) { #[Attribute(Attribute::TARGET_CLASS)] final class AllowDynamicProperties diff --git a/civicrm/vendor/symfony/polyfill-php82/Resources/stubs/Random/BrokenRandomEngineError.php b/civicrm/vendor/symfony/polyfill-php82/Resources/stubs/Random/BrokenRandomEngineError.php new file mode 100644 index 0000000000000000000000000000000000000000..971ed570d0d4787148370a58d8f0417d74405dff --- /dev/null +++ b/civicrm/vendor/symfony/polyfill-php82/Resources/stubs/Random/BrokenRandomEngineError.php @@ -0,0 +1,18 @@ +<?php + +/* + * This file is part of the Symfony package. + * + * (c) Fabien Potencier <fabien@symfony.com> + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + +namespace Random; + +if (\PHP_VERSION_ID < 80200) { + class BrokenRandomEngineError extends RandomError + { + } +} diff --git a/civicrm/vendor/symfony/polyfill-php82/Resources/stubs/Random/CryptoSafeEngine.php b/civicrm/vendor/symfony/polyfill-php82/Resources/stubs/Random/CryptoSafeEngine.php new file mode 100644 index 0000000000000000000000000000000000000000..fb32496f10bbf3b27ce709efc5d6a3218b902f9b --- /dev/null +++ b/civicrm/vendor/symfony/polyfill-php82/Resources/stubs/Random/CryptoSafeEngine.php @@ -0,0 +1,18 @@ +<?php + +/* + * This file is part of the Symfony package. + * + * (c) Fabien Potencier <fabien@symfony.com> + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + +namespace Random; + +if (\PHP_VERSION_ID < 80200) { + interface CryptoSafeEngine extends Engine + { + } +} diff --git a/civicrm/vendor/symfony/polyfill-php82/Resources/stubs/Random/Engine.php b/civicrm/vendor/symfony/polyfill-php82/Resources/stubs/Random/Engine.php new file mode 100644 index 0000000000000000000000000000000000000000..4fc78c8fb05ee6d0c4753cf8b3fbb244069f94d8 --- /dev/null +++ b/civicrm/vendor/symfony/polyfill-php82/Resources/stubs/Random/Engine.php @@ -0,0 +1,19 @@ +<?php + +/* + * This file is part of the Symfony package. + * + * (c) Fabien Potencier <fabien@symfony.com> + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + +namespace Random; + +if (\PHP_VERSION_ID < 80200) { + interface Engine + { + public function generate(): string; + } +} diff --git a/civicrm/vendor/symfony/polyfill-php82/Resources/stubs/Random/Engine/Secure.php b/civicrm/vendor/symfony/polyfill-php82/Resources/stubs/Random/Engine/Secure.php new file mode 100644 index 0000000000000000000000000000000000000000..e779b54451c9227a6b3b877e6a22eff9f6cb3383 --- /dev/null +++ b/civicrm/vendor/symfony/polyfill-php82/Resources/stubs/Random/Engine/Secure.php @@ -0,0 +1,20 @@ +<?php + +/* + * This file is part of the Symfony package. + * + * (c) Fabien Potencier <fabien@symfony.com> + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + +namespace Random\Engine; + +use Symfony\Polyfill\Php82 as p; + +if (\PHP_VERSION_ID < 80200) { + final class Secure extends p\Random\Engine\Secure implements \Random\CryptoSafeEngine + { + } +} diff --git a/civicrm/vendor/symfony/polyfill-php82/Resources/stubs/Random/RandomError.php b/civicrm/vendor/symfony/polyfill-php82/Resources/stubs/Random/RandomError.php new file mode 100644 index 0000000000000000000000000000000000000000..bf5e89e01ff5b8a94631980bf79bb7f624b3aa6e --- /dev/null +++ b/civicrm/vendor/symfony/polyfill-php82/Resources/stubs/Random/RandomError.php @@ -0,0 +1,21 @@ +<?php + +/* + * This file is part of the Symfony package. + * + * (c) Fabien Potencier <fabien@symfony.com> + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + +namespace Random; + +use Symfony\Polyfill\Php82\NoDynamicProperties; + +if (\PHP_VERSION_ID < 80200) { + class RandomError extends \Error + { + use NoDynamicProperties; + } +} diff --git a/civicrm/vendor/symfony/polyfill-php82/Resources/stubs/Random/RandomException.php b/civicrm/vendor/symfony/polyfill-php82/Resources/stubs/Random/RandomException.php new file mode 100644 index 0000000000000000000000000000000000000000..3b9aae140ac30c9705f499c76152aa2e32303697 --- /dev/null +++ b/civicrm/vendor/symfony/polyfill-php82/Resources/stubs/Random/RandomException.php @@ -0,0 +1,21 @@ +<?php + +/* + * This file is part of the Symfony package. + * + * (c) Fabien Potencier <fabien@symfony.com> + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + +namespace Random; + +use Symfony\Polyfill\Php82\NoDynamicProperties; + +if (\PHP_VERSION_ID < 80200) { + class RandomException extends \Exception + { + use NoDynamicProperties; + } +} diff --git a/civicrm/vendor/symfony/polyfill-php82/Resources/stubs/SensitiveParameter.php b/civicrm/vendor/symfony/polyfill-php82/Resources/stubs/SensitiveParameter.php index 4aaa30c2a15b685fd2afc3391075e0efebbee3b8..aea4dfbddcea242ea492825bf232be5cedf17512 100644 --- a/civicrm/vendor/symfony/polyfill-php82/Resources/stubs/SensitiveParameter.php +++ b/civicrm/vendor/symfony/polyfill-php82/Resources/stubs/SensitiveParameter.php @@ -1,5 +1,14 @@ <?php +/* + * This file is part of the Symfony package. + * + * (c) Fabien Potencier <fabien@symfony.com> + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + if (\PHP_VERSION_ID < 80200) { #[Attribute(Attribute::TARGET_PARAMETER)] final class SensitiveParameter diff --git a/civicrm/vendor/symfony/polyfill-php82/Resources/stubs/SensitiveParameterValue.php b/civicrm/vendor/symfony/polyfill-php82/Resources/stubs/SensitiveParameterValue.php index 88933903012256989a16a26a9bc874521850d2ac..8349170b622c288968627caabe413233c3962a49 100644 --- a/civicrm/vendor/symfony/polyfill-php82/Resources/stubs/SensitiveParameterValue.php +++ b/civicrm/vendor/symfony/polyfill-php82/Resources/stubs/SensitiveParameterValue.php @@ -1,5 +1,14 @@ <?php +/* + * This file is part of the Symfony package. + * + * (c) Fabien Potencier <fabien@symfony.com> + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + if (\PHP_VERSION_ID < 80200) { final class SensitiveParameterValue extends Symfony\Polyfill\Php82\SensitiveParameterValue { diff --git a/civicrm/vendor/symfony/polyfill-php82/bootstrap.php b/civicrm/vendor/symfony/polyfill-php82/bootstrap.php index 63818431367fad91c2459c16b34c9c3cff30cea5..1ebfdba286781e3bcd735ba118bea2e7f6f35a8d 100644 --- a/civicrm/vendor/symfony/polyfill-php82/bootstrap.php +++ b/civicrm/vendor/symfony/polyfill-php82/bootstrap.php @@ -9,8 +9,6 @@ * file that was distributed with this source code. */ -use Symfony\Polyfill\Php82 as p; - if (\PHP_VERSION_ID >= 80200) { return; } diff --git a/civicrm/vendor/symfony/polyfill-php82/composer.json b/civicrm/vendor/symfony/polyfill-php82/composer.json index e8fbb1ff5d5cd4ba355ae00810e80cf9e7d0fee2..cf56362198b15776f983fab88cbd66205c26147f 100644 --- a/civicrm/vendor/symfony/polyfill-php82/composer.json +++ b/civicrm/vendor/symfony/polyfill-php82/composer.json @@ -26,7 +26,7 @@ "minimum-stability": "dev", "extra": { "branch-alias": { - "dev-main": "1.26-dev" + "dev-main": "1.27-dev" }, "thanks": { "name": "symfony/polyfill", diff --git a/civicrm/xml/schema/Core/CustomField.xml b/civicrm/xml/schema/Core/CustomField.xml index 2afefa9b2536ce0b4e3b36f597c9ea0e1a11b1b6..f9fd912d76df47a6f16fe1a67cd30a8053d3e781 100644 --- a/civicrm/xml/schema/Core/CustomField.xml +++ b/civicrm/xml/schema/Core/CustomField.xml @@ -171,6 +171,7 @@ <length>64</length> <comment>Optional format instructions for specific field types, like date types.</comment> <add>1.1</add> + <drop>5.59</drop> </field> <field> <name>attributes</name> diff --git a/civicrm/xml/schema/Core/Email.xml b/civicrm/xml/schema/Core/Email.xml index 50cebbc1b01627e1b9ae65903763d3ae149b98b8..f06cfa6ee1c5e5aef1fd79842192b2505b6fc461 100644 --- a/civicrm/xml/schema/Core/Email.xml +++ b/civicrm/xml/schema/Core/Email.xml @@ -84,7 +84,7 @@ </index> <field> <name>is_primary</name> - <title>Primary email</title> + <title>Is Primary</title> <type>boolean</type> <default>0</default> <required>true</required> diff --git a/civicrm/xml/schema/Core/OptionGroup.xml b/civicrm/xml/schema/Core/OptionGroup.xml index f4e3f6203127a85dab48041ac1ebd7c39219f608..84c8db327682d3cec8249df82c1485792da799af 100644 --- a/civicrm/xml/schema/Core/OptionGroup.xml +++ b/civicrm/xml/schema/Core/OptionGroup.xml @@ -6,6 +6,10 @@ <name>civicrm_option_group</name> <add>1.5</add> <log>true</log> + <paths> + <add>civicrm/admin/options?action=add&reset=1</add> + <update>civicrm/admin/options?action=update&reset=1&id=[id]</update> + </paths> <field> <name>id</name> <title>Option Group ID</title> @@ -29,15 +33,21 @@ <required>true</required> <comment>Option group name. Used as selection key by class properties which lookup options in civicrm_option_value.</comment> <add>1.5</add> + <html> + <type>Text</type> + </html> </field> <field> <name>title</name> - <title>Option Group title</title> + <title>Option Group Title</title> <type>varchar</type> <length>255</length> <localizable>true</localizable> <comment>Option Group title.</comment> <add>1.5</add> + <html> + <type>Text</type> + </html> </field> <field> <name>description</name> @@ -46,6 +56,9 @@ <localizable>true</localizable> <comment>Option group description.</comment> <add>1.5</add> + <html> + <type>Text</type> + </html> </field> <field> <name>data_type</name> @@ -60,16 +73,20 @@ </field> <field> <name>is_reserved</name> - <title>Option Group Is Reserved?</title> + <title>Option Group Is Reserved</title> <type>boolean</type> <default>1</default> <required>true</required> <comment>Is this a predefined system option group (i.e. it can not be deleted)?</comment> <add>1.5</add> + <html> + <type>CheckBox</type> + <label>Reserved</label> + </html> </field> <field> <name>is_active</name> - <title>Option Group Is Active?</title> + <title>Enabled</title> <type>boolean</type> <default>1</default> <required>true</required> @@ -88,6 +105,10 @@ <required>true</required> <comment>A lock to remove the ability to add new options via the UI.</comment> <add>4.5</add> + <html> + <type>CheckBox</type> + <label>Locked</label> + </html> </field> <field> <name>option_value_fields</name> diff --git a/civicrm/xml/templates/civicrm_state_province.tpl b/civicrm/xml/templates/civicrm_state_province.tpl index d275181a1ad95a7ef70dc1b6de291cfd9904905f..ebba922822f045be2d1b13f12d061e1830446754 100644 --- a/civicrm/xml/templates/civicrm_state_province.tpl +++ b/civicrm/xml/templates/civicrm_state_province.tpl @@ -1984,8 +1984,8 @@ INSERT INTO civicrm_state_province (id, country_id, abbreviation, name) VALUES (3519, 1125, "TE", "TelÅ¡ių Apskritis"), (3520, 1125, "UT", "Utenos Apskritis"), (3521, 1125, "VL", "Vilniaus Apskritis"), -(3522, 1126, "D", "Diekirch"), -(3523, 1126, "G", "GreveNmacher"), +(3522, 1126, "DI", "Diekirch"), +(3523, 1126, "GR", "Grevenmacher"), (3550, 1119, "DGV", "Daugavpils"), (3551, 1119, "JEL", "Jelgava"), (3552, 1119, "JUR", "JÅ«rmala"), @@ -3757,7 +3757,7 @@ INSERT INTO civicrm_state_province (id, country_id, abbreviation, name) VALUES (NULL, 1045, "ZW", "Zhongwei"), -- CRM-10863 Added Missing Province for Luxembourg -(NULL, 1126, "L", "Luxembourg"), +(NULL, 1126, "LU", "Luxembourg"), -- CRM-11367 Latvian regions (NULL, 1119, "002", "Aizkraukles novads"), @@ -4163,7 +4163,20 @@ INSERT INTO civicrm_state_province (id, country_id, abbreviation, name) VALUES -- Add in missing Indian State provinces (NULL, 1101, "DH", "DÄdra and Nagar Haveli and DamÄn and Diu"), -(NULL, 1101, "LA", "LadÄkh") +(NULL, 1101, "LA", "LadÄkh"), -- end of statement: + +-- Add missing provinces for Luxembourg +(NULL, 1126, 'CA', 'Capellen'), +(NULL, 1126, 'CL', 'Clervaux'), +(NULL, 1126, 'EC', 'Echternach'), +(NULL, 1126, 'ES', 'Esch-sur-Alzette'), +(NULL, 1126, 'ME', 'Mersch'), +(NULL, 1126, 'RD', 'Redange-sur-Attert'), +(NULL, 1126, 'RM', 'Remich'), +(NULL, 1126, 'VD', 'Vianden'), +(NULL, 1126, 'WI', 'Wiltz') + +-- end of statement: ; diff --git a/civicrm/xml/version.xml b/civicrm/xml/version.xml index 679fb654b1d71d17c06bb18dd575873f23cad723..ac8640fe0721ecff30d7416e2744f7921f702fe8 100644 --- a/civicrm/xml/version.xml +++ b/civicrm/xml/version.xml @@ -1,4 +1,4 @@ <?xml version="1.0" encoding="iso-8859-1" ?> <version> - <version_no>5.58.1</version_no> + <version_no>5.59.0</version_no> </version> diff --git a/readme.txt b/readme.txt old mode 100755 new mode 100644 index 926e9dddb3ad352e9c21235d24755e05a55aea51..97933e2c29ee98e66192c169bc6c4e41f9d9f298 --- a/readme.txt +++ b/readme.txt @@ -2,8 +2,8 @@ Contributors: needle Tags: civicrm, crm Requires at least: 4.9 -Tested up to: 5.5 -Stable tag: 5.26.1 +Tested up to: 6.1 +Stable tag: 5.59 License: AGPL3 License URI: http://www.gnu.org/licenses/agpl-3.0.html diff --git a/wp-rest/Controller/Soap.php b/wp-rest/Controller/Soap.php deleted file mode 100644 index 5bbabcd14128854d060aa6e526b4e2f0b3dc692a..0000000000000000000000000000000000000000 --- a/wp-rest/Controller/Soap.php +++ /dev/null @@ -1,100 +0,0 @@ -<?php -/** - * Soap controller class. - * - * Soap endpoint, replacement for CiviCRM's 'extern/soap.php'. - * - * @since 5.25 - */ - -namespace CiviCRM_WP_REST\Controller; - -class Soap extends Base { - - /** - * @var string - * The base route. - * @since 5.25 - */ - protected $rest_base = 'soap'; - - /** - * Registers routes. - * - * @since 5.25 - */ - public function register_routes() { - - register_rest_route($this->get_namespace(), $this->get_rest_base(), [ - [ - 'methods' => \WP_REST_Server::ALLMETHODS, - 'permission_callback' => '__return_true', - 'callback' => [$this, 'get_item'], - ], - ]); - - } - - /** - * Get items. - * - * @since 5.25 - * - * @param WP_REST_Request $request - */ - public function get_item($request) { - - /** - * Filter request params. - * - * @since 5.25 - * - * @param array $params - * @param WP_REST_Request $request - */ - $params = apply_filters('civi_wp_rest/controller/soap/params', $request->get_params(), $request); - - // Init soap server. - $soap_server = new \SoapServer( - NULL, - [ - 'uri' => 'urn:civicrm', - 'soap_version' => SOAP_1_2, - ] - ); - - $crm_soap_server = new \CRM_Utils_SoapServer(); - - $soap_server->setClass('CRM_Utils_SoapServer', \CRM_Core_Config::singleton()->userFrameworkClass); - $soap_server->setPersistence(SOAP_PERSISTENCE_SESSION); - - // Bypass WordPress and send request from Soap server. - add_filter('rest_pre_serve_request', function($served, $response, $request, $server) use ($soap_server) { - - $soap_server->handle(); - - return TRUE; - - }, 10, 4); - - } - - /** - * Item schema. - * - * @since 5.25 - * - * @return array $schema - */ - public function get_item_schema() {} - - /** - * Item arguments. - * - * @since 5.25 - * - * @return array $arguments - */ - public function get_item_args() {} - -} diff --git a/wp-rest/Plugin.php b/wp-rest/Plugin.php index db911af71a3695fe4a51f1a6e6071615489b9453..ad11ac8fe405dd12bb0f91db27e83f525671b75e 100644 --- a/wp-rest/Plugin.php +++ b/wp-rest/Plugin.php @@ -142,10 +142,6 @@ class Plugin { $widget_controller = new Controller\Widget(); $widget_controller->register_routes(); - // Soap controller. - $soap_controller = new Controller\Soap(); - $soap_controller->register_routes(); - /** * Opportunity to add more rest routes. * diff --git a/wp-rest/README.md b/wp-rest/README.md index 8f931104f3133a43646413549ed12e2751dbecde..11c0ad10fa50fdf090356171d88200f6087fc42f 100644 --- a/wp-rest/README.md +++ b/wp-rest/README.md @@ -48,8 +48,6 @@ This code exposes CiviCRM's [extern](https://github.com/civicrm/civicrm-core/tre 8. `civicrm/v3/widget` - a substition for `civicrm/extern/widget.php` -9. `civicrm/v3/soap` - a substition for `civicrm/extern/soap.php` - **_Note_**: this endpoint has **not been tested** ### Settings